diff --git a/bart/sparql.ipynb b/bart/sparql.ipynb index 54634235e93320f887ad2d0ccfbf92e9510fbb96..adaf70cfc3a9b55cb2a1499a3d81c2e673ec1f0c 100644 --- a/bart/sparql.ipynb +++ b/bart/sparql.ipynb @@ -89,7 +89,7 @@ }, "outputs": [], "source": [ - "model = BartForConditionalGeneration.from_pretrained(\"facebook/bart-large\")\n", + "model = BartForConditionalGeneration.from_pretrained(\"./trained-models/blackbox\")\n", "tokenizer = BartTokenizer.from_pretrained(\"facebook/bart-large\")" ] }, @@ -169,7 +169,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "6e11d38a96e445719c45bfb736e303c8", + "model_id": "a17423ba38e54ebab08b1d0aca538277", "version_major": 2, "version_minor": 0 }, @@ -183,7 +183,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "6682ceace6e6468fa40aa8303d95806c", + "model_id": "6bc249c52c004777842516468a90da27", "version_major": 2, "version_minor": 0 }, @@ -196,7 +196,7 @@ } ], "source": [ - "EPOCHS = 5\n", + "EPOCHS = 4\n", "\n", "train_dataset = get_dataset(\"../data/tokenized/lc-quad-requeried-linked-train-tokenized-append-1.csv\")\n", "test_dataset = get_dataset(\"test.csv\")" @@ -216,7 +216,7 @@ "source": [ "training_args = Seq2SeqTrainingArguments(\n", " output_dir='./models/blackbox', \n", - " num_train_epochs=EPOCHS,\n", + " num_train_epochs=1,\n", " per_device_train_batch_size=1,\n", " per_device_eval_batch_size=1,\n", " warmup_steps=10,\n", @@ -253,22 +253,22 @@ " warnings.warn(\n", "***** Running training *****\n", " Num examples = 1979\n", - " Num Epochs = 5\n", + " Num Epochs = 1\n", " Instantaneous batch size per device = 1\n", " Total train batch size (w. parallel, distributed & accumulation) = 1\n", " Gradient Accumulation steps = 1\n", - " Total optimization steps = 9895\n" + " Total optimization steps = 1979\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "477683d12fe4490b870c99272abe2bf8", + "model_id": "33a4b5cf678647d79d4c5af00dede92b", "version_major": 2, "version_minor": 0 }, "text/plain": [ - " 0%| | 0/9895 [00:00<?, ?it/s]" + " 0%| | 0/1979 [00:00<?, ?it/s]" ] }, "metadata": {}, @@ -286,7 +286,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "{'loss': 0.8407, 'learning_rate': 4.7521497218007084e-05, 'epoch': 0.25}\n" + "{'loss': 0.1658, 'learning_rate': 3.755713560182834e-05, 'epoch': 0.25}\n" ] }, { @@ -302,7 +302,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "{'loss': 0.497, 'learning_rate': 4.4992412746585735e-05, 'epoch': 0.51}\n" + "{'loss': 0.1327, 'learning_rate': 2.4860335195530728e-05, 'epoch': 0.51}\n" ] }, { @@ -318,7 +318,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "{'loss': 0.3731, 'learning_rate': 4.246332827516439e-05, 'epoch': 0.76}\n" + "{'loss': 0.0966, 'learning_rate': 1.2163534789233114e-05, 'epoch': 0.76}\n" ] }, { @@ -326,262 +326,6 @@ "output_type": "stream", "text": [ "Model weights saved in ./models/blackbox\\checkpoint-1500\\pytorch_model.bin\n", - "Saving model checkpoint to ./models/blackbox\\checkpoint-2000\n", - "Configuration saved in ./models/blackbox\\checkpoint-2000\\config.json\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "{'loss': 0.3145, 'learning_rate': 3.993424380374305e-05, 'epoch': 1.01}\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Model weights saved in ./models/blackbox\\checkpoint-2000\\pytorch_model.bin\n", - "Saving model checkpoint to ./models/blackbox\\checkpoint-2500\n", - "Configuration saved in ./models/blackbox\\checkpoint-2500\\config.json\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "{'loss': 0.2607, 'learning_rate': 3.74051593323217e-05, 'epoch': 1.26}\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Model weights saved in ./models/blackbox\\checkpoint-2500\\pytorch_model.bin\n", - "Saving model checkpoint to ./models/blackbox\\checkpoint-3000\n", - "Configuration saved in ./models/blackbox\\checkpoint-3000\\config.json\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "{'loss': 0.2843, 'learning_rate': 3.487607486090035e-05, 'epoch': 1.52}\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Model weights saved in ./models/blackbox\\checkpoint-3000\\pytorch_model.bin\n", - "Saving model checkpoint to ./models/blackbox\\checkpoint-3500\n", - "Configuration saved in ./models/blackbox\\checkpoint-3500\\config.json\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "{'loss': 0.2006, 'learning_rate': 3.234699038947901e-05, 'epoch': 1.77}\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Model weights saved in ./models/blackbox\\checkpoint-3500\\pytorch_model.bin\n", - "Saving model checkpoint to ./models/blackbox\\checkpoint-4000\n", - "Configuration saved in ./models/blackbox\\checkpoint-4000\\config.json\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "{'loss': 0.1882, 'learning_rate': 2.9817905918057664e-05, 'epoch': 2.02}\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Model weights saved in ./models/blackbox\\checkpoint-4000\\pytorch_model.bin\n", - "Saving model checkpoint to ./models/blackbox\\checkpoint-4500\n", - "Configuration saved in ./models/blackbox\\checkpoint-4500\\config.json\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "{'loss': 0.149, 'learning_rate': 2.728882144663632e-05, 'epoch': 2.27}\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Model weights saved in ./models/blackbox\\checkpoint-4500\\pytorch_model.bin\n", - "Saving model checkpoint to ./models/blackbox\\checkpoint-5000\n", - "Configuration saved in ./models/blackbox\\checkpoint-5000\\config.json\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "{'loss': 0.1241, 'learning_rate': 2.4759736975214973e-05, 'epoch': 2.53}\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Model weights saved in ./models/blackbox\\checkpoint-5000\\pytorch_model.bin\n", - "Saving model checkpoint to ./models/blackbox\\checkpoint-5500\n", - "Configuration saved in ./models/blackbox\\checkpoint-5500\\config.json\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "{'loss': 0.1242, 'learning_rate': 2.2230652503793627e-05, 'epoch': 2.78}\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Model weights saved in ./models/blackbox\\checkpoint-5500\\pytorch_model.bin\n", - "Saving model checkpoint to ./models/blackbox\\checkpoint-6000\n", - "Configuration saved in ./models/blackbox\\checkpoint-6000\\config.json\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "{'loss': 0.1316, 'learning_rate': 1.9701568032372285e-05, 'epoch': 3.03}\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Model weights saved in ./models/blackbox\\checkpoint-6000\\pytorch_model.bin\n", - "Saving model checkpoint to ./models/blackbox\\checkpoint-6500\n", - "Configuration saved in ./models/blackbox\\checkpoint-6500\\config.json\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "{'loss': 0.1974, 'learning_rate': 1.7172483560950936e-05, 'epoch': 3.28}\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Model weights saved in ./models/blackbox\\checkpoint-6500\\pytorch_model.bin\n", - "Saving model checkpoint to ./models/blackbox\\checkpoint-7000\n", - "Configuration saved in ./models/blackbox\\checkpoint-7000\\config.json\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "{'loss': 0.0876, 'learning_rate': 1.4643399089529592e-05, 'epoch': 3.54}\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Model weights saved in ./models/blackbox\\checkpoint-7000\\pytorch_model.bin\n", - "Saving model checkpoint to ./models/blackbox\\checkpoint-7500\n", - "Configuration saved in ./models/blackbox\\checkpoint-7500\\config.json\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "{'loss': 0.108, 'learning_rate': 1.2114314618108245e-05, 'epoch': 3.79}\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Model weights saved in ./models/blackbox\\checkpoint-7500\\pytorch_model.bin\n", - "Saving model checkpoint to ./models/blackbox\\checkpoint-8000\n", - "Configuration saved in ./models/blackbox\\checkpoint-8000\\config.json\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "{'loss': 0.0728, 'learning_rate': 9.585230146686899e-06, 'epoch': 4.04}\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Model weights saved in ./models/blackbox\\checkpoint-8000\\pytorch_model.bin\n", - "Saving model checkpoint to ./models/blackbox\\checkpoint-8500\n", - "Configuration saved in ./models/blackbox\\checkpoint-8500\\config.json\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "{'loss': 0.0587, 'learning_rate': 7.056145675265555e-06, 'epoch': 4.3}\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Model weights saved in ./models/blackbox\\checkpoint-8500\\pytorch_model.bin\n", - "Saving model checkpoint to ./models/blackbox\\checkpoint-9000\n", - "Configuration saved in ./models/blackbox\\checkpoint-9000\\config.json\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "{'loss': 0.0589, 'learning_rate': 4.527061203844208e-06, 'epoch': 4.55}\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Model weights saved in ./models/blackbox\\checkpoint-9000\\pytorch_model.bin\n", - "Saving model checkpoint to ./models/blackbox\\checkpoint-9500\n", - "Configuration saved in ./models/blackbox\\checkpoint-9500\\config.json\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "{'loss': 0.0521, 'learning_rate': 1.997976732422863e-06, 'epoch': 4.8}\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Model weights saved in ./models/blackbox\\checkpoint-9500\\pytorch_model.bin\n", "\n", "\n", "Training completed. Do not forget to share your model on huggingface.co/models =)\n", @@ -593,13 +337,13 @@ "name": "stdout", "output_type": "stream", "text": [ - "{'train_runtime': 3508.9715, 'train_samples_per_second': 2.82, 'train_steps_per_second': 2.82, 'train_loss': 0.2095134835342014, 'epoch': 5.0}\n" + "{'train_runtime': 727.2468, 'train_samples_per_second': 2.721, 'train_steps_per_second': 2.721, 'train_loss': 0.11464009277744688, 'epoch': 1.0}\n" ] }, { "data": { "text/plain": [ - "TrainOutput(global_step=9895, training_loss=0.2095134835342014, metrics={'train_runtime': 3508.9715, 'train_samples_per_second': 2.82, 'train_steps_per_second': 2.82, 'train_loss': 0.2095134835342014, 'epoch': 5.0})" + "TrainOutput(global_step=1979, training_loss=0.11464009277744688, metrics={'train_runtime': 727.2468, 'train_samples_per_second': 2.721, 'train_steps_per_second': 2.721, 'train_loss': 0.11464009277744688, 'epoch': 1.0})" ] }, "execution_count": 6, @@ -655,7 +399,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "2d29a3689faf4cc09f29e6f7bc24c48a", + "model_id": "97cd3b3590f345499e483810ad116c7c", "version_major": 2, "version_minor": 0 }, @@ -687,9 +431,9 @@ "output_type": "stream", "text": [ "(1, 256, 50265)\n", - " \" \":: D:Salt res:Saltp: res dbTime_ \"CT Dp:time res:cityp: res time? \" DISTINCT?uri } { res:Salt_City_City dburi: dbp} res}Timeology?typeZone?</s>uri } \"cast \" \":::: \" \"::::::::::::::::::::::::</s></s></s>:::::::::</s></s></s></s></s></s>:::::</s></s>:::: } }::::: \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \" \": \" \" \" \" \" r r r r:::: \":: r r r r r: r r r \" \" \" \" r r \"\n", + " \" \":: D:Salt?:Saltp: res dbtime_ \": Dp:time }:timep?? duri? \" DISTINCT?uri WHERE { res:Salt_Lake_City db?:urip}?:regionries }type_? \"uri } \"ries:????????????? </s> </s></s></s></s></s> r r r r r r r</s></s></s></s></s> r r r r r r r r</s></s> r r r r r r r r r r r r r r r r r d_ dByByBy__ d d _ d d d____??____?????????</s>???????????????????????????????????????</s></s>????</s>AreaAreaAreaArea</s></s>AreaAreaAreaArea</s>_AreaAreaAreaAreaArea_AreaAreaArea</s>__AreaAreaAreaBy_AreaAreaAreaBy__\n", "(1, 256, 1024)\n", - " says even major major major major major \" \" \" major News a a a a a a news a a a a a a a a a a a a a a a a a a a a a a a a a news news a a a says says says says says a a a a a \" a a a a a a a a a a a a a a a a a a a a a a a a a]]]]] major a says says major a] major major news]]]] says News says]]]] a a a a a a a a a a a a a a a a a says says] a a major a says major a a a says a \" \" a a a a5 a a a a a a a a a a a a a a a a a a] a News major a a a major says says says major major a a a a a a a a a]] news]]]]]]]]]]]]]]]]] a a major major a says says a a a \" \" a a a a a] a a]] a a a a a a a a a a a a a a a a a a says says says a a says a\n" + " says even major major major major says \" \" \" says News a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a news a a a a a a a says \" \" a a a a a a a a] a a a a a a a] a a a a a a a a a a a a a a a a] a a says says a a a a major major major major a a a]]]] news a a a a a a a a a a a a a a a a a a a News a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a newsA aA newsA]AA]]]]]]]]] news a a a a a a a a a a a.\" a \" a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a \" says a\n" ] } ], @@ -728,7 +472,7 @@ { "data": { "text/plain": [ - "['</s><s> \" SELECT DISTINCT?uri WHERE {?uri dbp:leaderName res:Barack_Odom } \"</s>']" + "['</s><s> \" SELECT DISTINCT?uri WHERE {?uri dbp:president res:Barack_Onger } \"</s>']" ] }, "execution_count": 11, @@ -767,36 +511,36 @@ }, { "cell_type": "code", - "execution_count": 15, + "execution_count": 12, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "SELECT DISTINCT?uri WHERE {?x dbp:party res:International_Muslim_Brotherhood.?x dbo:religion?uri . }\n", - "\"Which sects people are part of local political parties which fall under the International Muslim Brotherhood? | 'local political parties'-res:Political_Parties_(book) | 'International Muslim Brotherhood'-res:Muslim_Brotherhood | 'sects'-dbp:seats | 'fall'-dbo:movement\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/party> <http://dbpedia.org/resource/International_Muslim_Brotherhood> . ?x <http://dbpedia.org/ontology/religion> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:party res:International_Muslim_Brotherhood.?x dbo:party?uri . }\n", + "\"Which sects people are part of local political parties which fall under the International Muslim Brotherhood? | 'local political parties'-res:Political_Parties_(book) | 'International Muslim Brotherhood'-res:Muslim_Brotherhood | 'sects'-dbp:seats | 'fall'-dbo:movement\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/party> <http://dbpedia.org/resource/International_Muslim_Brotherhood> . ?x <http://dbpedia.org/ontology/party> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:deputy res:Neil_Brown_(Australian_politician).?uri rdf:type dbo:OfficeHolder}\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:deputy res:Neil_Brown_(Australian_politician) .?uri rdf:type dbo:OfficeHolder}\n", "\"Who is the office holder with deputies as Neil Brown and Andrew Peacock? | 'Neil Brown'-res:Neil_Brown_(Australian_politician) | 'Andrew Peacock'-res:Andrew_Peacock | 'office holder'-dbo:owner | 'deputies'-dbo:deputy\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/deputy> <http://dbpedia.org/resource/Neil_Brown_(Australian_politician)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/OfficeHolder>}\"\n", "\n", - " SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:battles res:World_War_II.?x rdf:type dbo:MilitaryPerson}\n", - "\"How many other battles have the military person fought whose one of the battles is World War II ? | 'II'-res:Ii | 'World War'-res:World_War_II | 'battles'-dbp:battles | 'battles'-dbp:battles\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/World_War_II> . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MilitaryPerson>}\"\n", + " SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:battles res:World_War_II.?x dbo:combatant?uri }\n", + "\"How many other battles have the military person fought whose one of the battles is World War II ? | 'II'-res:Ii | 'World War'-res:World_War_II | 'battles'-dbp:battles | 'battles'-dbp:battles\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/World_War_II> . ?x <http://dbpedia.org/ontology/combatant> ?uri }\"\n", "\n", "SELECT DISTINCT?uri WHERE {?x dbo:parentOrganisation res:Comcast.?uri dbp:network?x . }\n", "\"Whose network's parent organisation is Comcast? | 'parent organisation'-res:Parent | 'Comcast'-res:Comcast | 'parent organisation'-dbo:parentOrganisation | 'network'-dbo:network\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/parentOrganisation> <http://dbpedia.org/resource/Comcast> . ?uri <http://dbpedia.org/property/network> ?x . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:distributor res:RKO_Pictures.?uri dbo:musicComposer res:Bernard_Herrmann . }\n", - "\"Name the movies distributed by RKO Pictures and has music composer as Bernard Herrmann? | 'RKO Pictures'-res:RKO_Pictures | 'Bernard Herrmann'-res:Bernard_Herrmann | 'name'-dbp:name | 'movies'-dbo:film | 'distributed'-dbo:distributor | 'music composer'-dbo:creator\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/distributor> <http://dbpedia.org/resource/RKO_Pictures> . ?uri <http://dbpedia.org/ontology/musicComposer> <http://dbpedia.org/resource/Bernard_Herrmann> . }\"\n", + " SELECT DISTINCT?uri WHERE {?uri dbp:distributor res:RKO_Pictures.?uri dbo:musicComposer res:Bernard_Herrmann } \n", + "\"Name the movies distributed by RKO Pictures and has music composer as Bernard Herrmann? | 'RKO Pictures'-res:RKO_Pictures | 'Bernard Herrmann'-res:Bernard_Herrmann | 'name'-dbp:name | 'movies'-dbo:film | 'distributed'-dbo:distributor | 'music composer'-dbo:creator\",\" SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/distributor> <http://dbpedia.org/resource/RKO_Pictures> . ?uri <http://dbpedia.org/ontology/musicComposer> <http://dbpedia.org/resource/Bernard_Herrmann> } \"\n", "\n", "SELECT DISTINCT?uri WHERE {?uri dbp:founder res:Ralph_J._Gleason .?uri rdf:type dbo:Magazine}\n", "\"What is the magazine which have been founded by Ralph J. Gleason? | 'J'-res:J | 'Ralph Gleason'-res:Ralph_J._Gleason | 'founded by'-dbo:founder | 'magazine'-dbo:Magazine\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/founder> <http://dbpedia.org/resource/Ralph_J._Gleason> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Magazine>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:related res:Barq's.?x dbp:location?uri . }\n", - "\"In which cities can the beverage related to Barq's be found? | 'Barq'-res:Barq | 'cities'-dbo:country | 'beverage'-dbo:strength | 'related'-dbo:related\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/related> <http://dbpedia.org/resource/Barq's> . ?x <http://dbpedia.org/property/location> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Barq's dbo:related?x.?x dbp:cities?uri . }\n", + "\"In which cities can the beverage related to Barq's be found? | 'Barq'-res:Barq | 'cities'-dbo:country | 'beverage'-dbo:strength | 'related'-dbo:related\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Barq's> <http://dbpedia.org/ontology/related> ?x . ?x <http://dbpedia.org/property/cities> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:role res:Air_interdiction .?uri rdf:type dbo:MilitaryUnit}\n", - "\"Who was in military unit which played the role of Air interdiction? | 'Air interdiction'-res:Air_interdiction | 'military unit'-dbo:militaryUnit | 'played'-dbo:portrayer | 'role'-dbo:role\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/role> <http://dbpedia.org/resource/Air_interdiction> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MilitaryUnit>}\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:role res:Air_interdiction.?x dbp:militaryUnit?uri . }\n", + "\"Who was in military unit which played the role of Air interdiction? | 'Air interdiction'-res:Air_interdiction | 'military unit'-dbo:militaryUnit | 'played'-dbo:portrayer | 'role'-dbo:role\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/role> <http://dbpedia.org/resource/Air_interdiction> . ?x <http://dbpedia.org/property/militaryUnit> ?uri . }\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Insects_vs_Robots dbp:currentMembers?uri } \n", "\"Who are the current members of Insects vs Robots? | 'Insects vs Robots'-res:Insects_vs_Robots | 'current members'-dbp:currentMembers\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Insects_vs_Robots> <http://dbpedia.org/property/currentMembers> ?uri } \"\n", @@ -810,8 +554,8 @@ "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:notableWork res:Novelas_ejemplares.?uri dbp:author?x . }\n", "\"How many books are written by the author who is famous for Novelas Ejemplares? | 'Novelas Ejemplares'-res:Novelas_ejemplares | 'books'-dbo:volume | 'written'-dbo:animal | 'author'-dbo:author | 'famous'-dbo:service\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/notableWork> <http://dbpedia.org/resource/Novelas_ejemplares> . ?uri <http://dbpedia.org/property/author> ?x . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Stanford_Cardinal dbo:institution?uri. res:Gerald_Reaven dbp:university?uri. }\n", - "\"to which university did both, the Stanford Cardinal and Gerald Reaven go? | 'both,'-res:Both | 'Stanford Cardinal'-res:Stanford_Cardinal | 'Gerald Reaven'-res:Gerald_Reaven | 'university'-dbp:university\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Stanford_Cardinal> <http://dbpedia.org/ontology/institution> ?uri . <http://dbpedia.org/resource/Gerald_Reaven> <http://dbpedia.org/property/university> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Stanford_Cardinal res:Gerald_Reaven dbp:university?uri . }\n", + "\"to which university did both, the Stanford Cardinal and Gerald Reaven go? | 'both,'-res:Both | 'Stanford Cardinal'-res:Stanford_Cardinal | 'Gerald Reaven'-res:Gerald_Reaven | 'university'-dbp:university\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Stanford_Cardinal> <http://dbpedia.org/resource/Gerald_Reaven> <http://dbpedia.org/property/university> ?uri . }\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Deion_Sanders dbp:debutteam?uri } \n", "\"where did Deion Sanders debut? | 'Deion Sanders'-res:Deion_Sanders | 'debut'-dbp:debutteam\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Deion_Sanders> <http://dbpedia.org/property/debutteam> ?uri } \"\n", @@ -825,20 +569,20 @@ "SELECT DISTINCT?uri WHERE {?uri dbp:currency res:Aureus_University_School_of_Medicine .?uri rdf:type dbo:Country}\n", "\"Name the country with currency as Aureus ? | 'Aureus'-res:Aureus_University_School_of_Medicine | 'name'-dbp:name | 'country'-dbo:kingdom | 'currency'-dbo:currency\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/currency> <http://dbpedia.org/resource/Aureus_University_School_of_Medicine> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Country>}\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:A._Peter_Dewey dbp:awards?uri } \n", - "\"what awards have been given to A. Peter Dewey? | 'A'-res:A | 'Peter Dewey'-res:A._Peter_Dewey | 'awards'-dbo:award\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/A._Peter_Dewey> <http://dbpedia.org/property/awards> ?uri } \"\n", + "SELECT DISTINCT?uri WHERE { res:A._Peter_Dewey dbp:awards?x.?x dbo:award?uri . }\n", + "\"what awards have been given to A. Peter Dewey? | 'A'-res:A | 'Peter Dewey'-res:A._Peter_Dewey | 'awards'-dbo:award\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/A._Peter_Dewey> <http://dbpedia.org/property/awards> ?x . ?x <http://dbpedia.org/ontology/award> ?uri . }\"\n", "\n", "SELECT DISTINCT COUNT(?uri) WHERE { res:Muhammad_Yunus dbp:awards?uri . }\n", "\"Muhammad Yunus has won how many awards? | 'Muhammad yunus'-res:Muhammad_Yunus | 'won'-dbo:award | 'awards'-dbo:award\",\"SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Muhammad_Yunus> <http://dbpedia.org/property/awards> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:label res:Motown.?x dbo:associatedActs?uri . }\n", - "\"List the associates of bands which have a label by Motown ? | 'Motown'-res:Motown | 'associates'-dbo:team | 'bands'-dbo:staff | 'label'-dbp:label\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Motown> . ?x <http://dbpedia.org/ontology/associatedActs> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:label res:Motown.?x dbo:associatedBand?uri . }\n", + "\"List the associates of bands which have a label by Motown ? | 'Motown'-res:Motown | 'associates'-dbo:team | 'bands'-dbo:staff | 'label'-dbp:label\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Motown> . ?x <http://dbpedia.org/ontology/associatedBand> ?uri . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Kwai_Chang_Caine dbp:religion?uri } \n", - "\"What is the faith of Kwai Chang Caine ? | 'Kwai Chang Caine'-res:Kwai_Chang_Caine | 'faith'-dbo:religion\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kwai_Chang_Caine> <http://dbpedia.org/property/religion> ?uri } \"\n", + " SELECT DISTINCT?uri WHERE { res:Kwai_Chang_Caine dbo:religion?uri } \n", + "\"What is the faith of Kwai Chang Caine ? | 'Kwai Chang Caine'-res:Kwai_Chang_Caine | 'faith'-dbo:religion\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kwai_Chang_Caine> <http://dbpedia.org/ontology/religion> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:leader res:Pullaiahgaripalli.?x dbo:house?uri . }\n", - "\"What are the houses of the legislature where the leader is called Pullaiahgaripalli ? | 'Pullaiahgaripalli'-res:Pullaiahgaripalli | 'houses'-dbo:house | 'legislature'-dbo:politicalPartyInLegislature | 'leader'-dbo:leader | 'called'-dbp:nickname\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/leader> <http://dbpedia.org/resource/Pullaiahgaripalli> . ?x <http://dbpedia.org/ontology/house> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:leader res:Pullaiahgaripalli.?x dbp:houses?uri . }\n", + "\"What are the houses of the legislature where the leader is called Pullaiahgaripalli ? | 'Pullaiahgaripalli'-res:Pullaiahgaripalli | 'houses'-dbo:house | 'legislature'-dbo:politicalPartyInLegislature | 'leader'-dbo:leader | 'called'-dbp:nickname\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/leader> <http://dbpedia.org/resource/Pullaiahgaripalli> . ?x <http://dbpedia.org/property/houses> ?uri . }\"\n", "\n", "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:architecturalStyle res:Sanggar_Agung.?x dbo:religion?uri . }\n", "\"How many religions are followed by the group whose architectural style can be seen on Sanggar Agung? | 'Sanggar Agung'-res:Sanggar_Agung | 'religions'-dbo:religion | 'architectural style'-dbo:type\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/architecturalStyle> <http://dbpedia.org/resource/Sanggar_Agung> . ?x <http://dbpedia.org/ontology/religion> ?uri . }\"\n", @@ -846,47 +590,47 @@ "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:writtenIn res:C++ . }\n", "\"How many things are written in C++? | 'C++'-res:C++ | 'written'-dbp:writtenIn\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/writtenIn> <http://dbpedia.org/resource/C++> . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:PLUS_Expressways dbo:highway_hipopter_services?x.?x dbp:hubs?uri . }\n", - "\"What are the hubs of PLUS Helicopter Services, a highway helicopter unit of PLUS Expressways? | 'PLUS'-res:Plus | 'Helicopter Services,'-res:PLUS_Expressways | 'highway helicopter unit'-res:Serbian_police_helicopter_unit | 'PLUS'-res:Plus | 'Expressways'-res:Expressways_of_Singapore | 'hubs'-dbp:hubs\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/PLUS_Expressways> <http://dbpedia.org/ontology/highway_hipopter_services> ?x . ?x <http://dbpedia.org/property/hubs> ?uri . }\"\n", + " SELECT DISTINCT?uri WHERE { res:PLUS_Expressways dbp:hubs?uri } \n", + "\"What are the hubs of PLUS Helicopter Services, a highway helicopter unit of PLUS Expressways? | 'PLUS'-res:Plus | 'Helicopter Services,'-res:PLUS_Expressways | 'highway helicopter unit'-res:Serbian_police_helicopter_unit | 'PLUS'-res:Plus | 'Expressways'-res:Expressways_of_Singapore | 'hubs'-dbp:hubs\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/PLUS_Expressways> <http://dbpedia.org/property/hubs> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:architect res:Louis_D._Astorino.?x rdf:type dbo:Stadium}\n", - "\"Who are the architect of the stadium whose one of the architect is louis D. Astorino ? | 'louis D. Astorino'-res:Louis_D._Astorino | 'architect'-dbo:architect | 'stadium'-dbo:stadium | 'architect'-dbo:architect\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/architect> <http://dbpedia.org/resource/Louis_D._Astorino> . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Stadium>}\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:architect res:Louis_D._Astorino.?x dbp:stadium?uri . }\n", + "\"Who are the architect of the stadium whose one of the architect is louis D. Astorino ? | 'louis D. Astorino'-res:Louis_D._Astorino | 'architect'-dbo:architect | 'stadium'-dbo:stadium | 'architect'-dbo:architect\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/architect> <http://dbpedia.org/resource/Louis_D._Astorino> . ?x <http://dbpedia.org/property/stadium> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Blodpalt dbo:ingredient?uri. res:Kaszanka dbp:characterName?uri. }\n", - "\"What is a common ingredient used in boyt Blodpalt and Kaszanka ? | 'Boyt blodpalt'-res:Blodpalt | 'Kaszanka'-res:Kaszanka | 'common ingredient'-dbo:ingredient\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Blodpalt> <http://dbpedia.org/ontology/ingredient> ?uri . <http://dbpedia.org/resource/Kaszanka> <http://dbpedia.org/property/characterName> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Blodpalt dbo:ingredient?uri. res:Kaszanka dbp:ingredients?uri. }\n", + "\"What is a common ingredient used in boyt Blodpalt and Kaszanka ? | 'Boyt blodpalt'-res:Blodpalt | 'Kaszanka'-res:Kaszanka | 'common ingredient'-dbo:ingredient\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Blodpalt> <http://dbpedia.org/ontology/ingredient> ?uri . <http://dbpedia.org/resource/Kaszanka> <http://dbpedia.org/property/ingredients> ?uri . }\"\n", "\n", "SELECT DISTINCT?uri WHERE {?uri dbp:screenplay res:Akiva_Goldsman .?uri rdf:type dbo:Film}\n", "\"Which movies's screenplay is written by Akiva Goldsman | 'screenplay'-res:Katha_Screenplay_Darsakatvam_Appalaraju | 'Akiva Goldsman'-res:Akiva_Goldsman | 'screenplay'-dbp:screenplay | 'movie'-dbo:Film\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/screenplay> <http://dbpedia.org/resource/Akiva_Goldsman> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Battle_of_Fort_Stephenson dbo:commander?uri. res:Bp:place?uri. }\n", - "\"Give me all commanders which had an important role in both, the Battle of Fort Stephenson and Battle of the Thames? | 'Battle of Fort Stephenson'-res:Battle_of_Fort_Stephenson | 'Battle of the Thames'-res:Battle_of_the_Thames | 'commanders'-dbo:commander | 'role'-dbp:place\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Battle_of_Fort_Stephenson> <http://dbpedia.org/ontology/commander> ?uri . <http://dbpedia.org/resource/Bp:place> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:battles res:Battle_of_Fort_Stephenson.?x dbo:commander?uri . }\n", + "\"Give me all commanders which had an important role in both, the Battle of Fort Stephenson and Battle of the Thames? | 'Battle of Fort Stephenson'-res:Battle_of_Fort_Stephenson | 'Battle of the Thames'-res:Battle_of_the_Thames | 'commanders'-dbo:commander | 'role'-dbp:place\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/Battle_of_Fort_Stephenson> . ?x <http://dbpedia.org/ontology/commander> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Blade_Runner_2:_The_Edge_of_Human dbo:subsequentWork?x.?x dbp:series?uri . }\n", - "\"To which series does the book belong which came after the Blade Runner 2? | 'Blade Runner 2'-res:Blade_Runner_2:_The_Edge_of_Human | 'series'-dbo:series | 'book'-dbo:volume | 'belong'-dbo:date\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Blade_Runner_2:_The_Edge_of_Human> <http://dbpedia.org/ontology/subsequentWork> ?x . ?x <http://dbpedia.org/property/series> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:subsequentWork res:Blade_Runner_2:_The_Edge_of_Human.?x dbp:series?uri . }\n", + "\"To which series does the book belong which came after the Blade Runner 2? | 'Blade Runner 2'-res:Blade_Runner_2:_The_Edge_of_Human | 'series'-dbo:series | 'book'-dbo:volume | 'belong'-dbo:date\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/subsequentWork> <http://dbpedia.org/resource/Blade_Runner_2:_The_Edge_of_Human> . ?x <http://dbpedia.org/property/series> ?uri . }\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:The_Ultimate_Fighter:_Team_Rousey_vs._Team_Tate dbp:city?uri } \n", "\"In which city did The Ultimate Fighter: Team Rousey vs. Team Tate take place ? | 'The Ultimate Fighter: Team Rousey vs Team Tate'-res:The_Ultimate_Fighter:_Team_Rousey_vs._Team_Tate | 'city'-dbp:city | 'place'-dbo:place\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Ultimate_Fighter:_Team_Rousey_vs._Team_Tate> <http://dbpedia.org/property/city> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:purpose res:Environmentalism_and_Peace . }\n", - "\"What is the organisation whose purposes are Environmentalism and Peace? | 'Environmentalism and Peace'-res:Peace | 'organisation'-dbo:organisation | 'purposes'-dbp:purpose\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/purpose> <http://dbpedia.org/resource/Environmentalism_and_Peace> . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:purpose res:Environmentalism.?uri dbo:organisation?x . }\n", + "\"What is the organisation whose purposes are Environmentalism and Peace? | 'Environmentalism and Peace'-res:Peace | 'organisation'-dbo:organisation | 'purposes'-dbp:purpose\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/purpose> <http://dbpedia.org/resource/Environmentalism> . ?uri <http://dbpedia.org/ontology/organisation> ?x . }\"\n", "\n", - " SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:name res:Matt_Williams_(New_Zealand_footballer) } \n", - "\"Count the number of sports team members which have player named Matt Williams ? | 'Matt Williams'-res:Matt_Williams_(New_Zealand_footballer) | 'name'-dbp:name | 'name'-dbp:name\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/name> <http://dbpedia.org/resource/Matt_Williams_(New_Zealand_footballer)> } \"\n", + " SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:name res:Matt_Williams_(New_Zealand_footballer).?x dbp:team?uri }\n", + "\"Count the number of sports team members which have player named Matt Williams ? | 'Matt Williams'-res:Matt_Williams_(New_Zealand_footballer) | 'name'-dbp:name | 'name'-dbp:name\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/name> <http://dbpedia.org/resource/Matt_Williams_(New_Zealand_footballer)> . ?x <http://dbpedia.org/property/team> ?uri }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:award res:Timeform.?x dbp:owner?uri . }\n", - "\"How many different people own the Timeform award winners? | 'Timeform award winners'-res:Timeform\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/award> <http://dbpedia.org/resource/Timeform> . ?x <http://dbpedia.org/property/owner> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:awards res:Timeform.?x dbo:owner?uri . }\n", + "\"How many different people own the Timeform award winners? | 'Timeform award winners'-res:Timeform\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/awards> <http://dbpedia.org/resource/Timeform> . ?x <http://dbpedia.org/ontology/owner> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:hometown res:Toronto_Western_Hospital.?x dbp:knownFor?uri . }\n", - "\"Which city is known for the people working in the western penn hospital? | 'western penn hospital'-res:Toronto_Western_Hospital | 'city'-dbo:city | 'working'-dbo:language\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/hometown> <http://dbpedia.org/resource/Toronto_Western_Hospital> . ?x <http://dbpedia.org/property/knownFor> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:hospital res:Toronto_Western_Hospital.?x dbp:locationCity?uri . }\n", + "\"Which city is known for the people working in the western penn hospital? | 'western penn hospital'-res:Toronto_Western_Hospital | 'city'-dbo:city | 'working'-dbo:language\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/hospital> <http://dbpedia.org/resource/Toronto_Western_Hospital> . ?x <http://dbpedia.org/property/locationCity> ?uri . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Sidney_Catlin_Partridge dbo:education?uri. res:Lisa_Brummel dbp:almaMater?uri} \n", - "\"Which education center Sidney Catlin Partrodge attended which was also the alma mater of Lisa Brummel ? | 'education center Sidney Catlin Partrodge'-res:Sidney_Catlin_Partridge | 'Lisa Brummel'-res:Lisa_Brummel | 'attended'-dbo:fat | 'alma mater'-dbo:almaMater\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Sidney_Catlin_Partridge> <http://dbpedia.org/ontology/education> ?uri . <http://dbpedia.org/resource/Lisa_Brummel> <http://dbpedia.org/property/almaMater> ?uri} \"\n", + " SELECT DISTINCT?uri WHERE { res:Sidney_Catlin_Partridge dbp:education?uri. res:Lisa_Brummel dbo:almaMater?uri} \n", + "\"Which education center Sidney Catlin Partrodge attended which was also the alma mater of Lisa Brummel ? | 'education center Sidney Catlin Partrodge'-res:Sidney_Catlin_Partridge | 'Lisa Brummel'-res:Lisa_Brummel | 'attended'-dbo:fat | 'alma mater'-dbo:almaMater\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Sidney_Catlin_Partridge> <http://dbpedia.org/property/education> ?uri . <http://dbpedia.org/resource/Lisa_Brummel> <http://dbpedia.org/ontology/almaMater> ?uri} \"\n", "\n", "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:publisher res:Doubleday_(publisher).?x dbo:subject?uri . }\n", "\"How many subjects are covered in the publications of Doubleday? | 'Doubleday'-res:Doubleday_(publisher) | 'subjects'-dbo:discipline | 'covered'-dbo:frozen | 'publications'-dbp:publications\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/publisher> <http://dbpedia.org/resource/Doubleday_(publisher)> . ?x <http://dbpedia.org/ontology/subject> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:organisation res:Trade_association.?x dbo:regionServed?uri . }\n", - "\"List the served region of the organisations of Trade association. | 'Trade association'-res:Trade_association | 'served region'-dbo:regionServed | 'organisations'-dbo:organisation\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/organisation> <http://dbpedia.org/resource/Trade_association> . ?x <http://dbpedia.org/ontology/regionServed> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:regionServed res:Trade_association.?x dbp:organisation?uri . }\n", + "\"List the served region of the organisations of Trade association. | 'Trade association'-res:Trade_association | 'served region'-dbo:regionServed | 'organisations'-dbo:organisation\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/regionServed> <http://dbpedia.org/resource/Trade_association> . ?x <http://dbpedia.org/property/organisation> ?uri . }\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Tonight's_the_Night_(2003_musical) dbp:music?uri } \n", "\"Who composed the music for Tonight's the Night ? | 'Tonight's the Night'-res:Tonight's_the_Night_(2003_musical) | 'music'-dbp:music\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Tonight's_the_Night_(2003_musical)> <http://dbpedia.org/property/music> ?uri } \"\n", @@ -894,44 +638,44 @@ "SELECT DISTINCT?uri WHERE {?x dbo:breeder res:Bert_S._Michell.?x dbp:awards?uri . }\n", "\"What awards have been given to race horses bred by Bert Michell? | 'Bert Michell'-res:Bert_S._Michell | 'awards'-dbo:award | 'race horses'-dbo:race | 'bred'-dbo:genus\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/breeder> <http://dbpedia.org/resource/Bert_S._Michell> . ?x <http://dbpedia.org/property/awards> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:leader res:Y._S._Rajasekhara_Reddy.?x dbo:party?uri . }\n", - "\"Which party won the elections when Y.S. Rajasekhara Reddy was in power? | 'YS'-res:Ys | 'Rajasekhara Reddy'-res:Y._S._Rajasekhara_Reddy | 'party'-dbo:party | 'won'-dbo:city | 'elections'-dbo:selection | 'power'-dbo:weight\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/leader> <http://dbpedia.org/resource/Y._S._Rajasekhara_Reddy> . ?x <http://dbpedia.org/ontology/party> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Y._S._Rajasekhara_Reddy dbp:leader?x.?x dbo:affiliation?uri . }\n", + "\"Which party won the elections when Y.S. Rajasekhara Reddy was in power? | 'YS'-res:Ys | 'Rajasekhara Reddy'-res:Y._S._Rajasekhara_Reddy | 'party'-dbo:party | 'won'-dbo:city | 'elections'-dbo:selection | 'power'-dbo:weight\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Y._S._Rajasekhara_Reddy> <http://dbpedia.org/property/leader> ?x . ?x <http://dbpedia.org/ontology/affiliation> ?uri . }\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Frampton's_Camel dbo:producer?uri } \n", "\"Who is the producer of Frampton's Camel ? | 'Frampton's Camel'-res:Frampton's_Camel | 'producer'-dbo:producer\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Frampton's_Camel> <http://dbpedia.org/ontology/producer> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x rdf:type dbo:Scientist}\n", - "\"What is the alma mater of the scientist who is known for Rational analysis ? | 'scientist'-res:Scientist | 'Rational analysis'-res:Rational_analysis | 'alma mater'-dbo:school\",\"SELECT DISTINCT ?uri WHERE { ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}\"\n", + " SELECT DISTINCT?uri WHERE {?x dbo:knownFor res:Rational_analysis.?x dbp:almaMater?uri }\n", + "\"What is the alma mater of the scientist who is known for Rational analysis ? | 'scientist'-res:Scientist | 'Rational analysis'-res:Rational_analysis | 'alma mater'-dbo:school\",\" SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/knownFor> <http://dbpedia.org/resource/Rational_analysis> . ?x <http://dbpedia.org/property/almaMater> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:relatives res:Clan_McDuck.?uri dbo:relative res:Louie. }\n", - "\"Whose relatives are Clan McDuck and Huey, Dewey, and Louie? | 'Clan McDuck'-res:Clan_McDuck | 'Huey, Dewey,'-res:Huey,_Dewey,_and_Louie | 'Louie'-res:Louie | 'relatives'-dbp:relatives | 'relatives'-dbp:relatives\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/relatives> <http://dbpedia.org/resource/Clan_McDuck> . ?uri <http://dbpedia.org/ontology/relative> <http://dbpedia.org/resource/Louie> . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:relatives res:Clan_McDuck. }\n", + "\"Whose relatives are Clan McDuck and Huey, Dewey, and Louie? | 'Clan McDuck'-res:Clan_McDuck | 'Huey, Dewey,'-res:Huey,_Dewey,_and_Louie | 'Louie'-res:Louie | 'relatives'-dbp:relatives | 'relatives'-dbp:relatives\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/relatives> <http://dbpedia.org/resource/Clan_McDuck> . }\"\n", "\n", "SELECT DISTINCT?uri WHERE {?x dbo:capital res:Podgorica.?x dbp:currency?uri . }\n", "\"What currencies are used in the country whose capital is Podgorica? | 'Currencies'-res:Currencies_of_Puerto_Rico | 'Podgorica'-res:Podgorica | 'capital'-dbo:capital | 'currencies'-dbp:currency\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/capital> <http://dbpedia.org/resource/Podgorica> . ?x <http://dbpedia.org/property/currency> ?uri . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:William_Anthony_(artist) dbp:training?uri } \n", - "\"Where was William Anthony trained ? | 'William Anthony'-res:William_Anthony_(artist) | 'trained'-dbo:training\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/William_Anthony_(artist)> <http://dbpedia.org/property/training> ?uri } \"\n", + " SELECT DISTINCT?uri WHERE { res:William_Anthony_(artist) dbo:training?uri } \n", + "\"Where was William Anthony trained ? | 'William Anthony'-res:William_Anthony_(artist) | 'trained'-dbo:training\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/William_Anthony_(artist)> <http://dbpedia.org/ontology/training> ?uri } \"\n", "\n", - " SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:languageFamily res:Anglo-Frisian_languages.?x dbp:language?uri }\n", - "\"Count all the ethinic group who speaks language which belongs to Anglo-Frisian language family ? | 'Anglo-Frisian language'-res:Anglo-Frisian_languages | 'count'-dbo:country | 'ethinic'-dbo:ethnicGroup | 'speaks'-dbo:language | 'language'-dbo:languageFamily | 'belongs'-dbp:date\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/languageFamily> <http://dbpedia.org/resource/Anglo-Frisian_languages> . ?x <http://dbpedia.org/property/language> ?uri }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:languageFamily res:Anglo-Frisian_languages .?uri rdf:type dbo:EthnicGroup}\n", + "\"Count all the ethinic group who speaks language which belongs to Anglo-Frisian language family ? | 'Anglo-Frisian language'-res:Anglo-Frisian_languages | 'count'-dbo:country | 'ethinic'-dbo:ethnicGroup | 'speaks'-dbo:language | 'language'-dbo:languageFamily | 'belongs'-dbp:date\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/languageFamily> <http://dbpedia.org/resource/Anglo-Frisian_languages> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/EthnicGroup>}\"\n", "\n", "SELECT DISTINCT?uri WHERE {?uri dbp:creators res:Paul_Dini .?uri rdf:type dbo:ComicsCharacter}\n", "\"Which comic characters were created by Paul Dini? | 'Paul Dini'-res:Paul_Dini | 'created by'-dbp:creators | 'characters'-dbo:ComicsCharacter\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/creators> <http://dbpedia.org/resource/Paul_Dini> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/ComicsCharacter>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Ted_Williams_Tunnel dbp:owner?uri. res:Leonard_Memorial_Ridge dbo:owningCity?uri. }\n", - "\"Which city council owns the Ted Williams tunnel and Leonard Memorial ridge? | 'Ted Williams tunnel'-res:Ted_Williams_Tunnel | 'Leonard Memorial ridge'-res:Ridge | 'owns'-dbo:owner | 'owns'-dbo:owner\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ted_Williams_Tunnel> <http://dbpedia.org/property/owner> ?uri . <http://dbpedia.org/resource/Leonard_Memorial_Ridge> <http://dbpedia.org/ontology/owningCity> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Ted_Williams_Tunnel dbo:owner?uri. res:Leonard_Memorial_Ridge dbp:owningCity?uri. }\n", + "\"Which city council owns the Ted Williams tunnel and Leonard Memorial ridge? | 'Ted Williams tunnel'-res:Ted_Williams_Tunnel | 'Leonard Memorial ridge'-res:Ridge | 'owns'-dbo:owner | 'owns'-dbo:owner\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ted_Williams_Tunnel> <http://dbpedia.org/ontology/owner> ?uri . <http://dbpedia.org/resource/Leonard_Memorial_Ridge> <http://dbpedia.org/property/owningCity> ?uri . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:recordLabel res:EMi.?uri dbo:associatedActs?x . }\n", - "\"How many bands collaborated with artists who signed up with EMI? | 'EMI'-res:Emi | 'bands'-dbo:staff | 'collaborated'-dbo:band | 'artists'-dbo:rkdArtistsId | 'signed'-dbo:movement\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/recordLabel> <http://dbpedia.org/resource/EMi> . ?uri <http://dbpedia.org/ontology/associatedActs> ?x . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:recordLabel res:EMI.?uri dbo:associatedBand?x . }\n", + "\"How many bands collaborated with artists who signed up with EMI? | 'EMI'-res:Emi | 'bands'-dbo:staff | 'collaborated'-dbo:band | 'artists'-dbo:rkdArtistsId | 'signed'-dbo:movement\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/recordLabel> <http://dbpedia.org/resource/EMI> . ?uri <http://dbpedia.org/ontology/associatedBand> ?x . }\"\n", "\n", - " SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:subsidiary res:Big_Ticket_Entertainment.?uri dbp:company?x }\n", - "\"How many TV shows are of the company which are of company which is a subsidiary of Big Ticket Entertainment ? | 'entertainment ticket'-res:Big_Ticket_Entertainment | 'shows'-dbo:place | 'company'-dbo:company | 'company'-dbo:company | 'subsidiary'-dbo:subsidiary\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/subsidiary> <http://dbpedia.org/resource/Big_Ticket_Entertainment> . ?uri <http://dbpedia.org/property/company> ?x }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:subsidiary res:Big_Ticket_Entertainment.?uri dbp:company?x . }\n", + "\"How many TV shows are of the company which are of company which is a subsidiary of Big Ticket Entertainment ? | 'entertainment ticket'-res:Big_Ticket_Entertainment | 'shows'-dbo:place | 'company'-dbo:company | 'company'-dbo:company | 'subsidiary'-dbo:subsidiary\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/subsidiary> <http://dbpedia.org/resource/Big_Ticket_Entertainment> . ?uri <http://dbpedia.org/property/company> ?x . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE { res:Barjas dbo:placeOfBirth?uri . }\n", - "\"In how many places are Marjas found? | 'Marjas'-res:Barjas | 'places'-dbo:height\",\"SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Barjas> <http://dbpedia.org/ontology/placeOfBirth> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbo:locationCity res:Marjas . }\n", + "\"In how many places are Marjas found? | 'Marjas'-res:Barjas | 'places'-dbo:height\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/locationCity> <http://dbpedia.org/resource/Marjas> . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:leader res:Justin_Trudeau.?uri dbo:place?x . }\n", - "\"Whose shrines are in a place governed by Justin Trudeau? | 'Justin Trudeau'-res:Justin_Trudeau | 'shrines'-dbo:chain | 'place'-dbo:place | 'governed'-dbo:director\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/leader> <http://dbpedia.org/resource/Justin_Trudeau> . ?uri <http://dbpedia.org/ontology/place> ?x . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:leaderName res:Justin_Trudeau.?x dbo:place?uri . }\n", + "\"Whose shrines are in a place governed by Justin Trudeau? | 'Justin Trudeau'-res:Justin_Trudeau | 'shrines'-dbo:chain | 'place'-dbo:place | 'governed'-dbo:director\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/leaderName> <http://dbpedia.org/resource/Justin_Trudeau> . ?x <http://dbpedia.org/ontology/place> ?uri . }\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Hackweiser dbp:leaderName?uri } \n", "\"Who is the leader of Hackweiser ? | 'Hackweiser'-res:Hackweiser | 'leader'-dbp:leaderName\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Hackweiser> <http://dbpedia.org/property/leaderName> ?uri } \"\n", @@ -939,44 +683,44 @@ "SELECT DISTINCT?uri WHERE { res:Hank_Brown dbp:successor?x.?x dbo:birthPlace?uri . }\n", "\"Where was the successor of Hank Brown born? | 'Hank Brown'-res:Hank_Brown | 'successor'-dbo:successor | 'born'-dbo:birthPlace\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Hank_Brown> <http://dbpedia.org/property/successor> ?x . ?x <http://dbpedia.org/ontology/birthPlace> ?uri . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Katyayana_(Buddhist) dbp:mainInterests?uri } \n", - "\"What is the relegious affiliations of Katyayana ? | 'relegious affiliations'-res:Smithsonian_Affiliations | 'Katyayana'-res:Katyayana_(Buddhist) | 'relegious'-dbo:religion\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Katyayana_(Buddhist)> <http://dbpedia.org/property/mainInterests> ?uri } \"\n", + " SELECT DISTINCT?uri WHERE { res:Katyayana_(Buddhist) dbp:designer?uri } \n", + "\"What is the relegious affiliations of Katyayana ? | 'relegious affiliations'-res:Smithsonian_Affiliations | 'Katyayana'-res:Katyayana_(Buddhist) | 'relegious'-dbo:religion\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Katyayana_(Buddhist)> <http://dbpedia.org/property/designer> ?uri } \"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Mumbai_North_(Lok_Sabha_constituency) dbp:party?uri } \n", - "\"Which party has come in power in Mumbai North? | 'Mumbai North'-res:Mumbai_North_(Lok_Sabha_constituency) | 'in power'-dbp:constituency | 'party'-dbo:party\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Mumbai_North_(Lok_Sabha_constituency)> <http://dbpedia.org/property/party> ?uri } \"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:party res:Mumbai_North_(Lok_Sabha_constituency).?x dbo:party?uri . }\n", + "\"Which party has come in power in Mumbai North? | 'Mumbai North'-res:Mumbai_North_(Lok_Sabha_constituency) | 'in power'-dbp:constituency | 'party'-dbo:party\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/party> <http://dbpedia.org/resource/Mumbai_North_(Lok_Sabha_constituency)> . ?x <http://dbpedia.org/ontology/party> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:custodian res:Bend,_Oregon.?x dbp:cities?uri . }\n", - "\"Where are all the protected areas near Bend, Oregon? | 'Bend, Oregon'-res:Bend,_Oregon | 'protected'-dbo:custodian\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/custodian> <http://dbpedia.org/resource/Bend,_Oregon> . ?x <http://dbpedia.org/property/cities> ?uri . }\"\n", + " SELECT DISTINCT?uri WHERE { res:Bend,_Oregon dbo:custodian?uri } \n", + "\"Where are all the protected areas near Bend, Oregon? | 'Bend, Oregon'-res:Bend,_Oregon | 'protected'-dbo:custodian\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bend,_Oregon> <http://dbpedia.org/ontology/custodian> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:publisher res:Cinema_International_Corporation .?uri rdf:type dbo:Film}\n", - "\"which movies have been published by Cinema International Corporation? | 'Cinema International Corporation'-res:Cinema_International_Corporation | 'published'-dbo:distributor\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/publisher> <http://dbpedia.org/resource/Cinema_International_Corporation> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:distributor res:Cinema_International_Corporation .?uri rdf:type dbo:Film}\n", + "\"which movies have been published by Cinema International Corporation? | 'Cinema International Corporation'-res:Cinema_International_Corporation | 'published'-dbo:distributor\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/distributor> <http://dbpedia.org/resource/Cinema_International_Corporation> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}\"\n", "\n", - " SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:academicDiscipline res:Neuroimaging.?x?uri }\n", - "\"Count the total number of academic discipline of the journals whose one of the academic discipline is Neuroimaging ? | 'Neuroimaging'-res:Neuroimaging | 'count'-dbo:type | 'total'-dbo:result | 'academic discipline'-dbo:abstract | 'journals'-dbp:journal | 'academic discipline'-dbo:abstract\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/academicDiscipline> <http://dbpedia.org/resource/Neuroimaging> . ?x ?uri }\"\n", + " SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:academicDiscipline res:Neuroimaging.?x dbp:discipline?uri }\n", + "\"Count the total number of academic discipline of the journals whose one of the academic discipline is Neuroimaging ? | 'Neuroimaging'-res:Neuroimaging | 'count'-dbo:type | 'total'-dbo:result | 'academic discipline'-dbo:abstract | 'journals'-dbp:journal | 'academic discipline'-dbo:abstract\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/academicDiscipline> <http://dbpedia.org/resource/Neuroimaging> . ?x <http://dbpedia.org/property/discipline> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:wheel res:Ferris_wheel.?x dbp:city?uri . }\n", - "\"What are some cities which have a Ferris wheel? | 'Ferris wheel'-res:Ferris_wheel | 'cities'-dbo:country\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/wheel> <http://dbpedia.org/resource/Ferris_wheel> . ?x <http://dbpedia.org/property/city> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Ferris_wheel dbo:ground?x.?x dbp:cities?uri . }\n", + "\"What are some cities which have a Ferris wheel? | 'Ferris wheel'-res:Ferris_wheel | 'cities'-dbo:country\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ferris_wheel> <http://dbpedia.org/ontology/ground> ?x . ?x <http://dbpedia.org/property/cities> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:music res:Gary_Chang.?x dbo:manufacturer?uri . }\n", - "\"Who are the producers of the movies which has music by Gary Chang ? | 'Gary Chang'-res:Gary_Chang | 'producers'-dbo:manufacturer | 'movies'-dbo:film | 'music'-dbo:musicComposer\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Gary_Chang> . ?x <http://dbpedia.org/ontology/manufacturer> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:music res:Gary_Chang .?uri rdf:type dbo:Film}\n", + "\"Who are the producers of the movies which has music by Gary Chang ? | 'Gary Chang'-res:Gary_Chang | 'producers'-dbo:manufacturer | 'movies'-dbo:film | 'music'-dbo:musicComposer\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Gary_Chang> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:David_Animle_Hansen dbp:allegiance?uri } \n", "\"To which nation did David Animle Hanses owe his allegiance? | 'David Animle Hanses'-res:David_Animle_Hansen | 'nation'-dbo:country | 'owe'-dbo:leader | 'allegiance'-dbo:allegiance\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/David_Animle_Hansen> <http://dbpedia.org/property/allegiance> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:The_God_Who_Wasn't_There dbp:starring?x.?x dbo:almaMater?uri . }\n", - "\"What is the alma mater of the actors of The God Who Wasn't There ? | 'The God Who Wasn't There'-res:The_God_Who_Wasn't_There | 'actor'-dbp:starring | 'alma mater'-dbp:almaMater\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_God_Who_Wasn't_There> <http://dbpedia.org/property/starring> ?x . ?x <http://dbpedia.org/ontology/almaMater> ?uri . }\"\n", + " SELECT DISTINCT?uri WHERE { res:The_God_Who_Wasn't_There dbp:starring?uri } \n", + "\"What is the alma mater of the actors of The God Who Wasn't There ? | 'The God Who Wasn't There'-res:The_God_Who_Wasn't_There | 'actor'-dbp:starring | 'alma mater'-dbp:almaMater\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_God_Who_Wasn't_There> <http://dbpedia.org/property/starring> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:birthPlace res:Bellaire,_Ohio.?x dbp:team?uri . }\n", - "\"The players born in Bellaire, Ohio have played for which team? | 'Bellaire, Ohio'-res:Bellaire,_Ohio | 'players'-dbo:material | 'born'-dbo:birthPlace | 'played'-dbo:portrayer | 'team'-dbo:team\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Bellaire,_Ohio> . ?x <http://dbpedia.org/property/team> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:birthPlace res:Bellaire,_Ohio.?uri dbp:team?x . }\n", + "\"The players born in Bellaire, Ohio have played for which team? | 'Bellaire, Ohio'-res:Bellaire,_Ohio | 'players'-dbo:material | 'born'-dbo:birthPlace | 'played'-dbo:portrayer | 'team'-dbo:team\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Bellaire,_Ohio> . ?uri <http://dbpedia.org/property/team> ?x . }\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Putri_Raemawasti dbo:birthName?uri } \n", "\"What is the birth name of Putri Raemawasti ? | 'Putri Raemawasti'-res:Putri_Raemawasti | 'birth name'-dbo:birthName\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Putri_Raemawasti> <http://dbpedia.org/ontology/birthName> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:associatedMusicalArtist res:Ren_Bonian.?uri dbo:birthPlace?x . }\n", - "\"Musical artists who are associated with Ren & Angela were born where ? | 'Ren & Angela'-res:Ren_Bonian | 'musical artists'-dbo:musicalArtist | 'associated'-dbo:associate | 'born'-dbo:birthPlace\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/associatedMusicalArtist> <http://dbpedia.org/resource/Ren_Bonian> . ?uri <http://dbpedia.org/ontology/birthPlace> ?x . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Ren_Bonian dbo:associatedMusicalArtist?uri. res:Anger_(musicalArtist) dbp:birthPlace?uri. }\n", + "\"Musical artists who are associated with Ren & Angela were born where ? | 'Ren & Angela'-res:Ren_Bonian | 'musical artists'-dbo:musicalArtist | 'associated'-dbo:associate | 'born'-dbo:birthPlace\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ren_Bonian> <http://dbpedia.org/ontology/associatedMusicalArtist> ?uri . <http://dbpedia.org/resource/Anger_(musicalArtist)> <http://dbpedia.org/property/birthPlace> ?uri . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Language_Integrated_Query dbo:designer?uri } \n", - "\"Who designed the language integrated query? | 'language integrated query'-res:Language_Integrated_Query | 'designed'-dbo:designer\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Language_Integrated_Query> <http://dbpedia.org/ontology/designer> ?uri } \"\n", + " SELECT DISTINCT?uri WHERE { res:Language_Integrated_Query dbp:designer?uri } \n", + "\"Who designed the language integrated query? | 'language integrated query'-res:Language_Integrated_Query | 'designed'-dbo:designer\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Language_Integrated_Query> <http://dbpedia.org/property/designer> ?uri } \"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Dan_Otero dbo:debutTeam?uri } \n", "\"Name the debut team of Dan Otero ? | 'Dan Otero'-res:Dan_Otero | 'debut team'-dbo:debutTeam\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dan_Otero> <http://dbpedia.org/ontology/debutTeam> ?uri } \"\n", @@ -990,23 +734,23 @@ "SELECT DISTINCT?uri WHERE {?uri dbp:screenplay res:Eric_Roth .?uri rdf:type dbo:Film}\n", "\"What are the movies whose screenplay is done by Eric Roth? | 'screenplay'-res:Screenplay | 'Eric Roth'-res:Eric_Roth | 'screenplay'-dbp:screenplay | 'movie'-dbo:Film\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/screenplay> <http://dbpedia.org/resource/Eric_Roth> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}\"\n", "\n", - " SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:recordedIn res:Miami.?x dbp:writer?uri }\n", - "\"What is the total number of writers whose singles are recorded in Miami? | 'Miami'-res:Miami | 'total'-dbo:populationTotal | 'writers'-dbo:writer | 'singles'-dbo:slogan | 'recorded'-dbo:recordedIn\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/recordedIn> <http://dbpedia.org/resource/Miami> . ?x <http://dbpedia.org/property/writer> ?uri }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:recordedIn res:Miami.?x dbo:writer?uri . }\n", + "\"What is the total number of writers whose singles are recorded in Miami? | 'Miami'-res:Miami | 'total'-dbo:populationTotal | 'writers'-dbo:writer | 'singles'-dbo:slogan | 'recorded'-dbo:recordedIn\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/recordedIn> <http://dbpedia.org/resource/Miami> . ?x <http://dbpedia.org/ontology/writer> ?uri . }\"\n", "\n", "SELECT DISTINCT?uri WHERE {?x dbp:architecturalStyle res:Sanggar_Agung.?x dbo:religion?uri . }\n", "\"What religions are followed by members of the societies whose architectural influences can be seen on the Sanggar Agung ? | 'societies'-res:Societies_of_Saint_Lucia | 'Sanggar Agung'-res:Sanggar_Agung | 'architectural'-dbp:architecturalStyle | 'religion'-dbo:religion\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/architecturalStyle> <http://dbpedia.org/resource/Sanggar_Agung> . ?x <http://dbpedia.org/ontology/religion> ?uri . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:league res:European_Go_Federation . }\n", - "\"How many members are there in the European Go Federation? | 'European Go Federation'-res:Europe | 'European Go Federation'-res:European_Go_Federation | 'members'-dbo:membership | ''-dbo:country\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/league> <http://dbpedia.org/resource/European_Go_Federation> . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:membership res:European_Go_Federation . }\n", + "\"How many members are there in the European Go Federation? | 'European Go Federation'-res:Europe | 'European Go Federation'-res:European_Go_Federation | 'members'-dbo:membership | ''-dbo:country\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/membership> <http://dbpedia.org/resource/European_Go_Federation> . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Daniel_L._D._Granger dbo:basedOn?uri. res:Job_Durfee dbp:occupation?uri. }\n", - "\"Daniel L D Granger and Job Durfee have based their political career in which US state? | 'L'-res:L | 'daniel D Granger'-res:Daniel_D._Johnson | 'D'-res:D | 'daniel L Granger'-res:Daniel_L._D._Granger | 'Job Durfee'-res:Job_Durfee | 'US'-res:United_States | 'based'-dbo:office | 'political career'-dbo:occupation\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Daniel_L._D._Granger> <http://dbpedia.org/ontology/basedOn> ?uri . <http://dbpedia.org/resource/Job_Durfee> <http://dbpedia.org/property/occupation> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Daniel_L._D._Granger dbp:placeOfBirth?uri. res:Job_Durfee dbo:occupation?uri. }\n", + "\"Daniel L D Granger and Job Durfee have based their political career in which US state? | 'L'-res:L | 'daniel D Granger'-res:Daniel_D._Johnson | 'D'-res:D | 'daniel L Granger'-res:Daniel_L._D._Granger | 'Job Durfee'-res:Job_Durfee | 'US'-res:United_States | 'based'-dbo:office | 'political career'-dbo:occupation\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Daniel_L._D._Granger> <http://dbpedia.org/property/placeOfBirth> ?uri . <http://dbpedia.org/resource/Job_Durfee> <http://dbpedia.org/ontology/occupation> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:language res:Marika_Gombitov.?x dbo:language?uri . }\n", - "\"Marika Gombitov makes songs in which languages? | 'Marika gombitov'-res:Marika_Nezer | 'songs'-dbo:anthem | 'languages'-dbo:language\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/language> <http://dbpedia.org/resource/Marika_Gombitov> . ?x <http://dbpedia.org/ontology/language> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:language res:Marika_Nezer.?uri dbp:language?x . }\n", + "\"Marika Gombitov makes songs in which languages? | 'Marika gombitov'-res:Marika_Nezer | 'songs'-dbo:anthem | 'languages'-dbo:language\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/language> <http://dbpedia.org/resource/Marika_Nezer> . ?uri <http://dbpedia.org/property/language> ?x . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:recordLabel res:EMi.?x dbp:associatedMusicalArtist?uri . }\n", - "\"What are some musical artists associated with the ones signed up with EMI? | 'EMI'-res:Emi | 'musical artists'-dbo:show | 'associated'-dbo:associatedBand | 'signed'-dbo:movement\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/recordLabel> <http://dbpedia.org/resource/EMi> . ?x <http://dbpedia.org/property/associatedMusicalArtist> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:recordLabel res:EMi.?uri dbp:associatedActs?x . }\n", + "\"What are some musical artists associated with the ones signed up with EMI? | 'EMI'-res:Emi | 'musical artists'-dbo:show | 'associated'-dbo:associatedBand | 'signed'-dbo:movement\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/recordLabel> <http://dbpedia.org/resource/EMi> . ?uri <http://dbpedia.org/property/associatedActs> ?x . }\"\n", "\n", "SELECT DISTINCT?uri WHERE {?uri dbp:doctoralAdvisor res:Mary_Ainsworth .?uri rdf:type dbo:Scientist}\n", "\"Name the scientist whose supervisor also supervised Mary Ainsworth? | 'scientist'-res:Scientist_(musician) | 'Mary Ainsworth'-res:Mary_Ainsworth | 'name'-dbp:name | 'supervisor'-dbo:doctoralAdvisor | 'supervised'-dbo:doctoralAdvisor\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/doctoralAdvisor> <http://dbpedia.org/resource/Mary_Ainsworth> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}\"\n", @@ -1017,26 +761,26 @@ "SELECT DISTINCT?uri WHERE {?uri dbp:awards res:Copley_Medal .?uri rdf:type dbo:Scientist}\n", "\"Copley Medal has been awarded to which scientists? | 'copley Medal'-res:Copley_Medal | 'scientists'-res:Scientists_for_Global_Responsibility | 'awarded'-dbp:awards | 'scientist'-dbo:Scientist\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/awards> <http://dbpedia.org/resource/Copley_Medal> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}\"\n", "\n", - " SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:headquarters res:Beverly_Hills,_California.?x dbo:presenter?uri }\n", - "\"What is the total number of awards whose presenter's headquarters is Beverly Hills, California? | 'Beverly Hills, California'-res:Beverly_Hills,_California | 'total'-dbo:populationTotal | 'awards'-dbo:award | 'presenter'-dbo:presenter | 'headquarters'-dbp:headquarters\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Beverly_Hills,_California> . ?x <http://dbpedia.org/ontology/presenter> ?uri }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:headquarters res:Beverly_Hills,_California.?x dbo:presenter?uri . }\n", + "\"What is the total number of awards whose presenter's headquarters is Beverly Hills, California? | 'Beverly Hills, California'-res:Beverly_Hills,_California | 'total'-dbo:populationTotal | 'awards'-dbo:award | 'presenter'-dbo:presenter | 'headquarters'-dbp:headquarters\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Beverly_Hills,_California> . ?x <http://dbpedia.org/ontology/presenter> ?uri . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:The_Price_of_Beauty dbp:narrated?uri } \n", - "\"Who is the narrator of The Price of Beauty ? | 'The Price of Beauty'-res:The_Price_of_Beauty | 'narrator'-dbo:narrator\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Price_of_Beauty> <http://dbpedia.org/property/narrated> ?uri } \"\n", + " SELECT DISTINCT?uri WHERE { res:The_Price_of_Beauty dbo:narrator?uri } \n", + "\"Who is the narrator of The Price of Beauty ? | 'The Price of Beauty'-res:The_Price_of_Beauty | 'narrator'-dbo:narrator\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Price_of_Beauty> <http://dbpedia.org/ontology/narrator> ?uri } \"\n", "\n", "SELECT DISTINCT COUNT(?uri) WHERE { res:The_Band dbp:album?x.?x dbo:producer?uri . }\n", "\"How many albums did the maker of The Band produce? | 'The Band produce'-res:Produce_101 | 'albums'-dbo:album | 'maker'-dbo:producer\",\"SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/The_Band> <http://dbpedia.org/property/album> ?x . ?x <http://dbpedia.org/ontology/producer> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:country res:United_Kingdom.?uri dbp:country?x . }\n", - "\"Food in which countries has shallot in it? | 'countries'-res:Countries_of_the_United_Kingdom | 'food'-dbo:supplies | 'shallot'-dbo:award\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/United_Kingdom> . ?uri <http://dbpedia.org/property/country> ?x . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:country res:Canada.?x dbp:country?uri . }\n", + "\"Food in which countries has shallot in it? | 'countries'-res:Countries_of_the_United_Kingdom | 'food'-dbo:supplies | 'shallot'-dbo:award\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Canada> . ?x <http://dbpedia.org/property/country> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:instruments res:Hammond_organ .?uri rdf:type dbo:Film}\n", - "\"What are the movies whose music composer uses a Hammond organ? | 'Hammond organ'-res:Hammond_organ | 'movies'-dbo:film | 'music composer'-dbo:musicComposer\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/instruments> <http://dbpedia.org/resource/Hammond_organ> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:musicComposer res:Hammond_organ .?uri rdf:type dbo:Film}\n", + "\"What are the movies whose music composer uses a Hammond organ? | 'Hammond organ'-res:Hammond_organ | 'movies'-dbo:film | 'music composer'-dbo:musicComposer\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/musicComposer> <http://dbpedia.org/resource/Hammond_organ> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:artist res:Christopher_Franke.?uri rdf:type dbo:TelevisionShow}\n", - "\"Name the TV show with artist Christopher Franke and cast member Jason Carter ? | 'TV'-res:Tv_test_pattern | 'show with artist Christopher Franke'-res:Christopher_Franke | 'cast member Jason Carter'-res:Jason_Carter_(actor) | 'name'-dbp:name\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/artist> <http://dbpedia.org/resource/Christopher_Franke> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbo:starring res:Christopher_Franke.?uri dbp:network res:Jason_Carter_(actor) . }\n", + "\"Name the TV show with artist Christopher Franke and cast member Jason Carter ? | 'TV'-res:Tv_test_pattern | 'show with artist Christopher Franke'-res:Christopher_Franke | 'cast member Jason Carter'-res:Jason_Carter_(actor) | 'name'-dbp:name\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Christopher_Franke> . ?uri <http://dbpedia.org/property/network> <http://dbpedia.org/resource/Jason_Carter_(actor)> . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:training res:General_Educational_Development.?x dbp:restingplace?uri . }\n", - "\"Where was the deadbody discovered of one of the alumni of General Educational Development? | 'deadbody'-res:Deadboy_&_the_Elephantmen | 'General Educational Development'-res:General_Educational_Development | 'Education'-dbp:education | 'body discovered'-dbp:bodyDiscovered\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/training> <http://dbpedia.org/resource/General_Educational_Development> . ?x <http://dbpedia.org/property/restingplace> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:education res:General_Educational_Development.?x dbp:bodyDiscovered?uri . }\n", + "\"Where was the deadbody discovered of one of the alumni of General Educational Development? | 'deadbody'-res:Deadboy_&_the_Elephantmen | 'General Educational Development'-res:General_Educational_Development | 'Education'-dbp:education | 'body discovered'-dbp:bodyDiscovered\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/education> <http://dbpedia.org/resource/General_Educational_Development> . ?x <http://dbpedia.org/property/bodyDiscovered> ?uri . }\"\n", "\n", "SELECT DISTINCT?uri WHERE {?x dbo:architect res:Oddamavadi.?x dbp:bridgeCarries?uri . }\n", "\"Who designed the bridge in Oddamavadi? | 'Oddamavadi'-res:Oddamavadi | 'designed'-dbo:architect | 'bridge'-dbo:bridgeCarries\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/architect> <http://dbpedia.org/resource/Oddamavadi> . ?x <http://dbpedia.org/property/bridgeCarries> ?uri . }\"\n", @@ -1044,41 +788,41 @@ "SELECT DISTINCT?uri WHERE {?x dbo:birthPlace res:Houston_Astros.?x dbp:debutteam?uri . }\n", "\"List the debut team of the baseball player who born in Houston. | 'Houston'-res:Houston_Astros | 'debut team'-dbo:team | 'baseball player'-dbo:participant | 'born'-dbo:birthPlace\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Houston_Astros> . ?x <http://dbpedia.org/property/debutteam> ?uri . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:British_Gazette dbo:editor?uri } \n", - "\"Who edited British Gazette ? | 'British Gazette'-res:United_Kingdom | 'British Gazette'-res:British_Gazette | 'edited'-dbo:editor | ''-dbo:country\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/British_Gazette> <http://dbpedia.org/ontology/editor> ?uri } \"\n", + " SELECT DISTINCT?uri WHERE { res:British_Gazette dbp:editor?uri } \n", + "\"Who edited British Gazette ? | 'British Gazette'-res:United_Kingdom | 'British Gazette'-res:British_Gazette | 'edited'-dbo:editor | ''-dbo:country\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/British_Gazette> <http://dbpedia.org/property/editor> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:associatedActs res:Divertis.?uri dbo:associatedMusicalArtist?x . }\n", - "\"What acts and artists are associated with people who have worked with Divertis? | 'Divertis'-res:Divertis | 'associated acts'-dbp:associatedActs | 'associated'-dbo:associatedMusicalArtist\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/associatedActs> <http://dbpedia.org/resource/Divertis> . ?uri <http://dbpedia.org/ontology/associatedMusicalArtist> ?x . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:associatedActs res:Divertis.?x dbo:associatedMusicalArtist?uri . }\n", + "\"What acts and artists are associated with people who have worked with Divertis? | 'Divertis'-res:Divertis | 'associated acts'-dbp:associatedActs | 'associated'-dbo:associatedMusicalArtist\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/associatedActs> <http://dbpedia.org/resource/Divertis> . ?x <http://dbpedia.org/ontology/associatedMusicalArtist> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:music res:Gerard_Marino.?x dbo:developer?uri . }\n", - "\"Which company has developed games whose music is done by Gerard Marino? | 'Gerard Marino'-res:Gerard_Marino | 'company'-dbo:company | 'developed'-dbo:leader | 'games'-dbo:games | 'music'-dbp:music\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Gerard_Marino> . ?x <http://dbpedia.org/ontology/developer> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:music res:Gerard_Marino.?uri dbo:developer?x . }\n", + "\"Which company has developed games whose music is done by Gerard Marino? | 'Gerard Marino'-res:Gerard_Marino | 'company'-dbo:company | 'developed'-dbo:leader | 'games'-dbo:games | 'music'-dbp:music\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Gerard_Marino> . ?uri <http://dbpedia.org/ontology/developer> ?x . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbo:developer res:Unix_Like_OS . }\n", - "\"Who all have developed softwares for Unix Like OSes? | 'softwares'-res:Soft_Machine | 'Unix Like OSes'-res:Unix | 'developed'-dbo:developer\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/developer> <http://dbpedia.org/resource/Unix_Like_OS> . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbo:developer res:Unix . }\n", + "\"Who all have developed softwares for Unix Like OSes? | 'softwares'-res:Soft_Machine | 'Unix Like OSes'-res:Unix | 'developed'-dbo:developer\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/developer> <http://dbpedia.org/resource/Unix> . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:seat res:Berlin.?x dbo:leader?uri . }\n", - "\"What are some party leaders of the parties which have had a seat in Berlin? | 'Berlin'-res:Berlin | 'party leaders'-dbo:team | 'parties'-dbo:chain | 'seat'-dbp:seat\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/seat> <http://dbpedia.org/resource/Berlin> . ?x <http://dbpedia.org/ontology/leader> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:seat res:Berlin.?x dbo:party?uri . }\n", + "\"What are some party leaders of the parties which have had a seat in Berlin? | 'Berlin'-res:Berlin | 'party leaders'-dbo:team | 'parties'-dbo:chain | 'seat'-dbp:seat\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/seat> <http://dbpedia.org/resource/Berlin> . ?x <http://dbpedia.org/ontology/party> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:name res:La_Liga.?uri dbo:team?x . }\n", - "\"Name all the soccer players who played in a under 18 club for La Liga? | 'soccer players'-res:Major_League_Soccer_Players_Union | 'La Liga'-res:La_Liga | 'name'-dbp:name | 'played'-dbo:participant | '18 club'-dbp:body\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/name> <http://dbpedia.org/resource/La_Liga> . ?uri <http://dbpedia.org/ontology/team> ?x . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:youthclubs res:La_Liga.?uri dbp:name?x . }\n", + "\"Name all the soccer players who played in a under 18 club for La Liga? | 'soccer players'-res:Major_League_Soccer_Players_Union | 'La Liga'-res:La_Liga | 'name'-dbp:name | 'played'-dbo:participant | '18 club'-dbp:body\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/youthclubs> <http://dbpedia.org/resource/La_Liga> . ?uri <http://dbpedia.org/property/name> ?x . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Michael_M._Sears dbp:employer?uri. res:Delta_III dbo:manufacturer?uri} \n", - "\"Which employer of Michael M. Sears is also the producer of Delta III ? | 'Michael M. Sears'-res:Michael_M._Sears | 'Delta III'-res:Delta_III | 'employer'-dbo:employer | 'producer'-dbo:producer\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Michael_M._Sears> <http://dbpedia.org/property/employer> ?uri . <http://dbpedia.org/resource/Delta_III> <http://dbpedia.org/ontology/manufacturer> ?uri} \"\n", + " SELECT DISTINCT?uri WHERE { res:Michael_M._Sears dbp:employer?uri. res:Delta_III dbo:producer?uri} \n", + "\"Which employer of Michael M. Sears is also the producer of Delta III ? | 'Michael M. Sears'-res:Michael_M._Sears | 'Delta III'-res:Delta_III | 'employer'-dbo:employer | 'producer'-dbo:producer\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Michael_M._Sears> <http://dbpedia.org/property/employer> ?uri . <http://dbpedia.org/resource/Delta_III> <http://dbpedia.org/ontology/producer> ?uri} \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:designer res:ASC_Creative_Services.?x dbp:design?uri . }\n", - "\"Which person designed the cars which has been designed by ASC Creative Services? | 'ASC Creative Services'-res:ASC_Creative_Services | 'person'-dbo:type | 'designed'-dbo:architect | 'cars'-dbo:management | 'designed'-dbo:architect\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/designer> <http://dbpedia.org/resource/ASC_Creative_Services> . ?x <http://dbpedia.org/property/design> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:designer res:ASC_Creative_Services.?x dbp:carries?uri . }\n", + "\"Which person designed the cars which has been designed by ASC Creative Services? | 'ASC Creative Services'-res:ASC_Creative_Services | 'person'-dbo:type | 'designed'-dbo:architect | 'cars'-dbo:management | 'designed'-dbo:architect\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/designer> <http://dbpedia.org/resource/ASC_Creative_Services> . ?x <http://dbpedia.org/property/carries> ?uri . }\"\n", "\n", - " SELECT DISTINCT COUNT(?uri) WHERE { res:The_Second_Coming_(TV_serial) dbo:author?uri } \n", - "\"Count the number of important works done by the writers of The Second Coming? | 'The Second Coming'-res:The_Second_Coming_(TV_serial) | 'writers'-dbo:author | 'works'-dbo:notableWork\",\" SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/The_Second_Coming_(TV_serial)> <http://dbpedia.org/ontology/author> ?uri } \"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbo:notableWork res:The_Second_Coming_(TV_serial) . }\n", + "\"Count the number of important works done by the writers of The Second Coming? | 'The Second Coming'-res:The_Second_Coming_(TV_serial) | 'writers'-dbo:author | 'works'-dbo:notableWork\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/notableWork> <http://dbpedia.org/resource/The_Second_Coming_(TV_serial)> . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Michael_Springer dbp:profession?uri. res:Donald_Brooks dbo:formerStudent?uri} \n", - "\"For whom did Michael Springer palyed for which is also had a former student named Donald Brooks ? | 'Michael Springer'-res:Michael_Springer | 'Donald Brooks'-res:Donald_Brooks | 'palyed'-dbo:alias | 'former student'-dbo:retired\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Michael_Springer> <http://dbpedia.org/property/profession> ?uri . <http://dbpedia.org/resource/Donald_Brooks> <http://dbpedia.org/ontology/formerStudent> ?uri} \"\n", + " SELECT DISTINCT?uri WHERE { res:Michael_Springer dbp:almaMater?uri. res:Donald_Brooks dbo:formerStudent?uri} \n", + "\"For whom did Michael Springer palyed for which is also had a former student named Donald Brooks ? | 'Michael Springer'-res:Michael_Springer | 'Donald Brooks'-res:Donald_Brooks | 'palyed'-dbo:alias | 'former student'-dbo:retired\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Michael_Springer> <http://dbpedia.org/property/almaMater> ?uri . <http://dbpedia.org/resource/Donald_Brooks> <http://dbpedia.org/ontology/formerStudent> ?uri} \"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Eric_Jendresen dbo:writer?uri. res:John_Orloff dbp:series?uri. }\n", - "\"Which series was written by Eric Jendresen and John Orloff? | 'Eric Jendresen'-res:Erik_Jendresen | 'John Orloff'-res:John_Orloff | 'series'-dbo:series | 'written'-dbo:writer\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Eric_Jendresen> <http://dbpedia.org/ontology/writer> ?uri . <http://dbpedia.org/resource/John_Orloff> <http://dbpedia.org/property/series> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbo:writer res:Erik_Jendresen.?uri dbp:series res:John_Orloff. }\n", + "\"Which series was written by Eric Jendresen and John Orloff? | 'Eric Jendresen'-res:Erik_Jendresen | 'John Orloff'-res:John_Orloff | 'series'-dbo:series | 'written'-dbo:writer\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/writer> <http://dbpedia.org/resource/Erik_Jendresen> . ?uri <http://dbpedia.org/property/series> <http://dbpedia.org/resource/John_Orloff> . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:The_Wolves_of_Mercy_Falls_characters dbp:nickname?x. }\n", - "\"What are the nicknames given to the characters of The Wolves of the Mercy Falls? | 'The Wolves of the Mercy Falls'-res:List_of_The_Wolves_of_Mercy_Falls_characters | 'nickname'-dbp:nickname\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Wolves_of_Mercy_Falls_characters> <http://dbpedia.org/property/nickname> ?x . }\"\n", + " SELECT DISTINCT?uri WHERE { res:The_Wolves_of_Mercy_Falls_characters dbp:nickname?uri } \n", + "\"What are the nicknames given to the characters of The Wolves of the Mercy Falls? | 'The Wolves of the Mercy Falls'-res:List_of_The_Wolves_of_Mercy_Falls_characters | 'nickname'-dbp:nickname\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Wolves_of_Mercy_Falls_characters> <http://dbpedia.org/property/nickname> ?uri } \"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Neungin_High_School dbp:religiousAffiliation?uri } \n", "\"What is the religious affiliation of Neungin High School? | 'Neungin High School'-res:Neungin_High_School | 'religious affiliation'-dbp:religiousAffiliation\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Neungin_High_School> <http://dbpedia.org/property/religiousAffiliation> ?uri } \"\n", @@ -1092,8 +836,8 @@ " SELECT DISTINCT?uri WHERE { res:Pong_Pha dbo:timeZone?uri } \n", "\"In which time zone is Pong Pha? | 'Pong Pha'-res:Pong_Pha | 'time zone'-dbo:timeZone\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pong_Pha> <http://dbpedia.org/ontology/timeZone> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbo:class res:Bacilli .?uri rdf:type dbo:\n", - "\"Which bacteria's taxonomic class is Bacilli? | 'Bacteria'-res:Bacteria | 'taxonomic class'-res:Class_(biology) | 'Bacilli'-res:Bacilli\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/class> <http://dbpedia.org/resource/Bacilli> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology>/\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbo:titles res:Bacilli . }\n", + "\"Which bacteria's taxonomic class is Bacilli? | 'Bacteria'-res:Bacteria | 'taxonomic class'-res:Class_(biology) | 'Bacilli'-res:Bacilli\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/titles> <http://dbpedia.org/resource/Bacilli> . }\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Reigh_Count dbo:honours?uri } \n", "\"What honours did Reigh Count receive? | 'Reigh Count'-res:Reigh_Count | 'honours'-dbo:honours | 'receive'-dbo:board\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Reigh_Count> <http://dbpedia.org/ontology/honours> ?uri } \"\n", @@ -1101,38 +845,38 @@ "SELECT DISTINCT?uri WHERE {?uri dbp:related res:Doctor_Who_Confidential .?uri rdf:type dbo:TelevisionShow}\n", "\"What is the television show whose related with Doctor Who Confidential? | 'Doctor Who Confidential'-res:Doctor_Who_Confidential | 'related'-dbo:related | 'television show'-dbo:TelevisionShow\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/related> <http://dbpedia.org/resource/Doctor_Who_Confidential> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:The_Triple_Door_(The_Courage_album) dbp:arena?uri } \n", - "\"In which city wasThe Triple Door (The Courage album) performed live? | 'city wasThe Triple Door (The Courage album)'-res:Live_at_The_Triple_Door_(The_Courage_album) | 'performed'-dbo:artist | 'live'-dbo:languageFamily\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Triple_Door_(The_Courage_album)> <http://dbpedia.org/property/arena> ?uri } \"\n", + "SELECT DISTINCT?uri WHERE { res:The_Triple_Door_(The_Courage_album) dbp:artist?x.?x dbo:locationCity?uri . }\n", + "\"In which city wasThe Triple Door (The Courage album) performed live? | 'city wasThe Triple Door (The Courage album)'-res:Live_at_The_Triple_Door_(The_Courage_album) | 'performed'-dbo:artist | 'live'-dbo:languageFamily\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Triple_Door_(The_Courage_album)> <http://dbpedia.org/property/artist> ?x . ?x <http://dbpedia.org/ontology/locationCity> ?uri . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Ali_Habib_Mahmud dbp:battles?uri } \n", - "\"List the battles fought by Ali Habib Mahmud ? | 'Ali Habib Mahmud'-res:Ali_Habib_Mahmud | 'battles'-dbo:battle | 'fought'-dbo:type\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ali_Habib_Mahmud> <http://dbpedia.org/property/battles> ?uri } \"\n", + "SELECT DISTINCT?uri WHERE { res:Ali_Habib_Mahmud dbp:battles?x.?x dbo:battle?uri . }\n", + "\"List the battles fought by Ali Habib Mahmud ? | 'Ali Habib Mahmud'-res:Ali_Habib_Mahmud | 'battles'-dbo:battle | 'fought'-dbo:type\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ali_Habib_Mahmud> <http://dbpedia.org/property/battles> ?x . ?x <http://dbpedia.org/ontology/battle> ?uri . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:source res:United_States.?uri dbp:source?x . }\n", - "\"How many companies were started in the states? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'started'-dbo:source\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/source> <http://dbpedia.org/resource/United_States> . ?uri <http://dbpedia.org/property/source> ?x . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbo:sourceCountry res:New_York_Stock_Exchange_(J) . }\n", + "\"How many companies were started in the states? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'started'-dbo:source\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/sourceCountry> <http://dbpedia.org/resource/New_York_Stock_Exchange_(J)> . }\"\n", "\n", "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:distributor res:Cinema_International_Corporation .?uri rdf:type dbo:Film}\n", "\"How many movies are distributed by Cinema International Corporation? | 'Cinema International Corporation'-res:Cinema_International_Corporation | 'distributed by'-dbo:distributor | 'movie'-dbo:Film\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/distributor> <http://dbpedia.org/resource/Cinema_International_Corporation> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Cornell_University_Press dbp:education?uri } \n", - "\"To which educational institute does Cornell University Press belong to? | 'Cornell University Press'-res:Cornell_University_Press | 'educational institute'-dbo:university | 'belong'-dbo:date\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cornell_University_Press> <http://dbpedia.org/property/education> ?uri } \"\n", + " SELECT DISTINCT?uri WHERE { res:Cornell_University_Press dbo:education?uri } \n", + "\"To which educational institute does Cornell University Press belong to? | 'Cornell University Press'-res:Cornell_University_Press | 'educational institute'-dbo:university | 'belong'-dbo:date\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cornell_University_Press> <http://dbpedia.org/ontology/education> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:keyPeople res:Ham .?uri rdf:type dbo:Country}\n", - "\"In which country's cuisine, ham is an important part? | 'ham'-res:Ham | 'country'-dbo:country\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/keyPeople> <http://dbpedia.org/resource/Ham> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Country>}\"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:veneratedIn res:Ham.?x dbo:country?uri . }\n", + "\"In which country's cuisine, ham is an important part? | 'ham'-res:Ham | 'country'-dbo:country\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/veneratedIn> <http://dbpedia.org/resource/Ham> . ?x <http://dbpedia.org/ontology/country> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Microsoft_Windows dbo:computingPlatform?uri. res:Software_as_a_service dbp:license?uri. }\n", - "\"List the softwares which runs on Microsoft Windows and has license as Software as a service? | 'softwares'-res:Software | 'Microsoft Windows'-res:Microsoft_Windows | 'Software'-res:Software | 'runs'-dbo:symbol | 'license'-dbo:license | 'service'-dbo:industry\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Microsoft_Windows> <http://dbpedia.org/ontology/computingPlatform> ?uri . <http://dbpedia.org/resource/Software_as_a_service> <http://dbpedia.org/property/license> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbo:computingPlatform res:Microsoft_Windows.?uri dbp:license res:Software . }\n", + "\"List the softwares which runs on Microsoft Windows and has license as Software as a service? | 'softwares'-res:Software | 'Microsoft Windows'-res:Microsoft_Windows | 'Software'-res:Software | 'runs'-dbo:symbol | 'license'-dbo:license | 'service'-dbo:industry\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/computingPlatform> <http://dbpedia.org/resource/Microsoft_Windows> . ?uri <http://dbpedia.org/property/license> <http://dbpedia.org/resource/Software> . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Full_Sized_Cars dbp:predecessor?x.?x dbo:engine?uri . }\n", - "\"Give me the list of cars which are the predecessor of Full Sized Cars? | 'Full Sized Cars'-res:Man-Sized_Wreath | 'cars'-dbo:management | 'predecessor'-dbo:predecessor\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Full_Sized_Cars> <http://dbpedia.org/property/predecessor> ?x . ?x <http://dbpedia.org/ontology/engine> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE { res:Man-Sized_Wreath dbo:predecessor?x.?x dbp:carries?uri . }\n", + "\"Give me the list of cars which are the predecessor of Full Sized Cars? | 'Full Sized Cars'-res:Man-Sized_Wreath | 'cars'-dbo:management | 'predecessor'-dbo:predecessor\",\"SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Man-Sized_Wreath> <http://dbpedia.org/ontology/predecessor> ?x . ?x <http://dbpedia.org/property/carries> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:computingPlatform res:Unix.?uri dbp:programmingLanguage?x . }\n", - "\"What are some software which are written in languages that are run on Unix like OS? | 'software'-res:Software_Publishing_Corporation | 'OS'-res:OS | 'Unix like'-res:Unix | 'written'-dbo:fate | 'languages'-dbo:language | 'run'-dbp:work\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/computingPlatform> <http://dbpedia.org/resource/Unix> . ?uri <http://dbpedia.org/property/programmingLanguage> ?x . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:computingPlatform res:Unix.?uri dbp:language?x . }\n", + "\"What are some software which are written in languages that are run on Unix like OS? | 'software'-res:Software_Publishing_Corporation | 'OS'-res:OS | 'Unix like'-res:Unix | 'written'-dbo:fate | 'languages'-dbo:language | 'run'-dbp:work\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/computingPlatform> <http://dbpedia.org/resource/Unix> . ?uri <http://dbpedia.org/property/language> ?x . }\"\n", "\n", "SELECT DISTINCT?uri WHERE {?x dbo:birthPlace res:Kenosha,_Wisconsin.?uri dbp:director?x . }\n", "\"List all the movies whose directors were born in Kenosha, Wisconsin? | 'Kenosha, Wisconsin'-res:Kenosha,_Wisconsin | 'born in'-dbo:birthPlace | 'director'-dbp:director\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Kenosha,_Wisconsin> . ?uri <http://dbpedia.org/property/director> ?x . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbo:family res:Duck_family.?uri dbp:relatives res:Clan_McDuck. }\n", - "\"Name the fictional character whose relative are Duck family and Clan McDuck? | 'Duck family'-res:Duck_family | 'Clan McDuck'-res:Clan_McDuck | 'name'-dbp:name | 'fictional character'-dbo:status | 'relative'-dbo:relative\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/family> <http://dbpedia.org/resource/Duck_family> . ?uri <http://dbpedia.org/property/relatives> <http://dbpedia.org/resource/Clan_McDuck> . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:relatives res:Duck_family.?uri dbo:relative res:Clan_McDuck . }\n", + "\"Name the fictional character whose relative are Duck family and Clan McDuck? | 'Duck family'-res:Duck_family | 'Clan McDuck'-res:Clan_McDuck | 'name'-dbp:name | 'fictional character'-dbo:status | 'relative'-dbo:relative\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/relatives> <http://dbpedia.org/resource/Duck_family> . ?uri <http://dbpedia.org/ontology/relative> <http://dbpedia.org/resource/Clan_McDuck> . }\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Jerome_B._Chaffee dbp:state?uri } \n", "\"Which state does Jerome B. Chaffee belong ? | 'Jerome B. Chaffee'-res:Jerome_B._Chaffee | 'state'-dbp:state\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jerome_B._Chaffee> <http://dbpedia.org/property/state> ?uri } \"\n", @@ -1143,107 +887,107 @@ " SELECT DISTINCT?uri WHERE { res:1994_Spanish_Grand_Prix dbp:poleDriver?uri } \n", "\"Name the Pole driver of 1994 Spanish Grand Prix ? | '1994 Spanish Grand Prix'-res:1994_Spanish_Grand_Prix | 'Pole driver'-dbp:poleDriver\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/1994_Spanish_Grand_Prix> <http://dbpedia.org/property/poleDriver> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:hubCity res:Detroit.?x dbo:parentCompany?uri . }\n", - "\"What is the parent company of the airline whose hub is in Detroit? | 'Detroit'-res:Detroit | 'parent company'-dbo:parentCompany | 'airline'-dbo:icaoAirlineCode | 'hub'-dbp:centre\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/hubCity> <http://dbpedia.org/resource/Detroit> . ?x <http://dbpedia.org/ontology/parentCompany> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:hubAirport res:Detroit.?x dbo:parentCompany?uri . }\n", + "\"What is the parent company of the airline whose hub is in Detroit? | 'Detroit'-res:Detroit | 'parent company'-dbo:parentCompany | 'airline'-dbo:icaoAirlineCode | 'hub'-dbp:centre\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/hubAirport> <http://dbpedia.org/resource/Detroit> . ?x <http://dbpedia.org/ontology/parentCompany> ?uri . }\"\n", "\n", "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:assembly res:Jefferson_North_Assembly.?x dbo:related?uri . }\n", "\"How many cars are similar to the ones assembled in the Jefferson North Assembly? | 'Jefferson North Assembly'-res:Jefferson_North_Assembly | 'cars'-dbo:management | 'assembled'-dbp:assembly\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/assembly> <http://dbpedia.org/resource/Jefferson_North_Assembly> . ?x <http://dbpedia.org/ontology/related> ?uri . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:institution res:Harvard_Medical_School.?x dbp:locations?uri . }\n", - "\"From how many different places have people gone to the Harward Medical School? | 'Harward Medical School'-res:Harvard_Medical_School | 'places'-dbo:height\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/institution> <http://dbpedia.org/resource/Harvard_Medical_School> . ?x <http://dbpedia.org/property/locations> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:institution res:Harvard_Medical_School.?uri dbp:locations?x . }\n", + "\"From how many different places have people gone to the Harward Medical School? | 'Harward Medical School'-res:Harvard_Medical_School | 'places'-dbo:height\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/institution> <http://dbpedia.org/resource/Harvard_Medical_School> . ?uri <http://dbpedia.org/property/locations> ?x . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:notableMusical res:Jerry_Bock.?x dbo:basedOn?uri . }\n", - "\"What are Jerry Bock's musicals based upon? | 'Jerry Bock'-res:Jerry_Bock | 'musicals'-dbo:show | 'based'-dbo:relative\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/notableMusical> <http://dbpedia.org/resource/Jerry_Bock> . ?x <http://dbpedia.org/ontology/basedOn> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:musicBy res:Jerry_Bock.?x dbo:basedOn?uri . }\n", + "\"What are Jerry Bock's musicals based upon? | 'Jerry Bock'-res:Jerry_Bock | 'musicals'-dbo:show | 'based'-dbo:relative\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/musicBy> <http://dbpedia.org/resource/Jerry_Bock> . ?x <http://dbpedia.org/ontology/basedOn> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:locatedInArea res:Yosemite_National_Park.?x dbp:firstAscentPeople?uri . }\n", - "\"Give me list of people who were the first to climb a peak in the Yosemite park? | 'Yosemite park'-res:Yosemite_National_Park | 'climb'-dbp:scale | 'peak'-dbo:language\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/locatedInArea> <http://dbpedia.org/resource/Yosemite_National_Park> . ?x <http://dbpedia.org/property/firstAscentPeople> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:locatedInArea res:Yosemite_National_Park.?x dbo:firstAscentPerson?uri . }\n", + "\"Give me list of people who were the first to climb a peak in the Yosemite park? | 'Yosemite park'-res:Yosemite_National_Park | 'climb'-dbp:scale | 'peak'-dbo:language\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/locatedInArea> <http://dbpedia.org/resource/Yosemite_National_Park> . ?x <http://dbpedia.org/ontology/firstAscentPerson> ?uri . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:PlayStation_4 dbp:successor?uri } \n", - "\"What is the successor of PlayStation 4 | 'PlayStation 4'-res:PlayStation_4 | 'successor'-dbo:successor\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/PlayStation_4> <http://dbpedia.org/property/successor> ?uri } \"\n", + " SELECT DISTINCT?uri WHERE { res:PlayStation_4 dbo:successor?uri } \n", + "\"What is the successor of PlayStation 4 | 'PlayStation 4'-res:PlayStation_4 | 'successor'-dbo:successor\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/PlayStation_4> <http://dbpedia.org/ontology/successor> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:location res:Camp_Nou.?x dbp:team?uri . }\n", - "\"What are some team members of the team based in Camp Nou? | 'Camp Nou'-res:Camp_Nou | 'team members'-dbo:languageFamily | 'team'-dbo:team | 'based'-dbo:relative\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/Camp_Nou> . ?x <http://dbpedia.org/property/team> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:ground res:Camp_Nou.?x dbo:team?uri . }\n", + "\"What are some team members of the team based in Camp Nou? | 'Camp Nou'-res:Camp_Nou | 'team members'-dbo:languageFamily | 'team'-dbo:team | 'based'-dbo:relative\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/ground> <http://dbpedia.org/resource/Camp_Nou> . ?x <http://dbpedia.org/ontology/team> ?uri . }\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Ryan_Powell_(lacrosse) dbp:team?uri } \n", "\"For which teams did Ryan Powell play for? | 'Ryan Powell'-res:Ryan_Powell_(lacrosse) | 'teams'-dbp:team | 'play'-dbo:team\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ryan_Powell_(lacrosse)> <http://dbpedia.org/property/team> ?uri } \"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:draftPrix res:Detroit_Pistons.?x dbo:deathPlace?uri . }\n", - "\"Total number of places where people drafted in the detroit pistons have died? | 'detroit pistons'-res:Detroit_Pistons | 'total'-dbo:populationTotal | 'places'-dbo:height | 'drafted'-dbo:draft | 'died'-dbo:deathDate\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/draftPrix> <http://dbpedia.org/resource/Detroit_Pistons> . ?x <http://dbpedia.org/ontology/deathPlace> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:draftTeam res:Detroit_Pistons.?x dbo:deathPlace?uri . }\n", + "\"Total number of places where people drafted in the detroit pistons have died? | 'detroit pistons'-res:Detroit_Pistons | 'total'-dbo:populationTotal | 'places'-dbo:height | 'drafted'-dbo:draft | 'died'-dbo:deathDate\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/draftTeam> <http://dbpedia.org/resource/Detroit_Pistons> . ?x <http://dbpedia.org/ontology/deathPlace> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:headquarters res:1211_Avenue_of_the_Americas .?uri rdf:type dbo:Newspaper}\n", - "\"List the newspapers whose offices are situated in 1211 Avenue of the Americas? | '1211 Avenue of the Americas'-res:1211_Avenue_of_the_Americas | 'situated'-dbo:position\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/1211_Avenue_of_the_Americas> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Newspaper>}\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:borough res:1211_Avenue_of_the_Americas.?uri dbp:office?x . }\n", + "\"List the newspapers whose offices are situated in 1211 Avenue of the Americas? | '1211 Avenue of the Americas'-res:1211_Avenue_of_the_Americas | 'situated'-dbo:position\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/borough> <http://dbpedia.org/resource/1211_Avenue_of_the_Americas> . ?uri <http://dbpedia.org/property/office> ?x . }\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Providence_Chapel,_Charlwood dbp:style?uri } \n", "\"By what style was Providence Chapel, Charlwood made? | 'Providence Chapel, Charlwood'-res:Providence_Chapel,_Charlwood | 'style'-dbp:style\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Providence_Chapel,_Charlwood> <http://dbpedia.org/property/style> ?uri } \"\n", "\n", - " SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:employer res:McDonnell_Aircraft.?x rdf:type dbo:Engineer}\n", - "\"Give me the total number of employer of the engineers whose one of the employer is McDonnell Aircraft ? | 'McDonnell Aircraft'-res:McDonnell_Aircraft | 'total'-dbo:populationTotal | 'employer'-dbo:employer | 'engineers'-dbo:architect | 'employer'-dbo:employer\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/employer> <http://dbpedia.org/resource/McDonnell_Aircraft> . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Engineer>}\"\n", + " SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:engine res:McDonnell_Aircraft.?x dbo:employer?uri }\n", + "\"Give me the total number of employer of the engineers whose one of the employer is McDonnell Aircraft ? | 'McDonnell Aircraft'-res:McDonnell_Aircraft | 'total'-dbo:populationTotal | 'employer'-dbo:employer | 'engineers'-dbo:architect | 'employer'-dbo:employer\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/engine> <http://dbpedia.org/resource/McDonnell_Aircraft> . ?x <http://dbpedia.org/ontology/employer> ?uri }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:genre res:Jazz_fusion.?x dbp:publisher?uri . }\n", - "\"How many record labels publish works of Jazz fusion? | 'Jazz fusion'-res:Jazz_fusion | 'record labels'-dbo:background | 'publish'-dbo:country | 'works'-dbo:language\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/genre> <http://dbpedia.org/resource/Jazz_fusion> . ?x <http://dbpedia.org/property/publisher> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:genre res:Jazz_fusion.?x dbo:recordLabel?uri . }\n", + "\"How many record labels publish works of Jazz fusion? | 'Jazz fusion'-res:Jazz_fusion | 'record labels'-dbo:background | 'publish'-dbo:country | 'works'-dbo:language\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/genre> <http://dbpedia.org/resource/Jazz_fusion> . ?x <http://dbpedia.org/ontology/recordLabel> ?uri . }\"\n", "\n", - " SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:starring res:Joey_McIntyre.?x rdf:type dbo:TelevisionShow}\n", - "\"Count the total number of cast member of the television shows whose actress is Joey McIntyre? | 'Joey McIntyre'-res:Joey_McIntyre | 'actress'-dbp:starring | 'actress'-dbp:starring\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/starring> <http://dbpedia.org/resource/Joey_McIntyre> . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:starring res:Joey_McIntyre .?uri rdf:type dbo:TelevisionShow}\n", + "\"Count the total number of cast member of the television shows whose actress is Joey McIntyre? | 'Joey McIntyre'-res:Joey_McIntyre | 'actress'-dbp:starring | 'actress'-dbp:starring\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/starring> <http://dbpedia.org/resource/Joey_McIntyre> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:awards res:SIGGRAPH.?x dbo:award?uri . }\n", - "\"List all the awards won by the artist who has won SIGGRAPH ? | 'SIGGRAPH'-res:SIGGRAPH | 'awards'-dbo:award | 'won'-dbo:award | 'artist'-dbo:artist | 'won'-dbo:award\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/awards> <http://dbpedia.org/resource/SIGGRAPH> . ?x <http://dbpedia.org/ontology/award> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:awards res:SIGGRAPH.?x dbo:award?uri . }\n", + "\"List all the awards won by the artist who has won SIGGRAPH ? | 'SIGGRAPH'-res:SIGGRAPH | 'awards'-dbo:award | 'won'-dbo:award | 'artist'-dbo:artist | 'won'-dbo:award\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/awards> <http://dbpedia.org/resource/SIGGRAPH> . ?x <http://dbpedia.org/ontology/award> ?uri . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:David_Scherman dbp:training?uri } \n", - "\"Where was david Scherman trained ? | 'david Scherman'-res:David_Scherman | 'trained'-dbo:training\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/David_Scherman> <http://dbpedia.org/property/training> ?uri } \"\n", + " SELECT DISTINCT?uri WHERE { res:David_Scherman dbo:training?uri } \n", + "\"Where was david Scherman trained ? | 'david Scherman'-res:David_Scherman | 'trained'-dbo:training\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/David_Scherman> <http://dbpedia.org/ontology/training> ?uri } \"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE { res:Raoul_Magrin-Vernerey dbp:battles?uri . }\n", - "\"Count the battles fought by Raoul Magrin-Vernerey? | 'Raoul Magrin-Vernerey'-res:Raoul_Magrin-Vernerey | 'fought'-dbp:battles\",\"SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Raoul_Magrin-Vernerey> <http://dbpedia.org/property/battles> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Raoul_Magrin-Vernerey dbp:battles?x. }\n", + "\"Count the battles fought by Raoul Magrin-Vernerey? | 'Raoul Magrin-Vernerey'-res:Raoul_Magrin-Vernerey | 'fought'-dbp:battles\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Raoul_Magrin-Vernerey> <http://dbpedia.org/property/battles> ?x . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:2004_OFC_Men's_Olympic_Qualifying_Tournament dbp:flag?uri. res:2008_Summer.?uri. }\n", - "\"Which athlete was the flag bearer for Switzerland in 2004 and 2008 summer Olympics ? | 'Switzerland'-res:Switzerland | '2004'-res:2004_OFC_Men's_Olympic_Qualifying_Tournament | '2008 summer Olympics'-res:2008_Summer_Olympics | 'athlete'-dbo:numberOfParticipatingAthletes | 'flag bearer'-dbo:flag\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/2004_OFC_Men's_Olympic_Qualifying_Tournament> <http://dbpedia.org/property/flag> ?uri . <http://dbpedia.org/resource/2008_Summer> . ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:flagBy res:2004_OFC_Men's_Olympic_Qualifying_Tournament .?uri rdf:type dbo:Athlete}\n", + "\"Which athlete was the flag bearer for Switzerland in 2004 and 2008 summer Olympics ? | 'Switzerland'-res:Switzerland | '2004'-res:2004_OFC_Men's_Olympic_Qualifying_Tournament | '2008 summer Olympics'-res:2008_Summer_Olympics | 'athlete'-dbo:numberOfParticipatingAthletes | 'flag bearer'-dbo:flag\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/flagBy> <http://dbpedia.org/resource/2004_OFC_Men's_Olympic_Qualifying_Tournament> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Athlete>}\"\n", "\n", "SELECT DISTINCT?uri WHERE { res:Angelina_Jolie dbo:parent?x.?x dbp:awards?uri . }\n", "\"What award was won by the father of Angelina Jolie? | 'Angelina Jolie'-res:Angelina_Jolie | 'award'-dbo:award | 'won'-dbo:parent | 'father'-dbo:parent\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Angelina_Jolie> <http://dbpedia.org/ontology/parent> ?x . ?x <http://dbpedia.org/property/awards> ?uri . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbo:stateOfOrigin res:Stateless . }\n", - "\"Count all the stateless people | 'count'-dbo:time | 'stateless'-dbo:gross\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/stateOfOrigin> <http://dbpedia.org/resource/Stateless> . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:nationality res:Stateless_people.?x dbo:stateOfOrigin?uri . }\n", + "\"Count all the stateless people | 'count'-dbo:time | 'stateless'-dbo:gross\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/nationality> <http://dbpedia.org/resource/Stateless_people> . ?x <http://dbpedia.org/ontology/stateOfOrigin> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbo:literaryGenre res:Utopian_and_dystopian_fiction . }\n", - "\"What novels are belong to the genre of Utopian and dystopian fiction? | 'Utopian'-res:Utopian_and_dystopian_fiction | 'genre'-dbo:literaryGenre\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/literaryGenre> <http://dbpedia.org/resource/Utopian_and_dystopian_fiction> . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:literaryGenre res:Utopian_and_dystopian_fiction .?uri rdf:type dbo:Book}\n", + "\"What novels are belong to the genre of Utopian and dystopian fiction? | 'Utopian'-res:Utopian_and_dystopian_fiction | 'genre'-dbo:literaryGenre\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/literaryGenre> <http://dbpedia.org/resource/Utopian_and_dystopian_fiction> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book>}\"\n", "\n", "SELECT DISTINCT?uri WHERE {?uri dbp:writer res:Nick_Castle .?uri rdf:type dbo:Film}\n", "\"What are the movies written by Nick Castle? | 'Nick Castle'-res:Nick_Castle | 'written by'-dbo:writer | 'movie'-dbo:Film\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/writer> <http://dbpedia.org/resource/Nick_Castle> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:riverAuthority res:Zambezi_River_Authority.?x dbp:mouthMouth?uri . }\n", - "\"On which river are there things belonging to zambezi river authority? | 'zambezi river authority'-res:Zambezi_River_Authority | 'river'-dbo:river | 'belonging'-dbo:affiliation\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/riverAuthority> <http://dbpedia.org/resource/Zambezi_River_Authority> . ?x <http://dbpedia.org/property/mouthMouth> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:riverAuthority res:Zambezi_River_Authority.?x dbp:river?uri . }\n", + "\"On which river are there things belonging to zambezi river authority? | 'zambezi river authority'-res:Zambezi_River_Authority | 'river'-dbo:river | 'belonging'-dbo:affiliation\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/riverAuthority> <http://dbpedia.org/resource/Zambezi_River_Authority> . ?x <http://dbpedia.org/property/river> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbo:manufacturer res:Glen_and_Les_Charles.?uri dbp:distributor res:Plaxton_Paramount_(Television_Show). }\n", - "\"Which Paramount TV show was produced by Glen and Les Charles ? | 'TV'-res:Tv_test_pattern | 'Paramount show'-res:Plaxton_Paramount | 'Glen'-res:Glen | 'Les Charles'-res:Glen_and_Les_Charles | 'produced'-dbo:manufacturer\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/manufacturer> <http://dbpedia.org/resource/Glen_and_Les_Charles> . ?uri <http://dbpedia.org/property/distributor> <http://dbpedia.org/resource/Plaxton_Paramount_(Television_Show)> . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:producer res:Glen_and_Les_Charles .?uri rdf:type dbo:TelevisionShow}\n", + "\"Which Paramount TV show was produced by Glen and Les Charles ? | 'TV'-res:Tv_test_pattern | 'Paramount show'-res:Plaxton_Paramount | 'Glen'-res:Glen | 'Les Charles'-res:Glen_and_Les_Charles | 'produced'-dbo:manufacturer\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/producer> <http://dbpedia.org/resource/Glen_and_Les_Charles> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:breeder res:Karinga_Bay.?x dbo:race?uri . }\n", - "\"Horses sired by Karinga Bay have participated in which races? | 'Karinga Bay'-res:Karinga_Bay | 'horses'-dbo:service | 'sired'-dbo:flag | 'participated'-dbo:participant | 'races'-dbo:races\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/breeder> <http://dbpedia.org/resource/Karinga_Bay> . ?x <http://dbpedia.org/ontology/race> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:served res:Karinga_Bay.?x dbp:race?uri . }\n", + "\"Horses sired by Karinga Bay have participated in which races? | 'Karinga Bay'-res:Karinga_Bay | 'horses'-dbo:service | 'sired'-dbo:flag | 'participated'-dbo:participant | 'races'-dbo:races\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/served> <http://dbpedia.org/resource/Karinga_Bay> . ?x <http://dbpedia.org/property/race> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:hairColor res:Brown_hair.?x dbo:residence?uri . }\n", - "\"Where do beauty queens with brown hair reside? | 'beauty queens'-res:Beauty_Queens | 'brown hair reside'-res:Brown_hair | 'hair'-dbp:hairColor | 'reside'-dbo:residence\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/hairColor> <http://dbpedia.org/resource/Brown_hair> . ?x <http://dbpedia.org/ontology/residence> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:hairColor res:Brown_hair.?uri dbo:residence?x . }\n", + "\"Where do beauty queens with brown hair reside? | 'beauty queens'-res:Beauty_Queens | 'brown hair reside'-res:Brown_hair | 'hair'-dbp:hairColor | 'reside'-dbo:residence\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/hairColor> <http://dbpedia.org/resource/Brown_hair> . ?uri <http://dbpedia.org/ontology/residence> ?x . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE { res:Clinton_Foundation dbp:keyPeople?uri . }\n", - "\"Count the key people of the Clinton Foundation? | 'Clinton Foundation'-res:Clinton_Foundation | 'key people'-dbp:keyPeople\",\"SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Clinton_Foundation> <http://dbpedia.org/property/keyPeople> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:keyPeople res:Clinton_Foundation . }\n", + "\"Count the key people of the Clinton Foundation? | 'Clinton Foundation'-res:Clinton_Foundation | 'key people'-dbp:keyPeople\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/keyPeople> <http://dbpedia.org/resource/Clinton_Foundation> . }\"\n", "\n", "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:music res:Akira_Ifukube . }\n", "\"Music of how many things has been given by Akira Ifukube? | 'Akira Ifukube'-res:Akira_Ifukube | 'Music'-dbp:music\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Akira_Ifukube> . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:placeOfDeath res:Connecticut_Colony.?x dbo:restingPlace?uri . }\n", - "\"In how many places are the tombs of people who died in Connecticut Colony? | 'tombs'-res:Tombs_of_the_Blind_Dead | 'Connecticut Colony'-res:Connecticut_Colony | 'places'-dbo:place | 'died'-dbp:deathPlace\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/placeOfDeath> <http://dbpedia.org/resource/Connecticut_Colony> . ?x <http://dbpedia.org/ontology/restingPlace> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:place res:Connecticut_Colony.?x dbo:place?uri . }\n", + "\"In how many places are the tombs of people who died in Connecticut Colony? | 'tombs'-res:Tombs_of_the_Blind_Dead | 'Connecticut Colony'-res:Connecticut_Colony | 'places'-dbo:place | 'died'-dbp:deathPlace\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/place> <http://dbpedia.org/resource/Connecticut_Colony> . ?x <http://dbpedia.org/ontology/place> ?uri . }\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Marie_Sisters dbp:producer?uri } \n", "\"Who are the producers of Marie Sisters? | 'Marie Sisters'-res:Marie_Sisters | 'producer'-dbp:producer\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Marie_Sisters> <http://dbpedia.org/property/producer> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Hayden,_Stone_&_Co. dbp:successor?uri . }\n", - "\"List the successor of successor of Hayden, Stone & Co. | 'Hayden, Stone & Co'-res:Hayden,_Stone_&_Co. | 'successor'-dbo:successor | 'successor'-dbo:successor\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Hayden,_Stone_&_Co> . <http://dbpedia.org/property/successor> ?uri . }\"\n", + " SELECT DISTINCT?uri WHERE { res:Hayden,_Stone_&_Co. dbp:successor?uri } \n", + "\"List the successor of successor of Hayden, Stone & Co. | 'Hayden, Stone & Co'-res:Hayden,_Stone_&_Co. | 'successor'-dbo:successor | 'successor'-dbo:successor\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Hayden,_Stone_&_Co> . <http://dbpedia.org/property/successor> ?uri } \"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Xynisteri dbo:origin?uri } \n", "\"What is the origin of Xynisteri? | 'Xynisteri'-res:Xynisteri | 'origin'-dbo:origin\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Xynisteri> <http://dbpedia.org/ontology/origin> ?uri } \"\n", "\n", - " SELECT DISTINCT?uri WHERE {?uri dbp:currentclub res:Barcelona_F.C. } \n", - "\"Who are currently playing for Barcelona FC? | 'FC'-res:FC | 'Barcelona'-res:Barcelona | 'playing'-dbo:field\",\" SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/currentclub> <http://dbpedia.org/resource/Barcelona_F.C> . } \"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:currentclub res:Barcelona . }\n", + "\"Who are currently playing for Barcelona FC? | 'FC'-res:FC | 'Barcelona'-res:Barcelona | 'playing'-dbo:field\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/currentclub> <http://dbpedia.org/resource/Barcelona> . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:keyPeople res:Deborah_Turness.?uri dbo:network?x . }\n", - "\"What is telecasted on the network where Deborah Turness holds important position? | 'Deborah Turness'-res:Deborah_Turness | 'telecasted'-dbo:transmission | 'network'-dbo:network | 'holds'-dbo:title | 'position'-dbo:position\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/keyPeople> <http://dbpedia.org/resource/Deborah_Turness> . ?uri <http://dbpedia.org/ontology/network> ?x . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:keyPeople res:Deborah_Turness.?x dbo:network?uri . }\n", + "\"What is telecasted on the network where Deborah Turness holds important position? | 'Deborah Turness'-res:Deborah_Turness | 'telecasted'-dbo:transmission | 'network'-dbo:network | 'holds'-dbo:title | 'position'-dbo:position\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/keyPeople> <http://dbpedia.org/resource/Deborah_Turness> . ?x <http://dbpedia.org/ontology/network> ?uri . }\"\n", "\n", "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:chairman res:Merritt_Paulson.?x dbo:homeStadium?uri . }\n", "\"How many home stadium are there, of the soccer club seasons whose chairman is Merritt Paulson? | 'soccer club seasons'-res:Mooroolbark_Soccer_Club | 'Merritt Paulson'-res:Merritt_Paulson | 'chairman'-dbp:chairman | 'home stadium'-dbo:homeStadium\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/chairman> <http://dbpedia.org/resource/Merritt_Paulson> . ?x <http://dbpedia.org/ontology/homeStadium> ?uri . }\"\n", @@ -1257,32 +1001,32 @@ "SELECT DISTINCT?uri WHERE { res:Timmy_Time dbo:executiveProducer?x.?x dbp:awards?uri . }\n", "\"What awards have been won by the executive producer of Timmy Time ? | 'Timmy Time'-res:Timmy_Time | 'executive producer'-dbo:executiveProducer | 'awards'-dbo:award\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Timmy_Time> <http://dbpedia.org/ontology/executiveProducer> ?x . ?x <http://dbpedia.org/property/awards> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:birthPlace res:United_States.?x dbo:deathPlace?uri . }\n", - "\"What have some US citizens died of? | 'US'-res:United_States | 'citizens'-dbp:country | 'died'-dbo:flag\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/birthPlace> <http://dbpedia.org/resource/United_States> . ?x <http://dbpedia.org/ontology/deathPlace> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:placeOfDeath res:United_States.?x dbo:nationality?uri . }\n", + "\"What have some US citizens died of? | 'US'-res:United_States | 'citizens'-dbp:country | 'died'-dbo:flag\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/placeOfDeath> <http://dbpedia.org/resource/United_States> . ?x <http://dbpedia.org/ontology/nationality> ?uri . }\"\n", "\n", - " SELECT DISTINCT COUNT(?uri) WHERE {?uri dbo:phylum res:Chordate.?uri order res:Diprotodontia }\n", - "\"Count the total number of mammals whose phylum is Chordate and order (taxonomy) is Diprotodontia? | 'mammals'-res:Mammals_of_the_Indiana_Dunes | 'Chordate'-res:Chordate | 'Diprotodontia'-res:Diprotodontia | 'count'-dbo:country | 'total'-dbo:result | 'phylum'-dbo:phylum | '(taxonomy)'-dbo:order\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/phylum> <http://dbpedia.org/resource/Chordate> . ?uri order <http://dbpedia.org/resource/Diprotodontia> }\"\n", + " SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:phylum res:Chordate.?uri dbo:order res:Diprotodontia } \n", + "\"Count the total number of mammals whose phylum is Chordate and order (taxonomy) is Diprotodontia? | 'mammals'-res:Mammals_of_the_Indiana_Dunes | 'Chordate'-res:Chordate | 'Diprotodontia'-res:Diprotodontia | 'count'-dbo:country | 'total'-dbo:result | 'phylum'-dbo:phylum | '(taxonomy)'-dbo:order\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/phylum> <http://dbpedia.org/resource/Chordate> . ?uri <http://dbpedia.org/ontology/order> <http://dbpedia.org/resource/Diprotodontia> } \"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:inflow res:Aegean_Sea.?x dbp:cities?uri . }\n", - "\"How many cities are around the sea into which the aegean sea flows? | 'aegean sea'-res:Aegean_Sea | 'cities'-dbo:city | 'sea'-dbo:lake | 'aegean sea'-dbo:lake | 'flows'-dbo:circulation\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/inflow> <http://dbpedia.org/resource/Aegean_Sea> . ?x <http://dbpedia.org/property/cities> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:inflow res:Aegean_Sea.?x dbo:cities?uri . }\n", + "\"How many cities are around the sea into which the aegean sea flows? | 'aegean sea'-res:Aegean_Sea | 'cities'-dbo:city | 'sea'-dbo:lake | 'aegean sea'-dbo:lake | 'flows'-dbo:circulation\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/inflow> <http://dbpedia.org/resource/Aegean_Sea> . ?x <http://dbpedia.org/ontology/cities> ?uri . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Erica_Frank dbo:university?uri. res:Ivan_Toplak dbp:managerClub?uri} \n", - "\"What is the university to which Erica Frank went, and where Ivan Toplak was a club manager? | 'Erica Frank went,'-res:Erica_Frank | 'Ivan Toplak'-res:Ivan_Toplak | 'university'-dbo:university | 'club manager'-dbo:managerClub\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Erica_Frank> <http://dbpedia.org/ontology/university> ?uri . <http://dbpedia.org/resource/Ivan_Toplak> <http://dbpedia.org/property/managerClub> ?uri} \"\n", + " SELECT DISTINCT?uri WHERE { res:Erica_Frank dbo:managerClub?uri. res:Ivan_Toplak dbp:university?uri} \n", + "\"What is the university to which Erica Frank went, and where Ivan Toplak was a club manager? | 'Erica Frank went,'-res:Erica_Frank | 'Ivan Toplak'-res:Ivan_Toplak | 'university'-dbo:university | 'club manager'-dbo:managerClub\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Erica_Frank> <http://dbpedia.org/ontology/managerClub> ?uri . <http://dbpedia.org/resource/Ivan_Toplak> <http://dbpedia.org/property/university> ?uri} \"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:executiveProducer res:Ricky_Gervais.?x dbp:series?uri . }\n", - "\"Ricky Gervais is the executive producer of the series having how many fictional characters? | 'Ricky gervais'-res:Ricky_Gervais | 'fictional characters'-res:Fiction | 'executive producer'-dbo:executiveProducer | 'series'-dbo:series\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/executiveProducer> <http://dbpedia.org/resource/Ricky_Gervais> . ?x <http://dbpedia.org/property/series> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:executiveProducer res:Ricky_Gervais.?uri dbp:series?x . }\n", + "\"Ricky Gervais is the executive producer of the series having how many fictional characters? | 'Ricky gervais'-res:Ricky_Gervais | 'fictional characters'-res:Fiction | 'executive producer'-dbo:executiveProducer | 'series'-dbo:series\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/executiveProducer> <http://dbpedia.org/resource/Ricky_Gervais> . ?uri <http://dbpedia.org/property/series> ?x . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:lyrics res:Flours.?uri dbo:family?x . }\n", - "\"What are some dishes from the family of dishes which primarily use flour? | 'dishes'-dbo:state | 'family'-dbo:family | 'dishes'-dbo:state | 'flour'-dbo:depth\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/lyrics> <http://dbpedia.org/resource/Flours> . ?uri <http://dbpedia.org/ontology/family> ?x . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:ingredientFamily res:Flour.?uri dbp:family?x . }\n", + "\"What are some dishes from the family of dishes which primarily use flour? | 'dishes'-dbo:state | 'family'-dbo:family | 'dishes'-dbo:state | 'flour'-dbo:depth\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/ingredientFamily> <http://dbpedia.org/resource/Flour> . ?uri <http://dbpedia.org/property/family> ?x . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:American_Football_League dbp:league?uri } \n", - "\"Which team won the American Football League? | 'American Football League'-res:Organization_of_American_States | 'American Football League'-res:American_Football_League | 'team'-dbo:team | 'won'-dbo:award | ''-dbo:country\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/American_Football_League> <http://dbpedia.org/property/league> ?uri } \"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:league res:American_Football_League .?uri rdf:type dbo:SportsTeam}\n", + "\"Which team won the American Football League? | 'American Football League'-res:Organization_of_American_States | 'American Football League'-res:American_Football_League | 'team'-dbo:team | 'won'-dbo:award | ''-dbo:country\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/league> <http://dbpedia.org/resource/American_Football_League> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SportsTeam>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:awards res:Royal_Society .?uri rdf:type dbo:Scientist}\n", - "\"Which researchers received fellowship from Royal Society? | 'researchers'-res:Researchers_Alliance_for_Development | 'Royal Society'-res:Royal_Society | 'fellowship'-dbo:award\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/awards> <http://dbpedia.org/resource/Royal_Society> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:award res:Royal_Society .?uri rdf:type dbo:Scientist}\n", + "\"Which researchers received fellowship from Royal Society? | 'researchers'-res:Researchers_Alliance_for_Development | 'Royal Society'-res:Royal_Society | 'fellowship'-dbo:award\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/award> <http://dbpedia.org/resource/Royal_Society> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:James_H._Fields dbp:restingplace?uri } \n", - "\"Where was James H. Fields buried ? | 'James H. Fields'-res:James_H._Fields | 'buried'-dbo:genre\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/James_H._Fields> <http://dbpedia.org/property/restingplace> ?uri } \"\n", + " SELECT DISTINCT?uri WHERE { res:James_H._Fields dbo:restingplace?uri } \n", + "\"Where was James H. Fields buried ? | 'James H. Fields'-res:James_H._Fields | 'buried'-dbo:genre\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/James_H._Fields> <http://dbpedia.org/ontology/restingplace> ?uri } \"\n", "\n", "SELECT DISTINCT?uri WHERE {?uri dbp:family res:Padmé_Amidala .?uri rdf:type dbo:FictionalCharacter}\n", "\"Who is the fictional character whose family member is Padme Amidala? | 'Padme Amidala'-res:Padmé_Amidala | 'family'-dbp:family | 'fictional character'-dbo:FictionalCharacter\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/family> <http://dbpedia.org/resource/Padmé_Amidala> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/FictionalCharacter>}\"\n", @@ -1290,41 +1034,41 @@ "SELECT DISTINCT?uri WHERE {?uri dbo:author res:Google_Web_Toolkit.?uri dbp:company res:PlayN. }\n", "\"What company is the one which wrote the google web toolkit and PlayN? | 'google web toolkit'-res:Google_Web_Toolkit | 'PlayN'-res:PlayN | 'company'-dbo:company | 'wrote'-dbo:author\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/author> <http://dbpedia.org/resource/Google_Web_Toolkit> . ?uri <http://dbpedia.org/property/company> <http://dbpedia.org/resource/PlayN> . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:automobilePlatform res:Dodge.?x dbp:manufacturer?uri . }\n", - "\"Which are the automobile platform whose one of the automobile platform is Dodge ? | 'Dodge'-res:Dodge | 'automobile platform'-dbo:automobilePlatform | 'automobile platform'-dbo:automobilePlatform\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/automobilePlatform> <http://dbpedia.org/resource/Dodge> . ?x <http://dbpedia.org/property/manufacturer> ?uri . }\"\n", + " SELECT DISTINCT?uri WHERE { res:Dodge dbo:automobilePlatform?uri } \n", + "\"Which are the automobile platform whose one of the automobile platform is Dodge ? | 'Dodge'-res:Dodge | 'automobile platform'-dbo:automobilePlatform | 'automobile platform'-dbo:automobilePlatform\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dodge> <http://dbpedia.org/ontology/automobilePlatform> ?uri } \"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Ne_daj_se,_Nina dbp:firstAired?uri } \n", "\"Where was Ne daj se, Nina first aired ? | 'Ne daj se, Nina'-res:Ne_daj_se,_Nina | 'aired'-dbp:firstAired\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ne_daj_se,_Nina> <http://dbpedia.org/property/firstAired> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:designer res:Brian_Moriarty.?uri dbo:writer?x . }\n", - "\"Brian Moriarty designed video games written by whom? | 'brian Moriarty'-res:Brian_Moriarty | 'video games written'-res:Video_game | 'designed'-dbo:designer | 'written'-dbo:writer\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/designer> <http://dbpedia.org/resource/Brian_Moriarty> . ?uri <http://dbpedia.org/ontology/writer> ?x . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:writer res:Brian_Moriarty .?uri rdf:type dbo:VideoGame}\n", + "\"Brian Moriarty designed video games written by whom? | 'brian Moriarty'-res:Brian_Moriarty | 'video games written'-res:Video_game | 'designed'-dbo:designer | 'written'-dbo:writer\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/writer> <http://dbpedia.org/resource/Brian_Moriarty> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/VideoGame>}\"\n", "\n", "SELECT DISTINCT?uri WHERE { res:Louis_Brière dbo:commander?x.?x dbp:territory?uri . }\n", "\"Where did the conflict take place where Louis Briere de I'Isle was a commander? | 'I'-res:I | 'Louis Briere de'-res:Michel_Brière | 'conflict'-dbo:battle | 'place'-dbo:place | 'commander'-dbo:commander\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Louis_Brière> <http://dbpedia.org/ontology/commander> ?x . ?x <http://dbpedia.org/property/territory> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:birthPlace res:Ice_hockey.?x dbp:team?uri . }\n", - "\"Quebec born ice hockey players have stopped playing for which teams? | 'ice hockey players'-res:Ice_hockey | 'quebec'-dbo:leader | 'born'-dbo:birthYear | 'stopped'-dbo:patron | 'playing'-dbo:field | 'teams'-dbp:team\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Ice_hockey> . ?x <http://dbpedia.org/property/team> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:birthPlace res:Quebec_hockey.?x dbp:team?uri . }\n", + "\"Quebec born ice hockey players have stopped playing for which teams? | 'ice hockey players'-res:Ice_hockey | 'quebec'-dbo:leader | 'born'-dbo:birthYear | 'stopped'-dbo:patron | 'playing'-dbo:field | 'teams'-dbp:team\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Quebec_hockey> . ?x <http://dbpedia.org/property/team> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:format res:WBIG.?uri dbp:format?x . }\n", - "\"what kind of things play on WBIG FM? | 'WBIG'-res:WBIG | 'FM'-res:FM | 'FM'-res:FM | 'WBIG'-res:WBIG | 'play'-dbo:team\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/format> <http://dbpedia.org/resource/WBIG> . ?uri <http://dbpedia.org/property/format> ?x . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:FM res:WBIG.?uri dbp:genre?x . }\n", + "\"what kind of things play on WBIG FM? | 'WBIG'-res:WBIG | 'FM'-res:FM | 'FM'-res:FM | 'WBIG'-res:WBIG | 'play'-dbo:team\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/FM> <http://dbpedia.org/resource/WBIG> . ?uri <http://dbpedia.org/property/genre> ?x . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:training res:Worcester_College,_Oxford.?x dbp:fields?uri . }\n", - "\"In which fields are the graduates of Worcester College, Oxford working? | 'Worcester College, Oxford'-res:Worcester_College,_Oxford | 'graduates'-dbp:almaMater | 'field'-dbo:field\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/training> <http://dbpedia.org/resource/Worcester_College,_Oxford> . ?x <http://dbpedia.org/property/fields> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:almaMater res:Worcester_College,_Oxford.?x dbo:field?uri . }\n", + "\"In which fields are the graduates of Worcester College, Oxford working? | 'Worcester College, Oxford'-res:Worcester_College,_Oxford | 'graduates'-dbp:almaMater | 'field'-dbo:field\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/almaMater> <http://dbpedia.org/resource/Worcester_College,_Oxford> . ?x <http://dbpedia.org/ontology/field> ?uri . }\"\n", "\n", "SELECT DISTINCT?uri WHERE {?uri dbp:label res:Celluloid_Records .?uri rdf:type dbo:MusicalArtist}\n", "\"What are the musical performances whose label is Celluloid Records? | 'Celluloid Records'-res:Celluloid_Records | 'musical performances'-dbo:musicalArtist | 'label'-dbp:label\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Celluloid_Records> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MusicalArtist>}\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE { res:Arthur_St._Clair dbo:commander?x.?x dbp:combatant?uri . }\n", - "\"How many people have fought wars where Arthur St. Clair was a commander? | 'Arthur St Clair'-res:Arthur_St._Clair | 'fought'-dbo:type | 'wars'-dbp:battles | 'commander'-dbo:commander\",\"SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Arthur_St._Clair> <http://dbpedia.org/ontology/commander> ?x . ?x <http://dbpedia.org/property/combatant> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:commander res:Arthur_St._Clair.?x dbp:battles?uri . }\n", + "\"How many people have fought wars where Arthur St. Clair was a commander? | 'Arthur St Clair'-res:Arthur_St._Clair | 'fought'-dbo:type | 'wars'-dbp:battles | 'commander'-dbo:commander\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/commander> <http://dbpedia.org/resource/Arthur_St._Clair> . ?x <http://dbpedia.org/property/battles> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:instrument res:Guitar.?x dbo:hometown?uri . }\n", - "\"Give me the home town of all musical artists who uses Guitar as instrument ? | 'Guitar'-res:Guitar | 'home town'-dbo:hometown | 'musical artists'-dbp:show | 'instrument'-dbo:instrument\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/instrument> <http://dbpedia.org/resource/Guitar> . ?x <http://dbpedia.org/ontology/hometown> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:instrument res:Guitar .?uri rdf:type dbo:MusicalArtist}\n", + "\"Give me the home town of all musical artists who uses Guitar as instrument ? | 'Guitar'-res:Guitar | 'home town'-dbo:hometown | 'musical artists'-dbp:show | 'instrument'-dbo:instrument\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/instrument> <http://dbpedia.org/resource/Guitar> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MusicalArtist>}\"\n", "\n", "SELECT DISTINCT?uri WHERE {?uri dbo:director res:Stanley_Kubrick.?uri dbp:editing res:Anthony_Harvey . }\n", "\"Name the movies directed by Stanley Kubrick and edited by Anthony Harvey? | 'Stanley Kubrick'-res:Stanley_Kubrick | 'Anthony Harvey'-res:Anthony_Harvey | 'directed'-dbo:director | 'edited'-dbo:editing\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/director> <http://dbpedia.org/resource/Stanley_Kubrick> . ?uri <http://dbpedia.org/property/editing> <http://dbpedia.org/resource/Anthony_Harvey> . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:notableWork res:Remote_Desktop_Protocol.?uri dbp:developer?x . }\n", - "\"What are some other things developed by the company who made the remote desktop protocol? | 'remote desktop protocol'-res:Remote_Desktop_Protocol | 'developed'-dbo:developer | 'company'-dbo:company\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/notableWork> <http://dbpedia.org/resource/Remote_Desktop_Protocol> . ?uri <http://dbpedia.org/property/developer> ?x . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:developer res:Remote_Desktop_Protocol.?x dbp:company?uri . }\n", + "\"What are some other things developed by the company who made the remote desktop protocol? | 'remote desktop protocol'-res:Remote_Desktop_Protocol | 'developed'-dbo:developer | 'company'-dbo:company\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/developer> <http://dbpedia.org/resource/Remote_Desktop_Protocol> . ?x <http://dbpedia.org/property/company> ?uri . }\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:On_Broadway_(Smash) dbp:guests?uri } \n", "\"List the guests of On Broadway ? | 'On Broadway'-res:On_Broadway_(Smash) | 'guests'-dbp:guests\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/On_Broadway_(Smash)> <http://dbpedia.org/property/guests> ?uri } \"\n", @@ -1332,23 +1076,23 @@ "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:capital res:Oslo.?uri dbp:country?x . }\n", "\"How many universities are there whose country's capital is Oslo? | 'universities'-res:Universities_South_Africa | 'Oslo'-res:Oslo | 'country'-dbo:country | 'capital'-dbo:capital\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/capital> <http://dbpedia.org/resource/Oslo> . ?uri <http://dbpedia.org/property/country> ?x . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE {?uri dbo:executiveProducer res:The_Ultimate_Merger } \n", - "\"Which executive producer of the ultimate merger is also an important person at Trump Productions? | 'the ultimate merger'-res:The_Ultimate_Merger | 'Trump Productions'-res:Trump_Productions | 'executive producer'-dbo:executiveProducer | 'person'-dbo:keyPerson\",\" SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/executiveProducer> <http://dbpedia.org/resource/The_Ultimate_Merger> } \"\n", + " SELECT DISTINCT?uri WHERE { res:The_Ultimate_Merger dbp:executiveProducer?uri. res:Trump_Productions dbo:keyPerson?uri} \n", + "\"Which executive producer of the ultimate merger is also an important person at Trump Productions? | 'the ultimate merger'-res:The_Ultimate_Merger | 'Trump Productions'-res:Trump_Productions | 'executive producer'-dbo:executiveProducer | 'person'-dbo:keyPerson\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Ultimate_Merger> <http://dbpedia.org/property/executiveProducer> ?uri . <http://dbpedia.org/resource/Trump_Productions> <http://dbpedia.org/ontology/keyPerson> ?uri} \"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Colorado_wine dbp:officialName?uri } \n", "\"What is the official name of Colorado wine ? | 'Colorado wine'-res:Colorado_wine | 'official name'-dbp:officialName\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Colorado_wine> <http://dbpedia.org/property/officialName> ?uri } \"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:locatedInArea res:Burr_Tuss.?x dbo:designer?uri . }\n", - "\"In how many states can one find Burr Tuss kind of bridges? | 'Burr Tuss'-res:Aphex_Twin | 'bridges'-dbo:abstract\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/locatedInArea> <http://dbpedia.org/resource/Burr_Tuss> . ?x <http://dbpedia.org/ontology/designer> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:locatedInArea res:Burr_Tuss.?x dbp:crosses?uri . }\n", + "\"In how many states can one find Burr Tuss kind of bridges? | 'Burr Tuss'-res:Aphex_Twin | 'bridges'-dbo:abstract\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/locatedInArea> <http://dbpedia.org/resource/Burr_Tuss> . ?x <http://dbpedia.org/property/crosses> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:leaderName res:Chicago_Bulls.?uri dbo:restingplace?x . }\n", - "\"Name all those buried in a place governed by a city council. | 'name'-dbo:name | 'buried'-dbo:weight | 'place'-dbo:place | 'governed'-dbo:employer | 'city council'-dbo:house\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/leaderName> <http://dbpedia.org/resource/Chicago_Bulls> . ?uri <http://dbpedia.org/ontology/restingplace> ?x . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:leaderName res:City_of_Chicago.?x dbp:restingplace?uri . }\n", + "\"Name all those buried in a place governed by a city council. | 'name'-dbo:name | 'buried'-dbo:weight | 'place'-dbo:place | 'governed'-dbo:employer | 'city council'-dbo:house\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/leaderName> <http://dbpedia.org/resource/City_of_Chicago> . ?x <http://dbpedia.org/property/restingplace> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbo:mother res:Mausoleum_of_Augustus . }\n", - "\"What royalties's sepulchre is Mausoleum of Augustus? | 'Royalties'-res:Royalties | 'sepulchre'-res:Easter_Sepulchre | 'Mausoleum of Augustus'-res:Mausoleum_of_Augustus\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/mother> <http://dbpedia.org/resource/Mausoleum_of_Augustus> . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:architect res:Mausoleum_of_Augustus .?uri rdf:type dbo:Royalty}\n", + "\"What royalties's sepulchre is Mausoleum of Augustus? | 'Royalties'-res:Royalties | 'sepulchre'-res:Easter_Sepulchre | 'Mausoleum of Augustus'-res:Mausoleum_of_Augustus\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/architect> <http://dbpedia.org/resource/Mausoleum_of_Augustus> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Royalty>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Stanford_Cardinal dbo:university?uri. res:Jim_Wylie dbp:institution?uri. }\n", - "\"Name the common university of the Cardinal and Jim Wylie? | 'cardinal'-res:Stanford_Cardinal | 'Jim Wylie'-res:Jim_Wylie | 'name'-dbp:name | 'common university'-dbp:university\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Stanford_Cardinal> <http://dbpedia.org/ontology/university> ?uri . <http://dbpedia.org/resource/Jim_Wylie> <http://dbpedia.org/property/institution> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:university res:Stanford_Cardinal. }\n", + "\"Name the common university of the Cardinal and Jim Wylie? | 'cardinal'-res:Stanford_Cardinal | 'Jim Wylie'-res:Jim_Wylie | 'name'-dbp:name | 'common university'-dbp:university\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/university> <http://dbpedia.org/resource/Stanford_Cardinal> . }\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Chiva_bus dbo:automobilePlatform?uri } \n", "\"What is the automobile platform of Chiva bus ? | 'Chiva bus'-res:Chiva_bus | 'automobile platform'-dbo:automobilePlatform\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Chiva_bus> <http://dbpedia.org/ontology/automobilePlatform> ?uri } \"\n", @@ -1362,35 +1106,35 @@ "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:profession res:Diplomacy.?x dbp:religion?uri . }\n", "\"How many religions are practiced by diplomats? | 'diplomats'-res:Diplomacy | 'practiced'-dbo:profession | 'religion'-dbp:religion\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/profession> <http://dbpedia.org/resource/Diplomacy> . ?x <http://dbpedia.org/property/religion> ?uri . }\"\n", "\n", - " SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:knownFor res:Linguistics. }\n", - "\"Count the number of things people who know linguistics are known for ? | 'Linguistics'-res:Linguistics | 'known for'-dbo:knownFor | 'known for'-dbo:knownFor\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/knownFor> <http://dbpedia.org/resource/Linguistics> . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbo:knownFor res:Linguistics . }\n", + "\"Count the number of things people who know linguistics are known for ? | 'Linguistics'-res:Linguistics | 'known for'-dbo:knownFor | 'known for'-dbo:knownFor\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/knownFor> <http://dbpedia.org/resource/Linguistics> . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:international res:Muslim_Brotherhood.?x dbo:religion?uri . }\n", - "\"How many religions are followed by organizations which are internationally known as the muslim brotherhood? | 'muslim brotherhood'-res:Muslim_Brotherhood | 'international'-dbp:international | 'religion'-dbo:religion\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/international> <http://dbpedia.org/resource/Muslim_Brotherhood> . ?x <http://dbpedia.org/ontology/religion> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:nationality res:Muslim_Brotherhood.?x dbo:religion?uri . }\n", + "\"How many religions are followed by organizations which are internationally known as the muslim brotherhood? | 'muslim brotherhood'-res:Muslim_Brotherhood | 'international'-dbp:international | 'religion'-dbo:religion\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/nationality> <http://dbpedia.org/resource/Muslim_Brotherhood> . ?x <http://dbpedia.org/ontology/religion> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:manager res:Ciao_Zanardi.?x dbo:homeGround?uri . }\n", - "\"What is the home ground of the clubs managed by Ciao Zanardi? | 'Ciao Zanardi'-res:Caio_Zanardi | 'home ground'-dbo:institution | 'clubs'-dbo:college | 'managed'-dbo:director\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/manager> <http://dbpedia.org/resource/Ciao_Zanardi> . ?x <http://dbpedia.org/ontology/homeGround> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:manager res:Caio_Zanardi.?x dbp:homeGround?uri . }\n", + "\"What is the home ground of the clubs managed by Ciao Zanardi? | 'Ciao Zanardi'-res:Caio_Zanardi | 'home ground'-dbo:institution | 'clubs'-dbo:college | 'managed'-dbo:director\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/manager> <http://dbpedia.org/resource/Caio_Zanardi> . ?x <http://dbpedia.org/property/homeGround> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:language res:Languages_of_Ethiopia .?uri rdf:type dbo:Country}\n", - "\"What is the country with native language as Languages of Ethiopia? | 'Languages of Ethiopia'-res:Languages_of_Ethiopia | 'language'-dbo:language | 'country'-dbo:Country\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/language> <http://dbpedia.org/resource/Languages_of_Ethiopia> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Country>}\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:language res:Ethiopia .?uri rdf:type dbo:Country}\n", + "\"What is the country with native language as Languages of Ethiopia? | 'Languages of Ethiopia'-res:Languages_of_Ethiopia | 'language'-dbo:language | 'country'-dbo:Country\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/language> <http://dbpedia.org/resource/Ethiopia> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Country>}\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Girls_(The_Prodigy_song) dbp:recorded?uri } \n", "\"Where was Girls (The Prodigy song) recorded ? | 'Girls (The Prodigy song)'-res:Girls_(The_Prodigy_song) | 'recorded'-dbp:recorded\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Girls_(The_Prodigy_song)> <http://dbpedia.org/property/recorded> ?uri } \"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:headquarters res:New_York.?uri rdf:type dbo:TelevisionShow}\n", - "\"How many TV shows' networks are headquarterd in NY? | 'NY'-res:New_York | 'shows'-dbo:place | 'networks'-dbo:broadcastNetwork | 'headquarterd'-dbp:headquarters\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/New_York> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:headquarters res:New_York .?uri rdf:type dbo:TelevisionShow}\n", + "\"How many TV shows' networks are headquarterd in NY? | 'NY'-res:New_York | 'shows'-dbo:place | 'networks'-dbo:broadcastNetwork | 'headquarterd'-dbp:headquarters\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/New_York> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:owning res:BBC_One.?uri dbo:company res:CBS_HD . }\n", - "\"Give me some shows owned by BBC one and BBC hd? | 'BBC one'-res:BBC_One | 'BBC hd'-res:BBC_HD | 'shows'-dbo:place | 'owned'-dbp:owner\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/owning> <http://dbpedia.org/resource/BBC_One> . ?uri <http://dbpedia.org/ontology/company> <http://dbpedia.org/resource/CBS_HD> . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:owner res:BBC_One.?uri rdf:type dbo:TelevisionShow}\n", + "\"Give me some shows owned by BBC one and BBC hd? | 'BBC one'-res:BBC_One | 'BBC hd'-res:BBC_HD | 'shows'-dbo:place | 'owned'-dbp:owner\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/owner> <http://dbpedia.org/resource/BBC_One> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:city res:Canada.?x dbp:tenants?uri . }\n", - "\"How many teams have rented stadiums in Canada? | 'Canada'-res:Canada | 'teams'-dbp:team | 'rented'-dbo:related | 'stadiums'-dbp:stadium\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/city> <http://dbpedia.org/resource/Canada> . ?x <http://dbpedia.org/property/tenants> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:country res:Canada.?x dbp:tenants?uri . }\n", + "\"How many teams have rented stadiums in Canada? | 'Canada'-res:Canada | 'teams'-dbp:team | 'rented'-dbo:related | 'stadiums'-dbp:stadium\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Canada> . ?x <http://dbpedia.org/property/tenants> ?uri . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Lake_Uniamési outflow?uri } \n", - "\"List the outflow of Lake Uniamsi? | 'Lake Uniamsi'-res:Lake_Uniamési | 'outflow'-dbo:outflow\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lake_Uniamési> outflow ?uri } \"\n", + " SELECT DISTINCT?uri WHERE { res:Lake_Uniamési dbo:outflow?uri } \n", + "\"List the outflow of Lake Uniamsi? | 'Lake Uniamsi'-res:Lake_Uniamési | 'outflow'-dbo:outflow\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lake_Uniamési> <http://dbpedia.org/ontology/outflow> ?uri } \"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Linda_Jenness dbp:incumbent?uri } \n", - "\"Name the incumbent of Linda Jenness ? | 'Linda Jenness'-res:Linda_Jenness | 'name'-dbp:name | 'incumbent'-dbo:incumbent\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Linda_Jenness> <http://dbpedia.org/property/incumbent> ?uri } \"\n", + " SELECT DISTINCT?uri WHERE { res:Linda_Jenness dbo:incumbent?uri } \n", + "\"Name the incumbent of Linda Jenness ? | 'Linda Jenness'-res:Linda_Jenness | 'name'-dbp:name | 'incumbent'-dbo:incumbent\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Linda_Jenness> <http://dbpedia.org/ontology/incumbent> ?uri } \"\n", "\n", "SELECT DISTINCT?uri WHERE {?x dbo:cities res:Cumaná.?x dbp:country?uri . }\n", "\"In which countries does the sea lie on whose shore is the city of Cumana? | 'Cumana'-res:Cumaná | 'sea lie'-dbo:elevation | 'shore'-dbo:interest | 'city'-dbo:city\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/cities> <http://dbpedia.org/resource/Cumaná> . ?x <http://dbpedia.org/property/country> ?uri . }\"\n", @@ -1398,20 +1142,20 @@ " SELECT DISTINCT?uri WHERE { res:Sigma_TV dbp:headquarters?uri } \n", "\"Where is the headquarters of Sigma TV | 'Sigma TV'-res:Sigma_TV | 'headquarters'-dbp:headquarters\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Sigma_TV> <http://dbpedia.org/property/headquarters> ?uri } \"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE { res:International_Union_of_Anarchists dbp:affiliation?uri . }\n", - "\"Count the affiliations of International Union of Anarchists? | 'International Union of Anarchists'-res:International_Union_of_Anarchists | 'affiliation'-dbp:affiliation\",\"SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/International_Union_of_Anarchists> <http://dbpedia.org/property/affiliation> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:affiliation res:International_Union_of_Anarchists . }\n", + "\"Count the affiliations of International Union of Anarchists? | 'International Union of Anarchists'-res:International_Union_of_Anarchists | 'affiliation'-dbp:affiliation\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/affiliation> <http://dbpedia.org/resource/International_Union_of_Anarchists> . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:doctoralAdvisor res:Jean-Claude_Latombe.?x rdf:type dbo:Scientist}\n", - "\"What is the alma mater of the scientist whose PhD advisor is Jean-Claude Latombe ? | 'scientist'-res:Scientist | 'PhD advisor'-res:Doctor_of_Philosophy | 'Jean-Claude Latombe'-res:Jean-Claude_Latombe | 'alma mater'-dbo:almaMater\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/doctoralAdvisor> <http://dbpedia.org/resource/Jean-Claude_Latombe> . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:doctoralAdvisor res:Jean-Claude_Latombe .?uri rdf:type dbo:Scientist}\n", + "\"What is the alma mater of the scientist whose PhD advisor is Jean-Claude Latombe ? | 'scientist'-res:Scientist | 'PhD advisor'-res:Doctor_of_Philosophy | 'Jean-Claude Latombe'-res:Jean-Claude_Latombe | 'alma mater'-dbo:almaMater\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/doctoralAdvisor> <http://dbpedia.org/resource/Jean-Claude_Latombe> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}\"\n", "\n", "SELECT DISTINCT?uri WHERE {?uri dbp:residence res:Wilton,_Connecticut . }\n", "\"List the people residing in Wilton, Connecticut? | 'Wilton, Connecticut'-res:Wilton,_Connecticut | 'residing'-dbp:residence\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/residence> <http://dbpedia.org/resource/Wilton,_Connecticut> . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:publisher res:Bantam_Spectra.?x dbo:series?uri . }\n", - "\"Bantam Spectra is the publisher of which series? | 'bantam Spectra'-res:Bantam_Spectra | 'publisher'-dbo:publisher | 'series'-dbo:series\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/publisher> <http://dbpedia.org/resource/Bantam_Spectra> . ?x <http://dbpedia.org/ontology/series> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:publisher res:Bantam_Spectra.?x dbp:series?uri . }\n", + "\"Bantam Spectra is the publisher of which series? | 'bantam Spectra'-res:Bantam_Spectra | 'publisher'-dbo:publisher | 'series'-dbo:series\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/publisher> <http://dbpedia.org/resource/Bantam_Spectra> . ?x <http://dbpedia.org/property/series> ?uri . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:location res:Tehran.?uri dbo:product?x . }\n", - "\"How many things are produced by companies located in Tehran? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'Tehran'-res:Tehran | 'produced'-dbo:product | 'located'-dbp:location\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/location> <http://dbpedia.org/resource/Tehran> . ?uri <http://dbpedia.org/ontology/product> ?x . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:location res:Tehran.?uri dbo:manufacturer?x . }\n", + "\"How many things are produced by companies located in Tehran? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'Tehran'-res:Tehran | 'produced'-dbo:product | 'located'-dbp:location\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/location> <http://dbpedia.org/resource/Tehran> . ?uri <http://dbpedia.org/ontology/manufacturer> ?x . }\"\n", "\n", "SELECT DISTINCT?uri WHERE {?x dbo:grandsire res:Sundridge.?x dbp:awards?uri . }\n", "\"Horses grandsired by Sundridge have won which awards? | 'Sundridge'-res:Sundridge | 'horses'-dbo:staff | 'grandsired'-dbo:grandsire | 'won'-dbo:award | 'awards'-dbo:award\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/grandsire> <http://dbpedia.org/resource/Sundridge> . ?x <http://dbpedia.org/property/awards> ?uri . }\"\n", @@ -1419,11 +1163,11 @@ "SELECT DISTINCT?uri WHERE {?x dbo:ground res:Watkins_Glen_International.?x dbp:firstTeam?uri . }\n", "\"Who was on the first team in the GPs that were held at Watkins Glen, NY? | 'GPs'-res:NBEAL2 | 'NY'-res:New_York | 'Watkins Glen,'-res:Watkins_Glen_International | 'team'-dbo:team | 'held'-dbo:office\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/ground> <http://dbpedia.org/resource/Watkins_Glen_International> . ?x <http://dbpedia.org/property/firstTeam> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:screenplay res:Akiva_Goldsman.?uri dbo:director res:Joel_Schumacher . }\n", - "\"Name the movie whose screenplay is by Akiva Goldsman and directed by Joel Schumacher ? | 'screenplay'-res:Screenplay_(book) | 'Akiva Goldsman'-res:Akiva_Goldsman | 'Joel Schumacher'-res:Joel_Schumacher | 'name'-dbp:name | 'movie'-dbo:picture | 'directed'-dbp:directedby\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/screenplay> <http://dbpedia.org/resource/Akiva_Goldsman> . ?uri <http://dbpedia.org/ontology/director> <http://dbpedia.org/resource/Joel_Schumacher> . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri_(screenplay) dbp:director res:Joel_Schumacher .?uri rdf:type dbo:Film}\n", + "\"Name the movie whose screenplay is by Akiva Goldsman and directed by Joel Schumacher ? | 'screenplay'-res:Screenplay_(book) | 'Akiva Goldsman'-res:Akiva_Goldsman | 'Joel Schumacher'-res:Joel_Schumacher | 'name'-dbp:name | 'movie'-dbo:picture | 'directed'-dbp:directedby\",\"SELECT DISTINCT ?uri WHERE { ?uri_(screenplay) <http://dbpedia.org/property/director> <http://dbpedia.org/resource/Joel_Schumacher> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:debutteam res:Houston_Astros.?uri dbp:manager?x . }\n", - "\"What is the baseball team whose club manager's debut team is Houston Astros? | 'debut team'-res:The_Debut | 'Houston Astros'-res:Houston_Astros | 'baseball team'-dbo:team | 'club manager'-dbo:director\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/debutteam> <http://dbpedia.org/resource/Houston_Astros> . ?uri <http://dbpedia.org/property/manager> ?x . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:debutTeam res:Houston_Astros .?uri rdf:type dbo:BaseballTeam}\n", + "\"What is the baseball team whose club manager's debut team is Houston Astros? | 'debut team'-res:The_Debut | 'Houston Astros'-res:Houston_Astros | 'baseball team'-dbo:team | 'club manager'-dbo:director\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/debutTeam> <http://dbpedia.org/resource/Houston_Astros> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/BaseballTeam>}\"\n", "\n", "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:beatifiedBy res:Pope_Pius_X.?x dbo:deathPlace?uri . }\n", "\"In how many different places have people beatified by Pope Pius X died? | 'X'-res:X | 'Pope Pius'-res:Pope_Pius_X | 'places'-dbp:height | 'beatified'-dbp:beatifiedBy | 'died'-dbo:deathDate\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/beatifiedBy> <http://dbpedia.org/resource/Pope_Pius_X> . ?x <http://dbpedia.org/ontology/deathPlace> ?uri . }\"\n", @@ -1431,62 +1175,62 @@ "SELECT DISTINCT?uri WHERE { res:Meadow_Soprano dbo:relative?x.?x dbp:religion?uri . }\n", "\"What faiths are followed by the relatives of Meadow Soprano? | 'Meadow Soprano'-res:Meadow_Soprano | 'faiths'-dbo:religion | 'relatives'-dbo:relative\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Meadow_Soprano> <http://dbpedia.org/ontology/relative> ?x . ?x <http://dbpedia.org/property/religion> ?uri . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE {?uri dbp:lieutenant res:Winston_Bryant } \n", - "\"who was the president under whom winston bryant served as a lieutenant? | 'Winston bryant'-res:Winston_Bryant | 'president'-dbo:president | 'served'-dbo:regionServed | 'lieutenant'-dbo:lieutenant\",\" SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/lieutenant> <http://dbpedia.org/resource/Winston_Bryant> } \"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:lieutenant res:Winston_Bryant.?x dbo:president?uri . }\n", + "\"who was the president under whom winston bryant served as a lieutenant? | 'Winston bryant'-res:Winston_Bryant | 'president'-dbo:president | 'served'-dbo:regionServed | 'lieutenant'-dbo:lieutenant\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/lieutenant> <http://dbpedia.org/resource/Winston_Bryant> . ?x <http://dbpedia.org/ontology/president> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:My_Favorite_Girl dbo:artist?x.?x dbp:associatedBand?uri . }\n", - "\"What are the bands associated with the artists of My Favorite Girl ? | 'My Favorite Girl'-res:My_Favorite_Girl | 'bands'-dbo:staff | 'associated'-dbo:associatedBand | 'artists'-dbp:artist\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/My_Favorite_Girl> <http://dbpedia.org/ontology/artist> ?x . ?x <http://dbpedia.org/property/associatedBand> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:artist res:My_Favorite_Girl.?x dbo:associatedBand?uri . }\n", + "\"What are the bands associated with the artists of My Favorite Girl ? | 'My Favorite Girl'-res:My_Favorite_Girl | 'bands'-dbo:staff | 'associated'-dbo:associatedBand | 'artists'-dbp:artist\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/artist> <http://dbpedia.org/resource/My_Favorite_Girl> . ?x <http://dbpedia.org/ontology/associatedBand> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:owner res:Warner_Bros._Television.?uri dbp:network?x . }\n", - "\"What are the television shows whose network's stockholder is Warner Bros. Television? | 'Warner Bros. Television'-res:Warner_Bros._Television | 'television'-dbo:transmission | 'shows'-dbo:place | 'network'-dbo:network\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/owner> <http://dbpedia.org/resource/Warner_Bros._Television> . ?uri <http://dbpedia.org/property/network> ?x . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:owner res:Warner_Bros._Television .?uri rdf:type dbo:TelevisionShow}\n", + "\"What are the television shows whose network's stockholder is Warner Bros. Television? | 'Warner Bros. Television'-res:Warner_Bros._Television | 'television'-dbo:transmission | 'shows'-dbo:place | 'network'-dbo:network\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/owner> <http://dbpedia.org/resource/Warner_Bros._Television> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}\"\n", "\n", " SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:programmingLanguage res:C++.?uri dbo:operatingSystem res:Microsoft_Windows } \n", "\"What is the total number of software whose programming language is C++ and operating system is Microsoft Windows? | 'software'-res:Rietveld_(software) | 'C++'-res:C++ | 'Microsoft Windows'-res:Microsoft_Windows | 'total'-dbo:populationTotal | 'programming language'-dbo:language | 'operating'-dbo:operatingSystem\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/programmingLanguage> <http://dbpedia.org/resource/C++> . ?uri <http://dbpedia.org/ontology/operatingSystem> <http://dbpedia.org/resource/Microsoft_Windows> } \"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:region res:Spanish_language.?uri dbo:location?x . }\n", - "\"how many companies are located in a spanish speaking region? | 'spanish'-res:Spanish_language | 'located'-dbo:language | 'spanish speaking'-dbo:location\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/region> <http://dbpedia.org/resource/Spanish_language> . ?uri <http://dbpedia.org/ontology/location> ?x . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:language res:Spanish_language .?uri rdf:type dbo:Company}\n", + "\"how many companies are located in a spanish speaking region? | 'spanish'-res:Spanish_language | 'located'-dbo:language | 'spanish speaking'-dbo:location\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/language> <http://dbpedia.org/resource/Spanish_language> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:branch res:Judge_Advocate_General's_Corps.?x dbo:almaMater?uri . }\n", - "\"From how many different institutes have the members of Judge Advocate General's Corps graduated? | 'Judge Advocate General 's Corps'-res:Judge_Advocate_General's_Corps,_United_States_Army | 'institutes'-dbo:university | 'members'-dbo:family | 'graduated'-dbo:effectiveRadiatedPower\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/branch> <http://dbpedia.org/resource/Judge_Advocate_General's_Corps> . ?x <http://dbpedia.org/ontology/almaMater> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:almaMater res:Judge_Advocate_General's_Corps,_United_States_Army.?uri dbo:institution?x . }\n", + "\"From how many different institutes have the members of Judge Advocate General's Corps graduated? | 'Judge Advocate General 's Corps'-res:Judge_Advocate_General's_Corps,_United_States_Army | 'institutes'-dbo:university | 'members'-dbo:family | 'graduated'-dbo:effectiveRadiatedPower\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/almaMater> <http://dbpedia.org/resource/Judge_Advocate_General's_Corps,_United_States_Army> . ?uri <http://dbpedia.org/ontology/institution> ?x . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbo:mouthMountain res:Southend-on-Sea.?uri dbp:mouthPlace res:Essex . }\n", - "\"Name the river whose mouth mountain is Southend-on-Sea and mouth place is Essex? | 'Southend-on-Sea'-res:Southend-on-Sea | 'Essex'-res:Essex | 'name'-dbp:name | 'river'-dbo:river | 'mouth mountain'-dbo:elevation | 'mouth place'-dbo:district\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/mouthMountain> <http://dbpedia.org/resource/Southend-on-Sea> . ?uri <http://dbpedia.org/property/mouthPlace> <http://dbpedia.org/resource/Essex> . }\"\n", + " SELECT DISTINCT?uri WHERE {?uri dbp:mouthMountain res:Southend-on-Sea.?uri dbo:mouthPlace res:Essex } \n", + "\"Name the river whose mouth mountain is Southend-on-Sea and mouth place is Essex? | 'Southend-on-Sea'-res:Southend-on-Sea | 'Essex'-res:Essex | 'name'-dbp:name | 'river'-dbo:river | 'mouth mountain'-dbo:elevation | 'mouth place'-dbo:district\",\" SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/mouthMountain> <http://dbpedia.org/resource/Southend-on-Sea> . ?uri <http://dbpedia.org/ontology/mouthPlace> <http://dbpedia.org/resource/Essex> } \"\n", "\n", "SELECT DISTINCT?uri WHERE {?x dbp:license res:GNU_Free_Documentation_License.?x dbo:genre?uri . }\n", "\"What genre's softwares are released with a GNU GPL license? | 'softwares'-res:Software | 'GNU'-res:GNU | 'GPL license'-res:Gpl-violations.org | 'GPL'-res:Gpl-violations.org | 'GNU license'-res:GNU_Free_Documentation_License | 'genre'-dbo:genre | 'released'-dbp:released\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/license> <http://dbpedia.org/resource/GNU_Free_Documentation_License> . ?x <http://dbpedia.org/ontology/genre> ?uri . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Allgemeine_SS dbp:leader?uri } \n", - "\"Who is the leader of Allgemeine SS ? | 'SS'-res:Schutzstaffel | 'Allgemeine'-res:Allgemeine_SS | 'leader'-dbo:leader\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Allgemeine_SS> <http://dbpedia.org/property/leader> ?uri } \"\n", + " SELECT DISTINCT?uri WHERE { res:Allgemeine_SS dbo:leader?uri } \n", + "\"Who is the leader of Allgemeine SS ? | 'SS'-res:Schutzstaffel | 'Allgemeine'-res:Allgemeine_SS | 'leader'-dbo:leader\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Allgemeine_SS> <http://dbpedia.org/ontology/leader> ?uri } \"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Metro_Transit_(Minnesota) dbp:headquarters?uri } \n", "\"Where is the headquarters of Metro Transit (Minnesota) ? | 'Metro Transit (Minnesota)'-res:Metro_Transit_(Minnesota) | 'headquarters'-dbp:headquarters\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Metro_Transit_(Minnesota)> <http://dbpedia.org/property/headquarters> ?uri } \"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:creators res:Frank_Miller_(comics) . }\n", - "\"Give me the count of all the names of characters created by Frank Miller | 'Frank Miller'-res:Frank_Miller_(comics) | 'created by'-dbp:creators | 'characters'-dbp:characterName\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/creators> <http://dbpedia.org/resource/Frank_Miller_(comics)> . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:creators res:Frank_Miller_(comics) .?uri rdf:type dbo:FictionalCharacter}\n", + "\"Give me the count of all the names of characters created by Frank Miller | 'Frank Miller'-res:Frank_Miller_(comics) | 'created by'-dbp:creators | 'characters'-dbp:characterName\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/creators> <http://dbpedia.org/resource/Frank_Miller_(comics)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/FictionalCharacter>}\"\n", "\n", "SELECT DISTINCT?uri WHERE { res:Spain_on_the_Road_Again dbo:narrator?x.?x dbp:birthPlace?uri . }\n", "\"Where was the narrator of Spain on the Road Again born? | 'Spain on the Road Again'-res:Spain..._on_the_Road_Again | 'narrator'-dbo:narrator | 'born'-dbp:birthPlace\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Spain_on_the_Road_Again> <http://dbpedia.org/ontology/narrator> ?x . ?x <http://dbpedia.org/property/birthPlace> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:doctoralAdvisor res:Leonard_Lerman.?x rdf:type dbo:Scientist}\n", - "\"Where did the scientist study whose doctoral thesis was supervised by Leonard Lerman? | 'Leonard Lerman'-res:Leonard_Lerman | 'scientist study'-dbo:picture | 'doctoral thesis'-dbo:doctoralAdvisor | 'supervised'-dbo:doctoralAdvisor\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/doctoralAdvisor> <http://dbpedia.org/resource/Leonard_Lerman> . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:doctoralAdvisor res:Leonard_Lerman .?uri rdf:type dbo:Scientist}\n", + "\"Where did the scientist study whose doctoral thesis was supervised by Leonard Lerman? | 'Leonard Lerman'-res:Leonard_Lerman | 'scientist study'-dbo:picture | 'doctoral thesis'-dbo:doctoralAdvisor | 'supervised'-dbo:doctoralAdvisor\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/doctoralAdvisor> <http://dbpedia.org/resource/Leonard_Lerman> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Winston_Bryant dbp:governor?uri. res:Joseph_Stiglitz dbo:president?uri} \n", "\"Which governer of Winston Bryant is the president of Joseph Stiglitz ? | 'Winston Bryant'-res:Winston_Bryant | 'Joseph Stiglitz'-res:Joseph_Stiglitz | 'governer'-dbp:governor | 'president'-dbo:president\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Winston_Bryant> <http://dbpedia.org/property/governor> ?uri . <http://dbpedia.org/resource/Joseph_Stiglitz> <http://dbpedia.org/ontology/president> ?uri} \"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:jurisdiction res:German-occupied_Europe.?uri dbo:leaderName?x . }\n", - "\"How many people have led agencies in German occupied Europe? | 'agencies'-res:Agencies_of_the_European_Union | 'German'-res:Germany | 'German'-res:German | 'Europe'-res:Europe | 'led'-dbo:field | 'occupied'-dbp:about | ''-dbo:country | ''-dbo:country\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/jurisdiction> <http://dbpedia.org/resource/German-occupied_Europe> . ?uri <http://dbpedia.org/ontology/leaderName> ?x . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:occupiedActs res:Germany.?x dbo:leader?uri . }\n", + "\"How many people have led agencies in German occupied Europe? | 'agencies'-res:Agencies_of_the_European_Union | 'German'-res:Germany | 'German'-res:German | 'Europe'-res:Europe | 'led'-dbo:field | 'occupied'-dbp:about | ''-dbo:country | ''-dbo:country\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/occupiedActs> <http://dbpedia.org/resource/Germany> . ?x <http://dbpedia.org/ontology/leader> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:writer res:Robert_Schenkkan.?x dbo:place?uri . }\n", - "\"Where did the plays written by Robert Schenkkan take place? | 'Robert Schenkkan'-res:Robert_Schenkkan | 'plays'-dbo:plays | 'written'-dbo:writer | 'place'-dbo:place\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/writer> <http://dbpedia.org/resource/Robert_Schenkkan> . ?x <http://dbpedia.org/ontology/place> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:writer res:Robert_Schenkkan.?x dbp:place?uri . }\n", + "\"Where did the plays written by Robert Schenkkan take place? | 'Robert Schenkkan'-res:Robert_Schenkkan | 'plays'-dbo:plays | 'written'-dbo:writer | 'place'-dbo:place\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/writer> <http://dbpedia.org/resource/Robert_Schenkkan> . ?x <http://dbpedia.org/property/place> ?uri . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE {?uri dbo:militaryRank res:WW1_(album) } \n", - "\"Name some ww1 veterans? | 'ww1 veterans'-res:WW1_(album) | 'name'-dbo:name\",\" SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/militaryRank> <http://dbpedia.org/resource/WW1_(album)> } \"\n", + "SELECT DISTINCT?uri WHERE {?uri dbo:militaryPerson res:WW1_(album) . }\n", + "\"Name some ww1 veterans? | 'ww1 veterans'-res:WW1_(album) | 'name'-dbo:name\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/militaryPerson> <http://dbpedia.org/resource/WW1_(album)> . }\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Chevrolet_Caprice dbp:predecessor?uri } \n", "\"Which are the predecessor of Chevrolet Caprice? | 'Chevrolet Caprice'-res:Chevrolet_Caprice | 'predecessor'-dbo:predecessor\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Chevrolet_Caprice> <http://dbpedia.org/property/predecessor> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Blade_Runner_2:_The_Edge_of_Human dbp:subsequentWork?x.?x dbo:series?uri . }\n", - "\"What is the series of the book which is a subsequent work of Blade Runner 2: The Edge of Human ? | 'Blade Runner 2: The Edge of Human subsequent work'-res:Blade_Runner_2:_The_Edge_of_Human | 'series'-dbo:series\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Blade_Runner_2:_The_Edge_of_Human> <http://dbpedia.org/property/subsequentWork> ?x . ?x <http://dbpedia.org/ontology/series> ?uri . }\"\n", + " SELECT DISTINCT?uri WHERE { res:Blade_Runner_2:_The_Edge_of_Human dbo:series?uri } \n", + "\"What is the series of the book which is a subsequent work of Blade Runner 2: The Edge of Human ? | 'Blade Runner 2: The Edge of Human subsequent work'-res:Blade_Runner_2:_The_Edge_of_Human | 'series'-dbo:series\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Blade_Runner_2:_The_Edge_of_Human> <http://dbpedia.org/ontology/series> ?uri } \"\n", "\n", "SELECT DISTINCT?uri WHERE {?x dbo:recordLabel res:ATO_Records.?uri dbp:themeMusicComposer?x . }\n", "\"Which TV show whose theme is composed by someone signed up with ATO records? | 'ATO records'-res:ATO_Records | 'show'-dbo:show | 'theme'-dbp:subject | 'composed'-dbo:musicComposer | 'signed'-dbo:movement | 'records'-dbo:background\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/recordLabel> <http://dbpedia.org/resource/ATO_Records> . ?uri <http://dbpedia.org/property/themeMusicComposer> ?x . }\"\n", @@ -1497,8 +1241,8 @@ "SELECT DISTINCT?uri WHERE {?uri dbp:publisher res:Francisco_de_Robles.?uri rdf:type dbo:Book}\n", "\"Name books with publisher as Francisco de Robles and writer as Miguel de Cervantes ? | 'Francisco de Robles'-res:Francisco_de_Robles | 'Miguel de Cervantes'-res:Miguel_de_Cervantes | 'name books'-dbo:leaderName | 'publisher'-dbo:publisher | 'writer'-dbo:writer\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/publisher> <http://dbpedia.org/resource/Francisco_de_Robles> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Hornito dbo:birthPlace?uri. res:Jamie_Bateman_Cayn dbp:placeOfDeath?uri. }\n", - "\"What nation is Hornito located in, where Jamie Bateman Cayn died too? | 'Hornito'-res:Hornito | 'Jamie Bateman Cayn'-res:John_Jones_Bateman | 'nation'-dbo:country | 'located'-dbo:position | 'in,'-dbo:recordedIn | 'died'-dbo:deathDate\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Hornito> <http://dbpedia.org/ontology/birthPlace> ?uri . <http://dbpedia.org/resource/Jamie_Bateman_Cayn> <http://dbpedia.org/property/placeOfDeath> ?uri . }\"\n", + " SELECT DISTINCT?uri WHERE { res:Hornito dbp:placeOfDeath?uri. res:Jamie_Bateman dbo:country?uri} \n", + "\"What nation is Hornito located in, where Jamie Bateman Cayn died too? | 'Hornito'-res:Hornito | 'Jamie Bateman Cayn'-res:John_Jones_Bateman | 'nation'-dbo:country | 'located'-dbo:position | 'in,'-dbo:recordedIn | 'died'-dbo:deathDate\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Hornito> <http://dbpedia.org/property/placeOfDeath> ?uri . <http://dbpedia.org/resource/Jamie_Bateman> <http://dbpedia.org/ontology/country> ?uri} \"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Fazlur_Rahman_Khan dbo:restingPlace?uri } \n", "\"Name the resting place of Fazlur Rahman Khan ? | 'Fazlur Rahman Khan'-res:Fazlur_Rahman_Khan | 'name'-dbp:name | 'resting'-dbo:restingPlace | 'place'-dbo:place\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Fazlur_Rahman_Khan> <http://dbpedia.org/ontology/restingPlace> ?uri } \"\n", @@ -1506,8 +1250,8 @@ " SELECT DISTINCT?uri WHERE { res:Isa_(name) dbo:meaning?uri } \n", "\"Who is the meaning of Isa ? | 'Isa'-res:Isa_(name) | 'meaning'-dbo:meaning\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Isa_(name)> <http://dbpedia.org/ontology/meaning> ?uri } \"\n", "\n", - " SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:formerTeam res:Ice_hockey.?x dbp:league?uri }\n", - "\"Count the number teams which have former ice hockey players which also included American Hockey League ? | 'former ice hockey players'-res:Ice_hockey | 'American Hockey League'-res:Organization_of_American_States | 'American Hockey League'-res:American_Hockey_League | 'count'-dbo:country | 'teams'-dbp:teams | 'included'-dbo:number | ''-dbo:country\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/formerTeam> <http://dbpedia.org/resource/Ice_hockey> . ?x <http://dbpedia.org/property/league> ?uri }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:league res:American_Hockey_League.?x dbp:formerTeam?uri . }\n", + "\"Count the number teams which have former ice hockey players which also included American Hockey League ? | 'former ice hockey players'-res:Ice_hockey | 'American Hockey League'-res:Organization_of_American_States | 'American Hockey League'-res:American_Hockey_League | 'count'-dbo:country | 'teams'-dbp:teams | 'included'-dbo:number | ''-dbo:country\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/league> <http://dbpedia.org/resource/American_Hockey_League> . ?x <http://dbpedia.org/property/formerTeam> ?uri . }\"\n", "\n", "SELECT DISTINCT?uri WHERE {?x dbo:school res:Pietermaritzburg.?x dbp:school?uri . }\n", "\"List all the schools of the rugby player whose went to school named Pietermaritzburg ? | 'Pietermaritzburg'-res:Pietermaritzburg | 'schools'-dbo:ground | 'rugby player'-dbo:combatant | 'school'-dbo:school\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/school> <http://dbpedia.org/resource/Pietermaritzburg> . ?x <http://dbpedia.org/property/school> ?uri . }\"\n", @@ -1518,56 +1262,56 @@ "SELECT DISTINCT?uri WHERE {?uri dbp:founder res:John_Forbes_(British_Army_officer) .?uri rdf:type dbo:City}\n", "\"Which city's foundeer is John Forbes? | 'John Forbes'-res:John_Forbes_(British_Army_officer) | 'city'-dbo:city | 'foundeer'-dbp:founder\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/founder> <http://dbpedia.org/resource/John_Forbes_(British_Army_officer)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/City>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbo:riverMouth res:Deadhead . }\n", - "\"What is the river whose mouth is in deadsea? | 'deadsea'-res:Deadhead | 'river mouth'-dbo:riverMouth\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/riverMouth> <http://dbpedia.org/resource/Deadhead> . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:riverMouth res:Deadhead .?uri rdf:type dbo:River}\n", + "\"What is the river whose mouth is in deadsea? | 'deadsea'-res:Deadhead | 'river mouth'-dbo:riverMouth\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/riverMouth> <http://dbpedia.org/resource/Deadhead> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/River>}\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:John_Kotelawala dbp:allegiance?uri } \n", "\"What is the allegiance of John Kotelawala ? | 'John Kotelawala'-res:John_Kotelawala | 'allegiance'-dbo:allegiance\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/John_Kotelawala> <http://dbpedia.org/property/allegiance> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:related?uri .?x rdf:type dbo:Automobile}\n", - "\"What layout can be found in cars similar to the Subaru Outback? | 'Subaru Outback'-res:Subaru_Outback | 'layout'-dbo:layout | 'cars'-dbo:management\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/related> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Automobile>}\"\n", + "SELECT DISTINCT?uri WHERE { res:Subaru_Outback dbp:related?x.?x dbo:layout?uri . }\n", + "\"What layout can be found in cars similar to the Subaru Outback? | 'Subaru Outback'-res:Subaru_Outback | 'layout'-dbo:layout | 'cars'-dbo:management\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Subaru_Outback> <http://dbpedia.org/property/related> ?x . ?x <http://dbpedia.org/ontology/layout> ?uri . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Henry_Cluney dbp:origin?uri } \n", - "\"Name the origin of Henry Cluney ? | 'Henry Cluney'-res:Henry_Cluney | 'name'-dbp:name | 'origin'-dbo:origin\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Henry_Cluney> <http://dbpedia.org/property/origin> ?uri } \"\n", + " SELECT DISTINCT?uri WHERE { res:Henry_Cluney dbo:origin?uri } \n", + "\"Name the origin of Henry Cluney ? | 'Henry Cluney'-res:Henry_Cluney | 'name'-dbp:name | 'origin'-dbo:origin\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Henry_Cluney> <http://dbpedia.org/ontology/origin> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Xynisteri dbo:origin?uri. res:Mavro dbp:region?uri. }\n", - "\"In which part of the world can i find Xynisteri and Mavro? | 'Xynisteri'-res:Xynisteri | 'Mavro'-res:Mavro | 'in'-dbo:origin | 'in'-dbo:origin\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Xynisteri> <http://dbpedia.org/ontology/origin> ?uri . <http://dbpedia.org/resource/Mavro> <http://dbpedia.org/property/region> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Xynisteri dbp:locationCountry?uri. res:Mavro dbo:origin?uri. }\n", + "\"In which part of the world can i find Xynisteri and Mavro? | 'Xynisteri'-res:Xynisteri | 'Mavro'-res:Mavro | 'in'-dbo:origin | 'in'-dbo:origin\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Xynisteri> <http://dbpedia.org/property/locationCountry> ?uri . <http://dbpedia.org/resource/Mavro> <http://dbpedia.org/ontology/origin> ?uri . }\"\n", "\n", "SELECT DISTINCT?uri WHERE {?x dbp:battles res:Battle_of_France.?x dbo:award?uri . }\n", "\"which awards have been given to people who fought in the Battle of France? | 'Battle of France'-res:Battle_of_France | 'awards'-dbo:award | 'fought'-dbo:type\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/Battle_of_France> . ?x <http://dbpedia.org/ontology/award> ?uri . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Gymnastics_at_the_2008_Summer_Olympics dbp:silverMedalist?uri } \n", - "\"Who was the silver medalist of Gymnastics at the 2008 Summer Olympics Women's artistic individual all-around ? | 'Gymnastics at the 2008 Summer Olympics Women'-res:Gymnastics_at_the_2008_Summer_Olympics | 'artistic individual all-around'-res:European_Artistic_Gymnastics_Championships_–_Women's_individual_all-around\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Gymnastics_at_the_2008_Summer_Olympics> <http://dbpedia.org/property/silverMedalist> ?uri } \"\n", + " SELECT DISTINCT?uri WHERE { res:Gymnastics_at_the_2008_Summer_Olympics dbp:artisticInArea?uri } \n", + "\"Who was the silver medalist of Gymnastics at the 2008 Summer Olympics Women's artistic individual all-around ? | 'Gymnastics at the 2008 Summer Olympics Women'-res:Gymnastics_at_the_2008_Summer_Olympics | 'artistic individual all-around'-res:European_Artistic_Gymnastics_Championships_–_Women's_individual_all-around\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Gymnastics_at_the_2008_Summer_Olympics> <http://dbpedia.org/property/artisticInArea> ?uri } \"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Roh_Tae-woo dbp:battles?uri } \n", "\"List the battles fought by Roh Tae-woo ? | 'Roh Tae-woo'-res:Roh_Tae-woo | 'battles'-dbp:battles\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Roh_Tae-woo> <http://dbpedia.org/property/battles> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Ladonia_(micronation) dbo:officialLanguage?uri. res:Empire_of_Atlantium dbp:language?uri. }\n", - "\"List the common official language of the ladonia and Empire of Atlantium ? | 'ladonia'-res:Ladonia_(micronation) | 'Empire of Atlantium'-res:Empire_of_Atlantium | 'official language'-dbo:officialLanguage | 'official language'-dbo:officialLanguage\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ladonia_(micronation)> <http://dbpedia.org/ontology/officialLanguage> ?uri . <http://dbpedia.org/resource/Empire_of_Atlantium> <http://dbpedia.org/property/language> ?uri . }\"\n", + " SELECT DISTINCT?uri WHERE { res:Ladonia_(micronation) dbp:language?uri. res:Empire_of_Atlantium dbo:officialLanguage?uri} \n", + "\"List the common official language of the ladonia and Empire of Atlantium ? | 'ladonia'-res:Ladonia_(micronation) | 'Empire of Atlantium'-res:Empire_of_Atlantium | 'official language'-dbo:officialLanguage | 'official language'-dbo:officialLanguage\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ladonia_(micronation)> <http://dbpedia.org/property/language> ?uri . <http://dbpedia.org/resource/Empire_of_Atlantium> <http://dbpedia.org/ontology/officialLanguage> ?uri} \"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Irving_Chernev.?uri dbo:occupation res:Karen_Grigorian. }\n", - "\"What is the occupation of the Irving Chernev and Karen Grigorian? | 'Irving Chernev'-res:Irving_Chernev | 'Karen Grigorian'-res:Karen_Grigorian | 'occupation'-dbo:occupation\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Irving_Chernev> . ?uri <http://dbpedia.org/ontology/occupation> <http://dbpedia.org/resource/Karen_Grigorian> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Irving_Chernev dbo:occupation?uri. res:Karen_Grigorian . }\n", + "\"What is the occupation of the Irving Chernev and Karen Grigorian? | 'Irving Chernev'-res:Irving_Chernev | 'Karen Grigorian'-res:Karen_Grigorian | 'occupation'-dbo:occupation\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Irving_Chernev> <http://dbpedia.org/ontology/occupation> ?uri . <http://dbpedia.org/resource/Karen_Grigorian> . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:gender res:Feminist_stripper.?x dbp:nationality?uri . }\n", - "\"In which countries can i find some feminist writers? | 'countries'-res:Countries_of_the_United_Kingdom | 'feminist writers'-res:Feminist_stripper | 'i'-dbp:i\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/gender> <http://dbpedia.org/resource/Feminist_stripper> . ?x <http://dbpedia.org/property/nationality> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:feministGenre res:Feminist_stripper.?x dbp:country?uri . }\n", + "\"In which countries can i find some feminist writers? | 'countries'-res:Countries_of_the_United_Kingdom | 'feminist writers'-res:Feminist_stripper | 'i'-dbp:i\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/feministGenre> <http://dbpedia.org/resource/Feminist_stripper> . ?x <http://dbpedia.org/property/country> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:position res:Defenceman.?x dbo:team?uri . }\n", - "\"In which teams did anyone who played as a defencemen, play previously? | 'teams'-dbo:numberOfTeams | 'played'-dbo:portrayer | 'play'-dbo:starring\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/position> <http://dbpedia.org/resource/Defenceman> . ?x <http://dbpedia.org/ontology/team> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:position res:Defenceman.?x dbo:formerTeam?uri . }\n", + "\"In which teams did anyone who played as a defencemen, play previously? | 'teams'-dbo:numberOfTeams | 'played'-dbo:portrayer | 'play'-dbo:starring\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/position> <http://dbpedia.org/resource/Defenceman> . ?x <http://dbpedia.org/ontology/formerTeam> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:magazine res:Jump_Square.?x dbp:author?uri . }\n", - "\"Who authored the works published in the Jump Square Magazine? | 'Jump Square'-res:Jump_Square | 'Magazine'-dbp:magazine | 'author'-dbp:author\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/magazine> <http://dbpedia.org/resource/Jump_Square> . ?x <http://dbpedia.org/property/author> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:magazine res:Jump_Square.?x dbo:author?uri . }\n", + "\"Who authored the works published in the Jump Square Magazine? | 'Jump Square'-res:Jump_Square | 'Magazine'-dbp:magazine | 'author'-dbp:author\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/magazine> <http://dbpedia.org/resource/Jump_Square> . ?x <http://dbpedia.org/ontology/author> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri rdf:type dbo:Bacteria}\n", - "\"List bacteria whose order (taxonomy) is Bacillales and domain is Bacteria? | 'Bacteria (taxonomy)'-res:Bacteria | 'Bacillales'-res:Bacillales | 'Bacteria'-res:Bacteria | 'domain'-dbo:domain\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Bacteria>}\"\n", + " SELECT DISTINCT?uri WHERE {?uri dbo:order res:Bacillales } \n", + "\"List bacteria whose order (taxonomy) is Bacillales and domain is Bacteria? | 'Bacteria (taxonomy)'-res:Bacteria | 'Bacillales'-res:Bacillales | 'Bacteria'-res:Bacteria | 'domain'-dbo:domain\",\" SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/order> <http://dbpedia.org/resource/Bacillales> } \"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Your_Sweet_Lovin' dbo:writer?uri } \n", - "\"In which language is All I need is Your Sweet lovin written ? | 'I'-res:I | 'All'-res:All | 'Your Sweet lovin'-res:All_I_Need_Is_Your_Sweet_Lovin' | 'language'-dbo:language | 'written'-dbo:writer\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Your_Sweet_Lovin'> <http://dbpedia.org/ontology/writer> ?uri } \"\n", + " SELECT DISTINCT?uri WHERE { res:All_I_Need_Is_Your_Sweet_Lovin' dbo:writer?uri } \n", + "\"In which language is All I need is Your Sweet lovin written ? | 'I'-res:I | 'All'-res:All | 'Your Sweet lovin'-res:All_I_Need_Is_Your_Sweet_Lovin' | 'language'-dbo:language | 'written'-dbo:writer\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/All_I_Need_Is_Your_Sweet_Lovin'> <http://dbpedia.org/ontology/writer> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Lagos_Preparatory_School dbo:sport?uri } \n", - "\"What sport amongst the one Lagos Preparatory School practices, did Willian Garne play for? | 'Lagos Preparatory School practices, did Willian Garne'-res:Lagos_Preparatory_School | 'sport'-dbo:sport | 'play'-dbo:sport\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lagos_Preparatory_School> <http://dbpedia.org/ontology/sport> ?uri } \"\n", + " SELECT DISTINCT?uri WHERE { res:Lagos_Preparatory_School dbp:sport?uri } \n", + "\"What sport amongst the one Lagos Preparatory School practices, did Willian Garne play for? | 'Lagos Preparatory School practices, did Willian Garne'-res:Lagos_Preparatory_School | 'sport'-dbo:sport | 'play'-dbo:sport\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lagos_Preparatory_School> <http://dbpedia.org/property/sport> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbo:origin res:England . }\n", - "\"What are the beverages whose origin is England? | 'England'-res:England | 'beverages'-dbo:strength | 'origin'-dbo:origin\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/origin> <http://dbpedia.org/resource/England> . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:origin res:England .?uri rdf:type dbo:Beverage}\n", + "\"What are the beverages whose origin is England? | 'England'-res:England | 'beverages'-dbo:strength | 'origin'-dbo:origin\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/origin> <http://dbpedia.org/resource/England> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Beverage>}\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:On_Air_with_Ryan_Seacrest dbo:starring?uri } \n", "\"Who is the film star of On Air with Ryan Seacrest ? | 'On Air with Ryan Seacrest'-res:On_Air_with_Ryan_Seacrest | 'star'-dbo:starring\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/On_Air_with_Ryan_Seacrest> <http://dbpedia.org/ontology/starring> ?uri } \"\n", @@ -1575,17 +1319,17 @@ " SELECT DISTINCT?uri WHERE { res:Franklin_W._Olin dbp:almaMater?uri. res:Patty_Lin dbo:education?uri} \n", "\"Which university attended by Franklin W. Olin was also the alma mater of Patty Lin ? | 'Patty Lin'-res:Patty_Lin | 'Franklin W. Olin'-res:Franklin_W._Olin | 'university attended'-dbp:almaMater | 'university attended'-dbp:education\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Franklin_W._Olin> <http://dbpedia.org/property/almaMater> ?uri . <http://dbpedia.org/resource/Patty_Lin> <http://dbpedia.org/ontology/education> ?uri} \"\n", "\n", - " SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:sport res:Hockey.?x rdf:type dbo:School}\n", - "\"Count the number of sports played by schools which play hockey ? | 'hockey'-res:Hockey | 'sports'-dbo:sport | 'sports'-dbo:sport\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/sport> <http://dbpedia.org/resource/Hockey> . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/School>}\"\n", + " SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:athletics res:Hockey.?x dbo:sport?uri }\n", + "\"Count the number of sports played by schools which play hockey ? | 'hockey'-res:Hockey | 'sports'-dbo:sport | 'sports'-dbo:sport\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/athletics> <http://dbpedia.org/resource/Hockey> . ?x <http://dbpedia.org/ontology/sport> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:restingplace res:Little_Easton.?x dbo:tomb?uri . }\n", - "\"List the tomb of the royalties whose burial place is Little Easton ? | 'Royalties'-res:Royalties | 'Little Easton'-res:Little_Easton | 'tomb'-dbo:race | 'burial place'-dbo:district\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/restingplace> <http://dbpedia.org/resource/Little_Easton> . ?x <http://dbpedia.org/ontology/tomb> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:restingplace res:Little_Easton .?uri rdf:type dbo:Royalty}\n", + "\"List the tomb of the royalties whose burial place is Little Easton ? | 'Royalties'-res:Royalties | 'Little Easton'-res:Little_Easton | 'tomb'-dbo:race | 'burial place'-dbo:district\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/restingplace> <http://dbpedia.org/resource/Little_Easton> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Royalty>}\"\n", "\n", "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:operatingSystem res:Microsoft_Windows .?uri rdf:type dbo:Software}\n", "\"How many software run on operating system is Microsoft Windows? | 'software'-res:Software | 'Microsoft Windows'-res:Microsoft_Windows | 'operating system'-dbo:operatingSystem | 'software'-dbo:Software\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/operatingSystem> <http://dbpedia.org/resource/Microsoft_Windows> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Software>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:subsequentWork res:Doctor_Who_Extra.?uri dbo:related?x . }\n", - "\"List the show related to the which was followed by Doctor Who Extra? | 'Doctor Who Extra'-res:Doctor_Who_Extra | 'show'-dbp:show | 'related'-dbo:related\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/subsequentWork> <http://dbpedia.org/resource/Doctor_Who_Extra> . ?uri <http://dbpedia.org/ontology/related> ?x . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:related res:Doctor_Who_Extra.?uri dbp:related?x . }\n", + "\"List the show related to the which was followed by Doctor Who Extra? | 'Doctor Who Extra'-res:Doctor_Who_Extra | 'show'-dbp:show | 'related'-dbo:related\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/related> <http://dbpedia.org/resource/Doctor_Who_Extra> . ?uri <http://dbpedia.org/property/related> ?x . }\"\n", "\n", "SELECT DISTINCT?uri WHERE {?uri dbo:largestCity res:Lima . }\n", "\"Which country's largest city is Lima? | 'largest city'-res:Largest_octopus | 'Lima'-res:Lima | 'largest city'-dbo:largestCity\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/largestCity> <http://dbpedia.org/resource/Lima> . }\"\n", @@ -1596,41 +1340,41 @@ "SELECT DISTINCT?uri WHERE {?uri dbp:music res:Laurie_Johnson .?uri rdf:type dbo:Film}\n", "\"What are the movies whose music is given by Laurie Johnson? | 'Laurie Johnson'-res:Laurie_Johnson | 'music'-dbp:music | 'movie'-dbo:Film\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Laurie_Johnson> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:successor res:PlayStation_2 .?uri rdf:type dbo:Appliance}\n", - "\"What appliance Sony made after the success of PlayStation 2? | 'appliance Sony'-res:Appliance | 'PlayStation 2'-res:PlayStation_2 | 'success'-dbo:successor\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/successor> <http://dbpedia.org/resource/PlayStation_2> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Appliance>}\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbo:successor res:PlayStation_2 . }\n", + "\"What appliance Sony made after the success of PlayStation 2? | 'appliance Sony'-res:Appliance | 'PlayStation 2'-res:PlayStation_2 | 'success'-dbo:successor\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/successor> <http://dbpedia.org/resource/PlayStation_2> . }\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Doctor_Who:_Evacuation_Earth dbo:series?uri } \n", "\"Name the series of Doctor Who: Evacuation Earth ? | 'Doctor Who: Evacuation Earth'-res:Doctor_Who:_Evacuation_Earth | 'name'-dbp:name | 'series'-dbo:series\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Doctor_Who:_Evacuation_Earth> <http://dbpedia.org/ontology/series> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:recordLabel res:Entertainment_One_Music .?uri rdf:type dbo:MusicalArtist}\n", - "\"What are some music artists whose bands have signed up with Entertainment One Music? | 'Entertainment One Music'-res:Entertainment_One_Music | 'music artists'-dbo:musicSubgenre | 'bands'-dbo:staff | 'signed'-dbo:movement\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/recordLabel> <http://dbpedia.org/resource/Entertainment_One_Music> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MusicalArtist>}\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:label res:Entertainment_One_Music .?uri rdf:type dbo:Band}\n", + "\"What are some music artists whose bands have signed up with Entertainment One Music? | 'Entertainment One Music'-res:Entertainment_One_Music | 'music artists'-dbo:musicSubgenre | 'bands'-dbo:staff | 'signed'-dbo:movement\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Entertainment_One_Music> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Band>}\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Radio_Philippines_Network dbo:broadcastArea?uri } \n", "\"Name the broadcast area of Radio Philippines Network ? | 'Radio Philippines Network'-res:Radio_Philippines_Network | 'name'-dbo:name | 'broadcast area'-dbo:broadcastArea\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Radio_Philippines_Network> <http://dbpedia.org/ontology/broadcastArea> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:region res:Ashanti_Region.?x dbo:religion?uri . }\n", - "\"Which religion is prevalent in the schools of the Ashanti region? | 'Ashanti region'-res:Ashanti_Region | 'religion'-dbo:religion | 'prevalent'-dbo:currency | 'schools'-dbo:ground\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/region> <http://dbpedia.org/resource/Ashanti_Region> . ?x <http://dbpedia.org/ontology/religion> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:region res:Ashanti_Region.?x dbp:religion?uri . }\n", + "\"Which religion is prevalent in the schools of the Ashanti region? | 'Ashanti region'-res:Ashanti_Region | 'religion'-dbo:religion | 'prevalent'-dbo:currency | 'schools'-dbo:ground\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/region> <http://dbpedia.org/resource/Ashanti_Region> . ?x <http://dbpedia.org/property/religion> ?uri . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Cheasty_Boulevard_South dbp:maintainedBy?uri. res:Soccer_Bowl dbo:city?uri} \n", - "\"Which maintainer of Cheasty Boulevard South is also the city of Soccer Bowl' 76 ? | 'Cheasty Boulevard South'-res:Cheasty_Boulevard_South | 'Soccer Bowl'-res:Soccer_Bowl | '76'-res:UFC_76 | 'maintainer'-dbo:maintainedBy | 'city'-dbo:city\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cheasty_Boulevard_South> <http://dbpedia.org/property/maintainedBy> ?uri . <http://dbpedia.org/resource/Soccer_Bowl> <http://dbpedia.org/ontology/city> ?uri} \"\n", + " SELECT DISTINCT?uri WHERE { res:Cheasty_Boulevard_South dbo:maintainedBy?uri. res:Soccer_Bowl dbp:city?uri} \n", + "\"Which maintainer of Cheasty Boulevard South is also the city of Soccer Bowl' 76 ? | 'Cheasty Boulevard South'-res:Cheasty_Boulevard_South | 'Soccer Bowl'-res:Soccer_Bowl | '76'-res:UFC_76 | 'maintainer'-dbo:maintainedBy | 'city'-dbo:city\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cheasty_Boulevard_South> <http://dbpedia.org/ontology/maintainedBy> ?uri . <http://dbpedia.org/resource/Soccer_Bowl> <http://dbpedia.org/property/city> ?uri} \"\n", "\n", " SELECT DISTINCT?uri WHERE { res:1993_European_Grand_Prix dbp:firstDriver?uri } \n", "\"Which driver came first in the 1993 European Grand Prix ? | '1993 European Grand Prix'-res:1993_European_Grand_Prix | 'driver first'-dbp:firstDriver\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/1993_European_Grand_Prix> <http://dbpedia.org/property/firstDriver> ?uri } \"\n", "\n", - " SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:ingredient res:Potato.?x?uri }\n", - "\"How many other ingredient are there in the foods whihh have one of the ingredient as Potato ? | 'Foods whihh'-res:Sclafani_Foods | 'Potato'-res:Potato | 'ingredient'-dbo:ingredient | 'ingredient'-dbo:ingredient\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/ingredient> <http://dbpedia.org/resource/Potato> . ?x ?uri }\"\n", + " SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:ingredient res:Sclafani_Foods.?x dbp:editing?uri }\n", + "\"How many other ingredient are there in the foods whihh have one of the ingredient as Potato ? | 'Foods whihh'-res:Sclafani_Foods | 'Potato'-res:Potato | 'ingredient'-dbo:ingredient | 'ingredient'-dbo:ingredient\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/ingredient> <http://dbpedia.org/resource/Sclafani_Foods> . ?x <http://dbpedia.org/property/editing> ?uri }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:launchAirBase res:Vandenerg_Air_Base.?x dbp:launch?uri .?uri rdf:typeDbo:Rocket}\n", - "\"How many companies have launched their rockets from the Vandenerg Air base? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'Vandenerg Air base'-res:Reims_–_Champagne_Air_Base | 'launched'-dbo:shipLaunch | 'rockets'-dbo:capital\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/launchAirBase> <http://dbpedia.org/resource/Vandenerg_Air_Base> . ?x <http://dbpedia.org/property/launch> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#typeDbo:Rocket>}\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:launch res:Vandenerg_Air_Base.?x dbp:launch?uri . }\n", + "\"How many companies have launched their rockets from the Vandenerg Air base? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'Vandenerg Air base'-res:Reims_–_Champagne_Air_Base | 'launched'-dbo:shipLaunch | 'rockets'-dbo:capital\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/launch> <http://dbpedia.org/resource/Vandenerg_Air_Base> . ?x <http://dbpedia.org/property/launch> ?uri . }\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:FedExField dbo:operator?uri } \n", "\"What is operated by FedExField ? | 'FedExField'-res:FedExField | 'operated'-dbo:operator\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/FedExField> <http://dbpedia.org/ontology/operator> ?uri } \"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:manufacturer res:Foxconn . }\n", - "\"Foxconn makes how many things? | 'Foxconn'-res:Foxconn\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/manufacturer> <http://dbpedia.org/resource/Foxconn> . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbo:conn res:Foxconn . }\n", + "\"Foxconn makes how many things? | 'Foxconn'-res:Foxconn\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/conn> <http://dbpedia.org/resource/Foxconn> . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:ingredient res:Shallot.?x dbp:state?uri . }\n", - "\"In how many nations can I find dishes made of Shallot? | 'I'-res:I | 'Shallot'-res:Shallot | 'nations'-dbo:state | 'dishes'-dbo:state\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/ingredient> <http://dbpedia.org/resource/Shallot> . ?x <http://dbpedia.org/property/state> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:state res:Shallot.?x dbp:country?uri . }\n", + "\"In how many nations can I find dishes made of Shallot? | 'I'-res:I | 'Shallot'-res:Shallot | 'nations'-dbo:state | 'dishes'-dbo:state\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/state> <http://dbpedia.org/resource/Shallot> . ?x <http://dbpedia.org/property/country> ?uri . }\"\n", "\n", "SELECT DISTINCT?uri WHERE {?x dbo:hairColor res:Royal_blue.?x dbp:nicknames?uri . }\n", "\"What are the nicknames of the schools whose color is royal blue? | 'royal blue'-res:Royal_blue | 'nicknames'-dbo:denomination | 'schools'-dbo:discipline | 'color'-dbo:hairColor | 'royal blue'-dbo:gross\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/hairColor> <http://dbpedia.org/resource/Royal_blue> . ?x <http://dbpedia.org/property/nicknames> ?uri . }\"\n", @@ -1638,20 +1382,20 @@ "SELECT DISTINCT?uri WHERE {?x dbo:almaMater res:Somerville_College,_Oxford.?x dbp:party?uri . }\n", "\"To what political party do the politicians graduated from Somerville college, Oxford belong to? | 'politicians'-res:Politicians_of_The_Wire | 'Somerville college, Oxford'-res:Somerville_College,_Oxford | 'political party'-dbp:party | 'graduated'-dbo:numberOfGraduateStudents | 'belong'-dbo:person\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/almaMater> <http://dbpedia.org/resource/Somerville_College,_Oxford> . ?x <http://dbpedia.org/property/party> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:José_Rivera_(playwright) dbp:awards?uri . }\n", - "\"What awards did Jos Rivera (playwright) win? | 'Jos Rivera (playwright)'-res:José_Rivera_(playwright) | 'awards'-dbp:awards\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/José_Rivera_(playwright)> <http://dbpedia.org/property/awards> ?uri . }\"\n", + " SELECT DISTINCT?uri WHERE { res:José_Rivera_(playwright) dbp:awards?uri } \n", + "\"What awards did Jos Rivera (playwright) win? | 'Jos Rivera (playwright)'-res:José_Rivera_(playwright) | 'awards'-dbp:awards\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/José_Rivera_(playwright)> <http://dbpedia.org/property/awards> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:awards res:Screen_Actors_Guild_Life_Achievement_Award.?x dbo:award?uri . }\n", - "\"Which political figures were awarded Screen Actors Guild Life Achievement Award? | 'Screen Actors Guild Life Achievement Award'-res:Screen_Actors_Guild_Life_Achievement_Award | 'awarded'-dbo:award\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/awards> <http://dbpedia.org/resource/Screen_Actors_Guild_Life_Achievement_Award> . ?x <http://dbpedia.org/ontology/award> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:award res:Screen_Actors_Guild_Life_Achievement_Award .?uri rdf:type dbo:OfficeHolder}\n", + "\"Which political figures were awarded Screen Actors Guild Life Achievement Award? | 'Screen Actors Guild Life Achievement Award'-res:Screen_Actors_Guild_Life_Achievement_Award | 'awarded'-dbo:award\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/award> <http://dbpedia.org/resource/Screen_Actors_Guild_Life_Achievement_Award> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/OfficeHolder>}\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Kenya_national_under-20_football_team dbp:birthPlace?uri. res:Mina_Suji dbo:homeStadium?uri} \n", - "\"What is the Home Stadium of the Kenya national under-20 football team where Matin Suji was also born ? | 'Home Stadium of the Kenya national under-20 football team where Matin Suji'-res:Kenya_national_under-20_football_team | 'born'-dbo:birthYear\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kenya_national_under-20_football_team> <http://dbpedia.org/property/birthPlace> ?uri . <http://dbpedia.org/resource/Mina_Suji> <http://dbpedia.org/ontology/homeStadium> ?uri} \"\n", + " SELECT DISTINCT?uri WHERE { res:Kenya_national_under-20_football_team dbo:ground?uri. res:Matin_Suji dbp:birthPlace?uri} \n", + "\"What is the Home Stadium of the Kenya national under-20 football team where Matin Suji was also born ? | 'Home Stadium of the Kenya national under-20 football team where Matin Suji'-res:Kenya_national_under-20_football_team | 'born'-dbo:birthYear\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kenya_national_under-20_football_team> <http://dbpedia.org/ontology/ground> ?uri . <http://dbpedia.org/resource/Matin_Suji> <http://dbpedia.org/property/birthPlace> ?uri} \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:nearestCity res:Kenya.?uri dbp:protectedArea?x . }\n", - "\"What is the protected area whose nearest city is Kenya? | 'Kenya'-res:Kenya | 'nearest city'-dbo:nearestCity | 'protected area'-dbo:ProtectedArea\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/nearestCity> <http://dbpedia.org/resource/Kenya> . ?uri <http://dbpedia.org/property/protectedArea> ?x . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:nearestCity res:Kenya .?uri rdf:type dbo:ProtectedArea}\n", + "\"What is the protected area whose nearest city is Kenya? | 'Kenya'-res:Kenya | 'nearest city'-dbo:nearestCity | 'protected area'-dbo:ProtectedArea\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/nearestCity> <http://dbpedia.org/resource/Kenya> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/ProtectedArea>}\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:leaderName res:Elizabeth_II . }\n", - "\"How many places were ruled by Elizabeth II? | 'II'-res:Ii | 'Elizabeth'-res:Elizabeth | 'ruled'-dbp:leaderName\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/leaderName> <http://dbpedia.org/resource/Elizabeth_II> . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:leaderName res:Elizabeth . }\n", + "\"How many places were ruled by Elizabeth II? | 'II'-res:Ii | 'Elizabeth'-res:Elizabeth | 'ruled'-dbp:leaderName\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/leaderName> <http://dbpedia.org/resource/Elizabeth> . }\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Luke_List_(golfer) dbp:college?uri. res:K._Terry_Dornbush dbo:almaMater?uri} \n", "\"Which college of Luke List (golfer) is the alma mater of K. Terry Dornbush | 'Luke List (golfer)'-res:Luke_List_(golfer) | 'K'-res:K | 'Terry Dornbush'-res:K._Terry_Dornbush | 'college'-dbo:college | 'alma mater'-dbo:almaMater\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Luke_List_(golfer)> <http://dbpedia.org/property/college> ?uri . <http://dbpedia.org/resource/K._Terry_Dornbush> <http://dbpedia.org/ontology/almaMater> ?uri} \"\n", @@ -1659,62 +1403,62 @@ "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:company res:FremantleMedia.?x dbo:producer?uri . }\n", "\"How many producers have worked for FremantleMedia productions? | 'FremantleMedia productions'-res:FremantleMedia | 'worked for'-dbp:company | 'producer'-dbo:producer\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/company> <http://dbpedia.org/resource/FremantleMedia> . ?x <http://dbpedia.org/ontology/producer> ?uri . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Tommy_Ticker's_Tooth dbp:director?uri. res:The_Haunted_House_(1929_film) dbo:animator?uri} \n", - "\"Which animator of Tommy Ticker's Tooth is also the director of The Haunted house ? | 'Tommy Ticker'-res:Ticker_(2001_film) | 'Tooth'-res:The_Booth | 'The Haunted house'-res:The_Haunted_House_(1929_film) | 'animator'-dbo:animator | 'director'-dbo:director\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Tommy_Ticker's_Tooth> <http://dbpedia.org/property/director> ?uri . <http://dbpedia.org/resource/The_Haunted_House_(1929_film)> <http://dbpedia.org/ontology/animator> ?uri} \"\n", + " SELECT DISTINCT?uri WHERE { res:The_Haunted_House_(1929_film) dbo:director?uri } \n", + "\"Which animator of Tommy Ticker's Tooth is also the director of The Haunted house ? | 'Tommy Ticker'-res:Ticker_(2001_film) | 'Tooth'-res:The_Booth | 'The Haunted house'-res:The_Haunted_House_(1929_film) | 'animator'-dbo:animator | 'director'-dbo:director\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Haunted_House_(1929_film)> <http://dbpedia.org/ontology/director> ?uri } \"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:athletics res:Oakland_Athletics.?x dbp:builder?uri . }\n", - "\"How many architects are there who have made something used by Oakland athletics? | 'Oakland athletics'-res:Oakland_Athletics | 'architects'-dbo:builder\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/athletics> <http://dbpedia.org/resource/Oakland_Athletics> . ?x <http://dbpedia.org/property/builder> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:athletics res:Oakland_Athletics.?x dbo:builder?uri . }\n", + "\"How many architects are there who have made something used by Oakland athletics? | 'Oakland athletics'-res:Oakland_Athletics | 'architects'-dbo:builder\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/athletics> <http://dbpedia.org/resource/Oakland_Athletics> . ?x <http://dbpedia.org/ontology/builder> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbo:usedIn res:Solidus_mark.?uri dbp:locations res:Aureus. }\n", - "\"Where are Solidus and Aureus used? | 'Solidus and Aureus'-res:Solidus_mark\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/usedIn> <http://dbpedia.org/resource/Solidus_mark> . ?uri <http://dbpedia.org/property/locations> <http://dbpedia.org/resource/Aureus> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Solidus_mark dbo:usedInWar?uri. res:Aurus_veneratedIn?uri. }\n", + "\"Where are Solidus and Aureus used? | 'Solidus and Aureus'-res:Solidus_mark\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Solidus_mark> <http://dbpedia.org/ontology/usedInWar> ?uri . <http://dbpedia.org/resource/Aurus_veneratedIn> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:hubAirport res:Dubai.?x dbo:owner?uri . }\n", - "\"Which company owns the airlines whose hub is in Dubai? | 'Dubai'-res:Dubai | 'company'-dbo:company | 'owns'-dbo:relation | 'airlines'-dbo:icaoAirlineCode | 'hub'-dbp:centre\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/hubAirport> <http://dbpedia.org/resource/Dubai> . ?x <http://dbpedia.org/ontology/owner> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:hubAirport res:Dubai.?x dbp:owner?uri . }\n", + "\"Which company owns the airlines whose hub is in Dubai? | 'Dubai'-res:Dubai | 'company'-dbo:company | 'owns'-dbo:relation | 'airlines'-dbo:icaoAirlineCode | 'hub'-dbp:centre\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/hubAirport> <http://dbpedia.org/resource/Dubai> . ?x <http://dbpedia.org/property/owner> ?uri . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Ford_Y-block_engine dbp:manufacturer?uri } \n", - "\"Who built the Ford Y-block engine ? | 'Ford Y-block engine'-res:Ford_Y-block_engine | 'built'-dbo:manufacturer\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ford_Y-block_engine> <http://dbpedia.org/property/manufacturer> ?uri } \"\n", + " SELECT DISTINCT?uri WHERE { res:Ford_Y-block_engine dbo:manufacturer?uri } \n", + "\"Who built the Ford Y-block engine ? | 'Ford Y-block engine'-res:Ford_Y-block_engine | 'built'-dbo:manufacturer\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ford_Y-block_engine> <http://dbpedia.org/ontology/manufacturer> ?uri } \"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Lumberjack_100 dbo:region?uri } \n", "\"What is the region of Lumberjack ? | 'Lumberjack'-res:Lumberjack_100 | 'region'-dbo:region\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lumberjack_100> <http://dbpedia.org/ontology/region> ?uri } \"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:royalDesigner res:Royalty.?x dbp:awards?uri . }\n", - "\"How many awards have royal designers for industry awardwinners got? | 'awards'-dbo:award | 'royal designers'-dbo:royalAnthem | 'industry awardwinners'-dbo:industry\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/royalDesigner> <http://dbpedia.org/resource/Royalty> . ?x <http://dbpedia.org/property/awards> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:royalAnthem.?x dbp:awards?uri . }\n", + "\"How many awards have royal designers for industry awardwinners got? | 'awards'-dbo:award | 'royal designers'-dbo:royalAnthem | 'industry awardwinners'-dbo:industry\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/royalAnthem> . ?x <http://dbpedia.org/property/awards> ?uri . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Abdel_Bouckar dbp:position?uri } \n", - "\"Where is the team of Abdel Boucker located ? | 'Abdel Boucker'-res:Abdel_Bouckar | 'team'-dbo:team | 'located'-dbo:position\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Abdel_Bouckar> <http://dbpedia.org/property/position> ?uri } \"\n", + " SELECT DISTINCT?uri WHERE { res:Abdel_Bouckar dbo:team?uri } \n", + "\"Where is the team of Abdel Boucker located ? | 'Abdel Boucker'-res:Abdel_Bouckar | 'team'-dbo:team | 'located'-dbo:position\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Abdel_Bouckar> <http://dbpedia.org/ontology/team> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:nationalteam res:Tanzania_national_football_team.?x dbo:team?uri . }\n", - "\"For which other teams do members of tanzanian national football team play? | ''-res:Tanzania_national_football_team | 'teams'-dbo:team | 'members'-dbo:membership | 'play'-dbo:team\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/nationalteam> <http://dbpedia.org/resource/Tanzania_national_football_team> . ?x <http://dbpedia.org/ontology/team> ?uri . }\"\n", + " SELECT DISTINCT?uri WHERE {?x dbp:nationalteam res:Tanzania_national_football_team.?x dbo:team?uri }\n", + "\"For which other teams do members of tanzanian national football team play? | ''-res:Tanzania_national_football_team | 'teams'-dbo:team | 'members'-dbo:membership | 'play'-dbo:team\",\" SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/nationalteam> <http://dbpedia.org/resource/Tanzania_national_football_team> . ?x <http://dbpedia.org/ontology/team> ?uri }\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:East_Tilbury dbo:ceremonialCounty?uri } \n", "\"List the ceremonial county of East Tilbury ? | 'East Tilbury'-res:East_Tilbury | 'ceremonial county'-dbo:ceremonialCounty\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/East_Tilbury> <http://dbpedia.org/ontology/ceremonialCounty> ?uri } \"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:James_F._O'Brien dbp:service?uri. res:Laemmle_Theatres dbo:award?uri} \n", - "\"Which award that has been given to James F Obrien, had used Laemmle Theatres for some service? | 'Laemmle Theatres'-res:Laemmle_Theatres | 'James F Obrien'-res:James_F._O'Brien | 'award'-dbo:award | 'service'-dbo:service\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/James_F._O'Brien> <http://dbpedia.org/property/service> ?uri . <http://dbpedia.org/resource/Laemmle_Theatres> <http://dbpedia.org/ontology/award> ?uri} \"\n", + "SELECT DISTINCT?uri WHERE { res:Laemmle_Theatres dbp:service?x.?x dbo:award?uri . }\n", + "\"Which award that has been given to James F Obrien, had used Laemmle Theatres for some service? | 'Laemmle Theatres'-res:Laemmle_Theatres | 'James F Obrien'-res:James_F._O'Brien | 'award'-dbo:award | 'service'-dbo:service\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Laemmle_Theatres> <http://dbpedia.org/property/service> ?x . ?x <http://dbpedia.org/ontology/award> ?uri . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:choreographer res:Catarina_Lindgren.?x dbo:parternatedIn?uri . }\n", - "\"How many people have parterned with the person choroegraphed by Catarina Lindgren in the past? | 'Parterned'-res:Bartered | 'Catarina Lindgren'-res:Catarina_Lindgren | 'person'-dbo:person | 'choroegraphed'-dbp:choreographer\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/choreographer> <http://dbpedia.org/resource/Catarina_Lindgren> . ?x <http://dbpedia.org/ontology/parternatedIn> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:choreographer res:Catarina_Lindgren.?uri dbo:parternedPerson?x . }\n", + "\"How many people have parterned with the person choroegraphed by Catarina Lindgren in the past? | 'Parterned'-res:Bartered | 'Catarina Lindgren'-res:Catarina_Lindgren | 'person'-dbo:person | 'choroegraphed'-dbp:choreographer\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/choreographer> <http://dbpedia.org/resource/Catarina_Lindgren> . ?uri <http://dbpedia.org/ontology/parternedPerson> ?x . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Siege_of_Santiago dbo:commander?uri. res:Battle_of-Fort_Stephenson dbp:battles?uri} \n", - "\"Which famous commander led the Siege of forn meigs and was involved in the battle of fort stephenson? | 'Siege'-res:Siege_of_Santiago | 'meigs'-res:Meigs | 'fort stephenson'-res:Battle_of_Fort_Stephenson | 'famous commander'-dbo:commander | 'led'-dbo:license | 'forn'-dbo:gross | 'involved'-dbo:result | 'battle'-dbo:battle\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Siege_of_Santiago> <http://dbpedia.org/ontology/commander> ?uri . <http://dbpedia.org/resource/Battle_of-Fort_Stephenson> <http://dbpedia.org/property/battles> ?uri} \"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:battles res:Siege_of_Santiago.?x dbo:commander?uri . }\n", + "\"Which famous commander led the Siege of forn meigs and was involved in the battle of fort stephenson? | 'Siege'-res:Siege_of_Santiago | 'meigs'-res:Meigs | 'fort stephenson'-res:Battle_of_Fort_Stephenson | 'famous commander'-dbo:commander | 'led'-dbo:license | 'forn'-dbo:gross | 'involved'-dbo:result | 'battle'-dbo:battle\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/Siege_of_Santiago> . ?x <http://dbpedia.org/ontology/commander> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:location res:California.?x dbp:publisher?uri . }\n", - "\"Which games publishers are located in California? | 'California'-res:California | 'games publishers'-dbo:athletics | 'located'-dbo:gross\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/California> . ?x <http://dbpedia.org/property/publisher> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:location res:California.?uri dbp:publisher?x . }\n", + "\"Which games publishers are located in California? | 'California'-res:California | 'games publishers'-dbo:athletics | 'located'-dbo:gross\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/California> . ?uri <http://dbpedia.org/property/publisher> ?x . }\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Philadelphia_Rage dbo:stadium?uri } \n", "\"Where is the stadium of Philadelphia Rage ? | 'Philadelphia Rage'-res:Philadelphia_Rage | 'stadium'-dbo:stadium\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Philadelphia_Rage> <http://dbpedia.org/ontology/stadium> ?uri } \"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbo:license res:Software_as_a_service . }\n", - "\"Count all the things licensed as Software as a service. | 'Software'-res:Software | 'count'-dbo:type | 'licensed'-dbo:license | 'service'-dbo:industry\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/license> <http://dbpedia.org/resource/Software_as_a_service> . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:license res:Software_as_a_service.?uri dbp:license?x . }\n", + "\"Count all the things licensed as Software as a service. | 'Software'-res:Software | 'count'-dbo:type | 'licensed'-dbo:license | 'service'-dbo:industry\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/license> <http://dbpedia.org/resource/Software_as_a_service> . ?uri <http://dbpedia.org/property/license> ?x . }\"\n", "\n", - " SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:subject res:Racism.?x dbo:nonFictionSubject?uri }\n", - "\"What is the total number of other non-fiction subject of the books whose one of the subject is Racism? | 'Racism'-res:Racism | 'total'-dbo:populationTotal | 'non-fiction subject'-dbo:nonFictionSubject | 'books'-dbo:volume | 'subject'-dbo:nonFictionSubject\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/subject> <http://dbpedia.org/resource/Racism> . ?x <http://dbpedia.org/ontology/nonFictionSubject> ?uri }\"\n", + " SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:literaryGenre res:Racism.?x dbo:nonFictionSubject?uri }\n", + "\"What is the total number of other non-fiction subject of the books whose one of the subject is Racism? | 'Racism'-res:Racism | 'total'-dbo:populationTotal | 'non-fiction subject'-dbo:nonFictionSubject | 'books'-dbo:volume | 'subject'-dbo:nonFictionSubject\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/literaryGenre> <http://dbpedia.org/resource/Racism> . ?x <http://dbpedia.org/ontology/nonFictionSubject> ?uri }\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:U.S._Route_59 dbp:junction?uri } \n", - "\"Name all the junctions of U.S. Route 59? | 'U.S. Route 59'-res:U.S._Route_59 | 'name'-dbp:name | 'junctions'-dbp:junction\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/U.S._Route_59> <http://dbpedia.org/property/junction> ?uri } \"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:route res:U.S._Route_59.?x dbp:junction?uri . }\n", + "\"Name all the junctions of U.S. Route 59? | 'U.S. Route 59'-res:U.S._Route_59 | 'name'-dbp:name | 'junctions'-dbp:junction\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/route> <http://dbpedia.org/resource/U.S._Route_59> . ?x <http://dbpedia.org/property/junction> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:service res:OneDrive.?x dbp:services?uri . }\n", - "\"What are some other services of the company whose service is Onedrive? | 'Onedrive'-res:OneDrive | 'services'-dbo:service | 'company'-dbo:company | 'service'-dbo:service\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/service> <http://dbpedia.org/resource/OneDrive> . ?x <http://dbpedia.org/property/services> ?uri . }\"\n", + " SELECT DISTINCT?uri WHERE {?uri dbo:service res:OneDrive } \n", + "\"What are some other services of the company whose service is Onedrive? | 'Onedrive'-res:OneDrive | 'services'-dbo:service | 'company'-dbo:company | 'service'-dbo:service\",\" SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/service> <http://dbpedia.org/resource/OneDrive> } \"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Bob_Adams_(American_football) dbp:knownFor?uri } \n", "\"What is Bob Adams (American football) known for? | 'Bob Adams (American football)'-res:Bob_Adams_(American_football) | 'known for'-dbp:knownFor\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bob_Adams_(American_football)> <http://dbpedia.org/property/knownFor> ?uri } \"\n", @@ -1722,53 +1466,53 @@ " SELECT DISTINCT?uri WHERE { res:Chelsea_F.C. dbp:owner?uri } \n", "\"Who owns Chelsea F.C.? | 'FC'-res:FC | 'Chelsea'-res:Chelsea | 'owns'-dbo:languageFamily\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Chelsea_F.C> . <http://dbpedia.org/property/owner> ?uri } \"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Duncan_U._Fletcher dbp:affiliation?uri. res:Monroe_Carell_Jr._Children's_Hospital_at_Vanderbilt dbo:almaMater?uri} \n", - "\"What is the common affiliation of the Monroe Carell Jr. Children's Hospital at Vanderbilt and alma mater of the Duncan U. Fletcher? | 'Monroe Carell Jr. Children's Hospital at Vanderbilt'-res:Monroe_Carell_Jr._Children's_Hospital_at_Vanderbilt | 'Duncan U. Fletcher'-res:Duncan_U._Fletcher | 'affiliation'-dbp:affiliation | 'alma mater'-dbo:almaMater\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Duncan_U._Fletcher> <http://dbpedia.org/property/affiliation> ?uri . <http://dbpedia.org/resource/Monroe_Carell_Jr._Children's_Hospital_at_Vanderbilt> <http://dbpedia.org/ontology/almaMater> ?uri} \"\n", + " SELECT DISTINCT?uri WHERE { res:Monroe_Carell_Jr._Children's_Hospital_at_Vanderbilt dbp:affiliation?uri. res:Duncan_U._Fletcher dbo:almaMater?uri} \n", + "\"What is the common affiliation of the Monroe Carell Jr. Children's Hospital at Vanderbilt and alma mater of the Duncan U. Fletcher? | 'Monroe Carell Jr. Children's Hospital at Vanderbilt'-res:Monroe_Carell_Jr._Children's_Hospital_at_Vanderbilt | 'Duncan U. Fletcher'-res:Duncan_U._Fletcher | 'affiliation'-dbp:affiliation | 'alma mater'-dbo:almaMater\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Monroe_Carell_Jr._Children's_Hospital_at_Vanderbilt> <http://dbpedia.org/property/affiliation> ?uri . <http://dbpedia.org/resource/Duncan_U._Fletcher> <http://dbpedia.org/ontology/almaMater> ?uri} \"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Bachelor_of_Arts dbo:board?uri } \n", - "\"Where do bachelor of arts live? | 'bachelor'-res:Bachelor | 'arts live'-dbo:board\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bachelor_of_Arts> <http://dbpedia.org/ontology/board> ?uri } \"\n", + " SELECT DISTINCT?uri WHERE { res:Bachelor_(artist) dbo:board?uri } \n", + "\"Where do bachelor of arts live? | 'bachelor'-res:Bachelor | 'arts live'-dbo:board\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bachelor_(artist)> <http://dbpedia.org/ontology/board> ?uri } \"\n", "\n", "SELECT DISTINCT?uri WHERE { res:Liv_Ullmann dbo:partner?x.?x dbp:awards?uri . }\n", "\"What are the awards won by the spouse of Liv Ullmann ? | 'Liv Ullmann'-res:Liv_Ullmann | 'spouse'-dbo:partner | 'awards'-dbp:awards\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Liv_Ullmann> <http://dbpedia.org/ontology/partner> ?x . ?x <http://dbpedia.org/property/awards> ?uri . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:product res:Cross_Platform_of_Soft_ares.?uri dbp:developer?x . }\n", - "\"How many companies have developed cross platformed softwares? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'cross platformed softwares'-res:Go_software | 'developed'-dbo:product\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/product> <http://dbpedia.org/resource/Cross_Platform_of_Soft_ares> . ?uri <http://dbpedia.org/property/developer> ?x . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:products res:Cross_Platform_for_Softwares .?uri rdf:type dbo:Company}\n", + "\"How many companies have developed cross platformed softwares? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'cross platformed softwares'-res:Go_software | 'developed'-dbo:product\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/products> <http://dbpedia.org/resource/Cross_Platform_for_Softwares> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}\"\n", "\n", "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:battle res:Operation_Dragoon.?x dbp:title?uri . }\n", "\"How many titles were given to people who engaged in the Operation Dragoon? | 'Operation Dragoon'-res:Operation_Dragoon | 'titles'-dbp:title | 'engaged'-dbo:address\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/battle> <http://dbpedia.org/resource/Operation_Dragoon> . ?x <http://dbpedia.org/property/title> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:firstTeam res:Williams_Grand_Prix_Engineering.?x dbo:poleDriver?uri . }\n", - "\"List the pole drivers in the grand prixes where Williams Grand Prix Engineering was a first team? | 'Williams Grand Prix Engineering'-res:Williams_Grand_Prix_Engineering | 'pole drivers'-dbp:poleDriver | 'grand prixes'-dbo:grandsire | 'team'-dbo:team\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/firstTeam> <http://dbpedia.org/resource/Williams_Grand_Prix_Engineering> . ?x <http://dbpedia.org/ontology/poleDriver> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:firstTeam res:Williams_Grand_Prix_Engineering.?x dbp:poleDriver?uri . }\n", + "\"List the pole drivers in the grand prixes where Williams Grand Prix Engineering was a first team? | 'Williams Grand Prix Engineering'-res:Williams_Grand_Prix_Engineering | 'pole drivers'-dbp:poleDriver | 'grand prixes'-dbo:grandsire | 'team'-dbo:team\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/firstTeam> <http://dbpedia.org/resource/Williams_Grand_Prix_Engineering> . ?x <http://dbpedia.org/property/poleDriver> ?uri . }\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Michael_M._Sears dbo:employer?uri } \n", "\"Who is the employer of Michael M. Sears ? | 'Michael M. Sears'-res:Michael_M._Sears | 'employer'-dbo:employer\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Michael_M._Sears> <http://dbpedia.org/ontology/employer> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:artist res:McClain_(band).?x rdf:type dbo:TelevisionShow}\n", - "\"List all the artist of the TV shows which has McClain as one of the artist ? | 'McClain'-res:McClain_(band) | 'artist'-dbo:artist | 'artist'-dbo:artist\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/artist> <http://dbpedia.org/resource/McClain_(band)> . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}\"\n", + " SELECT DISTINCT?uri WHERE {?x dbp:artist res:McClain_(band).?x dbo:artist?uri }\n", + "\"List all the artist of the TV shows which has McClain as one of the artist ? | 'McClain'-res:McClain_(band) | 'artist'-dbo:artist | 'artist'-dbo:artist\",\" SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/artist> <http://dbpedia.org/resource/McClain_(band)> . ?x <http://dbpedia.org/ontology/artist> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:layout res:Four-wheel-drive_layout.?x dbp:layout?uri . }\n", - "\"List all the layouts of the automobile whose one of the layout is four-wheel-drive layout ? | 'four-wheel-drive layout'-res:Front-engine,_four-wheel-drive_layout | 'layouts'-dbo:configuration | 'automobile'-dbo:vehicle | 'layout'-dbo:layout | 'four-wheel-drive layout'-dbo:purpose\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/layout> <http://dbpedia.org/resource/Four-wheel-drive_layout> . ?x <http://dbpedia.org/property/layout> ?uri . }\"\n", + " SELECT DISTINCT?uri WHERE {?x dbp:engine res:Front-engine.?x dbo:layout?uri }\n", + "\"List all the layouts of the automobile whose one of the layout is four-wheel-drive layout ? | 'four-wheel-drive layout'-res:Front-engine,_four-wheel-drive_layout | 'layouts'-dbo:configuration | 'automobile'-dbo:vehicle | 'layout'-dbo:layout | 'four-wheel-drive layout'-dbo:purpose\",\" SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/engine> <http://dbpedia.org/resource/Front-engine> . ?x <http://dbpedia.org/ontology/layout> ?uri }\"\n", "\n", - " SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:headquarters res:Gatwick_Airport.?x dbo:destinations?uri }\n", - "\"To how many places does the airlines fly, whose head office is located at the Gatwick Airport? | 'airlines fly,'-res:Hi_Fly_(airline) | 'Gatwick Airport'-res:Gatwick_Airport | 'places'-dbo:district | 'head office'-dbp:headquarters | 'located'-dbo:gross\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Gatwick_Airport> . ?x <http://dbpedia.org/ontology/destinations> ?uri }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:headquarters res:Gatwick_Airport.?x dbo:destinations?uri . }\n", + "\"To how many places does the airlines fly, whose head office is located at the Gatwick Airport? | 'airlines fly,'-res:Hi_Fly_(airline) | 'Gatwick Airport'-res:Gatwick_Airport | 'places'-dbo:district | 'head office'-dbp:headquarters | 'located'-dbo:gross\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Gatwick_Airport> . ?x <http://dbpedia.org/ontology/destinations> ?uri . }\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:WPC_Dynamo_Moscow dbp:arena?uri } \n", "\"Where is the arena of WPC Dynamo Moscow situated? | 'WPC Dynamo Moscow'-res:WPC_Dynamo_Moscow | 'arena'-dbp:arena | 'situated'-dbo:position\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/WPC_Dynamo_Moscow> <http://dbpedia.org/property/arena> ?uri } \"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:chairman res:Venkatraman_Ramakrishnan.?uri dbp:awards?x . }\n", - "\" How many scientist have won an award by the society led by Venkatraman Ramakrishnan? | 'How'-res:How_Do_I_Deal | 'scientist'-res:Scientist | 'Venkatraman Ramakrishnan'-res:Venkatraman_Ramakrishnan | 'won'-dbo:award | 'award'-dbo:award | 'society'-dbo:institution | 'led'-dbo:field\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/chairman> <http://dbpedia.org/resource/Venkatraman_Ramakrishnan> . ?uri <http://dbpedia.org/property/awards> ?x . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:leader res:Venkatraman_Ramakrishnan .?uri rdf:type dbo:Scientist}\n", + "\" How many scientist have won an award by the society led by Venkatraman Ramakrishnan? | 'How'-res:How_Do_I_Deal | 'scientist'-res:Scientist | 'Venkatraman Ramakrishnan'-res:Venkatraman_Ramakrishnan | 'won'-dbo:award | 'award'-dbo:award | 'society'-dbo:institution | 'led'-dbo:field\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/leader> <http://dbpedia.org/resource/Venkatraman_Ramakrishnan> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:commander res:The_Jacket.?x dbo:combatant?uri . }\n", - "\"Who all were involved in the wars fought by the commander Blue Jacket? | 'commander Blue Jacket'-res:The_Jacket | 'involved'-dbo:address | 'wars'-dbo:partner | 'fought'-dbo:type\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/commander> <http://dbpedia.org/resource/The_Jacket> . ?x <http://dbpedia.org/ontology/combatant> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:commander res:The_Jacket.?x dbp:territory?uri . }\n", + "\"Who all were involved in the wars fought by the commander Blue Jacket? | 'commander Blue Jacket'-res:The_Jacket | 'involved'-dbo:address | 'wars'-dbo:partner | 'fought'-dbo:type\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/commander> <http://dbpedia.org/resource/The_Jacket> . ?x <http://dbpedia.org/property/territory> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:label res:Victor_Entertainment.?uri rdf:type dbo:Celluloid_Records}\n", - "\"Whose labels are Victor Entertainment and Celluloid Records? | 'Victor Entertainment'-res:Victor_Entertainment | 'Celluloid Records'-res:Celluloid_Records | 'labels'-dbp:label\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Victor_Entertainment> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Celluloid_Records>}\"\n", + "SELECT DISTINCT?uri WHERE { res:Celluloid_Records dbp:label?uri. }\n", + "\"Whose labels are Victor Entertainment and Celluloid Records? | 'Victor Entertainment'-res:Victor_Entertainment | 'Celluloid Records'-res:Celluloid_Records | 'labels'-dbp:label\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Celluloid_Records> <http://dbpedia.org/property/label> ?uri . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:network res:Tokyo_Broadcasting_System.?x dbp:writer?uri . }\n", - "\"How many people have written stuff broadcasted on the Tokyo Broadcasting System? | 'Tokyo Broadcasting System'-res:Tokyo_Broadcasting_System | 'written'-dbo:writer | 'stuff broadcasted'-dbo:capital\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/network> <http://dbpedia.org/resource/Tokyo_Broadcasting_System> . ?x <http://dbpedia.org/property/writer> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:network res:Tokyo_Broadcasting_System.?uri dbp:author?x . }\n", + "\"How many people have written stuff broadcasted on the Tokyo Broadcasting System? | 'Tokyo Broadcasting System'-res:Tokyo_Broadcasting_System | 'written'-dbo:writer | 'stuff broadcasted'-dbo:capital\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/network> <http://dbpedia.org/resource/Tokyo_Broadcasting_System> . ?uri <http://dbpedia.org/property/author> ?x . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:inflow res:Sea_of_Marmara.?x dbp:cities?uri . }\n", - "\"What cities are around the sea which flows into Marmara? | 'Marmara'-res:Sea_of_Marmara | 'cities'-dbo:country | 'sea'-dbo:elevation | 'flows'-dbo:outflow\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/inflow> <http://dbpedia.org/resource/Sea_of_Marmara> . ?x <http://dbpedia.org/property/cities> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:inflow res:Marmara .?uri rdf:type dbo:Sea}\n", + "\"What cities are around the sea which flows into Marmara? | 'Marmara'-res:Sea_of_Marmara | 'cities'-dbo:country | 'sea'-dbo:elevation | 'flows'-dbo:outflow\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/inflow> <http://dbpedia.org/resource/Marmara> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Sea>}\"\n", "\n", "SELECT DISTINCT?uri WHERE {?uri dbp:headquarters res:Geneva .?uri rdf:type dbo:TelevisionShow}\n", "\"Companies headquartered in Geneva own which TV Shows? | 'Geneva'-res:Geneva | 'headquartered'-dbo:headquarter\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Geneva> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}\"\n", @@ -1782,8 +1526,8 @@ "SELECT DISTINCT?uri WHERE {?x dbo:routeStart res:Seberang_Perai.?x dbp:crosses?uri . }\n", "\"Bridge that starts at Seberang Perai crosses over what? | 'Seberang Perai crosses'-res:Seberang_Perai | 'bridge'-dbo:abstract | 'starts'-dbo:routeStart\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/routeStart> <http://dbpedia.org/resource/Seberang_Perai> . ?x <http://dbpedia.org/property/crosses> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:purpose res:Maharashtran.?x dbo:purpose?uri . }\n", - "\"What is the purpose of some Maharashtran organizations? | 'Maharashtran organizations'-res:Complex_organizations | 'purpose'-dbo:purpose\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/purpose> <http://dbpedia.org/resource/Maharashtran> . ?x <http://dbpedia.org/ontology/purpose> ?uri . }\"\n", + " SELECT DISTINCT?uri WHERE {?uri dbp:purpose res:Maharashtran } \n", + "\"What is the purpose of some Maharashtran organizations? | 'Maharashtran organizations'-res:Complex_organizations | 'purpose'-dbo:purpose\",\" SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/purpose> <http://dbpedia.org/resource/Maharashtran> } \"\n", "\n", "SELECT DISTINCT?uri WHERE {?x dbo:river res:Mota-Engil.?x dbp:crosses?uri . }\n", "\"Mota Engil built bridges over which rivers? | 'Mota Engil'-res:Mota-Engil | 'built'-dbo:numberBuilt | 'bridges'-dbo:abstract | 'rivers'-dbo:river\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/river> <http://dbpedia.org/resource/Mota-Engil> . ?x <http://dbpedia.org/property/crosses> ?uri . }\"\n", @@ -1794,17 +1538,17 @@ " SELECT DISTINCT?uri WHERE { res:Jimmie_Lou_Fisher dbp:governor?uri } \n", "\"List the governers of Jimmie Lou Fisher? | 'Jimmie Lou Fisher'-res:Jimmie_Lou_Fisher | 'governers'-dbp:governor\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jimmie_Lou_Fisher> <http://dbpedia.org/property/governor> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:birthPlace res:England.?uri dbp:painters?x . }\n", - "\"Which shows had their painters born in England? | 'England'-res:England | 'shows'-dbo:place | 'painters'-dbo:author | 'born'-dbo:birthPlace\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/England> . ?uri <http://dbpedia.org/property/painters> ?x . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:birthPlace res:England .?uri rdf:type dbo:TelevisionShow}\n", + "\"Which shows had their painters born in England? | 'England'-res:England | 'shows'-dbo:place | 'painters'-dbo:author | 'born'-dbo:birthPlace\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/birthPlace> <http://dbpedia.org/resource/England> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:child res:Luke_Scott_(director).?uri dbp:director?x . }\n", - "\"What are the movies whose director's daughter is Luke Scott? | 'Luke Scott'-res:Luke_Scott_(director) | 'movies'-dbo:film | 'director'-dbo:director | 'daughter'-dbo:child\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/child> <http://dbpedia.org/resource/Luke_Scott_(director)> . ?uri <http://dbpedia.org/property/director> ?x . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:child res:Luke_Scott_(director) .?uri rdf:type dbo:Film}\n", + "\"What are the movies whose director's daughter is Luke Scott? | 'Luke Scott'-res:Luke_Scott_(director) | 'movies'-dbo:film | 'director'-dbo:director | 'daughter'-dbo:child\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/child> <http://dbpedia.org/resource/Luke_Scott_(director)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Gustavo_Rojas_Pinilla dbp:relation?x.?x dbo:education?uri . }\n", - "\"Where did the relatives of Gustavo Rojas Pinilla study? | 'Gustavo Rojas Pinilla study'-res:Gustavo_Rojas_Pinilla | 'relatives'-dbo:relation\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Gustavo_Rojas_Pinilla> <http://dbpedia.org/property/relation> ?x . ?x <http://dbpedia.org/ontology/education> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Gustavo_Rojas_Pinilla dbo:relation?x.?x dbp:education?uri . }\n", + "\"Where did the relatives of Gustavo Rojas Pinilla study? | 'Gustavo Rojas Pinilla study'-res:Gustavo_Rojas_Pinilla | 'relatives'-dbo:relation\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Gustavo_Rojas_Pinilla> <http://dbpedia.org/ontology/relation> ?x . ?x <http://dbpedia.org/property/education> ?uri . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:stateOfOrigin res:United_States.?x dbp:knownFor?uri . }\n", - "\"For how many things are americans famous for? | 'americans famous'-dbo:established\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/stateOfOrigin> <http://dbpedia.org/resource/United_States> . ?x <http://dbpedia.org/property/knownFor> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbo:nationality res:Americans . }\n", + "\"For how many things are americans famous for? | 'americans famous'-dbo:established\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/nationality> <http://dbpedia.org/resource/Americans> . }\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Lucifer's_Hammer dbo:publisher?uri } \n", "\"What is the publisher of Lucifer's Hammer ? | 'Lucifer's Hammer'-res:Lucifer's_Hammer | 'publisher'-dbo:publisher\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lucifer's_Hammer> <http://dbpedia.org/ontology/publisher> ?uri } \"\n", @@ -1812,17 +1556,17 @@ "SELECT DISTINCT?uri WHERE {?uri dbp:label res:MapleMusic_Recordings .?uri rdf:type dbo:TelevisionShow}\n", "\"Which show's theme music composer's label is MapleMusic Recordings? | 'theme music composer'-res:Theme_Music_from_%22The_James_Dean_Story%22 | 'MapleMusic Recordings'-res:MapleMusic_Recordings | 'show'-dbo:show | 'label'-dbp:label\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/label> <http://dbpedia.org/resource/MapleMusic_Recordings> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x .?x rdf:type dbo:AmericanFootballPlayer}\n", - "\"List the former team of the american football players born in Pennsylvania ? | 'american football players'-res:American_football | 'Pennsylvania'-res:Pennsylvania | 'former team'-dbo:formerTeam | 'born'-dbo:birthPlace\",\"SELECT DISTINCT ?uri WHERE { ?x . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/AmericanFootballPlayer>}\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:birthPlace res:Pennsylvania.?uri dbp:formerTeam?x . }\n", + "\"List the former team of the american football players born in Pennsylvania ? | 'american football players'-res:American_football | 'Pennsylvania'-res:Pennsylvania | 'former team'-dbo:formerTeam | 'born'-dbo:birthPlace\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Pennsylvania> . ?uri <http://dbpedia.org/property/formerTeam> ?x . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbo:primeminister res:History_of_Trier . }\n", - "\"What are the countries for which History of Trier principal to? | 'countries'-res:Countries_of_the_United_Kingdom | 'History of Trier principal'-res:History_of_Trier\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/primeminister> <http://dbpedia.org/resource/History_of_Trier> . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:primeminister res:History_of_Trier .?uri rdf:type dbo:Country}\n", + "\"What are the countries for which History of Trier principal to? | 'countries'-res:Countries_of_the_United_Kingdom | 'History of Trier principal'-res:History_of_Trier\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/primeminister> <http://dbpedia.org/resource/History_of_Trier> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Country>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:owner res:Roman_Abramovich.?uri dbo:employer?x . }\n", - "\"Name everyone working for a company owned by Roman Abramovich. | 'Roman Abramovich'-res:Roman_Abramovich | 'name'-dbp:name | 'working'-dbo:capital | 'company'-dbo:company | 'owned'-dbo:owner\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/owner> <http://dbpedia.org/resource/Roman_Abramovich> . ?uri <http://dbpedia.org/ontology/employer> ?x . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:owner res:Roman_Abramovich.?uri dbp:company?x . }\n", + "\"Name everyone working for a company owned by Roman Abramovich. | 'Roman Abramovich'-res:Roman_Abramovich | 'name'-dbp:name | 'working'-dbo:capital | 'company'-dbo:company | 'owned'-dbo:owner\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/owner> <http://dbpedia.org/resource/Roman_Abramovich> . ?uri <http://dbpedia.org/property/company> ?x . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:foundationPlace res:Toronto.?x dbp:locations?uri . }\n", - "\"In how many different places can I find companies which were founded in toronto? | 'I'-res:I | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'toronto'-res:Toronto | 'places'-dbp:height | 'founded'-dbo:foundingYear\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/foundationPlace> <http://dbpedia.org/resource/Toronto> . ?x <http://dbpedia.org/property/locations> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:foundationBy res:Toronto.?x dbp:locations?uri . }\n", + "\"In how many different places can I find companies which were founded in toronto? | 'I'-res:I | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'toronto'-res:Toronto | 'places'-dbp:height | 'founded'-dbo:foundingYear\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/foundationBy> <http://dbpedia.org/resource/Toronto> . ?x <http://dbpedia.org/property/locations> ?uri . }\"\n", "\n", "SELECT DISTINCT?uri WHERE {?uri dbo:spouse res:Uncle_Henry_(Oz) . }\n", "\"What are some relatives of the spouse of Uncle henry from Oz? | 'Uncle henry from Oz'-res:Uncle_Henry_(Oz) | 'relatives'-dbo:relative | 'spouse'-dbo:spouse\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/spouse> <http://dbpedia.org/resource/Uncle_Henry_(Oz)> . }\"\n", @@ -1833,53 +1577,53 @@ "SELECT DISTINCT?uri WHERE {?uri dbp:voices res:Eliza_Schneider .?uri rdf:type dbo:TelevisionShow}\n", "\"In which television shows has Eliza Schneider given her voice? | 'Eliza Schneider'-res:Eliza_Schneider | 'voice'-dbp:voices | 'television show'-dbo:TelevisionShow\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/voices> <http://dbpedia.org/resource/Eliza_Schneider> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:J._Bennett_Johnston dbp:related?x.?x dbo:state?uri . }\n", - "\"In which state does the ambassador who is in related with J Bennett Johnston live? | 'J Bennett Johnston'-res:J._Bennett_Johnston | 'ambassador'-dbp:representative | 'related'-dbo:related\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/J._Bennett_Johnston> <http://dbpedia.org/property/related> ?x . ?x <http://dbpedia.org/ontology/state> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:J._Bennett_Johnston dbo:related?x.?x dbp:state?uri . }\n", + "\"In which state does the ambassador who is in related with J Bennett Johnston live? | 'J Bennett Johnston'-res:J._Bennett_Johnston | 'ambassador'-dbp:representative | 'related'-dbo:related\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/J._Bennett_Johnston> <http://dbpedia.org/ontology/related> ?x . ?x <http://dbpedia.org/property/state> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:debutteam res:Homestead_Grays.?x dbp:birthPlace?uri . }\n", - "\"Where were the sportsmen born, who started their careers with Homestead Grays? | 'Homestead Grays'-res:Homestead_Grays | 'sportsmen born,'-dbo:birthPlace | 'started'-dbo:source | 'careers'-dbo:occupation\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/debutteam> <http://dbpedia.org/resource/Homestead_Grays> . ?x <http://dbpedia.org/property/birthPlace> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:occupation res:Homestead_Grays.?x dbp:birthPlace?uri . }\n", + "\"Where were the sportsmen born, who started their careers with Homestead Grays? | 'Homestead Grays'-res:Homestead_Grays | 'sportsmen born,'-dbo:birthPlace | 'started'-dbo:source | 'careers'-dbo:occupation\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/occupation> <http://dbpedia.org/resource/Homestead_Grays> . ?x <http://dbpedia.org/property/birthPlace> ?uri . }\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:The_Simpsons_Ride dbp:starring?uri } \n", "\"Who are the cast members of The Simpsons Ride? | 'The Simpsons Ride'-res:The_Simpsons_Ride | 'cast members'-dbp:starring\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Simpsons_Ride> <http://dbpedia.org/property/starring> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:developer res:IPhone.?uri dbo:organisation res:XNU. }\n", - "\"Name the organization which developed iPhone OS and the XNU? | 'OS'-res:OS | 'iPhone'-res:IPhone | 'XNU'-res:XNU | 'name'-dbp:name | 'organization'-dbo:alliance | 'developed'-dbp:developer\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/developer> <http://dbpedia.org/resource/IPhone> . ?uri <http://dbpedia.org/ontology/organisation> <http://dbpedia.org/resource/XNU> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:IPhone dbo:os?uri. res:XNU dbp:developer?uri. }\n", + "\"Name the organization which developed iPhone OS and the XNU? | 'OS'-res:OS | 'iPhone'-res:IPhone | 'XNU'-res:XNU | 'name'-dbp:name | 'organization'-dbo:alliance | 'developed'-dbp:developer\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/IPhone> <http://dbpedia.org/ontology/os> ?uri . <http://dbpedia.org/resource/XNU> <http://dbpedia.org/property/developer> ?uri . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?uri rdf:type dbo:Bacteria}\n", - "\"How many bacterias have taxonomy as Bacillales and domain as Bacteria? | 'bacterias'-res:Bacteriastrum_delicatulum | 'Bacillales'-res:Bacillales | 'Bacteria'-res:Bacteria | 'taxonomy'-dbo:order | 'domain'-dbo:kingdom\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Bacteria>}\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:kingdom res:Bacillales .?uri rdf:type dbo:Bacteria}\n", + "\"How many bacterias have taxonomy as Bacillales and domain as Bacteria? | 'bacterias'-res:Bacteriastrum_delicatulum | 'Bacillales'-res:Bacillales | 'Bacteria'-res:Bacteria | 'taxonomy'-dbo:order | 'domain'-dbo:kingdom\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/kingdom> <http://dbpedia.org/resource/Bacillales> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Bacteria>}\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Alice's_Wonderland dbp:director?uri } \n", "\"Who is the film director of Alice's Wonderland ? | 'Alice's Wonderland'-res:Alice's_Wonderland | 'film director'-dbp:director\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Alice's_Wonderland> <http://dbpedia.org/property/director> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:garrison res:United_States_Department_of_Defense .?uri rdf:type dbo:MilitaryUnit}\n", - "\"Which military unit's garrison is Pentagon and command structure is United States Department of Defense? | 'garrison'-res:Aldershot_Garrison | 'Pentagon'-res:Pentagon | 'United States Department of Defense'-res:United_States_Department_of_Defense | 'military unit'-dbo:garrison | 'command structure'-dbo:commandStructure\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/garrison> <http://dbpedia.org/resource/United_States_Department_of_Defense> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MilitaryUnit>}\"\n", + " SELECT DISTINCT?uri WHERE {?uri dbp:garrison res:Pentagon.?uri dbo:commandStructure res:United_States_Department_of_Defense } \n", + "\"Which military unit's garrison is Pentagon and command structure is United States Department of Defense? | 'garrison'-res:Aldershot_Garrison | 'Pentagon'-res:Pentagon | 'United States Department of Defense'-res:United_States_Department_of_Defense | 'military unit'-dbo:garrison | 'command structure'-dbo:commandStructure\",\" SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/garrison> <http://dbpedia.org/resource/Pentagon> . ?uri <http://dbpedia.org/ontology/commandStructure> <http://dbpedia.org/resource/United_States_Department_of_Defense> } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:design res:Cable_Stayed_Bridge.?x dbp:river?uri . }\n", - "\"Over which rivers, does a cable stayed bridge exists? | 'rivers,'-dbo:river | 'cable'-dbo:voice | 'stayed'-dbo:era | 'bridge exists'-dbo:bridgeCarries\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/design> <http://dbpedia.org/resource/Cable_Stayed_Bridge> . ?x <http://dbpedia.org/property/river> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:designer res:Cambodian_Democrats.?x dbo:bridgeCarries?uri . }\n", + "\"Over which rivers, does a cable stayed bridge exists? | 'rivers,'-dbo:river | 'cable'-dbo:voice | 'stayed'-dbo:era | 'bridge exists'-dbo:bridgeCarries\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/designer> <http://dbpedia.org/resource/Cambodian_Democrats> . ?x <http://dbpedia.org/ontology/bridgeCarries> ?uri . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE {?uri dbo:state res:Nazi_Germany } \n", - "\"Who were some governmental heads in Nazi Germany? | 'Nazi Germany'-res:Nazi_Germany | 'governmental heads'-dbo:state\",\" SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/state> <http://dbpedia.org/resource/Nazi_Germany> } \"\n", + "SELECT DISTINCT?uri WHERE {?uri dbo:state res:Nazi_Germany . }\n", + "\"Who were some governmental heads in Nazi Germany? | 'Nazi Germany'-res:Nazi_Germany | 'governmental heads'-dbo:state\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/state> <http://dbpedia.org/resource/Nazi_Germany> . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbo:doctoralAdvisor res:Mary_Ainsworth.?uri dbp:doctoralStudents res:Scientist } \n", - "\"Name all the doctoral student of the scientist who also supervised Mary Ainsworth ? | 'scientist'-res:Scientist_(musician) | 'Mary Ainsworth'-res:Mary_Ainsworth | 'name'-dbp:name | 'doctoral student'-dbo:doctoralAdvisor | 'supervised'-dbo:doctoralAdvisor\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/doctoralAdvisor> <http://dbpedia.org/resource/Mary_Ainsworth> . ?uri <http://dbpedia.org/property/doctoralStudents> <http://dbpedia.org/resource/Scientist> } \"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:doctoralAdvisor res:Mary_Ainsworth .?uri rdf:type dbo:Scientist}\n", + "\"Name all the doctoral student of the scientist who also supervised Mary Ainsworth ? | 'scientist'-res:Scientist_(musician) | 'Mary Ainsworth'-res:Mary_Ainsworth | 'name'-dbp:name | 'doctoral student'-dbo:doctoralAdvisor | 'supervised'-dbo:doctoralAdvisor\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/doctoralAdvisor> <http://dbpedia.org/resource/Mary_Ainsworth> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:cities res:Europe .?uri rdf:type dbo:Sea}\n", - "\"What are some seas inside europe ? | 'seas'-dbo:vein | 'europe'-dbo:winsInEurope\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/cities> <http://dbpedia.org/resource/Europe> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Sea>}\"\n", + " SELECT DISTINCT?uri WHERE {?uri dbp:placeOfBirth res:Europe } \n", + "\"What are some seas inside europe ? | 'seas'-dbo:vein | 'europe'-dbo:winsInEurope\",\" SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/placeOfBirth> <http://dbpedia.org/resource/Europe> } \"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:2008_Summer_Olympics dbp:bronzesMedley?uri } \n", - "\"Who was the bronze medalist of Swimming at the 2008 Summer Olympics Men's 400 metre individual medley ? | 'Swimming at the 2008 Summer Olympics Men'-res:Swimming_at_the_2008_Summer_Olympics | '400 metre individual medley'-res:2010_Pan_Pacific_Swimming_Championships_–_Women's_400_metre_individual_medley\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/2008_Summer_Olympics> <http://dbpedia.org/property/bronzesMedley> ?uri } \"\n", + " SELECT DISTINCT?uri WHERE { res:2008_Summer_Olympics_–_Women's_400_metre_individual_medley dbp:silverMedley?uri } \n", + "\"Who was the bronze medalist of Swimming at the 2008 Summer Olympics Men's 400 metre individual medley ? | 'Swimming at the 2008 Summer Olympics Men'-res:Swimming_at_the_2008_Summer_Olympics | '400 metre individual medley'-res:2010_Pan_Pacific_Swimming_Championships_–_Women's_400_metre_individual_medley\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/2008_Summer_Olympics_–_Women's_400_metre_individual_medley> <http://dbpedia.org/property/silverMedley> ?uri } \"\n", "\n", "SELECT DISTINCT?uri WHERE {?uri dbo:doctoralStudent res:Étienne_(film) . }\n", "\"Whose doctoral student is etienne bieler\\xc9tienne_Bi\\xe9ler | 'Etienne bielerxc9tienne_bixe9ler'-res:Étienne_(film) | 'doctoral student'-dbo:doctoralStudent\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/doctoralStudent> <http://dbpedia.org/resource/Étienne_(film)> . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:engine res:BMW_M10.?x dbo:successor?uri . }\n", - "\"Which engine's successor's predecessor is BMW M10? | 'BMW M10'-res:BMW_M10 | 'engine'-dbp:engine | 'successor'-dbo:successor | 'predecessor'-dbo:predecessor\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/engine> <http://dbpedia.org/resource/BMW_M10> . ?x <http://dbpedia.org/ontology/successor> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:predecessor res:BMW_M10.?x dbp:engine?uri . }\n", + "\"Which engine's successor's predecessor is BMW M10? | 'BMW M10'-res:BMW_M10 | 'engine'-dbp:engine | 'successor'-dbo:successor | 'predecessor'-dbo:predecessor\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/predecessor> <http://dbpedia.org/resource/BMW_M10> . ?x <http://dbpedia.org/property/engine> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Macintosh_Quadra_660AV dbo:operatingSystem?x.?x dbp:developer?uri . }\n", - "\"Who developed the software for the operating system of Macintosh Quadra 660AV ? | 'software'-res:Software_Publishing_Corporation | '660AV'-res:Macintosh_Quadra_660AV | 'Macintosh Quadra'-res:Macintosh_Quadra | 'developed'-dbo:developer | 'operating'-dbo:operatingSystem\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Macintosh_Quadra_660AV> <http://dbpedia.org/ontology/operatingSystem> ?x . ?x <http://dbpedia.org/property/developer> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:operatingSystem res:Macintosh_Quadra_660AV .?uri rdf:type dbo:Software}\n", + "\"Who developed the software for the operating system of Macintosh Quadra 660AV ? | 'software'-res:Software_Publishing_Corporation | '660AV'-res:Macintosh_Quadra_660AV | 'Macintosh Quadra'-res:Macintosh_Quadra | 'developed'-dbo:developer | 'operating'-dbo:operatingSystem\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/operatingSystem> <http://dbpedia.org/resource/Macintosh_Quadra_660AV> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Software>}\"\n", "\n", - " SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:guests res:Brian_d'Arcy_James } \n", - "\"How many other Guests are there of the television episodes whose Guests is Brian d'Arcy James ? | 'Brian d'Arcy James'-res:Brian_d'Arcy_James | 'Guests'-dbp:guests | 'Guests'-dbp:guests\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/guests> <http://dbpedia.org/resource/Brian_d'Arcy_James> } \"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:guests res:Brian_d'Arcy_James .?uri rdf:type dbo:TelevisionShow}\n", + "\"How many other Guests are there of the television episodes whose Guests is Brian d'Arcy James ? | 'Brian d'Arcy James'-res:Brian_d'Arcy_James | 'Guests'-dbp:guests | 'Guests'-dbp:guests\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/guests> <http://dbpedia.org/resource/Brian_d'Arcy_James> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:He's_a_Pirate dbo:writer?uri } \n", "\"Who is the writer of He's a Pirate ? | 'He's a Pirate'-res:He's_a_Pirate | 'writer'-dbo:writer\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/He's_a_Pirate> <http://dbpedia.org/ontology/writer> ?uri } \"\n", @@ -1887,86 +1631,86 @@ "SELECT DISTINCT?uri WHERE {?x dbo:recordLabel res:RCA_Records.?uri dbp:musicComposer?x . }\n", "\"Which movies have their music composed by someone that signed up with RCA Records? | 'RCA Records'-res:RCA_Records | 'movies'-dbo:film | 'music'-dbo:musicFusionGenre | 'composed'-dbo:musicComposer | 'signed'-dbo:precursor\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/recordLabel> <http://dbpedia.org/resource/RCA_Records> . ?uri <http://dbpedia.org/property/musicComposer> ?x . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:compiler res:Stephen_Law .?uri rdf:type dbo:PhilosophyJournal}\n", - "\"Which philosophy journal has compiler as Stephen Law ? | 'Stephen Law'-res:Stephen_Law | 'philosophy'-res:Philosophy | 'philosophy journal'-dbo:magazine | 'compiler'-dbo:compiler\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/compiler> <http://dbpedia.org/resource/Stephen_Law> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/PhilosophyJournal>}\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:compiler res:Stephen_Law .?uri rdf:type dbo:Philosophy}\n", + "\"Which philosophy journal has compiler as Stephen Law ? | 'Stephen Law'-res:Stephen_Law | 'philosophy'-res:Philosophy | 'philosophy journal'-dbo:magazine | 'compiler'-dbo:compiler\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/compiler> <http://dbpedia.org/resource/Stephen_Law> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Philosophy>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:lastAppearance res:The_Avengers_(1998_film).?x dbp:birthPlace?uri . }\n", - "\"Where is the fictional character from, whose last appearance was in the Avengers, 1998? | 'fictional character from,'-res:Orange_(Fictional_character) | 'Avengers, 1998'-res:The_Avengers_(1998_film) | 'appearance'-dbo:lastAppearance\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/lastAppearance> <http://dbpedia.org/resource/The_Avengers_(1998_film)> . ?x <http://dbpedia.org/property/birthPlace> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:lastAppearance res:The_Avengers_(1998_film) .?uri rdf:type dbo:FictionalCharacter}\n", + "\"Where is the fictional character from, whose last appearance was in the Avengers, 1998? | 'fictional character from,'-res:Orange_(Fictional_character) | 'Avengers, 1998'-res:The_Avengers_(1998_film) | 'appearance'-dbo:lastAppearance\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/lastAppearance> <http://dbpedia.org/resource/The_Avengers_(1998_film)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/FictionalCharacter>}\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Palang_Dharma_Party dbp:party?uri. res:Miao dbo:religion?uri} \n", - "\"Which idelogy of the Palang Dharma Party is also the faith of Miao people ? | 'idelogy'-res:Ideology | 'Palang Dharma Party'-res:Palang_Dharma_Party | 'Miao'-res:Miao | 'faith'-dbo:denomination\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Palang_Dharma_Party> <http://dbpedia.org/property/party> ?uri . <http://dbpedia.org/resource/Miao> <http://dbpedia.org/ontology/religion> ?uri} \"\n", + " SELECT DISTINCT?uri WHERE { res:Palang_Dharma_Party dbp:ideology?uri. res:Miao dbo:denomination?uri} \n", + "\"Which idelogy of the Palang Dharma Party is also the faith of Miao people ? | 'idelogy'-res:Ideology | 'Palang Dharma Party'-res:Palang_Dharma_Party | 'Miao'-res:Miao | 'faith'-dbo:denomination\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Palang_Dharma_Party> <http://dbpedia.org/property/ideology> ?uri . <http://dbpedia.org/resource/Miao> <http://dbpedia.org/ontology/denomination> ?uri} \"\n", "\n", "SELECT DISTINCT?uri WHERE {?uri dbp:producer res:Michael_Deeley .?uri rdf:type dbo:Film}\n", "\"List the movies produced by Michael Deeley ? | 'Michael Deeley'-res:Michael_Deeley | 'produced'-dbo:producer | 'movie'-dbo:Film\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/producer> <http://dbpedia.org/resource/Michael_Deeley> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}\"\n", "\n", - " SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:deputy res:Jenny_Macklin.?uri dbo:predecessor?x }\n", - "\"What is the total number of politicians whose predecessor's deputy is Jenny Macklin? | 'politicians'-res:Politicians_of_The_Wire | 'Jenny Macklin'-res:Jenny_Macklin | 'total'-dbo:populationTotal | 'predecessor'-dbo:predecessor | 'deputy'-dbo:deputy\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/deputy> <http://dbpedia.org/resource/Jenny_Macklin> . ?uri <http://dbpedia.org/ontology/predecessor> ?x }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:predecessor res:Jenny_Macklin .?uri rdf:type dbo:Politician}\n", + "\"What is the total number of politicians whose predecessor's deputy is Jenny Macklin? | 'politicians'-res:Politicians_of_The_Wire | 'Jenny Macklin'-res:Jenny_Macklin | 'total'-dbo:populationTotal | 'predecessor'-dbo:predecessor | 'deputy'-dbo:deputy\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/predecessor> <http://dbpedia.org/resource/Jenny_Macklin> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Politician>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:athletics res:Taekwondo.?x rdf:type dbo:University}\n", - "\"What are the sports played by the universities who also plays taekwondo ? | 'universities'-res:Universities_Ireland | 'taekwondo'-res:Taekwondo | 'sports'-dbo:sport | 'played'-dbo:portrayer | 'plays'-dbo:plays\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/athletics> <http://dbpedia.org/resource/Taekwondo> . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/University>}\"\n", + " SELECT DISTINCT?uri WHERE { res:Taekwondo dbp:athletics?uri } \n", + "\"What are the sports played by the universities who also plays taekwondo ? | 'universities'-res:Universities_Ireland | 'taekwondo'-res:Taekwondo | 'sports'-dbo:sport | 'played'-dbo:portrayer | 'plays'-dbo:plays\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Taekwondo> <http://dbpedia.org/property/athletics> ?uri } \"\n", "\n", "SELECT DISTINCT?uri WHERE {?uri dbp:placeofburial res:Arlington_National_Cemetery . }\n", "\"Who all are buried in Arlington national cementary? | 'Arlington national cementary'-res:Arlington_National_Cemetery | 'buried'-dbp:placeofburial\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/placeofburial> <http://dbpedia.org/resource/Arlington_National_Cemetery> . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:instruments res:Drums_Around_the_World.?x dbo:genre?uri . }\n", - "\"How many different genres led to other genres where drums are important? | 'drums'-res:Drums_Around_the_World | 'genres'-dbo:genre | 'led'-dbo:field | 'genres'-dbo:genre\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/instruments> <http://dbpedia.org/resource/Drums_Around_the_World> . ?x <http://dbpedia.org/ontology/genre> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:notableInstruments res:Drums.?x dbo:genre?uri . }\n", + "\"How many different genres led to other genres where drums are important? | 'drums'-res:Drums_Around_the_World | 'genres'-dbo:genre | 'led'-dbo:field | 'genres'-dbo:genre\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/notableInstruments> <http://dbpedia.org/resource/Drums> . ?x <http://dbpedia.org/ontology/genre> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Guy_(band) dbo:bandMember?x.?x dbp:associatedBand?uri . }\n", - "\"List all the bands which have members of the band Guy in them? | 'Guy'-res:Guy_(band) | 'members'-dbo:bandMember | 'band'-dbo:associatedBand\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Guy_(band)> <http://dbpedia.org/ontology/bandMember> ?x . ?x <http://dbpedia.org/property/associatedBand> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:bandMember res:Guy_(band).?x dbp:associatedBand?uri . }\n", + "\"List all the bands which have members of the band Guy in them? | 'Guy'-res:Guy_(band) | 'members'-dbo:bandMember | 'band'-dbo:associatedBand\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/bandMember> <http://dbpedia.org/resource/Guy_(band)> . ?x <http://dbpedia.org/property/associatedBand> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:kingdom res:Queen_Noor_of_Jordan.?x dbp:leaderName?uri . }\n", - "\"Name presidents of the schools which have queen noor of Jordan as one of them ? | 'queen noor of Jordan'-res:Queen_Noor_of_Jordan | 'name presidents'-dbo:leaderName | 'schools'-dbo:ground | 'queen'-dbo:leader | 'noor'-dbo:chain\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/kingdom> <http://dbpedia.org/resource/Queen_Noor_of_Jordan> . ?x <http://dbpedia.org/property/leaderName> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:headquarters res:Queen_Noor_of_Jordan.?x dbp:president?uri . }\n", + "\"Name presidents of the schools which have queen noor of Jordan as one of them ? | 'queen noor of Jordan'-res:Queen_Noor_of_Jordan | 'name presidents'-dbo:leaderName | 'schools'-dbo:ground | 'queen'-dbo:leader | 'noor'-dbo:chain\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/headquarters> <http://dbpedia.org/resource/Queen_Noor_of_Jordan> . ?x <http://dbpedia.org/property/president> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbo:televisionSeries res:NTSC.?uri dbp:subsequentWork res:5.1_cinematography res:Surround_sound . }\n", - "\"What are the television shows which are in NTSC and 5.1 surround sound? | 'NTSC'-res:NTSC | '51 surround sound'-res:Surround_sound | 'television shows'-dbo:televisionSeries\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/televisionSeries> <http://dbpedia.org/resource/NTSC> . ?uri <http://dbpedia.org/property/subsequentWork> <http://dbpedia.org/resource/5.1_cinematography> <http://dbpedia.org/resource/Surround_sound> . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbo:televisionSeries res:NTSC.?uri dbp:cinematography res:5.1_ surround_sound . }\n", + "\"What are the television shows which are in NTSC and 5.1 surround sound? | 'NTSC'-res:NTSC | '51 surround sound'-res:Surround_sound | 'television shows'-dbo:televisionSeries\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/televisionSeries> <http://dbpedia.org/resource/NTSC> . ?uri <http://dbpedia.org/property/cinematography> <http://dbpedia.org/resource/5.1_> surround_sound . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Kala_Pani_(1958_film) dbo:director?x.?x dbp:deathPlace?uri . }\n", - "\"Where did the film director of Kala Pani die? | 'Kala Pani'-res:Kala_Pani_(1958_film) | 'film director'-dbo:director | 'die'-dbo:deathDate\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kala_Pani_(1958_film)> <http://dbpedia.org/ontology/director> ?x . ?x <http://dbpedia.org/property/deathPlace> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Kala_Pani_(1958_film) dbo:director?x.?x dbp:placeOfDeath?uri . }\n", + "\"Where did the film director of Kala Pani die? | 'Kala Pani'-res:Kala_Pani_(1958_film) | 'film director'-dbo:director | 'die'-dbo:deathDate\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kala_Pani_(1958_film)> <http://dbpedia.org/ontology/director> ?x . ?x <http://dbpedia.org/property/placeOfDeath> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:hairColor res:Red_hair.?x dbp:deathPlace?uri . }\n", - "\"What are the death place of the models whose hair color was Red? | 'hair red'-res:Red_hair | 'death place'-dbp:deathPlace | 'models'-dbo:genre | 'hair color'-dbp:hairColor\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/hairColor> <http://dbpedia.org/resource/Red_hair> . ?x <http://dbpedia.org/property/deathPlace> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:hairColor res:Red_hair.?x dbo:deathPlace?uri . }\n", + "\"What are the death place of the models whose hair color was Red? | 'hair red'-res:Red_hair | 'death place'-dbp:deathPlace | 'models'-dbo:genre | 'hair color'-dbp:hairColor\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/hairColor> <http://dbpedia.org/resource/Red_hair> . ?x <http://dbpedia.org/ontology/deathPlace> ?uri . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:militaryUnit res:Second_Lieutenant.?x dbo:religion?uri . }\n", - "\"Count the different religions followed by Second Lieutenants in military. | 'Second Lieutenants'-res:Per_Second,_Per_Second,_Per_Second..._Every_Second | 'count'-dbo:type | 'religions'-dbo:religion | 'military'-dbo:militaryUnitSize\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/militaryUnit> <http://dbpedia.org/resource/Second_Lieutenant> . ?x <http://dbpedia.org/ontology/religion> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:militaryUnit res:Second_Lieutenants.?x dbp:religion?uri . }\n", + "\"Count the different religions followed by Second Lieutenants in military. | 'Second Lieutenants'-res:Per_Second,_Per_Second,_Per_Second..._Every_Second | 'count'-dbo:type | 'religions'-dbo:religion | 'military'-dbo:militaryUnitSize\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/militaryUnit> <http://dbpedia.org/resource/Second_Lieutenants> . ?x <http://dbpedia.org/property/religion> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:owningOrganisation res:Public_Transport_Authority_(Western_Australia).?x dbp:servingRailwayLine?uri . }\n", - "\"What railway lines go through the stations maintained by Western Australian Public Transport Authority? | 'Western Australian Public Transport Authority'-res:Public_Transport_Authority_(Western_Australia) | 'railway lines'-dbo:lyrics | 'stations'-dbo:numberOfStations | 'maintained'-dbo:maintainedBy\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/owningOrganisation> <http://dbpedia.org/resource/Public_Transport_Authority_(Western_Australia)> . ?x <http://dbpedia.org/property/servingRailwayLine> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:maintainedBy res:Public_Transport_Authority_(Western_Australia).?x dbp:railway lines?uri . }\n", + "\"What railway lines go through the stations maintained by Western Australian Public Transport Authority? | 'Western Australian Public Transport Authority'-res:Public_Transport_Authority_(Western_Australia) | 'railway lines'-dbo:lyrics | 'stations'-dbo:numberOfStations | 'maintained'-dbo:maintainedBy\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/maintainedBy> <http://dbpedia.org/resource/Public_Transport_Authority_(Western_Australia)> . ?x <http://dbpedia.org/property/railway> lines ?uri . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:foundationPlace res:United_States.?x dbp:publisher?uri . }\n", - "\"How many publisher have been founded by american citizens? | 'publisher'-dbo:publisher | 'founded'-dbo:foundationPlace | 'american citizens'-dbo:country\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/foundationPlace> <http://dbpedia.org/resource/United_States> . ?x <http://dbpedia.org/property/publisher> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:nationality res:American_citizens.?uri dbp:publisher?x . }\n", + "\"How many publisher have been founded by american citizens? | 'publisher'-dbo:publisher | 'founded'-dbo:foundationPlace | 'american citizens'-dbo:country\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/nationality> <http://dbpedia.org/resource/American_citizens> . ?uri <http://dbpedia.org/property/publisher> ?x . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:inflow res:Upper_Npper_Vodka.?x dbo:cities?uri .?uri rdf:type Dbo:Sea}\n", - "\"How many countries surround the sea into which the Upper Neratva flow? | 'countries'-res:Countries_of_the_United_Kingdom | 'Upper Neratva'-res:Iveagh_Upper,_Upper_Half | 'surround'-dbo:background | 'sea'-dbo:elevation | 'flow'-dbp:time\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/inflow> <http://dbpedia.org/resource/Upper_Npper_Vodka> . ?x <http://dbpedia.org/ontology/cities> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> Dbo:Sea}\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:inflow res:Upper_Half.?x dbp:cities?uri . }\n", + "\"How many countries surround the sea into which the Upper Neratva flow? | 'countries'-res:Countries_of_the_United_Kingdom | 'Upper Neratva'-res:Iveagh_Upper,_Upper_Half | 'surround'-dbo:background | 'sea'-dbo:elevation | 'flow'-dbp:time\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/inflow> <http://dbpedia.org/resource/Upper_Half> . ?x <http://dbpedia.org/property/cities> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:stateOfOrigin res:Swedish.?x dbo:knownFor?uri . }\n", - "\"List some things that Swedish people have become famous for? | 'Swedish'-res:Sweden | 'Swedish'-res:Swedish | 'famous'-dbo:established | ''-dbo:country | ''-dbo:country\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/stateOfOrigin> <http://dbpedia.org/resource/Swedish> . ?x <http://dbpedia.org/ontology/knownFor> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:nationality res:Swedish.?uri dbp:notableInArea?x . }\n", + "\"List some things that Swedish people have become famous for? | 'Swedish'-res:Sweden | 'Swedish'-res:Swedish | 'famous'-dbo:established | ''-dbo:country | ''-dbo:country\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/nationality> <http://dbpedia.org/resource/Swedish> . ?uri <http://dbpedia.org/property/notableInArea> ?x . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:artist res:Muse_d'Orsay.?x dbo:artist?uri . }\n", - "\"How many artists' works are in Muse d'Orsay? | 'Muse d'-res:Muse_discography | 'artists'-dbo:artist | 'works'-dbo:language\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/artist> <http://dbpedia.org/resource/Muse_d'Orsay> . ?x <http://dbpedia.org/ontology/artist> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:artist res:Muse_discography.?uri dbp:artist?x . }\n", + "\"How many artists' works are in Muse d'Orsay? | 'Muse d'-res:Muse_discography | 'artists'-dbo:artist | 'works'-dbo:language\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/artist> <http://dbpedia.org/resource/Muse_discography> . ?uri <http://dbpedia.org/property/artist> ?x . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:location res:Herzogenaurach .?uri rdf:type dbo:Sport}\n", - "\"What sporting goods companies are located in Herzogenaurach? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'Herzogenaurach'-res:Herzogenaurach | 'located'-dbo:location\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/location> <http://dbpedia.org/resource/Herzogenaurach> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Sport>}\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:location res:Herzogenaurach .?uri rdf:type dbo:Company}\n", + "\"What sporting goods companies are located in Herzogenaurach? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'Herzogenaurach'-res:Herzogenaurach | 'located'-dbo:location\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/location> <http://dbpedia.org/resource/Herzogenaurach> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE { res:Lawrence_Realization_Stakes dbp:name?x.?x dbo:award?uri . }\n", - "\"How many awards have been given to the participants of the Lawrence Realization Stakes? | 'Lawrence Realization Stakes'-res:Lawrence_Realization_Stakes | 'awards'-dbo:award | 'participants'-dbo:participant\",\"SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Lawrence_Realization_Stakes> <http://dbpedia.org/property/name> ?x . ?x <http://dbpedia.org/ontology/award> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE { res:Lawrence_Realization_Stakes dbp:race?x.?x dbo:award?uri . }\n", + "\"How many awards have been given to the participants of the Lawrence Realization Stakes? | 'Lawrence Realization Stakes'-res:Lawrence_Realization_Stakes | 'awards'-dbo:award | 'participants'-dbo:participant\",\"SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Lawrence_Realization_Stakes> <http://dbpedia.org/property/race> ?x . ?x <http://dbpedia.org/ontology/award> ?uri . }\"\n", "\n", "SELECT DISTINCT?uri WHERE {?uri dbo:editing res:Mark_Stevens.?uri dbp:director res:Joel_Schumacher . }\n", "\"List the work edited by Mark Stevens and directed by Joel Schumacher? | 'Mark Stevens'-res:Mark_Stevens | 'Joel Schumacher'-res:Joel_Schumacher | 'work'-dbo:title | 'edited'-dbo:editor | 'directed'-dbo:president\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/editing> <http://dbpedia.org/resource/Mark_Stevens> . ?uri <http://dbpedia.org/property/director> <http://dbpedia.org/resource/Joel_Schumacher> . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Luther:_The_Calling dbo:author?x. }\n", - "\"List the popular works of the author of Luther: The Calling ? | 'Luther: The Calling'-res:Luther:_The_Calling | 'popular works'-dbo:established | 'author'-dbo:author\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Luther:_The_Calling> <http://dbpedia.org/ontology/author> ?x . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:author res:Luther:_The_Calling.?x dbo:author?uri . }\n", + "\"List the popular works of the author of Luther: The Calling ? | 'Luther: The Calling'-res:Luther:_The_Calling | 'popular works'-dbo:established | 'author'-dbo:author\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/author> <http://dbpedia.org/resource/Luther:_The_Calling> . ?x <http://dbpedia.org/ontology/author> ?uri . }\"\n", "\n", "SELECT DISTINCT?uri WHERE {?uri dbp:mainInterests res:Natural_philosophy .?uri rdf:type dbo:Philosopher}\n", "\"Which were the philosophers whose primary interest was Natural philosophy? | 'Philosophers'-res:Philosophers_Ridge | 'Natural philosophy'-res:Natural_philosophy | 'interest'-dbp:mainInterests | 'philosopher'-dbo:Philosopher\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/mainInterests> <http://dbpedia.org/resource/Natural_philosophy> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Philosopher>}\"\n", "\n", - " SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:restingPlace res:East_Norwalk_Historical_Cemetery.?x dbp:residence?uri }\n", - "\"What is the total number of other restingplace of the politicians whose one of the restingplace is East Norwalk Historical Cemetery? | 'politicians'-res:Politicians_of_The_Wire | 'East Norwalk Historical Cemetery'-res:East_Norwalk_Historical_Cemetery | 'total'-dbo:populationTotal | 'restingplace'-dbo:restingPlace | 'restingplace'-dbo:restingPlace\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/restingPlace> <http://dbpedia.org/resource/East_Norwalk_Historical_Cemetery> . ?x <http://dbpedia.org/property/residence> ?uri }\"\n", + " SELECT DISTINCT COUNT(?uri) WHERE {?x .?x rdf:type dbo:OfficeHolder}\n", + "\"What is the total number of other restingplace of the politicians whose one of the restingplace is East Norwalk Historical Cemetery? | 'politicians'-res:Politicians_of_The_Wire | 'East Norwalk Historical Cemetery'-res:East_Norwalk_Historical_Cemetery | 'total'-dbo:populationTotal | 'restingplace'-dbo:restingPlace | 'restingplace'-dbo:restingPlace\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?x . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/OfficeHolder>}\"\n", "\n", "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:label res:Victor_Entertainment .?uri rdf:type dbo:Album}\n", "\"How many albums were released under the Victor Entertainment label? | 'Victor Entertainment label'-res:Victor_Entertainment | 'label'-dbp:label | 'album'-dbo:Album\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Victor_Entertainment> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Album>}\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?uriveneratedIn res:Judaism .?uri rdf:type dbo:Saint}\n", - "\"How many saints have been venerated in Judaism? | 'Judaism'-res:Judaism | 'venerated in'-dbo:veneratedIn | 'saint'-dbo:Saint\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uriveneratedIn <http://dbpedia.org/resource/Judaism> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Saint>}\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:veneratedIn res:Judaism .?uri rdf:type dbo:Saint}\n", + "\"How many saints have been venerated in Judaism? | 'Judaism'-res:Judaism | 'venerated in'-dbo:veneratedIn | 'saint'-dbo:Saint\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/veneratedIn> <http://dbpedia.org/resource/Judaism> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Saint>}\"\n", "\n", "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbo:notableWork res:Gibson_Les_Paul . }\n", "\"How many people are famous for the Gibson Les Paul? | 'Gibson Les Paul'-res:Gibson_Les_Paul | 'famous'-dbo:established\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/notableWork> <http://dbpedia.org/resource/Gibson_Les_Paul> . }\"\n", @@ -1974,20 +1718,20 @@ "SELECT DISTINCT?uri WHERE {?uri dbp:phylum res:Chordate .?uri rdf:type dbo:Mammal}\n", "\"What are the mammals whose phylum is Chordate? | 'mammals'-res:Mammals_of_the_Indiana_Dunes | 'Chordate'-res:Chordate | 'phylum'-dbo:phylum\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/phylum> <http://dbpedia.org/resource/Chordate> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Mammal>}\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Carolyn_Dennis dbo:associatedMusicalArtist?uri } \n", - "\"Who are the associated musical artist of Carolyn Dennis? | 'associated musical artist'-res:Ayala_(musical_artist) | 'Carolyn Dennis'-res:Carolyn_Dennis | 'associated musical artist'-dbo:associatedMusicalArtist\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Carolyn_Dennis> <http://dbpedia.org/ontology/associatedMusicalArtist> ?uri } \"\n", + "SELECT DISTINCT?uri WHERE {?uri dbo:associatedMusicalArtist res:Carolyn_Dennis . }\n", + "\"Who are the associated musical artist of Carolyn Dennis? | 'associated musical artist'-res:Ayala_(musical_artist) | 'Carolyn Dennis'-res:Carolyn_Dennis | 'associated musical artist'-dbo:associatedMusicalArtist\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/associatedMusicalArtist> <http://dbpedia.org/resource/Carolyn_Dennis> . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:ground res:Rosario_Fé,_Paraná.?uri dbo:youthclubs?x . }\n", - "\"Count all those who've played for the youth club which owns the Rosario, Santa Fe stadium. | 'Rosario, Santa Fe stadium'-res:Santa_Fé,_Paraná | 'count'-dbo:country | 'played'-dbo:portrayer | 'youth club'-dbo:time | 'owns'-dbo:languageFamily\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/ground> <http://dbpedia.org/resource/Rosario_Fé,_Paraná> . ?uri <http://dbpedia.org/ontology/youthclubs> ?x . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:ground res:Rosario.?uri dbp:youthclubs?x . }\n", + "\"Count all those who've played for the youth club which owns the Rosario, Santa Fe stadium. | 'Rosario, Santa Fe stadium'-res:Santa_Fé,_Paraná | 'count'-dbo:country | 'played'-dbo:portrayer | 'youth club'-dbo:time | 'owns'-dbo:languageFamily\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/ground> <http://dbpedia.org/resource/Rosario> . ?uri <http://dbpedia.org/property/youthclubs> ?x . }\"\n", "\n", "SELECT DISTINCT?uri WHERE {?uri dbp:company res:Playtone .?uri rdf:type dbo:TelevisionShow}\n", "\"What are the television shows whose company is Playtone? | 'Playtone'-res:Playtone | 'company'-dbo:company | 'television show'-dbo:TelevisionShow\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/company> <http://dbpedia.org/resource/Playtone> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:county res:Dane_County,_Wisconsin.?uri dbp:restingplace?x . }\n", - "\"Whose tomb is in cities under Dane County of Wisconsin? | 'Dane County of Wisconsin'-res:Dane_County,_Wisconsin | 'tomb'-dbo:race | 'cities'-dbo:country | ''-dbo:country\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/county> <http://dbpedia.org/resource/Dane_County,_Wisconsin> . ?uri <http://dbpedia.org/property/restingplace> ?x . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:county res:Wisconsin.?x dbp:restingplace?uri . }\n", + "\"Whose tomb is in cities under Dane County of Wisconsin? | 'Dane County of Wisconsin'-res:Dane_County,_Wisconsin | 'tomb'-dbo:race | 'cities'-dbo:country | ''-dbo:country\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/county> <http://dbpedia.org/resource/Wisconsin> . ?x <http://dbpedia.org/property/restingplace> ?uri . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:publisher res:SAGE.?x dbo:academicArea?uri . }\n", - "\"Count the different number of academic areas covered by publications of SAGE? | 'SAGE'-res:Sage_Business_Solutions | 'count'-dbo:type | 'academic'-dbo:abstract | 'covered'-dbo:frozen | 'publications'-dbp:publications\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/publisher> <http://dbpedia.org/resource/SAGE> . ?x <http://dbpedia.org/ontology/academicArea> ?uri . }\"\n", + " SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:publications res:SAGE.?x dbo:academicArea?uri }\n", + "\"Count the different number of academic areas covered by publications of SAGE? | 'SAGE'-res:Sage_Business_Solutions | 'count'-dbo:type | 'academic'-dbo:abstract | 'covered'-dbo:frozen | 'publications'-dbp:publications\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/publications> <http://dbpedia.org/resource/SAGE> . ?x <http://dbpedia.org/ontology/academicArea> ?uri }\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Pontiac_Building dbp:architecturalStyle?uri } \n", "\"What is the style of architecture of Pontiac Building ? | 'Pontiac Building'-res:Pontiac_Building | 'style'-dbo:type | 'architecture'-dbo:architecturalStyle\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pontiac_Building> <http://dbpedia.org/property/architecturalStyle> ?uri } \"\n", @@ -1998,17 +1742,17 @@ "SELECT DISTINCT?uri WHERE {?x dbp:restingPlace res:London.?x dbo:opponent?uri . }\n", "\"Who were the opponents of the people buried in the tower of London? | 'London'-res:London | 'opponents'-dbo:rival | 'buried'-dbo:flag | 'tower'-dbp:column\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/restingPlace> <http://dbpedia.org/resource/London> . ?x <http://dbpedia.org/ontology/opponent> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x rdf:type dbo:HistoricPlace}\n", - "\"What are the nearest city to the historic places whose one of the nearest city is Wisconsin? | 'historic places'-res:Heritage_New_Zealand | 'Wisconsin'-res:Wisconsin | 'nearest city'-dbo:nearestCity | 'nearest city'-dbo:nearestCity\",\"SELECT DISTINCT ?uri WHERE { ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/HistoricPlace>}\"\n", + "SELECT DISTINCT?uri WHERE {?x .?x rdf:type dbo:HistoricPlace}\n", + "\"What are the nearest city to the historic places whose one of the nearest city is Wisconsin? | 'historic places'-res:Heritage_New_Zealand | 'Wisconsin'-res:Wisconsin | 'nearest city'-dbo:nearestCity | 'nearest city'-dbo:nearestCity\",\"SELECT DISTINCT ?uri WHERE { ?x . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/HistoricPlace>}\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Captain_EO dbo:producer?uri } \n", "\"Who is the producer of Captain EO ? | 'Captain EO'-res:Captain_EO | 'producer'-dbo:producer\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Captain_EO> <http://dbpedia.org/ontology/producer> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:parent res:Maria_Ludwika_Krasińska.?x dbp:deathPlace?uri . }\n", - "\"Where did the aristocrats die whose mother was Maria Ludwika Krasiska? | 'aristocrats'-res:Aristocrats_(TV_series) | 'Maria Ludwika Krasiska'-res:Maria_Ludwika_Krasińska | 'die'-dbo:deathDate | 'mother'-dbo:parent\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/parent> <http://dbpedia.org/resource/Maria_Ludwika_Krasińska> . ?x <http://dbpedia.org/property/deathPlace> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:mother res:Maria_Ludwika_Krasińska.?x dbp:deathPlace?uri . }\n", + "\"Where did the aristocrats die whose mother was Maria Ludwika Krasiska? | 'aristocrats'-res:Aristocrats_(TV_series) | 'Maria Ludwika Krasiska'-res:Maria_Ludwika_Krasińska | 'die'-dbo:deathDate | 'mother'-dbo:parent\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/mother> <http://dbpedia.org/resource/Maria_Ludwika_Krasińska> . ?x <http://dbpedia.org/property/deathPlace> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:location res:Alcalá_de_Henares_Cathedral.?uri dbp:author?x . }\n", - "\"List the books whose authors are in Alcal de Henares. | 'Alcal de Henares'-res:Alcalá_de_Henares_Cathedral | 'books'-dbo:volume | 'authors'-dbo:parent\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/Alcalá_de_Henares_Cathedral> . ?uri <http://dbpedia.org/property/author> ?x . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:parent res:Alcalá_de_Henares_Cathedral.?x dbp:author?uri . }\n", + "\"List the books whose authors are in Alcal de Henares. | 'Alcal de Henares'-res:Alcalá_de_Henares_Cathedral | 'books'-dbo:volume | 'authors'-dbo:parent\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/parent> <http://dbpedia.org/resource/Alcalá_de_Henares_Cathedral> . ?x <http://dbpedia.org/property/author> ?uri . }\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Paphos_International_Airport dbp:owner?uri } \n", "\"Who is the stockholder of Paphos International Airport ? | 'Stockholder of Paphos International Airport'-res:Paphos_International_Airport | 'stockholder'-dbp:owner\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Paphos_International_Airport> <http://dbpedia.org/property/owner> ?uri } \"\n", @@ -2016,62 +1760,62 @@ "SELECT DISTINCT?uri WHERE {?x dbp:occupation res:Screenwriter.?x dbo:award?uri . }\n", "\"What awards have been given to some screenwriters? | 'screenwriters'-res:Screenwriter | 'awards'-dbo:award\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/occupation> <http://dbpedia.org/resource/Screenwriter> . ?x <http://dbpedia.org/ontology/award> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:majorShrine res:Tomb_of_Joshua .?uri rdf:type dbo:Saint}\n", - "\"List the saints venerated in Islam having major shrine as Tomb of Joshua ? | 'Islam'-res:Islam | 'Tomb of Joshua'-res:Tomb_of_Joshua | 'saints'-dbo:saint | 'venerated'-dbo:veneratedIn | 'major shrine'-dbo:majorShrine\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/majorShrine> <http://dbpedia.org/resource/Tomb_of_Joshua> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Saint>}\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:veneratedIn res:Joshua .?uri rdf:type dbo:Saint}\n", + "\"List the saints venerated in Islam having major shrine as Tomb of Joshua ? | 'Islam'-res:Islam | 'Tomb of Joshua'-res:Tomb_of_Joshua | 'saints'-dbo:saint | 'venerated'-dbo:veneratedIn | 'major shrine'-dbo:majorShrine\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/veneratedIn> <http://dbpedia.org/resource/Joshua> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Saint>}\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Ramiro_Peña dbo:team?uri } \n", "\"For which team does Ramiro Pea play ? | 'Ramiro Pea'-res:Ramiro_Peña | 'team'-dbo:team | 'play'-dbo:team\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ramiro_Peña> <http://dbpedia.org/ontology/team> ?uri } \"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:literaryGenre res:Fantasy.?x dbp:subject?uri . }\n", - "\"How many subjects have been covered in fantasy novels? | 'fantasy novels'-res:Fantasy | 'subjects'-dbp:subject | 'covered'-dbo:frozen\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/literaryGenre> <http://dbpedia.org/resource/Fantasy> . ?x <http://dbpedia.org/property/subject> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:literaryGenre res:Fantasy.?x dbo:subject?uri . }\n", + "\"How many subjects have been covered in fantasy novels? | 'fantasy novels'-res:Fantasy | 'subjects'-dbp:subject | 'covered'-dbo:frozen\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/literaryGenre> <http://dbpedia.org/resource/Fantasy> . ?x <http://dbpedia.org/ontology/subject> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Thanong_Bidaya dbp:primeminister?uri } \n", - "\"Which country did the prime minister belong to who was served by Thanong Bidaya ? | 'Thanong Bidaya'-res:Thanong_Bidaya | 'minister prime'-dbp:primeminister | 'country'-dbo:nationality\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Thanong_Bidaya> <http://dbpedia.org/property/primeminister> ?uri } \"\n", + " SELECT DISTINCT?uri WHERE { res:Thanong_Bidaya dbp:primeminister?uri } \n", + "\"Which country did the prime minister belong to who was served by Thanong Bidaya ? | 'Thanong Bidaya'-res:Thanong_Bidaya | 'minister prime'-dbp:primeminister | 'country'-dbo:nationality\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Thanong_Bidaya> <http://dbpedia.org/property/primeminister> ?uri } \"\n", "\n", - " SELECT DISTINCT?uri WHERE {?uri dbo:school res:Cyril_Hume } \n", - "\"tell me the school to which Cyril Hume went? | 'Cyril Hume'-res:Cyril_Hume | 'school'-dbo:school\",\" SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/school> <http://dbpedia.org/resource/Cyril_Hume> } \"\n", + " SELECT DISTINCT?uri WHERE { res:Cyril_Hume dbo:school?uri } \n", + "\"tell me the school to which Cyril Hume went? | 'Cyril Hume'-res:Cyril_Hume | 'school'-dbo:school\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cyril_Hume> <http://dbpedia.org/ontology/school> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Me_And_My_Arrow dbo:composer?x.?x dbp:music?uri . }\n", - "\"Who is the singer of the album which has a song Me and My arrow ? | 'song Me'-res:Me_&_U_(song) | 'My arrow'-res:Me_And_My_Arrow | 'singer'-dbo:composer | 'album'-dbo:album\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Me_And_My_Arrow> <http://dbpedia.org/ontology/composer> ?x . ?x <http://dbpedia.org/property/music> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Me_&_U_(song) dbo:album?x.?x dbp:artist?uri . }\n", + "\"Who is the singer of the album which has a song Me and My arrow ? | 'song Me'-res:Me_&_U_(song) | 'My arrow'-res:Me_And_My_Arrow | 'singer'-dbo:composer | 'album'-dbo:album\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Me_&_U_(song)> <http://dbpedia.org/ontology/album> ?x . ?x <http://dbpedia.org/property/artist> ?uri . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:architecturalStyle res:Modern_Architectural_Building.?x dbp:destination?uri . }\n", - "\"In how many different places can I fnd Modern Architectural buildings? | 'I'-res:I | 'Modern Architectural buildings'-res:Architectural_Digest | 'places'-dbp:height | 'fnd'-dbo:destination\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/architecturalStyle> <http://dbpedia.org/resource/Modern_Architectural_Building> . ?x <http://dbpedia.org/property/destination> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:architectural_Digest.?x dbo:destination?uri . }\n", + "\"In how many different places can I fnd Modern Architectural buildings? | 'I'-res:I | 'Modern Architectural buildings'-res:Architectural_Digest | 'places'-dbp:height | 'fnd'-dbo:destination\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/architectural_Digest> . ?x <http://dbpedia.org/ontology/destination> ?uri . }\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Parliament_Security_Services dbp:houses?uri } \n", "\"What are the houses of Parliament Security Services ? | 'Parliament Security Services'-res:Parliament_Security_Services | 'houses'-dbp:houses\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Parliament_Security_Services> <http://dbpedia.org/property/houses> ?uri } \"\n", "\n", - " SELECT DISTINCT COUNT(?uri) WHERE { res:Andrew_Jackson dbo:commander?uri } \n", - "\"Count the number of people became famous for when Andrew Jackson was a commander ? | 'Andrew Jackson'-res:Andrew_Jackson | 'count'-dbo:country | 'famous'-dbp:established | 'commander'-dbo:commander\",\" SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Andrew_Jackson> <http://dbpedia.org/ontology/commander> ?uri } \"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:commander res:Andrew_Jackson.?uri dbp:nationality?x . }\n", + "\"Count the number of people became famous for when Andrew Jackson was a commander ? | 'Andrew Jackson'-res:Andrew_Jackson | 'count'-dbo:country | 'famous'-dbp:established | 'commander'-dbo:commander\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/commander> <http://dbpedia.org/resource/Andrew_Jackson> . ?uri <http://dbpedia.org/property/nationality> ?x . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:kingdom res:Israel.?x dbo:reign?uri . }\n", - "\"During the reigns of which monarchs was the name to the Israelite kingdom as United Monarch? | 'Israelite kingdom as United Monarch'-res:Agudat_Yisrael | 'reigns'-dbp:reign | 'monarchs'-dbo:leader | 'name'-dbp:name\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/kingdom> <http://dbpedia.org/resource/Israel> . ?x <http://dbpedia.org/ontology/reign> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:kingdom res:Israel.?x dbp:reign?uri . }\n", + "\"During the reigns of which monarchs was the name to the Israelite kingdom as United Monarch? | 'Israelite kingdom as United Monarch'-res:Agudat_Yisrael | 'reigns'-dbp:reign | 'monarchs'-dbo:leader | 'name'-dbp:name\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/kingdom> <http://dbpedia.org/resource/Israel> . ?x <http://dbpedia.org/property/reign> ?uri . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Dornier_Aerodyne dbo:origin?uri } \n", - "\"Which nation is the origin of Dornier Aerodyne ? | 'Dornier Aerodyne'-res:Dornier_Aerodyne | 'nation'-dbo:country | 'origin'-dbo:origin\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dornier_Aerodyne> <http://dbpedia.org/ontology/origin> ?uri } \"\n", + "SELECT DISTINCT?uri WHERE { res:Dornier_Aerodyne dbo:origin?x.?x dbp:country?uri . }\n", + "\"Which nation is the origin of Dornier Aerodyne ? | 'Dornier Aerodyne'-res:Dornier_Aerodyne | 'nation'-dbo:country | 'origin'-dbo:origin\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dornier_Aerodyne> <http://dbpedia.org/ontology/origin> ?x . ?x <http://dbpedia.org/property/country> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:I_Can't_Change_the_World dbo:album?x.?x dbp:artist?uri . }\n", - "\"Who is the artist of the album which has the song I Can't Change the World ? | 'I Can't Change the World'-res:I_Can't_Change_the_World | 'artist'-dbo:artist | 'album'-dbo:album | 'Change'-dbo:fate\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/I_Can't_Change_the_World> <http://dbpedia.org/ontology/album> ?x . ?x <http://dbpedia.org/property/artist> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:I_Can't_Change_the_World dbp:album?x.?x dbo:artist?uri . }\n", + "\"Who is the artist of the album which has the song I Can't Change the World ? | 'I Can't Change the World'-res:I_Can't_Change_the_World | 'artist'-dbo:artist | 'album'-dbo:album | 'Change'-dbo:fate\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/I_Can't_Change_the_World> <http://dbpedia.org/property/album> ?x . ?x <http://dbpedia.org/ontology/artist> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:associatedMusicalArtist res:Demis_Roussos.?uri dbp:music?x . }\n", - "\"Collaborators of Demis Roussos have composed music for which movies? | 'Demis Roussos'-res:Demis_Roussos | 'collaborators'-dbo:associate | 'composed'-dbo:musicComposer | 'music'-dbo:musicalBand | 'movies'-dbo:film\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/associatedMusicalArtist> <http://dbpedia.org/resource/Demis_Roussos> . ?uri <http://dbpedia.org/property/music> ?x . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:music res:Demis_Roussos .?uri rdf:type dbo:Film}\n", + "\"Collaborators of Demis Roussos have composed music for which movies? | 'Demis Roussos'-res:Demis_Roussos | 'collaborators'-dbo:associate | 'composed'-dbo:musicComposer | 'music'-dbo:musicalBand | 'movies'-dbo:film\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Demis_Roussos> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:placeOfDeath res:England.?x dbo:restingPlace?uri . }\n", - "\"In how many places are the tombs of everyone who died in England? | 'tombs'-res:Tombs_of_the_Blind_Dead | 'England'-res:England | 'places'-dbo:place | 'died'-dbp:deathPlace\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/placeOfDeath> <http://dbpedia.org/resource/England> . ?x <http://dbpedia.org/ontology/restingPlace> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:placeOfDeath res:England.?x dbo:place?uri . }\n", + "\"In how many places are the tombs of everyone who died in England? | 'tombs'-res:Tombs_of_the_Blind_Dead | 'England'-res:England | 'places'-dbo:place | 'died'-dbp:deathPlace\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/placeOfDeath> <http://dbpedia.org/resource/England> . ?x <http://dbpedia.org/ontology/place> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:beatifiedBy res:Pope_Pius_X.?x dbo:deathPlace?uri . }\n", - "\"Where did the people beatified by Pope Pius X die? | 'X'-res:X | 'Pope Pius'-res:Pope_Pius_X | 'beatified'-dbp:beatifiedBy | 'die'-dbo:deathDate\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/beatifiedBy> <http://dbpedia.org/resource/Pope_Pius_X> . ?x <http://dbpedia.org/ontology/deathPlace> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:beatifiedBy res:Pope_Pius_X.?x dbo:placeOfDeath?uri . }\n", + "\"Where did the people beatified by Pope Pius X die? | 'X'-res:X | 'Pope Pius'-res:Pope_Pius_X | 'beatified'-dbp:beatifiedBy | 'die'-dbo:deathDate\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/beatifiedBy> <http://dbpedia.org/resource/Pope_Pius_X> . ?x <http://dbpedia.org/ontology/placeOfDeath> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:San_Diego_Convention_Center dbp:venue?uri } \n", - "\"Name all the venues of the convention which has also been hosted in San Diego Convention ? | 'San Diego Convention'-res:San_Diego_Convention_Center | 'venue'-dbp:venue | 'venue'-dbp:venue\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/San_Diego_Convention_Center> <http://dbpedia.org/property/venue> ?uri } \"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:venue res:San_Diego_Convention_Center.?x dbp:venue?uri . }\n", + "\"Name all the venues of the convention which has also been hosted in San Diego Convention ? | 'San Diego Convention'-res:San_Diego_Convention_Center | 'venue'-dbp:venue | 'venue'-dbp:venue\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/venue> <http://dbpedia.org/resource/San_Diego_Convention_Center> . ?x <http://dbpedia.org/property/venue> ?uri . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbo:stateOfOrigin res:Filipinos . }\n", - "\"How many famous people are from the Filipinos? | 'Filipinos'-res:Filipinos | 'famous'-dbo:established\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/stateOfOrigin> <http://dbpedia.org/resource/Filipinos> . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbo:nationality res:Filipinos . }\n", + "\"How many famous people are from the Filipinos? | 'Filipinos'-res:Filipinos | 'famous'-dbo:established\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/nationality> <http://dbpedia.org/resource/Filipinos> . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:William_Campbell_Preston_Breckinridge dbo:child?x.?x dbp:parent?uri . }\n", - "\"Who was the parent of person whose child is William C P breckinridge? | 'C'-res:Chess_Communication | 'William P breckinridge'-res:William_Campbell_Preston_Breckinridge | 'P'-res:P | 'William C breckinridge'-res:John_C._Breckinridge | 'parent'-dbo:parent | 'person'-dbo:child | 'child'-dbo:child\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/William_Campbell_Preston_Breckinridge> <http://dbpedia.org/ontology/child> ?x . ?x <http://dbpedia.org/property/parent> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:child res:William_C._Breckinridge .?uri rdf:type dbo:Person}\n", + "\"Who was the parent of person whose child is William C P breckinridge? | 'C'-res:Chess_Communication | 'William P breckinridge'-res:William_Campbell_Preston_Breckinridge | 'P'-res:P | 'William C breckinridge'-res:John_C._Breckinridge | 'parent'-dbo:parent | 'person'-dbo:child | 'child'-dbo:child\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/child> <http://dbpedia.org/resource/William_C._Breckinridge> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:stateOfOrigin res:British_Columbia.?x dbp:religion?uri . }\n", - "\"Count the religions followed by people living in British Columbia. | 'British Columbia'-res:United_Kingdom | 'British Columbia'-res:British_Columbia | 'count'-dbo:country | 'religions'-dbo:religion | 'living'-dbo:person | ''-dbo:country\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/stateOfOrigin> <http://dbpedia.org/resource/British_Columbia> . ?x <http://dbpedia.org/property/religion> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:placeOfBirth res:British_Columbia.?x dbo:religion?uri . }\n", + "\"Count the religions followed by people living in British Columbia. | 'British Columbia'-res:United_Kingdom | 'British Columbia'-res:British_Columbia | 'count'-dbo:country | 'religions'-dbo:religion | 'living'-dbo:person | ''-dbo:country\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/placeOfBirth> <http://dbpedia.org/resource/British_Columbia> . ?x <http://dbpedia.org/ontology/religion> ?uri . }\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Heydar dbo:meaning?uri } \n", "\"What is the meaning of Heydar ? | 'Heydar'-res:Heydar | 'meaning'-dbo:meaning\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Heydar> <http://dbpedia.org/ontology/meaning> ?uri } \"\n", @@ -2079,20 +1823,20 @@ "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:chairman res:Ronaldo.?x dbp:ground?uri . }\n", "\"On how many different grounds were seasons chaired by Ronaldo held? | 'Ronaldo'-res:Ronaldo | 'chaired'-dbo:chairman | 'grounds'-dbo:ground\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/chairman> <http://dbpedia.org/resource/Ronaldo> . ?x <http://dbpedia.org/property/ground> ?uri . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:headCoaches res:John_Tortorella .?uri rdf:type dbo:IceHockeyPlayer}\n", - "\"Give me a count of all ice hockey players whose teams are headcoached by John Tortorella? | 'ice hockey players'-res:Ice_hockey | 'John Tortorella'-res:John_Tortorella | 'count'-dbo:country | 'teams'-dbp:team | 'headcoached'-dbp:headCoaches\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/headCoaches> <http://dbpedia.org/resource/John_Tortorella> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/IceHockeyPlayer>}\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:team res:John_Tortorella .?uri rdf:type dbo:IceHockeyPlayer}\n", + "\"Give me a count of all ice hockey players whose teams are headcoached by John Tortorella? | 'ice hockey players'-res:Ice_hockey | 'John Tortorella'-res:John_Tortorella | 'count'-dbo:country | 'teams'-dbp:team | 'headcoached'-dbp:headCoaches\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/team> <http://dbpedia.org/resource/John_Tortorella> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/IceHockeyPlayer>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Jack_McGregor dbo:genre?uri. res:Philip_W._Pillsbury dbp:studio?uri. }\n", - "\"What is the common palce of study for jack McGregor and Philip W. Pillsbury ? | 'jack McGregor'-res:Jack_McGregor | 'W'-res:W | 'Philip Pillsbury'-res:Emma_Pillsbury | 'common palce'-dbo:genre | 'study'-dbp:studio\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jack_McGregor> <http://dbpedia.org/ontology/genre> ?uri . <http://dbpedia.org/resource/Philip_W._Pillsbury> <http://dbpedia.org/property/studio> ?uri . }\"\n", + " SELECT DISTINCT?uri WHERE { res:Jack_McGregor dbo:study?uri. res:Philip_Pillsbury dbp:studio?uri} \n", + "\"What is the common palce of study for jack McGregor and Philip W. Pillsbury ? | 'jack McGregor'-res:Jack_McGregor | 'W'-res:W | 'Philip Pillsbury'-res:Emma_Pillsbury | 'common palce'-dbo:genre | 'study'-dbp:studio\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jack_McGregor> <http://dbpedia.org/ontology/study> ?uri . <http://dbpedia.org/resource/Philip_Pillsbury> <http://dbpedia.org/property/studio> ?uri} \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:team res:Fleisher_Yarn.?x dbp:debutteam?uri . }\n", - "\"What team did the players start their careers with, who right now play for Fleisher Yarn? | 'Fleisher Yarn'-res:Fleisher_Yarn | 'team'-dbo:team | 'players'-dbo:combatant | 'start'-dbo:head | 'careers with,'-dbo:award | 'play'-dbo:team\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/team> <http://dbpedia.org/resource/Fleisher_Yarn> . ?x <http://dbpedia.org/property/debutteam> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:formerTeam res:Fleisher_Yarn.?x dbp:debutteam?uri . }\n", + "\"What team did the players start their careers with, who right now play for Fleisher Yarn? | 'Fleisher Yarn'-res:Fleisher_Yarn | 'team'-dbo:team | 'players'-dbo:combatant | 'start'-dbo:head | 'careers with,'-dbo:award | 'play'-dbo:team\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/formerTeam> <http://dbpedia.org/resource/Fleisher_Yarn> . ?x <http://dbpedia.org/property/debutteam> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:location res:England.?x dbp:buildings?uri . }\n", - "\"Which kind of buildings are found in England? | 'England'-res:England | 'buildings'-dbo:assembly\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/England> . ?x <http://dbpedia.org/property/buildings> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:locationCountry res:England.?x dbp:building?uri . }\n", + "\"Which kind of buildings are found in England? | 'England'-res:England | 'buildings'-dbo:assembly\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/locationCountry> <http://dbpedia.org/resource/England> . ?x <http://dbpedia.org/property/building> ?uri . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:locatedInArea res:California.?x dbp:alpineMountain?uri . }\n", - "\"Give me the count of all people who ascented a peak in California? | 'California'-res:California | 'count'-dbo:country | 'ascented'-dbo:established | 'peak'-dbo:language\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/locatedInArea> <http://dbpedia.org/resource/California> . ?x <http://dbpedia.org/property/alpineMountain> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:locatedInArea res:California.?x dbp:mountain?uri . }\n", + "\"Give me the count of all people who ascented a peak in California? | 'California'-res:California | 'count'-dbo:country | 'ascented'-dbo:established | 'peak'-dbo:language\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/locatedInArea> <http://dbpedia.org/resource/California> . ?x <http://dbpedia.org/property/mountain> ?uri . }\"\n", "\n", "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:creators res:Joe_Shuster .?uri rdf:type dbo:ComicsCharacter}\n", "\"Joe Shuster has created how many comics character ? | 'joe Shuster'-res:Joe_Shuster | 'created'-dbp:creators | 'comics character'-dbo:ComicsCharacter\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/creators> <http://dbpedia.org/resource/Joe_Shuster> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/ComicsCharacter>}\"\n", @@ -2100,17 +1844,17 @@ "SELECT DISTINCT?uri WHERE { res:Persona_(1966_film) dbo:writer?x.?x dbp:awards?uri . }\n", "\"Which awards did the writer of Persona win ? | 'Persona'-res:Persona_(1966_film) | 'writer'-dbo:writer | 'awards'-dbp:awards\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Persona_(1966_film)> <http://dbpedia.org/ontology/writer> ?x . ?x <http://dbpedia.org/property/awards> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:athletics res:Robert_Morris_Colonials_football.?x dbp:highschool?uri . }\n", - "\"What is the highschool of the american football player who joined the Robert Morris Colonials program? | 'Robert Morris Colonials'-res:Robert_Morris_Colonials_football | 'highschool'-dbo:highschool | 'joined'-dbo:thumbnail\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/athletics> <http://dbpedia.org/resource/Robert_Morris_Colonials_football> . ?x <http://dbpedia.org/property/highschool> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:highschool res:Robert_Morris_Colonials_football .?uri rdf:type dbo:AmericanFootballPlayer}\n", + "\"What is the highschool of the american football player who joined the Robert Morris Colonials program? | 'Robert Morris Colonials'-res:Robert_Morris_Colonials_football | 'highschool'-dbo:highschool | 'joined'-dbo:thumbnail\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/highschool> <http://dbpedia.org/resource/Robert_Morris_Colonials_football> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/AmericanFootballPlayer>}\"\n", "\n", "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:training res:University_of_Queensland.?x dbp:awards?uri . }\n", "\"How many awards have graduates from the University of Queensland earned? | 'University of Queensland'-res:University_of_Queensland | 'graduates'-dbo:almaMater | 'awards'-dbp:awards\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/training> <http://dbpedia.org/resource/University_of_Queensland> . ?x <http://dbpedia.org/property/awards> ?uri . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:owningRailways res:Rhaetian_Railways.?x dbo:state?uri . }\n", - "\"In how many nations does Rhaetian Railways own train stations? | 'Rhaetian Railways'-res:Western_Rhaetian_Alps | 'nations'-dbo:state | 'train stations'-dbo:chain\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/owningRailways> <http://dbpedia.org/resource/Rhaetian_Railways> . ?x <http://dbpedia.org/ontology/state> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:type res:Rhaetian_Alps.?x dbo:country?uri . }\n", + "\"In how many nations does Rhaetian Railways own train stations? | 'Rhaetian Railways'-res:Western_Rhaetian_Alps | 'nations'-dbo:state | 'train stations'-dbo:chain\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/type> <http://dbpedia.org/resource/Rhaetian_Alps> . ?x <http://dbpedia.org/ontology/country> ?uri . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE {?uri dbo:board res:Board } \n", - "\"Which board game can be said as a mind based game? | 'board game'-dbo:house | 'mind'-dbo:head | 'based'-dbo:relative | 'game'-dbo:event\",\" SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/board> <http://dbpedia.org/resource/Board> } \"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:genre res:Mind_based_games.?x dbo:boardGame?uri . }\n", + "\"Which board game can be said as a mind based game? | 'board game'-dbo:house | 'mind'-dbo:head | 'based'-dbo:relative | 'game'-dbo:event\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/genre> <http://dbpedia.org/resource/Mind_based_games> . ?x <http://dbpedia.org/ontology/boardGame> ?uri . }\"\n", "\n", "SELECT DISTINCT?uri WHERE {?uri dbo:manufacturer res:Eristoff . }\n", "\"What are the things built by Eristoff ? | 'Eristoff'-res:Eristoff | 'built by'-dbo:manufacturer\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/manufacturer> <http://dbpedia.org/resource/Eristoff> . }\"\n", @@ -2121,20 +1865,20 @@ "SELECT DISTINCT?uri WHERE {?x dbp:position res:Running_back.?x dbo:formerTeam?uri . }\n", "\"What is the former team of the american football players whose position is Running back? | 'Running back'-res:Running_back | 'former team'-dbo:formerTeam | 'position'-dbo:position | 'Running'-dbo:government\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/position> <http://dbpedia.org/resource/Running_back> . ?x <http://dbpedia.org/ontology/formerTeam> ?uri . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:publisher res:Interplay_Entertainment.?x dbo:genre?uri . }\n", - "\"How many different kinds of games are published by Interplay Entertainment? | 'Interplay Entertainment'-res:Interplay_Entertainment | 'kinds'-dbo:genre | 'games'-dbo:games | 'published'-dbo:publisher\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/publisher> <http://dbpedia.org/resource/Interplay_Entertainment> . ?x <http://dbpedia.org/ontology/genre> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:publisher res:Interplay_Entertainment.?x dbp:genre?uri . }\n", + "\"How many different kinds of games are published by Interplay Entertainment? | 'Interplay Entertainment'-res:Interplay_Entertainment | 'kinds'-dbo:genre | 'games'-dbo:games | 'published'-dbo:publisher\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/publisher> <http://dbpedia.org/resource/Interplay_Entertainment> . ?x <http://dbpedia.org/property/genre> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:award res:Goya_Awards.?x dbp:awards?uri . }\n", - "\"What other awards have been given to Goya Award Winners? | 'Goya Award'-res:Goya_Awards | 'awards'-dbo:award | 'awards'-dbp:awards\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/award> <http://dbpedia.org/resource/Goya_Awards> . ?x <http://dbpedia.org/property/awards> ?uri . }\"\n", + " SELECT DISTINCT?uri WHERE { res:Goya_Awards dbp:awards?uri } \n", + "\"What other awards have been given to Goya Award Winners? | 'Goya Award'-res:Goya_Awards | 'awards'-dbo:award | 'awards'-dbp:awards\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Goya_Awards> <http://dbpedia.org/property/awards> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:grandsire res:The_Wild_The_Horse.?x dbp:race?uri . }\n", - "\"Race horses whose grandsire is Wild Risk have taken part in which races? | 'Wild Risk'-res:The_Wild | 'race horses'-dbo:type | 'grandsire'-dbo:grandsire | 'races'-dbo:races\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/grandsire> <http://dbpedia.org/resource/The_Wild_The_Horse> . ?x <http://dbpedia.org/property/race> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:grandsire res:The_Wild.?x dbp:race?uri . }\n", + "\"Race horses whose grandsire is Wild Risk have taken part in which races? | 'Wild Risk'-res:The_Wild | 'race horses'-dbo:type | 'grandsire'-dbo:grandsire | 'races'-dbo:races\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/grandsire> <http://dbpedia.org/resource/The_Wild> . ?x <http://dbpedia.org/property/race> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:network res:BBC_HD .?uri rdf:type dbo:ScienceFictionSubject}\n", - "\"List the science fiction shows broadcasted on BBC HD ? | 'science fiction'-res:Science_fiction | 'BBC HD'-res:BBC_HD | 'science fiction'-dbo:nonFictionSubject | 'shows'-dbo:place | 'broadcasted'-dbp:broadcaster\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/network> <http://dbpedia.org/resource/BBC_HD> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/ScienceFictionSubject>}\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:broadcaster res:BBC_HD .?uri rdf:type dbo:ScienceShow}\n", + "\"List the science fiction shows broadcasted on BBC HD ? | 'science fiction'-res:Science_fiction | 'BBC HD'-res:BBC_HD | 'science fiction'-dbo:nonFictionSubject | 'shows'-dbo:place | 'broadcasted'-dbp:broadcaster\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/broadcaster> <http://dbpedia.org/resource/BBC_HD> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/ScienceShow>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:opponent res:Tom_McLaury.?uri rdf:type dbo:Person}\n", - "\"Who is the person opposed by Tom McLaury and Ike Clanton? | 'Tom McLaury'-res:Tom_McLaury | 'Ike Clanton'-res:Ike_Clanton | 'person'-dbo:type | 'opposed'-dbo:opponent\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/opponent> <http://dbpedia.org/resource/Tom_McLaury> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:opponent res:Tom_McLaury.?uri dbo:person res:Ike_Clanton. }\n", + "\"Who is the person opposed by Tom McLaury and Ike Clanton? | 'Tom McLaury'-res:Tom_McLaury | 'Ike Clanton'-res:Ike_Clanton | 'person'-dbo:type | 'opposed'-dbo:opponent\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/opponent> <http://dbpedia.org/resource/Tom_McLaury> . ?uri <http://dbpedia.org/ontology/person> <http://dbpedia.org/resource/Ike_Clanton> . }\"\n", "\n", "SELECT DISTINCT?uri WHERE {?x dbo:locatedInArea res:California.?x dbp:crosses?uri . }\n", "\"What are the bridges whose located in California? | 'California'-res:California | 'located'-dbo:locatedInArea\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/locatedInArea> <http://dbpedia.org/resource/California> . ?x <http://dbpedia.org/property/crosses> ?uri . }\"\n", @@ -2145,17 +1889,17 @@ "SELECT DISTINCT?uri WHERE {?uri dbp:team res:Phoenix_Suns .?uri rdf:type dbo:BasketballPlayer}\n", "\"Who are some basketball players who played for Phoenix Suns? | 'basketball players'-res:National_Basketball_Players_Association | 'Phoenix Suns'-res:Phoenix_Suns | 'played for'-dbo:team | 'basketball player'-dbo:BasketballPlayer\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/team> <http://dbpedia.org/resource/Phoenix_Suns> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/BasketballPlayer>}\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:EXXV-TV dbp:licensee?uri } \n", - "\"Who is the licensee of EXXV-TV ? | 'EXXV-TV'-res:EXXV-TV | 'licensee'-dbo:licensee\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/EXXV-TV> <http://dbpedia.org/property/licensee> ?uri } \"\n", + " SELECT DISTINCT?uri WHERE { res:EXXV-TV dbo:licensee?uri } \n", + "\"Who is the licensee of EXXV-TV ? | 'EXXV-TV'-res:EXXV-TV | 'licensee'-dbo:licensee\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/EXXV-TV> <http://dbpedia.org/ontology/licensee> ?uri } \"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Jimmy_Wales dbo:board?uri } \n", "\"Who are in the board of Jimmy Wales ? | 'Jimmy Wales'-res:Jimmy_Wales | 'board'-dbo:board\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jimmy_Wales> <http://dbpedia.org/ontology/board> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:associatedBand res:Steve_Winwood.?x dbp:employer?uri . }\n", - "\"Where were some people associated with Steve Winwood employed at? | 'Steve Winwood'-res:Steve_Winwood | 'associated'-dbo:associatedBand | 'employed'-dbp:about\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/associatedBand> <http://dbpedia.org/resource/Steve_Winwood> . ?x <http://dbpedia.org/property/employer> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbo:associatedBand res:Steve_Winwood . }\n", + "\"Where were some people associated with Steve Winwood employed at? | 'Steve Winwood'-res:Steve_Winwood | 'associated'-dbo:associatedBand | 'employed'-dbp:about\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/associatedBand> <http://dbpedia.org/resource/Steve_Winwood> . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Ziggi_Recado dbo:associatedBand?x.?x dbp:origin?uri . }\n", - "\"What is the origin of the musical artist whose associated band is Ziggi Recado ? | 'Ziggi Recado'-res:Ziggi_Recado | 'origin'-dbo:origin | 'musical artist'-dbo:artist | 'associated'-dbo:associatedBand | 'band'-dbo:band\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ziggi_Recado> <http://dbpedia.org/ontology/associatedBand> ?x . ?x <http://dbpedia.org/property/origin> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:associatedBand res:Ziggi_Recado .?uri rdf:type dbo:MusicalArtist}\n", + "\"What is the origin of the musical artist whose associated band is Ziggi Recado ? | 'Ziggi Recado'-res:Ziggi_Recado | 'origin'-dbo:origin | 'musical artist'-dbo:artist | 'associated'-dbo:associatedBand | 'band'-dbo:band\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/associatedBand> <http://dbpedia.org/resource/Ziggi_Recado> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MusicalArtist>}\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Jovan_Vladimir dbp:majorShrine?uri } \n", "\"List the major shrines of Jovan Vladimir? | 'Jovan Vladimir'-res:Jovan_Vladimir | 'major shrines'-dbp:majorShrine\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jovan_Vladimir> <http://dbpedia.org/property/majorShrine> ?uri } \"\n", @@ -2166,11 +1910,11 @@ " SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:family res:Hominidae.?x dbp:family?uri }\n", "\"How many other family of the mammals exists whose family is also Hominidae ? | 'mammals'-res:Mammals_of_the_Indiana_Dunes | 'Hominidae'-res:Hominidae | 'family'-dbo:family | 'exists'-dbo:date | 'family'-dbo:family\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/family> <http://dbpedia.org/resource/Hominidae> . ?x <http://dbpedia.org/property/family> ?uri }\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:2006_Oakland_Raiders_season dbo:coach?uri } \n", - "\"What is the former team of the football player who is the coach of 2006 Oakland Raiders season ? | '2006 Oakland Raiders season'-res:2006_Oakland_Raiders_season | 'former team'-dbo:formerTeam | 'football player'-dbo:coach | 'coach'-dbo:coach\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/2006_Oakland_Raiders_season> <http://dbpedia.org/ontology/coach> ?uri } \"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:coach res:2006_Oakland_Raiders_season .?uri rdf:type dbo:FootballPlayer}\n", + "\"What is the former team of the football player who is the coach of 2006 Oakland Raiders season ? | '2006 Oakland Raiders season'-res:2006_Oakland_Raiders_season | 'former team'-dbo:formerTeam | 'football player'-dbo:coach | 'coach'-dbo:coach\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/coach> <http://dbpedia.org/resource/2006_Oakland_Raiders_season> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/FootballPlayer>}\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE { res:The_Sarah_Jane_Adventures_Collection dbp:painter?x.?x dbo:notableWork?uri . }\n", - "\"How many other important things has the painter of Sarah Jane Adventures done? | 'Sarah Jane Adventures'-res:The_Sarah_Jane_Adventures_Collection | 'painter'-dbo:painter\",\"SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/The_Sarah_Jane_Adventures_Collection> <http://dbpedia.org/property/painter> ?x . ?x <http://dbpedia.org/ontology/notableWork> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:painter res:The_Sarah_Jane_Adventures_Collection.?x dbp:importantThings?uri . }\n", + "\"How many other important things has the painter of Sarah Jane Adventures done? | 'Sarah Jane Adventures'-res:The_Sarah_Jane_Adventures_Collection | 'painter'-dbo:painter\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/painter> <http://dbpedia.org/resource/The_Sarah_Jane_Adventures_Collection> . ?x <http://dbpedia.org/property/importantThings> ?uri . }\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:I_Pray_on_Christmas dbp:label?uri } \n", "\"What is the label of I Pray on Christmas ? | 'I Pray on Christmas'-res:I_Pray_on_Christmas | 'label'-dbp:label | 'Pray'-dbo:battle\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/I_Pray_on_Christmas> <http://dbpedia.org/property/label> ?uri } \"\n", @@ -2187,8 +1931,8 @@ " SELECT DISTINCT?uri WHERE { res:Jon_Curran dbo:college?uri } \n", "\"Name the college of Jon Curran ? | 'Jon Curran'-res:Jon_Curran | 'name'-dbp:name | 'college'-dbo:college\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jon_Curran> <http://dbpedia.org/ontology/college> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:notableWork res:Scott_Haran .?uri rdf:type dbo:TelevisionShow}\n", - "\"Who produces the tv series which made Scott Haran famous? | 'Scott Haran'-res:Scott_Haran | 'produces'-dbp:producer | 'series'-dbo:series\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/notableWork> <http://dbpedia.org/resource/Scott_Haran> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:notableworks res:Scott_Haran .?uri rdf:type dbo:TelevisionShow}\n", + "\"Who produces the tv series which made Scott Haran famous? | 'Scott Haran'-res:Scott_Haran | 'produces'-dbp:producer | 'series'-dbo:series\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/notableworks> <http://dbpedia.org/resource/Scott_Haran> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}\"\n", "\n", "SELECT DISTINCT?uri WHERE {?x dbp:breeder res:De_La_Rose.?x dbo:birthPlace?uri . }\n", "\"What is the place of birth of the jockey who breeded De La Rose ? | 'De La Rose'-res:De_La_Rose | 'place'-dbo:place | 'birth'-dbo:birthPlace | 'jockey'-dbo:jockey | 'breeded'-dbo:breeder\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/breeder> <http://dbpedia.org/resource/De_La_Rose> . ?x <http://dbpedia.org/ontology/birthPlace> ?uri . }\"\n", @@ -2199,14 +1943,14 @@ " SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:wineRegion res:Michigan.?x wineRegion?uri }\n", "\"How many other wine region are there of the grapes whose one of the wine region is Michigan ? | 'Michigan'-res:Michigan | 'wine region'-dbo:wineRegion | 'wine region'-dbo:wineRegion\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/wineRegion> <http://dbpedia.org/resource/Michigan> . ?x wineRegion ?uri }\"\n", "\n", - " SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:athletics res:International_Association_of_Ireland.?x dbp:state?uri }\n", - "\"Estimate the number of sports divisions at the universities under international association of universities. | 'universities'-res:Universities_Ireland | 'universities'-res:Universities_Ireland | 'estimate'-dbp:quote | 'sports divisions'-dbo:athletics | 'international association'-dbo:order\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/athletics> <http://dbpedia.org/resource/International_Association_of_Ireland> . ?x <http://dbpedia.org/property/state> ?uri }\"\n", + " SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:athletics res:International_Athletics.?x dbo:university?uri }\n", + "\"Estimate the number of sports divisions at the universities under international association of universities. | 'universities'-res:Universities_Ireland | 'universities'-res:Universities_Ireland | 'estimate'-dbp:quote | 'sports divisions'-dbo:athletics | 'international association'-dbo:order\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/athletics> <http://dbpedia.org/resource/International_Athletics> . ?x <http://dbpedia.org/ontology/university> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:battles res:United_States.?x dbp:battle?uri . }\n", - "\"List the battles in which alumni of US Army Command and General Staff College fought? | 'US'-res:United_States | 'Army Command'-res:Army_Contracting_Command | 'General Staff College'-res:Staff_college | 'battles'-dbo:battle | 'alumni'-dbo:alumni | 'fought'-dbo:type\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/battles> <http://dbpedia.org/resource/United_States> . ?x <http://dbpedia.org/property/battle> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:branch res:United_States_Army_Contracting_Command.?x dbo:battle?uri . }\n", + "\"List the battles in which alumni of US Army Command and General Staff College fought? | 'US'-res:United_States | 'Army Command'-res:Army_Contracting_Command | 'General Staff College'-res:Staff_college | 'battles'-dbo:battle | 'alumni'-dbo:alumni | 'fought'-dbo:type\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/branch> <http://dbpedia.org/resource/United_States_Army_Contracting_Command> . ?x <http://dbpedia.org/ontology/battle> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Jim_Harris dbp:founder?x.?x dbo:subsidiary?uri . }\n", - "\"Name the subsidary of Tandem Computers which was founded by Jim Harris ? | 'Tandem Computers'-res:Tandem_Computers | 'Jim Harris'-res:Jim_Harris | 'name'-dbo:name | 'subsidary'-dbo:subsidiary | 'founded'-dbp:founder\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jim_Harris> <http://dbpedia.org/property/founder> ?x . ?x <http://dbpedia.org/ontology/subsidiary> ?uri . }\"\n", + " SELECT DISTINCT?uri WHERE { res:Tandem_Computers dbp:founder?uri. res:Jim_Harris dbo:subsidiary?uri} \n", + "\"Name the subsidary of Tandem Computers which was founded by Jim Harris ? | 'Tandem Computers'-res:Tandem_Computers | 'Jim Harris'-res:Jim_Harris | 'name'-dbo:name | 'subsidary'-dbo:subsidiary | 'founded'-dbp:founder\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Tandem_Computers> <http://dbpedia.org/property/founder> ?uri . <http://dbpedia.org/resource/Jim_Harris> <http://dbpedia.org/ontology/subsidiary> ?uri} \"\n", "\n", "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:restingPlace res:The_Convent_(film).?uri dbp:author?x . }\n", "\"Count all the books written by an author buried in the Convent of Barefoot Trinitarians? | 'Convent of Barefoot Trinitarians'-res:The_Convent_(film) | 'count'-dbo:type | 'books'-dbo:volume | 'written'-dbo:writer | 'author'-dbo:author | 'buried'-dbo:genre\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/restingPlace> <http://dbpedia.org/resource/The_Convent_(film)> . ?uri <http://dbpedia.org/property/author> ?x . }\"\n", @@ -2214,56 +1958,56 @@ "SELECT DISTINCT?uri WHERE {?x dbo:monarch res:Willem-Alexander_of_the_Netherlands.?uri dbp:leader?x . }\n", "\"What are the things whose leader was a monarch of Willem-Alexander of the Netherlands? | 'Willem-Alexander of the Netherlands monarch'-res:Willem-Alexander_of_the_Netherlands | 'monarch'-dbo:monarch | 'leader'-dbo:leader\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/monarch> <http://dbpedia.org/resource/Willem-Alexander_of_the_Netherlands> . ?uri <http://dbpedia.org/property/leader> ?x . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:outflow res:Ionian_Sea.?x dbp:cities?uri . }\n", - "\"Which cities are located around the sea into which the ionian flows? | 'Ionian'-res:Ionian_Sea | 'cities'-dbo:country | 'located'-dbo:place | 'sea'-dbo:elevation | 'flows'-dbo:outflow\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/outflow> <http://dbpedia.org/resource/Ionian_Sea> . ?x <http://dbpedia.org/property/cities> ?uri . }\"\n", + " SELECT DISTINCT?uri WHERE { res:Ionian_Sea dbp:inflow?uri } \n", + "\"Which cities are located around the sea into which the ionian flows? | 'Ionian'-res:Ionian_Sea | 'cities'-dbo:country | 'located'-dbo:place | 'sea'-dbo:elevation | 'flows'-dbo:outflow\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ionian_Sea> <http://dbpedia.org/property/inflow> ?uri } \"\n", "\n", "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:order res:Primate .?uri rdf:type dbo:Mammal}\n", "\"Give me a count of mammals which have their order as Primate? | 'mammals'-res:Mammals_of_the_Indiana_Dunes | 'Primate'-res:Primate | 'order'-dbo:order | 'mammal'-dbo:Mammal\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/order> <http://dbpedia.org/resource/Primate> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Mammal>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Marvin_Bush dbo:child?x.?x dbp:children?uri . }\n", - "\"What are some other children of the father of Marvin Bush? | 'Marvin Bush'-res:Marvin_Bush | 'children'-dbo:child | 'children'-dbp:children\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Marvin_Bush> <http://dbpedia.org/ontology/child> ?x . ?x <http://dbpedia.org/property/children> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:child res:Marvin_Bush.?x dbp:children?uri . }\n", + "\"What are some other children of the father of Marvin Bush? | 'Marvin Bush'-res:Marvin_Bush | 'children'-dbo:child | 'children'-dbp:children\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/child> <http://dbpedia.org/resource/Marvin_Bush> . ?x <http://dbpedia.org/property/children> ?uri . }\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Elliott_Bay dbo:nearestCity?uri } \n", "\"Which is the nearest city to Elliott Bay ? | 'Elliott Bay'-res:Elliott_Bay | 'nearest city'-dbo:nearestCity\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Elliott_Bay> <http://dbpedia.org/ontology/nearestCity> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:homeStadium res:Riverside_Stadium.?x dbp:manager?uri . }\n", - "\"Who is the manager of the club whose homeground is the riverside stadium? | 'riverside stadium'-res:Riverside_Stadium | 'manager'-dbo:manager | 'club'-dbo:club | 'riverside stadium'-dbo:stadium\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/homeStadium> <http://dbpedia.org/resource/Riverside_Stadium> . ?x <http://dbpedia.org/property/manager> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:ground res:Riverside_Stadium.?x dbp:manager?uri . }\n", + "\"Who is the manager of the club whose homeground is the riverside stadium? | 'riverside stadium'-res:Riverside_Stadium | 'manager'-dbo:manager | 'club'-dbo:club | 'riverside stadium'-dbo:stadium\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/ground> <http://dbpedia.org/resource/Riverside_Stadium> . ?x <http://dbpedia.org/property/manager> ?uri . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Julius_C._Burrows dbo:order?uri } \n", - "\"What is the rank of Julius C. Burrows politically? | 'C'-res:C | 'Julius Burrows politically'-res:Julius_C._Burrows | 'rank'-dbo:order\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Julius_C._Burrows> <http://dbpedia.org/ontology/order> ?uri } \"\n", + " SELECT DISTINCT?uri WHERE { res:Julius_C._Burrows dbp:order?uri } \n", + "\"What is the rank of Julius C. Burrows politically? | 'C'-res:C | 'Julius Burrows politically'-res:Julius_C._Burrows | 'rank'-dbo:order\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Julius_C._Burrows> <http://dbpedia.org/property/order> ?uri } \"\n", "\n", - " SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:firstDriver res:Mika_Häkkinen.?x firstDriver?uri }\n", - "\"Count the number of first drivers in all the GPs where Mika Hakkinen was a first driver? | 'Mika Hakkinen'-res:Mika_Häkkinen | 'count'-dbo:number | 'drivers'-dbo:operator | 'driver'-dbp:operator\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/firstDriver> <http://dbpedia.org/resource/Mika_Häkkinen> . ?x firstDriver ?uri }\"\n", + " SELECT DISTINCT COUNT(?uri) WHERE { res:Mika_Häkkinen dbp:firstDriver?uri } \n", + "\"Count the number of first drivers in all the GPs where Mika Hakkinen was a first driver? | 'Mika Hakkinen'-res:Mika_Häkkinen | 'count'-dbo:number | 'drivers'-dbo:operator | 'driver'-dbp:operator\",\" SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Mika_Häkkinen> <http://dbpedia.org/property/firstDriver> ?uri } \"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:archipelago res:Papeete . }\n", - "\"Give me a count of everything under the archipelago, where Papeete is the biggest town. | 'Papeete'-res:Papeete | 'count'-dbo:country | 'archipelago,'-dbo:archipelago | 'biggest town'-dbo:place\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/archipelago> <http://dbpedia.org/resource/Papeete> . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbo:archipelago res:Papeete . }\n", + "\"Give me a count of everything under the archipelago, where Papeete is the biggest town. | 'Papeete'-res:Papeete | 'count'-dbo:country | 'archipelago,'-dbo:archipelago | 'biggest town'-dbo:place\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/archipelago> <http://dbpedia.org/resource/Papeete> . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:license res:Cross-platform.?x dbo:developer?uri . }\n", - "\"Who all have developed a cross platform software? | 'cross platform software'-res:Cross-platform | 'developed'-dbo:developer\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/license> <http://dbpedia.org/resource/Cross-platform> . ?x <http://dbpedia.org/ontology/developer> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:cross-platform res:Cross-platform.?x dbo:developer?uri . }\n", + "\"Who all have developed a cross platform software? | 'cross platform software'-res:Cross-platform | 'developed'-dbo:developer\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/cross-platform> <http://dbpedia.org/resource/Cross-platform> . ?x <http://dbpedia.org/ontology/developer> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:employer res:Birdman_Enterprises.?x dbp:nationality?uri . }\n", - "\"Which country's people work in the Birdman enterprises? | 'Birdman enterprises'-res:Birdman_Enterprises | 'country'-dbo:country | 'work'-dbo:title\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/employer> <http://dbpedia.org/resource/Birdman_Enterprises> . ?x <http://dbpedia.org/property/nationality> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:employer res:Birdman_Enterprises.?x dbp:country?uri . }\n", + "\"Which country's people work in the Birdman enterprises? | 'Birdman enterprises'-res:Birdman_Enterprises | 'country'-dbo:country | 'work'-dbo:title\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/employer> <http://dbpedia.org/resource/Birdman_Enterprises> . ?x <http://dbpedia.org/property/country> ?uri . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Oskar_Blues_Brewery dbp:location?uri } \n", - "\"Where is Oskar Blues located ? | 'Oskar Blues'-res:Oskar_Blues_Brewery | 'located'-dbo:location\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Oskar_Blues_Brewery> <http://dbpedia.org/property/location> ?uri } \"\n", + " SELECT DISTINCT?uri WHERE { res:Oskar_Blues_Brewery dbo:location?uri } \n", + "\"Where is Oskar Blues located ? | 'Oskar Blues'-res:Oskar_Blues_Brewery | 'located'-dbo:location\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Oskar_Blues_Brewery> <http://dbpedia.org/ontology/location> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Lovelace_Medal dbp:prizes?uri. res:Norbert_Wiener_Award_for_Social_Professional_ Responsibility dbo:award?uri. }\n", - "\"Who won the Lovelace Medal and the Norbert Wiener Award for Social and Professional Responsibility? | 'Lovelace Medal'-res:Lovelace_Medal | 'Norbert Wiener Award for Social'-res:Norbert_Wiener | 'Professional Responsibility'-res:Professional_responsibility | 'won'-dbo:award\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lovelace_Medal> <http://dbpedia.org/property/prizes> ?uri . <http://dbpedia.org/resource/Norbert_Wiener_Award_for_Social_Professional_> Responsibility <http://dbpedia.org/ontology/award> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Lovelace_Medal dbp:awards?uri. res:Norbert_Wiener dbo:award?uri. }\n", + "\"Who won the Lovelace Medal and the Norbert Wiener Award for Social and Professional Responsibility? | 'Lovelace Medal'-res:Lovelace_Medal | 'Norbert Wiener Award for Social'-res:Norbert_Wiener | 'Professional Responsibility'-res:Professional_responsibility | 'won'-dbo:award\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lovelace_Medal> <http://dbpedia.org/property/awards> ?uri . <http://dbpedia.org/resource/Norbert_Wiener> <http://dbpedia.org/ontology/award> ?uri . }\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Dick_Redding dbo:birthPlace?uri } \n", "\"In which province was Dick Redding born? | 'Dick Redding'-res:Jheri_Redding | 'born'-dbo:birthDate\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dick_Redding> <http://dbpedia.org/ontology/birthPlace> ?uri } \"\n", "\n", - " SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:characters res:Catwoman.?x rdf:type dbo:Play}\n", - "\"Count the number of characters of the play whose one of the character is Catwoman ? | 'Catwoman'-res:Catwoman | 'characters'-dbp:characters | 'characters'-dbp:characters\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/characters> <http://dbpedia.org/resource/Catwoman> . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Play>}\"\n", + " SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:characters res:Catwoman } \n", + "\"Count the number of characters of the play whose one of the character is Catwoman ? | 'Catwoman'-res:Catwoman | 'characters'-dbp:characters | 'characters'-dbp:characters\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/characters> <http://dbpedia.org/resource/Catwoman> } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:hometown res:Volos.?uri dbp:music?x . }\n", - "\"What are the movies whose musicians's home town is Volos? | 'musicians'-res:Musicians_Institute | 'home town'-res:Home_Town_(song) | 'Volos'-res:Volos | 'movies'-dbo:film\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/hometown> <http://dbpedia.org/resource/Volos> . ?uri <http://dbpedia.org/property/music> ?x . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:hometown res:Volos .?uri rdf:type dbo:Film}\n", + "\"What are the movies whose musicians's home town is Volos? | 'musicians'-res:Musicians_Institute | 'home town'-res:Home_Town_(song) | 'Volos'-res:Volos | 'movies'-dbo:film\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/hometown> <http://dbpedia.org/resource/Volos> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:service res:Data_center.?x dbo:service?uri . }\n", - "\"Give me a count of the services by the company which provides Data center as the services ? | 'Data center'-res:Data_center | 'count'-dbo:type | 'services'-dbo:service | 'company'-dbo:company | 'services'-dbo:service\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/service> <http://dbpedia.org/resource/Data_center> . ?x <http://dbpedia.org/ontology/service> ?uri . }\"\n", + " SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:services res:Data_center.?x dbo:service?uri }\n", + "\"Give me a count of the services by the company which provides Data center as the services ? | 'Data center'-res:Data_center | 'count'-dbo:type | 'services'-dbo:service | 'company'-dbo:company | 'services'-dbo:service\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/services> <http://dbpedia.org/resource/Data_center> . ?x <http://dbpedia.org/ontology/service> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:academicAdvisor res:University_of_Queensland .?uri rdf:type dbo:Scientist}\n", - "\"Scientists at the University of Queensland have won which awards? | 'scientists'-res:Scientists_for_Global_Responsibility | 'University of Queensland'-res:University_of_Queensland | 'won'-dbo:city | 'awards'-dbo:endowment\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/academicAdvisor> <http://dbpedia.org/resource/University_of_Queensland> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:fields res:University_of_Queensland .?uri rdf:type dbo:Scientist}\n", + "\"Scientists at the University of Queensland have won which awards? | 'scientists'-res:Scientists_for_Global_Responsibility | 'University of Queensland'-res:University_of_Queensland | 'won'-dbo:city | 'awards'-dbo:endowment\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/fields> <http://dbpedia.org/resource/University_of_Queensland> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:South_Shore_Plaza dbo:address?uri } \n", "\"Where is the south shore plaza located? | 'south shore plaza'-res:South_Shore_Plaza | 'located'-dbo:address\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/South_Shore_Plaza> <http://dbpedia.org/ontology/address> ?uri } \"\n", @@ -2271,29 +2015,29 @@ "SELECT DISTINCT?uri WHERE {?uri dbp:music res:Waddy_Wachtel .?uri rdf:type dbo:Film}\n", "\"Waddy wachtel did the music for what movies? | 'Waddy wachtel'-res:Waddy_Wachtel | 'music'-dbp:music | 'movie'-dbo:Film\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Waddy_Wachtel> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Celluloid_Heroes dbo:associatedMusicalArtist?uri. res:Victor_Entertainment dbp:label?uri. }\n", - "\"Who is the musical artist worked for labels Celluloid Records and Victor Entertainment? | 'labels Celluloid Records'-res:Celluloid_Heroes | 'Victor Entertainment'-res:Victor_Entertainment | 'musical artist'-dbo:associatedMusicalArtist | 'worked'-dbo:operator\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Celluloid_Heroes> <http://dbpedia.org/ontology/associatedMusicalArtist> ?uri . <http://dbpedia.org/resource/Victor_Entertainment> <http://dbpedia.org/property/label> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:label res:Celluloid_Heroes .?uri rdf:type dbo:MusicalArtist}\n", + "\"Who is the musical artist worked for labels Celluloid Records and Victor Entertainment? | 'labels Celluloid Records'-res:Celluloid_Heroes | 'Victor Entertainment'-res:Victor_Entertainment | 'musical artist'-dbo:associatedMusicalArtist | 'worked'-dbo:operator\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Celluloid_Heroes> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MusicalArtist>}\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:writer res:Terry_Pratchett.?x dbp:subject?uri . }\n", - "\"Terry Pratchett has written about how many topics? | 'Terry pratchett'-res:Terry_Pratchett | 'topics'-res:Topics_in_Early_Childhood_Special_Education | 'written'-dbo:writer\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/writer> <http://dbpedia.org/resource/Terry_Pratchett> . ?x <http://dbpedia.org/property/subject> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbo:writer res:Terry_Pratchett . }\n", + "\"Terry Pratchett has written about how many topics? | 'Terry pratchett'-res:Terry_Pratchett | 'topics'-res:Topics_in_Early_Childhood_Special_Education | 'written'-dbo:writer\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/writer> <http://dbpedia.org/resource/Terry_Pratchett> . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:instruments res:Catarina_Lindgren.?x dbo:formerName?uri . }\n", - "\"Who are the former partners of the figure skaters whose performance have been choreographed by Catarina Lindgren in the past? | 'Catarina Lindgren'-res:Catarina_Lindgren | 'former partners'-dbo:formerName | 'figure skaters'-dbo:flag | 'performance'-dbo:production | 'choreographed'-dbo:choreographer\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/instruments> <http://dbpedia.org/resource/Catarina_Lindgren> . ?x <http://dbpedia.org/ontology/formerName> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:choreographer res:Catarina_Lindgren.?x dbo:formerPartner?uri . }\n", + "\"Who are the former partners of the figure skaters whose performance have been choreographed by Catarina Lindgren in the past? | 'Catarina Lindgren'-res:Catarina_Lindgren | 'former partners'-dbo:formerName | 'figure skaters'-dbo:flag | 'performance'-dbo:production | 'choreographed'-dbo:choreographer\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/choreographer> <http://dbpedia.org/resource/Catarina_Lindgren> . ?x <http://dbpedia.org/ontology/formerPartner> ?uri . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE {?uri dbp:managerClub res:England_national_under-20_football_team } \n", - "\"who are all the people who have managed the England's under 20 soccer team? | 'the England's under 20 soccer team'-res:England_national_under-20_football_team | 'managed'-dbo:managerClub\",\" SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/managerClub> <http://dbpedia.org/resource/England_national_under-20_football_team> } \"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:managerClub res:England_national_under-20_football_team . }\n", + "\"who are all the people who have managed the England's under 20 soccer team? | 'the England's under 20 soccer team'-res:England_national_under-20_football_team | 'managed'-dbo:managerClub\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/managerClub> <http://dbpedia.org/resource/England_national_under-20_football_team> . }\"\n", "\n", - " SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:guests res:Michael_Cristofer.?x rdf:type dbo:TelevisionShow}\n", - "\"Give me the total number of Guests of the television episodes whose one of the Guests is Michael Cristofer? | 'Guests'-res:Guests_of_the_Nation | 'Guests'-res:Guests_of_the_Nation | 'Michael Cristofer'-res:Michael_Cristofer | 'Guests'-dbp:guests | 'Guests'-dbp:guests\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/guests> <http://dbpedia.org/resource/Michael_Cristofer> . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:guests res:Michael_Cristofer .?uri rdf:type dbo:TelevisionShow}\n", + "\"Give me the total number of Guests of the television episodes whose one of the Guests is Michael Cristofer? | 'Guests'-res:Guests_of_the_Nation | 'Guests'-res:Guests_of_the_Nation | 'Michael Cristofer'-res:Michael_Cristofer | 'Guests'-dbp:guests | 'Guests'-dbp:guests\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/guests> <http://dbpedia.org/resource/Michael_Cristofer> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}\"\n", "\n", - " SELECT DISTINCT?uri WHERE {?uri dbp:lieutenant res:Joe_Purcell } \n", - "\"who was the president under which Joe Purcell is a lieutenant? | 'Joe Purcell'-res:Joe_Purcell | 'president'-dbo:president | 'lieutenant'-dbo:lieutenant\",\" SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/lieutenant> <http://dbpedia.org/resource/Joe_Purcell> } \"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:lieutenant res:Joe_Purcell .?uri rdf:type dbo:President}\n", + "\"who was the president under which Joe Purcell is a lieutenant? | 'Joe Purcell'-res:Joe_Purcell | 'president'-dbo:president | 'lieutenant'-dbo:lieutenant\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/lieutenant> <http://dbpedia.org/resource/Joe_Purcell> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/President>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:majorShrine res:Hebron.?x dbo:veneratedIn?uri . }\n", - "\"What are the veneration of the one for which there's a major shrine in Hebron? | 'Hebron'-res:Hebron | 'veneration'-dbo:time | 'major shrine'-dbo:majorShrine\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/majorShrine> <http://dbpedia.org/resource/Hebron> . ?x <http://dbpedia.org/ontology/veneratedIn> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:majorShrine res:Hebron.?x dbp:veneratedIn?uri . }\n", + "\"What are the veneration of the one for which there's a major shrine in Hebron? | 'Hebron'-res:Hebron | 'veneration'-dbo:time | 'major shrine'-dbo:majorShrine\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/majorShrine> <http://dbpedia.org/resource/Hebron> . ?x <http://dbpedia.org/property/veneratedIn> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Dartington_College_of_Arts dbo:affiliation?x.?x dbp:chancellor?uri . }\n", - "\"Who is the chancellor of the university which affiliates the Dartington College of Arts? | 'Dartington College of Arts'-res:Dartington_College_of_Arts | 'chancellor'-dbo:chancellor | 'affiliates'-dbo:riverBranch\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dartington_College_of_Arts> <http://dbpedia.org/ontology/affiliation> ?x . ?x <http://dbpedia.org/property/chancellor> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Dartington_College_of_Arts dbp:affiliates?x.?x dbo:chancellor?uri . }\n", + "\"Who is the chancellor of the university which affiliates the Dartington College of Arts? | 'Dartington College of Arts'-res:Dartington_College_of_Arts | 'chancellor'-dbo:chancellor | 'affiliates'-dbo:riverBranch\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dartington_College_of_Arts> <http://dbpedia.org/property/affiliates> ?x . ?x <http://dbpedia.org/ontology/chancellor> ?uri . }\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Sune_Agerschou dbp:nationality?uri } \n", "\"What is the nationality of Sune Agerschou ? | 'Sune Agerschou'-res:Sune_Agerschou | 'nationality'-dbo:nationality\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Sune_Agerschou> <http://dbpedia.org/property/nationality> ?uri } \"\n", @@ -2304,32 +2048,32 @@ "SELECT DISTINCT?uri WHERE {?uri dbo:canonizedBy res:Pope_Paul_VI . }\n", "\"Who all have been canonized by Pope Paul VI | 'Paul VI'-res:Pope_Paul_VI | 'canonized'-dbo:canonizedBy\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/canonizedBy> <http://dbpedia.org/resource/Pope_Paul_VI> . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:developer res:The_GNOME_Project.?uri dbp:programmingLanguage?x . }\n", - "\"What is written in a programming language developed by GNOME Project? | 'GNOME Project'-res:The_GNOME_Project | 'written'-dbo:fate | 'programming language'-dbp:programmingLanguage | 'developed'-dbp:developer\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/developer> <http://dbpedia.org/resource/The_GNOME_Project> . ?uri <http://dbpedia.org/property/programmingLanguage> ?x . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:programmingLanguage res:The_GNOME_Project.?x dbp:developer?uri . }\n", + "\"What is written in a programming language developed by GNOME Project? | 'GNOME Project'-res:The_GNOME_Project | 'written'-dbo:fate | 'programming language'-dbp:programmingLanguage | 'developed'-dbp:developer\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/programmingLanguage> <http://dbpedia.org/resource/The_GNOME_Project> . ?x <http://dbpedia.org/property/developer> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:architect res:Francis_Palmer_Smith.?x rdf:type dbo:Building}\n", - "\"Where is the building located whose architect was Francis Palmer Smith? | 'Francis Palmer Smith'-res:Francis_Palmer_Smith | 'building'-dbo:building | 'located'-dbo:garrison | 'architect'-dbo:architect\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/architect> <http://dbpedia.org/resource/Francis_Palmer_Smith> . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Building>}\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:architect res:Francis_Palmer_Smith .?uri rdf:type dbo:Building}\n", + "\"Where is the building located whose architect was Francis Palmer Smith? | 'Francis Palmer Smith'-res:Francis_Palmer_Smith | 'building'-dbo:building | 'located'-dbo:garrison | 'architect'-dbo:architect\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/architect> <http://dbpedia.org/resource/Francis_Palmer_Smith> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Building>}\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Bobby_Skinstad dbo:school?uri } \n", "\"List the school of Bobby Skinstad? | 'Bobby Skinstad'-res:Bobby_Skinstad | 'school'-dbo:school\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bobby_Skinstad> <http://dbpedia.org/ontology/school> ?uri } \"\n", "\n", - " SELECT DISTINCT COUNT(?uri) WHERE { res:Alabama_Crimson_Tide dbo:name?uri } \n", - "\"Count all the universities who participated in the tournament won by Alabama Crimson Tides in 2015 ? | 'universities'-res:Universities_South_Africa | 'Alabama Crimson Tides'-res:Alabama_Crimson_Tide | '2015'-res:2015_Super_Rugby_Final | 'count'-dbo:country | 'participated'-dbo:participant | 'tournament'-dbo:event | 'won'-dbo:city\",\" SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Alabama_Crimson_Tide> <http://dbpedia.org/ontology/name> ?uri } \"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:name res:Alabama_Crimson_Tide .?uri rdf:type dbo:University}\n", + "\"Count all the universities who participated in the tournament won by Alabama Crimson Tides in 2015 ? | 'universities'-res:Universities_South_Africa | 'Alabama Crimson Tides'-res:Alabama_Crimson_Tide | '2015'-res:2015_Super_Rugby_Final | 'count'-dbo:country | 'participated'-dbo:participant | 'tournament'-dbo:event | 'won'-dbo:city\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/name> <http://dbpedia.org/resource/Alabama_Crimson_Tide> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/University>}\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:religion res:Ethics.?x dbo:deathPlace?uri . }\n", - "\"In how many different places have ehtics philosophers died? | ''-res:Ethics | 'places'-dbp:height | 'died'-dbo:flag\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/religion> <http://dbpedia.org/resource/Ethics> . ?x <http://dbpedia.org/ontology/deathPlace> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:placeOfDeath res:Ethics.?x dbo:deathPlace?uri . }\n", + "\"In how many different places have ehtics philosophers died? | ''-res:Ethics | 'places'-dbp:height | 'died'-dbo:flag\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/placeOfDeath> <http://dbpedia.org/resource/Ethics> . ?x <http://dbpedia.org/ontology/deathPlace> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:author res:Jazz .?uri rdf:type dbo:Book}\n", - "\"Which house has published books about Jazz? | 'Jazz'-res:Jazz | 'house'-dbo:house | 'published'-dbo:author | 'books'-dbo:title\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/author> <http://dbpedia.org/resource/Jazz> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book>}\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:associatedBook res:Jazz.?x dbp:publisher?uri . }\n", + "\"Which house has published books about Jazz? | 'Jazz'-res:Jazz | 'house'-dbo:house | 'published'-dbo:author | 'books'-dbo:title\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/associatedBook> <http://dbpedia.org/resource/Jazz> . ?x <http://dbpedia.org/property/publisher> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:narrated res:The_Incredible_Hulk.?uri dbo:writer res:Tales_of_Suspense . }\n", - "\"Which person naratted The Incredible Hulk and also the writer of Tales of Suspense ? | 'The Incredible Hulk'-res:The_Trial_of_the_Incredible_Hulk | 'Tales of Suspense'-res:Tales_of_Suspense | 'person'-dbp:type | 'naratted'-dbp:narrated | 'writer'-dbo:writer\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/narrated> <http://dbpedia.org/resource/The_Incredible_Hulk> . ?uri <http://dbpedia.org/ontology/writer> <http://dbpedia.org/resource/Tales_of_Suspense> . }\"\n", + "SELECT DISTINCT?uri WHERE { res:The_Trial_of_the_Incredible_Hulk dbp:narrated?x.?x dbo:writer?uri . }\n", + "\"Which person naratted The Incredible Hulk and also the writer of Tales of Suspense ? | 'The Incredible Hulk'-res:The_Trial_of_the_Incredible_Hulk | 'Tales of Suspense'-res:Tales_of_Suspense | 'person'-dbp:type | 'naratted'-dbp:narrated | 'writer'-dbo:writer\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Trial_of_the_Incredible_Hulk> <http://dbpedia.org/property/narrated> ?x . ?x <http://dbpedia.org/ontology/writer> ?uri . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:director res:Parsons_School_of_Design.?uri dbp:director?x . }\n", - "\"How many movies have been directed by almunies of Parsons School of Design? | 'almunies'-res:Almunia | 'Parsons School of Design'-res:Parsons_School_of_Design | 'movies'-dbo:film | 'directed'-dbo:president\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/director> <http://dbpedia.org/resource/Parsons_School_of_Design> . ?uri <http://dbpedia.org/property/director> ?x . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:school res:Parsons_School_of_Design.?uri dbp:director?x . }\n", + "\"How many movies have been directed by almunies of Parsons School of Design? | 'almunies'-res:Almunia | 'Parsons School of Design'-res:Parsons_School_of_Design | 'movies'-dbo:film | 'directed'-dbo:president\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/school> <http://dbpedia.org/resource/Parsons_School_of_Design> . ?uri <http://dbpedia.org/property/director> ?x . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbo:placeOfDeath res:Hyderabad.?uri dbp:party?x . }\n", - "\"List the people died in Hyderabad and are a member of political party ? | 'Hyderabad'-res:Hyderabad | 'died in'-dbo:deathPlace | 'political party'-dbo:party\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/placeOfDeath> <http://dbpedia.org/resource/Hyderabad> . ?uri <http://dbpedia.org/property/party> ?x . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:placeOfDeath res:Hyderabad.?x dbp:party?uri . }\n", + "\"List the people died in Hyderabad and are a member of political party ? | 'Hyderabad'-res:Hyderabad | 'died in'-dbo:deathPlace | 'political party'-dbo:party\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/placeOfDeath> <http://dbpedia.org/resource/Hyderabad> . ?x <http://dbpedia.org/property/party> ?uri . }\"\n", "\n", "SELECT DISTINCT?uri WHERE {?uri dbp:champion res:Kansas_City,_Missouri .?uri rdf:type dbo:AmericanFootballLeague}\n", "\"What is the american football league whose champion is from Kansas City, Missouri? | 'american football league'-res:American_Football_League | 'Kansas City, Missouri'-res:Kansas_City,_Missouri | 'champion'-dbp:champion\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/champion> <http://dbpedia.org/resource/Kansas_City,_Missouri> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/AmericanFootballLeague>}\"\n", @@ -2340,11 +2084,11 @@ "SELECT DISTINCT?uri WHERE {?uri dbp:successor res:Samsu-iluna .?uri rdf:type dbo:Person}\n", "\"Which person's successor is Samsu-iluna? | 'Samsu-iluna'-res:Samsu-iluna | 'successor'-dbo:successor | 'person'-dbo:Person\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/successor> <http://dbpedia.org/resource/Samsu-iluna> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:city res:Maharashtra.?x dbo:sport?uri . }\n", - "\"How many sports are played in maharashtran schools? | 'maharashtra'-res:Maharashtra | 'sports'-dbo:athletics | 'played'-dbo:portrayer\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/city> <http://dbpedia.org/resource/Maharashtra> . ?x <http://dbpedia.org/ontology/sport> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:city res:Maharashtra.?x dbp:athletics?uri . }\n", + "\"How many sports are played in maharashtran schools? | 'maharashtra'-res:Maharashtra | 'sports'-dbo:athletics | 'played'-dbo:portrayer\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/city> <http://dbpedia.org/resource/Maharashtra> . ?x <http://dbpedia.org/property/athletics> ?uri . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:league res:2013_National_Premier_Leagues.?x dbp:owner?uri . }\n", - "\"How many owners owned the clubs participating in the Premier leagues of '14? | 'Premier leagues'-res:2013_National_Premier_Leagues | '14'-res:14 | 'owners'-dbp:owner | 'owned'-dbp:owner | 'clubs'-dbo:college | 'participating'-dbo:interest\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/league> <http://dbpedia.org/resource/2013_National_Premier_Leagues> . ?x <http://dbpedia.org/property/owner> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:league res:2013_National_Premier_Leagues.?x dbo:owner?uri . }\n", + "\"How many owners owned the clubs participating in the Premier leagues of '14? | 'Premier leagues'-res:2013_National_Premier_Leagues | '14'-res:14 | 'owners'-dbp:owner | 'owned'-dbp:owner | 'clubs'-dbo:college | 'participating'-dbo:interest\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/league> <http://dbpedia.org/resource/2013_National_Premier_Leagues> . ?x <http://dbpedia.org/ontology/owner> ?uri . }\"\n", "\n", "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbo:residence res:Beverly_Hills,_California . }\n", "\"How many people live in the Beverly Hills, California? | 'Beverly Hills, California'-res:Beverly_Hills,_California | 'live'-dbo:residence\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/residence> <http://dbpedia.org/resource/Beverly_Hills,_California> . }\"\n", @@ -2355,11 +2099,11 @@ "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:state res:North_Carolina.?x dbp:broadcastArea?uri . }\n", "\"In how many areas do the networks broadcast, which also broadcasts in North Carolina? | 'North Carolina'-res:North_Carolina | 'networks broadcast,'-dbo:state | 'broadcasts'-dbo:state\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/state> <http://dbpedia.org/resource/North_Carolina> . ?x <http://dbpedia.org/property/broadcastArea> ?uri . }\"\n", "\n", - " SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:region res:Australia.?x dbo:regionServed?uri }\n", - "\"What is the total number of regions served by the companies which also serves Australia? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'Australia'-res:Australia | 'total'-dbo:populationTotal | 'regions'-dbp:region | 'served'-dbo:regionServed | 'serves'-dbo:chain\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/region> <http://dbpedia.org/resource/Australia> . ?x <http://dbpedia.org/ontology/regionServed> ?uri }\"\n", + " SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:regionServed res:Australia.?x dbo:regionRegion?uri }\n", + "\"What is the total number of regions served by the companies which also serves Australia? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'Australia'-res:Australia | 'total'-dbo:populationTotal | 'regions'-dbp:region | 'served'-dbo:regionServed | 'serves'-dbo:chain\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/regionServed> <http://dbpedia.org/resource/Australia> . ?x <http://dbpedia.org/ontology/regionRegion> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:sisterStations res:WBCQ-FM.?x rdf:type dbo:RadioStation}\n", - "\"List the area of radio stations whose sister station is WBCQ-FM? | 'WBCQ-FM'-res:WBCQ-FM | 'area'-dbo:area | 'radio stations'-dbp:sisterStations | 'sister station'-dbo:sisterStation\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/sisterStations> <http://dbpedia.org/resource/WBCQ-FM> . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/RadioStation>}\"\n", + " SELECT DISTINCT?uri WHERE {?x dbp:sisterStations res:WBCQ-FM.?x dbo:area?uri }\n", + "\"List the area of radio stations whose sister station is WBCQ-FM? | 'WBCQ-FM'-res:WBCQ-FM | 'area'-dbo:area | 'radio stations'-dbp:sisterStations | 'sister station'-dbo:sisterStation\",\" SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/sisterStations> <http://dbpedia.org/resource/WBCQ-FM> . ?x <http://dbpedia.org/ontology/area> ?uri }\"\n", "\n", "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:launchSite res:Cape_Canaveral_Air_Force_Station.?x dbp:manufacturer?uri . }\n", "\"How many companies have manufactured the rockets launched from the Cape Canaveral Air Force Station? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'Cape Canaveral Air Force Station'-res:Cape_Canaveral_Air_Force_Station | 'launched'-dbo:launchSite | 'manufactured'-dbo:manufacturer\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/launchSite> <http://dbpedia.org/resource/Cape_Canaveral_Air_Force_Station> . ?x <http://dbpedia.org/property/manufacturer> ?uri . }\"\n", @@ -2367,11 +2111,11 @@ "SELECT DISTINCT?uri WHERE {?uri dbp:cities res:Kaliningrad.?uri rdf:type dbo:Sea}\n", "\"What is the sea connected to Kaliningrad and Gdask? | 'Kaliningrad and Gdask'-res:Kaliningrad_Zoo | 'sea'-dbo:seatingCapacity | 'connected'-dbo:related\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/cities> <http://dbpedia.org/resource/Kaliningrad> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Sea>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:designer res:Ursula_Hänle.?x dbp:origin?uri . }\n", - "\"In which country did the planes designed by Ursula Hanle originate? | 'Ursula Hanle'-res:Ursula_Hänle | 'country'-dbo:country | 'planes'-dbo:founder | 'designed'-dbo:architect | 'originate'-dbo:engineer\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/designer> <http://dbpedia.org/resource/Ursula_Hänle> . ?x <http://dbpedia.org/property/origin> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:designer res:Ursula_Hänle.?x dbo:origin?uri . }\n", + "\"In which country did the planes designed by Ursula Hanle originate? | 'Ursula Hanle'-res:Ursula_Hänle | 'country'-dbo:country | 'planes'-dbo:founder | 'designed'-dbo:architect | 'originate'-dbo:engineer\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/designer> <http://dbpedia.org/resource/Ursula_Hänle> . ?x <http://dbpedia.org/ontology/origin> ?uri . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE {?uri dbp:commandStructure res:United_States_Department_of_the_Navy } \n", - "\"what are some units udner the US department of navy? | 'US department of navy'-res:United_States_Department_of_the_Navy | 'units udner'-dbo:commandStructure\",\" SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/commandStructure> <http://dbpedia.org/resource/United_States_Department_of_the_Navy> } \"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:commandStructure res:United_States_Department_of_the_Navy .?uri rdf:type dbo:MilitaryUnit}\n", + "\"what are some units udner the US department of navy? | 'US department of navy'-res:United_States_Department_of_the_Navy | 'units udner'-dbo:commandStructure\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/commandStructure> <http://dbpedia.org/resource/United_States_Department_of_the_Navy> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MilitaryUnit>}\"\n", "\n", "SELECT DISTINCT?uri WHERE { res:Marvin_Bush dbo:parent?x.?x dbp:children?uri . }\n", "\"List the children of the parent of Marvin Bush. | 'Marvin Bush'-res:Marvin_Bush | 'children'-dbp:children | 'parent'-dbo:parent\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Marvin_Bush> <http://dbpedia.org/ontology/parent> ?x . ?x <http://dbpedia.org/property/children> ?uri . }\"\n", @@ -2382,17 +2126,17 @@ " SELECT DISTINCT?uri WHERE { res:Clay_Aiken dbp:relatives?uri } \n", "\"List the relatives of clay Aiken ? | 'clay Aiken'-res:Clay_Aiken | 'relatives'-dbp:relatives\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Clay_Aiken> <http://dbpedia.org/property/relatives> ?uri } \"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Claudia_Moro dbp:awards?uri } \n", - "\"which award has been won by Claudia Moro? | 'Claudia Moro'-res:Claudia_Moro | 'award'-dbo:award | 'won'-dbo:city\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Claudia_Moro> <http://dbpedia.org/property/awards> ?uri } \"\n", + "SELECT DISTINCT?uri WHERE { res:Claudia_Moro dbp:awards?x.?x dbo:award?uri . }\n", + "\"which award has been won by Claudia Moro? | 'Claudia Moro'-res:Claudia_Moro | 'award'-dbo:award | 'won'-dbo:city\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Claudia_Moro> <http://dbpedia.org/property/awards> ?x . ?x <http://dbpedia.org/ontology/award> ?uri . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Federal_Reserve_Bank_Building_(Seattle) dbp:address?uri } \n", - "\"What is the address of Federal Reserve Bank Building? | 'Federal Reserve Bank Building'-res:Federal_Reserve_Bank_Building_(Seattle) | 'address'-dbo:address\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Federal_Reserve_Bank_Building_(Seattle)> <http://dbpedia.org/property/address> ?uri } \"\n", + " SELECT DISTINCT?uri WHERE { res:Federal_Reserve_Bank_Building_(Seattle) dbo:address?uri } \n", + "\"What is the address of Federal Reserve Bank Building? | 'Federal Reserve Bank Building'-res:Federal_Reserve_Bank_Building_(Seattle) | 'address'-dbo:address\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Federal_Reserve_Bank_Building_(Seattle)> <http://dbpedia.org/ontology/address> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:European_Rout dbo:route?uri. res:E8 dbp:country?uri. }\n", - "\"List the countries through which European rout E39 and E8 passes ? | 'countries'-res:Countries_of_the_United_Kingdom | 'E39'-res:E39 | 'European rout'-res:Europe | 'European rout'-res:Rout | 'E8'-res:E8 | 'passes'-dbp:pages | ''-dbo:country\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/European_Rout> <http://dbpedia.org/ontology/route> ?uri . <http://dbpedia.org/resource/E8> <http://dbpedia.org/property/country> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbo:route res:E39.?uri dbp:country res:Europe. }\n", + "\"List the countries through which European rout E39 and E8 passes ? | 'countries'-res:Countries_of_the_United_Kingdom | 'E39'-res:E39 | 'European rout'-res:Europe | 'European rout'-res:Rout | 'E8'-res:E8 | 'passes'-dbp:pages | ''-dbo:country\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/route> <http://dbpedia.org/resource/E39> . ?uri <http://dbpedia.org/property/country> <http://dbpedia.org/resource/Europe> . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:genre res:Rhythm_and_blues.?x dbo:writer?uri . }\n", - "\"Who are the writer of the singles whose music genre is Rhythm and blues ? | 'Rhythm and blues'-res:Rhythm_and_blues | 'writer'-dbo:writer | 'singles'-dbo:associate | 'music genre'-dbo:genre | 'blues'-dbo:gross\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/genre> <http://dbpedia.org/resource/Rhythm_and_blues> . ?x <http://dbpedia.org/ontology/writer> ?uri . }\"\n", + " SELECT DISTINCT?uri WHERE {?x dbo:genre res:Rhythm_and_blues.?x dbp:writer?uri }\n", + "\"Who are the writer of the singles whose music genre is Rhythm and blues ? | 'Rhythm and blues'-res:Rhythm_and_blues | 'writer'-dbo:writer | 'singles'-dbo:associate | 'music genre'-dbo:genre | 'blues'-dbo:gross\",\" SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/genre> <http://dbpedia.org/resource/Rhythm_and_blues> . ?x <http://dbpedia.org/property/writer> ?uri }\"\n", "\n", "SELECT DISTINCT?uri WHERE { res:The_Search_(2014_film) dbo:editing?x.?x dbp:awards?uri . }\n", "\"What are the awards won by the film editor of The Search? | 'The Search'-res:The_Search_(2014_film) | 'editor'-dbo:editing | 'awards'-dbp:awards\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Search_(2014_film)> <http://dbpedia.org/ontology/editing> ?x . ?x <http://dbpedia.org/property/awards> ?uri . }\"\n", @@ -2403,26 +2147,26 @@ "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:executiveProducer res:Steven_Moffat .?uri rdf:type dbo:TelevisionShow}\n", "\"How many TV shows have executive producer as Steven Moffat ? | 'TV'-res:Tv_test_pattern | 'Steven Moffat'-res:Steven_Moffat | 'executive producer'-dbo:executiveProducer | 'shows'-dbo:TelevisionShow\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/executiveProducer> <http://dbpedia.org/resource/Steven_Moffat> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:engine res:Sho.?x dbo:engine?uri . }\n", - "\"Who made the engine whose predecessor is the SHO V6? | 'SHO'-res:Sho | 'V6'-res:V6_engine | 'V6'-res:V6_engine | 'SHO'-res:Sho | 'engine'-dbo:engine | 'predecessor'-dbo:predecessor\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/engine> <http://dbpedia.org/resource/Sho> . ?x <http://dbpedia.org/ontology/engine> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:predecessor res:Sho_engine.?x dbo:engine?uri . }\n", + "\"Who made the engine whose predecessor is the SHO V6? | 'SHO'-res:Sho | 'V6'-res:V6_engine | 'V6'-res:V6_engine | 'SHO'-res:Sho | 'engine'-dbo:engine | 'predecessor'-dbo:predecessor\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/predecessor> <http://dbpedia.org/resource/Sho_engine> . ?x <http://dbpedia.org/ontology/engine> ?uri . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:draftTeam res:Ontario.?x dbo:team?uri . }\n", - "\"For how many different teams have Ontarians been drafted ? | 'Ontaria'-res:Ontario | 'teams'-dbo:numberOfTeams | 'drafted'-dbo:draft\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/draftTeam> <http://dbpedia.org/resource/Ontario> . ?x <http://dbpedia.org/ontology/team> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:draftTeam res:Ontario.?x dbp:team?uri . }\n", + "\"For how many different teams have Ontarians been drafted ? | 'Ontaria'-res:Ontario | 'teams'-dbo:numberOfTeams | 'drafted'-dbo:draft\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/draftTeam> <http://dbpedia.org/resource/Ontario> . ?x <http://dbpedia.org/property/team> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbo:academicAdvisor res:St_George's_Hospital . }\n", - "\"Whose academic advisor works at the St George's Hospital? | 'St George's Hospital'-res:St_George's_Hospital | 'academic advisor'-dbo:abstract | 'works'-dbo:language\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/academicAdvisor> <http://dbpedia.org/resource/St_George's_Hospital> . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:academicAdvisor res:St_George's_Hospital.?x dbp:author?uri . }\n", + "\"Whose academic advisor works at the St George's Hospital? | 'St George's Hospital'-res:St_George's_Hospital | 'academic advisor'-dbo:abstract | 'works'-dbo:language\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/academicAdvisor> <http://dbpedia.org/resource/St_George's_Hospital> . ?x <http://dbpedia.org/property/author> ?uri . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:league res:National_Collegiate_Athletic_Association.?uri dbp:almaMater?x . }\n", - "\"Count the number of people who graduated from universities affiliated with the NCAA. | 'universities'-res:Universities_South_Africa | 'NCAA'-res:National_Collegiate_Athletic_Association_(Philippines) | 'count'-dbo:country | 'graduated'-dbo:effectiveRadiatedPower | 'affiliated'-dbo:league\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/league> <http://dbpedia.org/resource/National_Collegiate_Athletic_Association> . ?uri <http://dbpedia.org/property/almaMater> ?x . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:athletics res:National_Collegiate_Athletic_Association.?uri dbo:almaMater?x . }\n", + "\"Count the number of people who graduated from universities affiliated with the NCAA. | 'universities'-res:Universities_South_Africa | 'NCAA'-res:National_Collegiate_Athletic_Association_(Philippines) | 'count'-dbo:country | 'graduated'-dbo:effectiveRadiatedPower | 'affiliated'-dbo:league\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/athletics> <http://dbpedia.org/resource/National_Collegiate_Athletic_Association> . ?uri <http://dbpedia.org/ontology/almaMater> ?x . }\"\n", "\n", "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:creators res:Paul_Dini . }\n", "\"How many characters were made by Paul Dini? | 'Paul Dini'-res:Paul_Dini | 'made by'-dbp:creators\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/creators> <http://dbpedia.org/resource/Paul_Dini> . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbo:family res:Buccinidae.?uri dbp:molluscas res:Mollusca. }\n", - "\"How many molluscas are there whose families are Buccinidae and Buccinoidea? | 'Molluscas'-res:Mollusca | 'Buccinidae and Buccinoidea'-res:Buccinidae | 'families'-dbo:established\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/family> <http://dbpedia.org/resource/Buccinidae> . ?uri <http://dbpedia.org/property/molluscas> <http://dbpedia.org/resource/Mollusca> . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbo:family res:Buccinidae . }\n", + "\"How many molluscas are there whose families are Buccinidae and Buccinoidea? | 'Molluscas'-res:Mollusca | 'Buccinidae and Buccinoidea'-res:Buccinidae | 'families'-dbo:established\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/family> <http://dbpedia.org/resource/Buccinidae> . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Aghasalim_Childagh dbp:deathPlace?uri } \n", - "\"Where did Aghasalim Childagh die? | 'Aghasalim Childagh'-res:Aghasalim_Childagh | 'die'-dbo:deathDate\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Aghasalim_Childagh> <http://dbpedia.org/property/deathPlace> ?uri } \"\n", + " SELECT DISTINCT?uri WHERE { res:Aghasalim_Childagh dbo:deathPlace?uri } \n", + "\"Where did Aghasalim Childagh die? | 'Aghasalim Childagh'-res:Aghasalim_Childagh | 'die'-dbo:deathDate\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Aghasalim_Childagh> <http://dbpedia.org/ontology/deathPlace> ?uri } \"\n", "\n", " SELECT DISTINCT?uri WHERE { res:John_B._Waldo dbp:successor?uri } \n", "\"Where is the successor of john waldo from? | 'john waldo'-res:John_B._Waldo | 'successor'-dbo:successor\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/John_B._Waldo> <http://dbpedia.org/property/successor> ?uri } \"\n", @@ -2430,71 +2174,71 @@ "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:occupation res:Screenwriter.?x dbo:award?uri . }\n", "\"How many awards have screenwriters won? | 'screenwriters'-res:Screenwriter | 'awards'-dbo:award | 'won'-dbo:award\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/occupation> <http://dbpedia.org/resource/Screenwriter> . ?x <http://dbpedia.org/ontology/award> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Parliament_Security_Services dbp:houses?uri. res:United_States_States dbo:house?uri. }\n", - "\"What are the houses of the Parliament Security Services and Parliament of India ? | 'Parliament Security Services'-res:Parliament_Security_Services | 'Parliament of India'-res:Parliament_of_India | 'houses'-dbp:houses | 'houses'-dbp:houses\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Parliament_Security_Services> <http://dbpedia.org/property/houses> ?uri . <http://dbpedia.org/resource/United_States_States> <http://dbpedia.org/ontology/house> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:houses res:Parliament_Security_Services.?uri rdf:type dbo:House}\n", + "\"What are the houses of the Parliament Security Services and Parliament of India ? | 'Parliament Security Services'-res:Parliament_Security_Services | 'Parliament of India'-res:Parliament_of_India | 'houses'-dbp:houses | 'houses'-dbp:houses\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/houses> <http://dbpedia.org/resource/Parliament_Security_Services> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/House>}\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:city res:Alabama.?x dbp:owner?uri . }\n", - "\"How many owners are there of things located in Alabama? | 'Alabama'-res:Alabama | 'in'-dbo:city | 'owners'-dbo:owner\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/city> <http://dbpedia.org/resource/Alabama> . ?x <http://dbpedia.org/property/owner> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:location res:Alabama.?x dbo:owner?uri . }\n", + "\"How many owners are there of things located in Alabama? | 'Alabama'-res:Alabama | 'in'-dbo:city | 'owners'-dbo:owner\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/location> <http://dbpedia.org/resource/Alabama> . ?x <http://dbpedia.org/ontology/owner> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:beatifiedBy res:Pope_Pius_XI.?x dbo:veneratedIn?uri . }\n", - "\"Where are the shrines of the saints who were beatified by Pope Pius XI? | 'Pope Pius XI'-res:Pope_Pius_XI | 'shrines'-dbo:chain | 'saints'-dbo:saint | 'beatified'-dbp:beatifiedBy\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/beatifiedBy> <http://dbpedia.org/resource/Pope_Pius_XI> . ?x <http://dbpedia.org/ontology/veneratedIn> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:beatifiedBy res:Pope_Pius_XI.?x dbo:mountain}\n", + "\"Where are the shrines of the saints who were beatified by Pope Pius XI? | 'Pope Pius XI'-res:Pope_Pius_XI | 'shrines'-dbo:chain | 'saints'-dbo:saint | 'beatified'-dbp:beatifiedBy\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/beatifiedBy> <http://dbpedia.org/resource/Pope_Pius_XI> . ?x <http://dbpedia.org/ontology/mountain>}\"\n", "\n", " SELECT DISTINCT?uri WHERE {?uri dbo:associatedBand res:Foxy_Brown_(rapper) } \n", "\"Foxy Brown was associated with which band? | 'Foxy Brown'-res:Foxy_Brown_(rapper) | 'associated'-dbo:associatedBand | 'band'-dbo:band\",\" SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/associatedBand> <http://dbpedia.org/resource/Foxy_Brown_(rapper)> } \"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE { res:Chickasaw_Campaign_of_1736 dbp:battles?uri . }\n", - "\"Of how many battles is Chickasaw Campaign of 1736 consisted? | 'Chickasaw Campaign of 1736'-res:Chickasaw_Campaign_of_1736 | 'battles'-dbo:combatant | 'consisted'-dbp:convicted\",\"SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Chickasaw_Campaign_of_1736> <http://dbpedia.org/property/battles> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:battles res:Chickasaw_Campaign_of_1736.?x dbo:combatant?uri . }\n", + "\"Of how many battles is Chickasaw Campaign of 1736 consisted? | 'Chickasaw Campaign of 1736'-res:Chickasaw_Campaign_of_1736 | 'battles'-dbo:combatant | 'consisted'-dbp:convicted\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/Chickasaw_Campaign_of_1736> . ?x <http://dbpedia.org/ontology/combatant> ?uri . }\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:David_Ian_Salter dbo:editing?uri } \n", "\"Of what all has David Ian Salter been an editor of? | 'David Ian Salter'-res:David_Ian_Salter | 'editor'-dbo:editing\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/David_Ian_Salter> <http://dbpedia.org/ontology/editing> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbo:mouthMountain res:Essex.?uri dbp:rivermouth res:North_Sea . }\n", - "\"Name the river whose mouth mountain is Essex and river mouth is North Sea? | 'Essex'-res:Essex | 'North Sea'-res:North_Sea | 'name'-dbp:name | 'river'-dbo:river | 'mouth mountain'-dbo:elevation | 'river mouth'-dbo:mouthMountain\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/mouthMountain> <http://dbpedia.org/resource/Essex> . ?uri <http://dbpedia.org/property/rivermouth> <http://dbpedia.org/resource/North_Sea> . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:mouthMountain res:Essex.?uri rdf:type dbo:River}\n", + "\"Name the river whose mouth mountain is Essex and river mouth is North Sea? | 'Essex'-res:Essex | 'North Sea'-res:North_Sea | 'name'-dbp:name | 'river'-dbo:river | 'mouth mountain'-dbo:elevation | 'river mouth'-dbo:mouthMountain\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/mouthMountain> <http://dbpedia.org/resource/Essex> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/River>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Roy_Walker_(production_designer) dbp:awards?uri. res:Walt_Disney dbo:award?uri. }\n", - "\"What award has been given to Roy Walker as well as Walt Disney? | 'Roy Walker'-res:Roy_Walker_(production_designer) | 'Walt Disney'-res:Walt_Disney | 'award'-dbo:award\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Roy_Walker_(production_designer)> <http://dbpedia.org/property/awards> ?uri . <http://dbpedia.org/resource/Walt_Disney> <http://dbpedia.org/ontology/award> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Roy_Walker_(production_designer) dbo:award?uri. res:Walt_Disney dbp:awards?uri. }\n", + "\"What award has been given to Roy Walker as well as Walt Disney? | 'Roy Walker'-res:Roy_Walker_(production_designer) | 'Walt Disney'-res:Walt_Disney | 'award'-dbo:award\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Roy_Walker_(production_designer)> <http://dbpedia.org/ontology/award> ?uri . <http://dbpedia.org/resource/Walt_Disney> <http://dbpedia.org/property/awards> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Marina_Pankova dbp:placeOfDeath?uri. res:Viktor_Ulyanich dbo:deathPlace?uri. }\n", - "\"What is the death place of the Marina Pankova and Viktor Ulyanich? | 'Marina Pankova'-res:Marina_Pankova | 'Viktor Ulyanich'-res:Viktor_Ulyanich | 'death place'-dbo:deathPlace\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Marina_Pankova> <http://dbpedia.org/property/placeOfDeath> ?uri . <http://dbpedia.org/resource/Viktor_Ulyanich> <http://dbpedia.org/ontology/deathPlace> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Marina_Pankova dbo:deathPlace?uri. res:Viktor_Ulyanich dbp:placeOfDeath?uri. }\n", + "\"What is the death place of the Marina Pankova and Viktor Ulyanich? | 'Marina Pankova'-res:Marina_Pankova | 'Viktor Ulyanich'-res:Viktor_Ulyanich | 'death place'-dbo:deathPlace\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Marina_Pankova> <http://dbpedia.org/ontology/deathPlace> ?uri . <http://dbpedia.org/resource/Viktor_Ulyanich> <http://dbpedia.org/property/placeOfDeath> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:locationCity res:Tehran.?uri dbp:products?x . }\n", - "\"What products are made by Tehran based companies? | 'Tehran'-res:Tehran | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'products'-dbp:products | 'based'-dbp:based\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/locationCity> <http://dbpedia.org/resource/Tehran> . ?uri <http://dbpedia.org/property/products> ?x . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:locationCity res:Tehran.?x dbp:products?uri . }\n", + "\"What products are made by Tehran based companies? | 'Tehran'-res:Tehran | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'products'-dbp:products | 'based'-dbp:based\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/locationCity> <http://dbpedia.org/resource/Tehran> . ?x <http://dbpedia.org/property/products> ?uri . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:keyPeople res:Gold_Base.?x dbo:religion?uri . }\n", - "\"Count number of people who follow a religion which has an important office in Gold Base ? | 'Gold Base'-res:Gold_Base | 'count'-dbo:type | 'follow'-dbo:course | 'religion'-dbo:religion | 'office'-dbo:office\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/keyPeople> <http://dbpedia.org/resource/Gold_Base> . ?x <http://dbpedia.org/ontology/religion> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:office res:Gold_Base.?x dbo:religion?uri . }\n", + "\"Count number of people who follow a religion which has an important office in Gold Base ? | 'Gold Base'-res:Gold_Base | 'count'-dbo:type | 'follow'-dbo:course | 'religion'-dbo:religion | 'office'-dbo:office\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/office> <http://dbpedia.org/resource/Gold_Base> . ?x <http://dbpedia.org/ontology/religion> ?uri . }\"\n", "\n", "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:college res:Midland_College .?uri rdf:type dbo:BasketballPlayer}\n", "\"How many basketball players studied in the Midland College? | 'basketball players'-res:National_Basketball_Players_Association | 'Midland College'-res:Midland_College | 'College'-dbo:college | 'basketball player'-dbo:BasketballPlayer\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/college> <http://dbpedia.org/resource/Midland_College> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/BasketballPlayer>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:arena res:New_York.?x dbp:starring?uri . }\n", - "\"Which actors have performed in plays performed in New York? | 'New York'-res:New_York | 'actors'-dbo:award | 'performed'-dbo:artist | 'plays'-dbo:plays | 'performed'-dbo:artist\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/arena> <http://dbpedia.org/resource/New_York> . ?x <http://dbpedia.org/property/starring> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:hometown res:New_York.?x dbp:starring?uri . }\n", + "\"Which actors have performed in plays performed in New York? | 'New York'-res:New_York | 'actors'-dbo:award | 'performed'-dbo:artist | 'plays'-dbo:plays | 'performed'-dbo:artist\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/hometown> <http://dbpedia.org/resource/New_York> . ?x <http://dbpedia.org/property/starring> ?uri . }\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Hearth_and_Home dbo:editor?uri } \n", "\"Who is the editor of Hearth and Home ? | 'Hearth and Home'-res:Hearth_and_Home | 'editor'-dbo:editor\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Hearth_and_Home> <http://dbpedia.org/ontology/editor> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:restingPlace res:Convent_of_the_Barefoot_Trinitarians.?uri dbp:author?x . }\n", - "\"List the books by the authors buried in the Convent of the Barefoot Trinitarians? | 'Convent of the Barefoot Trinitarians'-res:Convent_of_the_Barefoot_Trinitarians | 'buried'-dbo:restingPlace | 'authors'-dbo:author\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/restingPlace> <http://dbpedia.org/resource/Convent_of_the_Barefoot_Trinitarians> . ?uri <http://dbpedia.org/property/author> ?x . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:restingPlace res:Convent_of_the_Barefoot_Trinitarians.?x dbp:author?uri . }\n", + "\"List the books by the authors buried in the Convent of the Barefoot Trinitarians? | 'Convent of the Barefoot Trinitarians'-res:Convent_of_the_Barefoot_Trinitarians | 'buried'-dbo:restingPlace | 'authors'-dbo:author\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/restingPlace> <http://dbpedia.org/resource/Convent_of_the_Barefoot_Trinitarians> . ?x <http://dbpedia.org/property/author> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:A_Barrel_of_Laughs dbp:creator?x.?x dbo:award?uri . }\n", - "\"Which awards did the creator of A Barrel of Laughs, a Vale of Tears won ? | 'A'-res:A | 'Barrel of Laughs,'-res:A_Barrel_of_Laughs,_a_Vale_of_Tears | 'Vale of Tears'-res:Vale_of_tears | 'awards'-dbo:budget | 'creator'-dbp:producer | 'won'-dbo:award\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/A_Barrel_of_Laughs> <http://dbpedia.org/property/creator> ?x . ?x <http://dbpedia.org/ontology/award> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:A_Barrel_of_Tears dbp:creator?x.?x dbo:award?uri . }\n", + "\"Which awards did the creator of A Barrel of Laughs, a Vale of Tears won ? | 'A'-res:A | 'Barrel of Laughs,'-res:A_Barrel_of_Laughs,_a_Vale_of_Tears | 'Vale of Tears'-res:Vale_of_tears | 'awards'-dbo:budget | 'creator'-dbp:producer | 'won'-dbo:award\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/A_Barrel_of_Tears> <http://dbpedia.org/property/creator> ?x . ?x <http://dbpedia.org/ontology/award> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:position res:Defenceman .?uri rdf:type dbo:HockeyTeam}\n", - "\"Which hockey teams have had people playing as Defenceman? | 'Defenceman'-res:Defenceman | 'hockey'-dbo:jockey | 'teams'-dbo:numberOfTeams | 'playing'-dbo:field\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/position> <http://dbpedia.org/resource/Defenceman> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/HockeyTeam>}\"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:position res:Defenceman.?x dbo:team?uri . }\n", + "\"Which hockey teams have had people playing as Defenceman? | 'Defenceman'-res:Defenceman | 'hockey'-dbo:jockey | 'teams'-dbo:numberOfTeams | 'playing'-dbo:field\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/position> <http://dbpedia.org/resource/Defenceman> . ?x <http://dbpedia.org/ontology/team> ?uri . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE {?uri dbo:president res:Joseph_Stiglitz } \n", - "\"which president was served by Joseph Stiglitz? | 'Joseph Stiglitz'-res:Joseph_Stiglitz | 'president'-dbo:president | 'served'-dbo:regionServed\",\" SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/president> <http://dbpedia.org/resource/Joseph_Stiglitz> } \"\n", + " SELECT DISTINCT?uri WHERE {?uri dbp:president res:Joseph_Stiglitz } \n", + "\"which president was served by Joseph Stiglitz? | 'Joseph Stiglitz'-res:Joseph_Stiglitz | 'president'-dbo:president | 'served'-dbo:regionServed\",\" SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/president> <http://dbpedia.org/resource/Joseph_Stiglitz> } \"\n", "\n", "SELECT DISTINCT?uri WHERE {?uri dbo:manufacturer res:Sony.?uri dbp:products res:Foxconn. }\n", "\"What product is made by Sony and Foxconn togather? | 'Sony'-res:Sony | 'Foxconn togather'-res:Foxconn | 'made by'-dbo:manufacturer | 'made by'-dbo:manufacturer\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/manufacturer> <http://dbpedia.org/resource/Sony> . ?uri <http://dbpedia.org/property/products> <http://dbpedia.org/resource/Foxconn> . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:programmeFormat res:Religion.?x dbp:city?uri . }\n", - "\"Which city has radio stations which are Religious ? | 'Religiou'-res:Religion | 'city'-dbo:city | 'radio stations'-dbo:numberOfStations\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/programmeFormat> <http://dbpedia.org/resource/Religion> . ?x <http://dbpedia.org/property/city> ?uri . }\"\n", + " SELECT DISTINCT?uri WHERE {?x dbo:programmeFormat res:Religion.?x dbp:city?uri }\n", + "\"Which city has radio stations which are Religious ? | 'Religiou'-res:Religion | 'city'-dbo:city | 'radio stations'-dbo:numberOfStations\",\" SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/programmeFormat> <http://dbpedia.org/resource/Religion> . ?x <http://dbpedia.org/property/city> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:mother res:Bertrada_of_Laon . }\n", - "\"Whose mam is Bertrada of Laon? | 'Bertrada of Laon'-res:Bertrada_of_Laon | 'mam'-dbp:mother\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/mother> <http://dbpedia.org/resource/Bertrada_of_Laon> . }\"\n", + " SELECT DISTINCT?uri WHERE { res:Bertrada_of_Laon dbp:mother?uri } \n", + "\"Whose mam is Bertrada of Laon? | 'Bertrada of Laon'-res:Bertrada_of_Laon | 'mam'-dbp:mother\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bertrada_of_Laon> <http://dbpedia.org/property/mother> ?uri } \"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:AH141 dbo:county?uri. res:Malaysia_Junior_Hockey_League dbp:country?uri} \n", - "\"What location country of AH141 is also the nation of malaysia Junior hockey league ? | 'AH141'-res:AH141 | 'malaysia Junior hockey league'-res:Malaysia_Junior_Hockey_League | 'country'-dbo:county | 'country'-dbo:country\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/AH141> <http://dbpedia.org/ontology/county> ?uri . <http://dbpedia.org/resource/Malaysia_Junior_Hockey_League> <http://dbpedia.org/property/country> ?uri} \"\n", + " SELECT DISTINCT?uri WHERE { res:AH141 dbo:league?uri. res:Malaysia_Junior_Hockey_League dbp:country?uri} \n", + "\"What location country of AH141 is also the nation of malaysia Junior hockey league ? | 'AH141'-res:AH141 | 'malaysia Junior hockey league'-res:Malaysia_Junior_Hockey_League | 'country'-dbo:county | 'country'-dbo:country\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/AH141> <http://dbpedia.org/ontology/league> ?uri . <http://dbpedia.org/resource/Malaysia_Junior_Hockey_League> <http://dbpedia.org/property/country> ?uri} \"\n", "\n", "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:label res:Celluloid_Records .?uri rdf:type dbo:Artist}\n", "\"How many artists are signed up with Celluloid Records? | 'Celluloid Records'-res:Celluloid_Records | 'artists'-dbp:artist | 'signed'-dbo:movement\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Celluloid_Records> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Artist>}\"\n", @@ -2502,53 +2246,53 @@ "SELECT DISTINCT?uri WHERE {?x dbo:trainer res:Henry_McDaniel_(racehorse_trainer).?x dbp:awards?uri . }\n", "\"Henry McDaniel's trained horses have won which awards? | 'Henry McDaniel'-res:Henry_McDaniel_(racehorse_trainer) | 'trained'-dbo:coach | 'horses'-dbo:staff | 'won'-dbo:award | 'awards'-dbo:award\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/trainer> <http://dbpedia.org/resource/Henry_McDaniel_(racehorse_trainer)> . ?x <http://dbpedia.org/property/awards> ?uri . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:headquarters res:Klang_Valley.?x dbo:country?uri . }\n", - "\"From how many coutries do companies come, which are headquartered in the Klang Valley? | 'Klang Valley'-res:Klang_Valley | 'headquarter'-dbp:headquarters | 'country'-dbp:country\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Klang_Valley> . ?x <http://dbpedia.org/ontology/country> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:headquarters res:Klang_Valley .?uri rdf:type dbo:Cashion}\n", + "\"From how many coutries do companies come, which are headquartered in the Klang Valley? | 'Klang Valley'-res:Klang_Valley | 'headquarter'-dbp:headquarters | 'country'-dbp:country\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Klang_Valley> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Cashion>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:owner res:Tabriz.?x dbo:builder?uri . }\n", - "\"Who is the builder of the bridge owned by Tabriz ? | 'Tabriz'-res:Tabriz | 'builder'-dbo:builder | 'bridge'-dbo:abstract | 'owned'-dbo:owner\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/owner> <http://dbpedia.org/resource/Tabriz> . ?x <http://dbpedia.org/ontology/builder> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:owner res:Tabriz.?x dbp:builder?uri . }\n", + "\"Who is the builder of the bridge owned by Tabriz ? | 'Tabriz'-res:Tabriz | 'builder'-dbo:builder | 'bridge'-dbo:abstract | 'owned'-dbo:owner\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/owner> <http://dbpedia.org/resource/Tabriz> . ?x <http://dbpedia.org/property/builder> ?uri . }\"\n", "\n", "SELECT DISTINCT?uri WHERE {?uri dbp:college res:Arizona_State_Sun_Devils .?uri rdf:type dbo:GolfPlayer}\n", "\"Who are the golf players whose college is Arizona State Sun Devils? | 'golf players'-res:The_Golf_Players | 'Arizona State Sun Devils'-res:Arizona_State_Sun_Devils | 'college'-dbo:college | 'golf player'-dbo:GolfPlayer\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/college> <http://dbpedia.org/resource/Arizona_State_Sun_Devils> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/GolfPlayer>}\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:instruments res:Saxophone.?uri dbp:music?x . }\n", - "\"List everything in which saxophone players have been casted. | 'saxophone players'-res:Saxophone | 'casted'-dbo:class\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/instruments> <http://dbpedia.org/resource/Saxophone> . ?uri <http://dbpedia.org/property/music> ?x . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:starring res:Saxophone.?uri dbp:tenant?x . }\n", + "\"List everything in which saxophone players have been casted. | 'saxophone players'-res:Saxophone | 'casted'-dbo:class\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Saxophone> . ?uri <http://dbpedia.org/property/tenant> ?x . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:religion res:Protestant_School.?x dbp:games?uri . }\n", - "\"What games are played in Protestant schools? | 'Protestant schools'-res:Doveton_Corrie_Protestant_Schools_Association | 'games'-dbo:games | 'played'-dbo:portrayer\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/religion> <http://dbpedia.org/resource/Protestant_School> . ?x <http://dbpedia.org/property/games> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:school res:Protestant_Schools_Association.?x dbp:games?uri . }\n", + "\"What games are played in Protestant schools? | 'Protestant schools'-res:Doveton_Corrie_Protestant_Schools_Association | 'games'-dbo:games | 'played'-dbo:portrayer\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/school> <http://dbpedia.org/resource/Protestant_Schools_Association> . ?x <http://dbpedia.org/property/games> ?uri . }\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:William_Anthony_(artist) dbo:training?uri. res:Yale_Repertory_Theatre dbp:owner?uri} \n", "\"Which stockholder of yale Repertory Theatre was training center of William Anthony ? | 'William Anthony'-res:William_Anthony_(artist) | 'yale Repertory Theatre'-res:Yale_Repertory_Theatre | 'training'-dbo:training | 'stockholder'-dbp:owner\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/William_Anthony_(artist)> <http://dbpedia.org/ontology/training> ?uri . <http://dbpedia.org/resource/Yale_Repertory_Theatre> <http://dbpedia.org/property/owner> ?uri} \"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Erica_Frank.?uri dbo:institution res:Douglass_North. }\n", - "\"Name the common institution of the Erica Frank and Douglass North? | 'Erica Frank'-res:Erica_Frank | 'Douglass North'-res:Douglass_North | 'name'-dbp:name | 'common institution'-dbo:institution\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Erica_Frank> . ?uri <http://dbpedia.org/ontology/institution> <http://dbpedia.org/resource/Douglass_North> . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbo:institution res:Erica_Frank. }\n", + "\"Name the common institution of the Erica Frank and Douglass North? | 'Erica Frank'-res:Erica_Frank | 'Douglass North'-res:Douglass_North | 'name'-dbp:name | 'common institution'-dbo:institution\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/institution> <http://dbpedia.org/resource/Erica_Frank> . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:KUNSTEN_Museum_of_Modern_Art_Aalborg dbp:language?uri } \n", - "\"List the language of Kunsten Museum of moder art Aalborg ? | 'Kunsten Museum of moder art Aalborg'-res:KUNSTEN_Museum_of_Modern_Art_Aalborg | 'language'-dbo:language\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/KUNSTEN_Museum_of_Modern_Art_Aalborg> <http://dbpedia.org/property/language> ?uri } \"\n", + " SELECT DISTINCT?uri WHERE { res:Kunsten_Museum_of_Modern_Art_Aalborg dbp:language?uri } \n", + "\"List the language of Kunsten Museum of moder art Aalborg ? | 'Kunsten Museum of moder art Aalborg'-res:KUNSTEN_Museum_of_Modern_Art_Aalborg | 'language'-dbo:language\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kunsten_Museum_of_Modern_Art_Aalborg> <http://dbpedia.org/property/language> ?uri } \"\n", "\n", - " SELECT DISTINCT?uri WHERE {?uri dbp:relatives res:Ron_Cyrus } \n", - "\"To which persons is Ron Cyrus a relative? | 'Ron Cyrus'-res:Ron_Cyrus | 'relative'-dbp:relatives | 'person'-dbo:Person\",\" SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/relatives> <http://dbpedia.org/resource/Ron_Cyrus> } \"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:relatives res:Ron_Cyrus .?uri rdf:type dbo:Person}\n", + "\"To which persons is Ron Cyrus a relative? | 'Ron Cyrus'-res:Ron_Cyrus | 'relative'-dbp:relatives | 'person'-dbo:Person\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/relatives> <http://dbpedia.org/resource/Ron_Cyrus> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}\"\n", "\n", - " SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:services res:Web_hosting_service.?x dbp:services?uri }\n", - "\"How many services are there of the companies whose services is Web hosting service ? | 'Web hosting service'-res:Web_hosting_service | 'services'-dbp:services | 'services'-dbp:services\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/services> <http://dbpedia.org/resource/Web_hosting_service> . ?x <http://dbpedia.org/property/services> ?uri }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:services res:Web_hosting_service.?x dbp:services?uri . }\n", + "\"How many services are there of the companies whose services is Web hosting service ? | 'Web hosting service'-res:Web_hosting_service | 'services'-dbp:services | 'services'-dbp:services\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/services> <http://dbpedia.org/resource/Web_hosting_service> . ?x <http://dbpedia.org/property/services> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Kingship_and_kingdom_of_God dbp:parent?x.?x dbo:successor?uri . }\n", - "\"Who is a successor of Kingship whose parents were Julius Caesar? | 'Kingship'-res:Kingship_and_kingdom_of_God | 'Julius Caesar'-res:Julius_Caesar | 'successor'-dbo:successor | 'parents'-dbo:parent\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kingship_and_kingdom_of_God> <http://dbpedia.org/property/parent> ?x . ?x <http://dbpedia.org/ontology/successor> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:parent res:Julius_Caesar.?x dbp:successor?uri . }\n", + "\"Who is a successor of Kingship whose parents were Julius Caesar? | 'Kingship'-res:Kingship_and_kingdom_of_God | 'Julius Caesar'-res:Julius_Caesar | 'successor'-dbo:successor | 'parents'-dbo:parent\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/parent> <http://dbpedia.org/resource/Julius_Caesar> . ?x <http://dbpedia.org/property/successor> ?uri . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Voere dbp:predecessor?uri } \n", - "\"Who is the predecessor of Voere ? | 'Voere'-res:Voere | 'predecessor'-dbo:predecessor\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Voere> <http://dbpedia.org/property/predecessor> ?uri } \"\n", + " SELECT DISTINCT?uri WHERE { res:Voere dbo:predecessor?uri } \n", + "\"Who is the predecessor of Voere ? | 'Voere'-res:Voere | 'predecessor'-dbo:predecessor\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Voere> <http://dbpedia.org/ontology/predecessor> ?uri } \"\n", "\n", "SELECT DISTINCT?uri WHERE {?uri dbp:editing res:Mark_Stevens_(film_editor) .?uri rdf:type dbo:Film}\n", "\"Which movies did Mark Steven edit? | 'Mark Steven'-res:Mark_Stevens_(film_editor) | 'edit'-dbp:editing | 'movie'-dbo:Film\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/editing> <http://dbpedia.org/resource/Mark_Stevens_(film_editor)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE { res:Raptors_905 dbo:tenant?uri . }\n", - "\"How many more teams have rented the stadium used by Raptors 905? | 'Raptors 905'-res:Raptors_905 | 'teams'-dbp:team | 'rented'-dbo:tenant | 'stadium'-dbo:stadium\",\"SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Raptors_905> <http://dbpedia.org/ontology/tenant> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:tenants res:Raptors_905.?x dbo:tenant?uri . }\n", + "\"How many more teams have rented the stadium used by Raptors 905? | 'Raptors 905'-res:Raptors_905 | 'teams'-dbp:team | 'rented'-dbo:tenant | 'stadium'-dbo:stadium\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/tenants> <http://dbpedia.org/resource/Raptors_905> . ?x <http://dbpedia.org/ontology/tenant> ?uri . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:battles res:Croix_de_Guerre.?x dbp:territory?uri . }\n", - "\"Count the wars in which people awarded with the Croix de guerre fought. | 'Croix de guerre'-res:Croix_de_Guerre | 'count'-dbo:country | 'wars'-dbp:battles | 'awarded'-dbo:award | 'fought'-dbo:type\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/battles> <http://dbpedia.org/resource/Croix_de_Guerre> . ?x <http://dbpedia.org/property/territory> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:battle res:Croix_de_Guerre.?x dbp:territory?uri . }\n", + "\"Count the wars in which people awarded with the Croix de guerre fought. | 'Croix de guerre'-res:Croix_de_Guerre | 'count'-dbo:country | 'wars'-dbp:battles | 'awarded'-dbo:award | 'fought'-dbo:type\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/battle> <http://dbpedia.org/resource/Croix_de_Guerre> . ?x <http://dbpedia.org/property/territory> ?uri . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:awards res:Royal_Society . }\n", - "\"How many have been awarded by the Royal Society? | 'Royal Society'-res:Royal_Society | 'awarded'-dbp:awards\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/awards> <http://dbpedia.org/resource/Royal_Society> . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE { res:Royal_Society dbp:awards?uri . }\n", + "\"How many have been awarded by the Royal Society? | 'Royal Society'-res:Royal_Society | 'awarded'-dbp:awards\",\"SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Royal_Society> <http://dbpedia.org/property/awards> ?uri . }\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Ford_SHO_V8_engine dbo:manufacturer?uri } \n", "\"who manufactures the SHO V8? | 'sho v8'-res:Ford_SHO_V8_engine | 'manufactures'-dbo:manufacturer\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ford_SHO_V8_engine> <http://dbpedia.org/ontology/manufacturer> ?uri } \"\n", @@ -2559,8 +2303,8 @@ "SELECT DISTINCT?uri WHERE {?uri dbp:cinematography res:Gregg_Toland .?uri rdf:type dbo:Film}\n", "\"What are the movies whose cinematographer is Gregg Toland? | 'cinematographer'-res:Cinematographer | 'Gregg Toland'-res:Gregg_Toland | 'movies'-dbo:film\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/cinematography> <http://dbpedia.org/resource/Gregg_Toland> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:highschool res:Penn_State_Nittany_Lions_football.?x dbp:education?uri . }\n", - "\"In how many different highschools have people schooled in Penn State Nittany Lions football studied? | 'Penn State Nittany Lions football'-res:Penn_State_Nittany_Lions_football | 'highschools'-dbo:highschool | 'schooled'-dbo:university | 'studied'-dbo:course\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/highschool> <http://dbpedia.org/resource/Penn_State_Nittany_Lions_football> . ?x <http://dbpedia.org/property/education> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:university res:Penn_State_Nittany_Lions_football.?x dbp:highschool?uri . }\n", + "\"In how many different highschools have people schooled in Penn State Nittany Lions football studied? | 'Penn State Nittany Lions football'-res:Penn_State_Nittany_Lions_football | 'highschools'-dbo:highschool | 'schooled'-dbo:university | 'studied'-dbo:course\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/university> <http://dbpedia.org/resource/Penn_State_Nittany_Lions_football> . ?x <http://dbpedia.org/property/highschool> ?uri . }\"\n", "\n", "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:family res:Balanidae.?x dbp:authority?uri . }\n", "\"How many different people hold authority over the members of Balanidae family? | 'Balanidae family'-res:Balanidae | 'family'-dbo:family | 'authority'-dbo:binomialAuthority\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/family> <http://dbpedia.org/resource/Balanidae> . ?x <http://dbpedia.org/property/authority> ?uri . }\"\n", @@ -2568,8 +2312,8 @@ "SELECT DISTINCT?uri WHERE {?uri dbp:highschool res:Ringgold_High_School_(Pennsylvania) .?uri rdf:type dbo:AmericanFootballPlayer}\n", "\"Who is the american football player whose highschool is Ringgold High School (Pennsylvania)? | 'american football player'-res:James_Walker_(American_football_player) | 'Ringgold High School (Pennsylvania)'-res:Ringgold_High_School_(Pennsylvania) | 'highschool'-dbo:highschool\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/highschool> <http://dbpedia.org/resource/Ringgold_High_School_(Pennsylvania)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/AmericanFootballPlayer>}\"\n", "\n", - " SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:battles res:Afghanistan.?x dbo:combatant?uri }\n", - "\"Count the total number of conflicts people who were part of conflict in afghanisthan ? | 'Afghanisthan'-res:Afghanistan | 'count'-dbo:country | 'total'-dbo:populationTotal | 'conflicts'-dbo:battle | 'conflict'-dbo:battle\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/Afghanistan> . ?x <http://dbpedia.org/ontology/combatant> ?uri }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:battle res:Afghanistan.?x dbp:territory?uri . }\n", + "\"Count the total number of conflicts people who were part of conflict in afghanisthan ? | 'Afghanisthan'-res:Afghanistan | 'count'-dbo:country | 'total'-dbo:populationTotal | 'conflicts'-dbo:battle | 'conflict'-dbo:battle\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/battle> <http://dbpedia.org/resource/Afghanistan> . ?x <http://dbpedia.org/property/territory> ?uri . }\"\n", "\n", "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:relatives res:Kendall_Jenner . }\n", "\"Kendall Jenner has how many relatives? | 'Kendall jenner'-res:Kendall_Jenner | 'relatives'-dbp:relatives\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/relatives> <http://dbpedia.org/resource/Kendall_Jenner> . }\"\n", @@ -2580,92 +2324,92 @@ " SELECT DISTINCT?uri WHERE { res:First_Church_of_Christ,_Scientist_(Pittsburgh) dbo:location?uri } \n", "\"What is the location town of First Church of Christ, Scientist (Pittsburgh) ? | 'First Church of Christ, Scientist (Pittsburgh)'-res:First_Church_of_Christ,_Scientist_(Pittsburgh) | 'location town'-dbo:location\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/First_Church_of_Christ,_Scientist_(Pittsburgh)> <http://dbpedia.org/ontology/location> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Henry_Bourchier,_1st_Earl_of_Essex dbp:spouse?x.?x dbo:restingPlace?uri . }\n", - "\"Where is the spouse of Henry Bourchier of Essex buried? | 'Henry Bourchier of Essex'-res:Henry_Bourchier,_1st_Earl_of_Essex | 'spouse'-dbo:spouse | 'buried'-dbo:weight\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Henry_Bourchier,_1st_Earl_of_Essex> <http://dbpedia.org/property/spouse> ?x . ?x <http://dbpedia.org/ontology/restingPlace> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Henry_Bourchier dbo:spouse?x.?x dbp:restingplace?uri . }\n", + "\"Where is the spouse of Henry Bourchier of Essex buried? | 'Henry Bourchier of Essex'-res:Henry_Bourchier,_1st_Earl_of_Essex | 'spouse'-dbo:spouse | 'buried'-dbo:weight\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Henry_Bourchier> <http://dbpedia.org/ontology/spouse> ?x . ?x <http://dbpedia.org/property/restingplace> ?uri . }\"\n", "\n", "SELECT DISTINCT?uri WHERE {?x dbo:country res:United_States.?uri dbp:network?x . }\n", "\"What shows are on the networks which are from the United States? | 'United States'-res:United_States | 'shows'-dbo:place | 'networks'-dbo:network\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/United_States> . ?uri <http://dbpedia.org/property/network> ?x . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:distributor res:Cinema_International_Corporation.?uri dbo:editing res:Hulian_Doyle . }\n", - "\"Name the movies distributed by Cinema International Corporation and edited by Hulian Doyle ? | 'Cinema International Corporation'-res:Cinema_International_Corporation | 'Hulian Doyle'-res:Willie_Doyle | 'name'-dbp:name | 'movies'-dbo:film | 'distributed'-dbo:distributor | 'edited'-dbo:editor\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/distributor> <http://dbpedia.org/resource/Cinema_International_Corporation> . ?uri <http://dbpedia.org/ontology/editing> <http://dbpedia.org/resource/Hulian_Doyle> . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:distributor res:Cinema_International_Corporation.?uri dbo:editing res:Hulian_Doyle_(film) . }\n", + "\"Name the movies distributed by Cinema International Corporation and edited by Hulian Doyle ? | 'Cinema International Corporation'-res:Cinema_International_Corporation | 'Hulian Doyle'-res:Willie_Doyle | 'name'-dbp:name | 'movies'-dbo:film | 'distributed'-dbo:distributor | 'edited'-dbo:editor\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/distributor> <http://dbpedia.org/resource/Cinema_International_Corporation> . ?uri <http://dbpedia.org/ontology/editing> <http://dbpedia.org/resource/Hulian_Doyle_(film)> . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Rouen_Business_School dbp:province?uri } \n", - "\"What is the province of Rouen Business School ? | 'Rouen Business School'-res:Rouen_Business_School | 'province'-dbo:province\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Rouen_Business_School> <http://dbpedia.org/property/province> ?uri } \"\n", + " SELECT DISTINCT?uri WHERE { res:Rouen_Business_School dbo:province?uri } \n", + "\"What is the province of Rouen Business School ? | 'Rouen Business School'-res:Rouen_Business_School | 'province'-dbo:province\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Rouen_Business_School> <http://dbpedia.org/ontology/province> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:recordedIn res:Miami.?uri dbp:music?x . }\n", - "\"List some songwriters whose work has been recorded in Miami? | 'Miami'-res:Miami | 'songwriters'-dbo:composer | 'work'-dbo:part | 'recorded'-dbo:recordedIn\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/recordedIn> <http://dbpedia.org/resource/Miami> . ?uri <http://dbpedia.org/property/music> ?x . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:recordedIn res:Miami.?uri dbp:writer?x . }\n", + "\"List some songwriters whose work has been recorded in Miami? | 'Miami'-res:Miami | 'songwriters'-dbo:composer | 'work'-dbo:part | 'recorded'-dbo:recordedIn\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/recordedIn> <http://dbpedia.org/resource/Miami> . ?uri <http://dbpedia.org/property/writer> ?x . }\"\n", "\n", - " SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:birthPlace res:Bangkok.?x dbp:religion?uri }\n", - "\"What is the total number of relgions followed by people born in Bangkok? | 'Bangkok'-res:Bangkok | 'total'-dbo:populationTotal | 'relgions'-dbp:religion | 'born'-dbo:birthPlace\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Bangkok> . ?x <http://dbpedia.org/property/religion> ?uri }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:birthPlace res:Bangkok.?x dbp:religion?uri . }\n", + "\"What is the total number of relgions followed by people born in Bangkok? | 'Bangkok'-res:Bangkok | 'total'-dbo:populationTotal | 'relgions'-dbp:religion | 'born'-dbo:birthPlace\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Bangkok> . ?x <http://dbpedia.org/property/religion> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbo:associatedMusicalArtist res:Tony_Allen_(musician).?uri dbp:label res:Victor_Entertainment . }\n", - "\"Which musical artist collaborated with Tony Allen (musician) and label is Victor Entertainment? | 'Tony Allen (musician)'-res:Tony_Allen_(musician) | 'Victor Entertainment'-res:Victor_Entertainment | 'musical artist'-dbo:artist | 'collaborated'-dbo:team | 'label'-dbp:label\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/associatedMusicalArtist> <http://dbpedia.org/resource/Tony_Allen_(musician)> . ?uri <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Victor_Entertainment> . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:associatedMusicalActs res:Tony_Allen_(musician).?uri rdf:type dbo:MusicalArtist}\n", + "\"Which musical artist collaborated with Tony Allen (musician) and label is Victor Entertainment? | 'Tony Allen (musician)'-res:Tony_Allen_(musician) | 'Victor Entertainment'-res:Victor_Entertainment | 'musical artist'-dbo:artist | 'collaborated'-dbo:team | 'label'-dbp:label\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/associatedMusicalActs> <http://dbpedia.org/resource/Tony_Allen_(musician)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MusicalArtist>}\"\n", "\n", - " SELECT DISTINCT COUNT(?uri) WHERE {?uri dbo:computingPlatform res:Microsoft_Windows.?uri dbp:license res:Mac_OS } \n", - "\"Count the number of software which runs on Microsoft Windows and mac OS ? | 'software'-res:Software | 'Microsoft Windows'-res:Microsoft_Windows | 'OS'-res:OS | 'count'-dbo:type | 'runs'-dbo:series | 'mac'-dbo:person\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/computingPlatform> <http://dbpedia.org/resource/Microsoft_Windows> . ?uri <http://dbpedia.org/property/license> <http://dbpedia.org/resource/Mac_OS> } \"\n", + " SELECT DISTINCT COUNT(?uri) WHERE {?uri dbo:computingPlatform res:Microsoft_Windows } \n", + "\"Count the number of software which runs on Microsoft Windows and mac OS ? | 'software'-res:Software | 'Microsoft Windows'-res:Microsoft_Windows | 'OS'-res:OS | 'count'-dbo:type | 'runs'-dbo:series | 'mac'-dbo:person\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/computingPlatform> <http://dbpedia.org/resource/Microsoft_Windows> } \"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Martin_Molony dbp:race?uri. res:Coneygree rdf:type dbo:Race}\n", - "\"What is the common race of the Martin Molony and race of the Coneygree ? | 'Martin Molony'-res:Martin_Molony | 'Coneygree'-res:Coneygree | 'common race'-dbo:race | 'race'-dbo:race\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Martin_Molony> <http://dbpedia.org/property/race> ?uri . <http://dbpedia.org/resource/Coneygree> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Race>}\"\n", + " SELECT DISTINCT?uri WHERE { res:Martin_Molony dbp:commonRace?uri. res:Coneygree dbo:race?uri} \n", + "\"What is the common race of the Martin Molony and race of the Coneygree ? | 'Martin Molony'-res:Martin_Molony | 'Coneygree'-res:Coneygree | 'common race'-dbo:race | 'race'-dbo:race\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Martin_Molony> <http://dbpedia.org/property/commonRace> ?uri . <http://dbpedia.org/resource/Coneygree> <http://dbpedia.org/ontology/race> ?uri} \"\n", "\n", "SELECT DISTINCT?uri WHERE {?uri dbp:arena res:The_Palace_of_Auburn_Hills .?uri rdf:type dbo:SportsTeam}\n", "\"What sports team's arena is The Palace of Auburn Hills | 'The Palace of Auburn Hills'-res:The_Palace_of_Auburn_Hills | 'arena'-dbp:arena | 'sports team'-dbo:SportsTeam\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/arena> <http://dbpedia.org/resource/The_Palace_of_Auburn_Hills> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SportsTeam>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:company res:Playtone.?uri rdf:type dbo:TelevisionShow}\n", - "\"Name the TV show whose company is Playtone and written by Graham Yost? | 'TV'-res:Tv_test_pattern | 'Playtone'-res:Playtone | 'Graham Yost'-res:Graham_Yost | 'name'-dbp:name | 'show'-dbo:show | 'company'-dbo:company | 'written'-dbo:writer\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/company> <http://dbpedia.org/resource/Playtone> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}\"\n", + " SELECT DISTINCT?uri WHERE {?uri dbp:company res:Playtone.?uri dbo:writer res:Graham_Yost } \n", + "\"Name the TV show whose company is Playtone and written by Graham Yost? | 'TV'-res:Tv_test_pattern | 'Playtone'-res:Playtone | 'Graham Yost'-res:Graham_Yost | 'name'-dbp:name | 'show'-dbo:show | 'company'-dbo:company | 'written'-dbo:writer\",\" SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/company> <http://dbpedia.org/resource/Playtone> . ?uri <http://dbpedia.org/ontology/writer> <http://dbpedia.org/resource/Graham_Yost> } \"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Darth_Vader dbo:family?uri. res:Padmé_Amidala dbp:starring?uri. }\n", - "\"What is the fictional character which belongs to families of Darth Vader and Padm Amidala? | 'Darth Vader'-res:Darth_Vader | 'Padm Amidala'-res:Padmé_Amidala | 'fictional character'-dbo:description | 'belongs'-dbp:longs | 'families'-dbo:established\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Darth_Vader> <http://dbpedia.org/ontology/family> ?uri . <http://dbpedia.org/resource/Padmé_Amidala> <http://dbpedia.org/property/starring> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:longs res:Darth_Vader.?uri dbo:family res:Padmé_Amidala . }\n", + "\"What is the fictional character which belongs to families of Darth Vader and Padm Amidala? | 'Darth Vader'-res:Darth_Vader | 'Padm Amidala'-res:Padmé_Amidala | 'fictional character'-dbo:description | 'belongs'-dbp:longs | 'families'-dbo:established\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/longs> <http://dbpedia.org/resource/Darth_Vader> . ?uri <http://dbpedia.org/ontology/family> <http://dbpedia.org/resource/Padmé_Amidala> . }\"\n", "\n", - " SELECT DISTINCT COUNT(?uri) WHERE { res:Microsoft_Azure dbp:services?uri } \n", - "\"Count the number of other services of the companies which provides the Microsoft Azure as service ? | 'companies'-res:Bluegrass_companies | 'Microsoft Azure'-res:Microsoft_Azure | 'services'-dbp:services | 'services'-dbp:services\",\" SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Microsoft_Azure> <http://dbpedia.org/property/services> ?uri } \"\n", + " SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:services res:Microsoft_Azure.?x dbp:services?uri }\n", + "\"Count the number of other services of the companies which provides the Microsoft Azure as service ? | 'companies'-res:Bluegrass_companies | 'Microsoft Azure'-res:Microsoft_Azure | 'services'-dbp:services | 'services'-dbp:services\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/services> <http://dbpedia.org/resource/Microsoft_Azure> . ?x <http://dbpedia.org/property/services> ?uri }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:firstTeam res:Scuderia_Ferrari .?uri rdf:type dbo:FormulaOneRacer}\n", - "\"How many first drivers have participated when Scuderia Ferrari was a first team? | 'Scuderia Ferrari'-res:Scuderia_Ferrari | 'first team'-dbp:firstTeam | 'first driver'-dbo:firstDriver\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/firstTeam> <http://dbpedia.org/resource/Scuderia_Ferrari> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/FormulaOneRacer>}\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:firstTeam res:Scuderia_Ferrari.?x dbo:firstDriver?uri . }\n", + "\"How many first drivers have participated when Scuderia Ferrari was a first team? | 'Scuderia Ferrari'-res:Scuderia_Ferrari | 'first team'-dbp:firstTeam | 'first driver'-dbo:firstDriver\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/firstTeam> <http://dbpedia.org/resource/Scuderia_Ferrari> . ?x <http://dbpedia.org/ontology/firstDriver> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Swedish_Academy dbp:presenter?x.?x dbo:award?uri . }\n", - "\"What is the award which is presented by Swedish Academy? | 'Swedish Academy'-res:Sweden | 'Swedish Academy'-res:Swedish_Academy | 'presented'-dbp:presenter | 'award'-dbo:Award\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Swedish_Academy> <http://dbpedia.org/property/presenter> ?x . ?x <http://dbpedia.org/ontology/award> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Swedish_Academy dbp:presenter?x.?x dbo:Award?uri . }\n", + "\"What is the award which is presented by Swedish Academy? | 'Swedish Academy'-res:Sweden | 'Swedish Academy'-res:Swedish_Academy | 'presented'-dbp:presenter | 'award'-dbo:Award\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Swedish_Academy> <http://dbpedia.org/property/presenter> ?x . ?x <http://dbpedia.org/ontology/Award> ?uri . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:producer res:Michael_Deeley .?uri rdf:type dbo:Film}\n", - "\"Michael Deeley produce how many movies? | 'michael Deeley'-res:Michael_Deeley | 'produce'-dbo:producer | 'movies'-dbo:film\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/producer> <http://dbpedia.org/resource/Michael_Deeley> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:director res:Michael_Deeley .?uri rdf:type dbo:Film}\n", + "\"Michael Deeley produce how many movies? | 'michael Deeley'-res:Michael_Deeley | 'produce'-dbo:producer | 'movies'-dbo:film\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/director> <http://dbpedia.org/resource/Michael_Deeley> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}\"\n", "\n", - " SELECT DISTINCT?uri WHERE {?uri dbp:club res:Liang_Chow } \n", - "\"Who are in the liang chow club? | 'liang chow club'-res:Liang_Chow\",\" SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/club> <http://dbpedia.org/resource/Liang_Chow> } \"\n", + " SELECT DISTINCT?uri WHERE { res:Liang_Chow dbp:name?uri } \n", + "\"Who are in the liang chow club? | 'liang chow club'-res:Liang_Chow\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Liang_Chow> <http://dbpedia.org/property/name> ?uri } \"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE { res:Zurich_Affoltern_am_Albis_Zug dbp:line?x.?x dbo:country?uri . }\n", - "\"In how many countries does the Zurich Affoltern am Albis Zug line go? | 'countries'-res:Countries_of_the_United_Kingdom | 'Zurich Affoltern am Albis Zug'-res:Affoltern_am_Albis\",\"SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Zurich_Affoltern_am_Albis_Zug> <http://dbpedia.org/property/line> ?x . ?x <http://dbpedia.org/ontology/country> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbo:line res:Zurich_Affoltern_am_Albis . }\n", + "\"In how many countries does the Zurich Affoltern am Albis Zug line go? | 'countries'-res:Countries_of_the_United_Kingdom | 'Zurich Affoltern am Albis Zug'-res:Affoltern_am_Albis\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/line> <http://dbpedia.org/resource/Zurich_Affoltern_am_Albis> . }\"\n", "\n", "SELECT DISTINCT COUNT(?uri) WHERE { res:Julian_Leow_Beng_Kim dbp:almaMater?uri . }\n", "\"In how many places did Julian Leow Beng Kim study? | 'Julian Leow Beng Kim study'-res:Julian_Leow_Beng_Kim | 'study'-dbp:almaMater\",\"SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Julian_Leow_Beng_Kim> <http://dbpedia.org/property/almaMater> ?uri . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:almaMater res:Burbank_High_School.?uri dbo:director?x . }\n", - "\"How many movies were directed by the graduate of Burbank High School ? | 'Burbank High School'-res:Burbank_High_School_(Burbank,_California) | 'movies'-dbo:film | 'directed'-dbo:principal | 'graduate'-dbo:numberOfGraduateStudents\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/almaMater> <http://dbpedia.org/resource/Burbank_High_School> . ?uri <http://dbpedia.org/ontology/director> ?x . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:almaMater res:Burbank_High_School_(California) .?uri rdf:type dbo:Film}\n", + "\"How many movies were directed by the graduate of Burbank High School ? | 'Burbank High School'-res:Burbank_High_School_(Burbank,_California) | 'movies'-dbo:film | 'directed'-dbo:principal | 'graduate'-dbo:numberOfGraduateStudents\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/almaMater> <http://dbpedia.org/resource/Burbank_High_School_(California)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Vesak dbp:type?uri } \n", - "\"What is the type of Vesak ? | 'Vesak'-res:Vesak | 'type'-dbo:type\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Vesak> <http://dbpedia.org/property/type> ?uri } \"\n", + " SELECT DISTINCT?uri WHERE { res:Vesak dbo:type?uri } \n", + "\"What is the type of Vesak ? | 'Vesak'-res:Vesak | 'type'-dbo:type\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Vesak> <http://dbpedia.org/ontology/type> ?uri } \"\n", "\n", "SELECT DISTINCT?uri WHERE { res:Anna_Bergman dbo:parent?x.?x dbp:awards?uri . }\n", "\"Which awards did the parents of Anna Bergman win ? | 'Anna Bergman'-res:Anna_Bergman | 'parent'-dbo:parent | 'awards'-dbp:awards\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Anna_Bergman> <http://dbpedia.org/ontology/parent> ?x . ?x <http://dbpedia.org/property/awards> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:foundationPlace res:New_York.?x dbp:board?uri . }\n", - "\"What are some people who are on the board of companies founded in NY? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'NY'-res:New_York | 'board'-dbo:board | 'founded'-dbo:foundingYear\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/foundationPlace> <http://dbpedia.org/resource/New_York> . ?x <http://dbpedia.org/property/board> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:foundationPlace res:New_York.?uri dbp:board?x . }\n", + "\"What are some people who are on the board of companies founded in NY? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'NY'-res:New_York | 'board'-dbo:board | 'founded'-dbo:foundingYear\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/foundationPlace> <http://dbpedia.org/resource/New_York> . ?uri <http://dbpedia.org/property/board> ?x . }\"\n", "\n", "SELECT DISTINCT?uri WHERE {?x dbo:placeOfDeath res:California.?x dbp:musical?uri . }\n", "\"What are the musicals of the people died in California? | 'California'-res:California | 'musicals'-dbo:musicalArtist | 'died'-dbo:flag\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/placeOfDeath> <http://dbpedia.org/resource/California> . ?x <http://dbpedia.org/property/musical> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbo:operatingSystem res:C++.?uri dbp:writtenIn res:Windows . }\n", - "\"Which software uses windows as it's operating system and is written in C++ ? | 'software'-res:Software_Publishing_Corporation | 'C++'-res:C++ | 'windows'-dbo:show | 'operating'-dbo:operatingSystem | 'written'-dbp:writtenIn\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/operatingSystem> <http://dbpedia.org/resource/C++> . ?uri <http://dbpedia.org/property/writtenIn> <http://dbpedia.org/resource/Windows> . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:operatingSystem res:C++ .?uri rdf:type dbo:Software}\n", + "\"Which software uses windows as it's operating system and is written in C++ ? | 'software'-res:Software_Publishing_Corporation | 'C++'-res:C++ | 'windows'-dbo:show | 'operating'-dbo:operatingSystem | 'written'-dbp:writtenIn\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/operatingSystem> <http://dbpedia.org/resource/C++> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Software>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:language res:French_language.?x dbo:currency?uri . }\n", - "\"What currencies are circulated in the countries where people speak French? | 'French'-res:French_language | 'speak'-dbo:language | ''-dbo:country | ''-dbo:country\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/language> <http://dbpedia.org/resource/French_language> . ?x <http://dbpedia.org/ontology/currency> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:language res:French_language.?x dbp:currency?uri . }\n", + "\"What currencies are circulated in the countries where people speak French? | 'French'-res:French_language | 'speak'-dbo:language | ''-dbo:country | ''-dbo:country\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/language> <http://dbpedia.org/resource/French_language> . ?x <http://dbpedia.org/property/currency> ?uri . }\"\n", "\n", - " SELECT DISTINCT COUNT(?uri) WHERE {?x otherParty res:Janata_Party.?x dbo:otherParty?uri }\n", - "\"Give the distinct number of other party of the people which have one of the party as Janata Party ? | 'Janata Party'-res:Janata_Party | 'other party'-dbo:otherParty | 'other party'-dbo:otherParty\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?x otherParty <http://dbpedia.org/resource/Janata_Party> . ?x <http://dbpedia.org/ontology/otherParty> ?uri }\"\n", + " SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:party res:Janata_Party.?x dbo:otherParty?uri }\n", + "\"Give the distinct number of other party of the people which have one of the party as Janata Party ? | 'Janata Party'-res:Janata_Party | 'other party'-dbo:otherParty | 'other party'-dbo:otherParty\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/party> <http://dbpedia.org/resource/Janata_Party> . ?x <http://dbpedia.org/ontology/otherParty> ?uri }\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:First_Legislative_Assembly_of_Uttar_Pradesh dbp:leader?uri } \n", - "\"Which political party got elected in First Legislative Assembly of Uttar Pradesh ? | 'First Legislative Assembly of Uttar Pradesh'-res:First_Legislative_Assembly_of_Uttar_Pradesh | 'political party'-dbp:party | 'elected'-dbo:president\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/First_Legislative_Assembly_of_Uttar_Pradesh> <http://dbpedia.org/property/leader> ?uri } \"\n", + "SELECT DISTINCT?uri WHERE { res:First_Legislative_Assembly_of_Uttar_Pradesh dbp:party?x.?x dbo:president?uri . }\n", + "\"Which political party got elected in First Legislative Assembly of Uttar Pradesh ? | 'First Legislative Assembly of Uttar Pradesh'-res:First_Legislative_Assembly_of_Uttar_Pradesh | 'political party'-dbp:party | 'elected'-dbo:president\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/First_Legislative_Assembly_of_Uttar_Pradesh> <http://dbpedia.org/property/party> ?x . ?x <http://dbpedia.org/ontology/president> ?uri . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE { res:Jimmy_Wales dbp:name?x.?x dbo:owner?uri . }\n", - "\"How many organizations own the website to which Jimmy Wales contributes? | 'website'-res:Website | 'Jimmy Wales'-res:Jimmy_Wales | 'organizations'-dbo:company | 'contributes'-dbo:participant\",\"SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Jimmy_Wales> <http://dbpedia.org/property/name> ?x . ?x <http://dbpedia.org/ontology/owner> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:leaderName res:Jimmy_Wales.?x dbo:owner?uri . }\n", + "\"How many organizations own the website to which Jimmy Wales contributes? | 'website'-res:Website | 'Jimmy Wales'-res:Jimmy_Wales | 'organizations'-dbo:company | 'contributes'-dbo:participant\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/leaderName> <http://dbpedia.org/resource/Jimmy_Wales> . ?x <http://dbpedia.org/ontology/owner> ?uri . }\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Army_Group_Oberrhein_(Germany) dbo:notableCommander?uri } \n", "\"Name the notable commanders of Army Group Oberrhein ? | 'Army Group Oberrhein'-res:Army_Group_Oberrhein_(Germany) | 'name'-dbo:name | 'notable commanders'-dbo:notableCommander\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Army_Group_Oberrhein_(Germany)> <http://dbpedia.org/ontology/notableCommander> ?uri } \"\n", @@ -2679,26 +2423,26 @@ "SELECT DISTINCT?uri WHERE {?uri dbp:locatedInArea res:Inyo_National_Forest .?uri rdf:type dbo:Mountain}\n", "\"Which mountains are contained in Inyo National Forest? | 'Inyo National Forest'-res:Inyo_National_Forest | 'Nation'-dbo:locatedInArea | 'mountain'-dbo:Mountain\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/locatedInArea> <http://dbpedia.org/resource/Inyo_National_Forest> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Mountain>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:spouse res:Frédéric_Joliot-Curie.?uri dbp:children?x . }\n", - "\"Whose children are married to Fredric Joliot-Curie? | 'Fredric Joliot-Curie'-res:Frédéric_Joliot-Curie | 'children'-dbp:children | 'married'-dbo:spouse\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/spouse> <http://dbpedia.org/resource/Frédéric_Joliot-Curie> . ?uri <http://dbpedia.org/property/children> ?x . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:spouse res:Fredric_Joliot-Curie.?x dbp:children?uri . }\n", + "\"Whose children are married to Fredric Joliot-Curie? | 'Fredric Joliot-Curie'-res:Frédéric_Joliot-Curie | 'children'-dbp:children | 'married'-dbo:spouse\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/spouse> <http://dbpedia.org/resource/Fredric_Joliot-Curie> . ?x <http://dbpedia.org/property/children> ?uri . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:First_National_Bank_and_Trust_Building_(Lima,_Ohio) dbp:architecturalStyle?uri } \n", - "\"What is the architecture of First National Bank and Trust Building (Lima, Ohio) ? | 'First National Bank'-res:First_National_Bank | 'Trust Building (Lima, Ohio)'-res:First_National_Bank_and_Trust_Building_(Lima,_Ohio) | 'architecture'-dbo:architecturalStyle\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/First_National_Bank_and_Trust_Building_(Lima,_Ohio)> <http://dbpedia.org/property/architecturalStyle> ?uri } \"\n", + " SELECT DISTINCT?uri WHERE { res:First_National_Bank_and_Trust_Building_(Lima,_Ohio) dbp:architecture?uri } \n", + "\"What is the architecture of First National Bank and Trust Building (Lima, Ohio) ? | 'First National Bank'-res:First_National_Bank | 'Trust Building (Lima, Ohio)'-res:First_National_Bank_and_Trust_Building_(Lima,_Ohio) | 'architecture'-dbo:architecturalStyle\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/First_National_Bank_and_Trust_Building_(Lima,_Ohio)> <http://dbpedia.org/property/architecture> ?uri } \"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:birthPlace res:California.?x dbp:presenter?uri . }\n", - "\"Count all the awards which were presented by something located in California. | 'California'-res:California | 'count'-dbo:country | 'awards'-dbo:award | 'located'-dbo:gross\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/California> . ?x <http://dbpedia.org/property/presenter> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:location res:California.?x dbp:awards?uri . }\n", + "\"Count all the awards which were presented by something located in California. | 'California'-res:California | 'count'-dbo:country | 'awards'-dbo:award | 'located'-dbo:gross\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/California> . ?x <http://dbpedia.org/property/awards> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:primeminister res:Gough_Whitlam.?uri dbp:position?x . }\n", - "\"Who all held a position when Gough Whitlam was the prime minister? | 'Gough Whitlam'-res:Gough_Whitlam | 'held'-dbo:office | 'position'-dbo:position | 'prime minister'-dbo:primeMinister\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/primeminister> <http://dbpedia.org/resource/Gough_Whitlam> . ?uri <http://dbpedia.org/property/position> ?x . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:primeMinister res:Gough_Whitlam.?x dbp:position?uri . }\n", + "\"Who all held a position when Gough Whitlam was the prime minister? | 'Gough Whitlam'-res:Gough_Whitlam | 'held'-dbo:office | 'position'-dbo:position | 'prime minister'-dbo:primeMinister\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/primeMinister> <http://dbpedia.org/resource/Gough_Whitlam> . ?x <http://dbpedia.org/property/position> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Kim_Sawchuk dbo:locationCountry?uri. res:Vuelta_Mexico_Telmex dbp:region?uri. }\n", - "\"In which part of the world will I find Kim Sawchuk and Vuelta Mexico Telmex? | 'I'-res:I | 'find Kim Sawchuk'-res:Kim_Sawchuk | 'Vuelta Mexico Telmex'-res:Vuelta_Mexico_Telmex\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kim_Sawchuk> <http://dbpedia.org/ontology/locationCountry> ?uri . <http://dbpedia.org/resource/Vuelta_Mexico_Telmex> <http://dbpedia.org/property/region> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Kim_Sawchuk dbo:locationCity?uri. res:Vuelta_Mexico_Telmex dbp:locationCountry?uri. }\n", + "\"In which part of the world will I find Kim Sawchuk and Vuelta Mexico Telmex? | 'I'-res:I | 'find Kim Sawchuk'-res:Kim_Sawchuk | 'Vuelta Mexico Telmex'-res:Vuelta_Mexico_Telmex\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kim_Sawchuk> <http://dbpedia.org/ontology/locationCity> ?uri . <http://dbpedia.org/resource/Vuelta_Mexico_Telmex> <http://dbpedia.org/property/locationCountry> ?uri . }\"\n", "\n", "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:headquarters res:Stockholm . }\n", "\"Stockholm is the HQ of how many things? | 'stockholm'-res:Stockholm | 'HQ'-res:HQ | 'HQ'-dbp:headquarters\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Stockholm> . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Salthill dbp:nationality?uri } \n", - "\"What is a salthill? | 'Salthill'-res:Salthill\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Salthill> <http://dbpedia.org/property/nationality> ?uri } \"\n", + " SELECT DISTINCT?uri WHERE { res:Salthill dbp:locationCountry?uri } \n", + "\"What is a salthill? | 'Salthill'-res:Salthill\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Salthill> <http://dbpedia.org/property/locationCountry> ?uri } \"\n", "\n", "SELECT DISTINCT COUNT(?uri) WHERE { res:Baco_noir dbo:wineRegion?uri . }\n", "\"In how many regions is the Baco Noir made? | 'Baco Noir'-res:Baco_noir | 'regions'-dbo:wineRegion\",\"SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Baco_noir> <http://dbpedia.org/ontology/wineRegion> ?uri . }\"\n", @@ -2706,8 +2450,8 @@ " SELECT DISTINCT?uri WHERE { res:Jerusalem_Institute_of_Justice dbp:service?uri } \n", "\"Where does the Jerusalem Institute of Justice render their services? | 'Jerusalem Institute of Justice'-res:Jerusalem_Institute_of_Justice | 'render'-dbo:picture | 'services'-dbo:service\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jerusalem_Institute_of_Justice> <http://dbpedia.org/property/service> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:tenants res:Boston_Red_Sox.?x dbo:founded?uri . }\n", - "\"Who created the stadiums who have been rented by the Boston Red Sox? | 'Boston Red Sox'-res:Boston_Red_Sox | 'created'-dbo:author | 'stadiums'-dbo:stadium | 'rented'-dbo:tenant\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/tenants> <http://dbpedia.org/resource/Boston_Red_Sox> . ?x <http://dbpedia.org/ontology/founded> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:tenant res:Boston_Red_Sox.?x dbp:tenants?uri . }\n", + "\"Who created the stadiums who have been rented by the Boston Red Sox? | 'Boston Red Sox'-res:Boston_Red_Sox | 'created'-dbo:author | 'stadiums'-dbo:stadium | 'rented'-dbo:tenant\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/tenant> <http://dbpedia.org/resource/Boston_Red_Sox> . ?x <http://dbpedia.org/property/tenants> ?uri . }\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Battle_of_Fort_Stephenson dbo:commander?uri } \n", "\"List down the commanders of Battle of Fort stephenson ? | 'Battle of Fort stephenson'-res:Battle_of_Fort_Stephenson | 'commanders'-dbo:commander\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Battle_of_Fort_Stephenson> <http://dbpedia.org/ontology/commander> ?uri } \"\n", @@ -2715,35 +2459,35 @@ " SELECT DISTINCT?uri WHERE { res:The_Prodigal_Son_(play) dbp:subject?uri } \n", "\"What is the subject of The Prodigal son ? | 'The Prodigal son'-res:The_Prodigal_Son_(play) | 'subject'-dbp:subject\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Prodigal_Son_(play)> <http://dbpedia.org/property/subject> ?uri } \"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbo:architecturalStyle res:ARM_architecture . }\n", - "\"ARM Architecture acts as a game platform for how many things? | 'aRM Architecture'-res:ARM_architecture | 'acts'-dbo:material | 'game platform'-dbo:computingPlatform\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/architecturalStyle> <http://dbpedia.org/resource/ARM_architecture> . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:material res:ARM_architecture.?x dbp:computingPlatform?uri . }\n", + "\"ARM Architecture acts as a game platform for how many things? | 'aRM Architecture'-res:ARM_architecture | 'acts'-dbo:material | 'game platform'-dbo:computingPlatform\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/material> <http://dbpedia.org/resource/ARM_architecture> . ?x <http://dbpedia.org/property/computingPlatform> ?uri . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbo:creator res:Clamp_(manga_artists) . }\n", - "\"How many people have voiced characters sculpted by Clamp? | 'Clamp'-res:Clamp_(manga_artists) | 'voiced'-dbo:voice\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/creator> <http://dbpedia.org/resource/Clamp_(manga_artists)> . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:creator res:Clamp_(manga_artists).?x dbp:voice?uri . }\n", + "\"How many people have voiced characters sculpted by Clamp? | 'Clamp'-res:Clamp_(manga_artists) | 'voiced'-dbo:voice\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/creator> <http://dbpedia.org/resource/Clamp_(manga_artists)> . ?x <http://dbpedia.org/property/voice> ?uri . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:training res:University_of_Oxford.?x dbo:education?uri . }\n", - "\"In how many different people are alumini of the University of Oxford working? | 'alumini'-res:NK_Aluminij | 'University of Oxford'-res:University_of_Oxford | 'working'-dbo:training\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/training> <http://dbpedia.org/resource/University_of_Oxford> . ?x <http://dbpedia.org/ontology/education> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:training res:University_of_Oxford.?uri dbo:training?x . }\n", + "\"In how many different people are alumini of the University of Oxford working? | 'alumini'-res:NK_Aluminij | 'University of Oxford'-res:University_of_Oxford | 'working'-dbo:training\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/training> <http://dbpedia.org/resource/University_of_Oxford> . ?uri <http://dbpedia.org/ontology/training> ?x . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Montecito_Inn dbp:developer?uri } \n", - "\"Who is the developer of Montecito Inn ? | 'Montecito Inn'-res:Montecito_Inn | 'developer'-dbo:developer\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Montecito_Inn> <http://dbpedia.org/property/developer> ?uri } \"\n", + " SELECT DISTINCT?uri WHERE { res:Montecito_Inn dbo:developer?uri } \n", + "\"Who is the developer of Montecito Inn ? | 'Montecito Inn'-res:Montecito_Inn | 'developer'-dbo:developer\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Montecito_Inn> <http://dbpedia.org/ontology/developer> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:recordLabel res:Point_Blank_Records.?uri dbp:starring?x . }\n", - "\"What are the movies whose cast members are signed up with Point Blank Records? | 'Point Blank Records'-res:Point_Blank_Records | 'movies'-dbo:film | 'cast members'-dbo:genre | 'signed'-dbo:movement\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/recordLabel> <http://dbpedia.org/resource/Point_Blank_Records> . ?uri <http://dbpedia.org/property/starring> ?x . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:recordLabel res:Point_Blank_Records.?x dbo:starring?uri . }\n", + "\"What are the movies whose cast members are signed up with Point Blank Records? | 'Point Blank Records'-res:Point_Blank_Records | 'movies'-dbo:film | 'cast members'-dbo:genre | 'signed'-dbo:movement\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/recordLabel> <http://dbpedia.org/resource/Point_Blank_Records> . ?x <http://dbpedia.org/ontology/starring> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Craig_Van_Tilbury dbo:occupation?uri. res:Karen_Grigorian dbp:profession?uri. }\n", - "\"What do craig Van tilbury and karen Grigorian do for a living? | 'Van tilbury'-res:Craig_Van_Tilbury | 'Karen grigorian'-res:Karen_Grigorian | 'craig'-dbo:prominence | 'living'-dbo:occupation\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Craig_Van_Tilbury> <http://dbpedia.org/ontology/occupation> ?uri . <http://dbpedia.org/resource/Karen_Grigorian> <http://dbpedia.org/property/profession> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbo:occupation res:Craig_Van_Tilbury.?uri dbp:residence res:Karen_Grigorian. }\n", + "\"What do craig Van tilbury and karen Grigorian do for a living? | 'Van tilbury'-res:Craig_Van_Tilbury | 'Karen grigorian'-res:Karen_Grigorian | 'craig'-dbo:prominence | 'living'-dbo:occupation\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/occupation> <http://dbpedia.org/resource/Craig_Van_Tilbury> . ?uri <http://dbpedia.org/property/residence> <http://dbpedia.org/resource/Karen_Grigorian> . }\"\n", "\n", "SELECT DISTINCT?uri WHERE {?uri dbp:artist res:Christopher_Franke .?uri rdf:type dbo:TelevisionShow}\n", "\"Name the televesion show which has artist named Christopher Franke ? | 'name televesion show'-res:The_Show_with_No_Name | 'Christopher Franke'-res:Christopher_Franke | 'artist'-dbo:artist\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/artist> <http://dbpedia.org/resource/Christopher_Franke> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Bobby_Beasley dbp:race?uri } \n", - "\"name the races where bobby beasley took part ? | 'bobby beasley'-res:Bobby_Beasley | 'races'-dbo:race\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bobby_Beasley> <http://dbpedia.org/property/race> ?uri } \"\n", + " SELECT DISTINCT?uri WHERE { res:Bobby_Beasley dbo:race?uri } \n", + "\"name the races where bobby beasley took part ? | 'bobby beasley'-res:Bobby_Beasley | 'races'-dbo:race\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bobby_Beasley> <http://dbpedia.org/ontology/race> ?uri } \"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:North_Sea dbp:inflow?uri } \n", - "\"List all that flows into the north sea? | 'north sea'-res:North_Sea | 'flows'-dbp:inflow\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/North_Sea> <http://dbpedia.org/property/inflow> ?uri } \"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:inflow res:North_Sea . }\n", + "\"List all that flows into the north sea? | 'north sea'-res:North_Sea | 'flows'-dbp:inflow\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/inflow> <http://dbpedia.org/resource/North_Sea> . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:head res:Nazi_Germany.?x dbo:leader?uri . }\n", - "\"How many head of agencies were there in Nazi Germany? | 'agencies'-res:Agencies_of_the_European_Union | 'Nazi Germany'-res:Nazi_Germany | 'head'-dbo:head\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/head> <http://dbpedia.org/resource/Nazi_Germany> . ?x <http://dbpedia.org/ontology/leader> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:type res:Nazi_Germany.?x dbo:head?uri . }\n", + "\"How many head of agencies were there in Nazi Germany? | 'agencies'-res:Agencies_of_the_European_Union | 'Nazi Germany'-res:Nazi_Germany | 'head'-dbo:head\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/type> <http://dbpedia.org/resource/Nazi_Germany> . ?x <http://dbpedia.org/ontology/head> ?uri . }\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Wilfred_McDonald dbp:playedFor?uri } \n", "\"What are the teams for which Wilfred McDonald played for? | 'Wilfred McDonald'-res:Wilfred_McDonald | 'played for'-dbp:playedFor\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Wilfred_McDonald> <http://dbpedia.org/property/playedFor> ?uri } \"\n", @@ -2751,8 +2495,8 @@ "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:league res:2013–14_La_Liga.?uri dbp:youthclubs?x . }\n", "\"Count all those whose youthclub performed at the 14-15 La Liga? | '14-15 La Liga'-res:2013–14_La_Liga | 'count'-dbo:country | 'performed'-dbo:artist\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/league> <http://dbpedia.org/resource/2013–14_La_Liga> . ?uri <http://dbpedia.org/property/youthclubs> ?x . }\"\n", "\n", - " SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:inflow res:Atlantic_Ocean.?x dbp:cities?uri }\n", - "\"How many cities are around the sea which flows into the Atlantic? | 'Atlantic'-res:Atlantic_Ocean | 'cities'-dbo:country | 'sea'-dbp:shore | 'flows'-dbo:outflow\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/inflow> <http://dbpedia.org/resource/Atlantic_Ocean> . ?x <http://dbpedia.org/property/cities> ?uri }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:inflow res:Atlantic_Ocean.?x dbp:cities?uri . }\n", + "\"How many cities are around the sea which flows into the Atlantic? | 'Atlantic'-res:Atlantic_Ocean | 'cities'-dbo:country | 'sea'-dbp:shore | 'flows'-dbo:outflow\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/inflow> <http://dbpedia.org/resource/Atlantic_Ocean> . ?x <http://dbpedia.org/property/cities> ?uri . }\"\n", "\n", "SELECT DISTINCT?uri WHERE {?x dbp:cinematography res:John_Derek.?x dbo:starring?uri . }\n", "\"Who all are starring in the movies where director of photography is John Derek ? | 'John Derek'-res:John_Derek | 'starring'-dbo:starring | 'movies'-dbo:film | 'director'-dbo:director | 'photography'-dbo:picture\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/cinematography> <http://dbpedia.org/resource/John_Derek> . ?x <http://dbpedia.org/ontology/starring> ?uri . }\"\n", @@ -2775,62 +2519,62 @@ "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbo:knownFor res:Dragons'_Den_(UK_TV_series) . }\n", "\"How many people are known for Dragons' Den? | 'Dragons' Den'-res:Dragons'_Den_(UK_TV_series) | 'known for'-dbo:knownFor\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/knownFor> <http://dbpedia.org/resource/Dragons'_Den_(UK_TV_series)> . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:writer res:Jump_Square.?x dbo:writer?uri . }\n", - "\"How many different writers have written for Jump Square? | 'Jump Square'-res:Jump_Square | 'writers'-dbo:writer | 'written'-dbo:writer\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/writer> <http://dbpedia.org/resource/Jump_Square> . ?x <http://dbpedia.org/ontology/writer> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:writer res:Jump_Square.?x dbp:writer?uri . }\n", + "\"How many different writers have written for Jump Square? | 'Jump Square'-res:Jump_Square | 'writers'-dbo:writer | 'written'-dbo:writer\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/writer> <http://dbpedia.org/resource/Jump_Square> . ?x <http://dbpedia.org/property/writer> ?uri . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:European_Go_Federation dbp:membership?uri } \n", - "\"Name the members of European Go Federation? | 'European Go Federation'-res:Europe | 'European Go Federation'-res:European_Go_Federation | 'name'-dbp:name | 'members'-dbo:membership | ''-dbo:country\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/European_Go_Federation> <http://dbpedia.org/property/membership> ?uri } \"\n", + " SELECT DISTINCT?uri WHERE {?uri dbp:membership res:European_Go_Federation } \n", + "\"Name the members of European Go Federation? | 'European Go Federation'-res:Europe | 'European Go Federation'-res:European_Go_Federation | 'name'-dbp:name | 'members'-dbo:membership | ''-dbo:country\",\" SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/membership> <http://dbpedia.org/resource/European_Go_Federation> } \"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE { res:National_Basketball_Association dbp:name?uri .?uri rdf:type dbo:NBAPlayer}\n", - "\" Count the participants of the NBA. | 'NBA'-res:National_Basketball_Association | 'Count'-dbo:type | 'participants'-dbo:participant\",\"SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/National_Basketball_Association> <http://dbpedia.org/property/name> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/NBAPlayer>}\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:league res:National_Basketball_Association.?x dbo:team?uri . }\n", + "\" Count the participants of the NBA. | 'NBA'-res:National_Basketball_Association | 'Count'-dbo:type | 'participants'-dbo:participant\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/league> <http://dbpedia.org/resource/National_Basketball_Association> . ?x <http://dbpedia.org/ontology/team> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:operator res:Norfolk_Southern_Railway.?x dbp:servingRailwayLine?uri . }\n", - "\"Who has stock in the railway lines managed by Norfolk Southern Railway? | 'Norfolk Southern Railway'-res:Norfolk_Southern_Railway | 'stock'-dbo:languageFamily | 'railway lines'-dbo:servingRailwayLine | 'managed'-dbo:leader\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/operator> <http://dbpedia.org/resource/Norfolk_Southern_Railway> . ?x <http://dbpedia.org/property/servingRailwayLine> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:operator res:Norfolk_Southern_Railway.?x dbp:railwayLine?uri . }\n", + "\"Who has stock in the railway lines managed by Norfolk Southern Railway? | 'Norfolk Southern Railway'-res:Norfolk_Southern_Railway | 'stock'-dbo:languageFamily | 'railway lines'-dbo:servingRailwayLine | 'managed'-dbo:leader\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/operator> <http://dbpedia.org/resource/Norfolk_Southern_Railway> . ?x <http://dbpedia.org/property/railwayLine> ?uri . }\"\n", "\n", "SELECT DISTINCT?uri WHERE {?x dbp:assembly res:Toluca.?x dbo:related?uri . }\n", "\"Enumerate the cars related to the ones assembled in Toluca? | 'Toluca'-res:Toluca | 'enumerate'-dbp:quote | 'cars'-dbo:management | 'related'-dbo:related | 'assembled'-dbp:assembly\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/assembly> <http://dbpedia.org/resource/Toluca> . ?x <http://dbpedia.org/ontology/related> ?uri . }\"\n", "\n", - " SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:product res:Wealth_management.?x dbo:product?uri }\n", - "\"Count the number of other product of the banks whose one of the product is Wealth management ? | 'Wealth management'-res:Wealth_management | 'count'-dbo:type | 'product'-dbo:product | 'banks'-dbo:series | 'product'-dbo:product\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/product> <http://dbpedia.org/resource/Wealth_management> . ?x <http://dbpedia.org/ontology/product> ?uri }\"\n", + " SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:products res:Wealth_management.?x dbo:product?uri }\n", + "\"Count the number of other product of the banks whose one of the product is Wealth management ? | 'Wealth management'-res:Wealth_management | 'count'-dbo:type | 'product'-dbo:product | 'banks'-dbo:series | 'product'-dbo:product\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/products> <http://dbpedia.org/resource/Wealth_management> . ?x <http://dbpedia.org/ontology/product> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:producer res:Julie_Gardner.?uri dbp:related?x . }\n", - "\"What are all the TV shows which are related to the ones produced by Julie Gardner? | 'TV'-res:Lockheed_T-33 | 'Julie Gardner'-res:Julie_Gardner | 'shows'-dbo:place | 'related'-dbo:related | 'produced'-dbo:manufacturer\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/producer> <http://dbpedia.org/resource/Julie_Gardner> . ?uri <http://dbpedia.org/property/related> ?x . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:producer res:Julie_Gardner.?uri dbp:company?x . }\n", + "\"What are all the TV shows which are related to the ones produced by Julie Gardner? | 'TV'-res:Lockheed_T-33 | 'Julie Gardner'-res:Julie_Gardner | 'shows'-dbo:place | 'related'-dbo:related | 'produced'-dbo:manufacturer\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/producer> <http://dbpedia.org/resource/Julie_Gardner> . ?uri <http://dbpedia.org/property/company> ?x . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbo:cinematography res:Jordan_Cronenweth . }\n", - "\"How many movies have been cinematographed by Jordan Cronenweth? | 'Jordan Cronenweth'-res:Jordan_Cronenweth | 'movies'-dbo:film | 'cinematographed'-dbo:cinematography\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/cinematography> <http://dbpedia.org/resource/Jordan_Cronenweth> . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:cinematography res:Jordan_Cronenweth .?uri rdf:type dbo:Film}\n", + "\"How many movies have been cinematographed by Jordan Cronenweth? | 'Jordan Cronenweth'-res:Jordan_Cronenweth | 'movies'-dbo:film | 'cinematographed'-dbo:cinematography\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/cinematography> <http://dbpedia.org/resource/Jordan_Cronenweth> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}\"\n", "\n", "SELECT DISTINCT?uri WHERE {?uri dbp:creator res:Brian_Graden .?uri rdf:type dbo:TelevisionShow}\n", "\"What tv show is created by Brian Graden? | 'Brian Graden'-res:Brian_Graden | 'created'-dbo:developer\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/creator> <http://dbpedia.org/resource/Brian_Graden> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:residence?uri . }\n", - "\"Count the total religions followed by the ones living in England. | 'England'-res:England | 'count'-dbo:country | 'total religions'-dbp:result | 'living'-dbo:occupation\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/residence> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:country res:England.?x dbo:religion?uri . }\n", + "\"Count the total religions followed by the ones living in England. | 'England'-res:England | 'count'-dbo:country | 'total religions'-dbp:result | 'living'-dbo:occupation\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/country> <http://dbpedia.org/resource/England> . ?x <http://dbpedia.org/ontology/religion> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:starring res:Stella_Kowalski.?x dbp:author?uri . }\n", - "\"Who wrote the play in which a character called Stella Kowalski exists? | 'Stella Kowalski exists'-res:Stella | 'wrote'-dbo:author | 'play'-dbo:starring | 'character'-dbo:status | 'called'-dbo:alias\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Stella_Kowalski> . ?x <http://dbpedia.org/property/author> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:characters res:Stella_Kowalski.?x dbp:author?uri . }\n", + "\"Who wrote the play in which a character called Stella Kowalski exists? | 'Stella Kowalski exists'-res:Stella | 'wrote'-dbo:author | 'play'-dbo:starring | 'character'-dbo:status | 'called'-dbo:alias\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/characters> <http://dbpedia.org/resource/Stella_Kowalski> . ?x <http://dbpedia.org/property/author> ?uri . }\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Kim_Sawchuk dbo:region?uri } \n", "\"What is the region of Kim Sawchuk ? | 'Kim Sawchuk'-res:Kim_Sawchuk | 'region'-dbo:region\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kim_Sawchuk> <http://dbpedia.org/ontology/region> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:architect res:Krasnye_Vorota_(Moscow_Metro).?x dbo:notableBuilding?uri . }\n", - "\"What are the important buildings of the architect whose one of the significant building is Krasnye Vorota? | 'Krasnye Vorota'-res:Krasnye_Vorota_(Moscow_Metro) | 'buildings'-dbo:production | 'architect'-dbo:architect | 'building'-dbo:building\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/architect> <http://dbpedia.org/resource/Krasnye_Vorota_(Moscow_Metro)> . ?x <http://dbpedia.org/ontology/notableBuilding> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:architect res:Krasnye_Vorota_(Moscow_Metro).?x dbp:building?uri . }\n", + "\"What are the important buildings of the architect whose one of the significant building is Krasnye Vorota? | 'Krasnye Vorota'-res:Krasnye_Vorota_(Moscow_Metro) | 'buildings'-dbo:production | 'architect'-dbo:architect | 'building'-dbo:building\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/architect> <http://dbpedia.org/resource/Krasnye_Vorota_(Moscow_Metro)> . ?x <http://dbpedia.org/property/building> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Robert_Newton_Hall dbo:institution?uri. res:Erica_Frank dbp:workName?uri. }\n", - "\"Name the common institute of Robert hall and Erica Frank ? | 'Robert hall'-res:Robert_Newton_Hall | 'Erica Frank'-res:Erica_Frank | 'name'-dbp:name | 'common institute'-dbo:institution\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Robert_Newton_Hall> <http://dbpedia.org/ontology/institution> ?uri . <http://dbpedia.org/resource/Erica_Frank> <http://dbpedia.org/property/workName> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbo:institution res:Robert_Newton_Hall . }\n", + "\"Name the common institute of Robert hall and Erica Frank ? | 'Robert hall'-res:Robert_Newton_Hall | 'Erica Frank'-res:Erica_Frank | 'name'-dbp:name | 'common institute'-dbo:institution\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/institution> <http://dbpedia.org/resource/Robert_Newton_Hall> . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:recordLabel res:Pablo_Records.?uri dbo:spouse?x . }\n", - "\"Give me a list of everyone who married the musicians signed up with Pablo Records? | 'musicians'-res:Musicians_Institute | 'Pablo Records'-res:Pablo_Records | 'married'-dbp:spouse | 'signed'-dbo:movement\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/recordLabel> <http://dbpedia.org/resource/Pablo_Records> . ?uri <http://dbpedia.org/ontology/spouse> ?x . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:label res:Pablo_Records.?x dbo:spouse?uri . }\n", + "\"Give me a list of everyone who married the musicians signed up with Pablo Records? | 'musicians'-res:Musicians_Institute | 'Pablo Records'-res:Pablo_Records | 'married'-dbp:spouse | 'signed'-dbo:movement\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Pablo_Records> . ?x <http://dbpedia.org/ontology/spouse> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:BMW_M43 dbp:engine?x.?x dbo:predecessor?uri . }\n", - "\"What is the predecessor of the car engine which was succeeded by BMW M43 ? | 'BMW'-res:BMW | 'M43'-res:BMW_M43 | 'M43'-res:BMW_M43 | 'BMW'-res:BMW | 'predecessor'-dbo:predecessor | 'car engine'-dbp:engine | 'succeeded'-dbo:successor\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/BMW_M43> <http://dbpedia.org/property/engine> ?x . ?x <http://dbpedia.org/ontology/predecessor> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:BMW_M43 dbp:successor?x.?x dbo:predecessor?uri . }\n", + "\"What is the predecessor of the car engine which was succeeded by BMW M43 ? | 'BMW'-res:BMW | 'M43'-res:BMW_M43 | 'M43'-res:BMW_M43 | 'BMW'-res:BMW | 'predecessor'-dbo:predecessor | 'car engine'-dbp:engine | 'succeeded'-dbo:successor\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/BMW_M43> <http://dbpedia.org/property/successor> ?x . ?x <http://dbpedia.org/ontology/predecessor> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:locationCity res:New_Taipei_City.?uri dbo:manufacturer?x . }\n", - "\"Which gadgets are made by companies of New Taipei City? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'New Taipei City'-res:New_Taipei_City | 'city'-dbp:locationCity | 'made by'-dbo:manufacturer\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/locationCity> <http://dbpedia.org/resource/New_Taipei_City> . ?uri <http://dbpedia.org/ontology/manufacturer> ?x . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:locationCity res:Taipei_City .?uri rdf:type dbo:Device}\n", + "\"Which gadgets are made by companies of New Taipei City? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'New Taipei City'-res:New_Taipei_City | 'city'-dbp:locationCity | 'made by'-dbo:manufacturer\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/locationCity> <http://dbpedia.org/resource/Taipei_City> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Device>}\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Wan_Air dbp:hubs?uri } \n", "\"What is the hub of Wan Air ? | 'Wan Air'-res:Wan_Air | 'hub'-dbp:hubs\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Wan_Air> <http://dbpedia.org/property/hubs> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:headquarters res:Amstelveen.?x dbo:membership?uri . }\n", - "\"Who are the members of organizations headquartered at Amstelveen? | 'Amstelveen'-res:Amstelveen | 'members'-dbo:part | 'organizations'-dbo:company | 'headquartered'-dbo:headquarter\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Amstelveen> . ?x <http://dbpedia.org/ontology/membership> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:headquarters res:Amstelveen .?uri rdf:type dbo:Organisation}\n", + "\"Who are the members of organizations headquartered at Amstelveen? | 'Amstelveen'-res:Amstelveen | 'members'-dbo:part | 'organizations'-dbo:company | 'headquartered'-dbo:headquarter\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Amstelveen> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Organisation>}\"\n", "\n", "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:club res:Middlesbrough_F.C..?x dbo:manager?uri . }\n", "\"How many people have coached the players of Middlesbrough FC? | 'Middlesbrough FC'-res:Middlesbrough_F.C. | 'coached'-dbo:ground | 'players'-dbo:participant\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/club> <http://dbpedia.org/resource/Middlesbrough_F.C.> . ?x <http://dbpedia.org/ontology/manager> ?uri . }\"\n", @@ -2838,14 +2582,14 @@ "SELECT DISTINCT?uri WHERE {?x dbp:owner res:Toronto.?x dbo:tenant?uri . }\n", "\"Who has rented the stadiums owned by Toronto? | 'Toronto'-res:Toronto | 'rented'-dbp:center | 'stadiums'-dbp:stadium | 'owned'-dbp:owner\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/owner> <http://dbpedia.org/resource/Toronto> . ?x <http://dbpedia.org/ontology/tenant> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:John_O._Moseley dbp:mascot?x.?x dbo:almaMater?uri . }\n", - "\"What is the mascot of alma mater of John O Moseley? | 'O'-res:O | 'John Moseley'-res:John_O._Moseley | 'mascot'-dbo:mascot | 'alma mater'-dbo:almaMater\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/John_O._Moseley> <http://dbpedia.org/property/mascot> ?x . ?x <http://dbpedia.org/ontology/almaMater> ?uri . }\"\n", + " SELECT DISTINCT?uri WHERE { res:John_O._Moseley dbp:almaMater?uri } \n", + "\"What is the mascot of alma mater of John O Moseley? | 'O'-res:O | 'John Moseley'-res:John_O._Moseley | 'mascot'-dbo:mascot | 'alma mater'-dbo:almaMater\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/John_O._Moseley> <http://dbpedia.org/property/almaMater> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:nationality res:Oslo.?uri dbo:owners?x . }\n", - "\"Which newspapers are owned by Oslo citizens? | 'Oslo citizens'-res:Oslo | 'newspapers'-dbo:title | 'owned'-dbo:owner\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/nationality> <http://dbpedia.org/resource/Oslo> . ?uri <http://dbpedia.org/ontology/owners> ?x . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:nationality res:Oslo .?uri rdf:type dbo:Newspaper}\n", + "\"Which newspapers are owned by Oslo citizens? | 'Oslo citizens'-res:Oslo | 'newspapers'-dbo:title | 'owned'-dbo:owner\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/nationality> <http://dbpedia.org/resource/Oslo> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Newspaper>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:kingdom res:King_Crimson.?x dbp:recordedIn?uri . }\n", - "\"King crimson has been recorded in which places? | 'King crimson'-res:King_Crimson | 'king crimson'-dbo:leader | 'recorded'-dbo:background | 'places'-dbo:height\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/kingdom> <http://dbpedia.org/resource/King_Crimson> . ?x <http://dbpedia.org/property/recordedIn> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:placeOfBirth res:King_Crimson.?x dbp:recordedIn?uri . }\n", + "\"King crimson has been recorded in which places? | 'King crimson'-res:King_Crimson | 'king crimson'-dbo:leader | 'recorded'-dbo:background | 'places'-dbo:height\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/placeOfBirth> <http://dbpedia.org/resource/King_Crimson> . ?x <http://dbpedia.org/property/recordedIn> ?uri . }\"\n", "\n", "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:associatedActs res:Johnny_Cash . }\n", "\"Give me a count on associates of Johnny Cash? | 'Johnny Cash'-res:Johnny_Cash | 'associates'-dbp:associatedActs\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/associatedActs> <http://dbpedia.org/resource/Johnny_Cash> . }\"\n", @@ -2859,17 +2603,17 @@ " SELECT DISTINCT?uri WHERE { res:Dschinghis_Khan_(song) dbo:trackNumber?uri } \n", "\"What is the second track list of Dschinghis Khan (song) ? | 'Dschinghis Khan (song)'-res:Dschinghis_Khan_(song) | 'track'-dbo:trackNumber\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dschinghis_Khan_(song)> <http://dbpedia.org/ontology/trackNumber> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:restingPlace res:Beeleigh_Abbey.?x rdf:type dbo:Royalty}\n", - "\"List the graves of the royalities which have been buried at Beeleigh Abbey ? | 'royalities'-res:Royalties | 'Beeleigh Abbey'-res:Beeleigh_Abbey | 'graves'-dbo:grades | 'buried'-dbo:flag\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/restingPlace> <http://dbpedia.org/resource/Beeleigh_Abbey> . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Royalty>}\"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:restingPlace res:Beeleigh_Abbey.?x dbo:deathPlace?uri . }\n", + "\"List the graves of the royalities which have been buried at Beeleigh Abbey ? | 'royalities'-res:Royalties | 'Beeleigh Abbey'-res:Beeleigh_Abbey | 'graves'-dbo:grades | 'buried'-dbo:flag\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/restingPlace> <http://dbpedia.org/resource/Beeleigh_Abbey> . ?x <http://dbpedia.org/ontology/deathPlace> ?uri . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Chidambaram_Subramaniam dbp:minister?uri } \n", - "\"For which party's PM did Chidambaram Subramaniam serve? | 'PM'-res:PM | 'did Chidambaram Subramaniam'-res:Chidambaram_Subramaniam | 'party'-dbo:party | 'serve'-dbp:minister\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Chidambaram_Subramaniam> <http://dbpedia.org/property/minister> ?uri } \"\n", + "SELECT DISTINCT?uri WHERE { res:Chidambaram_Subramaniam dbp:minister?x.?x dbo:party?uri . }\n", + "\"For which party's PM did Chidambaram Subramaniam serve? | 'PM'-res:PM | 'did Chidambaram Subramaniam'-res:Chidambaram_Subramaniam | 'party'-dbo:party | 'serve'-dbp:minister\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Chidambaram_Subramaniam> <http://dbpedia.org/property/minister> ?x . ?x <http://dbpedia.org/ontology/party> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:South_Park_Bridge dbp:maintainedBy?x.?x dbo:capital?uri . }\n", - "\"What is the capital of the region which maintains the South Park Bridge ? | 'South Park Bridge'-res:South_Park_Bridge | 'capital'-dbo:capital | 'region'-dbo:region | 'maintains'-dbo:maintainedBy\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/South_Park_Bridge> <http://dbpedia.org/property/maintainedBy> ?x . ?x <http://dbpedia.org/ontology/capital> ?uri . }\"\n", + " SELECT DISTINCT?uri WHERE { res:South_Park_Bridge dbo:maintainedBy?uri } \n", + "\"What is the capital of the region which maintains the South Park Bridge ? | 'South Park Bridge'-res:South_Park_Bridge | 'capital'-dbo:capital | 'region'-dbo:region | 'maintains'-dbo:maintainedBy\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/South_Park_Bridge> <http://dbpedia.org/ontology/maintainedBy> ?uri } \"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:LG_Optimus_Vu dbo:operatingSystem?uri. res:Dart_(programming_language) dbp:developer?uri} \n", - "\"What is the operating system of the LG Optimus Vu and also the developer of the Dart (programming language) | 'LG'-res:LG_Electronics | 'Optimus Vu'-res:LG_Optimus_Vu | 'Dart (programming language)'-res:Dart_(programming_language) | 'operating'-dbo:operatingSystem | 'developer'-dbo:developer\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/LG_Optimus_Vu> <http://dbpedia.org/ontology/operatingSystem> ?uri . <http://dbpedia.org/resource/Dart_(programming_language)> <http://dbpedia.org/property/developer> ?uri} \"\n", + " SELECT DISTINCT?uri WHERE { res:LG_Optimus_Vu dbp:operatingSystem?uri. res:Dart_(programming_language) dbo:developer?uri} \n", + "\"What is the operating system of the LG Optimus Vu and also the developer of the Dart (programming language) | 'LG'-res:LG_Electronics | 'Optimus Vu'-res:LG_Optimus_Vu | 'Dart (programming language)'-res:Dart_(programming_language) | 'operating'-dbo:operatingSystem | 'developer'-dbo:developer\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/LG_Optimus_Vu> <http://dbpedia.org/property/operatingSystem> ?uri . <http://dbpedia.org/resource/Dart_(programming_language)> <http://dbpedia.org/ontology/developer> ?uri} \"\n", "\n", "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbo:origin res:England . }\n", "\"England is the origin of how many things? | 'England'-res:England | 'england'-dbo:province | 'origin'-dbo:origin\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/origin> <http://dbpedia.org/resource/England> . }\"\n", @@ -2877,50 +2621,50 @@ " SELECT DISTINCT?uri WHERE { res:King_County,_Washington dbo:countySeat?uri } \n", "\"Where is the county seat of King County, Washington? | 'King County, Washington'-res:King_County,_Washington | 'county seat'-dbo:countySeat\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/King_County,_Washington> <http://dbpedia.org/ontology/countySeat> ?uri } \"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:occupation res:Federal_Bureau_of_Investigation . }\n", - "\"How many people work at the FBI? | 'FBI'-res:Federal_Bureau_of_Investigation | 'work'-dbo:occupation\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/occupation> <http://dbpedia.org/resource/Federal_Bureau_of_Investigation> . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbo:occupation res:Federal_Bureau_of_Investigation . }\n", + "\"How many people work at the FBI? | 'FBI'-res:Federal_Bureau_of_Investigation | 'work'-dbo:occupation\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/occupation> <http://dbpedia.org/resource/Federal_Bureau_of_Investigation> . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:headquarter res:California.?uri dbp:training?x . }\n", - "\"How many people have been trained in an institute located in California? | 'California'-res:California | 'trained'-dbo:coach | 'institute'-dbo:institution | 'located'-dbo:gross\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/headquarter> <http://dbpedia.org/resource/California> . ?uri <http://dbpedia.org/property/training> ?x . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:location res:California.?uri dbp:training?x . }\n", + "\"How many people have been trained in an institute located in California? | 'California'-res:California | 'trained'-dbo:coach | 'institute'-dbo:institution | 'located'-dbo:gross\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/California> . ?uri <http://dbpedia.org/property/training> ?x . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:QF_in_War dbp:usedInWar?x.?x dbo:combatant?uri . }\n", - "\"Who were fighting the war where the QF Hotchkiss was used? | 'QF Hotchkiss'-res:QF_6-pounder_Hotchkiss | 'fighting'-dbo:combatant | 'war'-dbo:usedInWar\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/QF_in_War> <http://dbpedia.org/property/usedInWar> ?x . ?x <http://dbpedia.org/ontology/combatant> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:QF_6-pounder_Hotchkiss dbp:usedInWar?x.?x dbo:combatant?uri . }\n", + "\"Who were fighting the war where the QF Hotchkiss was used? | 'QF Hotchkiss'-res:QF_6-pounder_Hotchkiss | 'fighting'-dbo:combatant | 'war'-dbo:usedInWar\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/QF_6-pounder_Hotchkiss> <http://dbpedia.org/property/usedInWar> ?x . ?x <http://dbpedia.org/ontology/combatant> ?uri . }\"\n", "\n", "SELECT DISTINCT?uri WHERE {?uri dbo:predecessor res:Samuel_W._McCall.?uri dbp:office res:Massachusetts_House_of_Representatives . }\n", "\"Name the office holder with predecessor as Samuel W. McCall and office in Massachusetts House of Representatives? | 'W'-res:Vienna | 'Samuel McCall'-res:Samuel_W._McCall | 'Massachusetts House of Representatives'-res:Massachusetts_House_of_Representatives | 'name'-dbp:name | 'office holder'-dbo:place | 'predecessor'-dbo:predecessor | 'office'-dbp:office\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/predecessor> <http://dbpedia.org/resource/Samuel_W._McCall> . ?uri <http://dbpedia.org/property/office> <http://dbpedia.org/resource/Massachusetts_House_of_Representatives> . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:WCSE-LP dbo:sisterStation?x.?x dbp:location?uri . }\n", - "\"In which city is the sister station of WCSE-LP located ? | 'WCSE-LP'-res:WCSE-LP | 'city'-dbo:city | 'sister station'-dbo:sisterStation | 'located'-dbo:position\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/WCSE-LP> <http://dbpedia.org/ontology/sisterStation> ?x . ?x <http://dbpedia.org/property/location> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:WCSE-LP dbo:sisterStation?x.?x dbp:borough?uri . }\n", + "\"In which city is the sister station of WCSE-LP located ? | 'WCSE-LP'-res:WCSE-LP | 'city'-dbo:city | 'sister station'-dbo:sisterStation | 'located'-dbo:position\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/WCSE-LP> <http://dbpedia.org/ontology/sisterStation> ?x . ?x <http://dbpedia.org/property/borough> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:starring res:Michael_Jackson_(producer).?x dbo:producer?uri . }\n", - "\"List the producers who produced movies starring Michael Jackson. | 'produced movies movies starring Michael Jackson'-res:Movies_produced_by_ABC | 'producers'-dbo:author | 'produced'-dbo:wineProduced\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/starring> <http://dbpedia.org/resource/Michael_Jackson_(producer)> . ?x <http://dbpedia.org/ontology/producer> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:starring res:Michael_Jackson.?x dbo:producer?uri . }\n", + "\"List the producers who produced movies starring Michael Jackson. | 'produced movies movies starring Michael Jackson'-res:Movies_produced_by_ABC | 'producers'-dbo:author | 'produced'-dbo:wineProduced\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/starring> <http://dbpedia.org/resource/Michael_Jackson> . ?x <http://dbpedia.org/ontology/producer> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:chairman res:Joan_Laporta.?x dbp:name?uri . }\n", - "\"List the name of the soccer clubs whose chairman is Joan Laporta. | 'Joan Laporta'-res:Joan_Laporta | 'name'-dbp:name | 'soccer clubs'-dbo:clubsRecordGoalscorer | 'chairman'-dbo:chairman\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/chairman> <http://dbpedia.org/resource/Joan_Laporta> . ?x <http://dbpedia.org/property/name> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:chairman res:Joan_Laporta .?uri rdf:type dbo:SoccerClub}\n", + "\"List the name of the soccer clubs whose chairman is Joan Laporta. | 'Joan Laporta'-res:Joan_Laporta | 'name'-dbp:name | 'soccer clubs'-dbo:clubsRecordGoalscorer | 'chairman'-dbo:chairman\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/chairman> <http://dbpedia.org/resource/Joan_Laporta> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SoccerClub>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbo:almaMater res:Harvard-Westlake_School . }\n", - "\"Who is the person whose alma mater is Harvard-Westlake School? | 'Harvard-Westlake School'-res:Harvard-Westlake_School | 'person'-dbo:type | 'alma mater'-dbo:almaMater\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/almaMater> <http://dbpedia.org/resource/Harvard-Westlake_School> . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:almaMater res:Harvard-Westlake_School .?uri rdf:type dbo:Person}\n", + "\"Who is the person whose alma mater is Harvard-Westlake School? | 'Harvard-Westlake School'-res:Harvard-Westlake_School | 'person'-dbo:type | 'alma mater'-dbo:almaMater\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/almaMater> <http://dbpedia.org/resource/Harvard-Westlake_School> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:gender res:Feminism.?x dbp:nationality?uri . }\n", - "\"In how many nations can I find people related to the feminist movement? | 'feminist'-res:Feminism | 'movement'-dbo:movement | 'nations'-dbo:nationality\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/gender> <http://dbpedia.org/resource/Feminism> . ?x <http://dbpedia.org/property/nationality> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:movement res:Feminism.?x dbo:nationality?uri . }\n", + "\"In how many nations can I find people related to the feminist movement? | 'feminist'-res:Feminism | 'movement'-dbo:movement | 'nations'-dbo:nationality\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/movement> <http://dbpedia.org/resource/Feminism> . ?x <http://dbpedia.org/ontology/nationality> ?uri . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Heinz_Kokott dbo:relative?uri. res:Nazi_in_Army dbp:regionServed?uri} \n", - "\"With whom is Heinz Kokott a relative to who also served Nazi Army? | 'Heinz Kokott'-res:Heinz_Kokott | 'Nazi Army'-res:Nazi_6th_Army | 'relative'-dbo:relative | 'served'-dbo:regionServed\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Heinz_Kokott> <http://dbpedia.org/ontology/relative> ?uri . <http://dbpedia.org/resource/Nazi_in_Army> <http://dbpedia.org/property/regionServed> ?uri} \"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:branch res:Nazi_6th_Army.?x dbo:relative?uri . }\n", + "\"With whom is Heinz Kokott a relative to who also served Nazi Army? | 'Heinz Kokott'-res:Heinz_Kokott | 'Nazi Army'-res:Nazi_6th_Army | 'relative'-dbo:relative | 'served'-dbo:regionServed\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/branch> <http://dbpedia.org/resource/Nazi_6th_Army> . ?x <http://dbpedia.org/ontology/relative> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Brynn_Carman dbp:formerPartner?x.?x dbo:spouse?uri . }\n", - "\"Who is the former partner of the figure skater which was the former partner of Brynn Carman ? | 'Brynn Carman'-res:Brynn_Carman | 'former partner'-dbo:spouse | 'figure skater'-dbo:flag | 'former partner'-dbo:spouse\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Brynn_Carman> <http://dbpedia.org/property/formerPartner> ?x . ?x <http://dbpedia.org/ontology/spouse> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:formerPartner res:Brynn_Carman .?uri rdf:type dbo:FigureSkater}\n", + "\"Who is the former partner of the figure skater which was the former partner of Brynn Carman ? | 'Brynn Carman'-res:Brynn_Carman | 'former partner'-dbo:spouse | 'figure skater'-dbo:flag | 'former partner'-dbo:spouse\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/formerPartner> <http://dbpedia.org/resource/Brynn_Carman> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/FigureSkater>}\"\n", "\n", - " SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:governmentType res:Unitary.?x dbp:state?uri }\n", - "\"How many ships belong to states which has Unitary as government type ? | 'Unitary'-res:Unitary | 'ships'-dbo:shipBeam | 'belong'-dbo:date | 'government type'-dbo:governmentType\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/governmentType> <http://dbpedia.org/resource/Unitary> . ?x <http://dbpedia.org/property/state> ?uri }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:governmentType res:Unitary.?x dbp:state?uri . }\n", + "\"How many ships belong to states which has Unitary as government type ? | 'Unitary'-res:Unitary | 'ships'-dbo:shipBeam | 'belong'-dbo:date | 'government type'-dbo:governmentType\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/governmentType> <http://dbpedia.org/resource/Unitary> . ?x <http://dbpedia.org/property/state> ?uri . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:label res:Entertainment_One_Music.?uri dbo:bandMember?x . }\n", - "\"Count all the band members who are in Bands which have signed up with Entertainment One Music? | 'Bands'-res:Bands_(neckwear) | 'Entertainment One Music'-res:Entertainment_One_Music | 'are'-dbp:label | 'band member'-dbo:bandMember\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Entertainment_One_Music> . ?uri <http://dbpedia.org/ontology/bandMember> ?x . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:label res:Entertainment_One_Music.?x dbo:bandMember?uri . }\n", + "\"Count all the band members who are in Bands which have signed up with Entertainment One Music? | 'Bands'-res:Bands_(neckwear) | 'Entertainment One Music'-res:Entertainment_One_Music | 'are'-dbp:label | 'band member'-dbo:bandMember\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Entertainment_One_Music> . ?x <http://dbpedia.org/ontology/bandMember> ?uri . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:almaMater res:Somerville_College,_Oxford.?x dbo:party?uri . }\n", - "\"Graduates of Somerville College have been in how many political parties? | 'Somerville College'-res:Somerville_College,_Oxford | 'graduates'-dbo:almaMater | 'parties'-dbo:party\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/almaMater> <http://dbpedia.org/resource/Somerville_College,_Oxford> . ?x <http://dbpedia.org/ontology/party> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:almaMater res:Somerville_College,_Oxford.?x dbp:party?uri . }\n", + "\"Graduates of Somerville College have been in how many political parties? | 'Somerville College'-res:Somerville_College,_Oxford | 'graduates'-dbo:almaMater | 'parties'-dbo:party\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/almaMater> <http://dbpedia.org/resource/Somerville_College,_Oxford> . ?x <http://dbpedia.org/property/party> ?uri . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:music res:James_Horner.?xdbp:producer?uri . }\n", - "\"Give me a count of all the producers of all the movies whose music was done by James Horner? | 'James Horner'-res:James_Horner | 'music'-dbp:music | 'producer'-dbp:producer\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/music> <http://dbpedia.org/resource/James_Horner> . ?xdbp:producer ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:music res:James_Horner.?x dbo:producer?uri . }\n", + "\"Give me a count of all the producers of all the movies whose music was done by James Horner? | 'James Horner'-res:James_Horner | 'music'-dbp:music | 'producer'-dbp:producer\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/music> <http://dbpedia.org/resource/James_Horner> . ?x <http://dbpedia.org/ontology/producer> ?uri . }\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:David_Isaacs_(writer) dbo:notableWork?uri } \n", "\"List the notable work of David Isaacs (writer)? | 'David Isaacs (writer)'-res:David_Isaacs_(writer) | 'notable work'-dbo:notableWork\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/David_Isaacs_(writer)> <http://dbpedia.org/ontology/notableWork> ?uri } \"\n", @@ -2928,14 +2672,14 @@ " SELECT DISTINCT?uri WHERE { res:Egypt_Nanotechnology_Center dbo:province?uri } \n", "\"What is the province of Egypt Nanotechnology Center ? | 'Egypt Nanotechnology Center'-res:Egypt_Nanotechnology_Center | 'province'-dbo:province\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Egypt_Nanotechnology_Center> <http://dbpedia.org/ontology/province> ?uri } \"\n", "\n", - " SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:manager res:John_Spencer.?x dbo:homeStadium?uri }\n", - "\"Give me the number of home stadiums of teams managed by John Spencer. | 'John Spencer'-res:John_Spencer | 'home stadiums'-dbo:party | 'teams'-dbo:team | 'managed'-dbo:governor\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/manager> <http://dbpedia.org/resource/John_Spencer> . ?x <http://dbpedia.org/ontology/homeStadium> ?uri }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:manager res:John_Spencer.?x dbo:homeStadium?uri . }\n", + "\"Give me the number of home stadiums of teams managed by John Spencer. | 'John Spencer'-res:John_Spencer | 'home stadiums'-dbo:party | 'teams'-dbo:team | 'managed'-dbo:governor\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/manager> <http://dbpedia.org/resource/John_Spencer> . ?x <http://dbpedia.org/ontology/homeStadium> ?uri . }\"\n", "\n", "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbo:restingPlace res:Winchester_Cathedral . }\n", "\"How many people are buried in the Winchester Cathedral? | 'Winchester Cathedral'-res:Winchester_Cathedral | 'buried in'-dbo:restingPlace\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/restingPlace> <http://dbpedia.org/resource/Winchester_Cathedral> . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbo:producer res:Stephen_Ambrose_Traversari.?uri dbp:producers res:Erik_Bork . }\n", - "\"Name the tv series produced by Stephen Ambrose and Erik Bork? | 'Stephen Ambrose'-res:St._Ambrose_Traversari | 'Erik Bork'-res:Erik_Bork | 'produced'-dbo:producer | 'produced'-dbo:producer\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/producer> <http://dbpedia.org/resource/Stephen_Ambrose_Traversari> . ?uri <http://dbpedia.org/property/producers> <http://dbpedia.org/resource/Erik_Bork> . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:producer res:Stephen_Ambrose_Traversari .?uri rdf:type dbo:TelevisionShow}\n", + "\"Name the tv series produced by Stephen Ambrose and Erik Bork? | 'Stephen Ambrose'-res:St._Ambrose_Traversari | 'Erik Bork'-res:Erik_Bork | 'produced'-dbo:producer | 'produced'-dbo:producer\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/producer> <http://dbpedia.org/resource/Stephen_Ambrose_Traversari> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}\"\n", "\n", "SELECT DISTINCT?uri WHERE {?x dbo:formerTeam res:Boston_Bruins.?x dbp:playedFor?uri . }\n", "\"For which other teams have the past Boston Bruins members played? | 'Boston Bruins'-res:Boston_Bruins | 'teams'-dbo:formerTeam | 'team'-dbp:playedFor\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/formerTeam> <http://dbpedia.org/resource/Boston_Bruins> . ?x <http://dbpedia.org/property/playedFor> ?uri . }\"\n", @@ -2943,14 +2687,14 @@ "SELECT DISTINCT?uri WHERE {?uri dbp:headquarters res:Stockholm .?uri rdf:type dbo:Newspaper}\n", "\"List the Swedish newspaper headquarted in Stockholm ? | 'Swedish newspaper'-res:Sweden | 'Swedish newspaper'-res:Dharitri_(newspaper) | 'Stockholm'-res:Stockholm | 'headquarted'-dbo:headquarter | ''-dbo:country\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Stockholm> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Newspaper>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:city res:Fort_Lauderdale,_Florida.?x dbp:homeStadium?uri . }\n", - "\"Those seasons which have been played in Fort Lauderdale Florida now host their games where? | 'Fort Lauderdale Florida'-res:Fort_Lauderdale,_Florida | 'seasons'-dbo:ground | 'played'-dbo:participant | 'host'-dbo:presenter | 'games'-dbo:games\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/city> <http://dbpedia.org/resource/Fort_Lauderdale,_Florida> . ?x <http://dbpedia.org/property/homeStadium> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:ground res:Fort_Lauderdale,_Florida.?x dbp:presenter?uri . }\n", + "\"Those seasons which have been played in Fort Lauderdale Florida now host their games where? | 'Fort Lauderdale Florida'-res:Fort_Lauderdale,_Florida | 'seasons'-dbo:ground | 'played'-dbo:participant | 'host'-dbo:presenter | 'games'-dbo:games\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/ground> <http://dbpedia.org/resource/Fort_Lauderdale,_Florida> . ?x <http://dbpedia.org/property/presenter> ?uri . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Purnima_Banerjee dbo:party?uri } \n", - "\"What is the political party to which Purnima Banerjee is a member of? | 'Purnima Banerjee'-res:Purnima_Banerjee | 'political party'-dbo:party | 'member'-dbo:arm\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Purnima_Banerjee> <http://dbpedia.org/ontology/party> ?uri } \"\n", + " SELECT DISTINCT?uri WHERE { res:Purnima_Banerjee dbp:party?uri } \n", + "\"What is the political party to which Purnima Banerjee is a member of? | 'Purnima Banerjee'-res:Purnima_Banerjee | 'political party'-dbo:party | 'member'-dbo:arm\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Purnima_Banerjee> <http://dbpedia.org/property/party> ?uri } \"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Ganz_UV dbo:operator?uri. res:The_Gza_Horvth dbp:nationality?uri} \n", - "\"Which operator of ganz UV is also the nationality of the Gza Horvth ? | 'Ganz uv'-res:Ganz_UV | 'Gza Horvth'-res:GZA | 'operator'-dbo:operator | 'nationality'-dbo:nationality\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ganz_UV> <http://dbpedia.org/ontology/operator> ?uri . <http://dbpedia.org/resource/The_Gza_Horvth> <http://dbpedia.org/property/nationality> ?uri} \"\n", + " SELECT DISTINCT?uri WHERE { res:Ganz_UV .?x rdf:type dbo:GZA}\n", + "\"Which operator of ganz UV is also the nationality of the Gza Horvth ? | 'Ganz uv'-res:Ganz_UV | 'Gza Horvth'-res:GZA | 'operator'-dbo:operator | 'nationality'-dbo:nationality\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ganz_UV> . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/GZA>}\"\n", "\n", "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:producer res:Larry_J._Franco .?uri rdf:type dbo:Film}\n", "\"Give me a count of movies whose producer is Larry J. Franco? | 'J'-res:J | 'Larry Franco'-res:Larry_J._Franco | 'producer'-dbo:producer | 'movie'-dbo:Film\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/producer> <http://dbpedia.org/resource/Larry_J._Franco> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}\"\n", @@ -2970,47 +2714,47 @@ "SELECT DISTINCT?uri WHERE {?uri dbp:voices res:Mona_Marshall .?uri rdf:type dbo:TelevisionShow}\n", "\"What are the television shows whose voices is given by Mona Marshall? | 'Mona Marshall'-res:Mona_Marshall | 'voices'-dbp:voices | 'television show'-dbo:TelevisionShow\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/voices> <http://dbpedia.org/resource/Mona_Marshall> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:cinematography res:Gregg_Toland.?uri dbo:musicComposer res:Bernard_Herrmann . }\n", - "\"Name the movie whose director of photography is Gregg Toland and Bernard Herrmann was the music composer? | 'Gregg Toland'-res:Gregg_Toland | 'Bernard Herrmann'-res:Bernard_Herrmann | 'name'-dbp:name | 'movie'-dbo:picture | 'director'-dbo:director | 'photography'-dbo:picture | 'music composer'-dbo:composer\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/cinematography> <http://dbpedia.org/resource/Gregg_Toland> . ?uri <http://dbpedia.org/ontology/musicComposer> <http://dbpedia.org/resource/Bernard_Herrmann> . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbo:cinematography res:Gregg_Toland.?uri dbp:musicComposer res:Bernard_Herrmann . }\n", + "\"Name the movie whose director of photography is Gregg Toland and Bernard Herrmann was the music composer? | 'Gregg Toland'-res:Gregg_Toland | 'Bernard Herrmann'-res:Bernard_Herrmann | 'name'-dbp:name | 'movie'-dbo:picture | 'director'-dbo:director | 'photography'-dbo:picture | 'music composer'-dbo:composer\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/cinematography> <http://dbpedia.org/resource/Gregg_Toland> . ?uri <http://dbpedia.org/property/musicComposer> <http://dbpedia.org/resource/Bernard_Herrmann> . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:cities res:Cancun_conference_(disambiguation).?x dbo:destinations?uri . }\n", - "\"How many contries surround the seas on the banks of which is the city of Cancun? | 'Cancun'-res:Cancun_conference_(disambiguation) | 'contries'-dbp:counties | 'surround'-dbo:background | 'seas'-dbo:vein | 'banks'-dbo:series | 'city'-dbo:city\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/cities> <http://dbpedia.org/resource/Cancun_conference_(disambiguation)> . ?x <http://dbpedia.org/ontology/destinations> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:hometown res:Cancun_conference_(disambiguation).?x dbp:cities?uri . }\n", + "\"How many contries surround the seas on the banks of which is the city of Cancun? | 'Cancun'-res:Cancun_conference_(disambiguation) | 'contries'-dbp:counties | 'surround'-dbo:background | 'seas'-dbo:vein | 'banks'-dbo:series | 'city'-dbo:city\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/hometown> <http://dbpedia.org/resource/Cancun_conference_(disambiguation)> . ?x <http://dbpedia.org/property/cities> ?uri . }\"\n", "\n", "SELECT DISTINCT?uri WHERE {?uri dbp:format res:5.1_surround_sound .?uri rdf:type dbo:TelevisionShow}\n", "\"Which television shows has sound format as 5.1 surround? | '5.1 surround'-res:5.1_surround_sound | 'format'-dbo:format | 'television show'-dbo:TelevisionShow\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/format> <http://dbpedia.org/resource/5.1_surround_sound> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:He's_a_Liar dbo:subsequentWork?x.?x dbp:producer?uri . }\n", - "\"Who is the producer of the single which was the subsequent work of He's a Liar? | 'He's a Liar'-res:He's_a_Liar | 'producer'-dbo:producer | 'single'-dbo:parent | 'subsequent work'-dbo:subsequentWork\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/He's_a_Liar> <http://dbpedia.org/ontology/subsequentWork> ?x . ?x <http://dbpedia.org/property/producer> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:He's_a_Liar dbp:subsequentWork?x.?x dbo:producer?uri . }\n", + "\"Who is the producer of the single which was the subsequent work of He's a Liar? | 'He's a Liar'-res:He's_a_Liar | 'producer'-dbo:producer | 'single'-dbo:parent | 'subsequent work'-dbo:subsequentWork\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/He's_a_Liar> <http://dbpedia.org/property/subsequentWork> ?x . ?x <http://dbpedia.org/ontology/producer> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:creator res:Simon_Fuller.?uri rdf:type dbo:TelevisionShow}\n", - "\"Name the television show whose creator is Simon Fuller and presented by Ryan Seacrest? | 'Simon Fuller'-res:Simon_Fuller | 'Ryan Seacrest'-res:Ryan_Seacrest | 'name'-dbp:name | 'television show'-dbo:production | 'creator'-dbo:creator\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/creator> <http://dbpedia.org/resource/Simon_Fuller> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}\"\n", + " SELECT DISTINCT?uri WHERE {?uri dbp:creator res:Simon_Fuller.?uri dbo:presenter res:Ryan_Seacrest } \n", + "\"Name the television show whose creator is Simon Fuller and presented by Ryan Seacrest? | 'Simon Fuller'-res:Simon_Fuller | 'Ryan Seacrest'-res:Ryan_Seacrest | 'name'-dbp:name | 'television show'-dbo:production | 'creator'-dbo:creator\",\" SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/creator> <http://dbpedia.org/resource/Simon_Fuller> . ?uri <http://dbpedia.org/ontology/presenter> <http://dbpedia.org/resource/Ryan_Seacrest> } \"\n", "\n", "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:engine res:V8_engine.?x dbo:related?uri . }\n", "\"How many cars can I find related to the cars which have a V8 engine? | 'V8 engine'-res:V8_engine | 'cars'-dbo:management | 'related'-dbo:related | 'cars'-dbo:management | 'engine'-dbo:engine\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/engine> <http://dbpedia.org/resource/V8_engine> . ?x <http://dbpedia.org/ontology/related> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:opponent res:Dwight_D._Eisenhower.?uri rdf:type dbo:Person}\n", - "\"Name the person with opponents Ike Clanton and Tom McLaury? | 'opponents Ike Clanton'-res:Dwight_D._Eisenhower | 'Tom McLaury'-res:Tom_McLaury | 'opponents'-dbo:opponent | 'opponents'-dbo:opponent\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/opponent> <http://dbpedia.org/resource/Dwight_D._Eisenhower> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbo:opponent res:Dwight_D._Eisenhower . }\n", + "\"Name the person with opponents Ike Clanton and Tom McLaury? | 'opponents Ike Clanton'-res:Dwight_D._Eisenhower | 'Tom McLaury'-res:Tom_McLaury | 'opponents'-dbo:opponent | 'opponents'-dbo:opponent\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/opponent> <http://dbpedia.org/resource/Dwight_D._Eisenhower> . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE { res:Thud! dbo:nonFictionSubject?uri . }\n", - "\"How many non fiction topics does Thud! deals with? | 'Thud deals'-res:Thud! | 'fiction topics'-dbo:nonFictionSubject\",\"SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Thud!> <http://dbpedia.org/ontology/nonFictionSubject> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbo:nonFictionSubject res:Thud! . }\n", + "\"How many non fiction topics does Thud! deals with? | 'Thud deals'-res:Thud! | 'fiction topics'-dbo:nonFictionSubject\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/nonFictionSubject> <http://dbpedia.org/resource/Thud!> . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Harlan_Mathews dbp:education?uri. res:Richard_Merrill_Atkinson dbo:almaMater?uri. }\n", - "\"In which university did Harlan Mathews study, where Richard Meriil Atkinson went too? | 'Harlan Mathews'-res:Harlan_Mathews | 'atkinson richard'-res:Richard_Merrill_Atkinson | 'study'-dbo:almaMater | 'study'-dbo:almaMater\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Harlan_Mathews> <http://dbpedia.org/property/education> ?uri . <http://dbpedia.org/resource/Richard_Merrill_Atkinson> <http://dbpedia.org/ontology/almaMater> ?uri . }\"\n", + " SELECT DISTINCT?uri WHERE { res:Harlan_Mathews dbp:education?uri. res:Richard_Merrill_Atkinson dbo:almaMater?uri} \n", + "\"In which university did Harlan Mathews study, where Richard Meriil Atkinson went too? | 'Harlan Mathews'-res:Harlan_Mathews | 'atkinson richard'-res:Richard_Merrill_Atkinson | 'study'-dbo:almaMater | 'study'-dbo:almaMater\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Harlan_Mathews> <http://dbpedia.org/property/education> ?uri . <http://dbpedia.org/resource/Richard_Merrill_Atkinson> <http://dbpedia.org/ontology/almaMater> ?uri} \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:architect res:Pyusawhti.?x dbp:buildings?uri . }\n", - "\"What kind of buildings were designed by Pyusawhti? | 'Pyusawhti'-res:Pyusawhti | 'buildings'-dbo:architect | 'designed'-dbo:architect\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/architect> <http://dbpedia.org/resource/Pyusawhti> . ?x <http://dbpedia.org/property/buildings> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:architect res:Pyusawhti.?x dbp:building?uri . }\n", + "\"What kind of buildings were designed by Pyusawhti? | 'Pyusawhti'-res:Pyusawhti | 'buildings'-dbo:architect | 'designed'-dbo:architect\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/architect> <http://dbpedia.org/resource/Pyusawhti> . ?x <http://dbpedia.org/property/building> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Sony_Financial dbp:parent?x.?x dbo:owningCompany?uri . }\n", - "\"What is the owning company of the bank whose parent is Sony Financial ? | 'Sony Financial'-res:Sony_Financial | 'owning'-dbo:owningCompany | 'company'-dbo:company | 'bank'-dbo:number | 'parent'-dbp:parent\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Sony_Financial> <http://dbpedia.org/property/parent> ?x . ?x <http://dbpedia.org/ontology/owningCompany> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:parent res:Sony_Financial .?uri rdf:type dbo:Bank}\n", + "\"What is the owning company of the bank whose parent is Sony Financial ? | 'Sony Financial'-res:Sony_Financial | 'owning'-dbo:owningCompany | 'company'-dbo:company | 'bank'-dbo:number | 'parent'-dbp:parent\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/parent> <http://dbpedia.org/resource/Sony_Financial> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Bank>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Cooper_Mountain_Vineyards dbo:locatedInArea?uri. res:Mt_Bachelor_ski_area dbp:locationCountry?uri. }\n", - "\"Where are the cooper mountain vineyards and Mt. bachelor ski area located? | 'cooper mountain vineyards'-res:Cooper_Mountain_Vineyards | 'Mt bachelor ski area'-res:Mount_Bachelor_ski_area | 'located'-dbo:locatedInArea\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cooper_Mountain_Vineyards> <http://dbpedia.org/ontology/locatedInArea> ?uri . <http://dbpedia.org/resource/Mt_Bachelor_ski_area> <http://dbpedia.org/property/locationCountry> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Cooper_Mountain_Vineyards dbp:locationCountry?uri. res:Mount_Bachelor_ski_area dbo:locatedInArea?uri. }\n", + "\"Where are the cooper mountain vineyards and Mt. bachelor ski area located? | 'cooper mountain vineyards'-res:Cooper_Mountain_Vineyards | 'Mt bachelor ski area'-res:Mount_Bachelor_ski_area | 'located'-dbo:locatedInArea\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cooper_Mountain_Vineyards> <http://dbpedia.org/property/locationCountry> ?uri . <http://dbpedia.org/resource/Mount_Bachelor_ski_area> <http://dbpedia.org/ontology/locatedInArea> ?uri . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE { res:Mercedes-Benz_Superdome dbo:tenant?uri . }\n", - "\"How many tenants are there in the Mercedes Benz Superdome? | 'Mercedes Benz Superdome'-res:Mercedes-Benz_Superdome | 'tenant'-dbo:tenant\",\"SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Mercedes-Benz_Superdome> <http://dbpedia.org/ontology/tenant> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbo:tenant res:Mercedes-Benz_Superdome . }\n", + "\"How many tenants are there in the Mercedes Benz Superdome? | 'Mercedes Benz Superdome'-res:Mercedes-Benz_Superdome | 'tenant'-dbo:tenant\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/tenant> <http://dbpedia.org/resource/Mercedes-Benz_Superdome> . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Alfred_Blalock dbp:affiliation?x.?x rdf:type dbo:Hospital}\n", - "\"What is the affiliation of the hospital where Alfred Blalock works? | 'hospital'-res:Hospital | 'Alfred Blalock'-res:Alfred_Blalock | 'affiliation'-dbo:affiliation | 'works'-dbo:language\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Alfred_Blalock> <http://dbpedia.org/property/affiliation> ?x . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Hospital>}\"\n", + "SELECT DISTINCT?uri WHERE { res:Alfred_Blalock dbo:affiliation?x.?x dbp:hospital?uri . }\n", + "\"What is the affiliation of the hospital where Alfred Blalock works? | 'hospital'-res:Hospital | 'Alfred Blalock'-res:Alfred_Blalock | 'affiliation'-dbo:affiliation | 'works'-dbo:language\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Alfred_Blalock> <http://dbpedia.org/ontology/affiliation> ?x . ?x <http://dbpedia.org/property/hospital> ?uri . }\"\n", "\n", "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:citizenship res:United_States.?x dbo:deathCause?uri . }\n", "\"How many causes of death have been associated with American citizens? | 'American'-res:United_States | 'citizens'-dbp:citizenship | 'death'-dbo:deathCause\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/citizenship> <http://dbpedia.org/resource/United_States> . ?x <http://dbpedia.org/ontology/deathCause> ?uri . }\"\n", @@ -3018,11 +2762,11 @@ "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:league res:Czech_Extraliga.?x dbo:formerTeam?uri . }\n", "\"For how many teams have the league players of Czech Extraliga, previously played? | 'Czech Extraliga,'-res:Czech_Republic | 'Czech Extraliga,'-res:Czech_Extraliga | 'league'-dbp:league | 'teams'-dbo:formerTeam\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/league> <http://dbpedia.org/resource/Czech_Extraliga> . ?x <http://dbpedia.org/ontology/formerTeam> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:artwork res:Lithuanian_Students_Basketball_League.?uri dbo:restingplace?x . }\n", - "\"Artists trained at art students league NY are buried where? | 'NY'-res:Nymphicula_banauensis | 'art students league'-res:Lithuanian_Students_Basketball_League | 'artists'-dbo:rkdArtistsId | 'trained'-dbo:coach | 'buried'-dbo:family\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/artwork> <http://dbpedia.org/resource/Lithuanian_Students_Basketball_League> . ?uri <http://dbpedia.org/ontology/restingplace> ?x . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:burries res:New_York .?uri rdf:type dbo:Artist}\n", + "\"Artists trained at art students league NY are buried where? | 'NY'-res:Nymphicula_banauensis | 'art students league'-res:Lithuanian_Students_Basketball_League | 'artists'-dbo:rkdArtistsId | 'trained'-dbo:coach | 'buried'-dbo:family\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/burries> <http://dbpedia.org/resource/New_York> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Artist>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Alpine_skiing_at_the_1964_Winter_Olympics_–_Men's_slalom dbp:bronzesMedalist?x.?x dbo:deathPlace?uri . }\n", - "\"What is the location of death of the skier who was the bronze medalist of Alpine skiing at the 1964 Winter Olympics Men's slalom ? | 'Alpine skiing at the 1964 Winter Olympics Men's slalom'-res:Alpine_skiing_at_the_1964_Winter_Olympics_–_Men's_slalom\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Alpine_skiing_at_the_1964_Winter_Olympics_–_Men's_slalom> <http://dbpedia.org/property/bronzesMedalist> ?x . ?x <http://dbpedia.org/ontology/deathPlace> ?uri . }\"\n", + " SELECT DISTINCT?uri WHERE { res:Alpine_skiing_at_the_1964_Winter_Olympics_–_Men's_slalom dbp: bronzeMedalist?uri } \n", + "\"What is the location of death of the skier who was the bronze medalist of Alpine skiing at the 1964 Winter Olympics Men's slalom ? | 'Alpine skiing at the 1964 Winter Olympics Men's slalom'-res:Alpine_skiing_at_the_1964_Winter_Olympics_–_Men's_slalom\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Alpine_skiing_at_the_1964_Winter_Olympics_–_Men's_slalom> <http://dbpedia.org/property/bronzeMedalist> ?uri } \"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Mouse_Morris dbp:race?uri } \n", "\"In which races did Mouse Morris take part? | 'Mouse Morris'-res:Mouse_Morris | 'race'-dbp:race\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Mouse_Morris> <http://dbpedia.org/property/race> ?uri } \"\n", @@ -3036,44 +2780,44 @@ "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:league res:NCAA_Division_I_Football_Bowl_Subdivision .?uri rdf:type dbo:University}\n", "\"How many universities participate in the NCAA Division I Football Bowl Subdivision? | 'universities'-res:Universities_Ireland | 'NCAA'-res:National_Collegiate_Athletic_Association_(Philippines) | 'Division I Football Bowl Subdivision'-res:NCAA_Division_I_Football_Bowl_Subdivision | 'I'-res:I | 'NCAA Division Football Bowl Subdivision'-res:NCAA_Division_I_Football_Bowl_Subdivision | 'participate'-dbo:participant\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/league> <http://dbpedia.org/resource/NCAA_Division_I_Football_Bowl_Subdivision> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/University>}\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:locationCity res:Texas .?uri rdf:type dbo:Company}\n", - "\"Give me a count of companies located in Texas ? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'Texas'-res:Texas | 'located'-dbo:locationCity\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/locationCity> <http://dbpedia.org/resource/Texas> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}\"\n", + " SELECT DISTINCT COUNT(?uri) WHERE {?uri dbo:locationCity res:Texas } \n", + "\"Give me a count of companies located in Texas ? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'Texas'-res:Texas | 'located'-dbo:locationCity\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/locationCity> <http://dbpedia.org/resource/Texas> } \"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:William_Deane dbp:primeminister?uri. res:Mark_Latham dbo:keyPerson?uri. }\n", - "\"Who is the common prime minster of William Deaner and mark Latham ? | 'William Deaner'-res:William_Deane | 'mark Latham'-res:Mark_Latham | 'mark'-dbo:type\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/William_Deane> <http://dbpedia.org/property/primeminister> ?uri . <http://dbpedia.org/resource/Mark_Latham> <http://dbpedia.org/ontology/keyPerson> ?uri . }\"\n", + " SELECT DISTINCT?uri WHERE { res:William_Deane dbp:primeminister?uri. res:Mark_Latham dbo:type?uri} \n", + "\"Who is the common prime minster of William Deaner and mark Latham ? | 'William Deaner'-res:William_Deane | 'mark Latham'-res:Mark_Latham | 'mark'-dbo:type\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/William_Deane> <http://dbpedia.org/property/primeminister> ?uri . <http://dbpedia.org/resource/Mark_Latham> <http://dbpedia.org/ontology/type> ?uri} \"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:state res:Metro_Manila.?x dbp:athletics?uri . }\n", - "\"How many games are played at universities in Metro Manilla? | 'Metro Manill'-res:Metro_Manila | 'games'-dbo:games | 'played'-dbo:portrayer\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/state> <http://dbpedia.org/resource/Metro_Manila> . ?x <http://dbpedia.org/property/athletics> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:campus res:Metro_Manila.?x dbp:team?uri . }\n", + "\"How many games are played at universities in Metro Manilla? | 'Metro Manill'-res:Metro_Manila | 'games'-dbo:games | 'played'-dbo:portrayer\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/campus> <http://dbpedia.org/resource/Metro_Manila> . ?x <http://dbpedia.org/property/team> ?uri . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Cheasty_Boulevard_South dbp:mainter?uri. res:King_County,_Washington dbo:countySeat?uri} \n", - "\"Which mainter of Cheasty Boulevard South is also the county seat of the King County, Washingtonsu ? | 'Cheasty Boulevard South'-res:Cheasty_Boulevard_South | 'King County, Washingtonsu'-res:King_County,_Washington | 'mainter'-dbo:owner | 'county seat'-dbo:countySeat\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cheasty_Boulevard_South> <http://dbpedia.org/property/mainter> ?uri . <http://dbpedia.org/resource/King_County,_Washington> <http://dbpedia.org/ontology/countySeat> ?uri} \"\n", + " SELECT DISTINCT?uri WHERE { res:Cheasty_Boulevard_South dbo:owner?uri. res:King_County,_Washington dbp:countySeat?uri} \n", + "\"Which mainter of Cheasty Boulevard South is also the county seat of the King County, Washingtonsu ? | 'Cheasty Boulevard South'-res:Cheasty_Boulevard_South | 'King County, Washingtonsu'-res:King_County,_Washington | 'mainter'-dbo:owner | 'county seat'-dbo:countySeat\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cheasty_Boulevard_South> <http://dbpedia.org/ontology/owner> ?uri . <http://dbpedia.org/resource/King_County,_Washington> <http://dbpedia.org/property/countySeat> ?uri} \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:destinations res:TranStar_Airlines.?x dbo:largestCity?uri . }\n", - "\"What are the largest cities in each of the destinations of TranStar Airlines? | 'destinations'-res:Destinations_Academy | 'TranStar Airlines'-res:TranStar_Airlines | 'destination'-dbo:destination | 'largest'-dbo:largestCity\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/destinations> <http://dbpedia.org/resource/TranStar_Airlines> . ?x <http://dbpedia.org/ontology/largestCity> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:TranStar_Airlines dbp:destinations?x.?x dbo:largestCity?uri . }\n", + "\"What are the largest cities in each of the destinations of TranStar Airlines? | 'destinations'-res:Destinations_Academy | 'TranStar Airlines'-res:TranStar_Airlines | 'destination'-dbo:destination | 'largest'-dbo:largestCity\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/TranStar_Airlines> <http://dbpedia.org/property/destinations> ?x . ?x <http://dbpedia.org/ontology/largestCity> ?uri . }\"\n", "\n", "SELECT DISTINCT?uri WHERE {?x dbp:writers res:Neil_Gaiman.?x dbo:notableWork?uri . }\n", "\"Which writer is famous for works written by Neil Gaiman? | 'Neil Gaiman'-res:Neil_Gaiman | 'written by'-dbp:writers | 'works'-dbo:notableWork\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/writers> <http://dbpedia.org/resource/Neil_Gaiman> . ?x <http://dbpedia.org/ontology/notableWork> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:youthclubs res:FC_Barcelona.?uri rdf:type dbo:SoccerClub}\n", - "\"Who was in youth clubs of FC Barcelona and Newell's Old Boys? | 'FC Barcelona'-res:FC_Barcelona | 'Newell's Old Boys'-res:Newell's_Old_Boys | 'youth clubs'-dbp:youthclubs | 'youth clubs'-dbp:youthclubs\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/youthclubs> <http://dbpedia.org/resource/FC_Barcelona> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SoccerClub>}\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:youthclubs res:FC_Barcelona. }\n", + "\"Who was in youth clubs of FC Barcelona and Newell's Old Boys? | 'FC Barcelona'-res:FC_Barcelona | 'Newell's Old Boys'-res:Newell's_Old_Boys | 'youth clubs'-dbp:youthclubs | 'youth clubs'-dbp:youthclubs\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/youthclubs> <http://dbpedia.org/resource/FC_Barcelona> . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE {?x dbp:designer res:Alexander_Lippisch.?x dbo:country?uri }\n", - "\"For which country did Alexander Lippisch design airplanes? | 'Alexander Lippisch design airplanes'-res:Alexander_Lippisch | 'country'-dbo:country\",\" SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/designer> <http://dbpedia.org/resource/Alexander_Lippisch> . ?x <http://dbpedia.org/ontology/country> ?uri }\"\n", + " SELECT DISTINCT?uri WHERE {?uri dbp:designer res:Alexander_Lippisch } \n", + "\"For which country did Alexander Lippisch design airplanes? | 'Alexander Lippisch design airplanes'-res:Alexander_Lippisch | 'country'-dbo:country\",\" SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/designer> <http://dbpedia.org/resource/Alexander_Lippisch> } \"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Carmela_Soprano dbo:relative?x.?x dbp:religion?uri . }\n", - "\"What is the religion of the relatives of Carmela Soprano ? | 'Carmela Soprano'-res:Carmela_Soprano | 'religion'-dbo:religion | 'relatives'-dbo:relative\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Carmela_Soprano> <http://dbpedia.org/ontology/relative> ?x . ?x <http://dbpedia.org/property/religion> ?uri . }\"\n", + " SELECT DISTINCT?uri WHERE { res:Carmela_Soprano dbo:relative?uri } \n", + "\"What is the religion of the relatives of Carmela Soprano ? | 'Carmela Soprano'-res:Carmela_Soprano | 'religion'-dbo:religion | 'relatives'-dbo:relative\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Carmela_Soprano> <http://dbpedia.org/ontology/relative> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:firstTeam res:Scuderia_Ferrari.?x dbo:poleDriver?uri . }\n", - "\"In all the grand prixes where the first team was Scuderia Ferrari, who all were the pole drivers? | 'Scuderia Ferrari'-res:Scuderia_Ferrari | 'grand prixes'-dbo:grandsire | 'team'-dbo:team | 'pole drivers'-dbp:drivers\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/firstTeam> <http://dbpedia.org/resource/Scuderia_Ferrari> . ?x <http://dbpedia.org/ontology/poleDriver> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:firstTeam res:Scuderia_Ferrari.?x dbo:poleDriver?uri . }\n", + "\"In all the grand prixes where the first team was Scuderia Ferrari, who all were the pole drivers? | 'Scuderia Ferrari'-res:Scuderia_Ferrari | 'grand prixes'-dbo:grandsire | 'team'-dbo:team | 'pole drivers'-dbp:drivers\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/firstTeam> <http://dbpedia.org/resource/Scuderia_Ferrari> . ?x <http://dbpedia.org/ontology/poleDriver> ?uri . }\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Erastus_Wiman dbo:citizenship?uri } \n", "\"What is the citizenship of Erastus Wiman ? | 'Erastus Wiman'-res:Erastus_Wiman | 'citizenship'-dbo:citizenship\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Erastus_Wiman> <http://dbpedia.org/ontology/citizenship> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:stateOfOrigin res:French_people.?x dbo:award?uri . }\n", - "\"What are some awards given to the french people? | 'awards'-dbo:award | 'french'-dbo:channel\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/stateOfOrigin> <http://dbpedia.org/resource/French_people> . ?x <http://dbpedia.org/ontology/award> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:nationality res:French_people.?x dbo:award?uri . }\n", + "\"What are some awards given to the french people? | 'awards'-dbo:award | 'french'-dbo:channel\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/nationality> <http://dbpedia.org/resource/French_people> . ?x <http://dbpedia.org/ontology/award> ?uri . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Robert_William_Wilcox dbp:district?uri } \n", - "\"Name the district of Robert William Wilcox ? | 'Robert William Wilcox'-res:Robert_William_Wilcox | 'name'-dbp:name | 'district'-dbo:district\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Robert_William_Wilcox> <http://dbpedia.org/property/district> ?uri } \"\n", + " SELECT DISTINCT?uri WHERE { res:Robert_William_Wilcox dbo:district?uri } \n", + "\"Name the district of Robert William Wilcox ? | 'Robert William Wilcox'-res:Robert_William_Wilcox | 'name'-dbp:name | 'district'-dbo:district\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Robert_William_Wilcox> <http://dbpedia.org/ontology/district> ?uri } \"\n", "\n", "SELECT DISTINCT?uri WHERE {?uri dbp:subsidiary res:Tandem_Computers .?uri rdf:type dbo:Company}\n", "\"Tandem Computers is the subsidiary of which company? | 'tandem Computers'-res:Tandem_Computers | 'subsidiary'-dbo:subsidiary | 'company'-dbo:company\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/subsidiary> <http://dbpedia.org/resource/Tandem_Computers> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}\"\n", @@ -3081,14 +2825,14 @@ "SELECT DISTINCT?uri WHERE {?uri dbp:cinematography res:Jordan_Cronenweth .?uri rdf:type dbo:Film}\n", "\"What are the movies whose director of photography is Jordan Cronenweth? | 'Jordan Cronenweth'-res:Jordan_Cronenweth | 'movies'-dbo:film | 'director'-dbo:director | 'photography'-dbo:picture\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/cinematography> <http://dbpedia.org/resource/Jordan_Cronenweth> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbo:riverEnd res:Thames_Estuary.?uri dbp:riverMouth res:North_Sea. }\n", - "\"Which river ends at Thames Estuary and North Sea? | 'Thames Estuary'-res:Thames_Estuary | 'North Sea'-res:North_Sea | 'river'-dbo:river | 'ends'-dbo:fate\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/riverEnd> <http://dbpedia.org/resource/Thames_Estuary> . ?uri <http://dbpedia.org/property/riverMouth> <http://dbpedia.org/resource/North_Sea> . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbo:riverServed res:Thames_Estuary.?uri dbp:riverMouth res:North_Sea. }\n", + "\"Which river ends at Thames Estuary and North Sea? | 'Thames Estuary'-res:Thames_Estuary | 'North Sea'-res:North_Sea | 'river'-dbo:river | 'ends'-dbo:fate\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/riverServed> <http://dbpedia.org/resource/Thames_Estuary> . ?uri <http://dbpedia.org/property/riverMouth> <http://dbpedia.org/resource/North_Sea> . }\"\n", "\n", "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:locationCity res:Toronto .?uri rdf:type dbo:Company}\n", "\"How many companies are located in Toronto ? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'Toronto'-res:Toronto | 'located'-dbo:locatedInArea\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/locationCity> <http://dbpedia.org/resource/Toronto> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:deathPlace res:Westwood,_Los_Angeles.?uri dbp:editing?x . }\n", - "\"What are the movies whose editor died in Westwood, Los Angeles? | 'Westwood, Los Angeles'-res:Westwood,_Los_Angeles | 'died in'-dbo:deathPlace | 'editor'-dbo:editing\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/deathPlace> <http://dbpedia.org/resource/Westwood,_Los_Angeles> . ?uri <http://dbpedia.org/property/editing> ?x . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:deathPlace res:Westwood,_Los_Angeles .?uri rdf:type dbo:Film}\n", + "\"What are the movies whose editor died in Westwood, Los Angeles? | 'Westwood, Los Angeles'-res:Westwood,_Los_Angeles | 'died in'-dbo:deathPlace | 'editor'-dbo:editing\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/deathPlace> <http://dbpedia.org/resource/Westwood,_Los_Angeles> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}\"\n", "\n", "SELECT DISTINCT?uri WHERE {?uri dbp:musicComposer res:Bernard_Herrmann .?uri rdf:type dbo:Film}\n", "\"In which movies directed by Orson Welles has Bernard Herrmann as music composer ? | 'Bernard Herrmann'-res:Bernard_Herrmann | 'Orson Welles'-res:Orson_Welles | 'movies'-dbo:film | 'directed'-dbo:principal | 'music composer'-dbo:musicComposer\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/musicComposer> <http://dbpedia.org/resource/Bernard_Herrmann> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}\"\n", @@ -3096,20 +2840,20 @@ " SELECT DISTINCT?uri WHERE { res:Presidio_Santa_Cruz_de_Terrenate dbo:builder?uri } \n", "\"Who is the builder of Presidio Santa Cruz de Terrenate ? | 'Presidio Santa Cruz de Terrenate'-res:Presidio_Santa_Cruz_de_Terrenate | 'builder'-dbo:builder\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Presidio_Santa_Cruz_de_Terrenate> <http://dbpedia.org/ontology/builder> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:sisterStation res:WXME.?x dbp:broadcastArea?uri . }\n", - "\"In which areas is the radio station broadcasted which is a sister station of WXME ? | 'WXME'-res:WXME | 'radio station'-dbo:plant | 'broadcasted'-dbo:state | 'sister station'-dbo:sisterStation\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/sisterStation> <http://dbpedia.org/resource/WXME> . ?x <http://dbpedia.org/property/broadcastArea> ?uri . }\"\n", + " SELECT DISTINCT?uri WHERE { res:WXME dbo:sisterStation?uri } \n", + "\"In which areas is the radio station broadcasted which is a sister station of WXME ? | 'WXME'-res:WXME | 'radio station'-dbo:plant | 'broadcasted'-dbo:state | 'sister station'-dbo:sisterStation\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/WXME> <http://dbpedia.org/ontology/sisterStation> ?uri } \"\n", "\n", "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:network res:Comedy_Central .?uri rdf:type dbo:TelevisionShow}\n", "\"How many shows are aired on Comedy Central? | 'Comedy Central'-res:Comedy_Central | 'shows'-dbo:place | 'aired'-dbo:flag\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/network> <http://dbpedia.org/resource/Comedy_Central> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Monroe_Carell_Jr._Children's_Hospital_at_Vanderbilt.?uri dbp:affiliation?x. }\n", - "\"What are Monrow Carell Jr Children Hospital and Vanderbilt University Medical Center both affiliated with? | 'vanderbilt hospital children'-res:Monroe_Carell_Jr._Children's_Hospital_at_Vanderbilt | 'Vanderbilt University Medical Center'-res:Vanderbilt_University_Medical_Center | 'affiliated'-dbp:affiliation | 'affiliated'-dbp:affiliation\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Monroe_Carell_Jr._Children's_Hospital_at_Vanderbilt> . ?uri <http://dbpedia.org/property/affiliation> ?x . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:branch res:United_States_Senate .?uri rdf:type dbo:OfficeHolder}\n", - "\"How many politicians are in the US Senate? | 'US Senate'-res:United_States_Senate\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/branch> <http://dbpedia.org/resource/United_States_Senate> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/OfficeHolder>}\"\n", + "\"What are Monrow Carell Jr Children Hospital and Vanderbilt University Medical Center both affiliated with? | 'vanderbilt hospital children'-res:Monroe_Carell_Jr._Children's_Hospital_at_Vanderbilt | 'Vanderbilt University Medical Center'-res:Vanderbilt_University_Medical_Center | 'affiliated'-dbp:affiliation | 'affiliated'-dbp:affiliation\",\"\"\n", + "\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:office res:United_States_Senate . }\n", + "\"How many politicians are in the US Senate? | 'US Senate'-res:United_States_Senate\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/office> <http://dbpedia.org/resource/United_States_Senate> . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:relatives res:Huey,_Dewey,_and_Louie.?uri dbo:family res:Duck_family_(Disney). }\n", - "\"Name the fictional character whose relatives are Huey, Dewey, and Louie and belongs to Duck family ? | 'Huey, Dewey, and Louie'-res:Huey,_Dewey,_and_Louie | 'Duck family'-res:Duck_family_(Disney) | 'name'-dbp:name | 'fictional character'-dbo:party | 'relatives'-dbo:relative | 'belongs'-dbp:date\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/relatives> <http://dbpedia.org/resource/Huey,_Dewey,_and_Louie> . ?uri <http://dbpedia.org/ontology/family> <http://dbpedia.org/resource/Duck_family_(Disney)> . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:relatives res:Huey,_Dewey,_and_Louie .?uri rdf:type dbo:FictionalCharacter}\n", + "\"Name the fictional character whose relatives are Huey, Dewey, and Louie and belongs to Duck family ? | 'Huey, Dewey, and Louie'-res:Huey,_Dewey,_and_Louie | 'Duck family'-res:Duck_family_(Disney) | 'name'-dbp:name | 'fictional character'-dbo:party | 'relatives'-dbo:relative | 'belongs'-dbp:date\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/relatives> <http://dbpedia.org/resource/Huey,_Dewey,_and_Louie> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/FictionalCharacter>}\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Bloomington_Viaduct dbp:crosses?uri } \n", "\"What is the bloomington viaduct built to cross? | 'bloomington viaduct'-res:Bloomington_Viaduct | 'cross'-dbp:crosses\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bloomington_Viaduct> <http://dbpedia.org/property/crosses> ?uri } \"\n", @@ -3123,158 +2867,158 @@ " SELECT DISTINCT?uri WHERE { res:Martin_Pugh dbp:spouse?uri. res:Alana_Stewart dbo:associatedActs?uri} \n", "\"Which associat of Martin Pugh is also married to Alana Stewert ? | 'Martin Pugh'-res:Martin_Pugh | 'Alana Stewert'-res:Alana_Stewart | 'associat'-dbo:team | 'married'-dbp:spouse\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Martin_Pugh> <http://dbpedia.org/property/spouse> ?uri . <http://dbpedia.org/resource/Alana_Stewart> <http://dbpedia.org/ontology/associatedActs> ?uri} \"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbo:coach res:Old_Boys . }\n", - "\"How many people played for Newell's Old Boys? | 'Newell'-res:Newell | 'Old Boys'-res:Old_Boys | 'played'-dbo:coach\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/coach> <http://dbpedia.org/resource/Old_Boys> . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbo:coach res:Newell . }\n", + "\"How many people played for Newell's Old Boys? | 'Newell'-res:Newell | 'Old Boys'-res:Old_Boys | 'played'-dbo:coach\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/coach> <http://dbpedia.org/resource/Newell> . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Antoine_Bibeaudbp:draftTeam?uri. res:Nathan_Dempsey dbp:playedFor?uri} \n", - "\"What is the draft team of the Antoine Bibeau and also has player named Nathan Dempsey ? | 'Antoine Bibeau'-res:Antoine_Bibeau | 'Nathan Dempsey'-res:Nathan_Dempsey | 'draft team'-dbp:draftTeam | 'team'-dbp:playedFor\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Antoine_Bibeaudbp:draftTeam> ?uri . <http://dbpedia.org/resource/Nathan_Dempsey> <http://dbpedia.org/property/playedFor> ?uri} \"\n", + " SELECT DISTINCT?uri WHERE { res:Antoine_Bibeau dbp:draftTeam?uri. res:Nathan_Dempsey dbo:playedFor?uri} \n", + "\"What is the draft team of the Antoine Bibeau and also has player named Nathan Dempsey ? | 'Antoine Bibeau'-res:Antoine_Bibeau | 'Nathan Dempsey'-res:Nathan_Dempsey | 'draft team'-dbp:draftTeam | 'team'-dbp:playedFor\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Antoine_Bibeau> <http://dbpedia.org/property/draftTeam> ?uri . <http://dbpedia.org/resource/Nathan_Dempsey> <http://dbpedia.org/ontology/playedFor> ?uri} \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x rdf:type dbo:TelevisionStation}\n", - "\"List the broadcast area of the TV stations which also serves in Agalga ? | 'TV'-res:Tv_test_pattern | 'Agalga'-res:Galga | 'broadcast area'-dbo:broadcastArea | 'stations'-dbo:order | 'serves'-dbo:order\",\"SELECT DISTINCT ?uri WHERE { ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionStation>}\"\n", + " SELECT DISTINCT?uri WHERE { res:Agalga dbo:broadcastArea?uri } \n", + "\"List the broadcast area of the TV stations which also serves in Agalga ? | 'TV'-res:Tv_test_pattern | 'Agalga'-res:Galga | 'broadcast area'-dbo:broadcastArea | 'stations'-dbo:order | 'serves'-dbo:order\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Agalga> <http://dbpedia.org/ontology/broadcastArea> ?uri } \"\n", "\n", - " SELECT DISTINCT?uri WHERE {?uri dbo:deputy res:Neil_Brown_(Australian_politician) } \n", - "\"Whose deputy is Neil Brown? | 'Neil Brown'-res:Neil_Brown_(Australian_politician) | 'deputy'-dbo:deputy\",\" SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/deputy> <http://dbpedia.org/resource/Neil_Brown_(Australian_politician)> } \"\n", + " SELECT DISTINCT?uri WHERE {?uri dbp:deputy res:Neil_Brown_(Australian_politician) } \n", + "\"Whose deputy is Neil Brown? | 'Neil Brown'-res:Neil_Brown_(Australian_politician) | 'deputy'-dbo:deputy\",\" SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/deputy> <http://dbpedia.org/resource/Neil_Brown_(Australian_politician)> } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:deathPlace res:Los_Angeles.?x dbo:debutteam?uri . }\n", - "\"What is debut team of the baseball players who died in Los Angeles? | 'baseball players'-res:Major_League_Baseball_Players_Association | 'Los Angeles'-res:Los_Angeles | 'debut team'-dbo:team | 'died'-dbp:deathPlace\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/deathPlace> <http://dbpedia.org/resource/Los_Angeles> . ?x <http://dbpedia.org/ontology/debutteam> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:placeOfDeath res:Los_Angeles.?x dbo:debutTeam?uri . }\n", + "\"What is debut team of the baseball players who died in Los Angeles? | 'baseball players'-res:Major_League_Baseball_Players_Association | 'Los Angeles'-res:Los_Angeles | 'debut team'-dbo:team | 'died'-dbp:deathPlace\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/placeOfDeath> <http://dbpedia.org/resource/Los_Angeles> . ?x <http://dbpedia.org/ontology/debutTeam> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:operator res:Budapest.?x dbo:operator?uri . }\n", - "\"List all the operators of the train who operates in Budapest ? | 'Budapest'-res:Budapest | 'operators'-dbo:operator | 'train'-dbo:training | 'operates'-dbo:operator\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/operator> <http://dbpedia.org/resource/Budapest> . ?x <http://dbpedia.org/ontology/operator> ?uri . }\"\n", + " SELECT DISTINCT?uri WHERE { res:Budapest dbo:operator?uri } \n", + "\"List all the operators of the train who operates in Budapest ? | 'Budapest'-res:Budapest | 'operators'-dbo:operator | 'train'-dbo:training | 'operates'-dbo:operator\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Budapest> <http://dbpedia.org/ontology/operator> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Puss_in_Boots_(film) dbp:producer?x.?x dbo:award?uri . }\n", - "\"What are the awards won by the producer of Puss in Boots (film)? | 'Puss in Boots (film)'-res:Puss_in_Boots_(1922_film) | 'awards'-dbo:budget | 'won'-dbo:award | 'producer'-dbo:producer\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Puss_in_Boots_(film)> <http://dbpedia.org/property/producer> ?x . ?x <http://dbpedia.org/ontology/award> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Puss_in_Boots_(1922_film) dbp:producer?x.?x dbo:award?uri . }\n", + "\"What are the awards won by the producer of Puss in Boots (film)? | 'Puss in Boots (film)'-res:Puss_in_Boots_(1922_film) | 'awards'-dbo:budget | 'won'-dbo:award | 'producer'-dbo:producer\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Puss_in_Boots_(1922_film)> <http://dbpedia.org/property/producer> ?x . ?x <http://dbpedia.org/ontology/award> ?uri . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:garrison res:Militia.?x dbo:leaderName?uri . }\n", - "\"How many politicians are in the militia? | 'militia'-res:Militia | 'militia'-dbo:garrison\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/garrison> <http://dbpedia.org/resource/Militia> . ?x <http://dbpedia.org/ontology/leaderName> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbo:garrison res:Militia . }\n", + "\"How many politicians are in the militia? | 'militia'-res:Militia | 'militia'-dbo:garrison\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/garrison> <http://dbpedia.org/resource/Militia> . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:garrison res:Minister_of_Defense_(Saudi_Arabia).?x dbp:combatant?uri . }\n", - "\"In which wars were people from the Saudi Arabian ministry of defense involved? | 'Saudi Arabian'-res:Minister_of_Defense_(Saudi_Arabia) | 'wars'-dbp:battles | 'defense'-dbo:garrison | 'involved'-dbo:result | ''-dbo:country\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/garrison> <http://dbpedia.org/resource/Minister_of_Defense_(Saudi_Arabia)> . ?x <http://dbpedia.org/property/combatant> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:garrison res:Minister_of_Defense_(Saudi_Arabia).?x dbp:battles?uri . }\n", + "\"In which wars were people from the Saudi Arabian ministry of defense involved? | 'Saudi Arabian'-res:Minister_of_Defense_(Saudi_Arabia) | 'wars'-dbp:battles | 'defense'-dbo:garrison | 'involved'-dbo:result | ''-dbo:country\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/garrison> <http://dbpedia.org/resource/Minister_of_Defense_(Saudi_Arabia)> . ?x <http://dbpedia.org/property/battles> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:opponent res:John_G._Schmitz.?uri dbp:president?x . }\n", - "\"Under which US president was a politician in opposition of John G Schmitz? | 'US'-res:United_States | 'G'-res:G | 'John Schmitz'-res:John_G._Schmitz | 'president'-dbo:president | 'politician'-dbo:party | 'opposition'-dbo:opponent\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/opponent> <http://dbpedia.org/resource/John_G._Schmitz> . ?uri <http://dbpedia.org/property/president> ?x . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:opponent res:John_G._Schmitz .?uri rdf:type dbo:OfficeHolder}\n", + "\"Under which US president was a politician in opposition of John G Schmitz? | 'US'-res:United_States | 'G'-res:G | 'John Schmitz'-res:John_G._Schmitz | 'president'-dbo:president | 'politician'-dbo:party | 'opposition'-dbo:opponent\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/opponent> <http://dbpedia.org/resource/John_G._Schmitz> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/OfficeHolder>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:The_Artist_(film) dbo:associatedBand?x.?x dbp:associatedMusicalArtist?uri . }\n", - "\"Who are the associated musical artist of the artists of band Shorty Rogers? | 'associated musical artist'-res:The_Artist_(film) | 'band Shorty Rogers'-res:Shorty_Rogers | 'associated band'-dbo:associatedBand | 'associated musical artist'-dbo:associatedMusicalArtist\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Artist_(film)> <http://dbpedia.org/ontology/associatedBand> ?x . ?x <http://dbpedia.org/property/associatedMusicalArtist> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:associatedActs res:Shorty_Rogers .?uri rdf:type dbo:MusicalArtist}\n", + "\"Who are the associated musical artist of the artists of band Shorty Rogers? | 'associated musical artist'-res:The_Artist_(film) | 'band Shorty Rogers'-res:Shorty_Rogers | 'associated band'-dbo:associatedBand | 'associated musical artist'-dbo:associatedMusicalArtist\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/associatedActs> <http://dbpedia.org/resource/Shorty_Rogers> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MusicalArtist>}\"\n", "\n", "SELECT DISTINCT?uri WHERE {?uri dbp:team res:Dallas_Cowboys .?uri rdf:type dbo:AmericanFootballPlayer}\n", "\"Who were the american football players who played for Dallas Cowboys? | 'american football players'-res:Les_Joueurs_de_football | 'Dallas Cowboys'-res:Dallas_Cowboys | 'played for'-dbo:team | 'american football player'-dbo:AmericanFootballPlayer\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/team> <http://dbpedia.org/resource/Dallas_Cowboys> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/AmericanFootballPlayer>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:engine res:Cell_(microprocessor).?uri dbo:predecessor res:PlayStation_2 . }\n", - "\"Which appliance's CPU is Cell (microprocessor) and predecessor is PlayStation 2? | 'CPU'-res:Scorpion_(CPU) | 'Cell (microprocessor)'-res:Cell_(microprocessor) | 'PlayStation 2'-res:PlayStation_2 | 'appliance'-dbp:engine | 'predecessor'-dbo:predecessor\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/engine> <http://dbpedia.org/resource/Cell_(microprocessor)> . ?uri <http://dbpedia.org/ontology/predecessor> <http://dbpedia.org/resource/PlayStation_2> . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbo:microprocessor res:Cell_(microprocessor).?uri dbp:predecessor res:PlayStation_2 . }\n", + "\"Which appliance's CPU is Cell (microprocessor) and predecessor is PlayStation 2? | 'CPU'-res:Scorpion_(CPU) | 'Cell (microprocessor)'-res:Cell_(microprocessor) | 'PlayStation 2'-res:PlayStation_2 | 'appliance'-dbp:engine | 'predecessor'-dbo:predecessor\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/microprocessor> <http://dbpedia.org/resource/Cell_(microprocessor)> . ?uri <http://dbpedia.org/property/predecessor> <http://dbpedia.org/resource/PlayStation_2> . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:debutTeam res:Houston_Astros.?uri dbp:name?x . }\n", - "\"People who debuted from Houston Astros have played in which clubs? | 'Houston Astros'-res:Houston_Astros | 'debuted'-dbo:debutTeam | 'played'-dbo:participant | 'clubs'-dbo:college\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/debutTeam> <http://dbpedia.org/resource/Houston_Astros> . ?uri <http://dbpedia.org/property/name> ?x . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:debutTeam res:Houston_Astros.?x dbp:name?uri . }\n", + "\"People who debuted from Houston Astros have played in which clubs? | 'Houston Astros'-res:Houston_Astros | 'debuted'-dbo:debutTeam | 'played'-dbo:participant | 'clubs'-dbo:college\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/debutTeam> <http://dbpedia.org/resource/Houston_Astros> . ?x <http://dbpedia.org/property/name> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:city res:Washington_DC.?x dbo:themeMusicComposer?uri . }\n", - "\"Radios on what topics can be tuned in to in Washington DC? | 'topics'-res:Topics_in_Early_Childhood_Special_Education | 'DC'-res:Dc_(computer_program) | 'Washington'-res:Washington | 'radios'-dbo:capital | 'tuned'-dbo:number\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/city> <http://dbpedia.org/resource/Washington_DC> . ?x <http://dbpedia.org/ontology/themeMusicComposer> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:capital res:Washington.?x dbp:subject?uri . }\n", + "\"Radios on what topics can be tuned in to in Washington DC? | 'topics'-res:Topics_in_Early_Childhood_Special_Education | 'DC'-res:Dc_(computer_program) | 'Washington'-res:Washington | 'radios'-dbo:capital | 'tuned'-dbo:number\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/capital> <http://dbpedia.org/resource/Washington> . ?x <http://dbpedia.org/property/subject> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:creator res:Russell_T_Davies.?uri rdf:type dbo:TelevisionShow}\n", - "\"Give me some shows related to the ones created by Russell Davies | 'Russell Davies'-res:Russell_T_Davies | 'shows'-dbo:place | 'related'-dbo:related | 'created'-dbo:creator\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/creator> <http://dbpedia.org/resource/Russell_T_Davies> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}\"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:creator res:Russell_T_Davies.?uri dbo:related?x . }\n", + "\"Give me some shows related to the ones created by Russell Davies | 'Russell Davies'-res:Russell_T_Davies | 'shows'-dbo:place | 'related'-dbo:related | 'created'-dbo:creator\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/creator> <http://dbpedia.org/resource/Russell_T_Davies> . ?uri <http://dbpedia.org/ontology/related> ?x . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Feng_Zicai dbo:commander?x.?x dbp:territory?uri . }\n", - "\"What is the territory of the conflict whose commander is Feng Zicai? | 'Feng Zicai'-res:Feng_Zicai | 'territory'-dbo:territory | 'conflict'-dbo:battle | 'commander'-dbo:commander\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Feng_Zicai> <http://dbpedia.org/ontology/commander> ?x . ?x <http://dbpedia.org/property/territory> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:commander res:Feng_Zicai.?x dbp:territory?uri . }\n", + "\"What is the territory of the conflict whose commander is Feng Zicai? | 'Feng Zicai'-res:Feng_Zicai | 'territory'-dbo:territory | 'conflict'-dbo:battle | 'commander'-dbo:commander\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/commander> <http://dbpedia.org/resource/Feng_Zicai> . ?x <http://dbpedia.org/property/territory> ?uri . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Michael_Springer dbo:club?uri. res:Syracuse_University_Press dbp:parentOrganization?uri} \n", - "\"Which club of Michael Springer is also the parent organization of Syracuse University press ? | 'Michael Springer'-res:Michael_Springer | 'Syracuse University press'-res:Syracuse_University_Press | 'club'-dbo:club | 'parent organization'-dbp:parentOrganization\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Michael_Springer> <http://dbpedia.org/ontology/club> ?uri . <http://dbpedia.org/resource/Syracuse_University_Press> <http://dbpedia.org/property/parentOrganization> ?uri} \"\n", + " SELECT DISTINCT?uri WHERE { res:Michael_Springer dbp:parentOrganization?uri. res:Syracuse_University_Press dbo:club?uri} \n", + "\"Which club of Michael Springer is also the parent organization of Syracuse University press ? | 'Michael Springer'-res:Michael_Springer | 'Syracuse University press'-res:Syracuse_University_Press | 'club'-dbo:club | 'parent organization'-dbp:parentOrganization\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Michael_Springer> <http://dbpedia.org/property/parentOrganization> ?uri . <http://dbpedia.org/resource/Syracuse_University_Press> <http://dbpedia.org/ontology/club> ?uri} \"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:BASIC dbp:founded?uri. res:Language_Integrated_Query dbo:company?uri. }\n", - "\"Which company created BASIC and Language Integrated Query ? | 'BASIC'-res:BASIC | 'Language Integrated Query'-res:Language_Integrated_Query | 'company'-dbo:company | 'created'-dbo:designer\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/BASIC> <http://dbpedia.org/property/founded> ?uri . <http://dbpedia.org/resource/Language_Integrated_Query> <http://dbpedia.org/ontology/company> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbo:designer res:BASIC.?uri dbp:company res:Language_Integrated_Query . }\n", + "\"Which company created BASIC and Language Integrated Query ? | 'BASIC'-res:BASIC | 'Language Integrated Query'-res:Language_Integrated_Query | 'company'-dbo:company | 'created'-dbo:designer\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/designer> <http://dbpedia.org/resource/BASIC> . ?uri <http://dbpedia.org/property/company> <http://dbpedia.org/resource/Language_Integrated_Query> . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:McDonnell_Douglas dbo:numberBuilt?uri. res:Bharathiar_University dbp:successor?uri} \n", - "\"Whihc successor of McDonnell Douglas was built bu Delta 3 ? | 'whihc successor'-res:The_Successor_(film) | 'McDonnell Douglas'-res:McDonnell_Douglas | 'bu Delta 3'-res:Bharathiar_University | 'built'-dbo:numberBuilt\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/McDonnell_Douglas> <http://dbpedia.org/ontology/numberBuilt> ?uri . <http://dbpedia.org/resource/Bharathiar_University> <http://dbpedia.org/property/successor> ?uri} \"\n", + " SELECT DISTINCT?uri WHERE { res:McDonnell_Douglas dbp:successor?uri. res:Bharathiar_University dbo:builder?uri} \n", + "\"Whihc successor of McDonnell Douglas was built bu Delta 3 ? | 'whihc successor'-res:The_Successor_(film) | 'McDonnell Douglas'-res:McDonnell_Douglas | 'bu Delta 3'-res:Bharathiar_University | 'built'-dbo:numberBuilt\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/McDonnell_Douglas> <http://dbpedia.org/property/successor> ?uri . <http://dbpedia.org/resource/Bharathiar_University> <http://dbpedia.org/ontology/builder> ?uri} \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:city res:Columbus_Crew_SC.?x dbo:place?uri . }\n", - "\"Where did some of the matches take place where Columbus Crew SC played? | 'SC'-res:SC | 'Columbus Crew'-res:Columbus_Crew_SC | 'matches'-dbp:matches | 'place'-dbo:place | 'played'-dbo:combatant\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/city> <http://dbpedia.org/resource/Columbus_Crew_SC> . ?x <http://dbpedia.org/ontology/place> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Columbus_Crew_SC dbp:place?x.?x dbo:combatant?uri . }\n", + "\"Where did some of the matches take place where Columbus Crew SC played? | 'SC'-res:SC | 'Columbus Crew'-res:Columbus_Crew_SC | 'matches'-dbp:matches | 'place'-dbo:place | 'played'-dbo:combatant\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Columbus_Crew_SC> <http://dbpedia.org/property/place> ?x . ?x <http://dbpedia.org/ontology/combatant> ?uri . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE { res:American_Mediterranean_Sea dbp:cities?uri . }\n", - "\"Count the number of cities around the American Mediterranean Sea? | 'American Mediterranean Sea'-res:Organization_of_American_States | 'American Mediterranean Sea'-res:American_Mediterranean_Sea | 'count'-dbo:type | 'cities'-dbp:cities | ''-dbo:country\",\"SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/American_Mediterranean_Sea> <http://dbpedia.org/property/cities> ?uri . }\"\n", + " SELECT DISTINCT COUNT(?uri) WHERE { res:American_Mediterranean_Sea dbp:cities?uri } \n", + "\"Count the number of cities around the American Mediterranean Sea? | 'American Mediterranean Sea'-res:Organization_of_American_States | 'American Mediterranean Sea'-res:American_Mediterranean_Sea | 'count'-dbo:type | 'cities'-dbp:cities | ''-dbo:country\",\" SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/American_Mediterranean_Sea> <http://dbpedia.org/property/cities> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:distributor res:FremantleMedia.?x dbo:manufacturer?uri . }\n", - "\"Who produced the TV shows for Fremantle Media? | 'Fremantle Media'-res:FremantleMedia | 'produced'-dbo:manufacturer\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/distributor> <http://dbpedia.org/resource/FremantleMedia> . ?x <http://dbpedia.org/ontology/manufacturer> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:manufacturer res:FremantleMedia .?uri rdf:type dbo:TelevisionShow}\n", + "\"Who produced the TV shows for Fremantle Media? | 'Fremantle Media'-res:FremantleMedia | 'produced'-dbo:manufacturer\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/manufacturer> <http://dbpedia.org/resource/FremantleMedia> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:chairman res:Merritt_Paulson.?x dbo:homeStadium?uri . }\n", - "\"What is the home stadium of the soccer club seasons whose chairman is Merritt Paulson? | 'soccer club seasons'-res:Mooroolbark_Soccer_Club | 'Merritt Paulson'-res:Merritt_Paulson | 'home stadium'-dbp:ground | 'chairman'-dbo:chairman\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/chairman> <http://dbpedia.org/resource/Merritt_Paulson> . ?x <http://dbpedia.org/ontology/homeStadium> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:chairman res:Merritt_Paulson.?x dbp:homeStadium?uri . }\n", + "\"What is the home stadium of the soccer club seasons whose chairman is Merritt Paulson? | 'soccer club seasons'-res:Mooroolbark_Soccer_Club | 'Merritt Paulson'-res:Merritt_Paulson | 'home stadium'-dbp:ground | 'chairman'-dbo:chairman\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/chairman> <http://dbpedia.org/resource/Merritt_Paulson> . ?x <http://dbpedia.org/property/homeStadium> ?uri . }\"\n", "\n", "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:producer res:Michael_Deeley .?uri rdf:type dbo:Film}\n", "\"How many movies did Michael Deeley produce? | 'Michael Deeley'-res:Michael_Deeley | 'produce'-dbp:producer | 'movie'-dbo:Film\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/producer> <http://dbpedia.org/resource/Michael_Deeley> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:race res:Lawrence_Realization_Stakes.?x dbo:award?uri . }\n", - "\"What awards have been given to the anyone who raced in the Lawrence Realization Stakes? | 'Lawrence Realization Stakes'-res:Lawrence_Realization_Stakes | 'race'-dbp:race | 'awards'-dbo:honours\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/race> <http://dbpedia.org/resource/Lawrence_Realization_Stakes> . ?x <http://dbpedia.org/ontology/award> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:race res:Lawrence_Realization_Stakes.?x dbo:honours?uri . }\n", + "\"What awards have been given to the anyone who raced in the Lawrence Realization Stakes? | 'Lawrence Realization Stakes'-res:Lawrence_Realization_Stakes | 'race'-dbp:race | 'awards'-dbo:honours\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/race> <http://dbpedia.org/resource/Lawrence_Realization_Stakes> . ?x <http://dbpedia.org/ontology/honours> ?uri . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:birthPlace res:United_Kingdom.?uri dbp:editing?x . }\n", - "\"Count the number of movies whose editors were born in UK? | 'UK'-res:United_Kingdom | 'count'-dbo:country | 'movies'-dbo:film | 'editors'-dbo:editor | 'born'-dbo:birthPlace\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/United_Kingdom> . ?uri <http://dbpedia.org/property/editing> ?x . }\"\n", + " SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:birthPlace res:United_Kingdom.?uri dbo:editing?uri }\n", + "\"Count the number of movies whose editors were born in UK? | 'UK'-res:United_Kingdom | 'count'-dbo:country | 'movies'-dbo:film | 'editors'-dbo:editor | 'born'-dbo:birthPlace\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/birthPlace> <http://dbpedia.org/resource/United_Kingdom> . ?uri <http://dbpedia.org/ontology/editing> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:starring res:Jeff_Conaway.?uri rdf:type dbo:TelevisionShow}\n", - "\"What is the television show whose cast members are Jeff Conaway and Jason Carter? | 'Jeff Conaway'-res:Jeff_Conaway | 'Jason Carter'-res:Jason_Carter_(actor) | 'television show'-dbo:transmission | 'cast members'-dbo:type\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/starring> <http://dbpedia.org/resource/Jeff_Conaway> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:starring res:Jeff_Conaway.?uri dbo:televisionShow}\n", + "\"What is the television show whose cast members are Jeff Conaway and Jason Carter? | 'Jeff Conaway'-res:Jeff_Conaway | 'Jason Carter'-res:Jason_Carter_(actor) | 'television show'-dbo:transmission | 'cast members'-dbo:type\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/starring> <http://dbpedia.org/resource/Jeff_Conaway> . ?uri <http://dbpedia.org/ontology/televisionShow>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Pittsburgh_Line dbo:route?x.?x dbp:founded?uri . }\n", - "\"Who founded the city at the end of the Pittsburgh Line route? | 'Pittsburgh Line'-res:Pittsburgh_Line | 'founded'-dbo:founder | 'city'-dbo:city | 'end'-dbp:end\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pittsburgh_Line> <http://dbpedia.org/ontology/route> ?x . ?x <http://dbpedia.org/property/founded> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Pittsburgh_Line dbp:end?x.?x dbo:foundationCity?uri . }\n", + "\"Who founded the city at the end of the Pittsburgh Line route? | 'Pittsburgh Line'-res:Pittsburgh_Line | 'founded'-dbo:founder | 'city'-dbo:city | 'end'-dbp:end\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pittsburgh_Line> <http://dbpedia.org/property/end> ?x . ?x <http://dbpedia.org/ontology/foundationCity> ?uri . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:origin res:United_States.?uri dbp:publisher?x . }\n", - "\"How many games have a publisher based in US? | 'US'-res:United_States | 'games'-dbo:games | 'publisher'-dbo:publisher | 'based'-dbo:origin\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/origin> <http://dbpedia.org/resource/United_States> . ?uri <http://dbpedia.org/property/publisher> ?x . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:origin res:United_States.?x dbp:publisher?uri . }\n", + "\"How many games have a publisher based in US? | 'US'-res:United_States | 'games'-dbo:games | 'publisher'-dbo:publisher | 'based'-dbo:origin\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/origin> <http://dbpedia.org/resource/United_States> . ?x <http://dbpedia.org/property/publisher> ?uri . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:league res:National_Basketball_Association .?uri rdf:type dbo:Person}\n", - "\"How many people have played for the NBA? | 'NBA'-res:National_Basketball_Association | 'played'-dbo:participant\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/league> <http://dbpedia.org/resource/National_Basketball_Association> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:league res:National_Basketball_Association . }\n", + "\"How many people have played for the NBA? | 'NBA'-res:National_Basketball_Association | 'played'-dbo:participant\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/league> <http://dbpedia.org/resource/National_Basketball_Association> . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:2002_Players_Championship dbp:prizes?x.?x dbo:nationality?uri . }\n", - "\"What is the nationality of the golf player who won the 2002 Players Championship ? | '2002 Players Championship'-res:2002_Players_Championship | 'nationality'-dbo:nationality | 'golf player'-dbo:participant | 'won'-dbo:award\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/2002_Players_Championship> <http://dbpedia.org/property/prizes> ?x . ?x <http://dbpedia.org/ontology/nationality> ?uri . }\"\n", + " SELECT DISTINCT?uri WHERE { res:2002_Players_Championship dbp:nationality?uri } \n", + "\"What is the nationality of the golf player who won the 2002 Players Championship ? | '2002 Players Championship'-res:2002_Players_Championship | 'nationality'-dbo:nationality | 'golf player'-dbo:participant | 'won'-dbo:award\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/2002_Players_Championship> <http://dbpedia.org/property/nationality> ?uri } \"\n", "\n", "SELECT DISTINCT?uri WHERE { res:Jane_Austen_in_Manhattan dbo:colour?uri. res:Emma_(novel) dbp:author?uri. }\n", "\"Who penned Emma and Jane Austen in Manhatten? | 'Jane Austen in Manhatten'-res:Jane_Austen_in_Manhattan | 'Emma'-res:Emma_(novel) | 'penned'-dbo:colour\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jane_Austen_in_Manhattan> <http://dbpedia.org/ontology/colour> ?uri . <http://dbpedia.org/resource/Emma_(novel)> <http://dbpedia.org/property/author> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?xdbp:canonizedBy res:Pope_John_Paul_II.?x dbp:deathPlace?uri . }\n", - "\"Where did the people canonized by John Paul II die? | 'John Paul II'-res:Pope_John_Paul_II | 'canonized by'-dbp:canonizedBy | 'die'-dbp:deathPlace\",\"SELECT DISTINCT ?uri WHERE { ?xdbp:canonizedBy <http://dbpedia.org/resource/Pope_John_Paul_II> . ?x <http://dbpedia.org/property/deathPlace> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:canonizedBy res:Pope_John_Paul_II .?uri rdf:type dbo:Person}\n", + "\"Where did the people canonized by John Paul II die? | 'John Paul II'-res:Pope_John_Paul_II | 'canonized by'-dbp:canonizedBy | 'die'-dbp:deathPlace\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/canonizedBy> <http://dbpedia.org/resource/Pope_John_Paul_II> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:music res:James_Horner.?uri dbo:producer?x . }\n", - "\"Who has produced movies that have a James Horner score? | 'James Horner score'-res:James_Horner | 'produced'-dbo:wineProduced | 'movies'-dbo:film\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/music> <http://dbpedia.org/resource/James_Horner> . ?uri <http://dbpedia.org/ontology/producer> ?x . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:music res:James_Horner .?uri rdf:type dbo:Film}\n", + "\"Who has produced movies that have a James Horner score? | 'James Horner score'-res:James_Horner | 'produced'-dbo:wineProduced | 'movies'-dbo:film\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/music> <http://dbpedia.org/resource/James_Horner> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:birthPlace res:United_States.?uri dbp:voice?x . }\n", - "\"Which shows are voiced be US citizens? | 'US'-res:United_States | 'shows'-dbo:place | 'voiced'-dbo:state | 'citizens'-dbp:country\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/United_States> . ?uri <http://dbpedia.org/property/voice> ?x . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:nationality res:United_States .?uri rdf:type dbo:TelevisionShow}\n", + "\"Which shows are voiced be US citizens? | 'US'-res:United_States | 'shows'-dbo:place | 'voiced'-dbo:state | 'citizens'-dbp:country\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/nationality> <http://dbpedia.org/resource/United_States> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:birthPlace res:England.?xdbp:placeOfDeath?uri . }\n", - "\"Count the different places where the people died, who were born in England? | 'died,'-res:Wulfstan_(died_1095) | 'England'-res:England | 'born'-dbp:placeOfBirth | 'died'-dbp:placeOfDeath\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/birthPlace> <http://dbpedia.org/resource/England> . ?xdbp:placeOfDeath ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:birthPlace res:England.?x dbp:placeOfDeath?uri . }\n", + "\"Count the different places where the people died, who were born in England? | 'died,'-res:Wulfstan_(died_1095) | 'England'-res:England | 'born'-dbp:placeOfBirth | 'died'-dbp:placeOfDeath\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/England> . ?x <http://dbpedia.org/property/placeOfDeath> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbo:battles res:Battle_of_the_Bulge_(film) . }\n", - "\"What are some relatives of Battle of the Bulge veterans? | 'Battle of the Bulge veterans'-res:Battle_of_the_Bulge_(film) | 'relatives'-dbo:languageFamily\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/battles> <http://dbpedia.org/resource/Battle_of_the_Bulge_(film)> . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:battles res:Battle_of_the_Bulge_(film).?x dbo:relation?uri . }\n", + "\"What are some relatives of Battle of the Bulge veterans? | 'Battle of the Bulge veterans'-res:Battle_of_the_Bulge_(film) | 'relatives'-dbo:languageFamily\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/Battle_of_the_Bulge_(film)> . ?x <http://dbpedia.org/ontology/relation> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Y_block_engine dbo:manufacturer?uri. res:Sho_V8_engine dbp:engine?uri. }\n", - "\"Who made the Y block engine and the SHO V8 engine? | 'Y'-res:Y | 'SHO'-res:Sho | 'V8 engine'-res:V8_engine | 'V8'-res:V8_(beverage) | 'SHO engine'-res:Ford_SHO_V8_engine | 'made'-dbo:manufacturer | 'made'-dbo:manufacturer\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Y_block_engine> <http://dbpedia.org/ontology/manufacturer> ?uri . <http://dbpedia.org/resource/Sho_V8_engine> <http://dbpedia.org/property/engine> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Sho dbo:engine?uri. res:V8_engine dbp:manufacturer?uri. }\n", + "\"Who made the Y block engine and the SHO V8 engine? | 'Y'-res:Y | 'SHO'-res:Sho | 'V8 engine'-res:V8_engine | 'V8'-res:V8_(beverage) | 'SHO engine'-res:Ford_SHO_V8_engine | 'made'-dbo:manufacturer | 'made'-dbo:manufacturer\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Sho> <http://dbpedia.org/ontology/engine> ?uri . <http://dbpedia.org/resource/V8_engine> <http://dbpedia.org/property/manufacturer> ?uri . }\"\n", "\n", "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:developer res:Blizzard_Entertainment.?x dbp:genre?uri . }\n", "\"How many different genres of games are produced by Blizzard? | 'blizzard'-res:Blizzard_Entertainment | 'produced'-dbo:developer | 'genre'-dbp:genre\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/developer> <http://dbpedia.org/resource/Blizzard_Entertainment> . ?x <http://dbpedia.org/property/genre> ?uri . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbo:location res:Ridgewood,_New_Jersey . }\n", - "\"How many things are located in Ridgewood, New Jersey? | 'Ridgewood, New Jersey'-res:Ridgewood,_New_Jersey | 'located'-dbo:locatedInArea\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/Ridgewood,_New_Jersey> . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbo:locatedInArea res:Ridgewood,_New_Jersey . }\n", + "\"How many things are located in Ridgewood, New Jersey? | 'Ridgewood, New Jersey'-res:Ridgewood,_New_Jersey | 'located'-dbo:locatedInArea\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/locatedInArea> <http://dbpedia.org/resource/Ridgewood,_New_Jersey> . }\"\n", "\n", "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbo:starring res:Jeff_Conaway . }\n", "\"How many times has Jeff Conaway been casted? | 'Jeff Conaway'-res:Jeff_Conaway | 'casted'-dbo:starring\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Jeff_Conaway> . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE {?uri dbp:nationality res:Miss_Michigan_USA } \n", - "\"who are some miss michigan usa? | 'michigan usa'-res:Miss_Michigan_USA\",\" SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/nationality> <http://dbpedia.org/resource/Miss_Michigan_USA> } \"\n", + " SELECT DISTINCT?uri WHERE {?uri dbp:placeOfBirth res:Michigan_USA } \n", + "\"who are some miss michigan usa? | 'michigan usa'-res:Miss_Michigan_USA\",\" SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/placeOfBirth> <http://dbpedia.org/resource/Michigan_USA> } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:area res:Regional_Radio_Sports_Network.?x dbp:area?uri . }\n", - "\"What is the regional radio sports network associated with? | 'regional radio sports network'-res:Regional_Radio_Sports_Network | 'associated'-dbo:associate\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/area> <http://dbpedia.org/resource/Regional_Radio_Sports_Network> . ?x <http://dbpedia.org/property/area> ?uri . }\"\n", + " SELECT DISTINCT?uri WHERE {?uri dbo:area res:Regional_Radio_Sports_Network } \n", + "\"What is the regional radio sports network associated with? | 'regional radio sports network'-res:Regional_Radio_Sports_Network | 'associated'-dbo:associate\",\" SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/area> <http://dbpedia.org/resource/Regional_Radio_Sports_Network> } \"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Sylvain_Lvi dbp:fields?uri } \n", "\"List the fields of Sylvain Lvi ? | 'Sylvain Lvi'-res:LVI | 'fields'-dbo:stadium\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Sylvain_Lvi> <http://dbpedia.org/property/fields> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:garrison res:Manchester_Airport.?x dbp:destinations?uri . }\n", - "\"Where do the airlines garrisoned at Manchester airport fly to? | 'Manchester airport'-res:Manchester_Airport | 'airlines'-dbo:icaoAirlineCode | 'garrisoned'-dbo:garrison | 'fly'-dbp:speed\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/garrison> <http://dbpedia.org/resource/Manchester_Airport> . ?x <http://dbpedia.org/property/destinations> ?uri . }\"\n", + " SELECT DISTINCT?uri WHERE {?uri dbp:targetAirport res:Manchester_Airport } \n", + "\"Where do the airlines garrisoned at Manchester airport fly to? | 'Manchester airport'-res:Manchester_Airport | 'airlines'-dbo:icaoAirlineCode | 'garrisoned'-dbo:garrison | 'fly'-dbp:speed\",\" SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/targetAirport> <http://dbpedia.org/resource/Manchester_Airport> } \"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Dalma_Kovács dbo:associatedMusicalArtist?uri } \n", "\"Who are the associate musical artists of Dalma Kovcs ? | 'Dalma Kovcs'-res:Dalma_Kovács | 'associate musical'-dbo:associatedMusicalArtist\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dalma_Kovács> <http://dbpedia.org/ontology/associatedMusicalArtist> ?uri } \"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:fields res:Field_Marshal.?x dbo:religion?uri . }\n", - "\"Count the number of different religions that field marshals have followed? | 'count'-dbo:time | 'religions'-dbo:religion | 'field marshals'-dbo:stadium\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/fields> <http://dbpedia.org/resource/Field_Marshal> . ?x <http://dbpedia.org/ontology/religion> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:field res:Field_Marshal.?x dbo:religion?uri . }\n", + "\"Count the number of different religions that field marshals have followed? | 'count'-dbo:time | 'religions'-dbo:religion | 'field marshals'-dbo:stadium\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/field> <http://dbpedia.org/resource/Field_Marshal> . ?x <http://dbpedia.org/ontology/religion> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:assembly res:Canada.?x dbp:manufacturer?uri . }\n", - "\"What cars were built upon the cars which were assembled in Canada? | 'Canada'-res:Canada | 'cars'-dbo:management | 'built'-dbo:ground | 'cars'-dbo:management | 'assembled'-dbp:assembly\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/assembly> <http://dbpedia.org/resource/Canada> . ?x <http://dbpedia.org/property/manufacturer> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:assembly res:Canada.?x dbo:carries?uri . }\n", + "\"What cars were built upon the cars which were assembled in Canada? | 'Canada'-res:Canada | 'cars'-dbo:management | 'built'-dbo:ground | 'cars'-dbo:management | 'assembled'-dbp:assembly\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/assembly> <http://dbpedia.org/resource/Canada> . ?x <http://dbpedia.org/ontology/carries> ?uri . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:guests res:On_Broadway_(Smash) . }\n", - "\"How many guests have been there on broadway? | 'on broadway'-res:On_Broadway_(Smash) | 'guests'-dbp:guests\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/guests> <http://dbpedia.org/resource/On_Broadway_(Smash)> . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:hometown res:On_Broadway_(Smash).?x dbp:guests?uri . }\n", + "\"How many guests have been there on broadway? | 'on broadway'-res:On_Broadway_(Smash) | 'guests'-dbp:guests\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/hometown> <http://dbpedia.org/resource/On_Broadway_(Smash)> . ?x <http://dbpedia.org/property/guests> ?uri . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:commander res:Egushawa.?x dbo:combatant?uri . }\n", - "\"How many factions have fought when Egushawa was a commander? | 'Egushawa'-res:Egushawa | 'factions'-dbo:movement | 'fought'-dbo:type | 'commander'-dbo:commander\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/commander> <http://dbpedia.org/resource/Egushawa> . ?x <http://dbpedia.org/ontology/combatant> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:commander res:Egushawa.?x dbp:combatant?uri . }\n", + "\"How many factions have fought when Egushawa was a commander? | 'Egushawa'-res:Egushawa | 'factions'-dbo:movement | 'fought'-dbo:type | 'commander'-dbo:commander\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/commander> <http://dbpedia.org/resource/Egushawa> . ?x <http://dbpedia.org/property/combatant> ?uri . }\"\n", "\n", "SELECT DISTINCT?uri WHERE {?x dbp:designer res:Olivier_Boulay.?x dbo:layout?uri . }\n", "\"What is the layout of the automobiles designed by Olivier Boulay? | 'Olivier Boulay'-res:Olivier_Boulay | 'layout'-dbo:layout | 'automobiles'-dbo:vehicle | 'designed'-dbo:designer\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/designer> <http://dbpedia.org/resource/Olivier_Boulay> . ?x <http://dbpedia.org/ontology/layout> ?uri . }\"\n", @@ -3282,8 +3026,8 @@ "SELECT DISTINCT?uri WHERE {?uri dbo:birthPlace res:Ridgewood,_New_Jersey . }\n", "\"What people were born in Ridgewood, New Jersey? | 'Ridgewood, New Jersey'-res:Ridgewood,_New_Jersey | 'born'-dbo:birthPlace\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Ridgewood,_New_Jersey> . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:operator res:Maple_Leaf_Sports_&_Entertainment.?x rdf:type dbo:Stadium}\n", - "\"Who have rented the stadium operated by Maple Leaf S&E? | 'Maple Leaf S&E'-res:Maple_Leaf_Sports_&_Entertainment | 'rented'-dbp:center | 'stadium'-dbo:stadium | 'operated'-dbo:staff\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/operator> <http://dbpedia.org/resource/Maple_Leaf_Sports_&_Entertainment> . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Stadium>}\"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:operator res:Maple_Leaf_Sports_&_Entertainment.?x dbo:tenant?uri . }\n", + "\"Who have rented the stadium operated by Maple Leaf S&E? | 'Maple Leaf S&E'-res:Maple_Leaf_Sports_&_Entertainment | 'rented'-dbp:center | 'stadium'-dbo:stadium | 'operated'-dbo:staff\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/operator> <http://dbpedia.org/resource/Maple_Leaf_Sports_&_Entertainment> . ?x <http://dbpedia.org/ontology/tenant> ?uri . }\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Timothy_Morton dbp:mainInterests?uri } \n", "\"What are the main interests of Timothy Morton? | 'Timothy Morton'-res:Timothy_Morton | 'main interests'-dbp:mainInterests\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Timothy_Morton> <http://dbpedia.org/property/mainInterests> ?uri } \"\n", @@ -3291,17 +3035,17 @@ "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:almaMater res:National_and_Kapodistrian_University_of_Athens.?x dbp:awards?uri . }\n", "\"Count the awards won by the people who graduated from the National and Kapodistrian University of Athens. | 'National'-res:National | 'Kapodistrian University of Athens'-res:National_and_Kapodistrian_University_of_Athens | 'count'-dbo:country | 'awards'-dbo:award | 'won'-dbo:city | 'graduated'-dbo:effectiveRadiatedPower\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/almaMater> <http://dbpedia.org/resource/National_and_Kapodistrian_University_of_Athens> . ?x <http://dbpedia.org/property/awards> ?uri . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:affiliation res:Association_of_Southeast_Asian_Institutions.of_Higher_Learning.?x dbp:athletics?uri . }\n", - "\"How many games are played at universities affiliated with the Association of Southeast Asian Institutions of Higher Learning? | 'universities'-res:Universities_Ireland | 'Association of Southeast Asian Institutions of Higher Learning'-res:Association_of_Southeast_Asian_Institutions_of_Higher_Learning | 'games'-dbo:games | 'played'-dbo:portrayer | 'affiliated'-dbo:related\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/affiliation> <http://dbpedia.org/resource/Association_of_Southeast_Asian_Institutions.of_Higher_Learning> . ?x <http://dbpedia.org/property/athletics> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:education res:Association_of_Higher_Learning.?x dbo:team?uri . }\n", + "\"How many games are played at universities affiliated with the Association of Southeast Asian Institutions of Higher Learning? | 'universities'-res:Universities_Ireland | 'Association of Southeast Asian Institutions of Higher Learning'-res:Association_of_Southeast_Asian_Institutions_of_Higher_Learning | 'games'-dbo:games | 'played'-dbo:portrayer | 'affiliated'-dbo:related\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/education> <http://dbpedia.org/resource/Association_of_Higher_Learning> . ?x <http://dbpedia.org/ontology/team> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:campus res:Suburb.?x dbp:campus?uri . }\n", - "\"Who studied in universities located in suburbs? | 'universities'-res:Universities_Ireland | 'suburbs'-res:Suburbs_(The_Suburbs_album) | 'studied'-dbo:course | 'located'-dbo:position\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/campus> <http://dbpedia.org/resource/Suburb> . ?x <http://dbpedia.org/property/campus> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:location res:Suburb .?uri rdf:type dbo:University}\n", + "\"Who studied in universities located in suburbs? | 'universities'-res:Universities_Ireland | 'suburbs'-res:Suburbs_(The_Suburbs_album) | 'studied'-dbo:course | 'located'-dbo:position\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/location> <http://dbpedia.org/resource/Suburb> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/University>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:writtenIn res:C_(programming_language) . }\n", - "\"What all are written in the C programming language? | 'C programming language'-res:C_(programming_language) | 'written'-dbp:writtenIn | 'programming language'-dbp:programmingLanguage\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/writtenIn> <http://dbpedia.org/resource/C_(programming_language)> . }\"\n", + " SELECT DISTINCT?uri WHERE {?uri dbp:programmingLanguage res:C_(programming_language) } \n", + "\"What all are written in the C programming language? | 'C programming language'-res:C_(programming_language) | 'written'-dbp:writtenIn | 'programming language'-dbp:programmingLanguage\",\" SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/programmingLanguage> <http://dbpedia.org/resource/C_(programming_language)> } \"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbo:artist res:Cirque_du_Soleil_discography . }\n", - "\"Count the number of artists in the Cirque du Soleil discography? | 'Cirque du Soleil discography'-res:Cirque_du_Soleil_discography | 'count'-dbo:type | 'artists'-dbp:artist\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/artist> <http://dbpedia.org/resource/Cirque_du_Soleil_discography> . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:artist res:Cirque_du_Soleil_discography .?uri rdf:type dbo:Artist}\n", + "\"Count the number of artists in the Cirque du Soleil discography? | 'Cirque du Soleil discography'-res:Cirque_du_Soleil_discography | 'count'-dbo:type | 'artists'-dbp:artist\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/artist> <http://dbpedia.org/resource/Cirque_du_Soleil_discography> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Artist>}\"\n", "\n", "SELECT DISTINCT?uri WHERE {?uri dbp:director res:Orson_Welles .?uri rdf:type dbo:Film}\n", "\"What are the movies whose director is Orson Welles? | 'Orson Welles'-res:Orson_Welles | 'director'-dbp:director | 'movie'-dbo:Film\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/director> <http://dbpedia.org/resource/Orson_Welles> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}\"\n", @@ -3309,44 +3053,44 @@ "SELECT DISTINCT?uri WHERE {?uri dbo:discoverer res:Urbain_Le_Verrier . }\n", "\"which planet was discovered by Urbain Le Verrier? | 'Urbain Le Verrier'-res:Urbain_Le_Verrier | 'discovered by'-dbo:discoverer\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/discoverer> <http://dbpedia.org/resource/Urbain_Le_Verrier> . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Union_of_Cambodian_Democrats dbo:ideology?uri } \n", - "\"?What are the airline hubs of Cascade Airways | 'What'-res:What | 'Cascade Airways'-res:Cascade_Airways | 'hubs'-dbp:hubs\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Union_of_Cambodian_Democrats> <http://dbpedia.org/ontology/ideology> ?uri } \"\n", + " SELECT DISTINCT?uri WHERE { res:Cascade_Airways dbp:ideology?uri } \n", + "\"?What are the airline hubs of Cascade Airways | 'What'-res:What | 'Cascade Airways'-res:Cascade_Airways | 'hubs'-dbp:hubs\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cascade_Airways> <http://dbpedia.org/property/ideology> ?uri } \"\n", "\n", "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:crosses res:Box_girder_bridge.?x dbo:river?uri . }\n", "\"How many rivers are crossed by different Box Girder bridges? | 'Box Girder bridge'-res:Box_girder_bridge | 'rivers'-dbo:river | 'crossed'-dbo:crosses\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/crosses> <http://dbpedia.org/resource/Box_girder_bridge> . ?x <http://dbpedia.org/ontology/river> ?uri . }\"\n", "\n", - " SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:party res:Austria.?x dbo:membership?uri }\n", - "\"Count the number of members of the organization which have Austria as one of the member ? | 'Austria'-res:Austria | 'count'-dbo:country | 'members'-dbo:family | 'organization'-dbp:house | 'member'-dbo:membership\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/party> <http://dbpedia.org/resource/Austria> . ?x <http://dbpedia.org/ontology/membership> ?uri }\"\n", + " SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:party res:Austria.?x dbp:membership?uri }\n", + "\"Count the number of members of the organization which have Austria as one of the member ? | 'Austria'-res:Austria | 'count'-dbo:country | 'members'-dbo:family | 'organization'-dbp:house | 'member'-dbo:membership\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/party> <http://dbpedia.org/resource/Austria> . ?x <http://dbpedia.org/property/membership> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:currentclub res:Jason_Hayne.?x dbo:team?uri . }\n", - "\"List the other members of the team where Jason Hayne currently plays? | 'Jason Hayne'-res:Jason_Hayne | 'members'-dbo:part | 'team'-dbo:team | 'plays'-dbo:plays\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/currentclub> <http://dbpedia.org/resource/Jason_Hayne> . ?x <http://dbpedia.org/ontology/team> ?uri . }\"\n", + " SELECT DISTINCT?uri WHERE { res:Jason_Hayne dbo:formerTeam?uri } \n", + "\"List the other members of the team where Jason Hayne currently plays? | 'Jason Hayne'-res:Jason_Hayne | 'members'-dbo:part | 'team'-dbo:team | 'plays'-dbo:plays\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jason_Hayne> <http://dbpedia.org/ontology/formerTeam> ?uri } \"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:battles res:Richard_Taylor_(colonel).?x dbp:combatant?uri . }\n", - "\"How many groups have fought in wars where Richard Taylor fought too? | 'Richard Taylor'-res:Richard_Taylor_(colonel) | 'fought'-dbo:type | 'wars'-dbp:battles | 'fought'-dbo:type\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/battles> <http://dbpedia.org/resource/Richard_Taylor_(colonel)> . ?x <http://dbpedia.org/property/combatant> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:commander res:Richard_Taylor_(colonel).?x dbp:battles?uri . }\n", + "\"How many groups have fought in wars where Richard Taylor fought too? | 'Richard Taylor'-res:Richard_Taylor_(colonel) | 'fought'-dbo:type | 'wars'-dbp:battles | 'fought'-dbo:type\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/commander> <http://dbpedia.org/resource/Richard_Taylor_(colonel)> . ?x <http://dbpedia.org/property/battles> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:artist res:Tangerine_Dream.?x dbp:artist?uri . }\n", - "\"What are the albums whose artists have performed with the Tangerine Dream? | 'Tangerine Dream'-res:Tangerine_Dream | 'albums'-dbo:album | 'artists'-dbp:artist | 'performed'-dbo:artist\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/artist> <http://dbpedia.org/resource/Tangerine_Dream> . ?x <http://dbpedia.org/property/artist> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:artist res:Tangerine_Dream .?uri rdf:type dbo:Artist}\n", + "\"What are the albums whose artists have performed with the Tangerine Dream? | 'Tangerine Dream'-res:Tangerine_Dream | 'albums'-dbo:album | 'artists'-dbp:artist | 'performed'-dbo:artist\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/artist> <http://dbpedia.org/resource/Tangerine_Dream> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Artist>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:language res:Germanic_languages.?uri dbo:language?x . }\n", - "\"List some writers which speak one of the Germanic languages. | 'Germanic languages'-res:Germanic_languages | 'writers'-dbo:writer | 'speak'-dbo:language\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/language> <http://dbpedia.org/resource/Germanic_languages> . ?uri <http://dbpedia.org/ontology/language> ?x . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:language res:Germanic_languages.?uri dbo:writer?x . }\n", + "\"List some writers which speak one of the Germanic languages. | 'Germanic languages'-res:Germanic_languages | 'writers'-dbo:writer | 'speak'-dbo:language\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/language> <http://dbpedia.org/resource/Germanic_languages> . ?uri <http://dbpedia.org/ontology/writer> ?x . }\"\n", "\n", "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:employer res:ITV_(TV_network) . }\n", "\"ITV employes how many people? | 'ITV'-res:ITV_(TV_network) | 'employes'-dbp:employer\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/employer> <http://dbpedia.org/resource/ITV_(TV_network)> . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:author res:Carl_Sagan.?x dbo:author?uri . }\n", - "\"What has Carl Sagan written his books about? | 'Carl Sagan'-res:Carl_Sagan | 'written'-dbo:writer | 'books'-dbo:volume\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/author> <http://dbpedia.org/resource/Carl_Sagan> . ?x <http://dbpedia.org/ontology/author> ?uri . }\"\n", + " SELECT DISTINCT?uri WHERE {?uri dbo:writer res:Carl_Sagan } \n", + "\"What has Carl Sagan written his books about? | 'Carl Sagan'-res:Carl_Sagan | 'written'-dbo:writer | 'books'-dbo:volume\",\" SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/writer> <http://dbpedia.org/resource/Carl_Sagan> } \"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Peanuts_Motion_Comics dbo:voice?uri. res:The_Neanuts_Movie dbp:voices?uri. }\n", - "\"Who voiced in Peanuts Motion Comics and The Peanuts Movie? | 'Peanuts Motion Comics'-res:Peanuts_Motion_Comics | 'The Peanuts Movie'-res:The_Peanuts_Movie | 'voiced'-dbp:voice\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Peanuts_Motion_Comics> <http://dbpedia.org/ontology/voice> ?uri . <http://dbpedia.org/resource/The_Neanuts_Movie> <http://dbpedia.org/property/voices> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:voice res:Peanuts_Motion_Comics.?uri rdf:type dbo:Film}\n", + "\"Who voiced in Peanuts Motion Comics and The Peanuts Movie? | 'Peanuts Motion Comics'-res:Peanuts_Motion_Comics | 'The Peanuts Movie'-res:The_Peanuts_Movie | 'voiced'-dbp:voice\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/voice> <http://dbpedia.org/resource/Peanuts_Motion_Comics> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Thomas_Secunda dbp:employer?x.?x dbo:owner?uri . }\n", - "\"Who is the owner of the bank where Thomas Secunda works ? | 'Thomas Secunda'-res:Thomas_Secunda | 'owner'-dbo:owner | 'bank'-dbo:order | 'works'-dbo:language\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Thomas_Secunda> <http://dbpedia.org/property/employer> ?x . ?x <http://dbpedia.org/ontology/owner> ?uri . }\"\n", + " SELECT DISTINCT?uri WHERE { res:Thomas_Secunda dbo:owner?uri } \n", + "\"Who is the owner of the bank where Thomas Secunda works ? | 'Thomas Secunda'-res:Thomas_Secunda | 'owner'-dbo:owner | 'bank'-dbo:order | 'works'-dbo:language\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Thomas_Secunda> <http://dbpedia.org/ontology/owner> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:regionServed res:Mid_Wales.?x dbo:foundedBy?uri . }\n", - "\"Who founded a company which served Mid Wales ? | 'Mid Wales'-res:Mid_Wales | 'served'-dbo:regionServed | 'founded'-dbo:foundedBy\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/regionServed> <http://dbpedia.org/resource/Mid_Wales> . ?x <http://dbpedia.org/ontology/foundedBy> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:regionServed res:Mid_Wales .?uri rdf:type dbo:Company}\n", + "\"Who founded a company which served Mid Wales ? | 'Mid Wales'-res:Mid_Wales | 'served'-dbo:regionServed | 'founded'-dbo:foundedBy\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/regionServed> <http://dbpedia.org/resource/Mid_Wales> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:birthPlace res:British_people .?uri rdf:type dbo:Film}\n", - "\"British people have edited which movies? | 'British'-res:United_Kingdom | 'british'-dbo:animal | 'edited'-dbo:editor | 'movies'-dbo:film\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/birthPlace> <http://dbpedia.org/resource/British_people> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:nationality res:British_people .?uri rdf:type dbo:Film}\n", + "\"British people have edited which movies? | 'British'-res:United_Kingdom | 'british'-dbo:animal | 'edited'-dbo:editor | 'movies'-dbo:film\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/nationality> <http://dbpedia.org/resource/British_people> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}\"\n", "\n", " SELECT DISTINCT?uri WHERE {?uri dbp:placeOfBirth res:United_States } \n", "\"Who are some US colonels? | 'US'-res:United_States | 'colonels'-dbo:distance\",\" SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/placeOfBirth> <http://dbpedia.org/resource/United_States> } \"\n", @@ -3357,35 +3101,35 @@ "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:athletics res:National_Collegiate_Athletic_Association .?uri rdf:type dbo:University}\n", "\"How many universities are in the National Collegiate Athletic Association? | 'universities'-res:Universities_Ireland | 'National Collegiate Athletic Association'-res:National_Collegiate_Athletic_Association | 'athletic'-dbo:athletics\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/athletics> <http://dbpedia.org/resource/National_Collegiate_Athletic_Association> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/University>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:designer res:Lars_Bak_(computer_programmer).?x dbo:company?uri . }\n", - "\"Which company developed the language designed by Lars Bak? | 'Lars Bak'-res:Lars_Bak_(computer_programmer) | 'company'-dbo:company | 'developed'-dbo:leader | 'language'-dbo:language | 'designed'-dbo:designer\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/designer> <http://dbpedia.org/resource/Lars_Bak_(computer_programmer)> . ?x <http://dbpedia.org/ontology/company> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:designer res:Lars_Bak_(computer_programmer).?x dbp:language?uri . }\n", + "\"Which company developed the language designed by Lars Bak? | 'Lars Bak'-res:Lars_Bak_(computer_programmer) | 'company'-dbo:company | 'developed'-dbo:leader | 'language'-dbo:language | 'designed'-dbo:designer\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/designer> <http://dbpedia.org/resource/Lars_Bak_(computer_programmer)> . ?x <http://dbpedia.org/property/language> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Lemberger_LD20b dbp:origin?uri. res:Start+Flug_H101 dbo:birthPlace?uri. }\n", - "\"Which country gave birth to the Lemberger LD20b and Start+Flug H101 aircrafts? | 'Lemberger LD20b'-res:Lemberger_LD20b | 'H101'-res:H101 | 'Start+Flug aircrafts'-res:Karnit_Flug | 'country'-dbo:country | 'birth'-dbo:origin\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lemberger_LD20b> <http://dbpedia.org/property/origin> ?uri . <http://dbpedia.org/resource/Start+Flug_H101> <http://dbpedia.org/ontology/birthPlace> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Lemberger_LD20b dbp:engine?uri. res:H101 dbo:origin?uri. }\n", + "\"Which country gave birth to the Lemberger LD20b and Start+Flug H101 aircrafts? | 'Lemberger LD20b'-res:Lemberger_LD20b | 'H101'-res:H101 | 'Start+Flug aircrafts'-res:Karnit_Flug | 'country'-dbo:country | 'birth'-dbo:origin\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lemberger_LD20b> <http://dbpedia.org/property/engine> ?uri . <http://dbpedia.org/resource/H101> <http://dbpedia.org/ontology/origin> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:birthPlace res:Louisiana . }\n", - "\"What are some things people born in Louisiana are famous for? | 'Louisiana'-res:Louisiana | 'born'-dbp:placeOfBirth | 'famous for'-dbp:knownFor\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/birthPlace> <http://dbpedia.org/resource/Louisiana> . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:placeOfBirth res:Louisiana . }\n", + "\"What are some things people born in Louisiana are famous for? | 'Louisiana'-res:Louisiana | 'born'-dbp:placeOfBirth | 'famous for'-dbp:knownFor\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/placeOfBirth> <http://dbpedia.org/resource/Louisiana> . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:9_to_5_(musical) dbo:musicBy?uri } \n", - "\"Who gave the musical score of 9 to 5 (musical) ? | '9 to 5 (musical)'-res:9_to_5_(musical) | 'musical'-dbo:musicBy\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/9_to_5_(musical)> <http://dbpedia.org/ontology/musicBy> ?uri } \"\n", + " SELECT DISTINCT?uri WHERE { res:9_to_5_(musical) dbp:musicBy?uri } \n", + "\"Who gave the musical score of 9 to 5 (musical) ? | '9 to 5 (musical)'-res:9_to_5_(musical) | 'musical'-dbo:musicBy\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/9_to_5_(musical)> <http://dbpedia.org/property/musicBy> ?uri } \"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:keyPeople res:Kazuo_Hirai.?uri dbp:builder?x . }\n", - "\"Count all that was built by a company whose leader is Kazuo Hirai? | 'Kazuo Hirai'-res:Kazuo_Hirai | 'count'-dbo:type | 'built'-dbo:numberBuilt | 'company'-dbo:company | 'leader'-dbo:leader\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/keyPeople> <http://dbpedia.org/resource/Kazuo_Hirai> . ?uri <http://dbpedia.org/property/builder> ?x . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:keyPeople res:Kazuo_Hirai.?x dbo:builder?uri . }\n", + "\"Count all that was built by a company whose leader is Kazuo Hirai? | 'Kazuo Hirai'-res:Kazuo_Hirai | 'count'-dbo:type | 'built'-dbo:numberBuilt | 'company'-dbo:company | 'leader'-dbo:leader\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/keyPeople> <http://dbpedia.org/resource/Kazuo_Hirai> . ?x <http://dbpedia.org/ontology/builder> ?uri . }\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Rostov-Glavny dbo:servingRailwayLine?uri } \n", "\"What is the serving railway line of Rostov-Glavny ? | 'Rostov-Glavny'-res:Rostov-Glavny | 'serving'-dbo:servingRailwayLine | 'railway'-dbo:railwayPlatforms\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Rostov-Glavny> <http://dbpedia.org/ontology/servingRailwayLine> ?uri } \"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:league res:National_Hockey_League.?x dbo:name?uri . }\n", - "\"Players from how many teams have participated in the National Hockey League? | 'National Hockey League'-res:National_Hockey_League | 'players'-dbo:participant | 'teams'-dbp:teams | 'participated'-dbo:participant\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/league> <http://dbpedia.org/resource/National_Hockey_League> . ?x <http://dbpedia.org/ontology/name> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:league res:National_Hockey_League.?x dbo:team?uri . }\n", + "\"Players from how many teams have participated in the National Hockey League? | 'National Hockey League'-res:National_Hockey_League | 'players'-dbo:participant | 'teams'-dbp:teams | 'participated'-dbo:participant\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/league> <http://dbpedia.org/resource/National_Hockey_League> . ?x <http://dbpedia.org/ontology/team> ?uri . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:deathPlace res:St._Petersburg,_Florida.?uri dbo:knownFor?x . }\n", - "\"How many things are people who died in St. Petersburg known for? | 'St Petersburg'-res:St._Petersburg,_Florida | 'died'-dbp:deathPlace\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/deathPlace> <http://dbpedia.org/resource/St._Petersburg,_Florida> . ?uri <http://dbpedia.org/ontology/knownFor> ?x . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:placeOfDeath res:St._Petersburg . }\n", + "\"How many things are people who died in St. Petersburg known for? | 'St Petersburg'-res:St._Petersburg,_Florida | 'died'-dbp:deathPlace\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/placeOfDeath> <http://dbpedia.org/resource/St._Petersburg> . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbo:ingredient res:Coconut . }\n", - "\"In how many nations is Coconut a common food ingredient? | 'Coconut'-res:Coconut | 'common food ingredient'-res:Ingredient | 'nations'-dbo:kingdom\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/ingredient> <http://dbpedia.org/resource/Coconut> . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:ingredient res:Coconut.?x dbo:country?uri . }\n", + "\"In how many nations is Coconut a common food ingredient? | 'Coconut'-res:Coconut | 'common food ingredient'-res:Ingredient | 'nations'-dbo:kingdom\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/ingredient> <http://dbpedia.org/resource/Coconut> . ?x <http://dbpedia.org/ontology/country> ?uri . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Jeffrey_Vanan dbo:origin?uri. res:American_Mediterranean_Sea dbp:country?uri} \n", - "\"What country is Jeffrey Werleman from, which also has the American Mediterranean Sea? | 'Jeffrey Werleman from,'-res:Jeffrey_Vanan | 'American Mediterranean Sea'-res:Organization_of_American_States | 'American Mediterranean Sea'-res:American_Mediterranean_Sea | 'country'-dbo:country | ''-dbo:country\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jeffrey_Vanan> <http://dbpedia.org/ontology/origin> ?uri . <http://dbpedia.org/resource/American_Mediterranean_Sea> <http://dbpedia.org/property/country> ?uri} \"\n", + " SELECT DISTINCT?uri WHERE { res:American_Mediterranean_Sea dbo:country?uri } \n", + "\"What country is Jeffrey Werleman from, which also has the American Mediterranean Sea? | 'Jeffrey Werleman from,'-res:Jeffrey_Vanan | 'American Mediterranean Sea'-res:Organization_of_American_States | 'American Mediterranean Sea'-res:American_Mediterranean_Sea | 'country'-dbo:country | ''-dbo:country\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/American_Mediterranean_Sea> <http://dbpedia.org/ontology/country> ?uri } \"\n", "\n", "SELECT DISTINCT?uri WHERE {?x dbo:owningCompany res:Turner_Broadcasting_System.?uri dbp:network?x . }\n", "\"List the television shows whose network's owning company is Turner Broadcasting System? | 'Turner Broadcasting System'-res:Turner_Broadcasting_System | 'television'-dbp:tv | 'shows'-dbo:place | 'network'-dbo:network | 'owning'-dbo:owningCompany | 'company'-dbo:company\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/owningCompany> <http://dbpedia.org/resource/Turner_Broadcasting_System> . ?uri <http://dbpedia.org/property/network> ?x . }\"\n", @@ -3393,35 +3137,35 @@ " SELECT DISTINCT?uri WHERE { res:Pandaruan_Bridge dbo:maintainedBy?uri } \n", "\"List the maintainers of Pandaruan Bridge? | 'Pandaruan Bridge'-res:Pandaruan_Bridge | 'maintainers'-dbo:maintainedBy\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pandaruan_Bridge> <http://dbpedia.org/ontology/maintainedBy> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:river res:Zambia.?x dbp:river?uri . }\n", - "\"What are some rivers in Zambia which have a dam on them? | 'Zambia'-res:Zambia | 'rivers'-dbo:river | 'dam'-dbo:dam\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/river> <http://dbpedia.org/resource/Zambia> . ?x <http://dbpedia.org/property/river> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:river res:Zambia.?x dbp:dam?uri . }\n", + "\"What are some rivers in Zambia which have a dam on them? | 'Zambia'-res:Zambia | 'rivers'-dbo:river | 'dam'-dbo:dam\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/river> <http://dbpedia.org/resource/Zambia> . ?x <http://dbpedia.org/property/dam> ?uri . }\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Cahora_Bassa dbp:inflow?uri } \n", "\"what does the cahora bassa flow into? | 'Cahora bassa'-res:Cahora_Bassa | 'flow'-dbp:inflow\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cahora_Bassa> <http://dbpedia.org/property/inflow> ?uri } \"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Fikret_Orman dbo:almaMater?uri } \n", - "\"What is the alma mater of Fikret Orman? | 'Fikret Orman'-res:Fikret_Orman | 'alma mater'-dbo:almaMater\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Fikret_Orman> <http://dbpedia.org/ontology/almaMater> ?uri } \"\n", + " SELECT DISTINCT?uri WHERE { res:Fikret_Orman dbp:almaMater?uri } \n", + "\"What is the alma mater of Fikret Orman? | 'Fikret Orman'-res:Fikret_Orman | 'alma mater'-dbo:almaMater\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Fikret_Orman> <http://dbpedia.org/property/almaMater> ?uri } \"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Evraz dbo:owningCompany?uri } \n", "\"Which company owns Evraz ? | 'Evraz'-res:Evraz | 'company'-dbo:owningCompany\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Evraz> <http://dbpedia.org/ontology/owningCompany> ?uri } \"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:headquarter res:Berlin.?x dbp:leader?uri . }\n", - "\"How many party leaders are there whose parties are headquartered in Berlin? | 'Berlin'-res:Berlin | 'headquarter'-dbo:headquarter | 'leaders'-dbo:leader\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/headquarter> <http://dbpedia.org/resource/Berlin> . ?x <http://dbpedia.org/property/leader> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:headquarters res:Berlin.?x dbo:leader?uri . }\n", + "\"How many party leaders are there whose parties are headquartered in Berlin? | 'Berlin'-res:Berlin | 'headquarter'-dbo:headquarter | 'leaders'-dbo:leader\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Berlin> . ?x <http://dbpedia.org/ontology/leader> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbo:relative res:Barry_Voight . }\n", - "\"Name a famous relative of barry voight | 'Barry voight'-res:Barry_Voight | 'name'-dbp:name | 'famous relative'-dbo:relative\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/relative> <http://dbpedia.org/resource/Barry_Voight> . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:relatives res:Barry_Voight . }\n", + "\"Name a famous relative of barry voight | 'Barry voight'-res:Barry_Voight | 'name'-dbp:name | 'famous relative'-dbo:relative\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/relatives> <http://dbpedia.org/resource/Barry_Voight> . }\"\n", "\n", "SELECT DISTINCT?uri WHERE {?x dbo:state res:Mecklenburg-Vorpommern.?x dbp:cities?uri . }\n", "\"List places that are associated to cities in the state of Mecklenburg-Vorpommern. | 'Mecklenburg-Vorpommern'-res:Mecklenburg-Vorpommern | 'places'-dbo:district | 'associated'-dbo:team | 'cities'-dbo:country\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/state> <http://dbpedia.org/resource/Mecklenburg-Vorpommern> . ?x <http://dbpedia.org/property/cities> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Creature_Comforts dbo:creator?x.?x dbp:awards?uri . }\n", - "\"Which awards did the writer, who is the creator of Creature Comforts, won ? | 'Creature Comforts,'-res:Creature_Comforts | 'awards'-dbo:award | 'writer,'-dbo:writer | 'creator'-dbo:creator | 'won'-dbo:award\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Creature_Comforts> <http://dbpedia.org/ontology/creator> ?x . ?x <http://dbpedia.org/property/awards> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:creator res:Creature_Comforts.?x dbp:awards?uri . }\n", + "\"Which awards did the writer, who is the creator of Creature Comforts, won ? | 'Creature Comforts,'-res:Creature_Comforts | 'awards'-dbo:award | 'writer,'-dbo:writer | 'creator'-dbo:creator | 'won'-dbo:award\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/creator> <http://dbpedia.org/resource/Creature_Comforts> . ?x <http://dbpedia.org/property/awards> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:area res:Monticello,_Maine.?x dbp:broadcastArea?uri . }\n", - "\"In which areas are the radio stations of Monticello, Maine available too? | 'Monticello, Maine'-res:Monticello,_Maine | 'radio stations'-dbo:numberOfStations\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/area> <http://dbpedia.org/resource/Monticello,_Maine> . ?x <http://dbpedia.org/property/broadcastArea> ?uri . }\"\n", + " SELECT DISTINCT?uri WHERE { res:Monticello,_Maine dbo:area?uri } \n", + "\"In which areas are the radio stations of Monticello, Maine available too? | 'Monticello, Maine'-res:Monticello,_Maine | 'radio stations'-dbo:numberOfStations\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Monticello,_Maine> <http://dbpedia.org/ontology/area> ?uri } \"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:artist res:Katy_B.?x dbo:label?uri . }\n", - "\"Through how many labels has Katy B released her singles? | 'B'-res:B | 'Katy'-res:Katy | 'labels'-dbo:flag | 'released'-dbo:channel | 'singles'-dbo:slogan\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/artist> <http://dbpedia.org/resource/Katy_B> . ?x <http://dbpedia.org/ontology/label> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:artist res:Katy_B._Raptor.?x dbp:label?uri . }\n", + "\"Through how many labels has Katy B released her singles? | 'B'-res:B | 'Katy'-res:Katy | 'labels'-dbo:flag | 'released'-dbo:channel | 'singles'-dbo:slogan\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/artist> <http://dbpedia.org/resource/Katy_B._Raptor> . ?x <http://dbpedia.org/property/label> ?uri . }\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:2015_Pro_Duta_FC_season dbp:stadium?uri } \n", "\"Name the sstadium of 2015 Pro Duta FC season ? | 'FC'-res:FC | '2015 Pro Duta season'-res:2015_Pro_Duta_FC_season | 'stadium'-dbp:stadium\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/2015_Pro_Duta_FC_season> <http://dbpedia.org/property/stadium> ?uri } \"\n", @@ -3432,29 +3176,29 @@ "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:music res:Jerry_Bock.?uri dbo:basedOn?x . }\n", "\"Jerry Bock's musicals has been adapted from how many things? | 'Jerry bock'-res:Jerry_Bock | 'music'-dbp:music | 'adapted from'-dbo:basedOn\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Jerry_Bock> . ?uri <http://dbpedia.org/ontology/basedOn> ?x . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:editing res:Mark_Stevens_(film_editor).?uri dbo:director res:Joel_Schumacher . }\n", - "\"Count the movies edited by Mark Stevens (film editor) and were directed by Joel Schumacher? | 'Mark Stevens (film editor)'-res:Mark_Stevens_(film_editor) | 'Joel Schumacher'-res:Joel_Schumacher | 'edited by'-dbp:editing | 'directed by'-dbo:director\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/editing> <http://dbpedia.org/resource/Mark_Stevens_(film_editor)> . ?uri <http://dbpedia.org/ontology/director> <http://dbpedia.org/resource/Joel_Schumacher> . }\"\n", + " SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:editing res:Mark_Stevens_(film_editor).?uri dbo:director res:Joel_Schumacher } \n", + "\"Count the movies edited by Mark Stevens (film editor) and were directed by Joel Schumacher? | 'Mark Stevens (film editor)'-res:Mark_Stevens_(film_editor) | 'Joel Schumacher'-res:Joel_Schumacher | 'edited by'-dbp:editing | 'directed by'-dbo:director\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/editing> <http://dbpedia.org/resource/Mark_Stevens_(film_editor)> . ?uri <http://dbpedia.org/ontology/director> <http://dbpedia.org/resource/Joel_Schumacher> } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:judges res:Ludacris.?x dbo:judge?uri . }\n", - "\"List the judge of the TV show whose one of the judge is Ludacris ? | 'TV'-res:Tv_test_pattern | 'Ludacris'-res:Ludacris | 'judge'-dbo:showJudge | 'show'-dbo:show | 'judge'-dbo:showJudge\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/judges> <http://dbpedia.org/resource/Ludacris> . ?x <http://dbpedia.org/ontology/judge> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:judges res:Ludacris .?uri rdf:type dbo:TelevisionShow}\n", + "\"List the judge of the TV show whose one of the judge is Ludacris ? | 'TV'-res:Tv_test_pattern | 'Ludacris'-res:Ludacris | 'judge'-dbo:showJudge | 'show'-dbo:show | 'judge'-dbo:showJudge\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/judges> <http://dbpedia.org/resource/Ludacris> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:league res:Argentine_Primera_División . }\n", - "\"Whose youth clubs used to participate in Argentine Primera Division? | 'Argentine Primera Division'-res:Argentina | 'Argentine Primera Division'-res:Argentine_Primera_División | 'Division'-dbp:league | 'youth clubs'-dbp:youthclubs\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/league> <http://dbpedia.org/resource/Argentine_Primera_División> . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:league res:Argentine_Primera_División .?uri rdf:type dbo:Youthclubs}\n", + "\"Whose youth clubs used to participate in Argentine Primera Division? | 'Argentine Primera Division'-res:Argentina | 'Argentine Primera Division'-res:Argentine_Primera_División | 'Division'-dbp:league | 'youth clubs'-dbp:youthclubs\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/league> <http://dbpedia.org/resource/Argentine_Primera_División> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Youthclubs>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:deathCause res:DeathCause.?x dbo:opponent?uri . }\n", - "\"List some people who were opponents of someone who was died by hanging? | 'opponents'-dbo:rival | 'died'-dbo:board | 'hanging'-dbo:configuration\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/deathCause> <http://dbpedia.org/resource/DeathCause> . ?x <http://dbpedia.org/ontology/opponent> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:deathCause res:Hanging.?x dbo:opponent?uri . }\n", + "\"List some people who were opponents of someone who was died by hanging? | 'opponents'-dbo:rival | 'died'-dbo:board | 'hanging'-dbo:configuration\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/deathCause> <http://dbpedia.org/resource/Hanging> . ?x <http://dbpedia.org/ontology/opponent> ?uri . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Lawrence_Okoye dbp:nationality?uri } \n", - "\"From which country is Lawrence Okoye's nationality ? | 'Lawrence Okoye'-res:Lawrence_Okoye | 'country'-dbo:country | 'nationality'-dbp:nationality\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lawrence_Okoye> <http://dbpedia.org/property/nationality> ?uri } \"\n", + " SELECT DISTINCT COUNT(?uri) WHERE { res:Lawrence_Okoye dbp:nationality?uri } \n", + "\"From which country is Lawrence Okoye's nationality ? | 'Lawrence Okoye'-res:Lawrence_Okoye | 'country'-dbo:country | 'nationality'-dbp:nationality\",\" SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Lawrence_Okoye> <http://dbpedia.org/property/nationality> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:party res:Barasat_(Lok_Sabha_constituency).?x dbo:party?uri . }\n", - "\"From which party is the politician who was selected in Barasat constituency? | 'Barasat constituency'-res:Barasat_(Lok_Sabha_constituency) | 'party'-dbo:party | 'politician'-dbo:party | 'selected'-dbo:name\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/party> <http://dbpedia.org/resource/Barasat_(Lok_Sabha_constituency)> . ?x <http://dbpedia.org/ontology/party> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:party res:Barasat_(Lok_Sabha_constituency).?x dbo:party?uri . }\n", + "\"From which party is the politician who was selected in Barasat constituency? | 'Barasat constituency'-res:Barasat_(Lok_Sabha_constituency) | 'party'-dbo:party | 'politician'-dbo:party | 'selected'-dbo:name\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/party> <http://dbpedia.org/resource/Barasat_(Lok_Sabha_constituency)> . ?x <http://dbpedia.org/ontology/party> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:album res:Harry_and_the_Potters_(album).?x dbo:origin?uri . }\n", - "\"Where did the genres originate, which were in the Harry and the Potters album? | 'Harry and the Potters'-res:Harry_and_the_Potters_(album) | 'genre'-dbo:genre | 'album'-dbo:stylisticOrigin\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/album> <http://dbpedia.org/resource/Harry_and_the_Potters_(album)> . ?x <http://dbpedia.org/ontology/origin> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:album res:Harry_and_the_Potters_(album).?x dbo:genre?uri . }\n", + "\"Where did the genres originate, which were in the Harry and the Potters album? | 'Harry and the Potters'-res:Harry_and_the_Potters_(album) | 'genre'-dbo:genre | 'album'-dbo:stylisticOrigin\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/album> <http://dbpedia.org/resource/Harry_and_the_Potters_(album)> . ?x <http://dbpedia.org/ontology/genre> ?uri . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Arthur_%22Big_Boy%22_Spires dbp:chairman?uri } \n", - "\"Who was succeeded by Arthur Gegei as the office ho0lder ? | 'Arthur Gegei'-res:Arthur_%22Big_Boy%22_Spires | 'succeeded'-dbo:founder | 'office ho0lder'-dbo:arm\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Arthur_%22Big_Boy%22_Spires> <http://dbpedia.org/property/chairman> ?uri } \"\n", + " SELECT DISTINCT?uri WHERE { res:Arthur_Gorgei dbp:successor?uri } \n", + "\"Who was succeeded by Arthur Gegei as the office ho0lder ? | 'Arthur Gegei'-res:Arthur_%22Big_Boy%22_Spires | 'succeeded'-dbo:founder | 'office ho0lder'-dbo:arm\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Arthur_Gorgei> <http://dbpedia.org/property/successor> ?uri } \"\n", "\n", "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:editing res:Mark_Stevens_(film_editor) .?uri rdf:type dbo:Film}\n", "\"Give me a count of movies whose editor is Mark Stevens? | 'Mark Stevens'-res:Mark_Stevens_(film_editor) | 'editor'-dbp:editing | 'movie'-dbo:Film\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/editing> <http://dbpedia.org/resource/Mark_Stevens_(film_editor)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}\"\n", @@ -3462,14 +3206,14 @@ " SELECT DISTINCT?uri WHERE { res:Journal_of_Cerebral_Blood_Flow_&_Metabolism dbp:academicDiscipline?uri. res:Ragout_fin dbo:ingredient?uri} \n", "\"What is the academic discipline of the Journal of Cerebral Blood Flow & Metabolism and also an ingredient of the Ragout fin ? | 'Journal of Cerebral Blood Flow & Metabolism'-res:Journal_of_Cerebral_Blood_Flow_&_Metabolism | 'Ragout fin'-res:Ragout_fin | 'academic discipline'-dbo:academicDiscipline | 'ingredient'-dbo:ingredient\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Journal_of_Cerebral_Blood_Flow_&_Metabolism> <http://dbpedia.org/property/academicDiscipline> ?uri . <http://dbpedia.org/resource/Ragout_fin> <http://dbpedia.org/ontology/ingredient> ?uri} \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:starring res:Jason_Carter .?uri rdf:type dbo:TelevisionShow}\n", - "\"In what tv shows did Jason Carter act? | 'Jason Carter'-res:Jason_Carter | 'act'-dbo:starring\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/starring> <http://dbpedia.org/resource/Jason_Carter> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}\"\n", + " SELECT DISTINCT?uri WHERE {?uri dbo:starring res:Jason_Carter } \n", + "\"In what tv shows did Jason Carter act? | 'Jason Carter'-res:Jason_Carter | 'act'-dbo:starring\",\" SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Jason_Carter> } \"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Aubie dbp:mascot?uri } \n", - "\"To which sports team is Aubie the mascot? | 'Aubie'-res:Aubie | 'mascot'-dbp:mascot | 'sports team'-dbo:SportsTeam\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Aubie> <http://dbpedia.org/property/mascot> ?uri } \"\n", + " SELECT DISTINCT?uri WHERE { res:Aubie dbp:mascot?uri. res:SportsTeam?uri} \n", + "\"To which sports team is Aubie the mascot? | 'Aubie'-res:Aubie | 'mascot'-dbp:mascot | 'sports team'-dbo:SportsTeam\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Aubie> <http://dbpedia.org/property/mascot> ?uri . <http://dbpedia.org/resource/SportsTeam> ?uri} \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:placeOfBurial res:Rome . }\n", - "\"Which royal people are buried in Rome? | 'Rome'-res:Rome | 'buried'-dbp:placeOfBurial\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/placeOfBurial> <http://dbpedia.org/resource/Rome> . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:placeOfBurial res:Rome .?uri rdf:type dbo:RoyalPerson}\n", + "\"Which royal people are buried in Rome? | 'Rome'-res:Rome | 'buried'-dbp:placeOfBurial\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/placeOfBurial> <http://dbpedia.org/resource/Rome> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/RoyalPerson>}\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Cornell_University_Press dbp:parent?uri. res:Mario_García_Menocal dbo:almaMater?uri} \n", "\"Which parent company of the Cornell University Press is also the alma mater of the Mario Garca Menocal? | 'Cornell University Press'-res:Cornell_University_Press | 'Mario Garca Menocal'-res:Mario_García_Menocal | 'parent company'-dbp:parent | 'alma mater'-dbo:almaMater\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cornell_University_Press> <http://dbpedia.org/property/parent> ?uri . <http://dbpedia.org/resource/Mario_García_Menocal> <http://dbpedia.org/ontology/almaMater> ?uri} \"\n", @@ -3480,59 +3224,59 @@ " SELECT DISTINCT?uri WHERE { res:MacKenzie_Miller dbo:birthPlace?uri } \n", "\"Where was MacKenzie Miller born? | 'MacKenzie Miller'-res:MacKenzie_Miller | 'born'-dbo:birthPlace\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/MacKenzie_Miller> <http://dbpedia.org/ontology/birthPlace> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:canonizedBy res:Agatha_of_Sicily.?x dbo:birthPlace?uri . }\n", - "\"What is the birth location of the pope who was canonized by Agatha of Sicily? | 'Agatha of Sicily'-res:Agatha_of_Sicily | 'birth location'-dbo:origin | 'canonized'-dbo:canonizedBy\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/canonizedBy> <http://dbpedia.org/resource/Agatha_of_Sicily> . ?x <http://dbpedia.org/ontology/birthPlace> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:canonizedBy res:Agatha_of_Sicily.?x dbp:birthPlace?uri . }\n", + "\"What is the birth location of the pope who was canonized by Agatha of Sicily? | 'Agatha of Sicily'-res:Agatha_of_Sicily | 'birth location'-dbo:origin | 'canonized'-dbo:canonizedBy\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/canonizedBy> <http://dbpedia.org/resource/Agatha_of_Sicily> . ?x <http://dbpedia.org/property/birthPlace> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:awards res:Royal_Astronomical_Society.?x dbo:doctoralStudents?uri . }\n", - "\"Which set of researchers won the Gold Medal of the Royal Astronomical Society award? | 'Gold Medal of the Royal Astronomical Society award'-res:Royal_Astronomical_Society | 'set'-dbo:type\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/awards> <http://dbpedia.org/resource/Royal_Astronomical_Society> . ?x <http://dbpedia.org/ontology/doctoralStudents> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:award res:Royal_Astronomical_Society.?x dbp:doctoralStudents?uri . }\n", + "\"Which set of researchers won the Gold Medal of the Royal Astronomical Society award? | 'Gold Medal of the Royal Astronomical Society award'-res:Royal_Astronomical_Society | 'set'-dbo:type\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/award> <http://dbpedia.org/resource/Royal_Astronomical_Society> . ?x <http://dbpedia.org/property/doctoralStudents> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:occupation res:Church_of_England.?x dbp:deathPlace?uri . }\n", - "\"Give me the places where people who worked in Church of England died in ? | 'Church of England'-res:Church_of_England | 'work'-dbo:occupation | 'died in'-dbo:deathPlace\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/occupation> <http://dbpedia.org/resource/Church_of_England> . ?x <http://dbpedia.org/property/deathPlace> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:placeOfDeath res:Church_of_England.?x dbo:deathPlace?uri . }\n", + "\"Give me the places where people who worked in Church of England died in ? | 'Church of England'-res:Church_of_England | 'work'-dbo:occupation | 'died in'-dbo:deathPlace\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/placeOfDeath> <http://dbpedia.org/resource/Church_of_England> . ?x <http://dbpedia.org/ontology/deathPlace> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:placeOfBirth res:Renaissance_Center.?x dbp:address?uri . }\n", - "\"where are renaissance centers located? | 'renaissance centers'-res:Renaissance_Center | 'located'-dbo:address\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/placeOfBirth> <http://dbpedia.org/resource/Renaissance_Center> . ?x <http://dbpedia.org/property/address> ?uri . }\"\n", + " SELECT DISTINCT?uri WHERE {?uri dbo:address res:Renaissance_Center } \n", + "\"where are renaissance centers located? | 'renaissance centers'-res:Renaissance_Center | 'located'-dbo:address\",\" SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/address> <http://dbpedia.org/resource/Renaissance_Center> } \"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:restingPlace res:Madrid.?uri dbp:author?x . }\n", - "\"How many books are there whose author's tomb is in Madrid? | 'tomb'-res:The_Tomb_(2007_film) | 'Madrid'-res:Madrid | 'books'-dbo:title | 'author'-dbo:author\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/restingPlace> <http://dbpedia.org/resource/Madrid> . ?uri <http://dbpedia.org/property/author> ?x . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:restingplace res:Madrid.?uri dbo:author?x . }\n", + "\"How many books are there whose author's tomb is in Madrid? | 'tomb'-res:The_Tomb_(2007_film) | 'Madrid'-res:Madrid | 'books'-dbo:title | 'author'-dbo:author\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/restingplace> <http://dbpedia.org/resource/Madrid> . ?uri <http://dbpedia.org/ontology/author> ?x . }\"\n", "\n", "SELECT DISTINCT?uri WHERE {?x dbo:notableWork res:Band_of_Brothers_(miniseries).?uri dbp:writers?x . }\n", "\"What are the television shows whose writers did notable work for Band of Brothers ? | 'Band of Brothers'-res:Band_of_Brothers_(miniseries) | 'television shows'-dbo:televisionSeries | 'writers'-dbo:composer | 'notable work'-dbo:notableWork\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/notableWork> <http://dbpedia.org/resource/Band_of_Brothers_(miniseries)> . ?uri <http://dbpedia.org/property/writers> ?x . }\"\n", "\n", - " SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:kingdom res:Animal.?x dbp:species?uri }\n", - "\"To how many different species does the members of the Animal Kingdom belong? | 'Animal Kingdom'-res:Animal | 'species'-dbo:species | 'members'-dbo:part | 'belong'-dbo:date\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/kingdom> <http://dbpedia.org/resource/Animal> . ?x <http://dbpedia.org/property/species> ?uri }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:kingdom res:Animal.?x dbp:species?uri . }\n", + "\"To how many different species does the members of the Animal Kingdom belong? | 'Animal Kingdom'-res:Animal | 'species'-dbo:species | 'members'-dbo:part | 'belong'-dbo:date\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/kingdom> <http://dbpedia.org/resource/Animal> . ?x <http://dbpedia.org/property/species> ?uri . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE {?uri dbo:nearestCity res:Helsinki } \n", - "\"What water bodies are nearest to Helsinki city? | 'Helsinki city'-res:Helsinki | 'nearest city'-dbo:nearestCity | 'water'-dbo:BodyOfWater\",\" SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/nearestCity> <http://dbpedia.org/resource/Helsinki> } \"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:nearestCity res:Helsinki .?uri rdf:type dbo:BodyOfWater}\n", + "\"What water bodies are nearest to Helsinki city? | 'Helsinki city'-res:Helsinki | 'nearest city'-dbo:nearestCity | 'water'-dbo:BodyOfWater\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/nearestCity> <http://dbpedia.org/resource/Helsinki> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/BodyOfWater>}\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Bruce_Beutler dbp:awards?uri } \n", "\"What is the prize awarded to Bruce Beutler ? | 'Bruce Beutler'-res:Bruce_Beutler | 'prize'-dbo:award | 'awarded'-dbo:award\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bruce_Beutler> <http://dbpedia.org/property/awards> ?uri } \"\n", "\n", - " SELECT DISTINCT?uri WHERE {?uri dbp:publisher res:Thomas_Egerton_(publisher) } \n", - "\"To which books Thomas Egerton, an editor? | 'Thomas Egerton,'-res:Thomas_Egerton_(publisher) | 'editor'-dbo:publisher\",\" SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/publisher> <http://dbpedia.org/resource/Thomas_Egerton_(publisher)> } \"\n", + " SELECT DISTINCT?uri WHERE { res:Thomas_Egerton_(publisher) dbo:publisher?uri } \n", + "\"To which books Thomas Egerton, an editor? | 'Thomas Egerton,'-res:Thomas_Egerton_(publisher) | 'editor'-dbo:publisher\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Thomas_Egerton_(publisher)> <http://dbpedia.org/ontology/publisher> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbo:jointCommunity res:Sony.?uri dbp:manufacturer res:Ascent_manufacturer_of_Elliott_United_States.?uri. }\n", - "\"What is the appliance build jointly by Sony and Asus? | 'Sony and Asus'-res:Sony | 'appliance'-dbp:instrument | 'build'-dbo:order | 'jointly'-dbo:jointCommunity\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/jointCommunity> <http://dbpedia.org/resource/Sony> . ?uri <http://dbpedia.org/property/manufacturer> <http://dbpedia.org/resource/Ascent_manufacturer_of_Elliott_United_States> . ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Sony dbp:instrument?uri. res: Asus dbo:jointCommunity?uri. }\n", + "\"What is the appliance build jointly by Sony and Asus? | 'Sony and Asus'-res:Sony | 'appliance'-dbp:instrument | 'build'-dbo:order | 'jointly'-dbo:jointCommunity\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Sony> <http://dbpedia.org/property/instrument> ?uri . <http://dbpedia.org/resource/Asus> <http://dbpedia.org/ontology/jointCommunity> ?uri . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Congress_of_Industrial_Organizations dbo:leader?uri } \n", - "\"What was founded by Congress of Industrial Organizations ? | 'Congress of Industrial Organizations'-res:Congress_of_Industrial_Organizations | 'founded'-dbo:leader\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Congress_of_Industrial_Organizations> <http://dbpedia.org/ontology/leader> ?uri } \"\n", + " SELECT DISTINCT?uri WHERE { res:Congress_of_Industrial_Organizations dbo:founder?uri } \n", + "\"What was founded by Congress of Industrial Organizations ? | 'Congress of Industrial Organizations'-res:Congress_of_Industrial_Organizations | 'founded'-dbo:leader\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Congress_of_Industrial_Organizations> <http://dbpedia.org/ontology/founder> ?uri } \"\n", "\n", - " SELECT DISTINCT?uri WHERE {?uri dbo:formerTeam res:Toronto_Argonauts } \n", - "\"Which current players once played for Toronto argonauts? | 'Toronto argonauts'-res:Toronto_Argonauts | 'played'-dbo:formerTeam | 'players'-dbo:AmericanFootballPlayer\",\" SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/formerTeam> <http://dbpedia.org/resource/Toronto_Argonauts> } \"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:formerTeam res:Toronto_Argonauts .?uri rdf:type dbo:AmericanFootballPlayer}\n", + "\"Which current players once played for Toronto argonauts? | 'Toronto argonauts'-res:Toronto_Argonauts | 'played'-dbo:formerTeam | 'players'-dbo:AmericanFootballPlayer\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/formerTeam> <http://dbpedia.org/resource/Toronto_Argonauts> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/AmericanFootballPlayer>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:opponent res:Benjamin_Spock.?x dbp:president?uri . }\n", - "\"Who was the president at the time when the opponent of Benjamin Spock held office? | 'Benjamin Spock'-res:Benjamin_Spock | 'president'-dbo:president | 'time'-dbo:time | 'opponent'-dbo:opponent | 'held'-dbo:president | 'office'-dbo:office\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/opponent> <http://dbpedia.org/resource/Benjamin_Spock> . ?x <http://dbpedia.org/property/president> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:opponent res:Benjamin_Spock.?x dbp:office?uri . }\n", + "\"Who was the president at the time when the opponent of Benjamin Spock held office? | 'Benjamin Spock'-res:Benjamin_Spock | 'president'-dbo:president | 'time'-dbo:time | 'opponent'-dbo:opponent | 'held'-dbo:president | 'office'-dbo:office\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/opponent> <http://dbpedia.org/resource/Benjamin_Spock> . ?x <http://dbpedia.org/property/office> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:majorShrine res:Poznań.?x shrines?uri . }\n", - "\"List the shrines of the saint whose one of the shrine is Ponza ? | ''-res:Poznań | 'shrines'-dbo:majorShrine | 'saint'-dbo:saint | 'shrine'-dbo:majorShrine\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/majorShrine> <http://dbpedia.org/resource/Poznań> . ?x shrines ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:majorShrine res:Poznań.?x dbo:saint?uri . }\n", + "\"List the shrines of the saint whose one of the shrine is Ponza ? | ''-res:Poznań | 'shrines'-dbo:majorShrine | 'saint'-dbo:saint | 'shrine'-dbo:majorShrine\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/majorShrine> <http://dbpedia.org/resource/Poznań> . ?x <http://dbpedia.org/ontology/saint> ?uri . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbo:militaryBranch res:United_States . }\n", - "\"How many people are in the continental army? | 'continental army'-dbo:band\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/militaryBranch> <http://dbpedia.org/resource/United_States> . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbo:militaryBranch res:The_Continental_Army . }\n", + "\"How many people are in the continental army? | 'continental army'-dbo:band\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/militaryBranch> <http://dbpedia.org/resource/The_Continental_Army> . }\"\n", "\n", "SELECT DISTINCT?uri WHERE {?uri dbp:music res:Vangelis .?uri rdf:type dbo:Film}\n", "\"What are the movies whose music is composed by Vangelis? | 'Vangelis'-res:Vangelis | 'composed'-dbo:musicComposer | 'movie'-dbo:Film\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Vangelis> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:species res:Vitis_vinifera.?x dbo:wineRegion?uri . }\n", - "\"In which areas can I find wine made of Vitis vinifera grapes? | 'I'-res:I | 'Vitis vinifera grapes'-res:Kyoho_(grape) | 'wine'-dbo:wineRegion\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/species> <http://dbpedia.org/resource/Vitis_vinifera> . ?x <http://dbpedia.org/ontology/wineRegion> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:species res:Vitis_vinifera.?x dbp:wineRegion?uri . }\n", + "\"In which areas can I find wine made of Vitis vinifera grapes? | 'I'-res:I | 'Vitis vinifera grapes'-res:Kyoho_(grape) | 'wine'-dbo:wineRegion\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/species> <http://dbpedia.org/resource/Vitis_vinifera> . ?x <http://dbpedia.org/property/wineRegion> ?uri . }\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:The_Rolling_Stone_Album_Guide dbp:publisher?uri } \n", "\"Who is the publisher of The Rolling Stone Album Guide ? | 'The Rolling Stone Album Guide'-res:The_Rolling_Stone_Album_Guide | 'publisher'-dbo:publisher\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Rolling_Stone_Album_Guide> <http://dbpedia.org/property/publisher> ?uri } \"\n", @@ -3540,29 +3284,29 @@ "SELECT DISTINCT COUNT(?uri) WHERE { res:21Vianet dbp:services?uri . }\n", "\"How many services does 21Vianet provide? | '21vianet'-res:21Vianet | 'services'-dbp:services\",\"SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/21Vianet> <http://dbpedia.org/property/services> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbo:river res:Box_girder_bridge . }\n", - "\"What are some rivers over which there is a box girder bridge? | 'box girder bridge'-res:Box_girder_bridge | 'rivers'-dbo:river\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/river> <http://dbpedia.org/resource/Box_girder_bridge> . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:crosses res:Box_girder_bridge .?uri rdf:type dbo:River}\n", + "\"What are some rivers over which there is a box girder bridge? | 'box girder bridge'-res:Box_girder_bridge | 'rivers'-dbo:river\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/crosses> <http://dbpedia.org/resource/Box_girder_bridge> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/River>}\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Saleen_S5S_Raptor dbp:designer?uri } \n", "\"Who is the designer of Saleen S5S Raptor ? | 'S5S'-res:Saleen_S5S_Raptor | 'Saleen Raptor'-res:Saleen_S5S_Raptor | 'designer'-dbo:designer\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Saleen_S5S_Raptor> <http://dbpedia.org/property/designer> ?uri } \"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:1999_San_Marino_Grand_Prix dbo:firstDriver?uri } \n", - "\"Name the first driver of 1999 San Marino Grand Prix ? | '1999 San Marino Grand Prix'-res:1999_San_Marino_Grand_Prix | 'first driver'-dbo:firstDriver\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/1999_San_Marino_Grand_Prix> <http://dbpedia.org/ontology/firstDriver> ?uri } \"\n", + " SELECT DISTINCT?uri WHERE { res:1999_San_Marino_Grand_Prix dbp:firstDriver?uri } \n", + "\"Name the first driver of 1999 San Marino Grand Prix ? | '1999 San Marino Grand Prix'-res:1999_San_Marino_Grand_Prix | 'first driver'-dbo:firstDriver\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/1999_San_Marino_Grand_Prix> <http://dbpedia.org/property/firstDriver> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:doctoralStudents res:Erich_Bagge.?uri dbo:doctoralStudent res:Róbert_Erban_ȚiȘerban_Ángel_Illițeica . }\n", - "\"What is the scientist whose doctoral students are Erich Bagge and erban ieica? | 'scientist'-res:Scientist | 'Erich Bagge'-res:Erich_Bagge | 'Erban ieica'-res:Róbert_Erban | 'doctoral students'-dbo:doctoralStudent\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/doctoralStudents> <http://dbpedia.org/resource/Erich_Bagge> . ?uri <http://dbpedia.org/ontology/doctoralStudent> <http://dbpedia.org/resource/Róbert_Erban_ȚiȘerban_Ángel_Illițeica> . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:doctoralStudents res:Erich_Bagge .?uri rdf:type dbo:Scientist}\n", + "\"What is the scientist whose doctoral students are Erich Bagge and erban ieica? | 'scientist'-res:Scientist | 'Erich Bagge'-res:Erich_Bagge | 'Erban ieica'-res:Róbert_Erban | 'doctoral students'-dbo:doctoralStudent\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/doctoralStudents> <http://dbpedia.org/resource/Erich_Bagge> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:commander res:Moonbase_Commander.?x dbo:combatant?uri . }\n", - "\"Who battled under commander Egushawa in a conflict? | 'commander Egushawa'-res:Moonbase_Commander | 'battled'-dbo:battle | 'conflict'-dbo:division\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/commander> <http://dbpedia.org/resource/Moonbase_Commander> . ?x <http://dbpedia.org/ontology/combatant> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:commander res:Moonbase_Commander.?x dbo:territory?uri . }\n", + "\"Who battled under commander Egushawa in a conflict? | 'commander Egushawa'-res:Moonbase_Commander | 'battled'-dbo:battle | 'conflict'-dbo:division\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/commander> <http://dbpedia.org/resource/Moonbase_Commander> . ?x <http://dbpedia.org/ontology/territory> ?uri . }\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Union_State dbo:largestCity?uri } \n", "\"Which is the largest city of Union State ? | 'Union State'-res:Union_State | 'largest city'-dbo:largestCity\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Union_State> <http://dbpedia.org/ontology/largestCity> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Micheal_Williams dbo:athleticsTeam?uri. res:Syracuse_University dbp:owner?uri. }\n", - "\"Which university has a sports team member called Micheal Powell and also owns Syracuse University Press ? | 'sports team member'-res:Sports_Action_Team | 'Micheal Powell'-res:Micheal_Williams | 'Syracuse University Press'-res:Syracuse_University | 'university'-dbo:university | 'called'-dbp:nickname | 'owns'-dbo:languageFamily\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Micheal_Williams> <http://dbpedia.org/ontology/athleticsTeam> ?uri . <http://dbpedia.org/resource/Syracuse_University> <http://dbpedia.org/property/owner> ?uri . }\"\n", + " SELECT DISTINCT?uri WHERE { res:Micheal_Williams dbo:athletics?uri. res:Syracuse_University dbp:owner?uri} \n", + "\"Which university has a sports team member called Micheal Powell and also owns Syracuse University Press ? | 'sports team member'-res:Sports_Action_Team | 'Micheal Powell'-res:Micheal_Williams | 'Syracuse University Press'-res:Syracuse_University | 'university'-dbo:university | 'called'-dbp:nickname | 'owns'-dbo:languageFamily\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Micheal_Williams> <http://dbpedia.org/ontology/athletics> ?uri . <http://dbpedia.org/resource/Syracuse_University> <http://dbpedia.org/property/owner> ?uri} \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:keyPeople res:Ted_Hartley.?uri dbo:distributor?x . }\n", - "\"What are some movies whose distributer's CEO is Ted Hartley? | 'CEO'-res:Ceo_(musician) | 'Ted Hartley'-res:Ted_Hartley | 'movies'-dbo:film | 'distributer'-dbp:distributor\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/keyPeople> <http://dbpedia.org/resource/Ted_Hartley> . ?uri <http://dbpedia.org/ontology/distributor> ?x . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:distributor res:Ted_Hartley .?uri rdf:type dbo:Film}\n", + "\"What are some movies whose distributer's CEO is Ted Hartley? | 'CEO'-res:Ceo_(musician) | 'Ted Hartley'-res:Ted_Hartley | 'movies'-dbo:film | 'distributer'-dbp:distributor\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/distributor> <http://dbpedia.org/resource/Ted_Hartley> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}\"\n", "\n", "SELECT DISTINCT?uri WHERE {?x dbo:routeEnd res:Madison,_Wisconsin.?x dbp:routeStart?uri . }\n", "\"Where does the road starting from Madison, Wisconsin end? | 'Madison, Wisconsin'-res:Madison,_Wisconsin | 'road end'-dbo:routeEnd | 'road starting'-dbo:routeStart\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/routeEnd> <http://dbpedia.org/resource/Madison,_Wisconsin> . ?x <http://dbpedia.org/property/routeStart> ?uri . }\"\n", @@ -3573,17 +3317,17 @@ " SELECT DISTINCT?uri WHERE { res:United_States_Congress dbp:houses?uri } \n", "\"List all the houses of United States Congress ? | 'United States Congress'-res:United_States_Congress | 'houses'-dbp:houses\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/United_States_Congress> <http://dbpedia.org/property/houses> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:locationCity res:Toronto .?uri rdf:type dbo:Company}\n", - "\"What companies are located in toronto? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'toronto'-res:Toronto | 'located'-dbo:locationCity\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/locationCity> <http://dbpedia.org/resource/Toronto> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}\"\n", + " SELECT DISTINCT?uri WHERE {?uri dbo:locationCity res:Toronto } \n", + "\"What companies are located in toronto? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'toronto'-res:Toronto | 'located'-dbo:locationCity\",\" SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/locationCity> <http://dbpedia.org/resource/Toronto> } \"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Khok_Kwang dbo:timeZone?uri } \n", "\"In which timezone does Khok Kwang lie? | 'Khok Kwang'-res:Khok_Kwang | 'timezone'-dbo:timeZone | 'lie'-dbo:position\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Khok_Kwang> <http://dbpedia.org/ontology/timeZone> ?uri } \"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Gervase_Helwys dbo:opponent?uri } \n", - "\"Who are the opponents of Gervase Helwys? | 'Gervase Helwys'-res:Gervase_Helwys | 'opponents'-dbo:opponent\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Gervase_Helwys> <http://dbpedia.org/ontology/opponent> ?uri } \"\n", + "SELECT DISTINCT?uri WHERE {?uri dbo:opponent res:Gervase_Helwys . }\n", + "\"Who are the opponents of Gervase Helwys? | 'Gervase Helwys'-res:Gervase_Helwys | 'opponents'-dbo:opponent\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/opponent> <http://dbpedia.org/resource/Gervase_Helwys> . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Michael_Roos_(ice_hockey) dbp:team?uri. res:Ryan_Powell dbo:formerTeam?uri. }\n", - "\"Which team did Michael and Ryan Powell play for? | 'Michael'-res:Michael_Roos_(ice_hockey) | 'Ryan Powell'-res:Ryan_Powell | 'team'-dbo:team | 'play'-dbo:team\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Michael_Roos_(ice_hockey)> <http://dbpedia.org/property/team> ?uri . <http://dbpedia.org/resource/Ryan_Powell> <http://dbpedia.org/ontology/formerTeam> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Michael_Roos_(ice_hockey) dbp:name?uri. res:Ryan_Powell dbo:team?uri. }\n", + "\"Which team did Michael and Ryan Powell play for? | 'Michael'-res:Michael_Roos_(ice_hockey) | 'Ryan Powell'-res:Ryan_Powell | 'team'-dbo:team | 'play'-dbo:team\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Michael_Roos_(ice_hockey)> <http://dbpedia.org/property/name> ?uri . <http://dbpedia.org/resource/Ryan_Powell> <http://dbpedia.org/ontology/team> ?uri . }\"\n", "\n", "SELECT DISTINCT?uri WHERE {?uri dbp:network res:Prime_Time_Entertainment_Network .?uri rdf:type dbo:TelevisionShow}\n", "\"What are the television shows whose network is Prime Time Entertainment Network? | 'Prime Time Entertainment Network'-res:Prime_Time_Entertainment_Network | 'network'-dbp:network | 'television show'-dbo:TelevisionShow\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/network> <http://dbpedia.org/resource/Prime_Time_Entertainment_Network> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}\"\n", @@ -3591,68 +3335,68 @@ "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:position res:Defenceman.?x dbo:team?uri . }\n", "\"How many teams have someone playing at the defenceman position? | 'teams'-dbo:numberOfTeams | 'playing'-dbo:field | 'defenceman position'-dbo:rating\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/position> <http://dbpedia.org/resource/Defenceman> . ?x <http://dbpedia.org/ontology/team> ?uri . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:1997_Canadian_Grand_Prix dbo:poleDriver?uri } \n", - "\"Name the driver who was at pole in 1997 Canadian Grand Prix and also 1994 Spanish Grand Prix ? | '1997 Canadian Grand Prix'-res:1997_Canadian_Grand_Prix | '1994 Spanish Grand Prix'-res:1994_Spanish_Grand_Prix | 'name'-dbp:name | 'driver'-dbo:poleDriver | 'pole'-dbo:poleDriverTeam\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/1997_Canadian_Grand_Prix> <http://dbpedia.org/ontology/poleDriver> ?uri } \"\n", + " SELECT DISTINCT?uri WHERE { res:1997_Canadian_Grand_Prix dbp:poleDriver?uri. res:1994_Spanish_Grand-Prix dbo:poleFormulaOneRacer?uri} \n", + "\"Name the driver who was at pole in 1997 Canadian Grand Prix and also 1994 Spanish Grand Prix ? | '1997 Canadian Grand Prix'-res:1997_Canadian_Grand_Prix | '1994 Spanish Grand Prix'-res:1994_Spanish_Grand_Prix | 'name'-dbp:name | 'driver'-dbo:poleDriver | 'pole'-dbo:poleDriverTeam\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/1997_Canadian_Grand_Prix> <http://dbpedia.org/property/poleDriver> ?uri . <http://dbpedia.org/resource/1994_Spanish_Grand-Prix> <http://dbpedia.org/ontology/poleFormulaOneRacer> ?uri} \"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Alan_Thicke dbp:narrated?uri } \n", "\"Name the narrators of the album which has been narrated by Alan Thicke ? | 'Alan Thicke'-res:Alan_Thicke | 'narrated'-dbp:narrated | 'narrated'-dbp:narrated\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Alan_Thicke> <http://dbpedia.org/property/narrated> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbo:creator res:CE_Webber.?uri dbp:starring res:Companion_(Doctor_Who) . }\n", - "\"Name the television show created by CE Webber and also has actor named Companion? | 'Companion'-res:Companion_(Doctor_Who) | 'CE Webber'-res:C._E._Webber | 'created'-dbo:starring | 'actor named'-dbo:creator\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/creator> <http://dbpedia.org/resource/CE_Webber> . ?uri <http://dbpedia.org/property/starring> <http://dbpedia.org/resource/Companion_(Doctor_Who)> . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbo:starring res:Companion_(Doctor_Who).?uri dbp:creator res:CE._E._Webber . }\n", + "\"Name the television show created by CE Webber and also has actor named Companion? | 'Companion'-res:Companion_(Doctor_Who) | 'CE Webber'-res:C._E._Webber | 'created'-dbo:starring | 'actor named'-dbo:creator\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Companion_(Doctor_Who)> . ?uri <http://dbpedia.org/property/creator> <http://dbpedia.org/resource/CE._E._Webber> . }\"\n", "\n", "SELECT DISTINCT?uri WHERE {?x dbp:garrison res:Turin.?x dbo:territory?uri . }\n", "\"In which war did the units garrisoned at Turin fight? | 'Turin fight'-res:Turin | 'war'-dbo:battle | 'units'-dbo:team | 'garrisoned'-dbo:garrison\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/garrison> <http://dbpedia.org/resource/Turin> . ?x <http://dbpedia.org/ontology/territory> ?uri . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbo:cities res:Thesaban . }\n", - "\"How many Thesaban towns are there? | 'Thesaban towns'-res:Thesaban\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/cities> <http://dbpedia.org/resource/Thesaban> . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE { res:Thesaban dbp:locationCountry?uri . }\n", + "\"How many Thesaban towns are there? | 'Thesaban towns'-res:Thesaban\",\"SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Thesaban> <http://dbpedia.org/property/locationCountry> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:predecessor res:Mark_Latham.?uri dbo:partner res:Tim_Mathieson . }\n", - "\"Name the office holder with predecessor as Mark Latham and partner Tim Mathieson ? | 'Mark Latham'-res:Mark_Latham | 'partner Tim Mathieson'-res:Tim_Mathieson | 'name'-dbp:name | 'office holder'-dbp:incumbent | 'predecessor'-dbo:predecessor\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/predecessor> <http://dbpedia.org/resource/Mark_Latham> . ?uri <http://dbpedia.org/ontology/partner> <http://dbpedia.org/resource/Tim_Mathieson> . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbo:predecessor res:Mark_Latham.?uri dbp:partner res:Tim_Mathieson . }\n", + "\"Name the office holder with predecessor as Mark Latham and partner Tim Mathieson ? | 'Mark Latham'-res:Mark_Latham | 'partner Tim Mathieson'-res:Tim_Mathieson | 'name'-dbp:name | 'office holder'-dbp:incumbent | 'predecessor'-dbo:predecessor\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/predecessor> <http://dbpedia.org/resource/Mark_Latham> . ?uri <http://dbpedia.org/property/partner> <http://dbpedia.org/resource/Tim_Mathieson> . }\"\n", "\n", "SELECT DISTINCT?uri WHERE {?uri dbp:owners res:Schibsted .?uri rdf:type dbo:Newspaper}\n", "\"Which newspaper owned by Schibsted is published in Swedish ? | 'swedish'-res:Swedish_language | 'Schibsted'-res:Schibsted | 'newspaper'-dbp:newspaper | 'owned'-dbo:owner | 'published'-dbo:author | ''-dbo:country\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/owners> <http://dbpedia.org/resource/Schibsted> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Newspaper>}\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:currentMembers res:Robert_De_Niro.?uri dbo:bandMember?x . }\n", - "\"How many other people are in a band with Robert de Niro? | 'Robert de Niro'-res:Robert_De_Niro | 'band'-dbo:band\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/currentMembers> <http://dbpedia.org/resource/Robert_De_Niro> . ?uri <http://dbpedia.org/ontology/bandMember> ?x . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbo:bandMember res:Robert_De_Niro . }\n", + "\"How many other people are in a band with Robert de Niro? | 'Robert de Niro'-res:Robert_De_Niro | 'band'-dbo:band\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/bandMember> <http://dbpedia.org/resource/Robert_De_Niro> . }\"\n", "\n", "SELECT DISTINCT?uri WHERE {?uri dbp:operatingSystem res:Microsoft_Windows .?uri rdf:type dbo:Software}\n", "\"List the software which uses Microsoft Windows as their operating system ? | 'software'-res:Software | 'Microsoft Windows'-res:Microsoft_Windows | 'operating system'-dbo:operatingSystem | 'software'-dbo:Software\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/operatingSystem> <http://dbpedia.org/resource/Microsoft_Windows> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Software>}\"\n", "\n", - " SELECT DISTINCT?uri WHERE {?uri dbp:creators res:Jerry_Siegel } \n", - "\"What all has been created by Jerry Siegel? | 'Jerry Siegel'-res:Jerry_Siegel | 'created by'-dbp:creators\",\" SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/creators> <http://dbpedia.org/resource/Jerry_Siegel> } \"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:creators res:Jerry_Siegel . }\n", + "\"What all has been created by Jerry Siegel? | 'Jerry Siegel'-res:Jerry_Siegel | 'created by'-dbp:creators\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/creators> <http://dbpedia.org/resource/Jerry_Siegel> . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:literaryGenre res:Science_fiction.?uri dbo:material?x . }\n", - "\"How many items belong to the Science Fiction genre? | 'Science Fiction'-res:Science_fiction | 'items'-dbo:material | 'belong'-dbo:date\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/literaryGenre> <http://dbpedia.org/resource/Science_fiction> . ?uri <http://dbpedia.org/ontology/material> ?x . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbo:literaryGenre res:Science_fiction . }\n", + "\"How many items belong to the Science Fiction genre? | 'Science Fiction'-res:Science_fiction | 'items'-dbo:material | 'belong'-dbo:date\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/literaryGenre> <http://dbpedia.org/resource/Science_fiction> . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:species res:Grape.?uri dbp:ingredient?x . }\n", - "\"Name some dishes made with flowering plants. | 'name'-dbo:name | 'dishes'-dbo:state | 'flowering'-dbo:day | 'plants'-dbo:position\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/species> <http://dbpedia.org/resource/Grape> . ?uri <http://dbpedia.org/property/ingredient> ?x . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:division res:Plant.?uri dbp:flower?x . }\n", + "\"Name some dishes made with flowering plants. | 'name'-dbo:name | 'dishes'-dbo:state | 'flowering'-dbo:day | 'plants'-dbo:position\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/division> <http://dbpedia.org/resource/Plant> . ?uri <http://dbpedia.org/property/flower> ?x . }\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:GANEFO dbp:hostCity?uri } \n", "\"Where was Ganefo hosted? | 'Ganefo'-res:GANEFO | 'hosted'-dbp:hostCity\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/GANEFO> <http://dbpedia.org/property/hostCity> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:language res:Nebraska.?x dbo:location?uri . }\n", - "\"Where are ethnic group located which speak Nebraskan? | 'Nebraskan'-res:Nebraska | 'Nebraskan'-res:Nebraska | 'ethnic'-dbo:origin | 'located'-dbo:locatedInArea | 'speak'-dbo:language | ''-dbo:country\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/language> <http://dbpedia.org/resource/Nebraska> . ?x <http://dbpedia.org/ontology/location> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:locatedInArea res:Nebraska.?x dbo:ethnicGroup?uri . }\n", + "\"Where are ethnic group located which speak Nebraskan? | 'Nebraskan'-res:Nebraska | 'Nebraskan'-res:Nebraska | 'ethnic'-dbo:origin | 'located'-dbo:locatedInArea | 'speak'-dbo:language | ''-dbo:country\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/locatedInArea> <http://dbpedia.org/resource/Nebraska> . ?x <http://dbpedia.org/ontology/ethnicGroup> ?uri . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:predecessor res:Desilu_Productions.?uri dbp:company?x . }\n", - "\"How many sitcoms were produced by the company whose predecessor was the Desilu Productions | 'Desilu Productions'-res:Desilu_Productions | 'sitcoms'-dbo:series | 'produced'-dbo:author | 'company'-dbo:company | 'predecessor'-dbo:predecessor\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/predecessor> <http://dbpedia.org/resource/Desilu_Productions> . ?uri <http://dbpedia.org/property/company> ?x . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:predecessor res:Desilu_Productions.?uri dbo:company?x . }\n", + "\"How many sitcoms were produced by the company whose predecessor was the Desilu Productions | 'Desilu Productions'-res:Desilu_Productions | 'sitcoms'-dbo:series | 'produced'-dbo:author | 'company'-dbo:company | 'predecessor'-dbo:predecessor\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/predecessor> <http://dbpedia.org/resource/Desilu_Productions> . ?uri <http://dbpedia.org/ontology/company> ?x . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:campus res:Urban_area.?x dbp:athletics?uri . }\n", - "\"Count the sports played at universities located in Urban Areas? | 'Urban Areas'-res:Urban_area | 'count'-dbo:type | 'sports'-dbo:athletics | 'played'-dbo:portrayer | 'located'-dbo:position\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/campus> <http://dbpedia.org/resource/Urban_area> . ?x <http://dbpedia.org/property/athletics> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:location res:Urban_area.?x dbo:athletics?uri . }\n", + "\"Count the sports played at universities located in Urban Areas? | 'Urban Areas'-res:Urban_area | 'count'-dbo:type | 'sports'-dbo:athletics | 'played'-dbo:portrayer | 'located'-dbo:position\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/location> <http://dbpedia.org/resource/Urban_area> . ?x <http://dbpedia.org/ontology/athletics> ?uri . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Christopher_Daz_Figuero dbp:officialHolder?uri. res:Cruce_a_Nado_Internacional dbo:state?uri} \n", - "\"What is the official residence of the Christopher Daz Figuero which is also the state of the Cruce a Nado Internacional | 'Christopher Daz Figuero'-res:Ana_Figuero | 'Cruce a Nado Internacional'-res:Cruce_a_Nado_Internacional | 'official residence'-dbo:occupation\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Christopher_Daz_Figuero> <http://dbpedia.org/property/officialHolder> ?uri . <http://dbpedia.org/resource/Cruce_a_Nado_Internacional> <http://dbpedia.org/ontology/state> ?uri} \"\n", + " SELECT DISTINCT?uri WHERE { res:Christopher_Figuero dbo:occupation?uri. res:Cruce_a_Nado_Internacional dbp:placeOfBirth?uri} \n", + "\"What is the official residence of the Christopher Daz Figuero which is also the state of the Cruce a Nado Internacional | 'Christopher Daz Figuero'-res:Ana_Figuero | 'Cruce a Nado Internacional'-res:Cruce_a_Nado_Internacional | 'official residence'-dbo:occupation\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Christopher_Figuero> <http://dbpedia.org/ontology/occupation> ?uri . <http://dbpedia.org/resource/Cruce_a_Nado_Internacional> <http://dbpedia.org/property/placeOfBirth> ?uri} \"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Fergie_Sutherland dbp:race?uri } \n", "\"List the races of Fergie Sutherland? | 'Fergie Sutherland'-res:Fergie_Sutherland | 'race'-dbp:race\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Fergie_Sutherland> <http://dbpedia.org/property/race> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:computingPlatform res:Amiga .?uri rdf:type dbo:VideoGame}\n", - "\"Games on amiga are typically of what kind? | 'amiga'-res:Amiga | 'typically'-res:Typically_Tropical | 'games'-dbo:games\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/computingPlatform> <http://dbpedia.org/resource/Amiga> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/VideoGame>}\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:computingPlatform res:Amiga.?x dbp:genre?uri . }\n", + "\"Games on amiga are typically of what kind? | 'amiga'-res:Amiga | 'typically'-res:Typically_Tropical | 'games'-dbo:games\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/computingPlatform> <http://dbpedia.org/resource/Amiga> . ?x <http://dbpedia.org/property/genre> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:producer res:Phil_Collinson.?uri dbp:related?x . }\n", - "\"Which shows are similar to the ones produced by Phil Collinson? | 'Phil Collinson'-res:Phil_Collinson | 'shows'-dbo:place | 'produced'-dbo:author\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/producer> <http://dbpedia.org/resource/Phil_Collinson> . ?uri <http://dbpedia.org/property/related> ?x . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:producer res:Phil_Collinson.?uri rdf:type dbo:TelevisionShow}\n", + "\"Which shows are similar to the ones produced by Phil Collinson? | 'Phil Collinson'-res:Phil_Collinson | 'shows'-dbo:place | 'produced'-dbo:author\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/producer> <http://dbpedia.org/resource/Phil_Collinson> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:cinematography res:Jordan_Cronenweth .?uri rdf:type dbo:Film}\n", - "\"Movie's produced by Michael Deeley has Jordan Cronenweth as director of photography | 'Michael Deeley'-res:Michael_Deeley | 'Jordan Cronenweth'-res:Jordan_Cronenweth | 'movie'-dbo:picture | 'produced'-dbo:architect | 'director'-dbo:director | 'photography'-dbo:picture\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/cinematography> <http://dbpedia.org/resource/Jordan_Cronenweth> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:director res:Michael_Deeley .?uri rdf:type dbo:Film}\n", + "\"Movie's produced by Michael Deeley has Jordan Cronenweth as director of photography | 'Michael Deeley'-res:Michael_Deeley | 'Jordan Cronenweth'-res:Jordan_Cronenweth | 'movie'-dbo:picture | 'produced'-dbo:architect | 'director'-dbo:director | 'photography'-dbo:picture\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/director> <http://dbpedia.org/resource/Michael_Deeley> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}\"\n", "\n", "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:foundation res:Menlo_Park,_California .?uri rdf:type dbo:Company}\n", "\"How many companies were founded in Menlo Park, California? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'Menlo Park, California'-res:Menlo_Park,_California | 'founded'-dbp:foundation | 'companies'-dbo:Company\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/foundation> <http://dbpedia.org/resource/Menlo_Park,_California> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}\"\n", @@ -3663,131 +3407,131 @@ " SELECT DISTINCT?uri WHERE { res:Picasso's_Last_Words_(Drink_to_Me) dbp:recorded?uri } \n", "\"Where was Picasso's Last Words recorded ? | 'Picasso's Last Words'-res:Picasso's_Last_Words_(Drink_to_Me) | 'recorded'-dbp:recorded\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Picasso's_Last_Words_(Drink_to_Me)> <http://dbpedia.org/property/recorded> ?uri } \"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Pawan_Hans dbo:hubAirport?uri. res:India dbp:largestCity?uri} \n", - "\"What is the hub airport of Pawan Hans, and is also the largest city of India? | 'Pawan Hans,'-res:Pawan_Hans | 'India'-res:India | 'hub airport'-dbo:hubAirport | 'largest city'-dbo:largestCity\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pawan_Hans> <http://dbpedia.org/ontology/hubAirport> ?uri . <http://dbpedia.org/resource/India> <http://dbpedia.org/property/largestCity> ?uri} \"\n", + " SELECT DISTINCT?uri WHERE { res:Pawan_Hans dbp:hubAirport?uri. res:India dbo:largestCity?uri} \n", + "\"What is the hub airport of Pawan Hans, and is also the largest city of India? | 'Pawan Hans,'-res:Pawan_Hans | 'India'-res:India | 'hub airport'-dbo:hubAirport | 'largest city'-dbo:largestCity\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pawan_Hans> <http://dbpedia.org/property/hubAirport> ?uri . <http://dbpedia.org/resource/India> <http://dbpedia.org/ontology/largestCity> ?uri} \"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:South_Asia_Subregional_Economic_Cooperation dbo:mascot?uri. res:Aishath_Saffa dbp:nationality?uri} \n", - "\"Which memeber of South Asia SubRegional Economic cooperation is also the nationality of Aishath saffa ? | 'South Asia SubRegional Economic cooperation'-res:South_Asia_Subregional_Economic_Cooperation | 'Aishath saffa'-res:Aishath_Saffa | 'memeber'-dbo:arm | 'nationality'-dbo:nationality\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/South_Asia_Subregional_Economic_Cooperation> <http://dbpedia.org/ontology/mascot> ?uri . <http://dbpedia.org/resource/Aishath_Saffa> <http://dbpedia.org/property/nationality> ?uri} \"\n", + " SELECT DISTINCT?uri WHERE { res:South_Asia_Subregional_Economic_Cooperation dbp:memeber?uri. res:Aishath_Saffa dbo:nationality?uri} \n", + "\"Which memeber of South Asia SubRegional Economic cooperation is also the nationality of Aishath saffa ? | 'South Asia SubRegional Economic cooperation'-res:South_Asia_Subregional_Economic_Cooperation | 'Aishath saffa'-res:Aishath_Saffa | 'memeber'-dbo:arm | 'nationality'-dbo:nationality\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/South_Asia_Subregional_Economic_Cooperation> <http://dbpedia.org/property/memeber> ?uri . <http://dbpedia.org/resource/Aishath_Saffa> <http://dbpedia.org/ontology/nationality> ?uri} \"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Jimmy_Wales dbo:board?uri. res:Latvian_Wikipedia dbp:owner?uri} \n", - "\"Which board memeber of jimmy Wales also owns Latvian Wikipedia ? | 'jimmy Wales'-res:Jimmy_Wales | 'Latvian Wikipedia'-res:Latvia | 'Latvian Wikipedia'-res:Latvian_Wikipedia | 'board'-dbo:board | 'owns'-dbo:owner\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jimmy_Wales> <http://dbpedia.org/ontology/board> ?uri . <http://dbpedia.org/resource/Latvian_Wikipedia> <http://dbpedia.org/property/owner> ?uri} \"\n", + " SELECT DISTINCT?uri WHERE { res:Jimmy_Wales dbp:owner?uri. res:Latvian_Wikipedia dbo:board?uri} \n", + "\"Which board memeber of jimmy Wales also owns Latvian Wikipedia ? | 'jimmy Wales'-res:Jimmy_Wales | 'Latvian Wikipedia'-res:Latvia | 'Latvian Wikipedia'-res:Latvian_Wikipedia | 'board'-dbo:board | 'owns'-dbo:owner\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jimmy_Wales> <http://dbpedia.org/property/owner> ?uri . <http://dbpedia.org/resource/Latvian_Wikipedia> <http://dbpedia.org/ontology/board> ?uri} \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:network res:NBC.?uri rdf:type dbo:TelevisionShow}\n", - "\"Name the TV show whose network is NBC and is the subsequent work of Fraiser ? | 'NBC'-res:NBC | ''-res:Frasier | 'name'-dbp:name | 'show'-dbo:show | 'network'-dbo:network | 'subsequent work'-dbo:service\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/network> <http://dbpedia.org/resource/NBC> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbo:network res:NBC.?uri dbp:notableWork res:Frasier . }\n", + "\"Name the TV show whose network is NBC and is the subsequent work of Fraiser ? | 'NBC'-res:NBC | ''-res:Frasier | 'name'-dbp:name | 'show'-dbo:show | 'network'-dbo:network | 'subsequent work'-dbo:service\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/network> <http://dbpedia.org/resource/NBC> . ?uri <http://dbpedia.org/property/notableWork> <http://dbpedia.org/resource/Frasier> . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:coach res:Chip_Kelly .?uri rdf:type dbo:DebutTeam}\n", - "\"How many had their debut team coached by Chip Kelly? | 'Chip Kelly'-res:Chip_Kelly | 'coach'-dbp:coach | 'debut team'-dbo:debutTeam\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/coach> <http://dbpedia.org/resource/Chip_Kelly> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/DebutTeam>}\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:coach res:Chip_Kelly.?x dbo:debutTeam?uri . }\n", + "\"How many had their debut team coached by Chip Kelly? | 'Chip Kelly'-res:Chip_Kelly | 'coach'-dbp:coach | 'debut team'-dbo:debutTeam\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/coach> <http://dbpedia.org/resource/Chip_Kelly> . ?x <http://dbpedia.org/ontology/debutTeam> ?uri . }\"\n", "\n", "SELECT DISTINCT?uri WHERE {?x dbo:designer res:Malaysian_Highway_Authority.?x dbp:crosses?uri . }\n", "\"Malaysian highway authority has designed bridges over what things? | 'malaysian highway authority'-res:Malaysian_Highway_Authority | 'designed'-dbo:architect | 'bridges'-dbo:abstract\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/designer> <http://dbpedia.org/resource/Malaysian_Highway_Authority> . ?x <http://dbpedia.org/property/crosses> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:league res:Ekstraliga_(speedway).?x dbo:nickname?uri . }\n", - "\"what are the nicknames of the people who are in Ekstraliga? | 'Ekstraliga'-res:Ekstraliga_(speedway) | 'nicknames'-dbo:denomination\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/league> <http://dbpedia.org/resource/Ekstraliga_(speedway)> . ?x <http://dbpedia.org/ontology/nickname> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:speedway) res:Ekstraliga.?x dbp:nicknames?uri . }\n", + "\"what are the nicknames of the people who are in Ekstraliga? | 'Ekstraliga'-res:Ekstraliga_(speedway) | 'nicknames'-dbo:denomination\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/speedway)> <http://dbpedia.org/resource/Ekstraliga> . ?x <http://dbpedia.org/property/nicknames> ?uri . }\"\n", "\n", "SELECT DISTINCT?uri WHERE {?x dbp:members res:Bangladesh.?x dbo:members?uri . }\n", "\"List all the members of the organization whose one of the members is Bangladesh ? | 'Bangladesh'-res:Bangladesh | 'members'-dbp:members | 'organization'-dbp:establishment | 'members'-dbp:members\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/members> <http://dbpedia.org/resource/Bangladesh> . ?x <http://dbpedia.org/ontology/members> ?uri . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:operator res:Starwood_Capital_Group.?x dbo:regionServed?uri . }\n", - "\"In how many different places do Starwood hotels and resorts worldwide operate? | 'Starwood hotels'-res:Starwood_Capital_Group | 'resorts worldwide'-res:Walt_Disney_Parks_and_Resorts | 'operate'-dbp:operator | 'places'-dbp:address\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/operator> <http://dbpedia.org/resource/Starwood_Capital_Group> . ?x <http://dbpedia.org/ontology/regionServed> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:operator res:Starwood_Capital_Group.?x dbo:residence?uri . }\n", + "\"In how many different places do Starwood hotels and resorts worldwide operate? | 'Starwood hotels'-res:Starwood_Capital_Group | 'resorts worldwide'-res:Walt_Disney_Parks_and_Resorts | 'operate'-dbp:operator | 'places'-dbp:address\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/operator> <http://dbpedia.org/resource/Starwood_Capital_Group> . ?x <http://dbpedia.org/ontology/residence> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:architect res:Philip_Webb.?x rdf:type dbo:Building}\n", - "\"List the architect of the buildings whose one of the architect is Philip Webb? | 'Philip Webb'-res:Philip_Webb | 'architect'-dbo:architect | 'buildings'-dbo:architect | 'architect'-dbo:architect\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/architect> <http://dbpedia.org/resource/Philip_Webb> . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Building>}\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:architect res:Philip_Webb.?x dbp:builder?uri . }\n", + "\"List the architect of the buildings whose one of the architect is Philip Webb? | 'Philip Webb'-res:Philip_Webb | 'architect'-dbo:architect | 'buildings'-dbo:architect | 'architect'-dbo:architect\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/architect> <http://dbpedia.org/resource/Philip_Webb> . ?x <http://dbpedia.org/property/builder> ?uri . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Ivanpah_Solar_Power_Facility dbo:owner?uri. res:Dart_(programming_language) dbp:developer?uri} \n", - "\"What is the owner of Ivanpah Solar Power Facility and the original developer of Dart? | 'Ivanpah Solar'-res:Ivanpah_Solar_Power_Facility | 'Dart'-res:Dart_(programming_language) | 'owner'-dbo:owner | 'developer'-dbo:developer\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ivanpah_Solar_Power_Facility> <http://dbpedia.org/ontology/owner> ?uri . <http://dbpedia.org/resource/Dart_(programming_language)> <http://dbpedia.org/property/developer> ?uri} \"\n", + " SELECT DISTINCT?uri WHERE { res:Ivanpah_Solar_Power_Facility dbp:owner?uri. res:Dart_(programming_language) dbo:developer?uri} \n", + "\"What is the owner of Ivanpah Solar Power Facility and the original developer of Dart? | 'Ivanpah Solar'-res:Ivanpah_Solar_Power_Facility | 'Dart'-res:Dart_(programming_language) | 'owner'-dbo:owner | 'developer'-dbo:developer\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ivanpah_Solar_Power_Facility> <http://dbpedia.org/property/owner> ?uri . <http://dbpedia.org/resource/Dart_(programming_language)> <http://dbpedia.org/ontology/developer> ?uri} \"\n", "\n", - " SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:ingredient res:MaintainedBy?uri }\n", - "\"Find the total number of ingredient of the recepies whose ingredient is common Mushroom ? | ''-res:Agaricus_bisporus | 'total'-dbo:populationTotal | 'ingredient'-dbo:ingredient | 'ingredient'-dbo:ingredient\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/ingredient> <http://dbpedia.org/resource/MaintainedBy> ?uri }\"\n", + " SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:ingredient res:Agaricus_bisporus.?x dbp:erritory?uri }\n", + "\"Find the total number of ingredient of the recepies whose ingredient is common Mushroom ? | ''-res:Agaricus_bisporus | 'total'-dbo:populationTotal | 'ingredient'-dbo:ingredient | 'ingredient'-dbo:ingredient\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/ingredient> <http://dbpedia.org/resource/Agaricus_bisporus> . ?x <http://dbpedia.org/property/erritory> ?uri }\"\n", "\n", "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:partner res:Dolores_del_Río .?uri rdf:type dbo:Film}\n", "\"How many movies are directed by the spouse of Dolores del Ro? | 'Dolores del Ro'-res:Dolores_del_Río | 'spouse'-dbp:partner | 'directed'-dbp:director\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/partner> <http://dbpedia.org/resource/Dolores_del_Río> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:out res:Texarkana .?uri rdf:type dbo:Band}\n", - "\"What are some bands out to texarkana? | 'texarkana'-res:Texarkana,_Texas | 'bands'-dbo:staff\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/out> <http://dbpedia.org/resource/Texarkana> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Band>}\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:placeOfBirth res:Texarkana .?uri rdf:type dbo:Band}\n", + "\"What are some bands out to texarkana? | 'texarkana'-res:Texarkana,_Texas | 'bands'-dbo:staff\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/placeOfBirth> <http://dbpedia.org/resource/Texarkana> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Band>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbo:partner res:Rosie_Huntington-Whiteley . }\n", - "\"who is the husband of Rosie Huntington Whiteley? | 'Rosie Huntington Whiteley'-res:Rosie_Huntington-Whiteley | 'husband'-dbo:partner\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/partner> <http://dbpedia.org/resource/Rosie_Huntington-Whiteley> . }\"\n", + " SELECT DISTINCT?uri WHERE { res:Rosie_Huntington-Whiteley dbo:partner?uri } \n", + "\"who is the husband of Rosie Huntington Whiteley? | 'Rosie Huntington Whiteley'-res:Rosie_Huntington-Whiteley | 'husband'-dbo:partner\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Rosie_Huntington-Whiteley> <http://dbpedia.org/ontology/partner> ?uri } \"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Chicago_Bulls dbp:draftTeam?uri. res:Los_Angeles_Clippers dbo:currentPlayer?uri} \n", - "\"Which current player of Chicago Bulls was drafted by Los Angeles Clippers ? | 'Chicago Bulls'-res:Chicago_Bulls | 'Los Angeles Clippers'-res:Los_Angeles_Clippers | 'current player'-dbo:coach | 'drafted'-dbo:draft\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Chicago_Bulls> <http://dbpedia.org/property/draftTeam> ?uri . <http://dbpedia.org/resource/Los_Angeles_Clippers> <http://dbpedia.org/ontology/currentPlayer> ?uri} \"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:draftTeam res:Chicago_Bulls .?uri rdf:type dbo:SportsTeam}\n", + "\"Which current player of Chicago Bulls was drafted by Los Angeles Clippers ? | 'Chicago Bulls'-res:Chicago_Bulls | 'Los Angeles Clippers'-res:Los_Angeles_Clippers | 'current player'-dbo:coach | 'drafted'-dbo:draft\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/draftTeam> <http://dbpedia.org/resource/Chicago_Bulls> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SportsTeam>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Ganzert dbo:country?uri. res:Balaton_wine_region dbp:wineRegion?uri. }\n", - "\"What is the common country of Ganz UV and Balaton wine region ? | 'UV'-res:Uvaria_chamae | 'Ganz'-res:Ganzert | 'Balaton wine region'-res:Balaton_wine_region | 'common country'-dbo:country\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ganzert> <http://dbpedia.org/ontology/country> ?uri . <http://dbpedia.org/resource/Balaton_wine_region> <http://dbpedia.org/property/wineRegion> ?uri . }\"\n", + " SELECT DISTINCT?uri WHERE { res:Ganzert .?x rdf:type dbo:WineRegion}\n", + "\"What is the common country of Ganz UV and Balaton wine region ? | 'UV'-res:Uvaria_chamae | 'Ganz'-res:Ganzert | 'Balaton wine region'-res:Balaton_wine_region | 'common country'-dbo:country\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ganzert> . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/WineRegion>}\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Domenico_Modugno dbp:constituency?uri } \n", "\"Name the constituency of Domenico Modugno ? | 'Domenico Modugno'-res:Domenico_Modugno | 'name'-dbp:name | 'constituency'-dbp:constituency\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Domenico_Modugno> <http://dbpedia.org/property/constituency> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Chicken_Little_(1943_film) dbp:producer?x.?x dbo:award?uri . }\n", - "\"What awards were given to the producer of Chicken Little? | 'Chicken Little'-res:Chicken_Little_(1943_film) | 'awards'-dbo:budget | 'producer'-dbo:producer\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Chicken_Little_(1943_film)> <http://dbpedia.org/property/producer> ?x . ?x <http://dbpedia.org/ontology/award> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Chicken_Little_(1943_film) dbo:producer?x.?x dbp:awards?uri . }\n", + "\"What awards were given to the producer of Chicken Little? | 'Chicken Little'-res:Chicken_Little_(1943_film) | 'awards'-dbo:budget | 'producer'-dbo:producer\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Chicken_Little_(1943_film)> <http://dbpedia.org/ontology/producer> ?x . ?x <http://dbpedia.org/property/awards> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Bottineau_LRT dbp:headquarters?x.?x dbo:country?uri . }\n", - "\"What is the headquarters of the public transit system which is the system of Bottineau LRT ? | 'Bottineau LRT'-res:Bottineau_LRT | 'headquarters'-dbp:headquarters | 'public transit'-dbo:country\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bottineau_LRT> <http://dbpedia.org/property/headquarters> ?x . ?x <http://dbpedia.org/ontology/country> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Bottineau_LRT dbp:headquarters?x.?x dbo:publicTransitSystem?uri . }\n", + "\"What is the headquarters of the public transit system which is the system of Bottineau LRT ? | 'Bottineau LRT'-res:Bottineau_LRT | 'headquarters'-dbp:headquarters | 'public transit'-dbo:country\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bottineau_LRT> <http://dbpedia.org/property/headquarters> ?x . ?x <http://dbpedia.org/ontology/publicTransitSystem> ?uri . }\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:John_Speraw dbo:hometown?uri } \n", "\"What is the hometown of John Speraw ? | 'John Speraw'-res:John_Speraw | 'hometown'-dbo:hometown\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/John_Speraw> <http://dbpedia.org/ontology/hometown> ?uri } \"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:fields res:Philosophy.?x dbp:discipline?uri . }\n", - "\"Count the journals in the field of Philosophy. | 'Philosophy'-res:Philosophy | 'count'-dbo:country | 'journals'-dbp:journal | 'field'-dbo:field\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/fields> <http://dbpedia.org/resource/Philosophy> . ?x <http://dbpedia.org/property/discipline> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:fields res:Philosophy.?x dbo:discipline?uri . }\n", + "\"Count the journals in the field of Philosophy. | 'Philosophy'-res:Philosophy | 'count'-dbo:country | 'journals'-dbp:journal | 'field'-dbo:field\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/fields> <http://dbpedia.org/resource/Philosophy> . ?x <http://dbpedia.org/ontology/discipline> ?uri . }\"\n", "\n", "SELECT DISTINCT?uri WHERE {?uri dbp:doctoralStudents res:Șerban_Țițeica .?uri rdf:type dbo:Scientist}\n", "\"Which scientist advised a doctoral student named Erban Ieica? | 'Erban Ieica'-res:Șerban_Țițeica | 'doctoral student'-dbp:doctoralStudents | 'scientist'-dbo:Scientist\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/doctoralStudents> <http://dbpedia.org/resource/Șerban_Țițeica> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Josef_Johansson dbo:hometown?uri. res:Nader_Guirat dbp:birthPlace?uri. }\n", - "\"What is the hometown of Nader Guirat, where Josef Johansson was born too? | 'Josef Johansson'-res:Josef_Johansson | 'Nader Guirat'-res:Nader_Guirat | 'hometown'-dbo:hometown | 'born'-dbo:birthPlace\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Josef_Johansson> <http://dbpedia.org/ontology/hometown> ?uri . <http://dbpedia.org/resource/Nader_Guirat> <http://dbpedia.org/property/birthPlace> ?uri . }\"\n", + " SELECT DISTINCT?uri WHERE { res:Josef_Johansson dbp:hometown?uri. res:Nader_Guirat dbo:birthPlace?uri} \n", + "\"What is the hometown of Nader Guirat, where Josef Johansson was born too? | 'Josef Johansson'-res:Josef_Johansson | 'Nader Guirat'-res:Nader_Guirat | 'hometown'-dbo:hometown | 'born'-dbo:birthPlace\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Josef_Johansson> <http://dbpedia.org/property/hometown> ?uri . <http://dbpedia.org/resource/Nader_Guirat> <http://dbpedia.org/ontology/birthPlace> ?uri} \"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Journal_of_Cerebral_Blood_Flow_&_Metabolism dbo:academicDiscipline?uri } \n", "\"What is the academic discipline of Journal of Cerebral Blood Flow & Metabolism ? | 'Journal of Cerebral Blood Flow & Metabolism'-res:Journal_of_Cerebral_Blood_Flow_&_Metabolism | 'academic discipline'-dbo:academicDiscipline\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Journal_of_Cerebral_Blood_Flow_&_Metabolism> <http://dbpedia.org/ontology/academicDiscipline> ?uri } \"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:David_Scherman dbp:training?uri } \n", - "\"Where was David Scherman trained ? | 'David Scherman'-res:David_Scherman | 'trained'-dbo:training\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/David_Scherman> <http://dbpedia.org/property/training> ?uri } \"\n", + " SELECT DISTINCT?uri WHERE { res:David_Scherman dbo:training?uri } \n", + "\"Where was David Scherman trained ? | 'David Scherman'-res:David_Scherman | 'trained'-dbo:training\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/David_Scherman> <http://dbpedia.org/ontology/training> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:portrayer res:Sean_Young.?x dbo:series?uri . }\n", - "\"In which series has Sean Young portrayed someone? | 'Sean Young'-res:Sean_Young | 'series'-dbo:series | 'portrayed'-dbo:portrayer\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/portrayer> <http://dbpedia.org/resource/Sean_Young> . ?x <http://dbpedia.org/ontology/series> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbo:portrayer res:Sean_Young . }\n", + "\"In which series has Sean Young portrayed someone? | 'Sean Young'-res:Sean_Young | 'series'-dbo:series | 'portrayed'-dbo:portrayer\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/portrayer> <http://dbpedia.org/resource/Sean_Young> . }\"\n", "\n", "SELECT DISTINCT?uri WHERE {?x dbo:producer res:Peter-John_Vettese.?x dbp:writer?uri . }\n", "\"Who is the writer of the singles whose producer is Peter-John Vettese? | 'Peter-John Vettese'-res:Peter-John_Vettese | 'writer'-dbo:writer | 'singles'-dbo:associate | 'producer'-dbo:producer\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/producer> <http://dbpedia.org/resource/Peter-John_Vettese> . ?x <http://dbpedia.org/property/writer> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbo:locatedInArea res:Inyo_National_Forest.?uri dbp:location res:California. }\n", + "SELECT DISTINCT?uri WHERE {?uri dbo:locatedInArea res:Inyo_National_Forest.?uri dbp:location res:California . }\n", "\"In which mountain Inyo National Forest and California are located? | 'mountain Inyo National Forest'-res:Inyo_National_Forest | 'California'-res:California | 'located'-dbo:locatedInArea\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/locatedInArea> <http://dbpedia.org/resource/Inyo_National_Forest> . ?uri <http://dbpedia.org/property/location> <http://dbpedia.org/resource/California> . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:manager res:Piotr_Baron.?x dbp:nickname?uri . }\n", - "\"What is the nickname of the club managed by Piotr baron? | 'Piotr baron'-res:Piotr_Baron | 'managed'-dbo:manager | 'nickname'-dbp:nickname\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/manager> <http://dbpedia.org/resource/Piotr_Baron> . ?x <http://dbpedia.org/property/nickname> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Piotr_Baron dbo:manager?x.?x dbp:nickname?uri . }\n", + "\"What is the nickname of the club managed by Piotr baron? | 'Piotr baron'-res:Piotr_Baron | 'managed'-dbo:manager | 'nickname'-dbp:nickname\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Piotr_Baron> <http://dbpedia.org/ontology/manager> ?x . ?x <http://dbpedia.org/property/nickname> ?uri . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:debutTeam res:Houston_Astros.?x dbp:team?uri . }\n", - "\"For how many different teams have the players debuted in Houston Astros played? | 'Houston Astros'-res:Houston_Astros | 'teams'-dbp:team | 'players'-dbo:participant | 'debuted'-dbo:debutTeam | 'played'-dbo:participant\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/debutTeam> <http://dbpedia.org/resource/Houston_Astros> . ?x <http://dbpedia.org/property/team> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:debutTeam res:Houston_Astros.?x dbo:team?uri . }\n", + "\"For how many different teams have the players debuted in Houston Astros played? | 'Houston Astros'-res:Houston_Astros | 'teams'-dbp:team | 'players'-dbo:participant | 'debuted'-dbo:debutTeam | 'played'-dbo:participant\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/debutTeam> <http://dbpedia.org/resource/Houston_Astros> . ?x <http://dbpedia.org/ontology/team> ?uri . }\"\n", "\n", "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:locatedInArea res:Yosemite_National_Park.?x dbo:firstAscentPerson?uri . }\n", "\"How many people have been the first one to scale a peak in the Yosemite Park? | 'Yosemite Park'-res:Yosemite_National_Park | 'scale'-dbp:scale | 'peak'-dbo:language\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/locatedInArea> <http://dbpedia.org/resource/Yosemite_National_Park> . ?x <http://dbpedia.org/ontology/firstAscentPerson> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:arena res:Nashville,_Tennessee.?x dbp:license?uri . }\n", - "\"What are some licensees of the stations playing in Nashville, Tennessee? | 'Nashville, Tennessee'-res:Nashville,_Tennessee | 'licensees'-dbo:licensee | 'stations'-dbo:numberOfStations | 'playing'-dbo:discharge\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/arena> <http://dbpedia.org/resource/Nashville,_Tennessee> . ?x <http://dbpedia.org/property/license> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:city res:Nashville,_Tennessee.?x dbp:licensees?uri . }\n", + "\"What are some licensees of the stations playing in Nashville, Tennessee? | 'Nashville, Tennessee'-res:Nashville,_Tennessee | 'licensees'-dbo:licensee | 'stations'-dbo:numberOfStations | 'playing'-dbo:discharge\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/city> <http://dbpedia.org/resource/Nashville,_Tennessee> . ?x <http://dbpedia.org/property/licensees> ?uri . }\"\n", "\n", "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbo:division res:Firmicutes.?uri dbp:domain res:Bacteria . }\n", "\"Count the total number of bacterias whose division is Firmicutes and domain is Bacteria? | 'bacterias'-res:Bacteriastrum_delicatulum | 'Firmicutes'-res:Firmicutes | 'Bacteria'-res:Bacteria | 'division'-dbo:division | 'domain'-dbp:domain\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/division> <http://dbpedia.org/resource/Firmicutes> . ?uri <http://dbpedia.org/property/domain> <http://dbpedia.org/resource/Bacteria> . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:producer res:Queer_as_Folk_(UK_TV_series).?x dbp:greatThings?uri . }\n", - "\"What are some other great things by the person who produced Queer as Folk? | 'Queer as Folk'-res:Queer_as_Folk_(UK_TV_series) | 'person'-dbo:person | 'produced'-dbo:wineProduced\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/producer> <http://dbpedia.org/resource/Queer_as_Folk_(UK_TV_series)> . ?x <http://dbpedia.org/property/greatThings> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:producer res:Queer_as_Folk_(UK_TV_series).?x dbp:notableWork?uri . }\n", + "\"What are some other great things by the person who produced Queer as Folk? | 'Queer as Folk'-res:Queer_as_Folk_(UK_TV_series) | 'person'-dbo:person | 'produced'-dbo:wineProduced\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/producer> <http://dbpedia.org/resource/Queer_as_Folk_(UK_TV_series)> . ?x <http://dbpedia.org/property/notableWork> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:doctoralStudents res:Róbert_Erban_Ți. res:Erich_Bagge study .?uri rdf:type dbo:Scientist}\n", - "\"Under which scientist did doctoral students erban ieica and Erich Bagge study? | 'scientist'-res:Scientist | 'doctoral students erban ieica'-res:Róbert_Erban | 'Erich Bagge study'-res:Erich_Bagge\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/doctoralStudents> <http://dbpedia.org/resource/Róbert_Erban_Ți> . <http://dbpedia.org/resource/Erich_Bagge> study . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbo:doctoralStudents res:Róbert_Erban.?uri dbp:scientist res:Erich_Bagge . }\n", + "\"Under which scientist did doctoral students erban ieica and Erich Bagge study? | 'scientist'-res:Scientist | 'doctoral students erban ieica'-res:Róbert_Erban | 'Erich Bagge study'-res:Erich_Bagge\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/doctoralStudents> <http://dbpedia.org/resource/Róbert_Erban> . ?uri <http://dbpedia.org/property/scientist> <http://dbpedia.org/resource/Erich_Bagge> . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:race res:Bobby_Beasley.?uri rdf:type dbo:Racer}\n", - "\"In which racing championships did Bobby Beasley and Martin Molony participate? | 'Bobby Beasley'-res:Bobby_Beasley | 'Martin Molony'-res:Martin_Molony | 'racing'-dbo:race | 'racing'-dbo:race\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/race> <http://dbpedia.org/resource/Bobby_Beasley> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Racer>}\"\n", + "SELECT DISTINCT?uri WHERE { res:Bobby_Beasley dbo:trainer?uri. res:Martin_Molony dbp:race?uri. }\n", + "\"In which racing championships did Bobby Beasley and Martin Molony participate? | 'Bobby Beasley'-res:Bobby_Beasley | 'Martin Molony'-res:Martin_Molony | 'racing'-dbo:race | 'racing'-dbo:race\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bobby_Beasley> <http://dbpedia.org/ontology/trainer> ?uri . <http://dbpedia.org/resource/Martin_Molony> <http://dbpedia.org/property/race> ?uri . }\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Brad_Paisley_discography dbp:artist?uri } \n", "\"Name the artist of Brad Paisley discography ? | 'Brad Paisley discography'-res:Brad_Paisley_discography | 'name'-dbp:name | 'artist'-dbp:artist\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Brad_Paisley_discography> <http://dbpedia.org/property/artist> ?uri } \"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:doctoralAdvisor res:Ernest_Rutherford . }\n", - "\"Ernest Rutherford was the advisor of how many people? | 'Ernest rutherford'-res:Ernest_Rutherford | 'advisor'-dbo:doctoralAdvisor\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/doctoralAdvisor> <http://dbpedia.org/resource/Ernest_Rutherford> . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbo:doctoralAdvisor res:Ernest_Rutherford . }\n", + "\"Ernest Rutherford was the advisor of how many people? | 'Ernest rutherford'-res:Ernest_Rutherford | 'advisor'-dbo:doctoralAdvisor\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/doctoralAdvisor> <http://dbpedia.org/resource/Ernest_Rutherford> . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:position res:Quarterback.?x dbo:starring?uri . }\n", - "\"who all play for of the american football players at Quarterback position? | 'Quarterback'-res:Quarterback | 'play'-dbo:starring\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/position> <http://dbpedia.org/resource/Quarterback> . ?x <http://dbpedia.org/ontology/starring> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:quarterbacks res:Quarterback .?uri rdf:type dbo:AmericanFootballPlayer}\n", + "\"who all play for of the american football players at Quarterback position? | 'Quarterback'-res:Quarterback | 'play'-dbo:starring\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/quarterbacks> <http://dbpedia.org/resource/Quarterback> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/AmericanFootballPlayer>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Henri_Maspero dbo:academicAdvisor?x.?x dbp:fields?uri . }\n", - "\"What is the field of interest of the advisor of Henri Maspero ? | 'Henri Maspero'-res:Henri_Maspero | 'advisor'-dbo:academicAdvisor | 'field'-dbp:fields\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Henri_Maspero> <http://dbpedia.org/ontology/academicAdvisor> ?x . ?x <http://dbpedia.org/property/fields> ?uri . }\"\n", + " SELECT DISTINCT?uri WHERE { res:Henri_Maspero dbo:academicAdvisor?uri } \n", + "\"What is the field of interest of the advisor of Henri Maspero ? | 'Henri Maspero'-res:Henri_Maspero | 'advisor'-dbo:academicAdvisor | 'field'-dbp:fields\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Henri_Maspero> <http://dbpedia.org/ontology/academicAdvisor> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Lydia_Clarke dbo:spouse?uri. res:Soylent_Green dbp:starring?uri. }\n", - "\"Name the actor of Soylent Green to which Lydia Clarke is married ? | 'Lydia Clarke'-res:Lydia_Clarke | 'Soylent Green'-res:Soylent_Green | 'name'-dbo:name | 'actor'-dbp:artist | 'married'-dbo:spouse\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lydia_Clarke> <http://dbpedia.org/ontology/spouse> ?uri . <http://dbpedia.org/resource/Soylent_Green> <http://dbpedia.org/property/starring> ?uri . }\"\n", + " SELECT DISTINCT?uri WHERE { res:Lydia_Clarke dbp:starring?uri. res:Soylent_Green dbo:spouse?uri} \n", + "\"Name the actor of Soylent Green to which Lydia Clarke is married ? | 'Lydia Clarke'-res:Lydia_Clarke | 'Soylent Green'-res:Soylent_Green | 'name'-dbo:name | 'actor'-dbp:artist | 'married'-dbo:spouse\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lydia_Clarke> <http://dbpedia.org/property/starring> ?uri . <http://dbpedia.org/resource/Soylent_Green> <http://dbpedia.org/ontology/spouse> ?uri} \"\n", "\n", " SELECT DISTINCT?uri WHERE { res:FWD.us dbp:keyPeople?uri } \n", "\"Who are the key people of FWD.us? | 'FWD.us'-res:FWD.us | 'key people'-dbp:keyPeople\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/FWD.us> <http://dbpedia.org/property/keyPeople> ?uri } \"\n", @@ -3798,23 +3542,23 @@ "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:riverMouth res:Arkansas.?x dbp:cities?uri . }\n", "\"Through how many cities does the river flowing into Arkansas go? | 'Arkansas'-res:Arkansas | 'cities'-dbo:country | 'river'-dbo:river | 'flowing'-dbo:school\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/riverMouth> <http://dbpedia.org/resource/Arkansas> . ?x <http://dbpedia.org/property/cities> ?uri . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbo:subsidiary res:Sony_Corporation_shareholders_and_subsidiaries.?uri dbp:manufacturer?x . }\n", - "\"How many things are manufactured by the company whose subsidiary is Sony Corporation shareholders and subsidiaries? | 'Sony Corporation shareholders and subsidiaries'-res:Sony_Corporation_shareholders_and_subsidiaries | 'manufactured'-dbo:product | 'company'-dbo:company | 'subsidiary'-dbo:subsidiary\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/subsidiary> <http://dbpedia.org/resource/Sony_Corporation_shareholders_and_subsidiaries> . ?uri <http://dbpedia.org/property/manufacturer> ?x . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:subsidiary res:Sony_Corporation_shareholders.?uri dbp:manufacturer?x . }\n", + "\"How many things are manufactured by the company whose subsidiary is Sony Corporation shareholders and subsidiaries? | 'Sony Corporation shareholders and subsidiaries'-res:Sony_Corporation_shareholders_and_subsidiaries | 'manufactured'-dbo:product | 'company'-dbo:company | 'subsidiary'-dbo:subsidiary\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/subsidiary> <http://dbpedia.org/resource/Sony_Corporation_shareholders> . ?uri <http://dbpedia.org/property/manufacturer> ?x . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:locationCity res:Ontario.?x dbo:regionServed?uri . }\n", - "\"In which other places are there companies which are in Ontario, too? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'Ontario,'-res:Ontario,_Indiana | 'places'-dbo:district\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/locationCity> <http://dbpedia.org/resource/Ontario> . ?x <http://dbpedia.org/ontology/regionServed> ?uri . }\"\n", + " SELECT DISTINCT?uri WHERE {?x dbo:locationCountry res:Ontario,_Indiana.?x dbp:locations?uri }\n", + "\"In which other places are there companies which are in Ontario, too? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'Ontario,'-res:Ontario,_Indiana | 'places'-dbo:district\",\" SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/locationCountry> <http://dbpedia.org/resource/Ontario,_Indiana> . ?x <http://dbpedia.org/property/locations> ?uri }\"\n", "\n", "SELECT DISTINCT?uri WHERE {?x dbo:author res:Wiktionary.?x dbp:board?uri . }\n", "\"In which companies boards do the writers of Wikitionary belong? | 'companies boards'-res:Under_the_Boards | 'Wikitionary'-res:Wiktionary | 'writers'-dbo:author | 'belong'-dbo:date\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/author> <http://dbpedia.org/resource/Wiktionary> . ?x <http://dbpedia.org/property/board> ?uri . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Newin_Chidchob dbp:nationality?uri } \n", - "\"Which nationality of Newin Chidchob is also the nationality of Ajahn Sao Kantaslo ? | 'Newin Chidchob'-res:Newin_Chidchob | 'Ajahn Sao Kantaslo'-res:Ajahn_Sao_Kantasīlo | 'nationality'-dbp:nationality | 'nationality'-dbp:nationality\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Newin_Chidchob> <http://dbpedia.org/property/nationality> ?uri } \"\n", + " SELECT DISTINCT?uri WHERE { res:Ajahn_Sao_Kantasīlo dbp:nationality?uri } \n", + "\"Which nationality of Newin Chidchob is also the nationality of Ajahn Sao Kantaslo ? | 'Newin Chidchob'-res:Newin_Chidchob | 'Ajahn Sao Kantaslo'-res:Ajahn_Sao_Kantasīlo | 'nationality'-dbp:nationality | 'nationality'-dbp:nationality\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ajahn_Sao_Kantasīlo> <http://dbpedia.org/property/nationality> ?uri } \"\n", "\n", - " SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:director res:Tim_Burton.?uri dbo:music res:Jenna_Elfman } \n", - "\"Count the movies directed by Tim Burton and music composer Danny Elfman ? | 'Tim Burton'-res:Tim_Burton | 'music composer Danny Elfman'-res:Jenna_Elfman | 'music composer'-dbp:music | 'directed'-dbp:director\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/director> <http://dbpedia.org/resource/Tim_Burton> . ?uri <http://dbpedia.org/ontology/music> <http://dbpedia.org/resource/Jenna_Elfman> } \"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:director res:Tim_Burton .?uri rdf:type dbo:Film}\n", + "\"Count the movies directed by Tim Burton and music composer Danny Elfman ? | 'Tim Burton'-res:Tim_Burton | 'music composer Danny Elfman'-res:Jenna_Elfman | 'music composer'-dbp:music | 'directed'-dbp:director\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/director> <http://dbpedia.org/resource/Tim_Burton> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:instruments res:Drums_Around_the_World.?x dbo:genre?uri . }\n", - "\"From which genres of music did those genres emerge where drums are important? | 'drums'-res:Drums_Around_the_World | 'genres'-dbo:genre | 'music'-dbo:musicSubgenre | 'genres'-dbo:genre | 'emerge'-dbo:result\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/instruments> <http://dbpedia.org/resource/Drums_Around_the_World> . ?x <http://dbpedia.org/ontology/genre> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:notableInstruments res:Drums.?x dbo:genre?uri . }\n", + "\"From which genres of music did those genres emerge where drums are important? | 'drums'-res:Drums_Around_the_World | 'genres'-dbo:genre | 'music'-dbo:musicSubgenre | 'genres'-dbo:genre | 'emerge'-dbo:result\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/notableInstruments> <http://dbpedia.org/resource/Drums> . ?x <http://dbpedia.org/ontology/genre> ?uri . }\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Earl_B._Ruth dbo:appointer?uri } \n", "\"Who is the appointer of Earl B. Ruth ? | 'B'-res:B | 'Earl Ruth'-res:Earl_B._Ruth | 'appointer'-dbo:appointer\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Earl_B._Ruth> <http://dbpedia.org/ontology/appointer> ?uri } \"\n", @@ -3825,11 +3569,11 @@ "SELECT DISTINCT?uri WHERE {?x dbo:birthPlace res:Vargas_(state).?x dbp:debutteam?uri . }\n", "\"What is the debut team of people born in Vargas? | 'Vargas'-res:Vargas_(state) | 'born in'-dbo:birthPlace | 'debut team'-dbp:debutteam\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Vargas_(state)> . ?x <http://dbpedia.org/property/debutteam> ?uri . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:battles res:Battle_of_France.?x dbp:awards?uri . }\n", - "\"Count the awards received by the ones who fought the battle of france? | 'battle of france'-res:Battle_of_France | 'count'-dbo:time | 'awards'-dbo:award | 'received'-dbo:board | 'fought'-dbo:nerve | 'battle'-dbo:battle | 'france'-dbo:field\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/battles> <http://dbpedia.org/resource/Battle_of_France> . ?x <http://dbpedia.org/property/awards> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:battles res:Battle_of_France.?x dbo:award?uri . }\n", + "\"Count the awards received by the ones who fought the battle of france? | 'battle of france'-res:Battle_of_France | 'count'-dbo:time | 'awards'-dbo:award | 'received'-dbo:board | 'fought'-dbo:nerve | 'battle'-dbo:battle | 'france'-dbo:field\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/Battle_of_France> . ?x <http://dbpedia.org/ontology/award> ?uri . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbo:country res:Colonels_Softball_Complex . }\n", - "\"Count all the Colonels? | 'Colonels'-res:Colonels_Softball_Complex | 'count'-dbo:country\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Colonels_Softball_Complex> . }\"\n", + " SELECT DISTINCT COUNT(?uri) WHERE {?uri dbo:country res:Colonels_Softball_Complex } \n", + "\"Count all the Colonels? | 'Colonels'-res:Colonels_Softball_Complex | 'count'-dbo:country\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Colonels_Softball_Complex> } \"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Ontario dbo:location?uri } \n", "\"What has location as Ontario? | 'Ontario'-res:Ontario | 'location'-dbo:location\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ontario> <http://dbpedia.org/ontology/location> ?uri } \"\n", @@ -3837,29 +3581,29 @@ " SELECT DISTINCT?uri WHERE { res:Juno_I dbo:launchSite?uri } \n", "\"Where was Juno I launched from ? | 'Juno I'-res:Juno_I | 'launched'-dbo:launchSite\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Juno_I> <http://dbpedia.org/ontology/launchSite> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:country res:Sweden.?x dbo:ingredient?uri . }\n", - "\"What are some common ingredients used in Swedish dishes? | 'Swedish dishes'-res:Sweden | 'Swedish dishes'-res:Tableware | 'in'-dbo:country | 'ingredient'-dbo:ingredient\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/country> <http://dbpedia.org/resource/Sweden> . ?x <http://dbpedia.org/ontology/ingredient> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:country res:Swedish_languages.?uri dbo:ingredient?x . }\n", + "\"What are some common ingredients used in Swedish dishes? | 'Swedish dishes'-res:Sweden | 'Swedish dishes'-res:Tableware | 'in'-dbo:country | 'ingredient'-dbo:ingredient\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/country> <http://dbpedia.org/resource/Swedish_languages> . ?uri <http://dbpedia.org/ontology/ingredient> ?x . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Rheinmetall_MG_60 dbp:origin?uri } \n", - "\"Where did Rheinmetall MG 60 originated ? | 'MG'-res:MG | 'Rheinmetall 60'-res:Rheinmetall_MG_60 | 'origin'-dbo:origin\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Rheinmetall_MG_60> <http://dbpedia.org/property/origin> ?uri } \"\n", + " SELECT DISTINCT?uri WHERE { res:Rheinmetall_MG_60 dbo:origin?uri } \n", + "\"Where did Rheinmetall MG 60 originated ? | 'MG'-res:MG | 'Rheinmetall 60'-res:Rheinmetall_MG_60 | 'origin'-dbo:origin\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Rheinmetall_MG_60> <http://dbpedia.org/ontology/origin> ?uri } \"\n", "\n", "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbo:cinematography res:Gregg_Toland . }\n", "\"Gregg Toland cinematographed how many things? | 'Gregg toland'-res:Gregg_Toland | 'cinematographed'-dbo:cinematography\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/cinematography> <http://dbpedia.org/resource/Gregg_Toland> . }\"\n", "\n", - " SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:owner res:Mwtro-Noth_Railroad.?x dbo:line?uri }\n", - "\"Give me the total number of lines owned by owner of Mwtro-Noth Railroad ? | 'Mwtro-Noth Railroad'-res:Metro-North_Railroad | 'total'-dbo:populationTotal | 'lines'-dbo:lyrics | 'owned'-dbo:subsidiary | 'owner'-dbo:owner\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/owner> <http://dbpedia.org/resource/Mwtro-Noth_Railroad> . ?x <http://dbpedia.org/ontology/line> ?uri }\"\n", + " SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:owner res:Metro-North_Railroad.?x dbp:owner?uri }\n", + "\"Give me the total number of lines owned by owner of Mwtro-Noth Railroad ? | 'Mwtro-Noth Railroad'-res:Metro-North_Railroad | 'total'-dbo:populationTotal | 'lines'-dbo:lyrics | 'owned'-dbo:subsidiary | 'owner'-dbo:owner\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/owner> <http://dbpedia.org/resource/Metro-North_Railroad> . ?x <http://dbpedia.org/property/owner> ?uri }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:architect res:Dundas_Castle.?x dbp:locations?uri . }\n", - "\"In how many places can I find people who were the architects of the Dundas Castle? | 'I'-res:I | 'Dundas Castle'-res:Dundas_Castle | 'places'-dbo:height | 'architects'-dbo:architect\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/architect> <http://dbpedia.org/resource/Dundas_Castle> . ?x <http://dbpedia.org/property/locations> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:architect res:Dundas_Castle.?x dbo:restingPlace?uri . }\n", + "\"In how many places can I find people who were the architects of the Dundas Castle? | 'I'-res:I | 'Dundas Castle'-res:Dundas_Castle | 'places'-dbo:height | 'architects'-dbo:architect\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/architect> <http://dbpedia.org/resource/Dundas_Castle> . ?x <http://dbpedia.org/ontology/restingPlace> ?uri . }\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Barbara_Bush dbp:children?uri } \n", "\"List all the children of Barbara Bush? | 'Barbara Bush'-res:Barbara_Bush | 'children'-dbp:children\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Barbara_Bush> <http://dbpedia.org/property/children> ?uri } \"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:inflow res:The_ionian_Sea.?x dbp:cities?uri . }\n", - "\"How many cities are around the sea in which the ionian sea flows? | 'cities'-dbo:city | 'sea'-dbo:lake | 'ionian sea'-dbo:lake | 'flows'-dbo:circulation\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/inflow> <http://dbpedia.org/resource/The_ionian_Sea> . ?x <http://dbpedia.org/property/cities> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:inflow res:The_Irian_Sea.?x dbp:cities?uri . }\n", + "\"How many cities are around the sea in which the ionian sea flows? | 'cities'-dbo:city | 'sea'-dbo:lake | 'ionian sea'-dbo:lake | 'flows'-dbo:circulation\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/inflow> <http://dbpedia.org/resource/The_Irian_Sea> . ?x <http://dbpedia.org/property/cities> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:author res:Miguel_de_Cervantes.?x dbo:basedOn?uri . }\n", - "\"Miguel de Cervantes wrote the musical extended from which book? | 'miguel de Cervantes'-res:Miguel_de_Cervantes | 'wrote'-dbp:author | 'musical'-dbo:show | 'extended'-dbo:languageFamily | 'book'-dbo:volume\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/author> <http://dbpedia.org/resource/Miguel_de_Cervantes> . ?x <http://dbpedia.org/ontology/basedOn> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:music res:Miguel_de_Cervantes .?uri rdf:type dbo:Musical}\n", + "\"Miguel de Cervantes wrote the musical extended from which book? | 'miguel de Cervantes'-res:Miguel_de_Cervantes | 'wrote'-dbp:author | 'musical'-dbo:show | 'extended'-dbo:languageFamily | 'book'-dbo:volume\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Miguel_de_Cervantes> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Musical>}\"\n", "\n", "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:position res:Defenceman.?x dbo:team?uri . }\n", "\"In how many different teams have all those who have played as a defenceman been? | 'Defenceman'-res:Defenceman | 'teams'-dbo:numberOfTeams | 'played'-dbo:portrayer\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/position> <http://dbpedia.org/resource/Defenceman> . ?x <http://dbpedia.org/ontology/team> ?uri . }\"\n", @@ -3870,44 +3614,44 @@ "SELECT DISTINCT?uri WHERE {?uri dbp:developer res:J._Michael_Straczynski .?uri rdf:type dbo:TelevisionShow}\n", "\"What is the television show whose developer is J. Michael Straczynski? | 'J'-res:J | 'Michael Straczynski'-res:J._Michael_Straczynski | 'television show'-dbo:transmission | 'developer'-dbo:developer\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/developer> <http://dbpedia.org/resource/J._Michael_Straczynski> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:purpose res:Peace.?uri dbo:organisation res:Environmentalism . }\n", - "\"list the organisation with motive for peace and environmentalism? | 'environmentalism'-res:Environmentalism | 'organisation'-dbo:organisation | 'motive'-dbo:field | 'peace'-dbp:content\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/purpose> <http://dbpedia.org/resource/Peace> . ?uri <http://dbpedia.org/ontology/organisation> <http://dbpedia.org/resource/Environmentalism> . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:purpose res:Environmentalism.?uri dbo:organisation?x . }\n", + "\"list the organisation with motive for peace and environmentalism? | 'environmentalism'-res:Environmentalism | 'organisation'-dbo:organisation | 'motive'-dbo:field | 'peace'-dbp:content\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/purpose> <http://dbpedia.org/resource/Environmentalism> . ?uri <http://dbpedia.org/ontology/organisation> ?x . }\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Darcs dbo:license?uri } \n", "\"What is the content license of Darcs ? | 'Darcs'-res:Darcs | 'content license'-dbo:license\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Darcs> <http://dbpedia.org/ontology/license> ?uri } \"\n", "\n", - " SELECT DISTINCT?uri WHERE {?uri dbp:commandStructure res:United_States_Navy.?uri dbo:garrison res:Arlington_County,_Virginia } \n", - "\"Name a military unit whose command structure is United States Department of the Navy and garrison is Arlington County, Virginia? | 'United States Department of the Navy'-res:United_States_Navy | 'Arlington County, Virginia'-res:Arlington_County,_Virginia | 'name'-dbp:name | 'military unit'-dbo:garrison | 'command structure'-dbo:commandStructure | 'garrison'-dbo:garrison\",\" SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/commandStructure> <http://dbpedia.org/resource/United_States_Navy> . ?uri <http://dbpedia.org/ontology/garrison> <http://dbpedia.org/resource/Arlington_County,_Virginia> } \"\n", + "SELECT DISTINCT?uri WHERE {?uri dbo:commandStructure res:United_States_Navy.?uri dbp:garrison res:Arlington_County,_Virginia . }\n", + "\"Name a military unit whose command structure is United States Department of the Navy and garrison is Arlington County, Virginia? | 'United States Department of the Navy'-res:United_States_Navy | 'Arlington County, Virginia'-res:Arlington_County,_Virginia | 'name'-dbp:name | 'military unit'-dbo:garrison | 'command structure'-dbo:commandStructure | 'garrison'-dbo:garrison\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/commandStructure> <http://dbpedia.org/resource/United_States_Navy> . ?uri <http://dbpedia.org/property/garrison> <http://dbpedia.org/resource/Arlington_County,_Virginia> . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:producer res:Stephen_Kozmeniuk.?x dbp:artist?uri . }\n", - "\"List all the artist of albums which have been produced by Stephen Kozmeniuk ? | 'Stephen Kozmeniuk'-res:Stephen_Kozmeniuk | 'artist'-dbo:artist | 'albums'-dbo:endowment | 'produced'-dbo:wineProduced\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/producer> <http://dbpedia.org/resource/Stephen_Kozmeniuk> . ?x <http://dbpedia.org/property/artist> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Stephen_Kozmeniuk dbp:producer?x.?x dbo:artist?uri . }\n", + "\"List all the artist of albums which have been produced by Stephen Kozmeniuk ? | 'Stephen Kozmeniuk'-res:Stephen_Kozmeniuk | 'artist'-dbo:artist | 'albums'-dbo:endowment | 'produced'-dbo:wineProduced\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Stephen_Kozmeniuk> <http://dbpedia.org/property/producer> ?x . ?x <http://dbpedia.org/ontology/artist> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Deborah_Crombie dbp:mascot?x.?x dbo:almaMater?uri . }\n", - "\"What is the mascot of the alma mater of Deborah Crombie? | 'Deborah Crombie'-res:Deborah_Crombie | 'mascot'-dbo:mascot | 'alma mater'-dbo:almaMater\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Deborah_Crombie> <http://dbpedia.org/property/mascot> ?x . ?x <http://dbpedia.org/ontology/almaMater> ?uri . }\"\n", + " SELECT DISTINCT?uri WHERE { res:Deborah_Crombie dbp:almaMater?uri } \n", + "\"What is the mascot of the alma mater of Deborah Crombie? | 'Deborah Crombie'-res:Deborah_Crombie | 'mascot'-dbo:mascot | 'alma mater'-dbo:almaMater\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Deborah_Crombie> <http://dbpedia.org/property/almaMater> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:James_W._Hyatt dbp:successor?x.?x dbo:restingplace?uri . }\n", - "\"What is the resting place of the person who is the successor of James W. Hyatt ? | 'W'-res:Vienna | 'James Hyatt'-res:James_W._Hyatt | 'resting'-dbo:battle | 'place'-dbo:place | 'person'-dbp:type | 'successor'-dbo:successor\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/James_W._Hyatt> <http://dbpedia.org/property/successor> ?x . ?x <http://dbpedia.org/ontology/restingplace> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:successor res:James_W._Hyatt.?x dbo:restingplace?uri . }\n", + "\"What is the resting place of the person who is the successor of James W. Hyatt ? | 'W'-res:Vienna | 'James Hyatt'-res:James_W._Hyatt | 'resting'-dbo:battle | 'place'-dbo:place | 'person'-dbp:type | 'successor'-dbo:successor\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/successor> <http://dbpedia.org/resource/James_W._Hyatt> . ?x <http://dbpedia.org/ontology/restingplace> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Los_Angeles_International_Airport dbo:hubAirport?uri. res:San_Francisco_International-Airport dbp:hub?uri. }\n", - "\"Name an airline with hub airports as Los Angeles International Airport and San Francisco International Airport? | 'Los Angeles International Airport'-res:Los_Angeles_International_Airport | 'San Francisco International Airport'-res:San_Francisco_International_Airport | 'name'-dbp:name | 'airline'-dbo:icaoAirlineCode | 'hub airports'-dbp:hub\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Los_Angeles_International_Airport> <http://dbpedia.org/ontology/hubAirport> ?uri . <http://dbpedia.org/resource/San_Francisco_International-Airport> <http://dbpedia.org/property/hub> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:hubAirport res:Los_Angeles_International_Airport .?uri rdf:type dbo:Airline}\n", + "\"Name an airline with hub airports as Los Angeles International Airport and San Francisco International Airport? | 'Los Angeles International Airport'-res:Los_Angeles_International_Airport | 'San Francisco International Airport'-res:San_Francisco_International_Airport | 'name'-dbp:name | 'airline'-dbo:icaoAirlineCode | 'hub airports'-dbp:hub\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/hubAirport> <http://dbpedia.org/resource/Los_Angeles_International_Airport> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Airline>}\"\n", "\n", "SELECT DISTINCT?uri WHERE { res:Fabio_Mercurio dbo:employer?x.?x dbp:owner?uri . }\n", "\"Who owns the bank where Fabio Mercurio works? | 'Fabio Mercurio'-res:Fabio_Mercurio | 'owns'-dbo:relation | 'bank'-dbo:series | 'works'-dbo:language\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Fabio_Mercurio> <http://dbpedia.org/ontology/employer> ?x . ?x <http://dbpedia.org/property/owner> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:award res:Timeform.?x dbp:owner?uri . }\n", - "\"Who owns the horses which have won the Timeform award? | 'Timeform award'-res:Timeform | 'owns'-dbo:languageFamily | 'horses'-dbo:staff | 'won'-dbo:award\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/award> <http://dbpedia.org/resource/Timeform> . ?x <http://dbpedia.org/property/owner> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:award res:Timeform.?x dbo:owner?uri . }\n", + "\"Who owns the horses which have won the Timeform award? | 'Timeform award'-res:Timeform | 'owns'-dbo:languageFamily | 'horses'-dbo:staff | 'won'-dbo:award\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/award> <http://dbpedia.org/resource/Timeform> . ?x <http://dbpedia.org/ontology/owner> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:voice res:The_Peanuts_Movie .?uri rdf:type dbo:FictionalCharacter}\n", - "\"What are some fictional characters whose voice is in the peanuts movie? | 'the peanuts movie'-res:The_Peanuts_Movie | 'voice'-dbo:voice | 'peanuts movie'-dbo:picture\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/voice> <http://dbpedia.org/resource/The_Peanuts_Movie> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/FictionalCharacter>}\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:director res:The_Peanuts_Movie .?uri rdf:type dbo:FictionalCharacter}\n", + "\"What are some fictional characters whose voice is in the peanuts movie? | 'the peanuts movie'-res:The_Peanuts_Movie | 'voice'-dbo:voice | 'peanuts movie'-dbo:picture\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/director> <http://dbpedia.org/resource/The_Peanuts_Movie> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/FictionalCharacter>}\"\n", "\n", "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbo:team res:Toronto_Argonauts . }\n", "\"How many people used to play for Toronto Argonauts? | 'Toronto Argonauts'-res:Toronto_Argonauts | 'play'-dbo:team\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/team> <http://dbpedia.org/resource/Toronto_Argonauts> . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Dornier_Aerodyne dbp:nationalOrigin?uri. res:Hirth_Acrostar dbo:origin?uri. }\n", - "\"What is the national origin of Dornier Aerodyne and Hirth Acrostar ?; | 'Dornier Aerodyne'-res:Dornier_Aerodyne | 'Hirth Acrostar ;'-res:Hirth_Acrostar | 'national origin'-dbp:nationalOrigin | 'origin'-dbo:origin\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dornier_Aerodyne> <http://dbpedia.org/property/nationalOrigin> ?uri . <http://dbpedia.org/resource/Hirth_Acrostar> <http://dbpedia.org/ontology/origin> ?uri . }\"\n", + " SELECT DISTINCT?uri WHERE { res:Dornier_Aerodyne dbp:nationalOrigin?uri. res:Hirth_Acrostar dbo:origin?uri} \n", + "\"What is the national origin of Dornier Aerodyne and Hirth Acrostar ?; | 'Dornier Aerodyne'-res:Dornier_Aerodyne | 'Hirth Acrostar ;'-res:Hirth_Acrostar | 'national origin'-dbp:nationalOrigin | 'origin'-dbo:origin\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dornier_Aerodyne> <http://dbpedia.org/property/nationalOrigin> ?uri . <http://dbpedia.org/resource/Hirth_Acrostar> <http://dbpedia.org/ontology/origin> ?uri} \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:writer res:Colin_Brake.?x dbo:starring?uri . }\n", - "\"Who acted in the work written by Colin Brake? | 'Colin Brake'-res:Colin_Brake | 'acted'-dbp:noted | 'work'-dbo:service | 'written'-dbp:writtenby\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/writer> <http://dbpedia.org/resource/Colin_Brake> . ?x <http://dbpedia.org/ontology/starring> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:notedWork res:Colin_Brake.?x dbo:starring?uri . }\n", + "\"Who acted in the work written by Colin Brake? | 'Colin Brake'-res:Colin_Brake | 'acted'-dbp:noted | 'work'-dbo:service | 'written'-dbp:writtenby\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/notedWork> <http://dbpedia.org/resource/Colin_Brake> . ?x <http://dbpedia.org/ontology/starring> ?uri . }\"\n", "\n", "SELECT DISTINCT?uri WHERE {?x dbp:author res:K._W._Jeter.?x dbo:series?uri . }\n", "\"List the series of the books whose author is K. W. Jeter. | 'K'-res:K | 'W Jeter'-res:K._W._Jeter | 'W'-res:W | 'K Jeter'-res:K._W._Jeter | 'series'-dbo:series | 'books'-dbo:title | 'author'-dbo:author\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/author> <http://dbpedia.org/resource/K._W._Jeter> . ?x <http://dbpedia.org/ontology/series> ?uri . }\"\n", @@ -3921,23 +3665,23 @@ "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:prizes res:Gold_Medal_of_the_Royal_Astronomical_Society . }\n", "\"How many people won the Gold Medal of the Royal Astronomical Society? | 'Gold Medal of the Royal Astronomical Society'-res:Gold_Medal_of_the_Royal_Astronomical_Society | 'won'-dbp:prizes\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/prizes> <http://dbpedia.org/resource/Gold_Medal_of_the_Royal_Astronomical_Society> . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbo:network res:Glen_and_Les_Charles.?uri dbp:executiveProducer res:Lê_Charles . }\n", - "\"Which program was on NBC network with executive producer as Glen and Les Charles? | 'NBC'-res:NBC | 'Glen'-res:Glen | 'Les Charles'-res:Glen_and_Les_Charles | 'program'-dbo:programmeFormat | 'network'-dbo:network | 'executive producer'-dbo:writer\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/network> <http://dbpedia.org/resource/Glen_and_Les_Charles> . ?uri <http://dbpedia.org/property/executiveProducer> <http://dbpedia.org/resource/Lê_Charles> . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:executiveProducer res:Glen_and_Les_Charles .?uri rdf:type dbo:TelevisionShow}\n", + "\"Which program was on NBC network with executive producer as Glen and Les Charles? | 'NBC'-res:NBC | 'Glen'-res:Glen | 'Les Charles'-res:Glen_and_Les_Charles | 'program'-dbo:programmeFormat | 'network'-dbo:network | 'executive producer'-dbo:writer\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/executiveProducer> <http://dbpedia.org/resource/Glen_and_Les_Charles> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:purpose res:South_Asia_Subregional_Economic_Cooperation.?uri dbo:leader res:United_Kingdom. }\n", - "\"Which countries came together to serve a greater purpose and founded South Asia Subregional Economic Cooperation? | 'countries'-res:Countries_of_the_United_Kingdom | 'South Asia Subregional Economic Cooperation'-res:South_Asia_Subregional_Economic_Cooperation | 'serve'-dbp:minister | 'purpose'-dbo:purpose | 'founded'-dbo:leader\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/purpose> <http://dbpedia.org/resource/South_Asia_Subregional_Economic_Cooperation> . ?uri <http://dbpedia.org/ontology/leader> <http://dbpedia.org/resource/United_Kingdom> . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:purpose res:South_Asia_Subregional_Economic_Cooperation.?x dbo:foundationCountry?uri . }\n", + "\"Which countries came together to serve a greater purpose and founded South Asia Subregional Economic Cooperation? | 'countries'-res:Countries_of_the_United_Kingdom | 'South Asia Subregional Economic Cooperation'-res:South_Asia_Subregional_Economic_Cooperation | 'serve'-dbp:minister | 'purpose'-dbo:purpose | 'founded'-dbo:leader\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/purpose> <http://dbpedia.org/resource/South_Asia_Subregional_Economic_Cooperation> . ?x <http://dbpedia.org/ontology/foundationCountry> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:artist res:Katy_B.?x dbo:recordLabel?uri . }\n", - "\"Through which label has Katy B released her singles? | 'B'-res:B | 'Katy'-res:Katy | 'label'-dbo:flag | 'released'-dbo:channel | 'singles'-dbo:slogan\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/artist> <http://dbpedia.org/resource/Katy_B> . ?x <http://dbpedia.org/ontology/recordLabel> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:artist res:Katy_B._Raptor.?x dbp:label?uri . }\n", + "\"Through which label has Katy B released her singles? | 'B'-res:B | 'Katy'-res:Katy | 'label'-dbo:flag | 'released'-dbo:channel | 'singles'-dbo:slogan\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/artist> <http://dbpedia.org/resource/Katy_B._Raptor> . ?x <http://dbpedia.org/property/label> ?uri . }\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Bobby_Hoppe dbp:pastteams?uri } \n", "\"List the teams for which Bobby Hoppe played ? | 'Bobby Hoppe'-res:Bobby_Hoppe | 'teams'-dbp:pastteams\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bobby_Hoppe> <http://dbpedia.org/property/pastteams> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Cathedral_Peak_(California) dbo:firstAscentPerson?uri } \n", - "\"Who first ascented a mountain of Cathedral Peak (California) ? | 'Cathedral Peak (California)'-res:Cathedral_Peak_(California) | 'ascented'-dbo:firstAscentPerson | 'mountain'-dbo:elevation\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cathedral_Peak_(California)> <http://dbpedia.org/ontology/firstAscentPerson> ?uri } \"\n", + " SELECT DISTINCT?uri WHERE { res:Cathedral_Peak_(California) dbo:mountain?uri } \n", + "\"Who first ascented a mountain of Cathedral Peak (California) ? | 'Cathedral Peak (California)'-res:Cathedral_Peak_(California) | 'ascented'-dbo:firstAscentPerson | 'mountain'-dbo:elevation\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cathedral_Peak_(California)> <http://dbpedia.org/ontology/mountain> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Erik_Bergman_(Lutheran_minister) dbp:children?x.?x . }\n", - "\"Which awards did the children of Erik Bergman won ? | 'Erik Bergman'-res:Erik_Bergman_(Lutheran_minister) | 'children'-dbp:children | 'awards'-dbp:awards\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Erik_Bergman_(Lutheran_minister)> <http://dbpedia.org/property/children> ?x . ?x . }\"\n", + " SELECT DISTINCT?uri WHERE { res:Erik_Bergman_(Lutheran_minister) dbp:children?uri } \n", + "\"Which awards did the children of Erik Bergman won ? | 'Erik Bergman'-res:Erik_Bergman_(Lutheran_minister) | 'children'-dbp:children | 'awards'-dbp:awards\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Erik_Bergman_(Lutheran_minister)> <http://dbpedia.org/property/children> ?uri } \"\n", "\n", "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:placeOfBurial res:Mausoleum_of_Augustus . }\n", "\"How many people are buried in the Mausoleum of Augustus? | 'Mausoleum of Augustus'-res:Mausoleum_of_Augustus | 'buried'-dbp:placeOfBurial\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/placeOfBurial> <http://dbpedia.org/resource/Mausoleum_of_Augustus> . }\"\n", @@ -3945,14 +3689,14 @@ "SELECT DISTINCT?uri WHERE {?x dbp:sisterStations res:WASH_(FM).?x dbo:programmeFormat?uri . }\n", "\"List the program genres of the sister stations of 97.1 WASH FM? | 'WASH'-res:WASH_(FM) | 'sister stations'-dbp:sisterStations | 'program'-dbo:programmeFormat\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/sisterStations> <http://dbpedia.org/resource/WASH_(FM)> . ?x <http://dbpedia.org/ontology/programmeFormat> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:league res:National_Hockey_League.?x dbo:team?uri . }\n", - "\"Which team's players have played in the national hockey league? | 'national hockey league'-res:National_Hockey_League | 'team'-dbo:team | 'players'-dbo:participant | 'played'-dbo:participant\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/league> <http://dbpedia.org/resource/National_Hockey_League> . ?x <http://dbpedia.org/ontology/team> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:league res:National_Hockey_League .?uri rdf:type dbo:HockeyPlayer}\n", + "\"Which team's players have played in the national hockey league? | 'national hockey league'-res:National_Hockey_League | 'team'-dbo:team | 'players'-dbo:participant | 'played'-dbo:participant\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/league> <http://dbpedia.org/resource/National_Hockey_League> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/HockeyPlayer>}\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:James_McClure_(table_tennis) dbo:birthPlace?uri } \n", "\"Where was James McClure born ? | 'James McClure'-res:James_McClure_(table_tennis) | 'born'-dbo:birthPlace\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/James_McClure_(table_tennis)> <http://dbpedia.org/ontology/birthPlace> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:recordLabel res:Sony_Music_Entertainment.?uri dbo:musicComposer?x . }\n", - "\"Whose music composer is signed up with Sony Music Entertainment? | 'Sony Music Entertainment'-res:Sony_Music_Entertainment | 'music composer'-dbo:creator | 'signed'-dbo:movement\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/recordLabel> <http://dbpedia.org/resource/Sony_Music_Entertainment> . ?uri <http://dbpedia.org/ontology/musicComposer> ?x . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:recordLabel res:Sony_Music_Entertainment.?uri dbp:musicComposer?x . }\n", + "\"Whose music composer is signed up with Sony Music Entertainment? | 'Sony Music Entertainment'-res:Sony_Music_Entertainment | 'music composer'-dbo:creator | 'signed'-dbo:movement\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/recordLabel> <http://dbpedia.org/resource/Sony_Music_Entertainment> . ?uri <http://dbpedia.org/property/musicComposer> ?x . }\"\n", "\n", "SELECT DISTINCT?uri WHERE {?x dbp:genre res:Progressive_rock.?x dbo:recordLabel?uri . }\n", "\"Which labels signs up progressive rock bands? | 'progressive rock'-res:Progressive_rock | 'labels'-dbp:label | 'signs'-dbo:precursor\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/genre> <http://dbpedia.org/resource/Progressive_rock> . ?x <http://dbpedia.org/ontology/recordLabel> ?uri . }\"\n", @@ -3960,8 +3704,8 @@ "SELECT DISTINCT?uri WHERE {?x dbp:end res:Kazan.?x dbo:railwayTrack?uri . }\n", "\"Where does the railway tracks start, which ends in Kazan? | 'railway tracks start,'-res:Start | 'Kazan'-res:Kazan | 'ends'-dbp:end\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/end> <http://dbpedia.org/resource/Kazan> . ?x <http://dbpedia.org/ontology/railwayTrack> ?uri . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE {?uri dbo:manufacturer res:Asus } \n", - "\"what are some devices made by asus? | 'asus'-res:Asus | 'made by'-dbo:manufacturer | 'devices'-dbo:InformationAppliance\",\" SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/manufacturer> <http://dbpedia.org/resource/Asus> } \"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:manufacturer res:Asus .?uri rdf:type dbo:Device}\n", + "\"what are some devices made by asus? | 'asus'-res:Asus | 'made by'-dbo:manufacturer | 'devices'-dbo:InformationAppliance\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/manufacturer> <http://dbpedia.org/resource/Asus> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Device>}\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:François_Beauchemin dbo:formerTeam?uri } \n", "\"Which former team of Franois Beauchemin does the Nathan Dempsey played for ? | 'Franois Beauchemin does the Nathan Dempsey'-res:François_Beauchemin | 'former team'-dbo:formerTeam | 'played'-dbo:participant\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/François_Beauchemin> <http://dbpedia.org/ontology/formerTeam> ?uri } \"\n", @@ -3972,71 +3716,71 @@ "SELECT DISTINCT?uri WHERE {?uri dbp:doctoralStudent res:Erich_Bagge .?uri rdf:type dbo:Scientist}\n", "\"Who is the scientist whose doctoral student is Erich Bagge? | 'scientist'-res:Scientist | 'Erich Bagge'-res:Erich_Bagge | 'doctoral student'-dbo:doctoralStudent | 'scientist'-dbo:Scientist\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/doctoralStudent> <http://dbpedia.org/resource/Erich_Bagge> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbo:parentOrganisation res:Gestapo . }\n", - "\"Name some leaders of the parent organisation of the Gestapo? | 'Gestapo'-res:Gestapo | 'parent organisation'-dbo:parentOrganisation | 'leaders'-dbo:leader\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/parentOrganisation> <http://dbpedia.org/resource/Gestapo> . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:parentOrganisation res:Gestapo.?x dbp:leader?uri . }\n", + "\"Name some leaders of the parent organisation of the Gestapo? | 'Gestapo'-res:Gestapo | 'parent organisation'-dbo:parentOrganisation | 'leaders'-dbo:leader\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/parentOrganisation> <http://dbpedia.org/resource/Gestapo> . ?x <http://dbpedia.org/property/leader> ?uri . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:location res:United_States.?x dbp:location?uri . }\n", - "\"How many venues are located in the US? | 'US'-res:United_States | 'venues'-dbo:location | 'located'-dbo:locatedInArea\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/United_States> . ?x <http://dbpedia.org/property/location> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:location res:United_States.?x dbp:venue?uri . }\n", + "\"How many venues are located in the US? | 'US'-res:United_States | 'venues'-dbo:location | 'located'-dbo:locatedInArea\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/United_States> . ?x <http://dbpedia.org/property/venue> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:company res:HBO.?uri rdf:type dbo:TelevisionShow}\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:company res:HBO .?uri rdf:type dbo:TelevisionShow}\n", "\"Name the television show whose company is HBO and Playtone? | 'HBO'-res:HBO | 'and Playtone'-res:Playtone | 'name'-dbp:name | 'television show'-dbo:transmission | 'company'-dbo:company\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/company> <http://dbpedia.org/resource/HBO> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Lucy_Sullivan_Is_Getting_Married dbp:starring?uri } \n", "\"List the actors of Lucy Sullivan Is Getting Married? | 'Lucy Sullivan Is Getting Married'-res:Lucy_Sullivan_Is_Getting_Married | 'actors of'-dbp:starring\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lucy_Sullivan_Is_Getting_Married> <http://dbpedia.org/property/starring> ?uri } \"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:currentMembers res:Hynief.?x dbp:associatedMusicalArtist?uri . }\n", - "\"How many people have worked in the band one of whose current member is Hynief? | 'Hynief'-res:Hynief | 'worked'-dbo:operator | 'band'-dbo:band | 'current member'-dbo:part\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/currentMembers> <http://dbpedia.org/resource/Hynief> . ?x <http://dbpedia.org/property/associatedMusicalArtist> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:currentMembers res:Hynief.?uri dbo:bandMember?x . }\n", + "\"How many people have worked in the band one of whose current member is Hynief? | 'Hynief'-res:Hynief | 'worked'-dbo:operator | 'band'-dbo:band | 'current member'-dbo:part\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/currentMembers> <http://dbpedia.org/resource/Hynief> . ?uri <http://dbpedia.org/ontology/bandMember> ?x . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:foundation res:New_York.?uri dbo:board?x . }\n", - "\"Enumerate all those who are in the Board of companies founded in New York? | 'Board'-res:Board | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'New York'-res:New_York | 'founded'-dbp:foundation | 'Board'-dbo:board\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/foundation> <http://dbpedia.org/resource/New_York> . ?uri <http://dbpedia.org/ontology/board> ?x . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:foundation res:New_York.?uri dbo:board?x . }\n", + "\"Enumerate all those who are in the Board of companies founded in New York? | 'Board'-res:Board | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'New York'-res:New_York | 'founded'-dbp:foundation | 'Board'-dbo:board\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/foundation> <http://dbpedia.org/resource/New_York> . ?uri <http://dbpedia.org/ontology/board> ?x . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:channel res:NBC.?x dbp:presenter?uri . }\n", - "\"How many people have been presenters for NBC shows? | 'NBC'-res:NBC | 'presenters'-dbo:presenter | 'shows'-dbo:place\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/channel> <http://dbpedia.org/resource/NBC> . ?x <http://dbpedia.org/property/presenter> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:channel res:NBC.?uri dbp:presenter?x . }\n", + "\"How many people have been presenters for NBC shows? | 'NBC'-res:NBC | 'presenters'-dbo:presenter | 'shows'-dbo:place\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/channel> <http://dbpedia.org/resource/NBC> . ?uri <http://dbpedia.org/property/presenter> ?x . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:battles res:École_Militaire .?uri rdf:type dbo:MilitaryPerson}\n", - "\"In which wars army men awarded with the Croix de Guerre, fought? | 'army men awarded'-res:Army_Men:_RTS | 'Croix de Guerre,'-res:École_Militaire | 'wars'-dbp:battles | 'fought'-dbo:type\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/École_Militaire> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MilitaryPerson>}\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:battles res:École_Militaire.?x dbp:territory?uri . }\n", + "\"In which wars army men awarded with the Croix de Guerre, fought? | 'army men awarded'-res:Army_Men:_RTS | 'Croix de Guerre,'-res:École_Militaire | 'wars'-dbp:battles | 'fought'-dbo:type\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/battles> <http://dbpedia.org/resource/École_Militaire> . ?x <http://dbpedia.org/property/territory> ?uri . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Lao_Plaza_Hotel dbp:location?uri } \n", - "\"Where is Lao Plaza Hotel located? | 'Lao Plaza Hotel'-res:Lao_Plaza_Hotel | 'located'-dbo:position\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lao_Plaza_Hotel> <http://dbpedia.org/property/location> ?uri } \"\n", + " SELECT DISTINCT?uri WHERE { res:Lao_Plaza_Hotel dbp:locationCountry?uri } \n", + "\"Where is Lao Plaza Hotel located? | 'Lao Plaza Hotel'-res:Lao_Plaza_Hotel | 'located'-dbo:position\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lao_Plaza_Hotel> <http://dbpedia.org/property/locationCountry> ?uri } \"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Pandaruan_Bridge dbp:mainter?uri. res:Malaysia_Junior_Hockey_League dbo:country?uri} \n", - "\"Which mainter of Pandaruan Bridge is also the land of Malaysia junior Hockey league ? | 'Pandaruan Bridge'-res:Pandaruan_Bridge | 'Malaysia junior Hockey league'-res:Malaysia_Junior_Hockey_League | 'mainter'-dbo:owner | 'land'-dbo:country\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pandaruan_Bridge> <http://dbpedia.org/property/mainter> ?uri . <http://dbpedia.org/resource/Malaysia_Junior_Hockey_League> <http://dbpedia.org/ontology/country> ?uri} \"\n", + " SELECT DISTINCT?uri WHERE { res:Pandaruan_Bridge dbo:owner?uri. res:Malaysia_Junior_Hockey_League dbp:country?uri} \n", + "\"Which mainter of Pandaruan Bridge is also the land of Malaysia junior Hockey league ? | 'Pandaruan Bridge'-res:Pandaruan_Bridge | 'Malaysia junior Hockey league'-res:Malaysia_Junior_Hockey_League | 'mainter'-dbo:owner | 'land'-dbo:country\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pandaruan_Bridge> <http://dbpedia.org/ontology/owner> ?uri . <http://dbpedia.org/resource/Malaysia_Junior_Hockey_League> <http://dbpedia.org/property/country> ?uri} \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:children res:Mother_Mary_Alphonsa.?uri dbo:writer res:Julian_Hawthorne. }\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:children res:Mother_Mary_Alphonsa.?uri dbo:writer res:Julian_Hawthorne . }\n", "\"Which writer has childrens named Mother Mary Alphonsa and Julian Hawthorne? | 'Mother Mary Alphonsa'-res:Mother_Mary_Alphonsa | 'Julian Hawthorne'-res:Julian_Hawthorne | 'writer'-dbo:writer | 'childrens'-dbp:children\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/children> <http://dbpedia.org/resource/Mother_Mary_Alphonsa> . ?uri <http://dbpedia.org/ontology/writer> <http://dbpedia.org/resource/Julian_Hawthorne> . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:hubAirport res:Selangor.?x dbp:hubs?uri . }\n", - "\"Name all the hubs of the airlines whose one of the hubs is Selangir ? | 'Selangir'-res:Selangor | 'name'-dbo:name | 'hubs'-dbo:hubAirport | 'airlines'-dbo:icaoAirlineCode | 'hubs'-dbo:hubAirport\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/hubAirport> <http://dbpedia.org/resource/Selangor> . ?x <http://dbpedia.org/property/hubs> ?uri . }\"\n", + " SELECT DISTINCT?uri WHERE {?x dbo:hubAirport res:Selangor.?x dbp:hubs?uri }\n", + "\"Name all the hubs of the airlines whose one of the hubs is Selangir ? | 'Selangir'-res:Selangor | 'name'-dbo:name | 'hubs'-dbo:hubAirport | 'airlines'-dbo:icaoAirlineCode | 'hubs'-dbo:hubAirport\",\" SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/hubAirport> <http://dbpedia.org/resource/Selangor> . ?x <http://dbpedia.org/property/hubs> ?uri }\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:United_World_College_of_Costa_Rica dbp:president?uri } \n", "\"Who is the President of United World College of Costa Rica ? | 'President of United World College of Costa Rica'-res:United_World_College_of_Costa_Rica | 'President'-dbp:president\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/United_World_College_of_Costa_Rica> <http://dbpedia.org/property/president> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Cheasty_Boulevard_South dbo:landmark?x.?x dbp:city?uri . }\n", - "\"Which city has it's landmark as Cheasty Boulevard South? | 'landmark'-res:Landmark | 'Cheasty Boulevard South'-res:Cheasty_Boulevard_South | 'city'-dbo:city\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cheasty_Boulevard_South> <http://dbpedia.org/ontology/landmark> ?x . ?x <http://dbpedia.org/property/city> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Cheasty_Boulevard_South dbp:Landmark?x.?x dbo:city?uri . }\n", + "\"Which city has it's landmark as Cheasty Boulevard South? | 'landmark'-res:Landmark | 'Cheasty Boulevard South'-res:Cheasty_Boulevard_South | 'city'-dbo:city\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cheasty_Boulevard_South> <http://dbpedia.org/property/Landmark> ?x . ?x <http://dbpedia.org/ontology/city> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:director res:Ridley_Scott.?uri dbo:musicComposer res:Vangelis . }\n", - "\"Name the movie whose director is Ridley Scott and it's music composer is Vangelis? | 'Ridley Scott'-res:Ridley_Scott | 'Vangelis'-res:Vangelis | 'name'-dbp:name | 'movie'-dbo:picture | 'director'-dbo:director | 'music composer'-dbo:musicComposer\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/director> <http://dbpedia.org/resource/Ridley_Scott> . ?uri <http://dbpedia.org/ontology/musicComposer> <http://dbpedia.org/resource/Vangelis> . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbo:director res:Ridley_Scott.?uri dbp:musicComposer res:Vangelis . }\n", + "\"Name the movie whose director is Ridley Scott and it's music composer is Vangelis? | 'Ridley Scott'-res:Ridley_Scott | 'Vangelis'-res:Vangelis | 'name'-dbp:name | 'movie'-dbo:picture | 'director'-dbo:director | 'music composer'-dbo:musicComposer\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/director> <http://dbpedia.org/resource/Ridley_Scott> . ?uri <http://dbpedia.org/property/musicComposer> <http://dbpedia.org/resource/Vangelis> . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:language res:French_language.?x dbo:currency?uri . }\n", - "\"How many currencies are in used in places where people speak French? | 'French'-res:French_language | 'places'-dbp:height | 'speak'-dbo:language | ''-dbo:country | ''-dbo:country\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/language> <http://dbpedia.org/resource/French_language> . ?x <http://dbpedia.org/ontology/currency> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:language res:French_language.?x dbp:currency?uri . }\n", + "\"How many currencies are in used in places where people speak French? | 'French'-res:French_language | 'places'-dbp:height | 'speak'-dbo:language | ''-dbo:country | ''-dbo:country\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/language> <http://dbpedia.org/resource/French_language> . ?x <http://dbpedia.org/property/currency> ?uri . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:battles res:Arthur_St._Clair.?x dbo:combatant?uri . }\n", - "\"How many factions were involved in the battles fought by Arthur St. Clair? | 'Arthur St Clair'-res:Arthur_St._Clair | 'factions'-dbo:movement | 'involved'-dbo:date | 'battles'-dbo:battle | 'fought'-dbo:type\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/Arthur_St._Clair> . ?x <http://dbpedia.org/ontology/combatant> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:battles res:Arthur_St._Clair.?x dbp:combatant?uri . }\n", + "\"How many factions were involved in the battles fought by Arthur St. Clair? | 'Arthur St Clair'-res:Arthur_St._Clair | 'factions'-dbo:movement | 'involved'-dbo:date | 'battles'-dbo:battle | 'fought'-dbo:type\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/battles> <http://dbpedia.org/resource/Arthur_St._Clair> . ?x <http://dbpedia.org/property/combatant> ?uri . }\"\n", "\n", - " SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:ingredient res:Pork.?x rdf:type dbo:Food}\n", - "\"Count the number of ingredient of the foods which have one of the ingredient is Pork ? | 'Pork'-res:Pork | 'count'-dbo:country | 'ingredient'-dbo:ingredient | 'foods'-dbo:product | 'ingredient'-dbo:ingredient\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/ingredient> <http://dbpedia.org/resource/Pork> . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Food>}\"\n", + " SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:ingredient res:Pork.?x dbp:ingredients?uri }\n", + "\"Count the number of ingredient of the foods which have one of the ingredient is Pork ? | 'Pork'-res:Pork | 'count'-dbo:country | 'ingredient'-dbo:ingredient | 'foods'-dbo:product | 'ingredient'-dbo:ingredient\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/ingredient> <http://dbpedia.org/resource/Pork> . ?x <http://dbpedia.org/property/ingredients> ?uri }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:timeZone res:Central_European_Summer_Time .?uri rdf:type dbo:Newspaper}\n", - "\"List the newspapers whose headquarters's time zone is Central European Summer Time. | 'time zone'-res:Time_zone | 'Central European Summer Time'-res:Central_European_Summer_Time | 'newspapers'-dbo:title | 'headquarters'-dbo:headquarter\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/timeZone> <http://dbpedia.org/resource/Central_European_Summer_Time> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Newspaper>}\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:headquarters res:Central_European_Summer_Time .?uri rdf:type dbo:Newspaper}\n", + "\"List the newspapers whose headquarters's time zone is Central European Summer Time. | 'time zone'-res:Time_zone | 'Central European Summer Time'-res:Central_European_Summer_Time | 'newspapers'-dbo:title | 'headquarters'-dbo:headquarter\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Central_European_Summer_Time> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Newspaper>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Paul_Paul_Demiéville dbp:doctoralAdvisor?x.?x dbo:academicInterest?uri . }\n", - "\"What are the academic interests of the advisor of Paul Demiville ? | 'Paul Demiville'-res:Paul_Paul | 'academic'-dbo:abstract | 'advisor'-dbo:doctoralAdvisor\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Paul_Paul_Demiéville> <http://dbpedia.org/property/doctoralAdvisor> ?x . ?x <http://dbpedia.org/ontology/academicInterest> ?uri . }\"\n", + " SELECT DISTINCT?uri WHERE { res:Paul_Paul dbo:doctoralAdvisor?uri } \n", + "\"What are the academic interests of the advisor of Paul Demiville ? | 'Paul Demiville'-res:Paul_Paul | 'academic'-dbo:abstract | 'advisor'-dbo:doctoralAdvisor\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Paul_Paul> <http://dbpedia.org/ontology/doctoralAdvisor> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Swedish_Academy dbp:presenter?x.?x dbo:award?uri . }\n", - "\"Which awards are presented by Swedish Academy? | 'Swedish Academy'-res:Sweden | 'Swedish Academy'-res:Swedish_Academy | 'presented'-dbo:presenter | 'awards'-dbo:Award\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Swedish_Academy> <http://dbpedia.org/property/presenter> ?x . ?x <http://dbpedia.org/ontology/award> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:presenter res:Swedish_Academy.?x dbo:Award?uri . }\n", + "\"Which awards are presented by Swedish Academy? | 'Swedish Academy'-res:Sweden | 'Swedish Academy'-res:Swedish_Academy | 'presented'-dbo:presenter | 'awards'-dbo:Award\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/presenter> <http://dbpedia.org/resource/Swedish_Academy> . ?x <http://dbpedia.org/ontology/Award> ?uri . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE {?uri dbp:academicPrix res:Teaching_Philosophy } \n", - "\"what are some journals of academic Philosophy | 'academic Philosophy'-res:Teaching_Philosophy | 'journals'-dbp:journal\",\" SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/academicPrix> <http://dbpedia.org/resource/Teaching_Philosophy> } \"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:academicPhilosophy .?uri rdf:type dbo:Journal}\n", + "\"what are some journals of academic Philosophy | 'academic Philosophy'-res:Teaching_Philosophy | 'journals'-dbp:journal\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/academicPhilosophy> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Journal>}\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Lula_J._Davis dbo:residence?uri. res:John_McTaggart_(jockey) dbp:deathPlace?uri} \n", "\"What is the official residence of the Lula J. Davis which is also the death location of the John McTaggart (jockey) ? | 'Lula J. Davis'-res:Lula_J._Davis | 'John McTaggart (jockey)'-res:John_McTaggart_(jockey) | 'residence'-dbo:residence | 'death location'-dbo:deathPlace\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lula_J._Davis> <http://dbpedia.org/ontology/residence> ?uri . <http://dbpedia.org/resource/John_McTaggart_(jockey)> <http://dbpedia.org/property/deathPlace> ?uri} \"\n", @@ -4047,8 +3791,8 @@ "SELECT DISTINCT?uri WHERE { res:Charles_LeMaire dbp:awards?uri. res:Eric_Roth dbo:award?uri. }\n", "\"What is the common award won by Charles LeMaire and Eric Roth | 'Charles LeMaire'-res:Charles_LeMaire | 'Eric Roth'-res:Eric_Roth | 'award won'-dbp:awards | 'award won'-dbo:award\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Charles_LeMaire> <http://dbpedia.org/property/awards> ?uri . <http://dbpedia.org/resource/Eric_Roth> <http://dbpedia.org/ontology/award> ?uri . }\"\n", "\n", - " SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:maintainedBy res:Malaysia.?x dbp:designer?uri }\n", - "\"Tell me the total number of organizations who maintain the bridges made by the malaysian PWD? | 'Malaysian pwd'-res:Malaysia | 'Malaysian pwd'-res:PWD_Bamenda | 'total'-dbo:populationTotal | 'organizations'-dbo:company | 'maintain'-dbo:maintainedBy | 'bridges'-dbo:abstract | ''-dbo:country\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/maintainedBy> <http://dbpedia.org/resource/Malaysia> . ?x <http://dbpedia.org/property/designer> ?uri }\"\n", + " SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:maintainedBy res:Malaysian_PWD_Bamenda.?x dbp:crosses?uri }\n", + "\"Tell me the total number of organizations who maintain the bridges made by the malaysian PWD? | 'Malaysian pwd'-res:Malaysia | 'Malaysian pwd'-res:PWD_Bamenda | 'total'-dbo:populationTotal | 'organizations'-dbo:company | 'maintain'-dbo:maintainedBy | 'bridges'-dbo:abstract | ''-dbo:country\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/maintainedBy> <http://dbpedia.org/resource/Malaysian_PWD_Bamenda> . ?x <http://dbpedia.org/property/crosses> ?uri }\"\n", "\n", "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:company res:HBO .?uri rdf:type dbo:TelevisionShow}\n", "\"How many shows does HBO have? | 'HBO'-res:HBO | '@@@'-dbo:company | 'shows'-dbo:TelevisionShow\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/company> <http://dbpedia.org/resource/HBO> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}\"\n", @@ -4056,32 +3800,32 @@ "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbo:canonizedBy res:Pope_Benedict_XVI . }\n", "\"How many people have been canonized by Pope Benedict XVI? | 'Pope Benedict XVI'-res:Pope_Benedict_XVI | 'canonized'-dbo:canonizedBy\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/canonizedBy> <http://dbpedia.org/resource/Pope_Benedict_XVI> . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:museum res:Musée_d'Orsay.?uri dbp:work?x . }\n", - "\"Whose work is in the Musee d'orsay? | 'Musee d'-res:Musée_d'Orsay | 'work'-dbp:work\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/museum> <http://dbpedia.org/resource/Musée_d'Orsay> . ?uri <http://dbpedia.org/property/work> ?x . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:museum res:Musée_d'Orsay.?x dbp:work?uri . }\n", + "\"Whose work is in the Musee d'orsay? | 'Musee d'-res:Musée_d'Orsay | 'work'-dbp:work\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/museum> <http://dbpedia.org/resource/Musée_d'Orsay> . ?x <http://dbpedia.org/property/work> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:knownFor res:University_of_Toronto .?uri rdf:type dbo:Scientist}\n", - "\"What are the famous Uni Toronto scientists known for? | 'Uni Toronto'-res:University_of_Toronto\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/knownFor> <http://dbpedia.org/resource/University_of_Toronto> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:university res:University_of_Toronto .?uri rdf:type dbo:Scientist}\n", + "\"What are the famous Uni Toronto scientists known for? | 'Uni Toronto'-res:University_of_Toronto\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/university> <http://dbpedia.org/resource/University_of_Toronto> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}\"\n", "\n", "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:author res:Miguel_de_Cervantes .?uri rdf:type dbo:Book}\n", "\"How many books have been penned by Miguel de Cervantes? | 'Miguel de Cervantes'-res:Miguel_de_Cervantes | 'penned'-dbo:author | 'books'-dbo:Book\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/author> <http://dbpedia.org/resource/Miguel_de_Cervantes> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book>}\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE { res:Skull_Gang dbo:bandMember?uri . }\n", - "\"Count the band members of Skull Gang? | 'Skull Gang'-res:Skull_Gang | 'band members'-dbo:bandMember\",\"SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Skull_Gang> <http://dbpedia.org/ontology/bandMember> ?uri . }\"\n", + " SELECT DISTINCT COUNT(?uri) WHERE {?uri dbo:bandMember res:Skull_Gang } \n", + "\"Count the band members of Skull Gang? | 'Skull Gang'-res:Skull_Gang | 'band members'-dbo:bandMember\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/bandMember> <http://dbpedia.org/resource/Skull_Gang> } \"\n", "\n", "SELECT DISTINCT?uri WHERE {?x dbp:league res:Czech_Extraliga.?x dbo:formerTeam?uri . }\n", "\"In which teams have league members of the Czech Extraliga played previously? | 'Czech Extraliga'-res:Czech_Republic | 'Czech Extraliga'-res:Czech_Extraliga | 'league'-dbp:league | 'teams'-dbo:formerTeam\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/league> <http://dbpedia.org/resource/Czech_Extraliga> . ?x <http://dbpedia.org/ontology/formerTeam> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:grandMasters res:Chess_Grand_Masters.?x dbo:birthPlace?uri . }\n", - "\"In which cities were the chess grand masters born? | 'chess grand masters'-res:Grand_Masters'_Choice | 'cities'-dbo:country | 'born'-dbo:birthPlace\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/grandMasters> <http://dbpedia.org/resource/Chess_Grand_Masters> . ?x <http://dbpedia.org/ontology/birthPlace> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:leaderName res:Grand_Masters'_Choice.?x dbo:birthPlace?uri . }\n", + "\"In which cities were the chess grand masters born? | 'chess grand masters'-res:Grand_Masters'_Choice | 'cities'-dbo:country | 'born'-dbo:birthPlace\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/leaderName> <http://dbpedia.org/resource/Grand_Masters'_Choice> . ?x <http://dbpedia.org/ontology/birthPlace> ?uri . }\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Doonesbury_(musical) dbp:lyrics?uri } \n", "\"WHo gave the lyrcis of Doonesbury ? | 'wHo'-res:Who | 'Doonesbury'-res:Doonesbury_(musical) | 'lyrics'-dbo:lyrics\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Doonesbury_(musical)> <http://dbpedia.org/property/lyrics> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:leaderName res:Houston_City_Council.?uri dbo:location?x . }\n", - "\"Which things have been located, where governance is Houston City Council? | 'Houston City Council'-res:Houston_City_Council | 'located,'-dbo:locatedInArea | 'governance'-dbo:management\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/leaderName> <http://dbpedia.org/resource/Houston_City_Council> . ?uri <http://dbpedia.org/ontology/location> ?x . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:leaderName res:Houston_City_Council.?x dbo:location?uri . }\n", + "\"Which things have been located, where governance is Houston City Council? | 'Houston City Council'-res:Houston_City_Council | 'located,'-dbo:locatedInArea | 'governance'-dbo:management\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/leaderName> <http://dbpedia.org/resource/Houston_City_Council> . ?x <http://dbpedia.org/ontology/location> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Charles_Phelps_Taft dbo:parent?uri. res:Robert_A._Taft dbp:parents?uri. }\n", - "\"Who are the parents of Charles Phelps Taft II and Robert A. Taft? | 'II'-res:Ii | 'Charles Phelps Taft'-res:Charles_Phelps_Taft | 'A'-res:A | 'Robert Taft'-res:Robert_A._Taft | 'parents'-dbp:parents\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Charles_Phelps_Taft> <http://dbpedia.org/ontology/parent> ?uri . <http://dbpedia.org/resource/Robert_A._Taft> <http://dbpedia.org/property/parents> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Charles_Phelps_Taft dbp:parents?uri. res:Robert_A._Taft dbo:parent?uri. }\n", + "\"Who are the parents of Charles Phelps Taft II and Robert A. Taft? | 'II'-res:Ii | 'Charles Phelps Taft'-res:Charles_Phelps_Taft | 'A'-res:A | 'Robert Taft'-res:Robert_A._Taft | 'parents'-dbp:parents\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Charles_Phelps_Taft> <http://dbpedia.org/property/parents> ?uri . <http://dbpedia.org/resource/Robert_A._Taft> <http://dbpedia.org/ontology/parent> ?uri . }\"\n", "\n", "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:predecessor res:Duncan_Sandys.?x dbo:primeMinister?uri . }\n", "\"How many prime ministers did the predecessor of Duncan Sandys serve? | 'Duncan Sandys'-res:Duncan_Sandys | 'prime ministers'-dbo:primeMinister | 'predecessor'-dbo:predecessor | 'serve'-dbo:colour\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/predecessor> <http://dbpedia.org/resource/Duncan_Sandys> . ?x <http://dbpedia.org/ontology/primeMinister> ?uri . }\"\n", @@ -4092,47 +3836,47 @@ "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:assembly res:Canada.?x dbo:predecessor?uri . }\n", "\"How many cars succeed the cars assembled in Canada? | 'Canada'-res:Canada | 'cars'-dbo:management | 'succeed'-dbp:work | 'cars'-dbo:management | 'assembled'-dbp:assembly\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/assembly> <http://dbpedia.org/resource/Canada> . ?x <http://dbpedia.org/ontology/predecessor> ?uri . }\"\n", "\n", - " SELECT DISTINCT?uri WHERE {?uri dbp:hubs res:San_Francisco_International_Airport } \n", - "\"What are the airlines whose hub is San Francisco International Airport? | 'San Francisco International Airport'-res:San_Francisco_International_Airport | 'hub'-dbp:hubs | 'airlines'-dbo:Airline\",\" SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/hubs> <http://dbpedia.org/resource/San_Francisco_International_Airport> } \"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:hubs res:San_Francisco_International_Airport .?uri rdf:type dbo:Airline}\n", + "\"What are the airlines whose hub is San Francisco International Airport? | 'San Francisco International Airport'-res:San_Francisco_International_Airport | 'hub'-dbp:hubs | 'airlines'-dbo:Airline\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/hubs> <http://dbpedia.org/resource/San_Francisco_International_Airport> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Airline>}\"\n", "\n", "SELECT DISTINCT?uri WHERE {?x dbp:battles res:Miao_Rebellion.?x dbo:religion?uri . }\n", "\"Which religions' people fought in the Miao rebellion? | 'Miao rebellion'-res:Miao_Rebellion | 'religions'-dbo:religion | 'fought'-dbo:type\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/Miao_Rebellion> . ?x <http://dbpedia.org/ontology/religion> ?uri . }\"\n", "\n", - " SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:architect res:Stanford_White.?x rdf:type dbo:HistoricPlace}\n", - "\"How many other architect are there of the historic places whose architect is also Stanford White ? | 'historic places'-res:Heritage_New_Zealand | 'Stanford White'-res:Stanford_White | 'architect'-dbo:architect | 'architect'-dbo:architect\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/architect> <http://dbpedia.org/resource/Stanford_White> . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/HistoricPlace>}\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:architect res:Stanford_White.?x dbp:restingplace?uri . }\n", + "\"How many other architect are there of the historic places whose architect is also Stanford White ? | 'historic places'-res:Heritage_New_Zealand | 'Stanford White'-res:Stanford_White | 'architect'-dbo:architect | 'architect'-dbo:architect\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/architect> <http://dbpedia.org/resource/Stanford_White> . ?x <http://dbpedia.org/property/restingplace> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:family res:Meadow_Soprano.?x dbo:religion?uri . }\n", - "\"Which religion is followed by people in the family of Meadow Sopranos? | 'Meadow Sopranos'-res:Meadow_Soprano | 'religion'-dbo:religion | 'family'-dbo:family\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/family> <http://dbpedia.org/resource/Meadow_Soprano> . ?x <http://dbpedia.org/ontology/religion> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:family res:Meadow_Soprano.?x dbp:religion?uri . }\n", + "\"Which religion is followed by people in the family of Meadow Sopranos? | 'Meadow Sopranos'-res:Meadow_Soprano | 'religion'-dbo:religion | 'family'-dbo:family\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/family> <http://dbpedia.org/resource/Meadow_Soprano> . ?x <http://dbpedia.org/property/religion> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:keyPeople res:Piano .?uri rdf:type dbo:TelevisionShow}\n", - "\"What are some shows whose voice actors play the piano? | 'piano'-res:Piano | 'shows'-dbo:place | 'voice actors'-dbo:voice | 'play'-dbo:starring\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/keyPeople> <http://dbpedia.org/resource/Piano> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}\"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:piano res:Piano.?uri dbo:voice?x . }\n", + "\"What are some shows whose voice actors play the piano? | 'piano'-res:Piano | 'shows'-dbo:place | 'voice actors'-dbo:voice | 'play'-dbo:starring\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/piano> <http://dbpedia.org/resource/Piano> . ?uri <http://dbpedia.org/ontology/voice> ?x . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:race res:Breeders'_Cup_Juvenile_Turf.?x dbo:birthPlace?uri . }\n", - "\"From how many different places have participants of Breeders's Cup Turf come? | 'Breeders'-res:Breeders_(film) | 'Cup Turf'-res:Breeders'_Cup_Juvenile_Turf | 'places'-dbp:height | 'participants'-dbo:participant\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/race> <http://dbpedia.org/resource/Breeders'_Cup_Juvenile_Turf> . ?x <http://dbpedia.org/ontology/birthPlace> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:race res:Breeders'_Cup_Juvenile_Turf.?x dbp:locations?uri . }\n", + "\"From how many different places have participants of Breeders's Cup Turf come? | 'Breeders'-res:Breeders_(film) | 'Cup Turf'-res:Breeders'_Cup_Juvenile_Turf | 'places'-dbp:height | 'participants'-dbo:participant\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/race> <http://dbpedia.org/resource/Breeders'_Cup_Juvenile_Turf> . ?x <http://dbpedia.org/property/locations> ?uri . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:institution res:Bahamas_Association_of_Athletic_Associations.?x dbp:athleticsAssociation?uri . }\n", - "\"How many athletic associations are there in all of the private universities? | 'athletic associations'-res:Bahamas_Association_of_Athletic_Associations | 'private universities'-res:List_of_private_universities_in_Canada\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/institution> <http://dbpedia.org/resource/Bahamas_Association_of_Athletic_Associations> . ?x <http://dbpedia.org/property/athleticsAssociation> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:athletics res:Bahamas_Association_of_Athletic_Associations.?x rdf:type dbo:University}\n", + "\"How many athletic associations are there in all of the private universities? | 'athletic associations'-res:Bahamas_Association_of_Athletic_Associations | 'private universities'-res:List_of_private_universities_in_Canada\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/athletics> <http://dbpedia.org/resource/Bahamas_Association_of_Athletic_Associations> . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/University>}\"\n", "\n", "SELECT DISTINCT?uri WHERE {?uri dbo:manufacturer res:Sony . }\n", "\"What are some products manufactured by Sony? | 'Sony'-res:Sony | 'manufactured by'-dbo:manufacturer\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/manufacturer> <http://dbpedia.org/resource/Sony> . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:channel res:CBBC_(TV_channel).?x \n", - "\"What is the producer of the television shows whose channel is CBBC? | 'CBBC'-res:CBBC_(TV_channel) | 'producer'-dbo:producer | 'television'-dbo:transmission | 'shows'-dbo:place | 'channel'-dbo:channel\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/channel> <http://dbpedia.org/resource/CBBC_(TV_channel)> . ?x \"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:channel res:CBBC_(TV_channel).?x dbp:producer?uri . }\n", + "\"What is the producer of the television shows whose channel is CBBC? | 'CBBC'-res:CBBC_(TV_channel) | 'producer'-dbo:producer | 'television'-dbo:transmission | 'shows'-dbo:place | 'channel'-dbo:channel\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/channel> <http://dbpedia.org/resource/CBBC_(TV_channel)> . ?x <http://dbpedia.org/property/producer> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:label res:RCA_Records.?uri dbp:music?x . }\n", - "\"List all the movies whose music has been made up with someone under RCA records? | 'RCA records'-res:RCA_Records | 'movies'-dbo:film | 'music'-dbo:musicFusionGenre | 'records'-dbp:book\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/label> <http://dbpedia.org/resource/RCA_Records> . ?uri <http://dbpedia.org/property/music> ?x . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:recordLabel res:RCA_Records.?uri dbo:music?x . }\n", + "\"List all the movies whose music has been made up with someone under RCA records? | 'RCA records'-res:RCA_Records | 'movies'-dbo:film | 'music'-dbo:musicFusionGenre | 'records'-dbp:book\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/recordLabel> <http://dbpedia.org/resource/RCA_Records> . ?uri <http://dbpedia.org/ontology/music> ?x . }\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Ivan_Fomin dbo:significantBuilding?uri } \n", "\"Name the ssignificant buildings of Ivan Fomin ? | 'ssignificant buildings'-res:Rigby's_Buildings | 'Ivan Fomin'-res:Ivan_Fomin | 'significant building'-dbo:significantBuilding\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ivan_Fomin> <http://dbpedia.org/ontology/significantBuilding> ?uri } \"\n", "\n", - " SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:language res:Sweedish.?uri dbo:headquarters res:Stockholm } \n", - "\"Give me the count of newspaper whose language is Sweedish and headquartered at stockholm ? | 'Sweedish'-res:Swedish | 'stockholm'-res:Stockholm | 'count'-dbo:country | 'newspaper'-dbo:title | 'language'-dbo:language | 'headquartered'-dbo:headquarter | ''-dbo:country\",\" SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/language> <http://dbpedia.org/resource/Sweedish> . ?uri <http://dbpedia.org/ontology/headquarters> <http://dbpedia.org/resource/Stockholm> } \"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbo:language res:Swedish.?uri dbp:headquarters res:Stockholm . }\n", + "\"Give me the count of newspaper whose language is Sweedish and headquartered at stockholm ? | 'Sweedish'-res:Swedish | 'stockholm'-res:Stockholm | 'count'-dbo:country | 'newspaper'-dbo:title | 'language'-dbo:language | 'headquartered'-dbo:headquarter | ''-dbo:country\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/language> <http://dbpedia.org/resource/Swedish> . ?uri <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Stockholm> . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:inflow res:Aegean_Sea.?x dbp:cities?uri . }\n", - "\"What are the cities located on the sea into which the Aegean Sea flows? | 'Aegean Sea'-res:Aegean_Sea | 'flows'-dbo:outflow | 'cities'-dbp:cities\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/inflow> <http://dbpedia.org/resource/Aegean_Sea> . ?x <http://dbpedia.org/property/cities> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Aegean_Sea dbo:inflow?x.?x dbp:cities?uri . }\n", + "\"What are the cities located on the sea into which the Aegean Sea flows? | 'Aegean Sea'-res:Aegean_Sea | 'flows'-dbo:outflow | 'cities'-dbp:cities\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Aegean_Sea> <http://dbpedia.org/ontology/inflow> ?x . ?x <http://dbpedia.org/property/cities> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:academicAdvisor res:Sylvain_Lévi.?x dbp:fields?uri . }\n", - "\"In which areas did the pupils of Sylvain Levi work? | 'Sylvain Levi work'-res:Sylvain_Lévi | 'pupils'-dbo:school\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/academicAdvisor> <http://dbpedia.org/resource/Sylvain_Lévi> . ?x <http://dbpedia.org/property/fields> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Sylvain_Lévi dbo:school?x.?x dbp:subject?uri . }\n", + "\"In which areas did the pupils of Sylvain Levi work? | 'Sylvain Levi work'-res:Sylvain_Lévi | 'pupils'-dbo:school\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Sylvain_Lévi> <http://dbpedia.org/ontology/school> ?x . ?x <http://dbpedia.org/property/subject> ?uri . }\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Tales_of_Suspense dbp:writers?uri } \n", "\"List the writers of Tales of Suspense ? | 'Tales of Suspense'-res:Tales_of_Suspense | 'writers'-dbp:writers\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Tales_of_Suspense> <http://dbpedia.org/property/writers> ?uri } \"\n", @@ -4140,14 +3884,14 @@ " SELECT DISTINCT?uri WHERE { res:Abigail_Adams dbp:children?uri } \n", "\"Who are the children of Abigail Adams? | 'Abigail Adams'-res:Abigail_Adams | 'children'-dbp:children\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Abigail_Adams> <http://dbpedia.org/property/children> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Fr._Agnel_Multipurpose_School_and_Junior_College dbo:sport?uri. res:Vishwajyot_High_School dbp:genre?uri. }\n", - "\"what are some common games played at both Fr Agnel Multipurpose School and Vishwajyot High School? | 'Fr Agnel Multipurpose School'-res:Fr._Agnel_Multipurpose_School_and_Junior_College | 'Vishwajyot High School'-res:Vishwajyot_High_School | 'common games'-dbo:sport | 'played'-dbo:coach\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Fr._Agnel_Multipurpose_School_and_Junior_College> <http://dbpedia.org/ontology/sport> ?uri . <http://dbpedia.org/resource/Vishwajyot_High_School> <http://dbpedia.org/property/genre> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Fr._Agnel_Multipurpose_School_and_Junior_College dbo:sport?uri. res:Vishwajyot_High_School dbp:team?uri. }\n", + "\"what are some common games played at both Fr Agnel Multipurpose School and Vishwajyot High School? | 'Fr Agnel Multipurpose School'-res:Fr._Agnel_Multipurpose_School_and_Junior_College | 'Vishwajyot High School'-res:Vishwajyot_High_School | 'common games'-dbo:sport | 'played'-dbo:coach\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Fr._Agnel_Multipurpose_School_and_Junior_College> <http://dbpedia.org/ontology/sport> ?uri . <http://dbpedia.org/resource/Vishwajyot_High_School> <http://dbpedia.org/property/team> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:prizes res:National_Medal_of_Science.?x dbp:doctoralAdvisor?uri . }\n", - "\"Who have done their PhDs under a National Medal of Science winner? | 'PhDs under a National Medal of Science winner'-res:National_Medal_of_Science | 'winner'-dbp:prizes | 'PhDs under'-dbp:doctoralAdvisor\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/prizes> <http://dbpedia.org/resource/National_Medal_of_Science> . ?x <http://dbpedia.org/property/doctoralAdvisor> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:prizes res:National_Medal_of_Science .?uri rdf:type dbo:PhD}\n", + "\"Who have done their PhDs under a National Medal of Science winner? | 'PhDs under a National Medal of Science winner'-res:National_Medal_of_Science | 'winner'-dbp:prizes | 'PhDs under'-dbp:doctoralAdvisor\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/prizes> <http://dbpedia.org/resource/National_Medal_of_Science> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/PhD>}\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:relation res:Kennedy_family.?uri dbo:relation?x . }\n", - "\"How many people are there who have relationship with Kennedy family? | 'Kennedy family'-res:Kennedy_family | 'relationship'-dbo:relation\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/relation> <http://dbpedia.org/resource/Kennedy_family> . ?uri <http://dbpedia.org/ontology/relation> ?x . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbo:relation res:Kennedy_family . }\n", + "\"How many people are there who have relationship with Kennedy family? | 'Kennedy family'-res:Kennedy_family | 'relationship'-dbo:relation\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/relation> <http://dbpedia.org/resource/Kennedy_family> . }\"\n", "\n", "SELECT DISTINCT?uri WHERE {?uri dbp:archipelago res:Greater_Antilles .?uri rdf:type dbo:Island}\n", "\"What islands are there on the Greater Antilles archipelago? | 'Greater Antilles archipelago'-res:Greater_Antilles | 'islands'-dbo:numberOfIslands\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/archipelago> <http://dbpedia.org/resource/Greater_Antilles> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Island>}\"\n", @@ -4164,11 +3908,11 @@ "SELECT DISTINCT?uri WHERE {?uri dbp:city res:Reading,_Berkshire .?uri rdf:type dbo:School}\n", "\"What are the schools whose city is Reading, Berkshire? | 'Reading, Berkshire'-res:Reading,_Berkshire | 'city'-dbo:city\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/city> <http://dbpedia.org/resource/Reading,_Berkshire> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/School>}\"\n", "\n", - " SELECT DISTINCT COUNT(?uri) WHERE { res:Toronto_Marlies dbp:tenants?uri } \n", - "\"Find the total number of tenants of the stadium whose tenants was Toronto Marlies? | 'Toronto Marlies'-res:Toronto_Marlies | 'tenants'-dbp:tenants | 'tenants'-dbp:tenants\",\" SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Toronto_Marlies> <http://dbpedia.org/property/tenants> ?uri } \"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:tenants res:Toronto_Marlies.?tenants?uri . }\n", + "\"Find the total number of tenants of the stadium whose tenants was Toronto Marlies? | 'Toronto Marlies'-res:Toronto_Marlies | 'tenants'-dbp:tenants | 'tenants'-dbp:tenants\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/tenants> <http://dbpedia.org/resource/Toronto_Marlies> . ?tenants ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE { relatives res:Uncle_Henry_(Oz).?uri dbo:relative res:Aunt_Em. }\n", - "\"Whose relatives are Uncle Henry (Oz) and Aunt Em? | 'Uncle Henry (Oz)'-res:Uncle_Henry_(Oz) | 'Aunt Em'-res:Aunt_Em | 'relatives'-dbo:relative | 'relatives'-dbo:relative\",\"SELECT DISTINCT ?uri WHERE { relatives <http://dbpedia.org/resource/Uncle_Henry_(Oz)> . ?uri <http://dbpedia.org/ontology/relative> <http://dbpedia.org/resource/Aunt_Em> . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:relatives res:Uncle_Henry_(Oz).?uri dbo:relative res:Aunt_Em. }\n", + "\"Whose relatives are Uncle Henry (Oz) and Aunt Em? | 'Uncle Henry (Oz)'-res:Uncle_Henry_(Oz) | 'Aunt Em'-res:Aunt_Em | 'relatives'-dbo:relative | 'relatives'-dbo:relative\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/relatives> <http://dbpedia.org/resource/Uncle_Henry_(Oz)> . ?uri <http://dbpedia.org/ontology/relative> <http://dbpedia.org/resource/Aunt_Em> . }\"\n", "\n", " SELECT DISTINCT?uri WHERE {?uri dbo:parentCompany res:Kumho_Asiana_Group } \n", "\"Which companies have Kumho Asiana Group as their parent company? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'Kumho Asiana Group'-res:Kumho_Asiana_Group | 'parent company'-dbo:parentCompany\",\" SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/parentCompany> <http://dbpedia.org/resource/Kumho_Asiana_Group> } \"\n", @@ -4176,38 +3920,38 @@ "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:location res:Toronto .?uri rdf:type dbo:Building}\n", "\"How many buildings are located in Toronto ? | 'Toronto'-res:Toronto | 'located'-dbp:location\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/location> <http://dbpedia.org/resource/Toronto> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Building>}\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbo:managerClub res:Middlesbrough_F.C. . }\n", - "\"How many people have been the head coach for Middlesbrough FC? | 'Middlesbrough FC'-res:Middlesbrough_F.C. | 'head coach'-dbo:ground\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/managerClub> <http://dbpedia.org/resource/Middlesbrough_F.C> . . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:club res:Middlesbrough_F.C. . }\n", + "\"How many people have been the head coach for Middlesbrough FC? | 'Middlesbrough FC'-res:Middlesbrough_F.C. | 'head coach'-dbo:ground\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/club> <http://dbpedia.org/resource/Middlesbrough_F.C> . . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:title res:Miss_Louisiana_USA . }\n", - "\"Who is married to a Miss Louisiana, USA? | ''-res:Miss_Louisiana_USA | 'USA'-dbp:title | 'married to'-dbp:spouse\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/title> <http://dbpedia.org/resource/Miss_Louisiana_USA> . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:title res:Miss_Louisiana_USA .?uri rdf:type dbo:Spouse}\n", + "\"Who is married to a Miss Louisiana, USA? | ''-res:Miss_Louisiana_USA | 'USA'-dbp:title | 'married to'-dbp:spouse\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/title> <http://dbpedia.org/resource/Miss_Louisiana_USA> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Spouse>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:ground res:Fr._Agnel_Stadium.?x dbo:sport?uri . }\n", - "\"What sports are played by school which owns Fr. Agnel Stadium ? | 'Fr. Agnel Stadium'-res:Fr._Agnel_Stadium | 'sports'-dbo:sport | 'played'-dbo:coach | 'school'-dbo:school | 'owns'-dbo:languageFamily\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/ground> <http://dbpedia.org/resource/Fr._Agnel_Stadium> . ?x <http://dbpedia.org/ontology/sport> ?uri . }\"\n", + " SELECT DISTINCT?uri WHERE { res:Fr._Agnel_Stadium dbp:owner?uri } \n", + "\"What sports are played by school which owns Fr. Agnel Stadium ? | 'Fr. Agnel Stadium'-res:Fr._Agnel_Stadium | 'sports'-dbo:sport | 'played'-dbo:coach | 'school'-dbo:school | 'owns'-dbo:languageFamily\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Fr._Agnel_Stadium> <http://dbpedia.org/property/owner> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:headquarters res:Atlanta.?uri rdf:type dbo:TelevisionShow}\n", - "\"What are the television shows telecasted on the network which has headquarters at Atlanta? | 'Atlanta'-res:Atlanta | 'television shows'-dbo:televisionSeries | 'telecasted'-dbo:transmission | 'network'-dbo:network | 'headquarters'-dbo:headquarter\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Atlanta> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:headquarters res:Atlanta .?uri rdf:type dbo:TelevisionShow}\n", + "\"What are the television shows telecasted on the network which has headquarters at Atlanta? | 'Atlanta'-res:Atlanta | 'television shows'-dbo:televisionSeries | 'telecasted'-dbo:transmission | 'network'-dbo:network | 'headquarters'-dbo:headquarter\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Atlanta> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE { res:Norway dbo:award?uri. res:Swedish_Academy dbp:presenter?uri. }\n", - "\"Name the award given in Norway and presented by Swedish Academy ? | 'Norway'-res:Norway | 'Swedish Academy'-res:Sweden | 'Swedish Academy'-res:Swedish_Academy | 'name'-dbp:name | 'award'-dbo:award | ''-dbo:country\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Norway> <http://dbpedia.org/ontology/award> ?uri . <http://dbpedia.org/resource/Swedish_Academy> <http://dbpedia.org/property/presenter> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:Norway dbp:presenter?x.?x dbo:award?uri . }\n", + "\"Name the award given in Norway and presented by Swedish Academy ? | 'Norway'-res:Norway | 'Swedish Academy'-res:Sweden | 'Swedish Academy'-res:Swedish_Academy | 'name'-dbp:name | 'award'-dbo:award | ''-dbo:country\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Norway> <http://dbpedia.org/property/presenter> ?x . ?x <http://dbpedia.org/ontology/award> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:channel res:Comedy_Central .?uri rdf:type dbo:TelevisionShow}\n", - "\"What are some shows by Comedy Central? | 'Comedy Central'-res:Comedy_Central | 'shows'-dbo:place\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/channel> <http://dbpedia.org/resource/Comedy_Central> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:company res:Comedy_Central .?uri rdf:type dbo:TelevisionShow}\n", + "\"What are some shows by Comedy Central? | 'Comedy Central'-res:Comedy_Central | 'shows'-dbo:place\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/company> <http://dbpedia.org/resource/Comedy_Central> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbo:computingPlatform res:PlayStation_4.?uri dbp:os res:OS . }\n", - "\"What came before PlayStation 4 and uses PlayStation 3 system software as OS? | 'PlayStation 4'-res:PlayStation_4 | 'PlayStation 3'-res:PlayStation_3 | 'software'-res:Software | 'OS'-res:OS\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/computingPlatform> <http://dbpedia.org/resource/PlayStation_4> . ?uri <http://dbpedia.org/property/os> <http://dbpedia.org/resource/OS> . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:computingPlatform res:PlayStation_4.?uri rdf:type dbo:Software}\n", + "\"What came before PlayStation 4 and uses PlayStation 3 system software as OS? | 'PlayStation 4'-res:PlayStation_4 | 'PlayStation 3'-res:PlayStation_3 | 'software'-res:Software | 'OS'-res:OS\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/computingPlatform> <http://dbpedia.org/resource/PlayStation_4> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Software>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:influencedBy res:Costanzo_Preve.?x dbp:influtions?uri . }\n", - "\"Who are the people which were the influencer of the person, who influenced Costanzo Preve ? | 'Costanzo Preve'-res:Costanzo_Preve | 'influncer'-dbo:influencedBy | 'influnced'-dbo:influencedBy\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/influencedBy> <http://dbpedia.org/resource/Costanzo_Preve> . ?x <http://dbpedia.org/property/influtions> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbo:influencedBy res:Costanzo_Preve.?x dbp:influncer?uri . }\n", + "\"Who are the people which were the influencer of the person, who influenced Costanzo Preve ? | 'Costanzo Preve'-res:Costanzo_Preve | 'influncer'-dbo:influencedBy | 'influnced'-dbo:influencedBy\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/influencedBy> <http://dbpedia.org/resource/Costanzo_Preve> . ?x <http://dbpedia.org/property/influncer> ?uri . }\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Andrew_W._Lewis dbo:almaMater?uri } \n", "\"What is the alma mater of Andrew W. Lewis ? | 'W'-res:W | 'Andrew Lewis'-res:Andrew_W._Lewis | 'alma mater'-dbo:almaMater\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Andrew_W._Lewis> <http://dbpedia.org/ontology/almaMater> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:district res:Englewood,_Colorado.?x dbo:nearestCity?uri . }\n", - "\"Name the nearest city to the historic place which has Englewood, Colorado as one of them ? | 'Englewood, Colorado'-res:Englewood,_Colorado | 'name'-dbp:name | 'nearest city'-dbo:city | 'historic place'-dbo:district\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/district> <http://dbpedia.org/resource/Englewood,_Colorado> . ?x <http://dbpedia.org/ontology/nearestCity> ?uri . }\"\n", + " SELECT DISTINCT?uri WHERE {?x dbp:nearestCity res:Englewood,_Colorado.?x dbo:district?uri }\n", + "\"Name the nearest city to the historic place which has Englewood, Colorado as one of them ? | 'Englewood, Colorado'-res:Englewood,_Colorado | 'name'-dbp:name | 'nearest city'-dbo:city | 'historic place'-dbo:district\",\" SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/nearestCity> <http://dbpedia.org/resource/Englewood,_Colorado> . ?x <http://dbpedia.org/ontology/district> ?uri }\"\n", "\n", - " SELECT DISTINCT?uri WHERE { res:Marv_McFadden dbp:pastteams?uri } \n", - "\"From which team did Marv McFadden played ? | 'Marv McFadden'-res:Marv_McFadden | 'team'-dbp:pastteams\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Marv_McFadden> <http://dbpedia.org/property/pastteams> ?uri } \"\n", + " SELECT DISTINCT COUNT(?uri) WHERE { res:Marv_McFadden dbp:pastteams?uri } \n", + "\"From which team did Marv McFadden played ? | 'Marv McFadden'-res:Marv_McFadden | 'team'-dbp:pastteams\",\" SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Marv_McFadden> <http://dbpedia.org/property/pastteams> ?uri } \"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Kakae dbo:title?uri } \n", "\"What is the title of Kakae ? | 'Kakae'-res:Kakae | 'title'-dbo:title\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kakae> <http://dbpedia.org/ontology/title> ?uri } \"\n", @@ -4215,20 +3959,20 @@ " SELECT DISTINCT?uri WHERE { res:Heroman dbo:author?uri } \n", "\"Who wrote Heroman? | 'Heroman'-res:Heroman | 'wrote'-dbo:author\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Heroman> <http://dbpedia.org/ontology/author> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbo:champion res:Ronda_Rousey.?uri dbp:place res:Ultimate_Fighting_One. }\n", - "\"Where did the ultimate fighter: a champion will be crowned tonight and ultimate fighter: team rousey vs team tate take place? | 'ultimate fighter: team rousey'-res:Ronda_Rousey | 'ultimate fighter:'-dbo:height | 'champion'-dbo:champion | 'crowned'-dbo:height | 'tonight'-dbo:champion | 'team tate'-dbo:band | 'place'-dbo:place\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/champion> <http://dbpedia.org/resource/Ronda_Rousey> . ?uri <http://dbpedia.org/property/place> <http://dbpedia.org/resource/Ultimate_Fighting_One> . }\"\n", + " SELECT DISTINCT?uri WHERE { res:Ronda_Rousey dbp:champion?uri. res:Team_Tate dbo:tenant?uri} \n", + "\"Where did the ultimate fighter: a champion will be crowned tonight and ultimate fighter: team rousey vs team tate take place? | 'ultimate fighter: team rousey'-res:Ronda_Rousey | 'ultimate fighter:'-dbo:height | 'champion'-dbo:champion | 'crowned'-dbo:height | 'tonight'-dbo:champion | 'team tate'-dbo:band | 'place'-dbo:place\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ronda_Rousey> <http://dbpedia.org/property/champion> ?uri . <http://dbpedia.org/resource/Team_Tate> <http://dbpedia.org/ontology/tenant> ?uri} \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:almaMater res:Poland.?x dbp:nationality?uri . }\n", - "\"Which nation's engineers have graduated in Poland? | 'Poland'-res:Poland | 'nation'-dbo:country | 'engineers'-dbo:architect | 'graduated'-dbo:effectiveRadiatedPower\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/almaMater> <http://dbpedia.org/resource/Poland> . ?x <http://dbpedia.org/property/nationality> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:country res:Poland.?x dbo:engineer?uri . }\n", + "\"Which nation's engineers have graduated in Poland? | 'Poland'-res:Poland | 'nation'-dbo:country | 'engineers'-dbo:architect | 'graduated'-dbo:effectiveRadiatedPower\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/country> <http://dbpedia.org/resource/Poland> . ?x <http://dbpedia.org/ontology/engineer> ?uri . }\"\n", "\n", "SELECT DISTINCT COUNT(?uri) WHERE {?uri dbp:musicComposer res:Bernard_Herrmann .?uri rdf:type dbo:Film}\n", "\"Give me a count of movies whose music composer is Bernard Herrmann? | 'Bernard Herrmann'-res:Bernard_Herrmann | 'music composer'-dbo:musicComposer | 'movie'-dbo:Film\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/musicComposer> <http://dbpedia.org/resource/Bernard_Herrmann> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:magazine res:Gangan_Comics.?x dbo:author?uri . }\n", - "\"Who has written works found in the Gangan comics? | 'Gangan comics'-res:Gangan_Comics | 'found'-dbp:magazine | 'found'-dbp:author\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/magazine> <http://dbpedia.org/resource/Gangan_Comics> . ?x <http://dbpedia.org/ontology/author> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:magazine res:Gangan_Comics.?uri dbo:author?x . }\n", + "\"Who has written works found in the Gangan comics? | 'Gangan comics'-res:Gangan_Comics | 'found'-dbp:magazine | 'found'-dbp:author\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/magazine> <http://dbpedia.org/resource/Gangan_Comics> . ?uri <http://dbpedia.org/ontology/author> ?x . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:cpu res:AMD.?uri dbo:successor?x . }\n", - "\"What is the device whose successor's CPU is by AMD? | 'AMD'-res:Advanced_Micro_Devices | 'device'-dbo:title | 'successor'-dbo:successor\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/cpu> <http://dbpedia.org/resource/AMD> . ?uri <http://dbpedia.org/ontology/successor> ?x . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:successor res:Advanced_Micro_Devices .?uri rdf:type dbo:Device}\n", + "\"What is the device whose successor's CPU is by AMD? | 'AMD'-res:Advanced_Micro_Devices | 'device'-dbo:title | 'successor'-dbo:successor\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/successor> <http://dbpedia.org/resource/Advanced_Micro_Devices> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Device>}\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Perianne_Jones dbo:club?uri } \n", "\"What is the club of Perianne Jones ? | 'Perianne Jones'-res:Perianne_Jones | 'club'-dbo:club\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Perianne_Jones> <http://dbpedia.org/ontology/club> ?uri } \"\n", @@ -4236,23 +3980,23 @@ "SELECT DISTINCT?uri WHERE {?x dbp:education res:Middle_Temple.?x dbo:opponent?uri . }\n", "\"Who are the opponents of graduates of the Middle Temple? | 'Middle Temple'-res:Middle_Temple | 'graduates'-dbp:education | 'opponent'-dbo:opponent\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/education> <http://dbpedia.org/resource/Middle_Temple> . ?x <http://dbpedia.org/ontology/opponent> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbp:schooltype res:Private_school.?x dbo:sport?uri . }\n", - "\"Which sports are played typically in private schools? | 'private school'-res:Private_school | 'schools'-dbp:schooltype | 'sport'-dbo:sport\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/schooltype> <http://dbpedia.org/resource/Private_school> . ?x <http://dbpedia.org/ontology/sport> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?x dbp:school res:Private_school.?x dbo:sport?uri . }\n", + "\"Which sports are played typically in private schools? | 'private school'-res:Private_school | 'schools'-dbp:schooltype | 'sport'-dbo:sport\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/school> <http://dbpedia.org/resource/Private_school> . ?x <http://dbpedia.org/ontology/sport> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:director res:Justin_Zackham.?x dbp:starring?uri . }\n", - "\"What is the casting of the movie directed by Justin Zackham ? | 'Justin Zackham'-res:Justin_Zackham | 'casting'-dbo:position | 'movie'-dbo:picture | 'directed'-dbo:principal\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/director> <http://dbpedia.org/resource/Justin_Zackham> . ?x <http://dbpedia.org/property/starring> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:director res:Justin_Zackham .?uri rdf:type dbo:Film}\n", + "\"What is the casting of the movie directed by Justin Zackham ? | 'Justin Zackham'-res:Justin_Zackham | 'casting'-dbo:position | 'movie'-dbo:picture | 'directed'-dbo:principal\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/director> <http://dbpedia.org/resource/Justin_Zackham> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Mekong_River_Commission dbo:membership?uri } \n", "\"List all the mmebers of Mekong River Commission? | 'Mekong River Commission'-res:Mekong_River_Commission | 'mmebers'-dbo:membership\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Mekong_River_Commission> <http://dbpedia.org/ontology/membership> ?uri } \"\n", "\n", - "SELECT DISTINCT?uri WHERE {?x dbo:subsequentWork res:The_Five.?x dbp:starring?uri . }\n", - "\"Name the actors of the TV show which has an episode named The Five ? | 'TV'-res:Tv_test_pattern | 'The Five'-res:The_Five | 'name actors'-dbo:leaderName | 'show'-dbo:show | 'episode'-dbo:type\",\"SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/subsequentWork> <http://dbpedia.org/resource/The_Five> . ?x <http://dbpedia.org/property/starring> ?uri . }\"\n", + "SELECT DISTINCT?uri WHERE { res:The_Five dbo:series?x.?x dbp:starring?uri . }\n", + "\"Name the actors of the TV show which has an episode named The Five ? | 'TV'-res:Tv_test_pattern | 'The Five'-res:The_Five | 'name actors'-dbo:leaderName | 'show'-dbo:show | 'episode'-dbo:type\",\"SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Five> <http://dbpedia.org/ontology/series> ?x . ?x <http://dbpedia.org/property/starring> ?uri . }\"\n", "\n", - "SELECT DISTINCT COUNT(?uri) WHERE {?x dbo:deathPlace res:Malaysia.?x dbp:religion?uri . }\n", - "\"How many religion's people have died in Malaysia? | 'Malaysia'-res:Malaysia | 'died in'-dbo:deathPlace | 'religion'-dbo:religion\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/deathPlace> <http://dbpedia.org/resource/Malaysia> . ?x <http://dbpedia.org/property/religion> ?uri . }\"\n", + "SELECT DISTINCT COUNT(?uri) WHERE {?x dbp:placeOfDeath res:Malaysia.?x dbo:religion?uri . }\n", + "\"How many religion's people have died in Malaysia? | 'Malaysia'-res:Malaysia | 'died in'-dbo:deathPlace | 'religion'-dbo:religion\",\"SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/placeOfDeath> <http://dbpedia.org/resource/Malaysia> . ?x <http://dbpedia.org/ontology/religion> ?uri . }\"\n", "\n", - "SELECT DISTINCT?uri WHERE {?uri dbp:writer res:Erik_Jendresen .?uri rdf:type dbo:TelevisionShow}\n", - "\"Name the HBO TV show written by Erik jendresen ? | 'HBO'-res:HBO | 'TV show'-res:Show_TV | 'TV'-res:Tv_test_pattern | 'HBO show'-res:HBO_Pakistan | 'Erik jendresen'-res:Erik_Jendresen | 'name'-dbp:name | 'written'-dbo:writer\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/writer> <http://dbpedia.org/resource/Erik_Jendresen> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}\"\n", + "SELECT DISTINCT?uri WHERE {?uri dbp:writer res:HBO_Pakistan .?uri rdf:type dbo:TelevisionShow}\n", + "\"Name the HBO TV show written by Erik jendresen ? | 'HBO'-res:HBO | 'TV show'-res:Show_TV | 'TV'-res:Tv_test_pattern | 'HBO show'-res:HBO_Pakistan | 'Erik jendresen'-res:Erik_Jendresen | 'name'-dbp:name | 'written'-dbo:writer\",\"SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/writer> <http://dbpedia.org/resource/HBO_Pakistan> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}\"\n", "\n", " SELECT DISTINCT?uri WHERE { res:Doug_Acomb dbp:playedFor?uri } \n", "\"List the team for which Doug Acomb played ? | 'Doug Acomb'-res:Doug_Acomb | 'team'-dbp:playedFor\",\" SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Doug_Acomb> <http://dbpedia.org/property/playedFor> ?uri } \"\n", diff --git a/data/__pycache__/eval_query.cpython-39.pyc b/data/__pycache__/eval_query.cpython-39.pyc index a11ad6cd418e99bf21371e3f8bc75a2c554cacf4..4040c175378929bfa0a55aca465193959c0b5e5b 100644 Binary files a/data/__pycache__/eval_query.cpython-39.pyc and b/data/__pycache__/eval_query.cpython-39.pyc differ diff --git a/data/eval/lc-quad-requeried-linked-test-eval-append-1-large-3-epochs.txt b/data/eval/lc-quad-requeried-linked-test-eval-append-1-large-3-epochs.txt new file mode 100644 index 0000000000000000000000000000000000000000..3365b6971712ba1cdf6d47309574b01e6e7ef56e --- /dev/null +++ b/data/eval/lc-quad-requeried-linked-test-eval-append-1-large-3-epochs.txt @@ -0,0 +1,20 @@ +String evaluation + +Precision macro: 0.8030609762521919 +Recall macro: 0.7913620401992508 +F1 macro: 0.7947304198110867 +Precision micro: 0.7912972085385879 +Recall micro: 0.7802153323079414 +F1 micro: 0.7857171972445279 +Fully correct: 162 + +Query evaluation + +Precision macro: 0.34168246759219223 +Recall macro: 0.34538766263173165 +F1 macro: 0.33773159161379057 +Precision micro: 0.2601919788161299 +Recall micro: 0.34827395237216047 +F1 micro: 0.29785756006408937 +Fully correct: 358 + diff --git a/data/eval/lc-quad-requeried-linked-test-eval-append-1-large-4-epochs.txt b/data/eval/lc-quad-requeried-linked-test-eval-append-1-large-4-epochs.txt new file mode 100644 index 0000000000000000000000000000000000000000..f9c7041aa902db4ddce59fcf7aa617cad3a44849 --- /dev/null +++ b/data/eval/lc-quad-requeried-linked-test-eval-append-1-large-4-epochs.txt @@ -0,0 +1,20 @@ +String evaluation + +Precision macro: 0.7982044656463279 +Recall macro: 0.7850570068270347 +F1 macro: 0.7890307366150056 +Precision micro: 0.787020260253665 +Recall micro: 0.7735772686796729 +F1 micro: 0.7802408654827515 +Fully correct: 152 + +Query evaluation + +Precision macro: 0.3288445236328654 +Recall macro: 0.33148790322402794 +F1 macro: 0.3254230404437138 +Precision micro: 0.4538291509556613 +Recall micro: 0.6749951653451918 +F1 micro: 0.5427460736574067 +Fully correct: 345 + diff --git a/data/pred_responses/lc-quad-requeried-linked-test-pred_responses-append-1-large-3-epochs.json b/data/pred_responses/lc-quad-requeried-linked-test-pred_responses-append-1-large-3-epochs.json new file mode 100644 index 0000000000000000000000000000000000000000..a65875969a4369983f02149bb47d148e7a12dbe5 --- /dev/null +++ b/data/pred_responses/lc-quad-requeried-linked-test-pred_responses-append-1-large-3-epochs.json @@ -0,0 +1 @@ +{"questions": [{"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/party> <http://dbpedia.org/resource/International_Muslim_Brotherhood> . ?x <http://dbpedia.org/property/religion> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/deputy> <http://dbpedia.org/resource/Neil_Brown_(Australian_politician)> . ?uri <http://dbpedia.org/ontology/officeHolder> <http://dbpedia.org/resource/Andrew_Peacock> . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/World_War_II> . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MilitaryPerson>}"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/parentOrganisation> <http://dbpedia.org/resource/Comcast> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Network>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/distributor> <http://dbpedia.org/resource/RKO_Pictures> . ?uri <http://dbpedia.org/property/musicComposer> <http://dbpedia.org/resource/Bernard_Herrmann> . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/founder> <http://dbpedia.org/resource/Ralph_J._Gleason> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Magazine>}"}, "answers": ["http://dbpedia.org/resource/Rolling_Stone"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Barq> <http://dbpedia.org/ontology/related> ?x . ?x <http://dbpedia.org/property/cities> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/role> <http://dbpedia.org/resource/Air_interdiction> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MilitaryUnit>}"}, "answers": ["http://dbpedia.org/resource/VA-12_(U.S._Navy)", "http://dbpedia.org/resource/VFA-102", "http://dbpedia.org/resource/VFA-103", "http://dbpedia.org/resource/VFA-11", "http://dbpedia.org/resource/VFA-15", "http://dbpedia.org/resource/VFA-211_(U.S._Navy)", "http://dbpedia.org/resource/VFA-213", "http://dbpedia.org/resource/VFA-25", "http://dbpedia.org/resource/VFA-31", "http://dbpedia.org/resource/VFA-37", "http://dbpedia.org/resource/VFA-41", "http://dbpedia.org/resource/VFA-86", "http://dbpedia.org/resource/VFA-87", "http://dbpedia.org/resource/VMA-133", "http://dbpedia.org/resource/VMA-143", "http://dbpedia.org/resource/VMA-223", "http://dbpedia.org/resource/VMA-231", "http://dbpedia.org/resource/VMA-241", "http://dbpedia.org/resource/VMA-542", "http://dbpedia.org/resource/VMF(N)-532", "http://dbpedia.org/resource/VMF(N)-534", "http://dbpedia.org/resource/VMF-111", "http://dbpedia.org/resource/VMF-123", "http://dbpedia.org/resource/VMF-213", "http://dbpedia.org/resource/VMF-221", "http://dbpedia.org/resource/VMF-422", "http://dbpedia.org/resource/VMF-471", "http://dbpedia.org/resource/VMF-472", "http://dbpedia.org/resource/VMF-911", "http://dbpedia.org/resource/VMFA(AW)-224", "http://dbpedia.org/resource/VMFA(AW)-332", "http://dbpedia.org/resource/VMFA-121", "http://dbpedia.org/resource/VMFA-122", "http://dbpedia.org/resource/VMFA-211", "http://dbpedia.org/resource/VMFA-214", "http://dbpedia.org/resource/VMFA-225", "http://dbpedia.org/resource/VMFA-232", "http://dbpedia.org/resource/VMFA-311", "http://dbpedia.org/resource/VMFA-312", "http://dbpedia.org/resource/VMFA-314", "http://dbpedia.org/resource/VMFA-323", "http://dbpedia.org/resource/VMFA-334", "http://dbpedia.org/resource/Fighter_Squadron_1_(United_States_Navy)", "http://dbpedia.org/resource/VFA-131", "http://dbpedia.org/resource/VMF-452", "http://dbpedia.org/resource/Marine_Aircraft_Group_42", "http://dbpedia.org/resource/VA-176_(U.S._Navy)", "http://dbpedia.org/resource/VMF-441", "http://dbpedia.org/resource/VMFA-134", "http://dbpedia.org/resource/VMF-215", "http://dbpedia.org/resource/HMLA-367", "http://dbpedia.org/resource/No._1_Squadron_IAF", "http://dbpedia.org/resource/VFA-151", "http://dbpedia.org/resource/VMF(AW)-114", "http://dbpedia.org/resource/VMF-218", "http://dbpedia.org/resource/VMFA-235", "http://dbpedia.org/resource/HMLA-775", "http://dbpedia.org/resource/VMA-131", "http://dbpedia.org/resource/VMFA-124", "http://dbpedia.org/resource/VFA-132", "http://dbpedia.org/resource/VFA-137", "http://dbpedia.org/resource/No._10_Squadron_IAF", "http://dbpedia.org/resource/No._14_Squadron_IAF", "http://dbpedia.org/resource/No._15_Squadron_IAF", "http://dbpedia.org/resource/No._16_Squadron_IAF", "http://dbpedia.org/resource/No._4_Squadron_IAF", "http://dbpedia.org/resource/VFA-2", "http://dbpedia.org/resource/VMF-222", "http://dbpedia.org/resource/VMFA-531", "http://dbpedia.org/resource/VMFA(AW)-533", "http://dbpedia.org/resource/VMFA-115", "http://dbpedia.org/resource/VMF-512", "http://dbpedia.org/resource/VFA-115", "http://dbpedia.org/resource/VFA-81", "http://dbpedia.org/resource/VMA-217", "http://dbpedia.org/resource/Sturzkampfgeschwader_1", "http://dbpedia.org/resource/Sturzkampfgeschwader_2", "http://dbpedia.org/resource/Sturzkampfgeschwader_3", "http://dbpedia.org/resource/VMFA-251", "http://dbpedia.org/resource/HMLA-167", "http://dbpedia.org/resource/HMLA-269", "http://dbpedia.org/resource/HMLA-369", "http://dbpedia.org/resource/HMLA-773", "http://dbpedia.org/resource/VMA-144", "http://dbpedia.org/resource/VT-8", "http://dbpedia.org/resource/VMF(N)-544", "http://dbpedia.org/resource/VMF-236", "http://dbpedia.org/resource/VMFA-333", "http://dbpedia.org/resource/VFA-192", "http://dbpedia.org/resource/VMF-413", "http://dbpedia.org/resource/VFA-34", "http://dbpedia.org/resource/VA-42_(U.S._Navy)", "http://dbpedia.org/resource/VMFA-321", "http://dbpedia.org/resource/VFA-113", "http://dbpedia.org/resource/VMFAT-501", "http://dbpedia.org/resource/VMFA-351", "http://dbpedia.org/resource/VFA-22", "http://dbpedia.org/resource/VFA-94", "http://dbpedia.org/resource/VMFT-401", "http://dbpedia.org/resource/Kampfgeschwader_1", "http://dbpedia.org/resource/Kampfgeschwader_100", "http://dbpedia.org/resource/Kampfgeschwader_26", "http://dbpedia.org/resource/Kampfgeschwader_27", "http://dbpedia.org/resource/Kampfgeschwader_3", "http://dbpedia.org/resource/Kampfgeschwader_51", "http://dbpedia.org/resource/Kampfgeschwader_54", "http://dbpedia.org/resource/Kampfgeschwader_55", "http://dbpedia.org/resource/Kampfgeschwader_76", "http://dbpedia.org/resource/Kampfgeschwader_77", "http://dbpedia.org/resource/Marine_Aircraft_Group_46", "http://dbpedia.org/resource/VFA-83", "http://dbpedia.org/resource/VFA-97", "http://dbpedia.org/resource/VFA-14_(U.S._Navy)", "http://dbpedia.org/resource/VMA-543", "http://dbpedia.org/resource/VFA-143", "http://dbpedia.org/resource/VFA-27", "http://dbpedia.org/resource/VMF-113", "http://dbpedia.org/resource/VFA-195_(U.S._Navy)", "http://dbpedia.org/resource/VMFA-142", "http://dbpedia.org/resource/VMF-511", "http://dbpedia.org/resource/VMFA-242", "http://dbpedia.org/resource/VMF-313", "http://dbpedia.org/resource/VMF-216", "http://dbpedia.org/resource/VMA-141", "http://dbpedia.org/resource/VMA-124", "http://dbpedia.org/resource/VMA-331", "http://dbpedia.org/resource/VC-10_Challengers", "http://dbpedia.org/resource/VMA-233"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Insects_vs_Robots> <http://dbpedia.org/property/currentMembers> ?uri } "}, "answers": ["http://dbpedia.org/resource/Micah_Nelson", "Jeff Smith", "Nikita Sorokin", "Milo Gonzalez", "Tony Peluso"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Tr\u1ea7n_Vi\u1ec7t_H\u01b0\u01a1ng> <http://dbpedia.org/property/nationalteam> ?uri } "}, "answers": ["http://dbpedia.org/resource/Vietnam_women's_national_volleyball_team"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Joshua_A._Siegel> <http://dbpedia.org/property/education> ?uri } "}, "answers": ["http://dbpedia.org/resource/University_at_Buffalo", "http://dbpedia.org/resource/Northwestern_University", "http://dbpedia.org/resource/Chicago"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/notableWork> <http://dbpedia.org/resource/Novelas_ejemplares> . ?uri <http://dbpedia.org/property/author> ?x . }"}, "answers": ["6"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Stanford_Cardinal> <http://dbpedia.org/ontology/institution> ?uri . <http://dbpedia.org/resource/Gerald_Reaven> <http://dbpedia.org/property/university> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Deion_Sanders> <http://dbpedia.org/property/debutteam> ?uri } "}, "answers": ["New York Yankees"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Fountain_Lake_Farm> <http://dbpedia.org/ontology/nearestCity> ?uri } "}, "answers": ["http://dbpedia.org/resource/United_States", "http://dbpedia.org/resource/Montello,_Wisconsin", "http://dbpedia.org/resource/Wisconsin"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/training> <http://dbpedia.org/resource/San_Francisco_Art_Institute> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Artist>}"}, "answers": ["http://dbpedia.org/resource/Dame_Darcy", "http://dbpedia.org/resource/Debra_Drexler", "http://dbpedia.org/resource/Vena_Kava", "http://dbpedia.org/resource/James_Zar", "http://dbpedia.org/resource/Arthur_Frank_Mathews", "http://dbpedia.org/resource/Beth_Van_Hoesen", "http://dbpedia.org/resource/T._C._Cannon", "http://dbpedia.org/resource/Saber_(artist)", "http://dbpedia.org/resource/Emily_Carr", "http://dbpedia.org/resource/Lynn_Marie_Kirby", "http://dbpedia.org/resource/Jason_Rhoades", "http://dbpedia.org/resource/Ralph_Stackpole", "http://dbpedia.org/resource/Tricia_Ward", "http://dbpedia.org/resource/Vernon_Pratt", "http://dbpedia.org/resource/Sarah_Cain", "http://dbpedia.org/resource/Louise_Janin", "http://dbpedia.org/resource/Tullio_DeSantis", "http://dbpedia.org/resource/Neil_Williams_(artist)", "http://dbpedia.org/resource/Gregory_Gillespie", "http://dbpedia.org/resource/Gutzon_Borglum", "http://dbpedia.org/resource/Helen_Hyde", "http://dbpedia.org/resource/Rita_Keegan", "http://dbpedia.org/resource/Robert_Graham_(sculptor)", "http://dbpedia.org/resource/Jess_Collins", "http://dbpedia.org/resource/Jim_Franklin_(artist)", "http://dbpedia.org/resource/Lin_Evola", "http://dbpedia.org/resource/Peter_Kov\u00e1l", "http://dbpedia.org/resource/Peter_Reginato", "http://dbpedia.org/resource/Thom_Merrick", "http://dbpedia.org/resource/Karl_Kasten", "http://dbpedia.org/resource/Michael_Heizer", "http://dbpedia.org/resource/Paul_McCarthy", "http://dbpedia.org/resource/Ronald_Davis", "http://dbpedia.org/resource/Ronnie_Landfield", "http://dbpedia.org/resource/Roy_De_Forest", "http://dbpedia.org/resource/Daniela_Franco", "http://dbpedia.org/resource/Deborah_Remington", "http://dbpedia.org/resource/Mark_Bulwinkle"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/currency> <http://dbpedia.org/resource/Aureus_University_School_of_Medicine> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Country>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/A._Peter_Dewey> <http://dbpedia.org/ontology/award> ?x . ?x <http://dbpedia.org/property/awards> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Muhammad_Yunus> <http://dbpedia.org/ontology/award> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Motown> . ?x <http://dbpedia.org/ontology/associatedMusicalArtist> ?uri . }"}, "answers": ["http://dbpedia.org/resource/The_Temptations", "http://dbpedia.org/resource/Erick_Sermon", "http://dbpedia.org/resource/Digital_Underground", "http://dbpedia.org/resource/K-Ci_&_JoJo", "http://dbpedia.org/resource/Blackstreet", "http://dbpedia.org/resource/Mike_City", "http://dbpedia.org/resource/Dennis_Edwards", "http://dbpedia.org/resource/Jimmy_Ruffin", "http://dbpedia.org/resource/Eddie_Kendricks", "http://dbpedia.org/resource/Teena_Marie", "http://dbpedia.org/resource/The_Mooseheart_Faith_Stellar_Groove_Band", "http://dbpedia.org/resource/Hamilton_Bohannon", "http://dbpedia.org/resource/The_Marvelettes", "http://dbpedia.org/resource/Boyz_II_Men", "http://dbpedia.org/resource/Nathan_Morris", "http://dbpedia.org/resource/Shawn_Stockman", "http://dbpedia.org/resource/Michael_McCary", "http://dbpedia.org/resource/Maxayn", "http://dbpedia.org/resource/Ray_Charles", "http://dbpedia.org/resource/The_Emotions", "http://dbpedia.org/resource/Buddy_Miles", "http://dbpedia.org/resource/Stevie_Wonder", "http://dbpedia.org/resource/Mandr\u00e9", "http://dbpedia.org/resource/Minnie_Riperton", "http://dbpedia.org/resource/Four_Tops", "http://dbpedia.org/resource/Marvin_Gaye", "http://dbpedia.org/resource/Mary_Wells", "http://dbpedia.org/resource/Martha_and_the_Vandellas", "http://dbpedia.org/resource/The_Supremes", "http://dbpedia.org/resource/The_Drifters", "http://dbpedia.org/resource/Mario_Winans", "http://dbpedia.org/resource/David_Mays", "http://dbpedia.org/resource/OJ_da_Juiceman", "http://dbpedia.org/resource/Ja_Rule", "http://dbpedia.org/resource/Stevie_J", "http://dbpedia.org/resource/The_Almighty_RSO", "http://dbpedia.org/resource/Made_Men", "http://dbpedia.org/resource/Jackie_Wilson", "http://dbpedia.org/resource/The_Jackson_5", "http://dbpedia.org/resource/The_Miracles", "http://dbpedia.org/resource/Smokey_Robinson", "http://dbpedia.org/resource/The_Corporation_(record_production_team)", "http://dbpedia.org/resource/The_Velvelettes", "http://dbpedia.org/resource/The_Wonder_Who%3F", "http://dbpedia.org/resource/The_Four_Seasons_(band)", "http://dbpedia.org/resource/The_Four_Lovers", "http://dbpedia.org/resource/Caroline_Crawford", "http://dbpedia.org/resource/The_Spinners_(American_R&B_group)", "http://dbpedia.org/resource/The_Moonglows", "http://dbpedia.org/resource/Sylvester_(singer)", "http://dbpedia.org/resource/Tammi_Terrell", "http://dbpedia.org/resource/Etta_James", "http://dbpedia.org/resource/Johnny_Bristol", "http://dbpedia.org/resource/New_Birth_(band)", "http://dbpedia.org/resource/Gemini_Major", "http://dbpedia.org/resource/Nasty_C", "http://dbpedia.org/resource/Aewon_Wolf", "http://dbpedia.org/resource/Lady_Zamar", "http://dbpedia.org/resource/DJ_Speedsta", "http://dbpedia.org/resource/Okmalumkoolkat", "http://dbpedia.org/resource/Shane_Eagle", "http://dbpedia.org/resource/Shekhinah", "http://dbpedia.org/resource/Dionne_Warwick", "http://dbpedia.org/resource/Saints_Unified_Voices", "http://dbpedia.org/resource/Aretha_Franklin", "http://dbpedia.org/resource/Gladys_Knight_&_the_Pips", "http://dbpedia.org/resource/Natalie_Cole", "http://dbpedia.org/resource/Patti_LaBelle", "http://dbpedia.org/resource/The_Fascinations", "http://dbpedia.org/resource/The_Fat_Boys", "http://dbpedia.org/resource/The_Funk_Brothers", "http://dbpedia.org/resource/Prince_(musician)", "http://dbpedia.org/resource/The_Revolution_(band)", "http://dbpedia.org/resource/Stevie_Ray_Vaughan", "http://dbpedia.org/resource/Sting_(musician)", "http://dbpedia.org/resource/Salt-N-Pepa", "http://dbpedia.org/resource/Mazarati", "http://dbpedia.org/resource/Diana_Ross", "http://dbpedia.org/resource/Commodores", "http://dbpedia.org/resource/Atlantic_Starr", "http://dbpedia.org/resource/Lionel_Richie", "http://dbpedia.org/resource/Noisettes", "http://dbpedia.org/resource/Stereophonics", "http://dbpedia.org/resource/Ernie_Terrell", "http://dbpedia.org/resource/Former_Ladies_of_the_Supremes", "http://dbpedia.org/resource/Eric_Roberson", "http://dbpedia.org/resource/Jacob_Latimore", "http://dbpedia.org/resource/Maxwell_(musician)", "http://dbpedia.org/resource/BJ_the_Chicago_Kid", "http://dbpedia.org/resource/Trevor_Jackson_(performer)", "http://dbpedia.org/resource/Trey_Songz", "http://dbpedia.org/resource/Anthony_Hamilton_(musician)", "http://dbpedia.org/resource/Ne-Yo", "http://dbpedia.org/resource/Raheem_DeVaughn", "http://dbpedia.org/resource/Lucky_Daye", "http://dbpedia.org/resource/Valee", "http://dbpedia.org/resource/Comethazine", "http://dbpedia.org/resource/Chief_Keef", "http://dbpedia.org/resource/Lil_Skies", "http://dbpedia.org/resource/Lil_Tracy", "http://dbpedia.org/resource/Working_on_Dying", "http://dbpedia.org/resource/XXXTentacion", "http://dbpedia.org/resource/Yung_Bans", "http://dbpedia.org/resource/Sweathog", "http://dbpedia.org/resource/Apollo_(band)", "http://dbpedia.org/resource/Rayber_Voices", "http://dbpedia.org/resource/Rockwell_(musician)", "http://dbpedia.org/resource/Sherrick", "http://dbpedia.org/resource/Isley-Jasper-Isley", "http://dbpedia.org/resource/Jimi_Hendrix", "http://dbpedia.org/resource/R._Kelly", "http://dbpedia.org/resource/Earth,_Wind_&_Fire", "http://dbpedia.org/resource/Whitney_Houston", "http://dbpedia.org/resource/Selena", "http://dbpedia.org/resource/Christina_Aguilera", "http://dbpedia.org/resource/Jody_Watley", "http://dbpedia.org/resource/Pat_Benatar", "http://dbpedia.org/resource/The_%225%22_Royales", "http://dbpedia.org/resource/Tavares_(group)", "http://dbpedia.org/resource/Boz_Scaggs", "http://dbpedia.org/resource/Johnny_Mathis", "http://dbpedia.org/resource/Jermaine_Jackson", "http://dbpedia.org/resource/Tom_Jones_(singer)", "http://dbpedia.org/resource/Edwin_Starr", "http://dbpedia.org/resource/Junior_Walker", "http://dbpedia.org/resource/Cab_Calloway", "http://dbpedia.org/resource/Stuff_Smith", "http://dbpedia.org/resource/Honey_Cone", "http://dbpedia.org/resource/Freda_Payne", "http://dbpedia.org/resource/Jean_Terrell", "http://dbpedia.org/resource/Susaye_Greene", "http://dbpedia.org/resource/Eddie_Holland", "http://dbpedia.org/resource/Lynda_Laurence", "http://dbpedia.org/resource/Elton_John", "http://dbpedia.org/resource/Kylie_Minogue", "http://dbpedia.org/resource/Freddie_Gibbs", "http://dbpedia.org/resource/GLC_(rapper)", "http://dbpedia.org/resource/Dubb_Union", "http://dbpedia.org/resource/Rapsody", "http://dbpedia.org/resource/Fly_Union", "http://dbpedia.org/resource/Black_Hippy", "http://dbpedia.org/resource/Mary_Wilson_(singer)", "http://dbpedia.org/resource/Florence_Ballard", "http://dbpedia.org/resource/The_Undisputed_Truth", "http://dbpedia.org/resource/The_Beatnuts", "http://dbpedia.org/resource/AZ_(rapper)", "http://dbpedia.org/resource/Doug_E._Fresh", "http://dbpedia.org/resource/Big_L", "http://dbpedia.org/resource/Big_Pun", "http://dbpedia.org/resource/Wanya_Morris", "http://dbpedia.org/resource/Marc_Nelson", "http://dbpedia.org/resource/Eminem", "http://dbpedia.org/resource/DJ_Kay_Slay", "http://dbpedia.org/resource/Proof_(rapper)", "http://dbpedia.org/resource/Canibus", "http://dbpedia.org/resource/100_Proof_(Aged_in_Soul)", "http://dbpedia.org/resource/The_Contours", "http://dbpedia.org/resource/The_Originals_(band)", "http://dbpedia.org/resource/The_Falcons", "http://dbpedia.org/resource/Chuck_Harmony", "http://dbpedia.org/resource/The_Del-Vikings", "http://dbpedia.org/resource/Deniece_Williams", "http://dbpedia.org/resource/Michael_Jackson", "http://dbpedia.org/resource/702_(group)", "http://dbpedia.org/resource/Allusion", "http://dbpedia.org/resource/Missy_Elliott", "http://dbpedia.org/resource/Subway_(group)", "http://dbpedia.org/resource/Timbaland", "http://dbpedia.org/resource/Silkk_the_Shocker", "http://dbpedia.org/resource/Mia_X", "http://dbpedia.org/resource/Michael_Bivins", "http://dbpedia.org/resource/Joe_Billingslea", "http://dbpedia.org/resource/Holland\u2013Dozier\u2013Holland", "http://dbpedia.org/resource/Switch_(band)", "http://dbpedia.org/resource/The_Rock_and_Roll_Trio", "http://dbpedia.org/resource/Juicy_J", "http://dbpedia.org/resource/Project_Pat", "http://dbpedia.org/resource/24-Carat_Black", "http://dbpedia.org/resource/Isaac_Hayes", "http://dbpedia.org/resource/Soul_II_Soul", "http://dbpedia.org/resource/Rick_James", "http://dbpedia.org/resource/Brownmark", "http://dbpedia.org/resource/The_Time_(band)", "http://dbpedia.org/resource/Jill_Jones", "http://dbpedia.org/resource/Klymaxx", "http://dbpedia.org/resource/The_Wild_Pair_(duo)", "http://dbpedia.org/resource/Hubert_Johnson_(musician)", "http://dbpedia.org/resource/Tower_of_Power", "http://dbpedia.org/resource/Victorious", "http://dbpedia.org/resource/The_Rascals_(producers)", "http://dbpedia.org/resource/Tyler,_the_Creator", "http://dbpedia.org/resource/Quincy_Jones", "http://dbpedia.org/resource/James_Ingram", "http://dbpedia.org/resource/Sheena_Easton", "http://dbpedia.org/resource/Stormzy", "http://dbpedia.org/resource/EarthGang", "http://dbpedia.org/resource/Uriah_Heep_(band)", "http://dbpedia.org/resource/Norman_Whitfield", "http://dbpedia.org/resource/David_Ruffin", "http://dbpedia.org/resource/Paul_Williams_(The_Temptations_singer)", "http://dbpedia.org/resource/Utah_Saints", "http://dbpedia.org/resource/Stock_Aitken_Waterman", "http://dbpedia.org/resource/Jools_Holland", "http://dbpedia.org/resource/Billie_Holiday", "http://dbpedia.org/resource/Foreigner_(band)", "http://dbpedia.org/resource/Elle_Varner", "http://dbpedia.org/resource/Wyclef_Jean", "http://dbpedia.org/resource/Eric_Clapton", "http://dbpedia.org/resource/Stoney_&_Meatloaf_(band)", "http://dbpedia.org/resource/Bob_Seger", "http://dbpedia.org/resource/Little_Feat", "http://dbpedia.org/resource/Black_Men_United", "http://dbpedia.org/resource/Syreeta_Wright", "http://dbpedia.org/resource/Billy_Preston", "http://dbpedia.org/resource/Andra\u00e9_Crouch", "http://dbpedia.org/resource/Ashford_&_Simpson", "http://dbpedia.org/resource/Blaque", "http://dbpedia.org/resource/Kenny_Loggins", "http://dbpedia.org/resource/The_Doobie_Brothers", "http://dbpedia.org/resource/Toto_(band)", "http://dbpedia.org/resource/Toad_the_Wet_Sprocket", "http://dbpedia.org/resource/Steely_Dan", "http://dbpedia.org/resource/The_Blackberries", "http://dbpedia.org/resource/The_Ikettes", "http://dbpedia.org/resource/Marvin_Winans", "http://dbpedia.org/resource/Common_(rapper)", "http://dbpedia.org/resource/Nikki_(singer)", "http://dbpedia.org/resource/Jerry_Butler", "http://dbpedia.org/resource/Dejah_Gomez", "http://dbpedia.org/resource/Entourage_(band)", "http://dbpedia.org/resource/Sly_and_the_Family_Stone", "http://dbpedia.org/resource/Chico_DeBarge", "http://dbpedia.org/resource/Usher_(musician)", "http://dbpedia.org/resource/Waka_Flocka_Flame", "http://dbpedia.org/resource/Deitrick_Haddon", "http://dbpedia.org/resource/Future_(rapper)", "http://dbpedia.org/resource/Boosie_Badazz", "http://dbpedia.org/resource/21_Savage", "http://dbpedia.org/resource/B.o.B", "http://dbpedia.org/resource/Gucci_Mane", "http://dbpedia.org/resource/Lecrae", "http://dbpedia.org/resource/Migos", "http://dbpedia.org/resource/Young_Scooter", "http://dbpedia.org/resource/De_La_Soul", "http://dbpedia.org/resource/Busta_Rhymes", "http://dbpedia.org/resource/Queen_Latifah", "http://dbpedia.org/resource/The_Andantes"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kwai_Chang_Caine> <http://dbpedia.org/ontology/religion> ?uri } "}, "answers": ["http://dbpedia.org/resource/Taoism", "http://dbpedia.org/resource/Chan_Buddhism"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/leaderName> <http://dbpedia.org/resource/Pullaiahgaripalli> . ?x <http://dbpedia.org/ontology/house> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/architecturalStyle> <http://dbpedia.org/resource/Sanggar_Agung> . ?x <http://dbpedia.org/ontology/religion> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/writtenIn> <http://dbpedia.org/resource/C++> . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/PLUS_Expressways> <http://dbpedia.org/property/hubs> ?uri } "}, "answers": ["http://dbpedia.org/resource/Selangor", "http://dbpedia.org/resource/Subang,_Indonesia", "http://dbpedia.org/resource/Sultan_Abdul_Aziz_Shah_Airport", "http://dbpedia.org/resource/Malaysia"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/architect> <http://dbpedia.org/resource/Louis_D._Astorino> . ?x <http://dbpedia.org/property/designer> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kaszanka> <http://dbpedia.org/ontology/ingredient> ?uri } "}, "answers": ["http://dbpedia.org/resource/Marjoram", "http://dbpedia.org/resource/Pork", "http://dbpedia.org/resource/Kasha", "http://dbpedia.org/resource/Blood", "http://dbpedia.org/resource/Onion", "http://dbpedia.org/resource/Black_pepper", "http://dbpedia.org/resource/Offal"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/screenplay> <http://dbpedia.org/resource/Akiva_Goldsman> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": ["http://dbpedia.org/resource/The_Da_Vinci_Code_(film)", "http://dbpedia.org/resource/A_Time_to_Kill_(1996_film)"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/commander> <http://dbpedia.org/resource/Battle_of_Fort_Stephenson> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MilitaryConflict>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/successor> <http://dbpedia.org/resource/Blade_Runner_2:_The_Edge_of_Human> . ?x <http://dbpedia.org/property/series> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Ultimate_Fighter:_Team_Rousey_vs._Team_Tate> <http://dbpedia.org/property/city> ?uri } "}, "answers": ["http://dbpedia.org/resource/Las_Vegas_Valley", "http://dbpedia.org/resource/Nevada"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/purpose> <http://dbpedia.org/resource/Environmentalism> . ?uri <http://dbpedia.org/ontology/organisation> <http://dbpedia.org/resource/Peace> . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/name> <http://dbpedia.org/resource/Matt_Williams_(New_Zealand_footballer)> . ?x <http://dbpedia.org/property/name> ?uri }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/awards> <http://dbpedia.org/resource/Timeform> . ?x <http://dbpedia.org/ontology/owner> ?uri . }"}, "answers": ["38"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/hospital> <http://dbpedia.org/resource/Toronto_Western_Hospital> . ?x <http://dbpedia.org/ontology/knownFor> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Sidney_Catlin_Partridge> <http://dbpedia.org/property/education> ?uri . <http://dbpedia.org/resource/Lisa_Brummel> <http://dbpedia.org/ontology/almaMater> ?uri} "}, "answers": ["http://dbpedia.org/resource/Yale_University"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/publisher> <http://dbpedia.org/resource/Doubleday_(publisher)> . ?x <http://dbpedia.org/ontology/subject> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Trade_association> <http://dbpedia.org/property/regionServed> ?uri } "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Tonight's_the_Night_(2003_musical)> <http://dbpedia.org/property/music> ?uri } "}, "answers": ["http://dbpedia.org/resource/Rod_Stewart"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/breeder> <http://dbpedia.org/resource/Bert_S._Michell> . ?x <http://dbpedia.org/property/awards> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Y._S._Rajasekhara_Reddy> <http://dbpedia.org/property/leaderName> ?x . ?x <http://dbpedia.org/ontology/party> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Frampton's_Camel> <http://dbpedia.org/ontology/producer> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/knownFor> <http://dbpedia.org/resource/Rational_analysis> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}"}, "answers": ["http://dbpedia.org/resource/John_Robert_Anderson_(psychologist)"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Clan_McDuck> <http://dbpedia.org/property/relatives> ?uri . <http://dbpedia.org/resource/Huey,_Dewey> <http://dbpedia.org/ontology/relative> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/capital> <http://dbpedia.org/resource/Podgorica> . ?x <http://dbpedia.org/property/currency> ?uri . }"}, "answers": ["Euro a"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/William_Anthony_(artist)> <http://dbpedia.org/ontology/training> ?uri } "}, "answers": ["http://dbpedia.org/resource/San_Francisco_Art_Institute", "http://dbpedia.org/resource/Art_Students_League_of_New_York", "http://dbpedia.org/resource/Yale_University"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/languageFamily> <http://dbpedia.org/resource/Anglo-Frisian_languages> . ?x <http://dbpedia.org/property/ethnicGroup> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/creators> <http://dbpedia.org/resource/Paul_Dini> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/ComicsCharacter>}"}, "answers": ["http://dbpedia.org/resource/Andrea_Beaumont", "http://dbpedia.org/resource/Harley_Quinn", "http://dbpedia.org/resource/Mercy_Graves", "http://dbpedia.org/resource/Baby-Doll_(character)", "http://dbpedia.org/resource/Renee_Montoya", "http://dbpedia.org/resource/Roxy_Rocket", "http://dbpedia.org/resource/Calendar_Girl_(DC_Comics)", "http://dbpedia.org/resource/Nora_Fries", "http://dbpedia.org/resource/Batman_(Terry_McGinnis)", "http://dbpedia.org/resource/Bud_and_Lou", "http://dbpedia.org/resource/Forerunner_(DC_Comics)", "http://dbpedia.org/resource/Mr._Freeze", "http://dbpedia.org/resource/Ventriloquist_(character)"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ted_Williams_Tunnel> <http://dbpedia.org/property/owning> ?uri . <http://dbpedia.org/resource/Leonard_Memorial_Ridge> <http://dbpedia.org/ontology/owner> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/recordLabel> <http://dbpedia.org/resource/EMi> . ?x <http://dbpedia.org/ontology/associatedMusicalArtist> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/subsidiary> <http://dbpedia.org/resource/Big_Ticket_Entertainment> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Barjas> <http://dbpedia.org/ontology/locationCity> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/leaderName> <http://dbpedia.org/resource/Justin_Trudeau> . ?x <http://dbpedia.org/ontology/restingPlace> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Hackweiser> <http://dbpedia.org/property/leaderName> ?uri } "}, "answers": ["http://dbpedia.org/resource/North_America", "p4ntera , B33rc4n"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Hank_Brown> <http://dbpedia.org/property/successor> ?x . ?x <http://dbpedia.org/ontology/birthPlace> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Fort_Collins,_Colorado", "http://dbpedia.org/resource/United_States", "http://dbpedia.org/resource/Chicago", "http://dbpedia.org/resource/Illinois", "http://dbpedia.org/resource/Kansas_City,_Missouri"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Katyayana_(Buddhist)> <http://dbpedia.org/property/affiliations> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/incumbent> <http://dbpedia.org/resource/Mumbai_North_(Lok_Sabha_constituency)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Party>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bend,_Oregon> <http://dbpedia.org/ontology/custodian> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/publisher> <http://dbpedia.org/resource/Cinema_International_Corporation> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/discipline> <http://dbpedia.org/resource/Neuroimaging> . ?x <http://dbpedia.org/ontology/academicDiscipline> ?uri }"}, "answers": ["9"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ferris_wheel> <http://dbpedia.org/ontology/ground> ?x . ?x <http://dbpedia.org/property/cities> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Gary_Chang> . ?x <http://dbpedia.org/ontology/producer> ?uri . }"}, "answers": ["http://dbpedia.org/resource/David_W._Rintels", "http://dbpedia.org/resource/Lansing_L._Smith", "http://dbpedia.org/resource/Tom_Berenger", "http://dbpedia.org/resource/Ned_Tanen", "http://dbpedia.org/resource/John_Hughes_(filmmaker)", "http://dbpedia.org/resource/John_Frankenheimer", "http://dbpedia.org/resource/Marty_Hornstein", "http://dbpedia.org/resource/Ralph_Winter_(producer)", "http://dbpedia.org/resource/Pierre_David_(film_producer)", "http://dbpedia.org/resource/Edward_R._Pressman", "http://dbpedia.org/resource/Frank_Price", "http://dbpedia.org/resource/George_Jackson_(filmmaker)", "http://dbpedia.org/resource/Doug_McHenry", "http://dbpedia.org/resource/Melanie_Mayron", "http://dbpedia.org/resource/Catlin_Adams", "http://dbpedia.org/resource/Frederick_Muller", "http://dbpedia.org/resource/Menahem_Golan", "http://dbpedia.org/resource/Yoram_Globus", "http://dbpedia.org/resource/Gary_Goetzman", "http://dbpedia.org/resource/Jonathan_Demme"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/David_Animle_Hansen> <http://dbpedia.org/property/allegiance> ?uri } "}, "answers": ["http://dbpedia.org/resource/Ghana"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_God_Who_Wasn't_There> <http://dbpedia.org/property/starring> ?uri } "}, "answers": ["http://dbpedia.org/resource/Alan_Dundes", "http://dbpedia.org/resource/Richard_Carrier", "http://dbpedia.org/resource/Robert_M._Price", "http://dbpedia.org/resource/David_P._Mikkelson", "http://dbpedia.org/resource/Sam_Harris_(author)", "http://dbpedia.org/resource/Barbara_Mikkelson", "Brian Flemming", "Scott Butcher", "Ronald Sipus"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Bellaire,_Ohio> . ?uri <http://dbpedia.org/property/team> ?x . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Putri_Raemawasti> <http://dbpedia.org/ontology/birthName> ?uri } "}, "answers": ["Gracia Putri Raemawasti Mulyono"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/associatedMusicalArtist> <http://dbpedia.org/resource/Ren_Bonian> . ?uri <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Ang\u00e9cia> . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Language_Integrated_Query> <http://dbpedia.org/property/designer> ?uri } "}, "answers": ["http://dbpedia.org/resource/Microsoft_Corporation"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dan_Otero> <http://dbpedia.org/ontology/debutTeam> ?uri } "}, "answers": ["http://dbpedia.org/resource/San_Francisco_Giants"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Not_on_Our_Watch_(organization)> <http://dbpedia.org/ontology/foundedBy> ?uri } "}, "answers": ["http://dbpedia.org/resource/David_Pressman", "http://dbpedia.org/resource/George_Clooney", "http://dbpedia.org/resource/Brad_Pitt", "http://dbpedia.org/resource/Matt_Damon", "http://dbpedia.org/resource/Don_Cheadle", "http://dbpedia.org/resource/Jerry_Weintraub"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/owningCompany> <http://dbpedia.org/resource/Sony_Bank> } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/screenplay> <http://dbpedia.org/resource/Eric_Roth> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": ["http://dbpedia.org/resource/Airport_(film_series)", "http://dbpedia.org/resource/Forrest_Gump", "http://dbpedia.org/resource/Jane's_House", "http://dbpedia.org/resource/The_Concorde_..._Airport_'79", "http://dbpedia.org/resource/The_Curious_Case_of_Benjamin_Button_(film)", "http://dbpedia.org/resource/Laal_Singh_Chaddha", "http://dbpedia.org/resource/Extremely_Loud_&_Incredibly_Close_(film)", "http://dbpedia.org/resource/Lucky_You_(film)"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/recordedIn> <http://dbpedia.org/resource/Miami> . ?x <http://dbpedia.org/property/writer> ?uri . }"}, "answers": ["183"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/architecturalStyle> <http://dbpedia.org/resource/Sanggar_Agung> . ?x <http://dbpedia.org/ontology/religion> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/party> <http://dbpedia.org/resource/European_Go_Federation> . ?x <http://dbpedia.org/ontology/membership> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/occupation> <http://dbpedia.org/resource/Daniel_L._D._Granger> . ?uri <http://dbpedia.org/property/birthPlace> <http://dbpedia.org/resource/United_States> . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/producer> <http://dbpedia.org/resource/Marika_Nezer> . ?x <http://dbpedia.org/property/languages> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/label> <http://dbpedia.org/resource/EMi> . ?uri <http://dbpedia.org/ontology/associatedBand> ?x . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/doctoralAdvisor> <http://dbpedia.org/resource/Mary_Ainsworth> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}"}, "answers": ["http://dbpedia.org/resource/Patricia_McKinsey_Crittenden"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Virendra_Kataria> <http://dbpedia.org/ontology/party> ?uri } "}, "answers": ["http://dbpedia.org/resource/Indian_National_Congress"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/awards> <http://dbpedia.org/resource/Copley_Medal> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}"}, "answers": ["http://dbpedia.org/resource/Albert_Kluyver", "http://dbpedia.org/resource/Wilhelm_Eduard_Weber", "http://dbpedia.org/resource/William_Watson_(scientist)", "http://dbpedia.org/resource/Marcellin_Berthelot", "http://dbpedia.org/resource/Jean-Baptiste_Boussingault", "http://dbpedia.org/resource/Abdus_Salam", "http://dbpedia.org/resource/Carl_Friedrich_Gauss", "http://dbpedia.org/resource/Sir_George_Stokes,_1st_Baronet", "http://dbpedia.org/resource/Sir_John_Pringle,_1st_Baronet", "http://dbpedia.org/resource/Henri_Milne-Edwards", "http://dbpedia.org/resource/Richard_Henderson_(biologist)", "http://dbpedia.org/resource/Roger_Penrose", "http://dbpedia.org/resource/Jeffrey_I._Gordon", "http://dbpedia.org/resource/Theodor_Schwann", "http://dbpedia.org/resource/Edward_Waring", "http://dbpedia.org/resource/Stephen_Hales", "http://dbpedia.org/resource/Paul_Dirac", "http://dbpedia.org/resource/Rudolf_Virchow"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Beverly_Hills,_California> . ?x <http://dbpedia.org/ontology/presenter> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Price_of_Beauty> <http://dbpedia.org/ontology/narrator> ?uri } "}, "answers": ["http://dbpedia.org/resource/Jessica_Simpson"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Produce_101> <http://dbpedia.org/ontology/album> ?x . ?x <http://dbpedia.org/property/producer> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/species> <http://dbpedia.org/resource/Canadian_vodka> . ?x <http://dbpedia.org/property/country> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/musicComposer> <http://dbpedia.org/resource/Hammond_organ> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/artist> <http://dbpedia.org/resource/Christopher_Franke> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": ["http://dbpedia.org/resource/Babylon_5"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/education> <http://dbpedia.org/resource/General_Educational_Development> . ?x <http://dbpedia.org/ontology/restingplace> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/architect> <http://dbpedia.org/resource/Oddamavadi> . ?x <http://dbpedia.org/property/designer> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Houston_Astros> . ?x <http://dbpedia.org/property/debutteam> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/British_Gazette> <http://dbpedia.org/ontology/editor> ?uri } "}, "answers": ["http://dbpedia.org/resource/Winston_Churchill"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/associatedActs> <http://dbpedia.org/resource/Divertis> . ?uri <http://dbpedia.org/ontology/associatedMusicalArtist> ?x . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Gerard_Marino> . ?uri <http://dbpedia.org/ontology/developer> ?x . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/developer> <http://dbpedia.org/resource/Soft_Machine> . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/seat> <http://dbpedia.org/resource/Berlin> . ?x <http://dbpedia.org/ontology/leader> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/youthclubs> <http://dbpedia.org/resource/La_Liga> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SoccerPlayer>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Michael_M._Sears> <http://dbpedia.org/property/employer> ?uri . <http://dbpedia.org/resource/Delta_III> <http://dbpedia.org/ontology/producer> ?uri} "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/architect> <http://dbpedia.org/resource/ASC_Creative_Services> . ?x <http://dbpedia.org/property/designer> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/author> <http://dbpedia.org/resource/The_Second_Coming_(TV_serial)> . ?x <http://dbpedia.org/property/notableWork> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Michael_Springer> <http://dbpedia.org/property/almaMater> ?uri . <http://dbpedia.org/resource/Donald_Brooks> <http://dbpedia.org/ontology/profession> ?uri} "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/writer> <http://dbpedia.org/resource/Eric_Jendresen> . ?uri <http://dbpedia.org/property/series> <http://dbpedia.org/resource/John_Orloff> . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Wolves_of_Mercy_Falls_characters> <http://dbpedia.org/property/nickname> ?uri } "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Neungin_High_School> <http://dbpedia.org/property/religiousAffiliation> ?uri } "}, "answers": ["http://dbpedia.org/resource/Buddhist"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_South_End> <http://dbpedia.org/property/owners> ?uri } "}, "answers": ["http://dbpedia.org/resource/Wayne_State_University"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/playedFor> <http://dbpedia.org/resource/Atlant_Moscow_Oblast> . ?x <http://dbpedia.org/ontology/formerTeam> ?uri . }"}, "answers": ["594"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pong_Pha> <http://dbpedia.org/ontology/timeZone> ?uri } "}, "answers": ["http://dbpedia.org/resource/Time_in_Thailand"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/kingdom> <http://dbpedia.org/resource/Bacilli> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Bacteria>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Reigh_Count> <http://dbpedia.org/ontology/honours> ?uri } "}, "answers": ["http://dbpedia.org/resource/Kentucky", "http://dbpedia.org/resource/Florence,_Kentucky", "http://dbpedia.org/resource/National_Museum_of_Racing_and_Hall_of_Fame"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/related> <http://dbpedia.org/resource/Doctor_Who_Confidential> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Triple_Door_(The_Courage_album)> <http://dbpedia.org/property/artist> ?x . ?x <http://dbpedia.org/ontology/locationCity> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ali_Habib_Mahmud> <http://dbpedia.org/property/battles> ?uri } "}, "answers": ["http://dbpedia.org/resource/Lebanese_Civil_War", "http://dbpedia.org/resource/Gulf_War", "http://dbpedia.org/resource/Yom_Kippur_War"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/birthPlace> <http://dbpedia.org/resource/United_States> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}"}, "answers": ["21"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/distributor> <http://dbpedia.org/resource/Cinema_International_Corporation> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": ["44"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/university> <http://dbpedia.org/resource/Cornell_University_Press> } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/veneratedIn> <http://dbpedia.org/resource/Ham> . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/computingPlatform> <http://dbpedia.org/resource/Microsoft_Windows> . ?uri <http://dbpedia.org/property/license> <http://dbpedia.org/resource/Software_as_a_service> . }"}, "answers": ["http://dbpedia.org/resource/1Password"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Full_Sized_Cars> <http://dbpedia.org/property/predecessor> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/computingPlatform> <http://dbpedia.org/resource/Unix> . ?uri <http://dbpedia.org/property/programmingLanguage> ?x . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Kenosha,_Wisconsin> . ?uri <http://dbpedia.org/property/director> ?x . }"}, "answers": ["http://dbpedia.org/resource/Village_of_the_Giants", "http://dbpedia.org/resource/War_of_the_Colossal_Beast", "http://dbpedia.org/resource/Attack_of_the_Puppet_People", "http://dbpedia.org/resource/Beginning_of_the_End_(film)", "http://dbpedia.org/resource/Empire_of_the_Ants_(film)", "http://dbpedia.org/resource/The_Amazing_Colossal_Man", "http://dbpedia.org/resource/The_Boy_and_the_Pirates", "http://dbpedia.org/resource/How_to_Succeed_with_Sex", "http://dbpedia.org/resource/The_Cyclops_(film)", "http://dbpedia.org/resource/The_Food_of_the_Gods_(film)", "http://dbpedia.org/resource/The_Magic_Sword_(1962_film)", "http://dbpedia.org/resource/Satan's_Princess", "http://dbpedia.org/resource/Tormented_(1960_film)", "http://dbpedia.org/resource/Necromancy_(film)", "http://dbpedia.org/resource/Picture_Mommy_Dead", "http://dbpedia.org/resource/Earth_vs._the_Spider", "http://dbpedia.org/resource/Burned_at_the_Stake", "http://dbpedia.org/resource/King_Dinosaur", "http://dbpedia.org/resource/The_Mad_Bomber_(film)", "http://dbpedia.org/resource/Sympathy_for_Delicious", "http://dbpedia.org/resource/Tangled_Ever_After", "http://dbpedia.org/resource/Super_Rhino", "http://dbpedia.org/resource/Julia_(American_TV_series)", "http://dbpedia.org/resource/Along_Came_Ruth", "http://dbpedia.org/resource/Day_Dreams_(1922_film)", "http://dbpedia.org/resource/Vamping_Venus", "http://dbpedia.org/resource/Fighting_to_Live", "http://dbpedia.org/resource/Meet_the_Chump", "http://dbpedia.org/resource/Behind_the_Eight_Ball_(film)", "http://dbpedia.org/resource/Forty_Naughty_Girls", "http://dbpedia.org/resource/Hard_Luck_(1921_film)", "http://dbpedia.org/resource/Hat_Check_Honey", "http://dbpedia.org/resource/Hawaii_Calls_(film)", "http://dbpedia.org/resource/What's_Cookin'%3F", "http://dbpedia.org/resource/When_a_Man's_a_Man", "http://dbpedia.org/resource/When_a_Man's_a_Man_(1924_film)", "http://dbpedia.org/resource/Ghost_Catchers", "http://dbpedia.org/resource/Give_Out,_Sisters", "http://dbpedia.org/resource/Go_Chase_Yourself", "http://dbpedia.org/resource/The_Balloonatic", "http://dbpedia.org/resource/The_Boat_(1921_film)", "http://dbpedia.org/resource/Breaking_the_Ice_(film)", "http://dbpedia.org/resource/Bringing_Up_Father_(1946_film)", "http://dbpedia.org/resource/Broadway_Fever", "http://dbpedia.org/resource/The_Cowboy_Millionaire_(1935_film)", "http://dbpedia.org/resource/The_Crash_(1928_film)", "http://dbpedia.org/resource/The_Dude_Ranger", "http://dbpedia.org/resource/The_Electric_House", "http://dbpedia.org/resource/The_Forward_Pass", "http://dbpedia.org/resource/The_Frozen_North", "http://dbpedia.org/resource/The_Girl_Habit", "http://dbpedia.org/resource/The_Girl_from_Everywhere", "http://dbpedia.org/resource/The_Head_Man", "http://dbpedia.org/resource/The_High_Sign", "http://dbpedia.org/resource/The_Love_Nest_(1923_film)", "http://dbpedia.org/resource/The_Meanest_Man_in_the_World_(1923_film)", "http://dbpedia.org/resource/The_Naughty_Flirt", "http://dbpedia.org/resource/The_Paleface_(1922_film)", "http://dbpedia.org/resource/The_Rag_Man", "http://dbpedia.org/resource/The_Scarecrow_(1920_film)", "http://dbpedia.org/resource/The_Villain_Still_Pursued_Her", "http://dbpedia.org/resource/The_Widow_from_Chicago", "http://dbpedia.org/resource/Convict_13", "http://dbpedia.org/resource/See_My_Lawyer", "http://dbpedia.org/resource/Moonlight_and_Cactus_(1944_film)", "http://dbpedia.org/resource/My_Little_Chickadee", "http://dbpedia.org/resource/My_Wife's_Relations", "http://dbpedia.org/resource/Sweet_Mama_(film)", "http://dbpedia.org/resource/Swingtime_Johnny", "http://dbpedia.org/resource/Captain_January_(1924_film)", "http://dbpedia.org/resource/Hook,_Line_and_Sinker_(1930_film)", "http://dbpedia.org/resource/Ladies'_Night_in_a_Turkish_Bath", "http://dbpedia.org/resource/Leathernecking", "http://dbpedia.org/resource/Slightly_Terrific", "http://dbpedia.org/resource/So_This_Is_Africa", "http://dbpedia.org/resource/Soft_Cushions", "http://dbpedia.org/resource/Cops_(film)", "http://dbpedia.org/resource/Cracked_Nuts_(1931_film)", "http://dbpedia.org/resource/Cracked_Nuts_(1941_film)", "http://dbpedia.org/resource/Crazy_House_(1943_film)", "http://dbpedia.org/resource/He's_My_Guy_(film)", "http://dbpedia.org/resource/Hello,_Sucker", "http://dbpedia.org/resource/Hellzapoppin'_(film)", "http://dbpedia.org/resource/High_Flyers_(film)", "http://dbpedia.org/resource/His_Lucky_Day", "http://dbpedia.org/resource/F-Man", "http://dbpedia.org/resource/Flirty_Four-Flushers", "http://dbpedia.org/resource/Let_It_Rain_(film)", "http://dbpedia.org/resource/Neighbors_(1920_film)", "http://dbpedia.org/resource/Never_Give_a_Sucker_an_Even_Break", "http://dbpedia.org/resource/Night_Club_Girl", "http://dbpedia.org/resource/Peck's_Bad_Boy_(1934_film)", "http://dbpedia.org/resource/Penthouse_Rhythm", "http://dbpedia.org/resource/Private_Buckaroo", "http://dbpedia.org/resource/Private_Snuffy_Smith", "http://dbpedia.org/resource/Peck's_Bad_Boy_with_the_Circus", "http://dbpedia.org/resource/Old_Clothes", "http://dbpedia.org/resource/On_Again-Off_Again", "http://dbpedia.org/resource/One_Week_(1920_film)", "http://dbpedia.org/resource/In_the_Next_Room", "http://dbpedia.org/resource/Little_Robinson_Crusoe", "http://dbpedia.org/resource/Million_Dollar_Legs_(1932_film)", "http://dbpedia.org/resource/Parole_Girl", "http://dbpedia.org/resource/Jiggs_and_Maggie_in_Society", "http://dbpedia.org/resource/You_Can't_Cheat_an_Honest_Man", "http://dbpedia.org/resource/Filming_Othello", "http://dbpedia.org/resource/Filming_The_Trial", "http://dbpedia.org/resource/Moby_Dick_(unfinished_film)", "http://dbpedia.org/resource/Around_the_World_with_Orson_Welles", "http://dbpedia.org/resource/The_Deep_(unfinished_film)", "http://dbpedia.org/resource/Vienna_(film)", "http://dbpedia.org/resource/The_Miracle_of_St._Anne", "http://dbpedia.org/resource/The_Fountain_of_Youth_(film)", "http://dbpedia.org/resource/The_Lady_from_Shanghai", "http://dbpedia.org/resource/The_Magnificent_Ambersons_(film)", "http://dbpedia.org/resource/The_Merchant_of_Venice_(1969_film)", "http://dbpedia.org/resource/The_Other_Side_of_the_Wind", "http://dbpedia.org/resource/The_Stranger_(1946_film)", "http://dbpedia.org/resource/The_Trial_(1962_film)", "http://dbpedia.org/resource/The_Heroine", "http://dbpedia.org/resource/Citizen_Kane", "http://dbpedia.org/resource/Citizen_Kane_trailer", "http://dbpedia.org/resource/The_Immortal_Story", "http://dbpedia.org/resource/Mr._Arkadin", "http://dbpedia.org/resource/Too_Much_Johnson_(1938_film)", "http://dbpedia.org/resource/Touch_of_Evil", "http://dbpedia.org/resource/Chimes_at_Midnight", "http://dbpedia.org/resource/Twelfth_Night_(1933_film)", "http://dbpedia.org/resource/Don_Quixote_(unfinished_film)", "http://dbpedia.org/resource/One_Man_Band_(unfinished_film)", "http://dbpedia.org/resource/Macbeth_(1948_film)", "http://dbpedia.org/resource/Three_Cases_of_Murder", "http://dbpedia.org/resource/Orson_Welles'_Magic_Show", "http://dbpedia.org/resource/Othello_(1951_film)", "http://dbpedia.org/resource/Black_Magic_(1949_film)", "http://dbpedia.org/resource/In_the_Land_of_Don_Quixote", "http://dbpedia.org/resource/Orson_Welles_and_People"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/relative> <http://dbpedia.org/resource/Duck_family> . ?uri <http://dbpedia.org/property/relatives> <http://dbpedia.org/resource/Clan_McDuck> . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jerome_B._Chaffee> <http://dbpedia.org/property/state> ?uri } "}, "answers": ["http://dbpedia.org/resource/Colorado", "Colorado", "Colorado Territory"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lucky_You_(film)> <http://dbpedia.org/property/screenplay> ?x . ?x <http://dbpedia.org/ontology/award> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Academy_Awards", "http://dbpedia.org/resource/Laurel_Award_for_Screenwriting_Achievement"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/1994_Spanish_Grand_Prix> <http://dbpedia.org/property/poleDriver> ?uri } "}, "answers": ["http://dbpedia.org/resource/Michael_Schumacher"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/hubAirport> <http://dbpedia.org/resource/Detroit> . ?x <http://dbpedia.org/ontology/parentCompany> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/assembly> <http://dbpedia.org/resource/Jefferson_North_Assembly> . ?x <http://dbpedia.org/ontology/related> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/institution> <http://dbpedia.org/resource/Harvard_Medical_School> . ?x <http://dbpedia.org/property/destinations> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/basedOn> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Musical>}"}, "answers": ["Betty Comden", "Singin' in the Rain", "by Adolph Green", "Myth of Galatea", "Cinderella", "http://dbpedia.org/resource/La_circassienne", "''", "Eug\u00e8ne Scribe's libretto to ''", "The story of its own creation"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/locatedInArea> <http://dbpedia.org/resource/Yosemite_National_Park> . ?x <http://dbpedia.org/ontology/firstAscentPerson> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/PlayStation_4> <http://dbpedia.org/ontology/successor> ?uri } "}, "answers": ["http://dbpedia.org/resource/PlayStation_5"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/basedOn> <http://dbpedia.org/resource/Camp_Nou> . ?x <http://dbpedia.org/property/team> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ryan_Powell_(lacrosse)> <http://dbpedia.org/property/team> ?uri } "}, "answers": ["http://dbpedia.org/resource/Syracuse_University"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/draftTeam> <http://dbpedia.org/resource/Detroit_Pistons> . ?x <http://dbpedia.org/ontology/deathPlace> ?uri . }"}, "answers": ["21"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/borough> <http://dbpedia.org/resource/1211_Avenue_of_the_Americas> . ?uri <http://dbpedia.org/property/headquarters> ?x . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Providence_Chapel,_Charlwood> <http://dbpedia.org/property/style> ?uri } "}, "answers": ["http://dbpedia.org/resource/Vernacular_architecture", "http://dbpedia.org/resource/New_England"]}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/engineer> <http://dbpedia.org/resource/McDonnell_Aircraft> . ?x <http://dbpedia.org/ontology/employer> ?uri }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/genre> <http://dbpedia.org/resource/Jazz_fusion> . ?x <http://dbpedia.org/ontology/recordLabel> ?uri . }"}, "answers": ["1214"]}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Joey_McIntyre> <http://dbpedia.org/property/starring> ?uri } "}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/awards> <http://dbpedia.org/resource/SIGGRAPH> . ?x <http://dbpedia.org/ontology/award> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/David_Scherman> <http://dbpedia.org/ontology/training> ?uri } "}, "answers": ["http://dbpedia.org/resource/Dartmouth_College"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Raoul_Magrin-Vernerey> <http://dbpedia.org/property/battles> ?uri . }"}, "answers": ["8"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/flagPerend> ?uri . <http://dbpedia.org/resource/2004_OFC_Men's_Olympic_Qualifying_Tournament> <http://dbpedia.org/ontology/flagBearer> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Angelina_Jolie> <http://dbpedia.org/ontology/parent> ?x . ?x <http://dbpedia.org/property/awards> ?uri . }"}, "answers": ["http://dbpedia.org/resource/National_Medal_of_Arts", "See [[#Awards and nominations"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/stateOfOrigin> <http://dbpedia.org/resource/State_of_Liberty> . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/literaryGenre> <http://dbpedia.org/resource/Utopian_and_dystopian_fiction> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/writer> <http://dbpedia.org/resource/Nick_Castle> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": ["http://dbpedia.org/resource/Pray_TV_(1980_film)", "http://dbpedia.org/resource/The_Resurrection_of_Broncho_Billy", "http://dbpedia.org/resource/Tap_(film)", "http://dbpedia.org/resource/Skatetown,_U.S.A."]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/affiliation> <http://dbpedia.org/resource/Zambezi_River_Authority> . ?x <http://dbpedia.org/ontology/river> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/producer> <http://dbpedia.org/resource/Glen_and_Les_Charles> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/birthPlace> <http://dbpedia.org/resource/Karinga_Bay> . ?x <http://dbpedia.org/ontology/race> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/hairColor> <http://dbpedia.org/resource/Brown_hair> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/BeautyQueen>}"}, "answers": ["http://dbpedia.org/resource/Alix_Sosa", "http://dbpedia.org/resource/Alyz_Henrich", "http://dbpedia.org/resource/Amanda_Obdam", "http://dbpedia.org/resource/Amelia_Vega", "http://dbpedia.org/resource/Ana_Rodriguez_(Miss_Texas_USA)", "http://dbpedia.org/resource/Anagabriela_Espinoza", "http://dbpedia.org/resource/Anchilee_Scott-Kemmis", "http://dbpedia.org/resource/Andrea_Meza", "http://dbpedia.org/resource/Dayanara_Torres", "http://dbpedia.org/resource/Deborah_Shelton", "http://dbpedia.org/resource/Vaimalama_Chaves", "http://dbpedia.org/resource/Valentina_Patruno", "http://dbpedia.org/resource/Valeria_Ayos", "http://dbpedia.org/resource/Valeria_Piazza", "http://dbpedia.org/resource/Valerie_Holmes", "http://dbpedia.org/resource/Vanessa_Short_Bull", "http://dbpedia.org/resource/Veronica_Schneider", "http://dbpedia.org/resource/Veruska_Ram\u00edrez", "http://dbpedia.org/resource/Demi-Leigh_Tebow", "http://dbpedia.org/resource/Denyse_Floreano", "http://dbpedia.org/resource/Diane_Leyre", "http://dbpedia.org/resource/Aideliz_Hidalgo", "http://dbpedia.org/resource/Alba_Riquelme", "http://dbpedia.org/resource/Alexandra_Petrova", "http://dbpedia.org/resource/Ali_Landry", "http://dbpedia.org/resource/Alina_Sanko", "http://dbpedia.org/resource/Audra_Mari", "http://dbpedia.org/resource/Ayu_Diandra_Sari_Tjakra", "http://dbpedia.org/resource/Gabriela_Berrios", "http://dbpedia.org/resource/Gabriela_Palacio", "http://dbpedia.org/resource/Gabriela_Tafur", "http://dbpedia.org/resource/Hailey_Colborn", "http://dbpedia.org/resource/Tania_Rinc\u00f3n", "http://dbpedia.org/resource/Tatiana_Capote", "http://dbpedia.org/resource/Aneta_Vignerov\u00e1", "http://dbpedia.org/resource/Angela_Martini", "http://dbpedia.org/resource/Angella_Escudero", "http://dbpedia.org/resource/Angenie_Simon", "http://dbpedia.org/resource/Anntonia_Porsild", "http://dbpedia.org/resource/Ariadna_Guti\u00e9rrez", "http://dbpedia.org/resource/Est\u00edbaliz_Pereira", "http://dbpedia.org/resource/Eva_Gonz\u00e1lez", "http://dbpedia.org/resource/Gina_Swainson", "http://dbpedia.org/resource/Gina_Tolleson", "http://dbpedia.org/resource/Goizeder_Az\u00faa", "http://dbpedia.org/resource/Marelisa_Gibson", "http://dbpedia.org/resource/Mariana_Larrabure_de_Orbegoso", "http://dbpedia.org/resource/Mariann_Birkedal", "http://dbpedia.org/resource/Mariasela_\u00c1lvarez", "http://dbpedia.org/resource/Marisa_Butler", "http://dbpedia.org/resource/Marisela_Moreno", "http://dbpedia.org/resource/Marisela_de_Montecristo", "http://dbpedia.org/resource/Marisol_Gonz\u00e1lez", "http://dbpedia.org/resource/Maritza_Sayalero", "http://dbpedia.org/resource/Martha_Rocha", "http://dbpedia.org/resource/Martina_Thorogood", "http://dbpedia.org/resource/Mar\u00eda_Julia_Mantilla", "http://dbpedia.org/resource/Mar\u00eda_del_Cisne_Rivera", "http://dbpedia.org/resource/Teresa_Cheatham", "http://dbpedia.org/resource/Teresa_Ruglio", "http://dbpedia.org/resource/Terri_Utley", "http://dbpedia.org/resource/Brittany_Bell", "http://dbpedia.org/resource/Brucene_Smith", "http://dbpedia.org/resource/Jamie_Solinger", "http://dbpedia.org/resource/Jana_Dole\u017eelov\u00e1", "http://dbpedia.org/resource/Janel_Bishop", "http://dbpedia.org/resource/Janelee_Chaparro", "http://dbpedia.org/resource/Kedist_Deltour", "http://dbpedia.org/resource/Kelli_McCarty", "http://dbpedia.org/resource/Keylin_Suzette_G\u00f3mez", "http://dbpedia.org/resource/Kim_Edri", "http://dbpedia.org/resource/Melisa_Asl\u0131_Pamuk", "http://dbpedia.org/resource/Nikola_Buransk\u00e1", "http://dbpedia.org/resource/Cl\u00e9mence_Botino", "http://dbpedia.org/resource/Julia_Kourotchkina", "http://dbpedia.org/resource/Sasi_Sintawee", "http://dbpedia.org/resource/Barbara_Kahatjipara", "http://dbpedia.org/resource/Barbara_Peterson", "http://dbpedia.org/resource/Ingrid_Marie_Rivera", "http://dbpedia.org/resource/Iris_Mittenaere", "http://dbpedia.org/resource/Ivanna_Vale", "http://dbpedia.org/resource/Ivhanrel_Sumerah", "http://dbpedia.org/resource/Monic_P\u00e9rez", "http://dbpedia.org/resource/Monique_Evans_(Miss_Texas)", "http://dbpedia.org/resource/Nadia_Ferreira", "http://dbpedia.org/resource/Natalie_Glebova", "http://dbpedia.org/resource/Natasha_Joubert", "http://dbpedia.org/resource/Tori_Hall", "http://dbpedia.org/resource/Abbey-Anne_Gyles", "http://dbpedia.org/resource/Adriana_Rever\u00f3n", "http://dbpedia.org/resource/Adriana_Vasini", "http://dbpedia.org/resource/Ai_Haruna", "http://dbpedia.org/resource/B\u00e1rbara_Palacios", "http://dbpedia.org/resource/Caelynn_Miller-Keyes", "http://dbpedia.org/resource/Candice_Stewart", "http://dbpedia.org/resource/Catharina_Choi_Nunes", "http://dbpedia.org/resource/Catriona_Gray", "http://dbpedia.org/resource/Cecilia_Bolocco", "http://dbpedia.org/resource/Celeste_Cortesi", "http://dbpedia.org/resource/Chanique_Rabe", "http://dbpedia.org/resource/Charlotte_Ray", "http://dbpedia.org/resource/Chavika_Watrsang", "http://dbpedia.org/resource/Cindy_Williams_(journalist)", "http://dbpedia.org/resource/Susana_Caldas_Lemaitre", "http://dbpedia.org/resource/Susie_Castillo", "http://dbpedia.org/resource/Carlota_Lozano", "http://dbpedia.org/resource/Catalina_Morales", "http://dbpedia.org/resource/Lada_Akimova", "http://dbpedia.org/resource/Lara_Yan", "http://dbpedia.org/resource/Laura_Longauerov\u00e1", "http://dbpedia.org/resource/D\u00e9bora_Sulca", "http://dbpedia.org/resource/Sof\u00eda_Arag\u00f3n", "http://dbpedia.org/resource/Coral_Del_Mar_Casanova", "http://dbpedia.org/resource/Courtney_Gibbs", "http://dbpedia.org/resource/Gretchen_Polhemus", "http://dbpedia.org/resource/G\u00e9nesis_D\u00e1vila", "http://dbpedia.org/resource/Hinarani_de_Longeaux", "http://dbpedia.org/resource/Madeleine_Hartog-Bel", "http://dbpedia.org/resource/Maira_Rodr\u00edguez", "http://dbpedia.org/resource/Rolene_Strauss", "http://dbpedia.org/resource/Fabiola_Candosin", "http://dbpedia.org/resource/Jenny_Blanco", "http://dbpedia.org/resource/Jessia_Islam", "http://dbpedia.org/resource/Jitka_V\u00e1lkov\u00e1", "http://dbpedia.org/resource/Leeann_Tweeden", "http://dbpedia.org/resource/Leovanna_Orlandini", "http://dbpedia.org/resource/Leticia_Murray", "http://dbpedia.org/resource/Lidija_Mani\u0107", "http://dbpedia.org/resource/Lili\u00e1n_Villanueva", "http://dbpedia.org/resource/Lily_Estelita_Liana", "http://dbpedia.org/resource/Lindsey_Coffey", "http://dbpedia.org/resource/Nat\u00e1lia_Guimar\u00e3es", "http://dbpedia.org/resource/Nguy\u1ec5n_Th\u1ecb_Ng\u1ecdc_Ch\u00e2u", "http://dbpedia.org/resource/Nguy\u1ec5n_Tr\u1ea7n_Kh\u00e1nh_V\u00e2n", "http://dbpedia.org/resource/Nicola_Mimnagh", "http://dbpedia.org/resource/Nicolle_Velez", "http://dbpedia.org/resource/Paulina_Vega", "http://dbpedia.org/resource/Priya_Serrao", "http://dbpedia.org/resource/Raffaella_Modugno", "http://dbpedia.org/resource/Thiessa_Sickert", "http://dbpedia.org/resource/Wilnelia_Merced", "http://dbpedia.org/resource/Ximena_Navarrete", "http://dbpedia.org/resource/Yessica_Ram\u00edrez", "http://dbpedia.org/resource/Easher_Parker", "http://dbpedia.org/resource/Eliza_Muradyan", "http://dbpedia.org/resource/Elizabeth_Mosquera", "http://dbpedia.org/resource/Eli\u00e1n_Herrera_(model)", "http://dbpedia.org/resource/Jurate_Stasiunaite", "http://dbpedia.org/resource/Justine_Pasek", "http://dbpedia.org/resource/Kaliegh_Garris", "http://dbpedia.org/resource/Lolita_Morena", "http://dbpedia.org/resource/Lucie_Kr\u00e1lov\u00e1", "http://dbpedia.org/resource/Lucie_V\u00e1chov\u00e1", "http://dbpedia.org/resource/Lupita_Jones", "http://dbpedia.org/resource/Oksana_Voevodina", "http://dbpedia.org/resource/Sharon_Brown_(Miss_USA)", "http://dbpedia.org/resource/Stefan\u00eda_Fern\u00e1ndez", "http://dbpedia.org/resource/Stella_Araneta", "http://dbpedia.org/resource/Stephanie_de_Zorzi", "http://dbpedia.org/resource/Blanca_Zum\u00e1rraga", "http://dbpedia.org/resource/Bodine_Koehler", "http://dbpedia.org/resource/Iana_Tickle_Garcia", "http://dbpedia.org/resource/Kristhielee_Caride", "http://dbpedia.org/resource/Michelle_Col\u00f3n", "http://dbpedia.org/resource/Michelle_Rouillard", "http://dbpedia.org/resource/Michelle_Royer", "http://dbpedia.org/resource/Milett_Figueroa", "http://dbpedia.org/resource/Milka_Chulina", "http://dbpedia.org/resource/Minorka_Mercado", "http://dbpedia.org/resource/Miriam_Stevenson", "http://dbpedia.org/resource/Oxana_Fedorova", "http://dbpedia.org/resource/Patricia_Yurena_Rodr\u00edguez", "http://dbpedia.org/resource/Paula_Guill\u00f3", "http://dbpedia.org/resource/Yulia_Polyachikhina", "http://dbpedia.org/resource/Zuleika_Su\u00e1rez", "http://dbpedia.org/resource/\u00c1gnes_Dob\u00f3"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/keyPeople> <http://dbpedia.org/resource/Clinton_Foundation> . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Akira_Ifukube> . }"}, "answers": ["56"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/deathPlace> <http://dbpedia.org/resource/Connecticut_Colony> . ?x <http://dbpedia.org/ontology/restingPlace> ?uri . }"}, "answers": ["72"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Marie_Sisters> <http://dbpedia.org/property/producer> ?uri } "}, "answers": ["http://dbpedia.org/resource/Shep_Goodman", "http://dbpedia.org/resource/Max_T._Barnes", "http://dbpedia.org/resource/Guy_Roche", "http://dbpedia.org/resource/Richard_Marx", "Kenny Gioia"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Hayden,_Stone_&_Co> . <http://dbpedia.org/property/successor> ?uri } "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Xynisteri> <http://dbpedia.org/ontology/origin> ?uri } "}, "answers": ["http://dbpedia.org/resource/Cyprus"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/currentclub> <http://dbpedia.org/resource/Barcelona> } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/keyPeople> <http://dbpedia.org/resource/Deborah_Turness> . ?uri <http://dbpedia.org/ontology/network> ?x . }"}, "answers": ["http://dbpedia.org/resource/BBC_Pop_Up", "http://dbpedia.org/resource/Sunday_with_Laura_Kuenssberg"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/chairman> <http://dbpedia.org/resource/Merritt_Paulson> . ?x <http://dbpedia.org/ontology/homeStadium> ?uri . }"}, "answers": ["66"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ernest_de_Saisset> <http://dbpedia.org/ontology/almaMater> ?uri } "}, "answers": ["http://dbpedia.org/resource/Santa_Clara_University", "http://dbpedia.org/resource/Acad\u00e9mie_Julian"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Philippine_Ports_Authority> <http://dbpedia.org/property/successor> ?uri . <http://dbpedia.org/resource/Ruben_J._Villote> <http://dbpedia.org/ontology/origin> ?uri} "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Timmy_Time> <http://dbpedia.org/ontology/executiveProducer> ?x . ?x <http://dbpedia.org/property/awards> ?uri . }"}, "answers": ["Four Academy Awards"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/birthPlace> <http://dbpedia.org/resource/United_States> . ?x <http://dbpedia.org/ontology/deathPlace> ?uri . }"}, "answers": ["http://dbpedia.org/resource/United_States", "http://dbpedia.org/resource/Boston", "http://dbpedia.org/resource/Philadelphia", "http://dbpedia.org/resource/Mount_Vernon,_New_York", "http://dbpedia.org/resource/St._Augustine,_Florida", "http://dbpedia.org/resource/Georgia_(U.S._state)", "http://dbpedia.org/resource/Britton,_Oklahoma", "http://dbpedia.org/resource/Naples,_Florida", "http://dbpedia.org/resource/Evansville,_Indiana", "http://dbpedia.org/resource/Indiana", "http://dbpedia.org/resource/La_Jolla", "http://dbpedia.org/resource/Washington,_D.C.", "http://dbpedia.org/resource/California", "http://dbpedia.org/resource/Canoga_Park,_Los_Angeles", "http://dbpedia.org/resource/Massillon,_Ohio", "http://dbpedia.org/resource/Oakland,_California", "http://dbpedia.org/resource/Los_Angeles", "http://dbpedia.org/resource/Manila", "http://dbpedia.org/resource/Philippines", "http://dbpedia.org/resource/Sacramento,_California", "http://dbpedia.org/resource/Madison,_Wisconsin", "http://dbpedia.org/resource/Morristown,_New_Jersey", "http://dbpedia.org/resource/New_Jersey", "http://dbpedia.org/resource/The_Bronx", "http://dbpedia.org/resource/New_York_City", "http://dbpedia.org/resource/San_Francisco", "http://dbpedia.org/resource/Clinton,_Iowa", "http://dbpedia.org/resource/Vacaville,_California", "http://dbpedia.org/resource/Lawrenceburg,_Indiana", "http://dbpedia.org/resource/Madison,_Indiana", "http://dbpedia.org/resource/Western_Cape", "http://dbpedia.org/resource/South_Africa", "http://dbpedia.org/resource/Gugulethu", "http://dbpedia.org/resource/Manhattan", "http://dbpedia.org/resource/New_York_(state)", "http://dbpedia.org/resource/Mammoth_Lakes,_California", "http://dbpedia.org/resource/Andrew_Dickson_White_House", "http://dbpedia.org/resource/Ithaca,_New_York", "http://dbpedia.org/resource/Weston,_West_Virginia", "http://dbpedia.org/resource/Longmeadow,_Massachusetts", "http://dbpedia.org/resource/Brewster,_Massachusetts", "http://dbpedia.org/resource/Saint_Paul,_Minnesota", "http://dbpedia.org/resource/Vermont", "http://dbpedia.org/resource/Woodstock,_Vermont", "http://dbpedia.org/resource/Iowa", "http://dbpedia.org/resource/New_Orleans", "http://dbpedia.org/resource/Louisiana", "http://dbpedia.org/resource/Springfield,_Massachusetts", "http://dbpedia.org/resource/Webb_County,_Texas", "http://dbpedia.org/resource/Texas", "http://dbpedia.org/resource/Laredo,_Texas", "http://dbpedia.org/resource/Guadalajara", "http://dbpedia.org/resource/Mexico", "http://dbpedia.org/resource/Fairfax,_Virginia", "http://dbpedia.org/resource/Houston", "http://dbpedia.org/resource/Des_Moines,_Iowa", "http://dbpedia.org/resource/Charlotte,_Vermont", "http://dbpedia.org/resource/Pinedale,_Wyoming", "http://dbpedia.org/resource/Memphis,_Tennessee", "http://dbpedia.org/resource/Massachusetts", "http://dbpedia.org/resource/Keene,_New_Hampshire", "http://dbpedia.org/resource/New_Hampshire", "http://dbpedia.org/resource/San_Bernardino,_California", "http://dbpedia.org/resource/Norwich,_Connecticut", "http://dbpedia.org/resource/Bay_Shore,_New_York", "http://dbpedia.org/resource/Santa_Barbara,_California", "http://dbpedia.org/resource/Rhode_Island", "http://dbpedia.org/resource/Providence,_Rhode_Island", "http://dbpedia.org/resource/Carmel-by-the-Sea,_California", "http://dbpedia.org/resource/Northfield,_Minnesota", "http://dbpedia.org/resource/Tempe,_Arizona", "http://dbpedia.org/resource/Karachi", "http://dbpedia.org/resource/Sindh", "http://dbpedia.org/resource/Pakistan", "http://dbpedia.org/resource/Taunton,_Massachusetts", "http://dbpedia.org/resource/Collins,_New_York", "http://dbpedia.org/resource/Millbrook,_New_York", "http://dbpedia.org/resource/Missouri", "http://dbpedia.org/resource/St._Louis", "http://dbpedia.org/resource/Uniontown,_Pennsylvania", "http://dbpedia.org/resource/Woodstock,_New_York", "http://dbpedia.org/resource/Lyndhurst,_Ohio", "http://dbpedia.org/resource/Ohio", "http://dbpedia.org/resource/Huntingdon,_Pennsylvania", "http://dbpedia.org/resource/Pleasanton,_California", "http://dbpedia.org/resource/Pawtuxet_Village", "http://dbpedia.org/resource/Clearwater,_Florida", "http://dbpedia.org/resource/Page,_Arizona", "http://dbpedia.org/resource/Grand_Rapids,_Michigan", "http://dbpedia.org/resource/Michigan", "http://dbpedia.org/resource/Riverside,_California", "http://dbpedia.org/resource/North_Carolina", "http://dbpedia.org/resource/Winston-Salem,_North_Carolina", "http://dbpedia.org/resource/Pennsylvania", "http://dbpedia.org/resource/Kittanning,_Pennsylvania", "http://dbpedia.org/resource/Spearfish,_South_Dakota", "http://dbpedia.org/resource/Bedford,_Texas", "http://dbpedia.org/resource/Fresno,_California", "http://dbpedia.org/resource/Burbank,_California", "http://dbpedia.org/resource/Loudonville,_New_York", "http://dbpedia.org/resource/Boonville,_Missouri", "http://dbpedia.org/resource/Cleveland", "http://dbpedia.org/resource/Indianapolis", "http://dbpedia.org/resource/Virginia", "http://dbpedia.org/resource/Abingdon,_Virginia", "http://dbpedia.org/resource/Sault_Ste._Marie,_Michigan", "http://dbpedia.org/resource/Tacoma,_Washington", "http://dbpedia.org/resource/Flint,_Michigan", "http://dbpedia.org/resource/Bloomington,_Illinois", "http://dbpedia.org/resource/Illinois", "http://dbpedia.org/resource/Cambridge,_Massachusetts", "http://dbpedia.org/resource/Coral_Gables,_Florida", "http://dbpedia.org/resource/Richmond,_Virginia", "http://dbpedia.org/resource/Long_Beach,_California", "http://dbpedia.org/resource/China", "http://dbpedia.org/resource/Shanghai", "http://dbpedia.org/resource/Superior,_Wisconsin", "http://dbpedia.org/resource/Fort_Washington,_Maryland", "http://dbpedia.org/resource/Maryland", "http://dbpedia.org/resource/Los_Angeles_County,_California", "http://dbpedia.org/resource/Leicester,_Massachusetts", "http://dbpedia.org/resource/Sykesville,_Maryland", "http://dbpedia.org/resource/Rochester,_New_York", "http://dbpedia.org/resource/Princeton,_New_Jersey", "http://dbpedia.org/resource/Delaware", "http://dbpedia.org/resource/Milford,_Delaware", "http://dbpedia.org/resource/Tallahassee,_Florida", "http://dbpedia.org/resource/Kailua,_Hawaii", "http://dbpedia.org/resource/Los_Altos,_California", "http://dbpedia.org/resource/Readmond_Township,_Michigan", "http://dbpedia.org/resource/Japan", "http://dbpedia.org/resource/Tokyo", "http://dbpedia.org/resource/Brockport,_New_York", "http://dbpedia.org/resource/Arlington_County,_Virginia", "http://dbpedia.org/resource/Torrance,_California", "http://dbpedia.org/resource/Cape_Sable_Island", "http://dbpedia.org/resource/Nova_Scotia", "http://dbpedia.org/resource/Canada", "http://dbpedia.org/resource/Lemoyne,_Pennsylvania", "http://dbpedia.org/resource/Independence,_Missouri", "http://dbpedia.org/resource/Florida", "http://dbpedia.org/resource/Multnomah_County,_Oregon", "http://dbpedia.org/resource/Van_Nuys", "http://dbpedia.org/resource/Australia", "http://dbpedia.org/resource/Sydney", "http://dbpedia.org/resource/New_Zealand", "http://dbpedia.org/resource/Cape_Palmas", "http://dbpedia.org/resource/Liberia", "http://dbpedia.org/resource/Christiansburg,_Virginia", "http://dbpedia.org/resource/Buffalo,_New_York", "http://dbpedia.org/resource/Burlington,_Vermont", "http://dbpedia.org/resource/Fort_Collins,_Colorado", "http://dbpedia.org/resource/Colorado", "http://dbpedia.org/resource/Brooklyn", "http://dbpedia.org/resource/Taft,_California", "http://dbpedia.org/resource/Arizona", "http://dbpedia.org/resource/Pasadena,_California", "http://dbpedia.org/resource/San_Clemente,_California", "http://dbpedia.org/resource/Detroit", "http://dbpedia.org/resource/Waco,_Texas", "http://dbpedia.org/resource/Kenmore,_New_York", "http://dbpedia.org/resource/Mission_Viejo,_California", "http://dbpedia.org/resource/San_Juan_Capistrano,_California", "http://dbpedia.org/resource/Nashville,_Tennessee", "http://dbpedia.org/resource/Hemet,_California", "http://dbpedia.org/resource/St._Cloud,_Florida", "http://dbpedia.org/resource/Rochester,_Minnesota", "http://dbpedia.org/resource/Newport_Beach,_California", "http://dbpedia.org/resource/Orange_County,_California", "http://dbpedia.org/resource/Tarzana,_Los_Angeles", "http://dbpedia.org/resource/Fort_Lauderdale,_Florida", "http://dbpedia.org/resource/Sierra_Madre,_California", "http://dbpedia.org/resource/Dallas", "http://dbpedia.org/resource/Mississippi", "http://dbpedia.org/resource/Sioux_Falls,_South_Dakota", "http://dbpedia.org/resource/Nelson,_New_York", "http://dbpedia.org/resource/Farmville,_Virginia", "http://dbpedia.org/resource/Baltimore", "http://dbpedia.org/resource/Seattle", "http://dbpedia.org/resource/Washington_(state)", "http://dbpedia.org/resource/Edmonds,_Washington", "http://dbpedia.org/resource/Berkeley,_California", "http://dbpedia.org/resource/Mount_Pleasant,_South_Carolina", "http://dbpedia.org/resource/Marion,_Virginia", "http://dbpedia.org/resource/Oklahoma", "http://dbpedia.org/resource/Oklahoma_City", "http://dbpedia.org/resource/Savannah,_Georgia", "http://dbpedia.org/resource/Ireland", "http://dbpedia.org/resource/Dublin", "http://dbpedia.org/resource/Alabama", "http://dbpedia.org/resource/Florence,_Alabama", "http://dbpedia.org/resource/Cuernavaca", "http://dbpedia.org/resource/Covington,_Louisiana", "http://dbpedia.org/resource/Stuart,_Florida", "http://dbpedia.org/resource/Trenton,_New_Jersey", "http://dbpedia.org/resource/Montgomery_County,_Virginia", "http://dbpedia.org/resource/English_Channel", "http://dbpedia.org/resource/Athens,_Georgia", "http://dbpedia.org/resource/Duxbury,_Massachusetts", "http://dbpedia.org/resource/Meriden,_Connecticut", "http://dbpedia.org/resource/La_Porte,_Indiana", "http://dbpedia.org/resource/Export,_Pennsylvania", "http://dbpedia.org/resource/Hampton,_Virginia", "http://dbpedia.org/resource/Lancaster,_Pennsylvania", "http://dbpedia.org/resource/Lynchburg,_Virginia", "http://dbpedia.org/resource/Pittsburgh", "http://dbpedia.org/resource/France", "http://dbpedia.org/resource/Victorville,_California", "http://dbpedia.org/resource/Hartford,_Connecticut", "http://dbpedia.org/resource/Silverdale,_Washington", "http://dbpedia.org/resource/Pinehurst,_North_Carolina", "http://dbpedia.org/resource/Syracuse,_New_York", "http://dbpedia.org/resource/Glen_Riddle,_Pennsylvania", "http://dbpedia.org/resource/Rancho_Santa_Fe,_California", "http://dbpedia.org/resource/East_Oakland,_Oakland,_California", "http://dbpedia.org/resource/Stamford,_Connecticut", "http://dbpedia.org/resource/Sandisfield,_Massachusetts", "http://dbpedia.org/resource/Sussex", "http://dbpedia.org/resource/Eastbourne", "http://dbpedia.org/resource/Willard,_New_York", "http://dbpedia.org/resource/Santa_Monica,_California", "http://dbpedia.org/resource/Concord,_North_Carolina", "http://dbpedia.org/resource/Charleston,_Missouri", "http://dbpedia.org/resource/Franklin,_New_Hampshire", "http://dbpedia.org/resource/Merrimack_County,_New_Hampshire", "http://dbpedia.org/resource/Sarasota,_Florida", "http://dbpedia.org/resource/Arcadia,_California", "http://dbpedia.org/resource/San_Antonio", "http://dbpedia.org/resource/Buchanan,_Liberia", "http://dbpedia.org/resource/Grand_Bassa_County", "http://dbpedia.org/resource/Norwich,_Vermont", "http://dbpedia.org/resource/Greenfield,_Massachusetts", "http://dbpedia.org/resource/Barboursville,_West_Virginia", "http://dbpedia.org/resource/Cabell_County,_West_Virginia", "http://dbpedia.org/resource/Monterey,_California", "http://dbpedia.org/resource/Hollywood,_Los_Angeles", "http://dbpedia.org/resource/Davenport,_Iowa", "http://dbpedia.org/resource/Hialeah,_Florida", "http://dbpedia.org/resource/Marina_del_Rey,_California", "http://dbpedia.org/resource/Miami", "http://dbpedia.org/resource/Hawaii", "http://dbpedia.org/resource/Honolulu", "http://dbpedia.org/resource/Mesa,_Arizona", "http://dbpedia.org/resource/Amherst,_New_York", "http://dbpedia.org/resource/San_Diego", "http://dbpedia.org/resource/Kenton,_Kentucky", "http://dbpedia.org/resource/Jamaica_Plain", "http://dbpedia.org/resource/Jupiter,_Florida", "http://dbpedia.org/resource/Chincoteague,_Virginia", "http://dbpedia.org/resource/Wellton,_Arizona", "http://dbpedia.org/resource/Tazewell_County,_Virginia", "http://dbpedia.org/resource/Donner_Lake", "http://dbpedia.org/resource/Bethesda,_Maryland", "http://dbpedia.org/resource/Amarillo,_Texas", "http://dbpedia.org/resource/Casper,_Wyoming", "http://dbpedia.org/resource/Atlanta", "http://dbpedia.org/resource/Redford,_Michigan", "http://dbpedia.org/resource/Bangor,_Maine", "http://dbpedia.org/resource/Camp_Hill,_Pennsylvania", "http://dbpedia.org/resource/North_Hollywood,_Los_Angeles", "http://dbpedia.org/resource/Paris", "http://dbpedia.org/resource/Auburn,_California", "http://dbpedia.org/resource/Palm_Springs,_California", "http://dbpedia.org/resource/Fairview_Heights,_Illinois", "http://dbpedia.org/resource/New_Haven,_Connecticut", "http://dbpedia.org/resource/Sun_City_Center,_Florida", "http://dbpedia.org/resource/Montgomery,_Alabama", "http://dbpedia.org/resource/Fulton,_Missouri", "http://dbpedia.org/resource/Portugal", "http://dbpedia.org/resource/Lisbon", "http://dbpedia.org/resource/Kansas_City,_Missouri", "http://dbpedia.org/resource/Cincinnati", "http://dbpedia.org/resource/Charleston,_South_Carolina", "http://dbpedia.org/resource/Provo,_Utah", "http://dbpedia.org/resource/Columbia,_South_Carolina", "http://dbpedia.org/resource/San_Miguel_de_Allende", "http://dbpedia.org/resource/Moorestown,_New_Jersey", "http://dbpedia.org/resource/South_Carolina", "http://dbpedia.org/resource/Sweden", "http://dbpedia.org/resource/Orust", "http://dbpedia.org/resource/Gaithersburg,_Maryland", "http://dbpedia.org/resource/Bluefield,_West_Virginia", "http://dbpedia.org/resource/St._Albans_(city),_Vermont", "http://dbpedia.org/resource/Newport,_Rhode_Island", "http://dbpedia.org/resource/Max_Meadows,_Virginia", "http://dbpedia.org/resource/Austin,_Texas", "http://dbpedia.org/resource/Vienna", "http://dbpedia.org/resource/First_Austrian_Republic", "http://dbpedia.org/resource/Geneva,_New_York", "http://dbpedia.org/resource/Hopewell,_Virginia", "http://dbpedia.org/resource/Hudson,_New_York", "http://dbpedia.org/resource/Rutherford,_New_Jersey", "http://dbpedia.org/resource/San_Jose,_California", "http://dbpedia.org/resource/England", "http://dbpedia.org/resource/United_Kingdom", "http://dbpedia.org/resource/London", "http://dbpedia.org/resource/Wilmington,_North_Carolina", "http://dbpedia.org/resource/Montreal", "http://dbpedia.org/resource/Quebec", "http://dbpedia.org/resource/Greensboro,_North_Carolina", "http://dbpedia.org/resource/Atherton,_California", "http://dbpedia.org/resource/Wilmington,_Delaware", "http://dbpedia.org/resource/Norfolk,_Virginia", "http://dbpedia.org/resource/Winfield,_Kansas", "http://dbpedia.org/resource/Kansas", "http://dbpedia.org/resource/Rhinebeck_(village),_New_York", "http://dbpedia.org/resource/Peterborough,_New_Hampshire", "http://dbpedia.org/resource/Richards,_Texas", "http://dbpedia.org/resource/Madrid", "http://dbpedia.org/resource/Scobey,_Montana", "http://dbpedia.org/resource/Kentucky", "http://dbpedia.org/resource/Jericho,_New_York", "http://dbpedia.org/resource/Sherman_Oaks,_Los_Angeles", "http://dbpedia.org/resource/Higgins_Beach", "http://dbpedia.org/resource/Maine", "http://dbpedia.org/resource/Deering,_New_Hampshire", "http://dbpedia.org/resource/Chatham_(town),_New_York", "http://dbpedia.org/resource/Mason_City,_Iowa", "http://dbpedia.org/resource/Tucson,_Arizona", "http://dbpedia.org/resource/Wisconsin", "http://dbpedia.org/resource/Chevy_Chase,_Maryland", "http://dbpedia.org/resource/Stockholm", "http://dbpedia.org/resource/Lake_Success,_New_York", "http://dbpedia.org/resource/Utah", "http://dbpedia.org/resource/Salt_Lake_City", "http://dbpedia.org/resource/Darien,_Connecticut", "http://dbpedia.org/resource/Wonalancet,_New_Hampshire", "http://dbpedia.org/resource/Winter_Park,_Florida", "http://dbpedia.org/resource/Gresham,_Oregon", "http://dbpedia.org/resource/Wellesley,_Massachusetts", "http://dbpedia.org/resource/Mobile,_Alabama", "http://dbpedia.org/resource/Amherst_County,_Virginia", "http://dbpedia.org/resource/Jonesville,_Virginia", "http://dbpedia.org/resource/Montana", "http://dbpedia.org/resource/West_Virginia", "http://dbpedia.org/resource/Hinton,_West_Virginia", "http://dbpedia.org/resource/Montrose,_New_York", "http://dbpedia.org/resource/Santa_Clara_County,_California", "http://dbpedia.org/resource/Chicago", "http://dbpedia.org/resource/Oceanside,_California", "http://dbpedia.org/resource/Sapulpa,_Oklahoma", "http://dbpedia.org/resource/Portland,_Oregon", "http://dbpedia.org/resource/Oregon", "http://dbpedia.org/resource/Fontana,_California", "http://dbpedia.org/resource/Falmouth,_Massachusetts", "http://dbpedia.org/resource/French_Third_Republic", "http://dbpedia.org/resource/Olympia,_Washington", "http://dbpedia.org/resource/Gray_County,_Texas", "http://dbpedia.org/resource/Pampa,_Texas", "http://dbpedia.org/resource/Beverly_Hills,_California", "http://dbpedia.org/resource/Mangilao,_Guam", "http://dbpedia.org/resource/Guam", "http://dbpedia.org/resource/Tennessee", "http://dbpedia.org/resource/Bend,_Oregon", "http://dbpedia.org/resource/Croton-on-Hudson,_New_York", "http://dbpedia.org/resource/Portland,_Maine", "http://dbpedia.org/resource/Upper_Lake,_California", "http://dbpedia.org/resource/Berlin_to_Kitchener_name_change", "http://dbpedia.org/resource/Province_of_Canada", "http://dbpedia.org/resource/Delray_Beach,_Florida", "http://dbpedia.org/resource/Durham,_North_Carolina", "http://dbpedia.org/resource/Ridgefield,_Connecticut", "http://dbpedia.org/resource/Reston,_Virginia", "http://dbpedia.org/resource/Cheltenham,_Pennsylvania", "http://dbpedia.org/resource/St._Albans_(town),_Vermont", "http://dbpedia.org/resource/New_Kent_County,_Virginia", "http://dbpedia.org/resource/Hendersonville,_North_Carolina", "http://dbpedia.org/resource/West_Chester,_Pennsylvania", "http://dbpedia.org/resource/Great_Barrington,_Massachusetts", "http://dbpedia.org/resource/Bernardsville,_New_Jersey", "http://dbpedia.org/resource/Jasper,_Indiana", "http://dbpedia.org/resource/Charlestown,_Boston", "http://dbpedia.org/resource/Sonoma,_California", "http://dbpedia.org/resource/Ellsworth,_Maine", "http://dbpedia.org/resource/Fort_Worth,_Texas", "http://dbpedia.org/resource/Tarrant_County,_Texas", "http://dbpedia.org/resource/Helena,_Montana", "http://dbpedia.org/resource/Coupeville,_Washington", "http://dbpedia.org/resource/Nevada", "http://dbpedia.org/resource/Overton,_Nevada", "http://dbpedia.org/resource/Midland,_Michigan", "http://dbpedia.org/resource/Santa_Maria,_California", "http://dbpedia.org/resource/Redlands,_California", "http://dbpedia.org/resource/Lake_Elsinore,_California", "http://dbpedia.org/resource/Gulfport,_Mississippi", "http://dbpedia.org/resource/Century_City", "http://dbpedia.org/resource/Minneapolis", "http://dbpedia.org/resource/Connecticut", "http://dbpedia.org/resource/Trumbull,_Connecticut", "http://dbpedia.org/resource/Italy", "http://dbpedia.org/resource/Florence", "http://dbpedia.org/resource/Tuscany", "http://dbpedia.org/resource/Havre,_Montana", "http://dbpedia.org/resource/Alliance,_Ohio", "http://dbpedia.org/resource/Suffolk_County,_Massachusetts", "http://dbpedia.org/resource/Roxbury,_Boston", "http://dbpedia.org/resource/Canandaigua,_New_York", "http://dbpedia.org/resource/Broken_Hill", "http://dbpedia.org/resource/New_South_Wales", "http://dbpedia.org/resource/Yarmouth_Port,_Massachusetts", "http://dbpedia.org/resource/Upland,_Pennsylvania", "http://dbpedia.org/resource/Louisville,_Kentucky", "http://dbpedia.org/resource/Rockbridge_County,_Virginia", "http://dbpedia.org/resource/Lexington,_Virginia", "http://dbpedia.org/resource/Guangzhou", "http://dbpedia.org/resource/Dillon,_Montana", "http://dbpedia.org/resource/Tangipahoa_Parish,_Louisiana", "http://dbpedia.org/resource/Proctor,_Vermont", "http://dbpedia.org/resource/West_Palm_Beach,_Florida", "http://dbpedia.org/resource/Eau_Claire,_Wisconsin", "http://dbpedia.org/resource/Perkins,_Oklahoma", "http://dbpedia.org/resource/South_Beach,_Staten_Island", "http://dbpedia.org/resource/Plano,_Texas", "http://dbpedia.org/resource/Hillsborough_County,_New_Hampshire", "http://dbpedia.org/resource/Winthrop,_Massachusetts", "http://dbpedia.org/resource/Nantucket", "http://dbpedia.org/resource/Dayton,_Ohio", "http://dbpedia.org/resource/Saugus,_Santa_Clarita,_California", "http://dbpedia.org/resource/Neptune_Township,_New_Jersey", "http://dbpedia.org/resource/Lexington,_North_Carolina", "http://dbpedia.org/resource/Bowie,_Maryland", "http://dbpedia.org/resource/Topeka,_Kansas", "http://dbpedia.org/resource/Shenandoah_County,_Virginia", "http://dbpedia.org/resource/Manteca,_California", "http://dbpedia.org/resource/Odessa,_Texas", "http://dbpedia.org/resource/Harrisburg,_Pennsylvania", "http://dbpedia.org/resource/Saratoga_Springs,_New_York", "http://dbpedia.org/resource/Puget_Sound", "http://dbpedia.org/resource/Ronan,_Montana", "http://dbpedia.org/resource/Dennis,_Massachusetts", "http://dbpedia.org/resource/Long_Island", "http://dbpedia.org/resource/Upper_Sandusky,_Ohio", "http://dbpedia.org/resource/Morgantown,_West_Virginia", "http://dbpedia.org/resource/Tamuning,_Guam", "http://dbpedia.org/resource/Bratislava", "http://dbpedia.org/resource/Czechoslovakia", "http://dbpedia.org/resource/Minnesota", "http://dbpedia.org/resource/Auburn,_Alabama", "http://dbpedia.org/resource/Cupertino,_California", "http://dbpedia.org/resource/Newport_News,_Virginia", "http://dbpedia.org/resource/Munising,_Michigan", "http://dbpedia.org/resource/Huntington,_New_York", "http://dbpedia.org/resource/Brookline,_Massachusetts", "http://dbpedia.org/resource/Hadley,_Massachusetts", "http://dbpedia.org/resource/Greenwich,_Connecticut", "http://dbpedia.org/resource/Attica_(town),_New_York", "http://dbpedia.org/resource/Wyoming_County,_New_York", "http://dbpedia.org/resource/Wheeling,_West_Virginia", "http://dbpedia.org/resource/Garden_City,_New_York", "http://dbpedia.org/resource/Vergennes,_Vermont", "http://dbpedia.org/resource/Newtown,_Connecticut", "http://dbpedia.org/resource/West_Hartford,_Connecticut", "http://dbpedia.org/resource/Morrisville,_Vermont", "http://dbpedia.org/resource/Westminster_(town),_Vermont", "http://dbpedia.org/resource/Ellsworth,_Kansas", "http://dbpedia.org/resource/Denver", "http://dbpedia.org/resource/Amherst,_Massachusetts", "http://dbpedia.org/resource/Boca_Raton,_Florida", "http://dbpedia.org/resource/Lewiston,_Maine", "http://dbpedia.org/resource/Albany,_New_York", "http://dbpedia.org/resource/Edina,_Minnesota", "http://dbpedia.org/resource/Pomeroy,_Washington", "http://dbpedia.org/resource/Coconut_Grove", "http://dbpedia.org/resource/St._Petersburg,_Florida", "http://dbpedia.org/resource/Monrovia", "http://dbpedia.org/resource/Bedford_Hills,_New_York", "http://dbpedia.org/resource/Redmond,_Washington", "http://dbpedia.org/resource/Florence_Township,_New_Jersey", "http://dbpedia.org/resource/Irvine,_California", "http://dbpedia.org/resource/Fort_Wayne,_Indiana", "http://dbpedia.org/resource/Hampden_Township,_Cumberland_County,_Pennsylvania", "http://dbpedia.org/resource/Alaska", "http://dbpedia.org/resource/Juneau,_Alaska", "http://dbpedia.org/resource/Fargo,_North_Dakota", "http://dbpedia.org/resource/Alexandria,_Virginia", "http://dbpedia.org/resource/Grosse_Pointe,_Michigan", "http://dbpedia.org/resource/Newmarket,_Suffolk", "http://dbpedia.org/resource/Salem,_Massachusetts", "http://dbpedia.org/resource/Flemington,_New_Jersey", "http://dbpedia.org/resource/Baton_Rouge,_Louisiana", "http://dbpedia.org/resource/Manchester-by-the-Sea,_Massachusetts", "http://dbpedia.org/resource/Aberdeen,_South_Dakota", "http://dbpedia.org/resource/Reno,_Nevada", "http://dbpedia.org/resource/Hamilton_Township,_Mercer_County,_New_Jersey", "http://dbpedia.org/resource/Staten_Island", "http://dbpedia.org/resource/Weimar_Republic", "http://dbpedia.org/resource/Munich", "http://dbpedia.org/resource/Medford,_Oregon", "http://dbpedia.org/resource/Omaha,_Nebraska", "http://dbpedia.org/resource/Raleigh,_North_Carolina", "http://dbpedia.org/resource/Hartford,_Vermont", "http://dbpedia.org/resource/Warm_Springs,_Georgia", "http://dbpedia.org/resource/Santa_Rosa_County,_Florida", "http://dbpedia.org/resource/Miami_Beach,_Florida", "http://dbpedia.org/resource/Belgium", "http://dbpedia.org/resource/Brussels", "http://dbpedia.org/resource/HM_Prison_Wandsworth", "http://dbpedia.org/resource/Hong_Kong", "http://dbpedia.org/resource/New_Mexico", "http://dbpedia.org/resource/Los_Alamos,_New_Mexico", "http://dbpedia.org/resource/Topsham,_Maine", "http://dbpedia.org/resource/Fauquier_County,_Virginia", "http://dbpedia.org/resource/Walnut_Creek,_California", "http://dbpedia.org/resource/Georgetown_(Washington,_D.C.)", "http://dbpedia.org/resource/Fairhope,_Alabama", "http://dbpedia.org/resource/Germany", "http://dbpedia.org/resource/Cologne", "http://dbpedia.org/resource/Harrisonburg,_Virginia", "http://dbpedia.org/resource/Augusta,_Maine", "http://dbpedia.org/resource/Beacon_Hill,_Boston", "http://dbpedia.org/resource/Bemidji,_Minnesota", "http://dbpedia.org/resource/Reggello", "http://dbpedia.org/resource/Vallombrosa_Abbey", "http://dbpedia.org/resource/Kingdom_of_Italy", "http://dbpedia.org/resource/Williamsburg,_Virginia", "http://dbpedia.org/resource/Milford,_Massachusetts", "http://dbpedia.org/resource/Fredericksburg,_Virginia", "http://dbpedia.org/resource/Deming,_New_Mexico", "http://dbpedia.org/resource/New_Mexico_Territory", "http://dbpedia.org/resource/Hollywood,_Florida", "http://dbpedia.org/resource/Cocoa_Beach,_Florida", "http://dbpedia.org/resource/Monterey_County,_California", "http://dbpedia.org/resource/Harrison,_New_Jersey", "http://dbpedia.org/resource/Auburndale,_Massachusetts", "http://dbpedia.org/resource/Little_Rock,_Arkansas", "http://dbpedia.org/resource/Silver_Spring,_Maryland", "http://dbpedia.org/resource/Charleston,_West_Virginia", "http://dbpedia.org/resource/Butler,_Pennsylvania", "http://dbpedia.org/resource/Vancouver_Island", "http://dbpedia.org/resource/British_Columbia", "http://dbpedia.org/resource/Rome", "http://dbpedia.org/resource/Martinsburg,_West_Virginia", "http://dbpedia.org/resource/Irving,_Texas", "http://dbpedia.org/resource/Hackensack,_New_Jersey", "http://dbpedia.org/resource/Presumption_of_death", "http://dbpedia.org/resource/Ochsner_Medical_Center", "http://dbpedia.org/resource/Jefferson,_Louisiana", "http://dbpedia.org/resource/Murfreesboro,_Tennessee", "http://dbpedia.org/resource/Jersey_City,_New_Jersey", "http://dbpedia.org/resource/Switzerland", "http://dbpedia.org/resource/Z\u00fcrich", "http://dbpedia.org/resource/Westport,_Connecticut", "http://dbpedia.org/resource/Pompano_Beach,_Florida", "http://dbpedia.org/resource/Broward_County,_Florida", "http://dbpedia.org/resource/Clarendon,_Texas", "http://dbpedia.org/resource/Donley_County,_Texas", "http://dbpedia.org/resource/Salina,_Kansas", "http://dbpedia.org/resource/Arlington,_Massachusetts", "http://dbpedia.org/resource/Chandler,_Arizona", "http://dbpedia.org/resource/Laguna_Hills,_California", "http://dbpedia.org/resource/Greenwood,_Delaware", "http://dbpedia.org/resource/Easton,_Maryland", "http://dbpedia.org/resource/Columbia,_Missouri", "http://dbpedia.org/resource/Cairo", "http://dbpedia.org/resource/Egypt", "http://dbpedia.org/resource/Durant,_Oklahoma", "http://dbpedia.org/resource/Seguin,_Texas", "http://dbpedia.org/resource/Coral_Springs,_Florida", "http://dbpedia.org/resource/Miami_Lakes,_Florida", "http://dbpedia.org/resource/Haiti", "http://dbpedia.org/resource/Port-au-Prince", "http://dbpedia.org/resource/Menlo_Park,_California", "http://dbpedia.org/resource/Barbourville,_Kentucky", "http://dbpedia.org/resource/Stanford,_California", "http://dbpedia.org/resource/Canton,_Ohio", "http://dbpedia.org/resource/Manteno,_Illinois", "http://dbpedia.org/resource/Joplin,_Missouri", "http://dbpedia.org/resource/Versailles,_Kentucky", "http://dbpedia.org/resource/Fort_Lee,_New_Jersey", "http://dbpedia.org/resource/Falls_Church,_Virginia", "http://dbpedia.org/resource/Somerville,_Massachusetts", "http://dbpedia.org/resource/Middlesex_County,_Massachusetts", "http://dbpedia.org/resource/Jefferson_City,_Missouri", "http://dbpedia.org/resource/Tulsa,_Oklahoma", "http://dbpedia.org/resource/Parker_County,_Texas", "http://dbpedia.org/resource/Norristown,_Pennsylvania", "http://dbpedia.org/resource/Texas_in_the_American_Civil_War", "http://dbpedia.org/resource/Confederate_States_of_America", "http://dbpedia.org/resource/Huntsville,_Texas", "http://dbpedia.org/resource/Eveleth,_Minnesota", "http://dbpedia.org/resource/Alta_Loma,_Rancho_Cucamonga,_California", "http://dbpedia.org/resource/Bennington,_Vermont", "http://dbpedia.org/resource/Muskogee,_Oklahoma", "http://dbpedia.org/resource/Monaco", "http://dbpedia.org/resource/Monte_Carlo", "http://dbpedia.org/resource/Evanston,_Illinois", "http://dbpedia.org/resource/Middletown,_Connecticut", "http://dbpedia.org/resource/Hawaiian_Kingdom", "http://dbpedia.org/resource/Oahu", "http://dbpedia.org/resource/Concord,_Massachusetts", "http://dbpedia.org/resource/East_Hampton_(town),_New_York", "http://dbpedia.org/resource/Wyndmoor,_Pennsylvania", "http://dbpedia.org/resource/Orlando,_Florida", "http://dbpedia.org/resource/Cooperstown,_New_York", "http://dbpedia.org/resource/Middlebury,_Vermont", "http://dbpedia.org/resource/New_Hamburg,_New_York", "http://dbpedia.org/resource/Worcester,_Massachusetts", "http://dbpedia.org/resource/Charlottesville,_Virginia", "http://dbpedia.org/resource/Portsmouth,_Virginia", "http://dbpedia.org/resource/Naples", "http://dbpedia.org/resource/Vincennes,_Indiana", "http://dbpedia.org/resource/Lake_Tomahawk,_Wisconsin", "http://dbpedia.org/resource/Wilkes-Barre,_Pennsylvania", "http://dbpedia.org/resource/Buckingham_County,_Virginia", "http://dbpedia.org/resource/Greenville,_Mississippi", "http://dbpedia.org/resource/Grundy_Center,_Iowa", "http://dbpedia.org/resource/Lake_City,_Florida", "http://dbpedia.org/resource/Holmdel_Township,_New_Jersey", "http://dbpedia.org/resource/Woodstock,_New_Brunswick", "http://dbpedia.org/resource/Wichita,_Kansas", "http://dbpedia.org/resource/Yucca_Valley,_California", "http://dbpedia.org/resource/Bay_Harbor_Islands,_Florida", "http://dbpedia.org/resource/Palm_Beach_Gardens,_Florida", "http://dbpedia.org/resource/Woodland_Hills,_Los_Angeles", "http://dbpedia.org/resource/Fort_Myers,_Florida", "http://dbpedia.org/resource/Fort_Sam_Houston", "http://dbpedia.org/resource/Wilmington,_Massachusetts", "http://dbpedia.org/resource/Salamanca", "http://dbpedia.org/resource/Spain", "http://dbpedia.org/resource/Shreveport,_Louisiana", "http://dbpedia.org/resource/Greenville,_North_Carolina", "http://dbpedia.org/resource/Hastings,_Minnesota", "http://dbpedia.org/resource/Shawnee,_Oklahoma", "http://dbpedia.org/resource/Summersville,_West_Virginia", "http://dbpedia.org/resource/Sioux_City,_Iowa", "http://dbpedia.org/resource/Brisbane", "http://dbpedia.org/resource/Queensland", "http://dbpedia.org/resource/Destin,_Florida", "http://dbpedia.org/resource/Atlantic_Ocean", "http://dbpedia.org/resource/Birmingham,_Alabama", "http://dbpedia.org/resource/Kennett_Square,_Pennsylvania", "http://dbpedia.org/resource/Melbourne", "http://dbpedia.org/resource/Covington,_Virginia", "http://dbpedia.org/resource/Jackson,_Mississippi", "http://dbpedia.org/resource/Gambier,_Ohio", "http://dbpedia.org/resource/Wise_County,_Virginia", "http://dbpedia.org/resource/McLean,_Virginia", "http://dbpedia.org/resource/Litchfield,_Connecticut", "http://dbpedia.org/resource/Manhattan_Beach,_California", "http://dbpedia.org/resource/Martinsville,_Indiana", "http://dbpedia.org/resource/Hodgenville,_Kentucky", "http://dbpedia.org/resource/C\u00f3rdoba,_Veracruz", "http://dbpedia.org/resource/Amelia_County,_Virginia", "http://dbpedia.org/resource/St_Pancras,_London", "http://dbpedia.org/resource/Newburgh,_New_York", "http://dbpedia.org/resource/Culver,_Indiana", "http://dbpedia.org/resource/Kauai", "http://dbpedia.org/resource/Wallingford,_Pennsylvania", "http://dbpedia.org/resource/Tijuana", "http://dbpedia.org/resource/Rock_Point,_Maryland", "http://dbpedia.org/resource/Stokesdale,_North_Carolina", "http://dbpedia.org/resource/Lubbock,_Texas", "http://dbpedia.org/resource/Seminole,_Florida", "http://dbpedia.org/resource/Louisa_County,_Virginia", "http://dbpedia.org/resource/Bar_Harbor,_Maine", "http://dbpedia.org/resource/Onancock,_Virginia", "http://dbpedia.org/resource/London_Borough_of_Camden", "http://dbpedia.org/resource/Phoenix,_Arizona", "http://dbpedia.org/resource/Quincy,_Massachusetts", "http://dbpedia.org/resource/Eugene,_Oregon", "http://dbpedia.org/resource/Rutland,_Vermont_(city)", "http://dbpedia.org/resource/Burlington,_New_Jersey", "http://dbpedia.org/resource/Oconomowoc,_Wisconsin", "http://dbpedia.org/resource/Bratenahl,_Ohio", "http://dbpedia.org/resource/Asheville,_North_Carolina", "http://dbpedia.org/resource/Springfield,_Illinois", "http://dbpedia.org/resource/Fond_du_Lac,_Wisconsin", "http://dbpedia.org/resource/Prince_Edward_County,_Virginia", "http://dbpedia.org/resource/Oakdale,_New_York", "http://dbpedia.org/resource/Roanoke,_Virginia", "http://dbpedia.org/resource/Metairie,_Louisiana", "http://dbpedia.org/resource/Snow_Hill,_Maryland", "http://dbpedia.org/resource/Georgia_Diagnostic_and_Classification_State_Prison", "http://dbpedia.org/resource/Jackson,_Georgia", "http://dbpedia.org/resource/Haverhill,_Massachusetts", "http://dbpedia.org/resource/Pendleton,_South_Carolina", "http://dbpedia.org/resource/New_Bern,_North_Carolina", "http://dbpedia.org/resource/Boyd_County,_Kentucky", "http://dbpedia.org/resource/Commonwealth_of_the_Philippines", "http://dbpedia.org/resource/Caloocan", "http://dbpedia.org/resource/Rizal", "http://dbpedia.org/resource/Beaufort,_South_Carolina", "http://dbpedia.org/resource/Kearney,_Nebraska", "http://dbpedia.org/resource/Nebraska", "http://dbpedia.org/resource/Cocoa,_Florida", "http://dbpedia.org/resource/Plantation,_Florida", "http://dbpedia.org/resource/Colfax,_Washington", "http://dbpedia.org/resource/Hillsborough,_California", "http://dbpedia.org/resource/Clermont,_Iowa", "http://dbpedia.org/resource/Columbus,_Ohio", "http://dbpedia.org/resource/Peoria,_Illinois", "http://dbpedia.org/resource/Bakersfield,_California", "http://dbpedia.org/resource/South_Boston,_Virginia", "http://dbpedia.org/resource/Madison_County,_Mississippi", "http://dbpedia.org/resource/Sewanee,_Tennessee", "http://dbpedia.org/resource/Columbus,_Mississippi", "http://dbpedia.org/resource/Fayetteville,_Arkansas", "http://dbpedia.org/resource/Findlay,_Ohio", "http://dbpedia.org/resource/Salisbury,_Maryland", "http://dbpedia.org/resource/Beverly,_Massachusetts", "http://dbpedia.org/resource/Carrollton,_Kentucky", "http://dbpedia.org/resource/Galveston,_Texas", "http://dbpedia.org/resource/Rock_Island,_Illinois", "http://dbpedia.org/resource/Woburn,_Massachusetts", "http://dbpedia.org/resource/Orange,_New_Jersey", "http://dbpedia.org/resource/Hempstead_(village),_New_York", "http://dbpedia.org/resource/Hamden,_Connecticut", "http://dbpedia.org/resource/Dorchester,_Boston", "http://dbpedia.org/resource/Castine,_Maine", "http://dbpedia.org/resource/Augusta,_Georgia", "http://dbpedia.org/resource/Lake_Oswego,_Oregon", "http://dbpedia.org/resource/Chesterfield,_Missouri", "http://dbpedia.org/resource/Dubuque,_Iowa", "http://dbpedia.org/resource/Minnewaska_State_Park_Preserve", "http://dbpedia.org/resource/Bryan,_Texas", "http://dbpedia.org/resource/Brazos_County,_Texas", "http://dbpedia.org/resource/Schnecksville,_Pennsylvania", "http://dbpedia.org/resource/Scotland", "http://dbpedia.org/resource/Edinburgh", "http://dbpedia.org/resource/Santa_Cruz,_California", "http://dbpedia.org/resource/Centennial,_Colorado", "http://dbpedia.org/resource/Milwaukee", "http://dbpedia.org/resource/Dublin,_Georgia", "http://dbpedia.org/resource/Hoboken,_New_Jersey", "http://dbpedia.org/resource/Fountain_Green,_Utah", "http://dbpedia.org/resource/Santa_Fe,_New_Mexico", "http://dbpedia.org/resource/Sheepshead_Bay,_Brooklyn", "http://dbpedia.org/resource/American_Fork,_Utah", "http://dbpedia.org/resource/Palm_Beach,_Florida", "http://dbpedia.org/resource/Queens", "http://dbpedia.org/resource/Glendale,_California", "http://dbpedia.org/resource/Marin_County,_California", "http://dbpedia.org/resource/Cambridge", "http://dbpedia.org/resource/Bedford,_Massachusetts", "http://dbpedia.org/resource/Hag\u00e5t\u00f1a,_Guam", "http://dbpedia.org/resource/Morristown,_Minnesota", "http://dbpedia.org/resource/Bristol,_Virginia", "http://dbpedia.org/resource/Yuma,_Arizona", "http://dbpedia.org/resource/Van_Buren,_Arkansas", "http://dbpedia.org/resource/Arkansas", "http://dbpedia.org/resource/Minden,_Iowa", "http://dbpedia.org/resource/Crkvice", "http://dbpedia.org/resource/Independent_State_of_Croatia", "http://dbpedia.org/resource/Norway", "http://dbpedia.org/resource/Trondheim", "http://dbpedia.org/resource/Knoxville,_Tennessee", "http://dbpedia.org/resource/Davis,_California", "http://dbpedia.org/resource/Camas,_Washington", "http://dbpedia.org/resource/Essex,_Massachusetts", "http://dbpedia.org/resource/Saugus,_Massachusetts", "http://dbpedia.org/resource/Harbor_Springs,_Michigan", "http://dbpedia.org/resource/Arlington,_Texas", "http://dbpedia.org/resource/Iowa_City,_Iowa", "http://dbpedia.org/resource/Swan's_Island,_Maine", "http://dbpedia.org/resource/Las_Vegas", "http://dbpedia.org/resource/Marrero,_Louisiana", "http://dbpedia.org/resource/Old_Lyme,_Connecticut", "http://dbpedia.org/resource/Lake_Forest,_Illinois", "http://dbpedia.org/resource/Mount_Dora,_Florida", "http://dbpedia.org/resource/Bloomington,_Indiana", "http://dbpedia.org/resource/Hudson,_New_Hampshire", "http://dbpedia.org/resource/The_Hague", "http://dbpedia.org/resource/Netherlands", "http://dbpedia.org/resource/Tuckahoe_(village),_New_York", "http://dbpedia.org/resource/Venice", "http://dbpedia.org/resource/Waterbury,_Connecticut", "http://dbpedia.org/resource/Kiamesha_Lake,_New_York", "http://dbpedia.org/resource/Butler,_New_Jersey", "http://dbpedia.org/resource/Sumner,_Mississippi", "http://dbpedia.org/resource/Saint_Vincent_and_the_Grenadines", "http://dbpedia.org/resource/Mustique", "http://dbpedia.org/resource/Auburn,_New_York", "http://dbpedia.org/resource/Chapel_Hill,_North_Carolina", "http://dbpedia.org/resource/Lincoln,_Nebraska", "http://dbpedia.org/resource/Northwood,_Iowa", "http://dbpedia.org/resource/Nice", "http://dbpedia.org/resource/South_Dakota", "http://dbpedia.org/resource/Huron,_South_Dakota", "http://dbpedia.org/resource/North_Fork,_California", "http://dbpedia.org/resource/Lake_Placid,_New_York", "http://dbpedia.org/resource/Highland_Park,_Texas", "http://dbpedia.org/resource/Dedham,_Massachusetts", "http://dbpedia.org/resource/Saanen", "http://dbpedia.org/resource/Canton_of_Bern", "http://dbpedia.org/resource/Englewood,_New_Jersey", "http://dbpedia.org/resource/Ramara", "http://dbpedia.org/resource/Irvington,_Virginia", "http://dbpedia.org/resource/Palos_Verdes_Estates,_California", "http://dbpedia.org/resource/Moncton", "http://dbpedia.org/resource/El_Paso,_Texas", "http://dbpedia.org/resource/West_Hills,_Los_Angeles", "http://dbpedia.org/resource/Le_Cannet", "http://dbpedia.org/resource/Poughkeepsie,_New_York", "http://dbpedia.org/resource/Centerville,_Massachusetts", "http://dbpedia.org/resource/La_Habra_Heights,_California", "http://dbpedia.org/resource/Wyckoff,_New_Jersey", "http://dbpedia.org/resource/Hampton_Court_Palace", "http://dbpedia.org/resource/Greater_London", "http://dbpedia.org/resource/Touques,_Calvados", "http://dbpedia.org/resource/Wauwatosa,_Wisconsin", "http://dbpedia.org/resource/Norman,_Oklahoma", "http://dbpedia.org/resource/Olathe,_Kansas", "http://dbpedia.org/resource/Redwood_City,_California", "http://dbpedia.org/resource/Munster,_Indiana", "http://dbpedia.org/resource/Peru", "http://dbpedia.org/resource/Paita", "http://dbpedia.org/resource/Bristol,_Rhode_Island", "http://dbpedia.org/resource/Miami_County,_Kansas", "http://dbpedia.org/resource/Vestavia_Hills,_Alabama", "http://dbpedia.org/resource/Belknap_County,_New_Hampshire", "http://dbpedia.org/resource/Lakeport,_New_Hampshire", "http://dbpedia.org/resource/Gainesville,_Florida", "http://dbpedia.org/resource/Zeeland", "http://dbpedia.org/resource/Clara,_Florida", "http://dbpedia.org/resource/Granby,_Colorado", "http://dbpedia.org/resource/Compton,_Maryland", "http://dbpedia.org/resource/Vicksburg,_Mississippi", "http://dbpedia.org/resource/New_Brighton,_Staten_Island", "http://dbpedia.org/resource/Kyoto", "http://dbpedia.org/resource/Petaluma,_California", "http://dbpedia.org/resource/Yonkers,_New_York", "http://dbpedia.org/resource/West_Hollywood,_California", "http://dbpedia.org/resource/Fairbanks,_Alaska", "http://dbpedia.org/resource/Orange,_California", "http://dbpedia.org/resource/Denmark", "http://dbpedia.org/resource/St._Ignace,_Michigan", "http://dbpedia.org/resource/Mammoth_Cave_National_Park", "http://dbpedia.org/resource/Johnson_City,_Tennessee", "http://dbpedia.org/resource/Woodward,_Oklahoma", "http://dbpedia.org/resource/Soddy-Daisy,_Tennessee", "http://dbpedia.org/resource/Florida_State_Prison", "http://dbpedia.org/resource/Raiford,_Florida", "http://dbpedia.org/resource/Los_Gatos,_California", "http://dbpedia.org/resource/Toulon", "http://dbpedia.org/resource/Albuquerque,_New_Mexico", "http://dbpedia.org/resource/Camden,_South_Carolina", "http://dbpedia.org/resource/Toms_River", "http://dbpedia.org/resource/Bolivar,_Tennessee", "http://dbpedia.org/resource/East_Sussex", "http://dbpedia.org/resource/Elmont,_New_York", "http://dbpedia.org/resource/Lockport_(city),_New_York", "http://dbpedia.org/resource/Santa_Barbara_County,_California", "http://dbpedia.org/resource/Cottonwood,_California", "http://dbpedia.org/resource/Tampa,_Florida", "http://dbpedia.org/resource/Howard_County,_Arkansas", "http://dbpedia.org/resource/Nashville,_Arkansas", "http://dbpedia.org/resource/Little_Compton,_Rhode_Island", "http://dbpedia.org/resource/Laurel,_Maryland", "http://dbpedia.org/resource/Lexington,_Kentucky", "http://dbpedia.org/resource/Fort_Thomas,_Kentucky", "http://dbpedia.org/resource/Elkhorn,_Wisconsin", "http://dbpedia.org/resource/New_Providence,_New_Jersey", "http://dbpedia.org/resource/Ellicott_City,_Maryland", "http://dbpedia.org/resource/Renton,_Washington", "http://dbpedia.org/resource/Hot_Springs,_Arkansas", "http://dbpedia.org/resource/Stony_Brook,_New_York", "http://dbpedia.org/resource/Kealakekua,_Hawaii", "http://dbpedia.org/resource/Port_Chester,_New_York", "http://dbpedia.org/resource/Horseshoe_Bay,_Texas", "http://dbpedia.org/resource/Carnegie,_Oklahoma", "http://dbpedia.org/resource/Roswell,_Georgia", "http://dbpedia.org/resource/Boise,_Idaho", "http://dbpedia.org/resource/Alexandria,_Louisiana", "http://dbpedia.org/resource/Northwest_Territories", "http://dbpedia.org/resource/Calgary", "http://dbpedia.org/resource/Peach_Springs,_Arizona", "http://dbpedia.org/resource/Caddo_Parish,_Louisiana", "http://dbpedia.org/resource/Allegany_(town),_New_York", "http://dbpedia.org/resource/Johnston,_Rhode_Island", "http://dbpedia.org/resource/Hampstead", "http://dbpedia.org/resource/Indian_Wells,_California", "http://dbpedia.org/resource/Upper_Montclair,_New_Jersey", "http://dbpedia.org/resource/Bronxville,_New_York", "http://dbpedia.org/resource/Harwich,_Massachusetts", "http://dbpedia.org/resource/Selma,_Alabama", "http://dbpedia.org/resource/Cagayan_de_Oro", "http://dbpedia.org/resource/Kingston,_New_York", "http://dbpedia.org/resource/Leisure_World,_Maryland", "http://dbpedia.org/resource/Henrico_County,_Virginia", "http://dbpedia.org/resource/Cheyenne,_Wyoming", "http://dbpedia.org/resource/Oro_Valley,_Arizona", "http://dbpedia.org/resource/Mexico_City", "http://dbpedia.org/resource/Easton,_Pennsylvania", "http://dbpedia.org/resource/Jacksonville,_Florida", "http://dbpedia.org/resource/South_Boston", "http://dbpedia.org/resource/San_Jos\u00e9,_Costa_Rica", "http://dbpedia.org/resource/Costa_Rica", "http://dbpedia.org/resource/Winter_Garden,_Florida", "http://dbpedia.org/resource/Keansburg,_New_Jersey", "http://dbpedia.org/resource/Damariscotta,_Maine", "http://dbpedia.org/resource/Alicante", "http://dbpedia.org/resource/Griffin,_Georgia", "http://dbpedia.org/resource/Eufaula,_Alabama", "http://dbpedia.org/resource/Chester_Borough,_New_Jersey", "http://dbpedia.org/resource/Rice,_Minnesota", "http://dbpedia.org/resource/Encino,_Los_Angeles", "http://dbpedia.org/resource/Hanover,_New_Hampshire", "http://dbpedia.org/resource/Draper,_Utah", "http://dbpedia.org/resource/Geneseo,_New_York", "http://dbpedia.org/resource/Carroll_County,_Arkansas", "http://dbpedia.org/resource/Eureka_Springs,_Arkansas", "http://dbpedia.org/resource/Malibu,_California", "http://dbpedia.org/resource/Shelburne,_Vermont", "http://dbpedia.org/resource/Needham,_Massachusetts", "http://dbpedia.org/resource/Georgetown,_Guyana", "http://dbpedia.org/resource/Guyana", "http://dbpedia.org/resource/Klamath_Falls,_Oregon", "http://dbpedia.org/resource/Henderson,_Nevada", "http://dbpedia.org/resource/Pine_Bluff,_Arkansas", "http://dbpedia.org/resource/Talkeetna,_Alaska", "http://dbpedia.org/resource/Garden_Grove,_California", "http://dbpedia.org/resource/Bigfork,_Montana", "http://dbpedia.org/resource/Fort_Madison,_Iowa", "http://dbpedia.org/resource/Bensalem_Township,_Pennsylvania", "http://dbpedia.org/resource/Idaho", "http://dbpedia.org/resource/River_Forest,_Illinois", "http://dbpedia.org/resource/Hobe_Sound,_Florida", "http://dbpedia.org/resource/Baja_California", "http://dbpedia.org/resource/Las_Vegas_Valley", "http://dbpedia.org/resource/2_World_Trade_Center", "http://dbpedia.org/resource/World_Trade_Center_(1973\u20132001)", "http://dbpedia.org/resource/Arapahoe_County,_Colorado", "http://dbpedia.org/resource/Rapid_City,_South_Dakota", "http://dbpedia.org/resource/Redmond,_Oregon", "http://dbpedia.org/resource/Hightstown,_New_Jersey", "http://dbpedia.org/resource/Tulsa,__Oklahoma", "http://dbpedia.org/resource/Prairie_Village,_Kansas", "http://dbpedia.org/resource/Sanok", "http://dbpedia.org/resource/Poland", "http://dbpedia.org/resource/Collin_County,_Texas", "http://dbpedia.org/resource/Sanaa", "http://dbpedia.org/resource/Yemen", "http://dbpedia.org/resource/Moline,_Illinois", "http://dbpedia.org/resource/Basel", "http://dbpedia.org/resource/Clonbur", "http://dbpedia.org/resource/Pulaski,_Virginia", "http://dbpedia.org/resource/Giddings,_Texas", "http://dbpedia.org/resource/Forest_Hills,_Queens", "http://dbpedia.org/resource/Cos_Cob,_Connecticut", "http://dbpedia.org/resource/Simi_Valley,_California", "http://dbpedia.org/resource/Dundalk,_Maryland", "http://dbpedia.org/resource/Valdosta,_Georgia", "http://dbpedia.org/resource/Murphys,_California", "http://dbpedia.org/resource/La_Crosse,_Wisconsin", "http://dbpedia.org/resource/Framingham,_Massachusetts", "http://dbpedia.org/resource/Concord,_New_Hampshire", "http://dbpedia.org/resource/Inverness,_Florida", "http://dbpedia.org/resource/San_Miguel_Island", "http://dbpedia.org/resource/Dracut,_Massachusetts", "http://dbpedia.org/resource/Summerlin,_Nevada", "http://dbpedia.org/resource/Sumter,_South_Carolina", "http://dbpedia.org/resource/Lynchburg,_Tennessee", "http://dbpedia.org/resource/Eagle_River,_Wisconsin", "http://dbpedia.org/resource/Holyoke,_Massachusetts", "http://dbpedia.org/resource/Coralville,_Iowa", "http://dbpedia.org/resource/Pueblo,_Colorado", "http://dbpedia.org/resource/Smyrna,_Tennessee", "http://dbpedia.org/resource/Steamboat_Rock,_Iowa", "http://dbpedia.org/resource/Clinton,_Massachusetts", "http://dbpedia.org/resource/Longwood,_Florida", "http://dbpedia.org/resource/Blue_Point,_New_York", "http://dbpedia.org/resource/Scottsbluff,_Nebraska", "http://dbpedia.org/resource/Daytona_Beach,_Florida", "http://dbpedia.org/resource/Aurora,_Illinois", "http://dbpedia.org/resource/San_Carlos,_California", "http://dbpedia.org/resource/Fort_Rock,_Oregon", "http://dbpedia.org/resource/Huntsville,_Alabama", "http://dbpedia.org/resource/San_Juan,_Puerto_Rico", "http://dbpedia.org/resource/Puerto_Rico", "http://dbpedia.org/resource/Wilberforce,_Ohio", "http://dbpedia.org/resource/Le_Havre", "http://dbpedia.org/resource/Chino,_California", "http://dbpedia.org/resource/Atlantis,_Florida", "http://dbpedia.org/resource/Oskaloosa,_Kansas", "http://dbpedia.org/resource/Cockeysville,_Maryland", "http://dbpedia.org/resource/Canton,_Mississippi", "http://dbpedia.org/resource/Escondido,_California", "http://dbpedia.org/resource/Vienna,_Georgia", "http://dbpedia.org/resource/Puako,_Hawaii", "http://dbpedia.org/resource/Fort_Smith,_Arkansas", "http://dbpedia.org/resource/Waddington,_New_York", "http://dbpedia.org/resource/Kensington,_New_Hampshire", "http://dbpedia.org/resource/Pacoima,_Los_Angeles", "http://dbpedia.org/resource/Havana", "http://dbpedia.org/resource/Cuba", "http://dbpedia.org/resource/Rockville,_Indiana", "http://dbpedia.org/resource/Kenner,_Louisiana", "http://dbpedia.org/resource/Dodge_City,_Kansas", "http://dbpedia.org/resource/Toronto", "http://dbpedia.org/resource/Ontario", "http://dbpedia.org/resource/Carol_Stream,_Illinois", "http://dbpedia.org/resource/Cascade,_Idaho", "http://dbpedia.org/resource/Wakefield,_Rhode_Island", "http://dbpedia.org/resource/Tamaulipas", "http://dbpedia.org/resource/Reynosa", "http://dbpedia.org/resource/Mount_Kisco,_New_York", "http://dbpedia.org/resource/East_Rockaway,_New_York", "http://dbpedia.org/resource/Haifa", "http://dbpedia.org/resource/Israel", "http://dbpedia.org/resource/Leverett,_Massachusetts", "http://dbpedia.org/resource/West_Lafayette,_Indiana", "http://dbpedia.org/resource/Chester,_Connecticut", "http://dbpedia.org/resource/South_Berwick,_Maine", "http://dbpedia.org/resource/Annapolis,_Maryland", "http://dbpedia.org/resource/Lawrenceville,_Virginia", "http://dbpedia.org/resource/Leonia,_New_Jersey", "http://dbpedia.org/resource/Maplewood,_New_Jersey", "http://dbpedia.org/resource/Northridge,_Los_Angeles", "http://dbpedia.org/resource/Peoria,_Arizona", "http://dbpedia.org/resource/Sea_Ranch,_California", "http://dbpedia.org/resource/Line_Lexington,_Pennsylvania", "http://dbpedia.org/resource/German_Empire", "http://dbpedia.org/resource/Hildesheim", "http://dbpedia.org/resource/Lower_Saxony", "http://dbpedia.org/resource/Lincoln_Parish,_Louisiana", "http://dbpedia.org/resource/Ruston,_Louisiana", "http://dbpedia.org/resource/Clifton_Forge,_Virginia", "http://dbpedia.org/resource/Delphi,_Indiana", "http://dbpedia.org/resource/Fairfield,_Connecticut", "http://dbpedia.org/resource/Midland,_Texas", "http://dbpedia.org/resource/Rapides_Parish,_Louisiana", "http://dbpedia.org/resource/Sawtelle,_Los_Angeles", "http://dbpedia.org/resource/Hudson,_Texas", "http://dbpedia.org/resource/Englewood,_Florida", "http://dbpedia.org/resource/Coronado,_California", "http://dbpedia.org/resource/Montezuma,_New_York", "http://dbpedia.org/resource/Salem,_Oregon", "http://dbpedia.org/resource/Riverside_County,_California", "http://dbpedia.org/resource/Pulaski_County,_Arkansas", "http://dbpedia.org/resource/Cedar_Rapids,_Iowa", "http://dbpedia.org/resource/South_Tyrol", "http://dbpedia.org/resource/Winchester,_Virginia", "http://dbpedia.org/resource/Ossining_(village),_New_York", "http://dbpedia.org/resource/Aiken,_South_Carolina", "http://dbpedia.org/resource/Shaker_Heights,_Ohio", "http://dbpedia.org/resource/Easthampton,_Massachusetts", "http://dbpedia.org/resource/Brunswick,_Maine", "http://dbpedia.org/resource/Alokolum", "http://dbpedia.org/resource/Uganda", "http://dbpedia.org/resource/Gulu", "http://dbpedia.org/resource/Globe,_Arizona", "http://dbpedia.org/resource/Wilkinsburg,_Pennsylvania", "http://dbpedia.org/resource/Tustin,_California", "http://dbpedia.org/resource/Darlinghurst,_New_South_Wales", "http://dbpedia.org/resource/Ashland,_Kentucky", "http://dbpedia.org/resource/Missoula,_Montana", "http://dbpedia.org/resource/Duluth,_Minnesota", "http://dbpedia.org/resource/Cambridge,_Maryland", "http://dbpedia.org/resource/South_Kingstown,_Rhode_Island", "http://dbpedia.org/resource/Cranston,_Rhode_Island", "http://dbpedia.org/resource/West_Los_Angeles", "http://dbpedia.org/resource/Pinewood,_South_Carolina", "http://dbpedia.org/resource/Richland_County,_South_Carolina", "http://dbpedia.org/resource/Frederick,_Maryland", "http://dbpedia.org/resource/Rockingham_County,_Virginia", "http://dbpedia.org/resource/Madison,_Nebraska", "http://dbpedia.org/resource/Albia,_Iowa", "http://dbpedia.org/resource/La_Crescenta-Montrose,_California", "http://dbpedia.org/resource/Burial_at_sea", "http://dbpedia.org/resource/Pacific_Ocean", "http://dbpedia.org/resource/Waikiki", "http://dbpedia.org/resource/Springettsbury_Township,_York_County,_Pennsylvania", "http://dbpedia.org/resource/Marietta,_Georgia", "http://dbpedia.org/resource/Michigan_Territory", "http://dbpedia.org/resource/Niles,_Michigan", "http://dbpedia.org/resource/Palm_Bay,_Florida", "http://dbpedia.org/resource/Amberley,_West_Sussex", "http://dbpedia.org/resource/Warrensburg,_Missouri", "http://dbpedia.org/resource/Scarborough,_Maine", "http://dbpedia.org/resource/Papal_States", "http://dbpedia.org/resource/Second_French_Empire", "http://dbpedia.org/resource/Grafton_County,_New_Hampshire", "http://dbpedia.org/resource/Hilton_Head_Island,_South_Carolina", "http://dbpedia.org/resource/Fruitvale,_Oakland,_California", "http://dbpedia.org/resource/Charlotte,_North_Carolina", "http://dbpedia.org/resource/Westmoreland,_New_Hampshire", "http://dbpedia.org/resource/Cheshire_County,_New_Hampshire", "http://dbpedia.org/resource/Columbia_University_Irving_Medical_Center", "http://dbpedia.org/resource/Montgomery,_West_Virginia", "http://dbpedia.org/resource/King,_Waupaca_County,_Wisconsin", "http://dbpedia.org/resource/Strafford_County,_New_Hampshire", "http://dbpedia.org/resource/Farmington,_New_Hampshire", "http://dbpedia.org/resource/Washington,_New_Hampshire", "http://dbpedia.org/resource/Sullivan_County,_New_Hampshire", "http://dbpedia.org/resource/Urbana,_Illinois", "http://dbpedia.org/resource/Brighton,_Boston", "http://dbpedia.org/resource/Havre_de_Grace,_Maryland", "http://dbpedia.org/resource/Butte,_Montana", "http://dbpedia.org/resource/Setauket,_New_York", "http://dbpedia.org/resource/Berkeley_Springs,_West_Virginia", "http://dbpedia.org/resource/Germantown,_Philadelphia", "http://dbpedia.org/resource/Newton,_Massachusetts", "http://dbpedia.org/resource/Liloy", "http://dbpedia.org/resource/Playa_del_Carmen", "http://dbpedia.org/resource/Great_Bend,_Kansas", "http://dbpedia.org/resource/Castro_Valley,_California", "http://dbpedia.org/resource/New_Hebrides", "http://dbpedia.org/resource/Mount_Pleasant,_Iowa", "http://dbpedia.org/resource/Deerfield,_New_Hampshire", "http://dbpedia.org/resource/Rockingham_County,_New_Hampshire", "http://dbpedia.org/resource/Prescott,_Arizona", "http://dbpedia.org/resource/Piedmont_Hospital", "http://dbpedia.org/resource/Carson,_California", "http://dbpedia.org/resource/Watertown,_Wisconsin", "http://dbpedia.org/resource/East_Aurora,_New_York", "http://dbpedia.org/resource/Berkeley_Heights,_New_Jersey", "http://dbpedia.org/resource/Cathlamet,_Washington", "http://dbpedia.org/resource/Banaue_Rice_Terraces", "http://dbpedia.org/resource/Ifugao", "http://dbpedia.org/resource/Cannes", "http://dbpedia.org/resource/Oxford,_Georgia", "http://dbpedia.org/resource/McAlester,_Oklahoma", "http://dbpedia.org/resource/Oklahoma_State_Penitentiary", "http://dbpedia.org/resource/Kalamazoo,_Michigan", "http://dbpedia.org/resource/Springfield,_Missouri", "http://dbpedia.org/resource/Berwyn,_Pennsylvania", "http://dbpedia.org/resource/Laguna_Beach,_California", "http://dbpedia.org/resource/West_Virginia_Penitentiary", "http://dbpedia.org/resource/Moundsville,_West_Virginia", "http://dbpedia.org/resource/New_Hyde_Park,_New_York", "http://dbpedia.org/resource/Thousand_Palms,_California", "http://dbpedia.org/resource/Bala_Cynwyd,_Pennsylvania", "http://dbpedia.org/resource/Rockville,_Maryland", "http://dbpedia.org/resource/Woodburn,_Oregon", "http://dbpedia.org/resource/Utah_State_Prison", "http://dbpedia.org/resource/Madison,_Tennessee", "http://dbpedia.org/resource/Maywood,_Illinois", "http://dbpedia.org/resource/Palo_Alto,_California", "http://dbpedia.org/resource/Boto\u0219ani", "http://dbpedia.org/resource/Kingdom_of_Romania", "http://dbpedia.org/resource/New_Rochelle,_New_York", "http://dbpedia.org/resource/Cap-Rouge,_Quebec_City", "http://dbpedia.org/resource/Genesee_County,_New_York", "http://dbpedia.org/resource/Potter_County,_Texas", "http://dbpedia.org/resource/Waterproof,_Louisiana", "http://dbpedia.org/resource/Lufkin,_Texas", "http://dbpedia.org/resource/Bryn_Mawr,_Pennsylvania", "http://dbpedia.org/resource/Narragansett,_Rhode_Island", "http://dbpedia.org/resource/Lazio", "http://dbpedia.org/resource/Mercer_County,_West_Virginia", "http://dbpedia.org/resource/Salem,_Virginia", "http://dbpedia.org/resource/Chatsworth,_Los_Angeles", "http://dbpedia.org/resource/Aberdeen,_Washington", "http://dbpedia.org/resource/Spearfish_Canyon", "http://dbpedia.org/resource/Rancho_Mirage,_California", "http://dbpedia.org/resource/Glen_Ellen,_California", "http://dbpedia.org/resource/Rancho_Palos_Verdes,_California", "http://dbpedia.org/resource/Boone,_Iowa", "http://dbpedia.org/resource/Glen_Burnie,_Maryland", "http://dbpedia.org/resource/Lawrence,_Kansas", "http://dbpedia.org/resource/Maplewood,_Minnesota", "http://dbpedia.org/resource/Sevier,_Utah", "http://dbpedia.org/resource/Geneva", "http://dbpedia.org/resource/Brownsville,_Brooklyn", "http://dbpedia.org/resource/Alaska_Airlines_Flight_261", "http://dbpedia.org/resource/Bozeman,_Montana", "http://dbpedia.org/resource/Rogers,_Arkansas", "http://dbpedia.org/resource/Grand_Forks,_North_Dakota", "http://dbpedia.org/resource/Brooksville,_Florida", "http://dbpedia.org/resource/Union_Township,_Clermont_County,_Ohio", "http://dbpedia.org/resource/Clermont_County,_Ohio", "http://dbpedia.org/resource/Santa_Clara,_California", "http://dbpedia.org/resource/Washington_Heights,_Manhattan", "http://dbpedia.org/resource/Grove_City,_Ohio", "http://dbpedia.org/resource/Venango_County,_Pennsylvania", "http://dbpedia.org/resource/Rockland_Township,_Venango_County,_Pennsylvania", "http://dbpedia.org/resource/Gloucester_Courthouse,_Virginia", "http://dbpedia.org/resource/Clayton,_Missouri", "http://dbpedia.org/resource/Hamilton,_Ohio", "http://dbpedia.org/resource/Afghanistan", "http://dbpedia.org/resource/Kabul", "http://dbpedia.org/resource/Groton,_Connecticut", "http://dbpedia.org/resource/Glenwood_Springs,_Colorado", "http://dbpedia.org/resource/New_Britain,_Connecticut", "http://dbpedia.org/resource/Oak_Grove,_Oregon", "http://dbpedia.org/resource/Elmhurst,_Queens", "http://dbpedia.org/resource/Natick,_Massachusetts", "http://dbpedia.org/resource/NYU_Langone_Hospital_\u2013_Long_Island", "http://dbpedia.org/resource/Mineola,_New_York", "http://dbpedia.org/resource/Douglas,_Michigan", "http://dbpedia.org/resource/Metropolitan_Transition_Center", "http://dbpedia.org/resource/Kansas_City,_Kansas", "http://dbpedia.org/resource/Spokane,_Washington", "http://dbpedia.org/resource/Vineyard_Haven,_Massachusetts", "http://dbpedia.org/resource/St._Clair_County,_Missouri", "http://dbpedia.org/resource/Egypt,_Wharton_County,_Texas", "http://dbpedia.org/resource/Louisiana_State_Penitentiary", "http://dbpedia.org/resource/West_Feliciana_Parish,_Louisiana", "http://dbpedia.org/resource/Port_St._Lucie,_Florida", "http://dbpedia.org/resource/Alameda,_California", "http://dbpedia.org/resource/Rising_Sun,_Indiana", "http://dbpedia.org/resource/Cambridge_City,_Indiana", "http://dbpedia.org/resource/Galt,_Ontario", "http://dbpedia.org/resource/Nashville,_Indiana", "http://dbpedia.org/resource/Warsaw", "http://dbpedia.org/resource/Wymore,_Nebraska", "http://dbpedia.org/resource/Kalispell,_Montana", "http://dbpedia.org/resource/St._Moritz", "http://dbpedia.org/resource/Brazil", "http://dbpedia.org/resource/Harlem", "http://dbpedia.org/resource/Carnegie,_Pennsylvania", "http://dbpedia.org/resource/Goleta,_California", "http://dbpedia.org/resource/Middletown,_Ohio", "http://dbpedia.org/resource/Southampton_(village),_New_York", "http://dbpedia.org/resource/Burien,_Washington", "http://dbpedia.org/resource/Kamagaya", "http://dbpedia.org/resource/Heathsville,_Virginia", "http://dbpedia.org/resource/San_Rafael,_California", "http://dbpedia.org/resource/Meadow_Vista,_California", "http://dbpedia.org/resource/Lake_Tahoe", "http://dbpedia.org/resource/Richlands,_Virginia", "http://dbpedia.org/resource/Mishawaka,_Indiana", "http://dbpedia.org/resource/Mount_Tamalpais", "http://dbpedia.org/resource/Katonah,_New_York", "http://dbpedia.org/resource/Clarksville,_Tennessee", "http://dbpedia.org/resource/Springville,_Utah", "http://dbpedia.org/resource/Lafayette,_Indiana", "http://dbpedia.org/resource/Tippecanoe_County,_Indiana", "http://dbpedia.org/resource/San_Pedro,_Los_Angeles", "http://dbpedia.org/resource/Parma", "http://dbpedia.org/resource/Wyoming,_Ohio", "http://dbpedia.org/resource/Columbia,_Maryland", "http://dbpedia.org/resource/Summit,_Waukesha_County,_Wisconsin", "http://dbpedia.org/resource/West_Harwich,_Massachusetts", "http://dbpedia.org/resource/Suffern,_New_York", "http://dbpedia.org/resource/Las_Cruces,_New_Mexico", "http://dbpedia.org/resource/Monroe,_Louisiana", "http://dbpedia.org/resource/Westwood,_Massachusetts", "http://dbpedia.org/resource/Spartanburg,_South_Carolina", "http://dbpedia.org/resource/Buckfield,_Maine", "http://dbpedia.org/resource/Marysville,_Washington", "http://dbpedia.org/resource/Carson_City,_Nevada", "http://dbpedia.org/resource/Mazatl\u00e1n", "http://dbpedia.org/resource/Sinaloa", "http://dbpedia.org/resource/St._Francisville,_Louisiana", "http://dbpedia.org/resource/Mumbai", "http://dbpedia.org/resource/Charlemont,_Massachusetts", "http://dbpedia.org/resource/Eatontown,_New_Jersey", "http://dbpedia.org/resource/North_Newton,_Kansas", "http://dbpedia.org/resource/Grand_Junction,_Colorado", "http://dbpedia.org/resource/Santa_Paula,_California", "http://dbpedia.org/resource/Chiswick", "http://dbpedia.org/resource/Boulder,_Colorado", "http://dbpedia.org/resource/Ottumwa,_Iowa", "http://dbpedia.org/resource/Dartmouth,_Nova_Scotia", "http://dbpedia.org/resource/Walla_Walla,_Washington", "http://dbpedia.org/resource/Washington_State_Penitentiary", "http://dbpedia.org/resource/Scott_County,_Virginia", "http://dbpedia.org/resource/Old_Saybrook,_Connecticut", "http://dbpedia.org/resource/Cinebar,_Washington", "http://dbpedia.org/resource/Meridian,_Georgia", "http://dbpedia.org/resource/Utica,_New_York", "http://dbpedia.org/resource/Virginia_Beach,_Virginia", "http://dbpedia.org/resource/Boca_Grande,_Florida", "http://dbpedia.org/resource/Avon,_New_York", "http://dbpedia.org/resource/Ushuaia", "http://dbpedia.org/resource/Argentina", "http://dbpedia.org/resource/Montpelier,_Vermont", "http://dbpedia.org/resource/Reidsville,_North_Carolina", "http://dbpedia.org/resource/Radford,_Virginia", "http://dbpedia.org/resource/Essex,_Connecticut", "http://dbpedia.org/resource/Fairfax,_California", "http://dbpedia.org/resource/Zawoja", "http://dbpedia.org/resource/Reading,_Pennsylvania", "http://dbpedia.org/resource/Ranger_Peak_(Wyoming)", "http://dbpedia.org/resource/Wyoming", "http://dbpedia.org/resource/Ventura,_California", "http://dbpedia.org/resource/Berlin", "http://dbpedia.org/resource/Los_Alamitos,_California", "http://dbpedia.org/resource/Berea,_Kentucky", "http://dbpedia.org/resource/Cedar_Lake,_Indiana", "http://dbpedia.org/resource/Kandahar_Province", "http://dbpedia.org/resource/Vero_Beach,_Florida", "http://dbpedia.org/resource/Vernon,_Indiana", "http://dbpedia.org/resource/Del_Mar,_California", "http://dbpedia.org/resource/Onondaga_County,_New_York", "http://dbpedia.org/resource/Fremont,_California", "http://dbpedia.org/resource/Palatine,_Illinois", "http://dbpedia.org/resource/Hollywood_Hills", "http://dbpedia.org/resource/Jasper,_Alabama", "http://dbpedia.org/resource/Commerce_City,_Colorado", "http://dbpedia.org/resource/Karlsruhe", "http://dbpedia.org/resource/Topanga,_California", "http://dbpedia.org/resource/Wolfeboro,_New_Hampshire", "http://dbpedia.org/resource/Sheridan,_Wyoming", "http://dbpedia.org/resource/Claremont,_New_Hampshire", "http://dbpedia.org/resource/Mandaluyong", "http://dbpedia.org/resource/Newark,_New_Jersey", "http://dbpedia.org/resource/Rye,_New_York", "http://dbpedia.org/resource/Lakewood_Township,_New_Jersey", "http://dbpedia.org/resource/Nevada_State_Prison", "http://dbpedia.org/resource/Studio_City,_Los_Angeles", "http://dbpedia.org/resource/Seoul", "http://dbpedia.org/resource/South_Korea", "http://dbpedia.org/resource/Guilford,_Connecticut", "http://dbpedia.org/resource/Winchester,_Tennessee", "http://dbpedia.org/resource/Lubec,_Maine", "http://dbpedia.org/resource/Windsor,_Vermont", "http://dbpedia.org/resource/Winnemucca,_Nevada", "http://dbpedia.org/resource/Lambertville,_New_Jersey", "http://dbpedia.org/resource/Victoria,_Texas", "http://dbpedia.org/resource/Eau_Claire_County,_Wisconsin", "http://dbpedia.org/resource/Territory_of_Hawaii", "http://dbpedia.org/resource/Helena,_Arkansas", "http://dbpedia.org/resource/Tabriz", "http://dbpedia.org/resource/Qajar_Iran", "http://dbpedia.org/resource/East_Azerbaijan_province", "http://dbpedia.org/resource/Duarte,_California", "http://dbpedia.org/resource/Ocean_Parkway_(Brooklyn)", "http://dbpedia.org/resource/Tabernacle_Township,_New_Jersey", "http://dbpedia.org/resource/Pinelands_National_Reserve", "http://dbpedia.org/resource/Vienna,_Virginia", "http://dbpedia.org/resource/Thompson,_Connecticut", "http://dbpedia.org/resource/Saugatuck,_Michigan", "http://dbpedia.org/resource/Little_Silver,_New_Jersey", "http://dbpedia.org/resource/Custer,_South_Dakota", "http://dbpedia.org/resource/Hilo,_Hawaii", "http://dbpedia.org/resource/East_Bridgewater,_Massachusetts", "http://dbpedia.org/resource/Homer,_Minnesota", "http://dbpedia.org/resource/Frankfort,_Kentucky", "http://dbpedia.org/resource/Pierce_County,_Washington", "http://dbpedia.org/resource/Park_County,_Wyoming", "http://dbpedia.org/resource/Cody,_Wyoming", "http://dbpedia.org/resource/Dyersburg,_Tennessee", "http://dbpedia.org/resource/San_Mateo_County,_California", "http://dbpedia.org/resource/Jamaica,_Queens", "http://dbpedia.org/resource/Cloquet,_Minnesota", "http://dbpedia.org/resource/Kaysville,_Utah", "http://dbpedia.org/resource/Parkersburg,_West_Virginia", "http://dbpedia.org/resource/Visings\u00f6", "http://dbpedia.org/resource/Old_Westbury,_New_York", "http://dbpedia.org/resource/Norridgewock,_Maine", "http://dbpedia.org/resource/Crittenden_County,_Arkansas", "http://dbpedia.org/resource/Hastings-on-Hudson,_New_York", "http://dbpedia.org/resource/Presidencies_and_provinces_of_British_India", "http://dbpedia.org/resource/Ledo", "http://dbpedia.org/resource/Boynton_Beach,_Florida", "http://dbpedia.org/resource/Mount_Prospect,_Illinois", "http://dbpedia.org/resource/Thailand", "http://dbpedia.org/resource/Bangkok", "http://dbpedia.org/resource/San_Luis_Obispo,_California", "http://dbpedia.org/resource/Lakewood,_Colorado", "http://dbpedia.org/resource/Greenville,_South_Carolina", "http://dbpedia.org/resource/Passaic,_New_Jersey", "http://dbpedia.org/resource/Rosemont,_Illinois", "http://dbpedia.org/resource/Mediterranean_Sea", "http://dbpedia.org/resource/Spotsylvania_County,_Virginia", "http://dbpedia.org/resource/Clear_Lake,_Iowa", "http://dbpedia.org/resource/Morningside_Heights", "http://dbpedia.org/resource/Devon", "http://dbpedia.org/resource/Dartington_Hall", "http://dbpedia.org/resource/Encinitas,_California", "http://dbpedia.org/resource/Smithtown,_New_York", "http://dbpedia.org/resource/Royalton,_Vermont", "http://dbpedia.org/resource/York_Harbor,_Maine", "http://dbpedia.org/resource/Vancouver", "http://dbpedia.org/resource/Kapaa,_Hawaii", "http://dbpedia.org/resource/Garland,_Texas", "http://dbpedia.org/resource/Steamboat_Springs,_Colorado", "http://dbpedia.org/resource/Dormont,_Pennsylvania", "http://dbpedia.org/resource/Harris_County,_Texas", "http://dbpedia.org/resource/Willits,_California", "http://dbpedia.org/resource/Newland,_North_Carolina", "http://dbpedia.org/resource/Pound_Ridge,_New_York", "http://dbpedia.org/resource/Sun_City,_Menifee,_California", "http://dbpedia.org/resource/Avon,_Connecticut", "http://dbpedia.org/resource/Georgetown,_California", "http://dbpedia.org/resource/St_Leonards-on-Sea", "http://dbpedia.org/resource/Water_Mill,_New_York", "http://dbpedia.org/resource/Suffolk_County,_New_York", "http://dbpedia.org/resource/Angeles_City", "http://dbpedia.org/resource/Grenoble", "http://dbpedia.org/resource/Travis_County,_Texas", "http://dbpedia.org/resource/Chechnya", "http://dbpedia.org/resource/Russia", "http://dbpedia.org/resource/Kingston,_New_Jersey", "http://dbpedia.org/resource/Sonoma_County,_California", "http://dbpedia.org/resource/Rancho_Sotoyome", "http://dbpedia.org/resource/Dayville_(CDP),_Connecticut", "http://dbpedia.org/resource/Feasterville,_Pennsylvania", "http://dbpedia.org/resource/Winchester,_Nevada", "http://dbpedia.org/resource/Arizona_State_Prison_Complex_\u2013_Florence", "http://dbpedia.org/resource/Florence,_Arizona", "http://dbpedia.org/resource/Gwinnett_County,_Georgia", "http://dbpedia.org/resource/Farmington,_Connecticut", "http://dbpedia.org/resource/Oslo", "http://dbpedia.org/resource/Devon,_Pennsylvania", "http://dbpedia.org/resource/Hoosick_Falls,_New_York", "http://dbpedia.org/resource/Barrington,_Rhode_Island", "http://dbpedia.org/resource/Orange_County,_Florida", "http://dbpedia.org/resource/West_Columbia,_South_Carolina", "http://dbpedia.org/resource/Cyprus", "http://dbpedia.org/resource/Nicosia", "http://dbpedia.org/resource/Trabuco_Canyon,_California", "http://dbpedia.org/resource/Freeland,_Washington", "http://dbpedia.org/resource/Natchitoches,_Louisiana", "http://dbpedia.org/resource/Santiago", "http://dbpedia.org/resource/Chile", "http://dbpedia.org/resource/Keaau,_Hawaii", "http://dbpedia.org/resource/Pontiac,_Michigan", "http://dbpedia.org/resource/Chaffee,_Missouri", "http://dbpedia.org/resource/Morristown,_Vermont", "http://dbpedia.org/resource/Don_Jail", "http://dbpedia.org/resource/Ashdown,_Arkansas", "http://dbpedia.org/resource/Pana,_Illinois", "http://dbpedia.org/resource/Glendora,_California", "http://dbpedia.org/resource/Mystic,_Connecticut", "http://dbpedia.org/resource/New_Milford,_Connecticut", "http://dbpedia.org/resource/Pasig", "http://dbpedia.org/resource/Fulton_County,_Georgia", "http://dbpedia.org/resource/St._Peter,_Minnesota", "http://dbpedia.org/resource/Wakefield,_Massachusetts", "http://dbpedia.org/resource/Faribault,_Minnesota", "http://dbpedia.org/resource/Warren_County,_Mississippi", "http://dbpedia.org/resource/Appleton,_Wisconsin", "http://dbpedia.org/resource/Racine,_Wisconsin", "http://dbpedia.org/resource/Mantua_Township,_New_Jersey", "http://dbpedia.org/resource/Ames,_Iowa", "http://dbpedia.org/resource/Front_Royal,_Virginia", "http://dbpedia.org/resource/Biddle,_Montana", "http://dbpedia.org/resource/Flagstaff,_Arizona", "http://dbpedia.org/resource/Washington_County,_Oregon", "http://dbpedia.org/resource/Menands,_New_York", "http://dbpedia.org/resource/Delafield,_Wisconsin", "http://dbpedia.org/resource/Name_of_Canada", "http://dbpedia.org/resource/Windsor,_Ontario", "http://dbpedia.org/resource/Sulphur,_Louisiana", "http://dbpedia.org/resource/Ben_Taub_Hospital", "http://dbpedia.org/resource/Belvidere,_New_Jersey", "http://dbpedia.org/resource/Augusta_County,_Virginia", "http://dbpedia.org/resource/Gaston_County,_North_Carolina", "http://dbpedia.org/resource/Blue_Hill,_Maine", "http://dbpedia.org/resource/Bavaria", "http://dbpedia.org/resource/West_Germany", "http://dbpedia.org/resource/Pecos,_New_Mexico", "http://dbpedia.org/resource/Ann_Arbor,_Michigan", "http://dbpedia.org/resource/Menominee,_Michigan", "http://dbpedia.org/resource/Columbus,_Indiana", "http://dbpedia.org/resource/Streatham", "http://dbpedia.org/resource/Quincy,_Illinois", "http://dbpedia.org/resource/Carroll_County,_Virginia", "http://dbpedia.org/resource/Weatherford,_Texas", "http://dbpedia.org/resource/St._Tammany_Parish,_Louisiana", "http://dbpedia.org/resource/Hendersonville,_Tennessee", "http://dbpedia.org/resource/Wasilla,_Alaska", "http://dbpedia.org/resource/Terra_Alta,_West_Virginia", "http://dbpedia.org/resource/Panorama_City,_Los_Angeles", "http://dbpedia.org/resource/Oxford_Township,_Butler_County,_Ohio", "http://dbpedia.org/resource/Kilby_Correctional_Facility", "http://dbpedia.org/resource/Panama", "http://dbpedia.org/resource/Panama_City", "http://dbpedia.org/resource/Crookston,_Minnesota", "http://dbpedia.org/resource/March_Air_Reserve_Base", "http://dbpedia.org/resource/East_Meadow,_New_York", "http://dbpedia.org/resource/Eagle_Lake,_Texas", "http://dbpedia.org/resource/Tullahoma,_Tennessee", "http://dbpedia.org/resource/Port_Alberni", "http://dbpedia.org/resource/South_Brooklyn", "http://dbpedia.org/resource/Akron,_Ohio", "http://dbpedia.org/resource/Montclair,_New_Jersey", "http://dbpedia.org/resource/Royal_Oak,_Maryland", "http://dbpedia.org/resource/Lanham,_Maryland", "http://dbpedia.org/resource/Sibley,_Iowa", "http://dbpedia.org/resource/South_Bend,_Indiana", "http://dbpedia.org/resource/Clarence,_New_York", "http://dbpedia.org/resource/Victoria,_British_Columbia", "http://dbpedia.org/resource/Leavenworth,_Kansas", "http://dbpedia.org/resource/Cummins_Unit", "http://dbpedia.org/resource/Lincoln_County,_Arkansas", "http://dbpedia.org/resource/United_Kingdom_of_Great_Britain_and_Ireland", "http://dbpedia.org/resource/Ealing", "http://dbpedia.org/resource/Plymouth,_New_Hampshire", "http://dbpedia.org/resource/Bensonhurst,_Brooklyn", "http://dbpedia.org/resource/Contra_Costa_County,_California", "http://dbpedia.org/resource/Signal_Mountain,_Tennessee", "http://dbpedia.org/resource/Hurst,_Texas", "http://dbpedia.org/resource/Mountain_View,_California", "http://dbpedia.org/resource/Southampton,_New_York", "http://dbpedia.org/resource/El_Cerrito,_California", "http://dbpedia.org/resource/Hyde_Park,_New_York", "http://dbpedia.org/resource/Lenexa,_Kansas", "http://dbpedia.org/resource/Montecito,_California", "http://dbpedia.org/resource/Williston,_Tennessee", "http://dbpedia.org/resource/Mitchellville,_Maryland", "http://dbpedia.org/resource/St._Joseph,_Missouri", "http://dbpedia.org/resource/Elgin,_Illinois", "http://dbpedia.org/resource/Scottsdale,_Arizona", "http://dbpedia.org/resource/Louisville,_Colorado", "http://dbpedia.org/resource/Chula_Vista,_California", "http://dbpedia.org/resource/Atmore,_Alabama", "http://dbpedia.org/resource/Holman_Correctional_Facility", "http://dbpedia.org/resource/Lancashire", "http://dbpedia.org/resource/Rochdale", "http://dbpedia.org/resource/Ludington,_Michigan", "http://dbpedia.org/resource/Tazewell,_Virginia", "http://dbpedia.org/resource/Traverse_City,_Michigan", "http://dbpedia.org/resource/Narragansett_Pier,_Rhode_Island", "http://dbpedia.org/resource/Suffolk,_Virginia", "http://dbpedia.org/resource/Woodside,_California", "http://dbpedia.org/resource/Salinas,_California", "http://dbpedia.org/resource/Okauchee_Lake,_Wisconsin", "http://dbpedia.org/resource/Decatur,_Illinois", "http://dbpedia.org/resource/Dry_Branch,_Georgia", "http://dbpedia.org/resource/Far_Hills,_New_Jersey", "http://dbpedia.org/resource/Moscow,_Idaho", "http://dbpedia.org/resource/Bristol,_Maine", "http://dbpedia.org/resource/Terrell,_Texas", "http://dbpedia.org/resource/Saranac_Lake,_New_York", "http://dbpedia.org/resource/Apalachin,_New_York", "http://dbpedia.org/resource/Kensington,_Maryland", "http://dbpedia.org/resource/Erie,_Pennsylvania", "http://dbpedia.org/resource/Clintwood,_Virginia", "http://dbpedia.org/resource/Jackson_Heights,_Queens", "http://dbpedia.org/resource/Bossier_City,_Louisiana", "http://dbpedia.org/resource/Readsboro,_Vermont", "http://dbpedia.org/resource/Grove_Hill,_Alabama", "http://dbpedia.org/resource/Newport,_Arkansas", "http://dbpedia.org/resource/Milwaukie,_Oregon", "http://dbpedia.org/resource/Boulder_City,_Nevada", "http://dbpedia.org/resource/Perth_Amboy,_New_Jersey", "http://dbpedia.org/resource/Marlin,_Texas", "http://dbpedia.org/resource/Marion,_Illinois", "http://dbpedia.org/resource/Staunton,_Virginia", "http://dbpedia.org/resource/Brooklyn_Naval_Hospital", "http://dbpedia.org/resource/Mentor,_Ohio", "http://dbpedia.org/resource/Gaylordsville,_Connecticut", "http://dbpedia.org/resource/Alamo,_Nevada", "http://dbpedia.org/resource/Cuyahoga_Falls,_Ohio", "http://dbpedia.org/resource/Waverly,_Virginia", "http://dbpedia.org/resource/Pomona,_California", "http://dbpedia.org/resource/Conrad,_Montana", "http://dbpedia.org/resource/Fremont,_Ohio", "http://dbpedia.org/resource/Norwalk,_Connecticut", "http://dbpedia.org/resource/Alger_County,_Michigan", "http://dbpedia.org/resource/Dripping_Springs,_Texas", "http://dbpedia.org/resource/Potomac,_Maryland", "http://dbpedia.org/resource/Springfield,_Virginia", "http://dbpedia.org/resource/Rockaway_Beach,_Queens", "http://dbpedia.org/resource/Raymore,_Missouri", "http://dbpedia.org/resource/Southwest_Ranches,_Florida", "http://dbpedia.org/resource/Long_Branch,_New_Jersey", "http://dbpedia.org/resource/Washington_County,_Georgia", "http://dbpedia.org/resource/Cape_Coral,_Florida", "http://dbpedia.org/resource/St._Charles,_Missouri", "http://dbpedia.org/resource/Brantford", "http://dbpedia.org/resource/Tofino", "http://dbpedia.org/resource/Corcoran,_California", "http://dbpedia.org/resource/Westminster,_Maryland", "http://dbpedia.org/resource/Saint_Croix", "http://dbpedia.org/resource/United_States_Virgin_Islands", "http://dbpedia.org/resource/Christiansted,_U.S._Virgin_Islands", "http://dbpedia.org/resource/Dawson,_Texas", "http://dbpedia.org/resource/Jackson,_Alabama", "http://dbpedia.org/resource/Cork_County_Gaol", "http://dbpedia.org/resource/Clifton,_New_Jersey", "http://dbpedia.org/resource/Passaic_County,_New_Jersey", "http://dbpedia.org/resource/Moscow", "http://dbpedia.org/resource/Joshua_Tree,_California", "http://dbpedia.org/resource/Loudoun_County,_Virginia", "http://dbpedia.org/resource/Webster_City,_Iowa", "http://dbpedia.org/resource/San_Mateo,_California", "http://dbpedia.org/resource/Amanda_Township,_Fairfield_County,_Ohio", "http://dbpedia.org/resource/Laconia,_New_Hampshire", "http://dbpedia.org/resource/Pomfret,_Connecticut", "http://dbpedia.org/resource/Kerrville,_Texas", "http://dbpedia.org/resource/Wausau,_Wisconsin", "http://dbpedia.org/resource/West_Newton,_Massachusetts", "http://dbpedia.org/resource/Hinds_County,_Mississippi", "http://dbpedia.org/resource/Wood_County,_Ohio", "http://dbpedia.org/resource/Bowling_Green,_Ohio", "http://dbpedia.org/resource/Middletown,_Rhode_Island", "http://dbpedia.org/resource/Harrodsburg,_Kentucky", "http://dbpedia.org/resource/Bridgeport,_Connecticut", "http://dbpedia.org/resource/Yankton,_South_Dakota", "http://dbpedia.org/resource/Romney,_West_Virginia", "http://dbpedia.org/resource/Asmara", "http://dbpedia.org/resource/Italian_Eritrea", "http://dbpedia.org/resource/New_Brunswick,_New_Jersey", "http://dbpedia.org/resource/Midtown_Manhattan", "http://dbpedia.org/resource/Arcola,_Virginia", "http://dbpedia.org/resource/Havertown,_Pennsylvania", "http://dbpedia.org/resource/Grand_Prairie,_Texas", "http://dbpedia.org/resource/Crompton_Mill_Historic_District", "http://dbpedia.org/resource/Glen_Rose,_Texas", "http://dbpedia.org/resource/Marquette,_Michigan", "http://dbpedia.org/resource/Gloucester,_Massachusetts", "http://dbpedia.org/resource/Seabreeze,_Florida", "http://dbpedia.org/resource/Fulshear,_Texas", "http://dbpedia.org/resource/Wellsboro,_Pennsylvania", "http://dbpedia.org/resource/Soquel,_California", "http://dbpedia.org/resource/Laguna_Niguel,_California", "http://dbpedia.org/resource/Marseille", "http://dbpedia.org/resource/Fertile,_Iowa", "http://dbpedia.org/resource/Fullerton,_California", "http://dbpedia.org/resource/Colorado_Springs,_Colorado", "http://dbpedia.org/resource/Cape_Province", "http://dbpedia.org/resource/Knysna", "http://dbpedia.org/resource/Yarmouth,_Maine", "http://dbpedia.org/resource/Wimberley,_Texas", "http://dbpedia.org/resource/Park_Ridge,_Illinois", "http://dbpedia.org/resource/Glencoe,_Illinois", "http://dbpedia.org/resource/Inglewood,_California", "http://dbpedia.org/resource/Shelley,_Idaho", "http://dbpedia.org/resource/Anderson,_South_Carolina", "http://dbpedia.org/resource/Wythe_County,_Virginia", "http://dbpedia.org/resource/Abilene,_Texas", "http://dbpedia.org/resource/Summerville,_South_Carolina", "http://dbpedia.org/resource/Adelphi,_Maryland", "http://dbpedia.org/resource/Moorpark,_California", "http://dbpedia.org/resource/Huntington_Beach,_California", "http://dbpedia.org/resource/Greene_County,_Virginia", "http://dbpedia.org/resource/Mount_Healthy,_Ohio", "http://dbpedia.org/resource/Peppermill_Village,_Maryland", "http://dbpedia.org/resource/Sullivan_County,_New_York", "http://dbpedia.org/resource/Ojai,_California", "http://dbpedia.org/resource/Ocean_City,_Maryland", "http://dbpedia.org/resource/Bishop,_California", "http://dbpedia.org/resource/Lackawanna,_New_York", "http://dbpedia.org/resource/Harlan,_Iowa", "http://dbpedia.org/resource/Mannheim", "http://dbpedia.org/resource/Dunmore,_Pennsylvania", "http://dbpedia.org/resource/Andalusia_(estate)", "http://dbpedia.org/resource/Bucks_County,_Pennsylvania", "http://dbpedia.org/resource/Green_Tree,_Pennsylvania", "http://dbpedia.org/resource/Lagunitas,_California", "http://dbpedia.org/resource/Oracle,_Arizona", "http://dbpedia.org/resource/Burkesville,_Kentucky", "http://dbpedia.org/resource/Cumberland_County,_Kentucky", "http://dbpedia.org/resource/Kennebunk,_Maine", "http://dbpedia.org/resource/Morrilton,_Arkansas", "http://dbpedia.org/resource/Ridgewood,_New_Jersey", "http://dbpedia.org/resource/Irvington,_New_York", "http://dbpedia.org/resource/Chelsea,_London", "http://dbpedia.org/resource/Timmins", "http://dbpedia.org/resource/Southfield,_Massachusetts", "http://dbpedia.org/resource/Massapequa,_New_York", "http://dbpedia.org/resource/Pong_district", "http://dbpedia.org/resource/Phayao_province", "http://dbpedia.org/resource/Melville,_New_York", "http://dbpedia.org/resource/Chattanooga,_Tennessee", "http://dbpedia.org/resource/Fox_Island,_Washington", "http://dbpedia.org/resource/Bolinas,_California", "http://dbpedia.org/resource/Chicago_Heights,_Illinois", "http://dbpedia.org/resource/Brimfield,_Illinois", "http://dbpedia.org/resource/Jerusalem", "http://dbpedia.org/resource/Jamaica", "http://dbpedia.org/resource/Ocho_Rios", "http://dbpedia.org/resource/Falls_City,_Nebraska", "http://dbpedia.org/resource/North_English,_Iowa", "http://dbpedia.org/resource/Rochester,_Wisconsin", "http://dbpedia.org/resource/Brookings,_South_Dakota", "http://dbpedia.org/resource/Narberth,_Pennsylvania", "http://dbpedia.org/resource/North_Canaan,_Connecticut", "http://dbpedia.org/resource/Sun_Valley_Lake,_Iowa", "http://dbpedia.org/resource/Hockessin,_Delaware", "http://dbpedia.org/resource/Warren,_Vermont", "http://dbpedia.org/resource/Fairfax_County,_Virginia", "http://dbpedia.org/resource/Berryville,_Virginia", "http://dbpedia.org/resource/Middleburg,_Carroll_County,_Maryland", "http://dbpedia.org/resource/Gaza_Strip", "http://dbpedia.org/resource/Rafah", "http://dbpedia.org/resource/Warrenton,_Virginia", "http://dbpedia.org/resource/Jordanville,_New_York", "http://dbpedia.org/resource/Ioannina", "http://dbpedia.org/resource/White_Knob_Mountains", "http://dbpedia.org/resource/East_Orange,_New_Jersey", "http://dbpedia.org/resource/Ewing,_Virginia", "http://dbpedia.org/resource/Stanleytown,_Virginia", "http://dbpedia.org/resource/Cook_County,_Illinois", "http://dbpedia.org/resource/Falmouth,_Maine", "http://dbpedia.org/resource/Detroit_Lakes,_Minnesota", "http://dbpedia.org/resource/Lenox,_Massachusetts", "http://dbpedia.org/resource/Oceanside,_New_York", "http://dbpedia.org/resource/Nuevo_Le\u00f3n", "http://dbpedia.org/resource/Second_Federal_Republic_of_Mexico", "http://dbpedia.org/resource/Monterrey", "http://dbpedia.org/resource/Feura_Bush,_New_York", "http://dbpedia.org/resource/Seabrook_Island,_South_Carolina", "http://dbpedia.org/resource/Potsdam,_New_York", "http://dbpedia.org/resource/Fincastle,_Virginia", "http://dbpedia.org/resource/Arcola,_Illinois", "http://dbpedia.org/resource/Macau", "http://dbpedia.org/resource/Berks_County,_Pennsylvania", "http://dbpedia.org/resource/Danvers,_Massachusetts", "http://dbpedia.org/resource/Haskell,_New_Jersey", "http://dbpedia.org/resource/St._Charles,_Illinois", "http://dbpedia.org/resource/Stockbridge,_Massachusetts", "http://dbpedia.org/resource/Freeport,_Bahamas", "http://dbpedia.org/resource/Exeter", "http://dbpedia.org/resource/Galway", "http://dbpedia.org/resource/Devil's_Island", "http://dbpedia.org/resource/French_Guiana", "http://dbpedia.org/resource/Memorial_Sloan_Kettering_Cancer_Center", "http://dbpedia.org/resource/West_Newbury,_Massachusetts", "http://dbpedia.org/resource/Porters_Neck,_North_Carolina", "http://dbpedia.org/resource/Houghton_Lake,_Michigan", "http://dbpedia.org/resource/Branford,_Connecticut", "http://dbpedia.org/resource/Leland,_Mississippi", "http://dbpedia.org/resource/Asbury_Park,_New_Jersey", "http://dbpedia.org/resource/New_Iberia,_Louisiana", "http://dbpedia.org/resource/Leipzig", "http://dbpedia.org/resource/Raymond,_Mississippi", "http://dbpedia.org/resource/Camarillo,_California", "http://dbpedia.org/resource/Newcastle,_Wyoming", "http://dbpedia.org/resource/Rehoboth_Beach,_Delaware", "http://dbpedia.org/resource/Ashland,_Oregon", "http://dbpedia.org/resource/Morganfield,_Kentucky", "http://dbpedia.org/resource/Newburyport,_Massachusetts", "http://dbpedia.org/resource/Arlington_Heights,_Illinois", "http://dbpedia.org/resource/San_Quentin_State_Prison", "http://dbpedia.org/resource/Verona,_Wisconsin", "http://dbpedia.org/resource/Bennett,_Colorado", "http://dbpedia.org/resource/North_Hampton,_New_Hampshire", "http://dbpedia.org/resource/Palm_City,_Florida", "http://dbpedia.org/resource/Kensington", "http://dbpedia.org/resource/Waterbeach", "http://dbpedia.org/resource/Cambridgeshire", "http://dbpedia.org/resource/Hood_River,_Oregon", "http://dbpedia.org/resource/Patrick_County,_Virginia", "http://dbpedia.org/resource/West_Melbourne,_Florida", "http://dbpedia.org/resource/Novi,_Michigan", "http://dbpedia.org/resource/Martha's_Vineyard", "http://dbpedia.org/resource/Colonia_Morelos", "http://dbpedia.org/resource/Sonora", "http://dbpedia.org/resource/Bedford_County,_Virginia", "http://dbpedia.org/resource/Rohnert_Park,_California", "http://dbpedia.org/resource/Rockford,_Illinois", "http://dbpedia.org/resource/Wautoma,_Wisconsin", "http://dbpedia.org/resource/Amelia_Island", "http://dbpedia.org/resource/East_Knoxville", "http://dbpedia.org/resource/Wilton,_Connecticut", "http://dbpedia.org/resource/Harpers_Ferry,_West_Virginia", "http://dbpedia.org/resource/Washington,_Pennsylvania", "http://dbpedia.org/resource/West_Roxbury", "http://dbpedia.org/resource/Waterloo_(town),_New_York", "http://dbpedia.org/resource/Sokoto_State", "http://dbpedia.org/resource/Nigeria", "http://dbpedia.org/resource/Janesville,_Wisconsin", "http://dbpedia.org/resource/Chase_City,_Virginia", "http://dbpedia.org/resource/Greenwood_Lake,_New_York", "http://dbpedia.org/resource/Hampton,_Connecticut", "http://dbpedia.org/resource/Pacific_Palisades,_Los_Angeles", "http://dbpedia.org/resource/Waukesha,_Wisconsin", "http://dbpedia.org/resource/Interlachen,_Florida", "http://dbpedia.org/resource/Manassas,_Virginia", "http://dbpedia.org/resource/Durand,_Illinois", "http://dbpedia.org/resource/Empire_of_Japan", "http://dbpedia.org/resource/Kobe", "http://dbpedia.org/resource/Glen_Arbor_Township,_Michigan", "http://dbpedia.org/resource/Brown_County,_Kansas", "http://dbpedia.org/resource/Padonia_Township,_Brown_County,_Kansas", "http://dbpedia.org/resource/Battle_Creek,_Michigan", "http://dbpedia.org/resource/Ukiah,_California", "http://dbpedia.org/resource/Wheaton,_Illinois", "http://dbpedia.org/resource/Laramie,_Wyoming", "http://dbpedia.org/resource/Everett,_Washington", "http://dbpedia.org/resource/Snohomish_County,_Washington", "http://dbpedia.org/resource/Prince_Edward_Island", "http://dbpedia.org/resource/Charlottetown", "http://dbpedia.org/resource/Holly_Springs,_Mississippi", "http://dbpedia.org/resource/Simcoe,_Ontario", "http://dbpedia.org/resource/Largo,_Florida", "http://dbpedia.org/resource/Gothenburg", "http://dbpedia.org/resource/Chesterfield_County,_Virginia", "http://dbpedia.org/resource/Thomasville,_Georgia", "http://dbpedia.org/resource/Mebane,_North_Carolina", "http://dbpedia.org/resource/East_Quogue,_New_York", "http://dbpedia.org/resource/Nyon", "http://dbpedia.org/resource/Laguna_Woods,_California", "http://dbpedia.org/resource/Lima,_Pennsylvania", "http://dbpedia.org/resource/Gonbad-e_Kavus", "http://dbpedia.org/resource/Iran", "http://dbpedia.org/resource/Clanton,_Alabama", "http://dbpedia.org/resource/Jacksonport,_Arkansas", "http://dbpedia.org/resource/Doddsville,_Mississippi", "http://dbpedia.org/resource/Greenbrae,_California", "http://dbpedia.org/resource/Muskegon,_Michigan", "http://dbpedia.org/resource/Metro_State_Prison", "http://dbpedia.org/resource/Otter_Tail_County,_Minnesota", "http://dbpedia.org/resource/Chagrin_Falls,_Ohio", "http://dbpedia.org/resource/Lee's_Summit,_Missouri", "http://dbpedia.org/resource/Fitchburg,_Wisconsin", "http://dbpedia.org/resource/Donaldson,_Indiana", "http://dbpedia.org/resource/Gettysburg,_Pennsylvania", "http://dbpedia.org/resource/Bettendorf,_Iowa", "http://dbpedia.org/resource/Paramount,_California", "http://dbpedia.org/resource/Malabar,_Florida", "http://dbpedia.org/resource/Jupiter_Island", "http://dbpedia.org/resource/Martinsville,_Virginia", "http://dbpedia.org/resource/Santiago_Atitl\u00e1n", "http://dbpedia.org/resource/Solol\u00e1_Department", "http://dbpedia.org/resource/Guatemala", "http://dbpedia.org/resource/Conway,_Arkansas", "http://dbpedia.org/resource/Aspen,_Colorado", "http://dbpedia.org/resource/Decatur,_Georgia", "http://dbpedia.org/resource/Irish_Republic", "http://dbpedia.org/resource/County_Offaly", "http://dbpedia.org/resource/Shinrone", "http://dbpedia.org/resource/Waynesboro,_Georgia", "http://dbpedia.org/resource/Plymouth,_Massachusetts", "http://dbpedia.org/resource/Idaho_Falls,_Idaho", "http://dbpedia.org/resource/Patrick_Henry_Village", "http://dbpedia.org/resource/Heidelberg", "http://dbpedia.org/resource/Atlantic_City,_New_Jersey", "http://dbpedia.org/resource/Elgin,_Kershaw_County,_South_Carolina", "http://dbpedia.org/resource/St._George,_Utah", "http://dbpedia.org/resource/Solvang,_California", "http://dbpedia.org/resource/Manchester,_New_Hampshire", "http://dbpedia.org/resource/Tomball,_Texas", "http://dbpedia.org/resource/Glens_Falls,_New_York", "http://dbpedia.org/resource/Bayonne,_New_Jersey", "http://dbpedia.org/resource/Amsterdam", "http://dbpedia.org/resource/Liberty,_Texas", "http://dbpedia.org/resource/Pendleton,_Oregon", "http://dbpedia.org/resource/Ector_County,_Texas", "http://dbpedia.org/resource/New_Hartford,_New_York", "http://dbpedia.org/resource/Shenandoah,_Iowa", "http://dbpedia.org/resource/San_Marino,_California", "http://dbpedia.org/resource/Webster_Groves,_Missouri", "http://dbpedia.org/resource/Horatio,_Arkansas", "http://dbpedia.org/resource/Virginia_Water", "http://dbpedia.org/resource/Surrey", "http://dbpedia.org/resource/Tyro,_Virginia", "http://dbpedia.org/resource/Gold_Coast,_Queensland", "http://dbpedia.org/resource/York,_Pennsylvania", "http://dbpedia.org/resource/Loma_Linda,_California", "http://dbpedia.org/resource/Molokai", "http://dbpedia.org/resource/Norwood,_Massachusetts", "http://dbpedia.org/resource/Hamilton,_Massachusetts", "http://dbpedia.org/resource/Woody_Creek,_Colorado", "http://dbpedia.org/resource/Eufaula,_Oklahoma", "http://dbpedia.org/resource/Portsmouth,_New_Hampshire", "http://dbpedia.org/resource/Brattleboro,_Vermont", "http://dbpedia.org/resource/Bucharest", "http://dbpedia.org/resource/Romania", "http://dbpedia.org/resource/Victoria_(Australia)", "http://dbpedia.org/resource/Albert_Park,_Victoria", "http://dbpedia.org/resource/Flat_Rock,_Henderson_County,_North_Carolina", "http://dbpedia.org/resource/Naples,_Texas", "http://dbpedia.org/resource/El_Dorado_Springs,_Missouri", "http://dbpedia.org/resource/Middletown,_Orange_County,_New_York", "http://dbpedia.org/resource/Pleasant_Hill,_Kentucky", "http://dbpedia.org/resource/Santa_Clarita,_California", "http://dbpedia.org/resource/The_Bahamas", "http://dbpedia.org/resource/Lyford_Cay", "http://dbpedia.org/resource/New_Providence", "http://dbpedia.org/resource/Riverside_Methodist_Hospital", "http://dbpedia.org/resource/Abruzzo", "http://dbpedia.org/resource/Pescara", "http://dbpedia.org/resource/Santaquin,_Utah", "http://dbpedia.org/resource/Thomaston,_Connecticut", "http://dbpedia.org/resource/Woodside,_Queens", "http://dbpedia.org/resource/Goi\u00e1s", "http://dbpedia.org/resource/Jata\u00ed", "http://dbpedia.org/resource/Eglin_Air_Force_Base", "http://dbpedia.org/resource/Granbury,_Texas", "http://dbpedia.org/resource/Twentynine_Palms,_California", "http://dbpedia.org/resource/Blacksburg,_Virginia", "http://dbpedia.org/resource/Kearns,_Utah", "http://dbpedia.org/resource/Saratoga,_California", "http://dbpedia.org/resource/Sun_City,_Arizona", "http://dbpedia.org/resource/Anaconda,_Montana", "http://dbpedia.org/resource/West_Bloomfield_Township,_Michigan", "http://dbpedia.org/resource/London,_Ontario", "http://dbpedia.org/resource/East_Passyunk_Crossing,_Philadelphia", "http://dbpedia.org/resource/Korea", "http://dbpedia.org/resource/Dallas,_North_Carolina", "http://dbpedia.org/resource/Somerville,_New_Jersey", "http://dbpedia.org/resource/Elberton,_Georgia", "http://dbpedia.org/resource/Juana_D\u00edaz,_Puerto_Rico", "http://dbpedia.org/resource/Medford,_Massachusetts", "http://dbpedia.org/resource/Schenectady,_New_York", "http://dbpedia.org/resource/Richmond_Heights,_Missouri", "http://dbpedia.org/resource/Greene_County,_Ohio", "http://dbpedia.org/resource/Yellow_Springs,_Ohio", "http://dbpedia.org/resource/Ra'anana", "http://dbpedia.org/resource/Mattapan", "http://dbpedia.org/resource/Cedaredge,_Colorado", "http://dbpedia.org/resource/San_Diego_County,_California", "http://dbpedia.org/resource/Cardiff-by-the-Sea,_Encinitas,_California", "http://dbpedia.org/resource/Jarratt,_Virginia", "http://dbpedia.org/resource/Greensville_Correctional_Center", "http://dbpedia.org/resource/Fort_Bragg,_California", "http://dbpedia.org/resource/High_Falls,_New_York", "http://dbpedia.org/resource/Europe", "http://dbpedia.org/resource/Missouri_State_Penitentiary", "http://dbpedia.org/resource/University_City,_Missouri", "http://dbpedia.org/resource/Palmdale,_California", "http://dbpedia.org/resource/Anaheim,_California", "http://dbpedia.org/resource/Dunedin,_Florida", "http://dbpedia.org/resource/Toledo,_Ohio", "http://dbpedia.org/resource/Towson,_Maryland", "http://dbpedia.org/resource/Hampton_Beach,_New_Hampshire", "http://dbpedia.org/resource/Leeton,_Missouri", "http://dbpedia.org/resource/Edwardsville,_Illinois", "http://dbpedia.org/resource/Arcadia,_Louisiana", "http://dbpedia.org/resource/Clay_City,_Indiana", "http://dbpedia.org/resource/Bainbridge_Island,_Washington", "http://dbpedia.org/resource/Eureka,_California", "http://dbpedia.org/resource/Sing_Sing", "http://dbpedia.org/resource/Ossining_(town),_New_York", "http://dbpedia.org/resource/Bellevue,_Ohio", "http://dbpedia.org/resource/Springfield,_Oregon", "http://dbpedia.org/resource/Elk_Grove,_California", "http://dbpedia.org/resource/Sag_Harbor,_New_York", "http://dbpedia.org/resource/Braintree,_Massachusetts", "http://dbpedia.org/resource/Pelham,_New_York", "http://dbpedia.org/resource/Maui", "http://dbpedia.org/resource/Troy,_New_York", "http://dbpedia.org/resource/Bellevue,_Washington", "http://dbpedia.org/resource/Venice,_Los_Angeles", "http://dbpedia.org/resource/Vinita,_Oklahoma", "http://dbpedia.org/resource/Oklahoma_Territory", "http://dbpedia.org/resource/Lingayen_Gulf", "http://dbpedia.org/resource/Cartersville,_Georgia", "http://dbpedia.org/resource/Pittsfield,_Massachusetts", "http://dbpedia.org/resource/Kingdom_of_Nepal", "http://dbpedia.org/resource/Outremont,_Quebec", "http://dbpedia.org/resource/South_Texas", "http://dbpedia.org/resource/Bergen_County,_New_Jersey", "http://dbpedia.org/resource/Clay-Ashland", "http://dbpedia.org/resource/Orgeval,_Yvelines", "http://dbpedia.org/resource/White_Plains,_New_York", "http://dbpedia.org/resource/Ontario,_Oregon", "http://dbpedia.org/resource/Wickenburg,_Arizona", "http://dbpedia.org/resource/Cape_May,_New_Jersey"]}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/phylum> <http://dbpedia.org/resource/Chordate> . ?uri <http://dbpedia.org/ontology/order> <http://dbpedia.org/resource/Diprotodontia> } "}, "answers": ["2"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/inflow> <http://dbpedia.org/resource/Aegean_Sea> . ?x <http://dbpedia.org/property/cities> ?uri . }"}, "answers": ["6"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Erica_Frank> <http://dbpedia.org/ontology/university> ?uri . <http://dbpedia.org/resource/Ivan_Toplak> <http://dbpedia.org/property/managerClub> ?uri} "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/executiveProducer> <http://dbpedia.org/resource/Ricky_Gervais> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/FictionCharacter>}"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/flours> <http://dbpedia.org/resource/Flour> . ?x <http://dbpedia.org/ontology/family> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/league> <http://dbpedia.org/resource/American_Football_League> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SportsTeam>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/award> <http://dbpedia.org/resource/Royal_Society> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/James_H._Fields> <http://dbpedia.org/ontology/restingPlace> ?uri } "}, "answers": ["http://dbpedia.org/resource/Houston", "http://dbpedia.org/resource/Houston_National_Cemetery"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/family> <http://dbpedia.org/resource/Padm\u00e9_Amidala> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/FictionalCharacter>}"}, "answers": ["http://dbpedia.org/resource/Mara_Jade"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/author> <http://dbpedia.org/resource/Google_Web_Toolkit> . ?uri <http://dbpedia.org/property/company> <http://dbpedia.org/resource/PlayN> . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dodge> <http://dbpedia.org/ontology/automobilePlatform> ?uri } "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ne_daj_se,_Nina> <http://dbpedia.org/property/firstAired> ?uri } "}, "answers": ["2007-10-29", "2008-01-03", "", "Serbia:", "Croatia:"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/writer> <http://dbpedia.org/resource/Brian_Moriarty> . ?uri <http://dbpedia.org/property/designer> ?x . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/commander> <http://dbpedia.org/resource/Louis_Bri\u00e8re> . ?x <http://dbpedia.org/property/territory> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Quebec_hockey> . ?x <http://dbpedia.org/property/team> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/WBIG_FM> <http://dbpedia.org/property/format> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/almaMater> <http://dbpedia.org/resource/Worcester_College,_Oxford> . ?x <http://dbpedia.org/ontology/field> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Development_economics", "http://dbpedia.org/resource/Public_economics", "http://dbpedia.org/resource/Economics"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Celluloid_Records> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MusicalArtist>}"}, "answers": ["http://dbpedia.org/resource/Martin_Bisi", "http://dbpedia.org/resource/Jody_Harris", "http://dbpedia.org/resource/Tshala_Muana", "http://dbpedia.org/resource/Fela_Kuti", "http://dbpedia.org/resource/Ferdinand_Richard"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/commander> <http://dbpedia.org/resource/Arthur_St._Clair> . ?x <http://dbpedia.org/property/combatant> ?uri . }"}, "answers": ["22"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/instrument> <http://dbpedia.org/resource/Guitar> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MusicalArtist>}"}, "answers": ["http://dbpedia.org/resource/Allan_Slutsky", "http://dbpedia.org/resource/Allan_Stewart_(musician)", "http://dbpedia.org/resource/Allen_West_(musician)", "http://dbpedia.org/resource/Allister_MacGillivray", "http://dbpedia.org/resource/Altiyan_Childs", "http://dbpedia.org/resource/Alvin_Robinson_(musician)", "http://dbpedia.org/resource/Alyssa_Bonagura", "http://dbpedia.org/resource/Amaia_Montero", "http://dbpedia.org/resource/Amanda_Jenssen", "http://dbpedia.org/resource/Amir_Derakh", "http://dbpedia.org/resource/Amplifico", "http://dbpedia.org/resource/Amund_Maarud", "http://dbpedia.org/resource/Amy_Helm", "http://dbpedia.org/resource/Anders_Lindstr\u00f6m", "http://dbpedia.org/resource/Anders_Wendin", "http://dbpedia.org/resource/Andrea_Laszlo_De_Simone", "http://dbpedia.org/resource/Andreas_Mj\u00f8s", "http://dbpedia.org/resource/Andrew_Bird", "http://dbpedia.org/resource/Andrew_Brel", "http://dbpedia.org/resource/Andrew_Edge", "http://dbpedia.org/resource/Andrew_Farriss", "http://dbpedia.org/resource/Andrew_Garton", "http://dbpedia.org/resource/Andrew_Goldstein_(musician)", "http://dbpedia.org/resource/Andrew_Innes", "http://dbpedia.org/resource/Andrew_Pope_(singer)", "http://dbpedia.org/resource/Andrew_VanWyngarden", "http://dbpedia.org/resource/Andrew_Weatherall", "http://dbpedia.org/resource/Andrini_Brothers", "http://dbpedia.org/resource/Andrius_Mamontovas", "http://dbpedia.org/resource/Andr\u00e9_Andersen", "http://dbpedia.org/resource/Andr\u00e9_Moraes", "http://dbpedia.org/resource/Andr\u00e9s_Bretel", "http://dbpedia.org/resource/Andr\u00e9s_Calamaro", "http://dbpedia.org/resource/Andr\u00e9s_Useche", "http://dbpedia.org/resource/Andy_Childs", "http://dbpedia.org/resource/Andy_Creeggan", "http://dbpedia.org/resource/Andy_Dodd", "http://dbpedia.org/resource/Andy_Gerold", "http://dbpedia.org/resource/Andy_McKee", "http://dbpedia.org/resource/Andy_Rinehart", "http://dbpedia.org/resource/Andy_Rodgers_(musician)", "http://dbpedia.org/resource/Andy_Scott_(guitarist)", "http://dbpedia.org/resource/Andy_Sheppard_(broadcaster)", "http://dbpedia.org/resource/Andy_Shernoff", "http://dbpedia.org/resource/Andy_Stamets", "http://dbpedia.org/resource/Ane_Brun", "http://dbpedia.org/resource/Adrian_White_(musician)", "http://dbpedia.org/resource/Afrika_Baby_Bam", "http://dbpedia.org/resource/Alex_Hutchings_(guitarist)", "http://dbpedia.org/resource/Alex_Weir_(musician)", "http://dbpedia.org/resource/Alex_White_(musician)", "http://dbpedia.org/resource/Alexander_Tucker_(musician)", "http://dbpedia.org/resource/Alexandria_Maillot", "http://dbpedia.org/resource/Damien_Leith", "http://dbpedia.org/resource/Damien_Robitaille", "http://dbpedia.org/resource/Damon_Krukowski", "http://dbpedia.org/resource/Dan_Briggs_(musician)", "http://dbpedia.org/resource/Dan_Bull", "http://dbpedia.org/resource/Dan_Cunneen", "http://dbpedia.org/resource/Dan_Mangan", "http://dbpedia.org/resource/Dan_Palmer_(guitarist)", "http://dbpedia.org/resource/Dan_Penn", "http://dbpedia.org/resource/Dan_Pickett_(musician)", "http://dbpedia.org/resource/Dan_Radlauer", "http://dbpedia.org/resource/Dan_Sane", "http://dbpedia.org/resource/Dan_Sultan", "http://dbpedia.org/resource/Dan_Toler", "http://dbpedia.org/resource/Dan_Vapid", "http://dbpedia.org/resource/Dan_Vickrey", "http://dbpedia.org/resource/Dan_Zanes", "http://dbpedia.org/resource/Daniel_Anderson_(musician)", "http://dbpedia.org/resource/Daniel_Antonsson", "http://dbpedia.org/resource/Daniel_Droste", "http://dbpedia.org/resource/Daniel_Joseph_Schafer", "http://dbpedia.org/resource/Daniel_Kessler_(guitarist)", "http://dbpedia.org/resource/Daniel_Merriweather", "http://dbpedia.org/resource/Daniel_O'Sullivan_(musician)", "http://dbpedia.org/resource/Daniel_Sea", "http://dbpedia.org/resource/Danijel_Cerovi\u0107", "http://dbpedia.org/resource/Danimal_Cannon", "http://dbpedia.org/resource/Danne_Larsson", "http://dbpedia.org/resource/Danny_Cedrone", "http://dbpedia.org/resource/Danny_Cocke", "http://dbpedia.org/resource/Danny_Saber", "http://dbpedia.org/resource/Danny_Sveinson", "http://dbpedia.org/resource/Danny_Whitten", "http://dbpedia.org/resource/Danny_Wilde_(musician)", "http://dbpedia.org/resource/Darden_Smith", "http://dbpedia.org/resource/Daria_Zawia\u0142ow", "http://dbpedia.org/resource/Darius_Sema\u00f1a", "http://dbpedia.org/resource/Darko_Hajsek", "http://dbpedia.org/resource/Darren_Korb", "http://dbpedia.org/resource/Darren_Middleton", "http://dbpedia.org/resource/Darren_Thiboutot_Jr.", "http://dbpedia.org/resource/Daryl_Hall", "http://dbpedia.org/resource/Dave_Amato", "http://dbpedia.org/resource/Dave_Bickler", "http://dbpedia.org/resource/Dave_Dunlop", "http://dbpedia.org/resource/Dave_Haywood", "http://dbpedia.org/resource/Dave_Kerman", "http://dbpedia.org/resource/Dave_Kilminster", "http://dbpedia.org/resource/Dave_MacIsaac", "http://dbpedia.org/resource/Dave_Martone", "http://dbpedia.org/resource/Dave_Melillo", "http://dbpedia.org/resource/Dave_Meniketti", "http://dbpedia.org/resource/Dave_Specter", "http://dbpedia.org/resource/Dave_Stogner", "http://dbpedia.org/resource/Dave_Suzuki", "http://dbpedia.org/resource/Dave_Swarbrick", "http://dbpedia.org/resource/Dave_Weiner", "http://dbpedia.org/resource/Davey_Arthur", "http://dbpedia.org/resource/David_Barbe", "http://dbpedia.org/resource/David_Bendeth", "http://dbpedia.org/resource/David_Bennett_Cohen", "http://dbpedia.org/resource/David_Berkeley", "http://dbpedia.org/resource/David_Dineen-Porter", "http://dbpedia.org/resource/David_Frizzell", "http://dbpedia.org/resource/David_Gans_(musician)", "http://dbpedia.org/resource/David_Garcia_(musician)", "http://dbpedia.org/resource/David_Gogo", "http://dbpedia.org/resource/David_Immergl\u00fcck", "http://dbpedia.org/resource/David_Jenkins_(musician)", "http://dbpedia.org/resource/David_Kersh", "http://dbpedia.org/resource/David_Lane_(musician)", "http://dbpedia.org/resource/David_Lindley_(musician)", "http://dbpedia.org/resource/David_Longdon", "http://dbpedia.org/resource/David_Lowery_(musician)", "http://dbpedia.org/resource/David_Malachowski", "http://dbpedia.org/resource/David_Marks", "http://dbpedia.org/resource/David_McEwan_(producer)", "http://dbpedia.org/resource/David_Olliffe", "http://dbpedia.org/resource/David_Ragsdale", "http://dbpedia.org/resource/David_Rogers_(singer)", "http://dbpedia.org/resource/David_Starobin", "http://dbpedia.org/resource/David_T._Walker", "http://dbpedia.org/resource/Dawayne_Bailey", "http://dbpedia.org/resource/DeWayne_McKnight", "http://dbpedia.org/resource/Deakin_(musician)", "http://dbpedia.org/resource/Dean_De_Benedictis", "http://dbpedia.org/resource/Dean_Delannoit", "http://dbpedia.org/resource/Dean_Fasano", "http://dbpedia.org/resource/Dean_Fertita", "http://dbpedia.org/resource/Dean_Wareham", "http://dbpedia.org/resource/Debbie_Davies", "http://dbpedia.org/resource/Declan_Galbraith", "http://dbpedia.org/resource/Apex_(musician)", "http://dbpedia.org/resource/April_Lawton", "http://dbpedia.org/resource/Ardeshir_Farah", "http://dbpedia.org/resource/Ariel_Aparicio", "http://dbpedia.org/resource/Ariel_Rechtshaid", "http://dbpedia.org/resource/Borko", "http://dbpedia.org/resource/Cassidy_Haley", "http://dbpedia.org/resource/Conny_Nimmersj\u00f6", "http://dbpedia.org/resource/Desmond_Williams_(musician)", "http://dbpedia.org/resource/Valensia", "http://dbpedia.org/resource/Valerie_June", "http://dbpedia.org/resource/Vasilis_Papakonstantinou", "http://dbpedia.org/resource/Vasti_Jackson", "http://dbpedia.org/resource/Veniamin_Nechayev", "http://dbpedia.org/resource/Vera_Blue", "http://dbpedia.org/resource/Verity_Susman", "http://dbpedia.org/resource/Vern_Gosdin", "http://dbpedia.org/resource/Vertexguy", "http://dbpedia.org/resource/Vesa_Jokinen", "http://dbpedia.org/resource/Veselin_Marinov", "http://dbpedia.org/resource/Vic_Johnson_(musician)", "http://dbpedia.org/resource/Vicko_Milatovi\u0107", "http://dbpedia.org/resource/Victor_Indrizzo", "http://dbpedia.org/resource/Victoria_Maurette", "http://dbpedia.org/resource/Vidoja_Bo\u017einovi\u0107", "http://dbpedia.org/resource/Vigilante_Carlstroem", "http://dbpedia.org/resource/Ville_Friman", "http://dbpedia.org/resource/Ville_V\u00e4nni", "http://dbpedia.org/resource/Vince_White", "http://dbpedia.org/resource/Vincent_Cross", "http://dbpedia.org/resource/Vincent_Taylor_(musician)", "http://dbpedia.org/resource/Vincent_Walker", "http://dbpedia.org/resource/Vinnie_Dombroski", "http://dbpedia.org/resource/Virginia_to_Vegas", "http://dbpedia.org/resource/Vitico", "http://dbpedia.org/resource/Vittorio_Camardese", "http://dbpedia.org/resource/Vjat\u0161eslav_Kobrin", "http://dbpedia.org/resource/Vladimir_Begunov", "http://dbpedia.org/resource/Vladimir_Gorbach", "http://dbpedia.org/resource/Vladimir_Petrovski", "http://dbpedia.org/resource/Vladim\u00edr_Merta", "http://dbpedia.org/resource/Vladim\u00edr_Mi\u0161\u00edk", "http://dbpedia.org/resource/Vlatko_Stefanovski", "http://dbpedia.org/resource/Vonda_Shepard", "http://dbpedia.org/resource/V\u00edctor_Garc\u00eda_(Spanish_singer)", "http://dbpedia.org/resource/Waldemar_Bastos", "http://dbpedia.org/resource/Walt_Aldridge", "http://dbpedia.org/resource/Walter_Parazaider", "http://dbpedia.org/resource/Warrick_Sony", "http://dbpedia.org/resource/Djelimady_Tounkara", "http://dbpedia.org/resource/Dogbowl", "http://dbpedia.org/resource/Dom_Turner", "http://dbpedia.org/resource/Jack_Semple", "http://dbpedia.org/resource/Michael_Severs", "http://dbpedia.org/resource/Peter_Searcy", "http://dbpedia.org/resource/Serkan_\u00c7elik\u00f6z", "http://dbpedia.org/resource/Rose_Melberg", "http://dbpedia.org/resource/Nicolas_de_Angelis", "http://dbpedia.org/resource/Jaxon_Benge", "http://dbpedia.org/resource/Jason_DeCorse", "http://dbpedia.org/resource/Jason_Kardong", "http://dbpedia.org/resource/Jesse_Brand", "http://dbpedia.org/resource/Luis_Beethoven_Galvez", "http://dbpedia.org/resource/Space_Mandino", "http://dbpedia.org/resource/Tawgs_Salter", "http://dbpedia.org/resource/The_June_Junes", "http://dbpedia.org/resource/Michael_Carter_(musician)", "http://dbpedia.org/resource/Tore_\u00d8stby", "http://dbpedia.org/resource/Phil_Heywood", "http://dbpedia.org/resource/Marlo_Henderson", "http://dbpedia.org/resource/Woody_Platt", "http://dbpedia.org/resource/Alan_Steward", "http://dbpedia.org/resource/Demir_Demirkan", "http://dbpedia.org/resource/Denis_Payton", "http://dbpedia.org/resource/Deniz_Tek", "http://dbpedia.org/resource/Dennis_Coffey", "http://dbpedia.org/resource/Dennis_Pavao", "http://dbpedia.org/resource/Dennis_Reksten", "http://dbpedia.org/resource/Denny_Dias", "http://dbpedia.org/resource/Denyss_McKnight", "http://dbpedia.org/resource/Depha_Masterpiece", "http://dbpedia.org/resource/Derek_Forbes", "http://dbpedia.org/resource/Derek_Kerswill", "http://dbpedia.org/resource/Derry_Grehan", "http://dbpedia.org/resource/Detlef_Wiedeke", "http://dbpedia.org/resource/Dewey_Bunnell", "http://dbpedia.org/resource/Diana_Arbenina", "http://dbpedia.org/resource/Diblo_Dibala", "http://dbpedia.org/resource/Dick_Damron", "http://dbpedia.org/resource/Dick_Rosmini", "http://dbpedia.org/resource/Dieter_Moebius", "http://dbpedia.org/resource/Dig_Richards", "http://dbpedia.org/resource/Dimitri_Tikovo\u00ef", "http://dbpedia.org/resource/Diont\u00e9_Boom", "http://dbpedia.org/resource/Dirk_Schl\u00e4chter", "http://dbpedia.org/resource/Dirk_von_Lowtzow", "http://dbpedia.org/resource/Tito_Larriva", "http://dbpedia.org/resource/Elizabeth_Barraclough", "http://dbpedia.org/resource/Moreland_and_Arbuckle", "http://dbpedia.org/resource/Justin_Moyer", "http://dbpedia.org/resource/Moose_Harris", "http://dbpedia.org/resource/Muck_Sticky", "http://dbpedia.org/resource/Mutlu_Onaral", "http://dbpedia.org/resource/Sanjay_Mishra_(musician)", "http://dbpedia.org/resource/William_Harris_(musician)", "http://dbpedia.org/resource/York_(group)", "http://dbpedia.org/resource/Zacharie_Elenga", "http://dbpedia.org/resource/Zim_Zum", "http://dbpedia.org/resource/Hans_J\u00f8rgen_Undelstvedt", "http://dbpedia.org/resource/Hans_Reffert", "http://dbpedia.org/resource/Pat_Kirtley", "http://dbpedia.org/resource/Sydney_Forest", "http://dbpedia.org/resource/Rob_Fetters", "http://dbpedia.org/resource/Rob_Laakso", "http://dbpedia.org/resource/Paul_Thomsen_Kirk", "http://dbpedia.org/resource/Aidan_Knight", "http://dbpedia.org/resource/Aidan_Zammit", "http://dbpedia.org/resource/Akira_Kajiyama", "http://dbpedia.org/resource/Al_Anderson_(musician)", "http://dbpedia.org/resource/Al_Casey_(rock_guitarist)", "http://dbpedia.org/resource/Al_Hurricane_Jr.", "http://dbpedia.org/resource/Alain_Johannes", "http://dbpedia.org/resource/Alan_Davey_(musician)", "http://dbpedia.org/resource/Alan_Glen", "http://dbpedia.org/resource/Alan_Lancaster", "http://dbpedia.org/resource/Alan_Licht", "http://dbpedia.org/resource/Alan_McGee", "http://dbpedia.org/resource/Alan_Merrill", "http://dbpedia.org/resource/Alan_Parsons", "http://dbpedia.org/resource/Alan_Shacklock", "http://dbpedia.org/resource/Alan_Warner_(musician)", "http://dbpedia.org/resource/Albert_Collins", "http://dbpedia.org/resource/Albert_Cummings", "http://dbpedia.org/resource/Albert_White_(musician)", "http://dbpedia.org/resource/Alberta_Slim", "http://dbpedia.org/resource/Ale_M\u00f6ller", "http://dbpedia.org/resource/Alec_Finn", "http://dbpedia.org/resource/Alec_Seward", "http://dbpedia.org/resource/Alejandro_Alonso_(musician)", "http://dbpedia.org/resource/Aleksandr_Kharchikov", "http://dbpedia.org/resource/Aleksandr_Nepomnyashchiy", "http://dbpedia.org/resource/Alen_Islamovi\u0107", "http://dbpedia.org/resource/Alex_Grossi", "http://dbpedia.org/resource/Alex_Kapranos", "http://dbpedia.org/resource/Alex_Lee_(musician)", "http://dbpedia.org/resource/Alex_St._Clair", "http://dbpedia.org/resource/Alex_Tumay", "http://dbpedia.org/resource/Alex_Vega", "http://dbpedia.org/resource/Alex_Wong_(producer,_musician)", "http://dbpedia.org/resource/Alex_Wright_(musician)", "http://dbpedia.org/resource/Alex_Wurman", "http://dbpedia.org/resource/Alexander_Brandon", "http://dbpedia.org/resource/Alexander_Hacke", "http://dbpedia.org/resource/Alexander_James_Adams", "http://dbpedia.org/resource/Alexander_Kostarev", "http://dbpedia.org/resource/Alexandre_Navarro", "http://dbpedia.org/resource/Alf_Svensson_(guitarist)", "http://dbpedia.org/resource/Alfunction", "http://dbpedia.org/resource/Alger_%22Texas%22_Alexander", "http://dbpedia.org/resource/Ali_Farka_Tour\u00e9", "http://dbpedia.org/resource/Ali_Harter", "http://dbpedia.org/resource/Alias_(musician)", "http://dbpedia.org/resource/Alicia_Warrington", "http://dbpedia.org/resource/Alina_Smith", "http://dbpedia.org/resource/Art_Thieme", "http://dbpedia.org/resource/Arthur_Crudup", "http://dbpedia.org/resource/Arthur_Lee_%22Red%22_Smiley", "http://dbpedia.org/resource/Arthur_Rhames", "http://dbpedia.org/resource/Arvella_Gray", "http://dbpedia.org/resource/Asa_Martin", "http://dbpedia.org/resource/Asad_Ahmed", "http://dbpedia.org/resource/Asaf_Sagiv", "http://dbpedia.org/resource/Asbj\u00f8rn_Lerheim", "http://dbpedia.org/resource/Ash_Riser", "http://dbpedia.org/resource/Asher_Swissa", "http://dbpedia.org/resource/Ashley_Gorley", "http://dbpedia.org/resource/Aslak_D\u00f8rum", "http://dbpedia.org/resource/Assaf_Kehati", "http://dbpedia.org/resource/Attila_Zoller", "http://dbpedia.org/resource/Augie_Meyers", "http://dbpedia.org/resource/Augustine_Leudar", "http://dbpedia.org/resource/Awalmir", "http://dbpedia.org/resource/Baz_Warne", "http://dbpedia.org/resource/Ben_Bridwell", "http://dbpedia.org/resource/Ben_Brodin", "http://dbpedia.org/resource/Ben_King_(guitarist)", "http://dbpedia.org/resource/Ben_Lurie", "http://dbpedia.org/resource/Benito_Lertxundi", "http://dbpedia.org/resource/Benjamin_Curtis_(musician)", "http://dbpedia.org/resource/Benjamin_Wallfisch", "http://dbpedia.org/resource/Benn_Jordan", "http://dbpedia.org/resource/Benny_Martin", "http://dbpedia.org/resource/Bent_Patey", "http://dbpedia.org/resource/Bernard_Fowler", "http://dbpedia.org/resource/Bertrand_Cantat", "http://dbpedia.org/resource/Bess_Lomax_Hawes", "http://dbpedia.org/resource/Beverly_Watkins", "http://dbpedia.org/resource/Bhupinder_Singh_(musician)", "http://dbpedia.org/resource/Forrest_Kline", "http://dbpedia.org/resource/Francesca_Ancarola", "http://dbpedia.org/resource/Francesco_Buzzurro", "http://dbpedia.org/resource/Franciscus_Henri", "http://dbpedia.org/resource/Franco_Battiato", "http://dbpedia.org/resource/Frank_Bornemann", "http://dbpedia.org/resource/Frank_Farrell_(musician)", "http://dbpedia.org/resource/Frank_Ferera", "http://dbpedia.org/resource/Frank_Schildt", "http://dbpedia.org/resource/Frank_Weyzig", "http://dbpedia.org/resource/Frankie_Emerson", "http://dbpedia.org/resource/Fred_%22Sonic%22_Smith", "http://dbpedia.org/resource/Fred_Andrade", "http://dbpedia.org/resource/Fred_Estby", "http://dbpedia.org/resource/Fred_Holstein", "http://dbpedia.org/resource/Fred_Tackett", "http://dbpedia.org/resource/Freddie_Brown_(musician)", "http://dbpedia.org/resource/Freddie_Spruell", "http://dbpedia.org/resource/Freddy_Cannon", "http://dbpedia.org/resource/Freddy_Fender", "http://dbpedia.org/resource/Freddy_Quinn", "http://dbpedia.org/resource/Frederick_Noad", "http://dbpedia.org/resource/Fredrik_Johansson_(musician)", "http://dbpedia.org/resource/Freedo_(producer)", "http://dbpedia.org/resource/Frenchie_Davis", "http://dbpedia.org/resource/Fruteland_Jackson", "http://dbpedia.org/resource/Fr\u00e9d\u00e9ric_Leclercq", "http://dbpedia.org/resource/Fur_Dixon", "http://dbpedia.org/resource/Fursy_Teyssier", "http://dbpedia.org/resource/Gab_Chee_Kee", "http://dbpedia.org/resource/Gabino_Ezeiza", "http://dbpedia.org/resource/Gabrial_McNair", "http://dbpedia.org/resource/Gabriel_Brown", "http://dbpedia.org/resource/Gackt", "http://dbpedia.org/resource/Gareth_Sager", "http://dbpedia.org/resource/Garik_Sukachov", "http://dbpedia.org/resource/Garnet_Rogers", "http://dbpedia.org/resource/Garrett_Uhlenbrock", "http://dbpedia.org/resource/Garron_DuPree", "http://dbpedia.org/resource/Garry_Gary_Beers", "http://dbpedia.org/resource/Gary_Green_(musician)", "http://dbpedia.org/resource/Gary_Hoey", "http://dbpedia.org/resource/Gary_Lee_Conner", "http://dbpedia.org/resource/Gary_Primich", "http://dbpedia.org/resource/Gary_Richrath", "http://dbpedia.org/resource/Gary_Talley", "http://dbpedia.org/resource/Gary_Thain", "http://dbpedia.org/resource/Gary_Wehrkamp", "http://dbpedia.org/resource/Gary_Wilson_(musician)", "http://dbpedia.org/resource/Gaye_Adegbalola", "http://dbpedia.org/resource/Gayla_Drake", "http://dbpedia.org/resource/Gayla_Earlene", "http://dbpedia.org/resource/Geeshie_Wiley", "http://dbpedia.org/resource/Geir_Zahl", "http://dbpedia.org/resource/Gemma_Hayes", "http://dbpedia.org/resource/Gene_Taylor_(pianist)", "http://dbpedia.org/resource/Georg_H\u00f3lm", "http://dbpedia.org/resource/George_Gabriel", "http://dbpedia.org/resource/George_Kollias_(drummer)", "http://dbpedia.org/resource/George_McCorkle", "http://dbpedia.org/resource/Hal_Lindes", "http://dbpedia.org/resource/Hallgeir_Pedersen", "http://dbpedia.org/resource/Haluk_Levent", "http://dbpedia.org/resource/Hamid_Bouchnak", "http://dbpedia.org/resource/Hanae_(singer)", "http://dbpedia.org/resource/Hangi_Tavakoli", "http://dbpedia.org/resource/Hank_Marvin", "http://dbpedia.org/resource/Hank_Mizell", "http://dbpedia.org/resource/Hank_Monis", "http://dbpedia.org/resource/Hank_Wangford", "http://dbpedia.org/resource/Hannes_Grossmann", "http://dbpedia.org/resource/Hans_Bollands\u00e5s", "http://dbpedia.org/resource/Hans_Chew", "http://dbpedia.org/resource/Hans_Mathisen", "http://dbpedia.org/resource/Hans_Nilsson_(musician)", "http://dbpedia.org/resource/Hans_W\u00e4rmling", "http://dbpedia.org/resource/Hansford_Rowe_(musician)", "http://dbpedia.org/resource/Harald_N\u00e6vdal", "http://dbpedia.org/resource/Harmonica_Frank", "http://dbpedia.org/resource/Harris_Newman", "http://dbpedia.org/resource/Harry_Manx", "http://dbpedia.org/resource/Harry_Sacksioni", "http://dbpedia.org/resource/Hawksley_Workman", "http://dbpedia.org/resource/Bill_Coon", "http://dbpedia.org/resource/Bill_Nace", "http://dbpedia.org/resource/Bill_Ruppert", "http://dbpedia.org/resource/Bill_Taft", "http://dbpedia.org/resource/Billy_McLaughlin", "http://dbpedia.org/resource/Birchville_Cat_Motel", "http://dbpedia.org/resource/Chops_(music_producer)", "http://dbpedia.org/resource/Sam_Amidon", "http://dbpedia.org/resource/Sam_Coomes", "http://dbpedia.org/resource/Sam_Ellis_(songwriter)", "http://dbpedia.org/resource/Sam_Endicott", "http://dbpedia.org/resource/Sam_Fogarino", "http://dbpedia.org/resource/Sam_Outlaw", "http://dbpedia.org/resource/Sam_Prekop", "http://dbpedia.org/resource/Samara_Lubelski", "http://dbpedia.org/resource/Sami_Raatikainen", "http://dbpedia.org/resource/Sammy_Kershaw", "http://dbpedia.org/resource/Sammy_Lawhorn", "http://dbpedia.org/resource/Sandy_West", "http://dbpedia.org/resource/Sangtar", "http://dbpedia.org/resource/Craig_Fuller", "http://dbpedia.org/resource/Sylvain_Chauveau", "http://dbpedia.org/resource/S\u00e9rgio_Assad", "http://dbpedia.org/resource/S\u00f3ley", "http://dbpedia.org/resource/T-Model_Ford", "http://dbpedia.org/resource/Taka_Perry", "http://dbpedia.org/resource/Takafumi_Iwasaki", "http://dbpedia.org/resource/Takako_Minekawa", "http://dbpedia.org/resource/Takuro_(musician)", "http://dbpedia.org/resource/Takuya_(singer)", "http://dbpedia.org/resource/Tallan_Noble_Latz", "http://dbpedia.org/resource/Tao_Rodr\u00edguez-Seeger", "http://dbpedia.org/resource/Tapio_Wilska", "http://dbpedia.org/resource/Tara_Jane_O'Neil", "http://dbpedia.org/resource/Tasha_Baxter", "http://dbpedia.org/resource/Tasker_(producer)", "http://dbpedia.org/resource/Tatana_Sterba", "http://dbpedia.org/resource/Taylor_Jardine", "http://dbpedia.org/resource/Taylor_John_Williams", "http://dbpedia.org/resource/Taylor_Mitchell", "http://dbpedia.org/resource/Ted_Bogan", "http://dbpedia.org/resource/Ted_Daffan", "http://dbpedia.org/resource/Ted_Poley", "http://dbpedia.org/resource/Ted_Templeman", "http://dbpedia.org/resource/Teddy_Corpuz", "http://dbpedia.org/resource/Teddy_Diaz", "http://dbpedia.org/resource/Teddy_Nelson", "http://dbpedia.org/resource/Teemu_M\u00e4ntysaari", "http://dbpedia.org/resource/Teemu_Raimoranta", "http://dbpedia.org/resource/C\u00e9sar_Portillo_de_la_Luz", "http://dbpedia.org/resource/D'Arcy_Broderick", "http://dbpedia.org/resource/Darrin_Pfeiffer", "http://dbpedia.org/resource/Dave_Clark_(Canadian_musician)", "http://dbpedia.org/resource/Dave_Fridmann", "http://dbpedia.org/resource/Dave_Guard", "http://dbpedia.org/resource/Dave_Rick", "http://dbpedia.org/resource/Watermelon_Slim", "http://dbpedia.org/resource/Wayne_Massey", "http://dbpedia.org/resource/Webb_Wilder", "http://dbpedia.org/resource/Wes_Sharon", "http://dbpedia.org/resource/Wesley_Schultz", "http://dbpedia.org/resource/Wilbert_Harrison", "http://dbpedia.org/resource/Will_Mecum", "http://dbpedia.org/resource/Will_Z.", "http://dbpedia.org/resource/William_Anderson_(guitarist)", "http://dbpedia.org/resource/William_Faith", "http://dbpedia.org/resource/William_Gilmore_Weber", "http://dbpedia.org/resource/William_Harper_(composer)", "http://dbpedia.org/resource/William_Morrison_(director)", "http://dbpedia.org/resource/William_Orbit", "http://dbpedia.org/resource/Elisabeth_White", "http://dbpedia.org/resource/Elise_Testone", "http://dbpedia.org/resource/Marshall_Rohner", "http://dbpedia.org/resource/Ryan_Moore_(musician)", "http://dbpedia.org/resource/Scott_Morgan_(musician)", "http://dbpedia.org/resource/Tom_Rothrock", "http://dbpedia.org/resource/Karyu", "http://dbpedia.org/resource/Solorazaf", "http://dbpedia.org/resource/Vivek_Maddala", "http://dbpedia.org/resource/Madjid_Fahem", "http://dbpedia.org/resource/Mak_Grgi\u0107", "http://dbpedia.org/resource/Mohamed_Rouane", "http://dbpedia.org/resource/MonaLisa_Twins", "http://dbpedia.org/resource/Moumita_Tashrin_Nodi", "http://dbpedia.org/resource/Angel_Taylor", "http://dbpedia.org/resource/Angry_Anderson", "http://dbpedia.org/resource/Ani_Kyd", "http://dbpedia.org/resource/Anita_Tsoy", "http://dbpedia.org/resource/Ann_Curless", "http://dbpedia.org/resource/Anne_DeMarinis", "http://dbpedia.org/resource/Anne_Murray", "http://dbpedia.org/resource/Antal_Pusztai", "http://dbpedia.org/resource/Anthony_Drennan", "http://dbpedia.org/resource/Anthony_Paule", "http://dbpedia.org/resource/Anthony_Rossomando", "http://dbpedia.org/resource/Antoine_Dufour", "http://dbpedia.org/resource/Anton_Newcombe", "http://dbpedia.org/resource/Antonio_Breschi", "http://dbpedia.org/resource/Antonio_Olivari", "http://dbpedia.org/resource/Antonio_Rey", "http://dbpedia.org/resource/Antony_H\u00e4m\u00e4l\u00e4inen", "http://dbpedia.org/resource/Apolas_Lermi", "http://dbpedia.org/resource/Ara_Dinkjian", "http://dbpedia.org/resource/Arbee_Stidham", "http://dbpedia.org/resource/Archie_Edwards", "http://dbpedia.org/resource/Arkie_Shibley", "http://dbpedia.org/resource/Armando_Flores", "http://dbpedia.org/resource/Arno_Krabman", "http://dbpedia.org/resource/Aron_Strobel", "http://dbpedia.org/resource/Arqu\u00edmedes_Reyes", "http://dbpedia.org/resource/Elsten_Torres", "http://dbpedia.org/resource/Elvie_Thomas", "http://dbpedia.org/resource/Emancipator_(musician)", "http://dbpedia.org/resource/Emanuel_Ayvas", "http://dbpedia.org/resource/Emilio_Cueto", "http://dbpedia.org/resource/Emily_Ann_Roberts", "http://dbpedia.org/resource/Emily_Keener", "http://dbpedia.org/resource/Emmanuel_Espinosa", "http://dbpedia.org/resource/Endel_Rivers", "http://dbpedia.org/resource/Ender_Thomas", "http://dbpedia.org/resource/Erez_Safar", "http://dbpedia.org/resource/Eric_Erlandson", "http://dbpedia.org/resource/Eric_Herman_(musician)", "http://dbpedia.org/resource/Eric_Meyer_(musician)", "http://dbpedia.org/resource/Eric_Richter", "http://dbpedia.org/resource/Eric_Roche", "http://dbpedia.org/resource/Eric_Sardinas", "http://dbpedia.org/resource/Eric_Taylor_(musician)", "http://dbpedia.org/resource/Eric_Vandenberg", "http://dbpedia.org/resource/Eric_Weissberg", "http://dbpedia.org/resource/Erik_Brann", "http://dbpedia.org/resource/Erik_Hokkanen", "http://dbpedia.org/resource/Erik_Jacobsen", "http://dbpedia.org/resource/Erik_W\u00f8llo", "http://dbpedia.org/resource/Erin_Martin", "http://dbpedia.org/resource/Erkin_Abdulla", "http://dbpedia.org/resource/Erling_Wold", "http://dbpedia.org/resource/Ernest_McLean", "http://dbpedia.org/resource/Ernest_Ranglin", "http://dbpedia.org/resource/Ernie_Lancaster", "http://dbpedia.org/resource/Erol_Alkan", "http://dbpedia.org/resource/Errol_Holt", "http://dbpedia.org/resource/Esa_Holopainen", "http://dbpedia.org/resource/Espinoza_Paz", "http://dbpedia.org/resource/Etta_Baker", "http://dbpedia.org/resource/Eugene_H\u00fctz", "http://dbpedia.org/resource/Eugene_Kelly", "http://dbpedia.org/resource/Evan_Call", "http://dbpedia.org/resource/Evan_Frankfort", "http://dbpedia.org/resource/Evert_Taube", "http://dbpedia.org/resource/Andres_Levin", "http://dbpedia.org/resource/Andrew_Freeman_(musician)", "http://dbpedia.org/resource/Andrew_Hardin", "http://dbpedia.org/resource/Andrew_de_Torres", "http://dbpedia.org/resource/Gerard_Beljon", "http://dbpedia.org/resource/Gerard_Cousins", "http://dbpedia.org/resource/Gerardo_Vel\u00e1zquez", "http://dbpedia.org/resource/Geri_X", "http://dbpedia.org/resource/Gerry_Dialungana", "http://dbpedia.org/resource/Gerry_Hundt", "http://dbpedia.org/resource/Getter_(DJ)", "http://dbpedia.org/resource/Gian_Pyres", "http://dbpedia.org/resource/Gibby_Haynes", "http://dbpedia.org/resource/Gifton_Elias", "http://dbpedia.org/resource/Gil_Parris", "http://dbpedia.org/resource/Gilles_Valiquette", "http://dbpedia.org/resource/Ginger_Pooley", "http://dbpedia.org/resource/Girishh_G.", "http://dbpedia.org/resource/Giuliano_Modarelli", "http://dbpedia.org/resource/Glen_Ballard", "http://dbpedia.org/resource/Glen_Burtnik", "http://dbpedia.org/resource/Glenn_Goins", "http://dbpedia.org/resource/Glenn_Lyse", "http://dbpedia.org/resource/Glenn_Monroig", "http://dbpedia.org/resource/Glenn_Phillips_(guitarist)", "http://dbpedia.org/resource/Glenn_Richards", "http://dbpedia.org/resource/Gloria_Jessica", "http://dbpedia.org/resource/Goldie_Hill", "http://dbpedia.org/resource/Gordon_Haskell", "http://dbpedia.org/resource/Gordon_O'Brien", "http://dbpedia.org/resource/Gordon_Raphael", "http://dbpedia.org/resource/Gordon_Teoh", "http://dbpedia.org/resource/Goree_Carter", "http://dbpedia.org/resource/Gota_Nishidera", "http://dbpedia.org/resource/Arlie_Neaville", "http://dbpedia.org/resource/Marc_Belke", "http://dbpedia.org/resource/Marc_Byrd", "http://dbpedia.org/resource/Marc_Daubert", "http://dbpedia.org/resource/Marc_Lavoine", "http://dbpedia.org/resource/Marc_with_a_C", "http://dbpedia.org/resource/Marcie_Bolen", "http://dbpedia.org/resource/Marcie_Free", "http://dbpedia.org/resource/Marco_Katz", "http://dbpedia.org/resource/Marco_Minnemann", "http://dbpedia.org/resource/Marco_Oppedisano", "http://dbpedia.org/resource/Marcus_Henderson_(musician)", "http://dbpedia.org/resource/Marcus_Reeves", "http://dbpedia.org/resource/Marijohn_Wilkin", "http://dbpedia.org/resource/Mario_Escudero", "http://dbpedia.org/resource/Marion_Worth", "http://dbpedia.org/resource/Marios_Iliopoulos_(musician)", "http://dbpedia.org/resource/Marissa_Paternoster", "http://dbpedia.org/resource/Mark_Collins_(musician)", "http://dbpedia.org/resource/Mark_Crozer", "http://dbpedia.org/resource/Mark_Erelli", "http://dbpedia.org/resource/Mark_Greaney", "http://dbpedia.org/resource/Mark_Hollis", "http://dbpedia.org/resource/Mark_Hummel", "http://dbpedia.org/resource/Mark_Jansen", "http://dbpedia.org/resource/Mark_Knopfler", "http://dbpedia.org/resource/Mark_Olf", "http://dbpedia.org/resource/Mark_Pender", "http://dbpedia.org/resource/Mark_Pickerel", "http://dbpedia.org/resource/Mark_Spiro", "http://dbpedia.org/resource/Mark_Stewart_(American_musician)", "http://dbpedia.org/resource/Mark_Sultan", "http://dbpedia.org/resource/Mark_Tedder", "http://dbpedia.org/resource/Mark_Thwaite", "http://dbpedia.org/resource/Marlhy_Murphy", "http://dbpedia.org/resource/Mars_Bonfire", "http://dbpedia.org/resource/Marshall_Grant", "http://dbpedia.org/resource/Martin_Axenrot", "http://dbpedia.org/resource/Martin_Courtney", "http://dbpedia.org/resource/Martin_Johnson_(musician)", "http://dbpedia.org/resource/Martin_Lee_(singer)", "http://dbpedia.org/resource/Martin_Luther_McCoy", "http://dbpedia.org/resource/Martin_Sweet", "http://dbpedia.org/resource/Martti_Saarinen", "http://dbpedia.org/resource/Marty_Casey", "http://dbpedia.org/resource/Martyn_P._Casey", "http://dbpedia.org/resource/Marykate_O'Neil", "http://dbpedia.org/resource/Masaaki_Kishibe", "http://dbpedia.org/resource/Masanori_Mark_Christianson", "http://dbpedia.org/resource/Masataka_Matsutoya", "http://dbpedia.org/resource/Masaya_Matsuura", "http://dbpedia.org/resource/Piggy_D.", "http://dbpedia.org/resource/Pino_Rucher", "http://dbpedia.org/resource/Pokey_LaFarge", "http://dbpedia.org/resource/Pontus_Norgren", "http://dbpedia.org/resource/Popa_Chubby", "http://dbpedia.org/resource/Preston_Shannon", "http://dbpedia.org/resource/Prince_Fox", "http://dbpedia.org/resource/Tender_Forever", "http://dbpedia.org/resource/Terje_Bakken", "http://dbpedia.org/resource/Terje_Gewelt", "http://dbpedia.org/resource/Terje_Winterst\u00f8_R\u00f8thing", "http://dbpedia.org/resource/Terra_Naomi", "http://dbpedia.org/resource/Terry_Garland", "http://dbpedia.org/resource/Terry_Jacks", "http://dbpedia.org/resource/Terry_Kelly_(singer)", "http://dbpedia.org/resource/Terry_Robb", "http://dbpedia.org/resource/Terry_Taylor_(musician)", "http://dbpedia.org/resource/Texas_Johnny_Brown", "http://dbpedia.org/resource/Texas_Ruby", "http://dbpedia.org/resource/Thanksgiving_(band)", "http://dbpedia.org/resource/The_Butler_Twins", "http://dbpedia.org/resource/Dave_van_Vuuren", "http://dbpedia.org/resource/David_Bloom_(musician)", "http://dbpedia.org/resource/David_Daniell_(musician)", "http://dbpedia.org/resource/David_Grier", "http://dbpedia.org/resource/David_Grissom", "http://dbpedia.org/resource/U.P._Wilson", "http://dbpedia.org/resource/Uli_Jon_Roth", "http://dbpedia.org/resource/Uri_Frost", "http://dbpedia.org/resource/Little_Buddy_Doyle", "http://dbpedia.org/resource/Ney_Dimaculangan", "http://dbpedia.org/resource/Peter_Deary", "http://dbpedia.org/resource/Rom_Di_Prisco", "http://dbpedia.org/resource/Scott_Devendorf", "http://dbpedia.org/resource/Seton_Daunt", "http://dbpedia.org/resource/Hideki_Matsushige", "http://dbpedia.org/resource/Jonny_Maudling", "http://dbpedia.org/resource/Mark_Warner_(guitarist)", "http://dbpedia.org/resource/Martin_Larsson_(guitarist)", "http://dbpedia.org/resource/Martine_Locke", "http://dbpedia.org/resource/The_Mammals", "http://dbpedia.org/resource/Paul_Clark_(Christian_musician)", "http://dbpedia.org/resource/Paul_Neville_(musician)", "http://dbpedia.org/resource/Richard_Pleasance", "http://dbpedia.org/resource/Valor_Kand", "http://dbpedia.org/resource/Vasco_Martins", "http://dbpedia.org/resource/Louis_Washington", "http://dbpedia.org/resource/Greg_Lisher", "http://dbpedia.org/resource/Hugh_Metcalfe", "http://dbpedia.org/resource/Lance_Robertson", "http://dbpedia.org/resource/Jake_Xerxes_Fussell", "http://dbpedia.org/resource/Jeff_Suffering", "http://dbpedia.org/resource/Jeffrey_Frederick", "http://dbpedia.org/resource/Jenn_Champion", "http://dbpedia.org/resource/Joe_Grushecky", "http://dbpedia.org/resource/Nic_Offer", "http://dbpedia.org/resource/Lana_Scolaro", "http://dbpedia.org/resource/Pional", "http://dbpedia.org/resource/Booker_T._Jones", "http://dbpedia.org/resource/Boon_Gould", "http://dbpedia.org/resource/Boris_Pelekh", "http://dbpedia.org/resource/Bosco_Mann", "http://dbpedia.org/resource/Boudewijn_Vincent_Bonebakker", "http://dbpedia.org/resource/Boyd_Gilmore", "http://dbpedia.org/resource/Brad_Barr", "http://dbpedia.org/resource/Brad_Gillis", "http://dbpedia.org/resource/Brad_Kent", "http://dbpedia.org/resource/Brad_Laner", "http://dbpedia.org/resource/Brad_Myers_(guitarist)", "http://dbpedia.org/resource/Bradley_Grace", "http://dbpedia.org/resource/Brainbug", "http://dbpedia.org/resource/Brandon_Boyd", "http://dbpedia.org/resource/Brendan_Canning", "http://dbpedia.org/resource/Brendan_Maclean", "http://dbpedia.org/resource/Brendan_Perry", "http://dbpedia.org/resource/Brett_Dennen", "http://dbpedia.org/resource/Brett_Detar", "http://dbpedia.org/resource/Brett_Nelson", "http://dbpedia.org/resource/Brian_Chase", "http://dbpedia.org/resource/Brian_Henneman", "http://dbpedia.org/resource/Brian_Hughes_(musician)", "http://dbpedia.org/resource/Brian_James_(guitarist)", "http://dbpedia.org/resource/Brian_Klemm", "http://dbpedia.org/resource/Brian_Lopez_(musician)", "http://dbpedia.org/resource/Brian_MacLeod_(Canadian_musician)", "http://dbpedia.org/resource/Brian_O'Connell_(musician)", "http://dbpedia.org/resource/Britt_Daniel", "http://dbpedia.org/resource/Bruce_Arnold_(jazz)", "http://dbpedia.org/resource/Bruce_Bouillet", "http://dbpedia.org/resource/Bruce_Cameron_(guitarist)", "http://dbpedia.org/resource/Bruce_Carroll", "http://dbpedia.org/resource/Bruce_Driscoll", "http://dbpedia.org/resource/Bruce_Hall_(musician)", "http://dbpedia.org/resource/Bruce_Turgon", "http://dbpedia.org/resource/Bruce_Watson_(Scottish_guitarist)", "http://dbpedia.org/resource/Bruce_Woolley", "http://dbpedia.org/resource/Bruno_Kova\u010di\u0107", "http://dbpedia.org/resource/Brush_Shiels", "http://dbpedia.org/resource/Bryan_Gregory", "http://dbpedia.org/resource/Bryan_MacLean", "http://dbpedia.org/resource/Bryan_Sutton", "http://dbpedia.org/resource/Bryce_Dessner", "http://dbpedia.org/resource/Bryn_Haworth", "http://dbpedia.org/resource/Bud_Scott", "http://dbpedia.org/resource/Adam_Donovan", "http://dbpedia.org/resource/Adam_Hamilton_(musician)", "http://dbpedia.org/resource/Adam_Phillips_(musician)", "http://dbpedia.org/resource/Adam_Ross_(musician)", "http://dbpedia.org/resource/Ayinde_Bakare", "http://dbpedia.org/resource/Jack_de_Keyzer", "http://dbpedia.org/resource/Jacquire_King", "http://dbpedia.org/resource/Jah_Jerry_Haynes", "http://dbpedia.org/resource/Jahn_Teigen", "http://dbpedia.org/resource/Jai_Uttal", "http://dbpedia.org/resource/Jake_Andrews", "http://dbpedia.org/resource/Jake_Clemons", "http://dbpedia.org/resource/Jake_Eckert", "http://dbpedia.org/resource/Jake_Hoot", "http://dbpedia.org/resource/Jake_Rodenhouse", "http://dbpedia.org/resource/Jake_Shears", "http://dbpedia.org/resource/James_Armstrong_(musician)", "http://dbpedia.org/resource/James_Blackshaw", "http://dbpedia.org/resource/James_Blundell_(singer)", "http://dbpedia.org/resource/James_Dean_Bradfield", "http://dbpedia.org/resource/James_Durbin_(singer)", "http://dbpedia.org/resource/James_Edward_Barker", "http://dbpedia.org/resource/James_Fearnley", "http://dbpedia.org/resource/James_Genus", "http://dbpedia.org/resource/James_Hutchinson_(musician)", "http://dbpedia.org/resource/James_Kottak", "http://dbpedia.org/resource/James_Litherland", "http://dbpedia.org/resource/James_McCartney", "http://dbpedia.org/resource/James_Stroud", "http://dbpedia.org/resource/James_Williamson_(musician)", "http://dbpedia.org/resource/Jamie_Arentzen", "http://dbpedia.org/resource/Jamie_Morrison", "http://dbpedia.org/resource/Jamie_Stewart_(bassist)", "http://dbpedia.org/resource/Jan_Akkerman", "http://dbpedia.org/resource/Jan_Koemmet", "http://dbpedia.org/resource/Jan_Kuehnemund", "http://dbpedia.org/resource/Jan_Rot", "http://dbpedia.org/resource/Janelle_Arthur", "http://dbpedia.org/resource/Janet_Gardner", "http://dbpedia.org/resource/Janet_Weiss", "http://dbpedia.org/resource/Janko_Nilovi\u0107", "http://dbpedia.org/resource/Janove_Ottesen", "http://dbpedia.org/resource/Jared_Slingerland", "http://dbpedia.org/resource/Jari_M\u00e4enp\u00e4\u00e4", "http://dbpedia.org/resource/Jason_Freese", "http://dbpedia.org/resource/Jason_Loewenstein", "http://dbpedia.org/resource/Jason_Schimmel", "http://dbpedia.org/resource/Jason_Solowsky", "http://dbpedia.org/resource/Jason_Stollsteimer", "http://dbpedia.org/resource/Jason_Webley", "http://dbpedia.org/resource/Jason_Wilber", "http://dbpedia.org/resource/Javiera_Mena", "http://dbpedia.org/resource/Jay_Owens_(musician)", "http://dbpedia.org/resource/Jay_Sparrow", "http://dbpedia.org/resource/Jay_Yuenger", "http://dbpedia.org/resource/Jaymay", "http://dbpedia.org/resource/Jean-Fran\u00e7ois_Dagenais", "http://dbpedia.org/resource/Jean-Paul_Samputu", "http://dbpedia.org/resource/Jean_Marie_Rebischung", "http://dbpedia.org/resource/Jed_Simon", "http://dbpedia.org/resource/Kasun_Kalhara", "http://dbpedia.org/resource/Kate_Alexa", "http://dbpedia.org/resource/Kate_Schutt", "http://dbpedia.org/resource/Kathi_Wilcox", "http://dbpedia.org/resource/Kathryn_Calder", "http://dbpedia.org/resource/Kathy_Mar", "http://dbpedia.org/resource/Katie_Rox", "http://dbpedia.org/resource/Kaveh_Afagh", "http://dbpedia.org/resource/Kay_Hanley", "http://dbpedia.org/resource/Kaya_Stewart", "http://dbpedia.org/resource/Kayvan_Mirhadi", "http://dbpedia.org/resource/Kazumi_Totaka", "http://dbpedia.org/resource/Keith_Anderson", "http://dbpedia.org/resource/Keith_Gattis", "http://dbpedia.org/resource/Keith_Howland", "http://dbpedia.org/resource/Kelly_Gray_(musician)", "http://dbpedia.org/resource/Kelly_Richey", "http://dbpedia.org/resource/Ken_Fleming_(musician)", "http://dbpedia.org/resource/Ken_Tamplin", "http://dbpedia.org/resource/Kendall_Schmidt", "http://dbpedia.org/resource/Kenji_Yamamoto_(composer,_born_1964)", "http://dbpedia.org/resource/Kenneth_Carllile", "http://dbpedia.org/resource/Kenneth_Young_(Scottish_composer)", "http://dbpedia.org/resource/Kenny_Beats", "http://dbpedia.org/resource/Kenny_Brown_(guitarist)", "http://dbpedia.org/resource/Kenny_H\u00e5kansson", "http://dbpedia.org/resource/Kenny_Lovelace", "http://dbpedia.org/resource/Kenny_Neal", "http://dbpedia.org/resource/Kenshi_Yonezu", "http://dbpedia.org/resource/Kensuke_Kita", "http://dbpedia.org/resource/Kent_Henry", "http://dbpedia.org/resource/Kenta_(musician)", "http://dbpedia.org/resource/Kerri_Woelke", "http://dbpedia.org/resource/Kerryn_Tolhurst", "http://dbpedia.org/resource/Kev_Carmody", "http://dbpedia.org/resource/Kevin_Cronin", "http://dbpedia.org/resource/Kevin_Drumm", "http://dbpedia.org/resource/Kevin_Ross_(musician)", "http://dbpedia.org/resource/Kevin_Rudolf", "http://dbpedia.org/resource/Khyal_Muhammad", "http://dbpedia.org/resource/Kid_Ramos", "http://dbpedia.org/resource/Kieren_Webster", "http://dbpedia.org/resource/Kiko_Zambianchi", "http://dbpedia.org/resource/Kim_Tae-won", "http://dbpedia.org/resource/Kina_Grannis", "http://dbpedia.org/resource/Bob_Mayo", "http://dbpedia.org/resource/Broom_Bezzums", "http://dbpedia.org/resource/Mason_Ruffner", "http://dbpedia.org/resource/Mason_Williams", "http://dbpedia.org/resource/Matan_Cohen", "http://dbpedia.org/resource/Mathias_Duplessy", "http://dbpedia.org/resource/Mathias_F\u00e4rm", "http://dbpedia.org/resource/Mathias_Malzieu", "http://dbpedia.org/resource/Mats_Ronander", "http://dbpedia.org/resource/Matt_%22Guitar%22_Murphy", "http://dbpedia.org/resource/Matt_Bachand", "http://dbpedia.org/resource/Matt_Bauder", "http://dbpedia.org/resource/Matt_Bronleewe", "http://dbpedia.org/resource/Matt_Frey", "http://dbpedia.org/resource/Matt_Friction", "http://dbpedia.org/resource/Matt_Guillory", "http://dbpedia.org/resource/Matt_Hunter_(singer)", "http://dbpedia.org/resource/Matt_McCoy_(worship_leader)", "http://dbpedia.org/resource/Matt_Noveskey", "http://dbpedia.org/resource/Matt_Odmark", "http://dbpedia.org/resource/Matt_Oliver", "http://dbpedia.org/resource/Matthew_Davidson", "http://dbpedia.org/resource/Matthias_Jabs", "http://dbpedia.org/resource/Matthieu_Hartley", "http://dbpedia.org/resource/Mattias_Alkberg", "http://dbpedia.org/resource/Maurice_Coyne", "http://dbpedia.org/resource/Maurice_Starr", "http://dbpedia.org/resource/Mauro_Pawlowski", "http://dbpedia.org/resource/Mav_Stevens", "http://dbpedia.org/resource/Max_Carl", "http://dbpedia.org/resource/Maxwell_Street_Jimmy_Davis", "http://dbpedia.org/resource/Mbah_Surip", "http://dbpedia.org/resource/Mean_Mary", "http://dbpedia.org/resource/Meg_Duffy", "http://dbpedia.org/resource/Mehdi_Yarrahi", "http://dbpedia.org/resource/Mehmet_Erdem", "http://dbpedia.org/resource/Meja", "http://dbpedia.org/resource/Mel_Bay", "http://dbpedia.org/resource/Melinda_Caroll", "http://dbpedia.org/resource/Melvin_Franklin", "http://dbpedia.org/resource/Merle_Watson", "http://dbpedia.org/resource/Camille_Davila", "http://dbpedia.org/resource/Charles_L._Johnson", "http://dbpedia.org/resource/Rainhard_Fendrich", "http://dbpedia.org/resource/Rajko_Koji\u0107", "http://dbpedia.org/resource/Ralf_H\u00fctter", "http://dbpedia.org/resource/Ralph_Covert", "http://dbpedia.org/resource/Ralph_Jezzard", "http://dbpedia.org/resource/Ralph_Murphy_(musician)", "http://dbpedia.org/resource/Ralph_Santolla", "http://dbpedia.org/resource/Ramblin'_Thomas", "http://dbpedia.org/resource/Randall_Bewley", "http://dbpedia.org/resource/Randy_Crouch", "http://dbpedia.org/resource/Randy_Hansen", "http://dbpedia.org/resource/Randy_Jackson_(Zebra)", "http://dbpedia.org/resource/Randy_Owen", "http://dbpedia.org/resource/Randy_Sparks", "http://dbpedia.org/resource/Randy_Thomas_(musician)", "http://dbpedia.org/resource/Rappin'_Granny", "http://dbpedia.org/resource/Ray_Benson", "http://dbpedia.org/resource/Ray_Flacke", "http://dbpedia.org/resource/Ray_Suen", "http://dbpedia.org/resource/Rayito", "http://dbpedia.org/resource/Raymund_Marasigan", "http://dbpedia.org/resource/Red_Murrell", "http://dbpedia.org/resource/Redd_Volkaert", "http://dbpedia.org/resource/Reece_Mastin", "http://dbpedia.org/resource/Reed_Mathis", "http://dbpedia.org/resource/Reeves_Gabrels", "http://dbpedia.org/resource/Reggie_Lucas", "http://dbpedia.org/resource/Reggie_Young", "http://dbpedia.org/resource/Renato_Teixeira", "http://dbpedia.org/resource/Rene_Van_Verseveld", "http://dbpedia.org/resource/Reni_(musician)", "http://dbpedia.org/resource/Ren\u00e9_Aubry", "http://dbpedia.org/resource/Ren\u00e9_Berg", "http://dbpedia.org/resource/Ren\u00e9_Hall", "http://dbpedia.org/resource/Ren\u00e9_Rutten", "http://dbpedia.org/resource/Rex_Griffin", "http://dbpedia.org/resource/Rex_Smith", "http://dbpedia.org/resource/The_Doubleclicks", "http://dbpedia.org/resource/The_Sick-Leaves", "http://dbpedia.org/resource/The_Voluntary_Butler_Scheme", "http://dbpedia.org/resource/Emil_Werstler", "http://dbpedia.org/resource/Kurt_Ralske", "http://dbpedia.org/resource/Margaret_Fiedler_McGinnis", "http://dbpedia.org/resource/Jeff_Holdsworth", "http://dbpedia.org/resource/Ivan_Sekyra", "http://dbpedia.org/resource/James_Poyser", "http://dbpedia.org/resource/Jamison_Covington", "http://dbpedia.org/resource/Mark_del_Castillo", "http://dbpedia.org/resource/Peter_Mengede", "http://dbpedia.org/resource/Wendy_Woo", "http://dbpedia.org/resource/Lillie_Mae", "http://dbpedia.org/resource/Sara_Curruchich", "http://dbpedia.org/resource/A._C._Newman", "http://dbpedia.org/resource/Nikolo_Kotzev", "http://dbpedia.org/resource/Nineteen85", "http://dbpedia.org/resource/Nino_Alejandro", "http://dbpedia.org/resource/Nito_Mestre", "http://dbpedia.org/resource/Ni\u00f1o_Josele", "http://dbpedia.org/resource/Noel_Haggard", "http://dbpedia.org/resource/Nokie_Edwards", "http://dbpedia.org/resource/Nora_O'Connor", "http://dbpedia.org/resource/Norihiko_Hibino", "http://dbpedia.org/resource/Norma_Tanega", "http://dbpedia.org/resource/Norman_Bedard", "http://dbpedia.org/resource/G\u00fcltekin_Kaan", "http://dbpedia.org/resource/Hannes_Coetzee", "http://dbpedia.org/resource/Jason_Gobel", "http://dbpedia.org/resource/Jeff_Greinke", "http://dbpedia.org/resource/Hoodlum_Priest_(musician)", "http://dbpedia.org/resource/Ian_Hultquist", "http://dbpedia.org/resource/Jan_Hellriegel", "http://dbpedia.org/resource/Peter_Holmstr\u00f6m", "http://dbpedia.org/resource/Laura_Carter_(musician)", "http://dbpedia.org/resource/Laura_Hall_(musician)", "http://dbpedia.org/resource/Lorn_(musician)", "http://dbpedia.org/resource/Jonathan_Rado", "http://dbpedia.org/resource/Randy_Murray", "http://dbpedia.org/resource/Ray_Chamberlain_(musician)", "http://dbpedia.org/resource/Ray_White", "http://dbpedia.org/resource/Pat_McLaughlin", "http://dbpedia.org/resource/Sharon_Knight", "http://dbpedia.org/resource/Rob_Benvie", "http://dbpedia.org/resource/The_Black_Ryder", "http://dbpedia.org/resource/Mark_Orton", "http://dbpedia.org/resource/Noah_Henson", "http://dbpedia.org/resource/Peter_Zirschky", "http://dbpedia.org/resource/Lori_Linstruth", "http://dbpedia.org/resource/Samuli_Ponsimaa", "http://dbpedia.org/resource/Matt_Nasir", "http://dbpedia.org/resource/Stephen_Carroll", "http://dbpedia.org/resource/Roxanne_Tataei", "http://dbpedia.org/resource/Tony_Flynn", "http://dbpedia.org/resource/Clara_van_Wel", "http://dbpedia.org/resource/Clare_Bowditch", "http://dbpedia.org/resource/Clarence_Garlow", "http://dbpedia.org/resource/Clarence_White", "http://dbpedia.org/resource/Clark_Beckham", "http://dbpedia.org/resource/Claude_Coleman_Jr.", "http://dbpedia.org/resource/Claudio_Valenzuela", "http://dbpedia.org/resource/Claus_Asmussen", "http://dbpedia.org/resource/Claus_Norreen", "http://dbpedia.org/resource/Clem_Clempson", "http://dbpedia.org/resource/Clifton_Hyde", "http://dbpedia.org/resource/Clint_Mansell", "http://dbpedia.org/resource/Clive_Gregson", "http://dbpedia.org/resource/Coco_Montoya", "http://dbpedia.org/resource/Coco_Schumann", "http://dbpedia.org/resource/Cody_Votolato", "http://dbpedia.org/resource/Cody_Wood", "http://dbpedia.org/resource/Colin_C._Allrich", "http://dbpedia.org/resource/Colin_Frangicetto", "http://dbpedia.org/resource/Colin_Marston", "http://dbpedia.org/resource/Congorock", "http://dbpedia.org/resource/Conny_Bloom", "http://dbpedia.org/resource/Cool_John_Ferguson", "http://dbpedia.org/resource/Coot_Grant", "http://dbpedia.org/resource/Cootie_Stark", "http://dbpedia.org/resource/Alfredo_Ortiz", "http://dbpedia.org/resource/Ali_Azimi", "http://dbpedia.org/resource/Alice_Gerrard", "http://dbpedia.org/resource/Almighty_Defenders", "http://dbpedia.org/resource/Amor_Belhom_Duo", "http://dbpedia.org/resource/Amund_Svensson", "http://dbpedia.org/resource/Attlas", "http://dbpedia.org/resource/John_Jennings_(musician)", "http://dbpedia.org/resource/John_Kay_(musician)", "http://dbpedia.org/resource/John_Konesky", "http://dbpedia.org/resource/John_Leventhal", "http://dbpedia.org/resource/John_Lev\u00e9n", "http://dbpedia.org/resource/John_Lilley", "http://dbpedia.org/resource/John_Lloyd_Taylor", "http://dbpedia.org/resource/John_Lombardo", "http://dbpedia.org/resource/John_McGeoch", "http://dbpedia.org/resource/John_Moore_(British_musician)", "http://dbpedia.org/resource/John_P._Varkey", "http://dbpedia.org/resource/John_Popper", "http://dbpedia.org/resource/John_Powell_(film_composer)", "http://dbpedia.org/resource/John_Sheahan", "http://dbpedia.org/resource/John_Squire", "http://dbpedia.org/resource/John_Starling_(musician)", "http://dbpedia.org/resource/John_Walker_(musician)", "http://dbpedia.org/resource/John_Whynot", "http://dbpedia.org/resource/John_Zwetsloot", "http://dbpedia.org/resource/Johnnie_Bassett", "http://dbpedia.org/resource/Johnnie_Dee", "http://dbpedia.org/resource/Johnny_A.", "http://dbpedia.org/resource/Johnny_B._Moore", "http://dbpedia.org/resource/Johnny_Echols", "http://dbpedia.org/resource/Johnny_Fuller_(musician)", "http://dbpedia.org/resource/Johnny_Gioeli", "http://dbpedia.org/resource/Johnny_Goudie", "http://dbpedia.org/resource/Johnny_Heartsman", "http://dbpedia.org/resource/Johnny_Hickman", "http://dbpedia.org/resource/Johnny_Horton", "http://dbpedia.org/resource/Johnny_Laws", "http://dbpedia.org/resource/Johnny_Lee_(singer)", "http://dbpedia.org/resource/Johnny_Moeller", "http://dbpedia.org/resource/Johnny_Nicholas", "http://dbpedia.org/resource/Johnny_Rawls", "http://dbpedia.org/resource/Johnny_Rod", "http://dbpedia.org/resource/Jon_Auer", "http://dbpedia.org/resource/Jon_Brion", "http://dbpedia.org/resource/Jon_Fratelli", "http://dbpedia.org/resource/Jon_Klein_(musician)", "http://dbpedia.org/resource/Jon_Lajoie", "http://dbpedia.org/resource/Jon_McClure", "http://dbpedia.org/resource/Jon_Sholle", "http://dbpedia.org/resource/Jon_Siebels", "http://dbpedia.org/resource/Jon_Toogood", "http://dbpedia.org/resource/Jonas_Bjerre", "http://dbpedia.org/resource/Jonas_Fjeld", "http://dbpedia.org/resource/Jonathan_Florencio", "http://dbpedia.org/resource/Jonathan_Richman", "http://dbpedia.org/resource/Jonny_Lang", "http://dbpedia.org/resource/Jonny_Wickersham", "http://dbpedia.org/resource/Jono_El_Grande", "http://dbpedia.org/resource/Jordan_James_Reyes", "http://dbpedia.org/resource/Josef_Jan\u00ed\u010dek", "http://dbpedia.org/resource/Joseph_Brent", "http://dbpedia.org/resource/Joseph_E-Shine_Mizrachi", "http://dbpedia.org/resource/Joseph_Genaro", "http://dbpedia.org/resource/Joseph_Mount", "http://dbpedia.org/resource/Joseph_Spence_(musician)", "http://dbpedia.org/resource/Josh_Gracin", "http://dbpedia.org/resource/Josh_Graves", "http://dbpedia.org/resource/Josh_Klinghoffer", "http://dbpedia.org/resource/Josh_Leo", "http://dbpedia.org/resource/Josh_Portman", "http://dbpedia.org/resource/Josh_Ritter", "http://dbpedia.org/resource/Josh_Wilson_(musician)", "http://dbpedia.org/resource/Jos\u00e9_Antonio_Rodr\u00edguez_(musician)", "http://dbpedia.org/resource/Jos\u00e9_Ayerve", "http://dbpedia.org/resource/Jos\u00e9_Nogueras", "http://dbpedia.org/resource/Joy_Sarkar", "http://dbpedia.org/resource/Juan_Aguirre", "http://dbpedia.org/resource/Juan_Calleros", "http://dbpedia.org/resource/Juan_Cirerol", "http://dbpedia.org/resource/Juan_Manuel_Ca\u00f1izares", "http://dbpedia.org/resource/Juan_Mart\u00edn", "http://dbpedia.org/resource/Judy_Rodman", "http://dbpedia.org/resource/Jukka_Tolonen", "http://dbpedia.org/resource/Jules_De_Martino", "http://dbpedia.org/resource/Julia_Nunes", "http://dbpedia.org/resource/Santiago_Dobles", "http://dbpedia.org/resource/Santosh_Joshi", "http://dbpedia.org/resource/Saori_Atsumi", "http://dbpedia.org/resource/Sarah_Martin_(musician)", "http://dbpedia.org/resource/Sarmad_Abdul_Ghafoor", "http://dbpedia.org/resource/Sascha_Paeth", "http://dbpedia.org/resource/Sasha_Boole", "http://dbpedia.org/resource/Satsuki_(musician)", "http://dbpedia.org/resource/Savannah_Welch", "http://dbpedia.org/resource/Saw_Bwe_Hmu", "http://dbpedia.org/resource/Scot_Coogan", "http://dbpedia.org/resource/Scott_Blasey", "http://dbpedia.org/resource/Scott_Borland", "http://dbpedia.org/resource/Scott_Danough", "http://dbpedia.org/resource/Scott_Ellison_(musician)", "http://dbpedia.org/resource/Scott_Kannberg", "http://dbpedia.org/resource/Scott_Shiflett", "http://dbpedia.org/resource/Scott_Sorry", "http://dbpedia.org/resource/Scott_Thurston", "http://dbpedia.org/resource/Sead_Lipova\u010da", "http://dbpedia.org/resource/Seamus_Kennedy_(singer)", "http://dbpedia.org/resource/Sean_Costello", "http://dbpedia.org/resource/Sean_Lakeman", "http://dbpedia.org/resource/Sean_Mackin_(musician)", "http://dbpedia.org/resource/Sean_Malone", "http://dbpedia.org/resource/Sean_O'Hagan", "http://dbpedia.org/resource/Sebastian_Krys", "http://dbpedia.org/resource/Selina_Martin_(musician)", "http://dbpedia.org/resource/Selma_Oxor", "http://dbpedia.org/resource/Sepand_Samzadeh", "http://dbpedia.org/resource/Sergey_Mavrin", "http://dbpedia.org/resource/Sergio_Franchi", "http://dbpedia.org/resource/Sergio_Vall\u00edn", "http://dbpedia.org/resource/Faton_Macula", "http://dbpedia.org/resource/Giannis_Tatasopoulos", "http://dbpedia.org/resource/J._Robbins", "http://dbpedia.org/resource/Josh_Cunningham", "http://dbpedia.org/resource/Partha_Barua", "http://dbpedia.org/resource/Larry_Reinhardt", "http://dbpedia.org/resource/Marco_Sartor", "http://dbpedia.org/resource/It's_Jo_and_Danny", "http://dbpedia.org/resource/Jim_Klein", "http://dbpedia.org/resource/Shane_Gallagher", "http://dbpedia.org/resource/Lukas_Simonis", "http://dbpedia.org/resource/Jim_Keller", "http://dbpedia.org/resource/Jim_Stacey", "http://dbpedia.org/resource/Jimmy_D'Anda", "http://dbpedia.org/resource/Jude_Cowan_Montague", "http://dbpedia.org/resource/Walter_Roland", "http://dbpedia.org/resource/Marcus_Hamblett", "http://dbpedia.org/resource/Matt_Elliott_(musician)", "http://dbpedia.org/resource/Slav_Simanic", "http://dbpedia.org/resource/Owen_Temple", "http://dbpedia.org/resource/Julian_Mandrake", "http://dbpedia.org/resource/Kim_Ljung", "http://dbpedia.org/resource/MiKKa", "http://dbpedia.org/resource/Michael_Feuerstack", "http://dbpedia.org/resource/Baaziz", "http://dbpedia.org/resource/Babis_Stokas", "http://dbpedia.org/resource/Baby_Tate", "http://dbpedia.org/resource/Bagher_Moazen", "http://dbpedia.org/resource/Balawan", "http://dbpedia.org/resource/Barbara_Manning", "http://dbpedia.org/resource/Barrett_Baber", "http://dbpedia.org/resource/Barry_Allen_(musician)", "http://dbpedia.org/resource/Barry_Sless", "http://dbpedia.org/resource/Barry_Sparks", "http://dbpedia.org/resource/Bart_Ramsey", "http://dbpedia.org/resource/Bar\u0131\u015f_Akarsu", "http://dbpedia.org/resource/Bashful_Brother_Oswald", "http://dbpedia.org/resource/Andy_LeMaster", "http://dbpedia.org/resource/Inge_Johansson", "http://dbpedia.org/resource/Ingo_Pohlmann", "http://dbpedia.org/resource/Ioan_Gyuri_Pascu", "http://dbpedia.org/resource/Ira_Black_(musician)", "http://dbpedia.org/resource/Irina_Kulikova_(guitarist)", "http://dbpedia.org/resource/Isaac_Brock_(musician)", "http://dbpedia.org/resource/Ivan_Ozhogin", "http://dbpedia.org/resource/Ivar_Bj\u00f8rnson", "http://dbpedia.org/resource/Ivar_de_Graaf", "http://dbpedia.org/resource/Iyad_Rimawi", "http://dbpedia.org/resource/J.J._Malone", "http://dbpedia.org/resource/J._B._Hutto", "http://dbpedia.org/resource/JW-Jones", "http://dbpedia.org/resource/Jack_Jersey", "http://dbpedia.org/resource/Jack_Owens_(blues_singer)", "http://dbpedia.org/resource/Mitsuya_Kurokawa", "http://dbpedia.org/resource/Moacir_Santos", "http://dbpedia.org/resource/Mohammad_Ridwan_Hafiedz", "http://dbpedia.org/resource/Mondine_Garcia", "http://dbpedia.org/resource/Moody_Jones", "http://dbpedia.org/resource/Morley_Bartnoff", "http://dbpedia.org/resource/Morrisson_(singer)", "http://dbpedia.org/resource/Morten_Abel", "http://dbpedia.org/resource/Morten_Bergeton_Iversen", "http://dbpedia.org/resource/Moses_Stone", "http://dbpedia.org/resource/Mosh_Ben-Ari", "http://dbpedia.org/resource/Mugison", "http://dbpedia.org/resource/Murray_Cook", "http://dbpedia.org/resource/Mylon_LeFevre", "http://dbpedia.org/resource/N.O._Joe", "http://dbpedia.org/resource/Nanae_Fujiwara", "http://dbpedia.org/resource/Nano_Stern", "http://dbpedia.org/resource/Naoki_Maeda_(composer)", "http://dbpedia.org/resource/Natalia_Contesse", "http://dbpedia.org/resource/Natalia_Lafourcade", "http://dbpedia.org/resource/Natalie_McCool", "http://dbpedia.org/resource/Nate_Newton_(musician)", "http://dbpedia.org/resource/Nathan_Connolly", "http://dbpedia.org/resource/Cheb_Kader", "http://dbpedia.org/resource/Chef_Tone", "http://dbpedia.org/resource/Chen_Ming-chang", "http://dbpedia.org/resource/Cheyenne_Marie_Mize", "http://dbpedia.org/resource/Christopher_Willits", "http://dbpedia.org/resource/Chuck_Cannon", "http://dbpedia.org/resource/Tony_Bevilacqua", "http://dbpedia.org/resource/Tony_Bowers", "http://dbpedia.org/resource/Tony_Cox_(South_African_musician)", "http://dbpedia.org/resource/Tony_Glover", "http://dbpedia.org/resource/Tony_Mills_(musician)", "http://dbpedia.org/resource/Tony_Romandini", "http://dbpedia.org/resource/Toomas_Vanem", "http://dbpedia.org/resource/Top_Topham", "http://dbpedia.org/resource/Torgeir_Vassvik", "http://dbpedia.org/resource/Toru_Minegishi", "http://dbpedia.org/resource/Toshinobu_Kubota", "http://dbpedia.org/resource/Toti_Soler", "http://dbpedia.org/resource/Toy_Caldwell", "http://dbpedia.org/resource/Tracy_Bonham", "http://dbpedia.org/resource/Tracy_Grammer", "http://dbpedia.org/resource/Trampled_by_Turtles", "http://dbpedia.org/resource/Travis_Stever", "http://dbpedia.org/resource/Trevor_Lissauer", "http://dbpedia.org/resource/Trevor_Peres", "http://dbpedia.org/resource/Trevor_Tanner", "http://dbpedia.org/resource/Trey_Anastasio", "http://dbpedia.org/resource/Troy_Stetina", "http://dbpedia.org/resource/Tr\u1ecbnh_C\u00f4ng_S\u01a1n", "http://dbpedia.org/resource/Tsuneo_Imahori", "http://dbpedia.org/resource/Tsuyoshi_Ujiki", "http://dbpedia.org/resource/Tutu_Jones", "http://dbpedia.org/resource/Tyler_Bates", "http://dbpedia.org/resource/Tyler_Ewing", "http://dbpedia.org/resource/Tyler_James_(American_musician)", "http://dbpedia.org/resource/Tyler_Kyte", "http://dbpedia.org/resource/Tyler_Spencer", "http://dbpedia.org/resource/Ethan_Kath", "http://dbpedia.org/resource/Jace_Lasek", "http://dbpedia.org/resource/Jack_Frost_(musician)", "http://dbpedia.org/resource/James_Shaw_(musician)", "http://dbpedia.org/resource/James_Tyler_(musician)", "http://dbpedia.org/resource/Jennifer_Turner_(musician)", "http://dbpedia.org/resource/Jil_Y._Creek", "http://dbpedia.org/resource/Jim_Wilson_(guitarist)", "http://dbpedia.org/resource/John_Collins_(Canadian_musician)", "http://dbpedia.org/resource/Johnny_Edwards_(musician)", "http://dbpedia.org/resource/Megan_Isaacson", "http://dbpedia.org/resource/Ron_Jarzombek", "http://dbpedia.org/resource/Sally_Jaye", "http://dbpedia.org/resource/Steinar_Sverd_Johnsen", "http://dbpedia.org/resource/Walter_%22Junie%22_Morrison", "http://dbpedia.org/resource/Kathy_Foster_(musician)", "http://dbpedia.org/resource/Kelly_Bailey_(composer)", "http://dbpedia.org/resource/Khwezi_Sifunda", "http://dbpedia.org/resource/Kirstine_Stubbe_Teglbj\u00e6rg", "http://dbpedia.org/resource/Scott_Klopfenstein", "http://dbpedia.org/resource/Tad_Kubler", "http://dbpedia.org/resource/Radwan_Ghazi_Moumneh", "http://dbpedia.org/resource/Aaron_Johnson_(musician)", "http://dbpedia.org/resource/Aaron_North", "http://dbpedia.org/resource/Aaron_Shust", "http://dbpedia.org/resource/Aaron_Sprinkle", "http://dbpedia.org/resource/Abbath", "http://dbpedia.org/resource/Abner_Jay", "http://dbpedia.org/resource/Abra_Moore", "http://dbpedia.org/resource/Achim_Reichel", "http://dbpedia.org/resource/Adalberto_Bravo", "http://dbpedia.org/resource/Adam_Bomb", "http://dbpedia.org/resource/Adam_Deibert", "http://dbpedia.org/resource/Adam_Ficek", "http://dbpedia.org/resource/Adam_Gardner", "http://dbpedia.org/resource/Adam_Granduciel", "http://dbpedia.org/resource/Adam_Gussow", "http://dbpedia.org/resource/Adam_Palma", "http://dbpedia.org/resource/Adam_Sherburne", "http://dbpedia.org/resource/Adam_Taubitz", "http://dbpedia.org/resource/Adam_Thorn", "http://dbpedia.org/resource/Adam_Wiltzie", "http://dbpedia.org/resource/Adou_Elenga", "http://dbpedia.org/resource/Adrian_Borland", "http://dbpedia.org/resource/Adriana_Calcanhotto", "http://dbpedia.org/resource/Adriano_Cintra", "http://dbpedia.org/resource/Agathonas_Iakovidis", "http://dbpedia.org/resource/Ai_Ishigaki", "http://dbpedia.org/resource/Buddy_Knox", "http://dbpedia.org/resource/Buddy_Whittington", "http://dbpedia.org/resource/Bull_City_Red", "http://dbpedia.org/resource/Bumble_Bee_Slim", "http://dbpedia.org/resource/Buster_B._Jones", "http://dbpedia.org/resource/Buster_Benton", "http://dbpedia.org/resource/Buster_Smith", "http://dbpedia.org/resource/Cahir_O'Doherty_(musician)", "http://dbpedia.org/resource/Caitlin_Canty", "http://dbpedia.org/resource/Calcutta_(singer)", "http://dbpedia.org/resource/Caleb_Scofield", "http://dbpedia.org/resource/Calle_Kristiansson", "http://dbpedia.org/resource/Calvin_Leavy", "http://dbpedia.org/resource/Cameron_Muncey", "http://dbpedia.org/resource/Camila_Moreno", "http://dbpedia.org/resource/Camryn", "http://dbpedia.org/resource/Celin_Romero", "http://dbpedia.org/resource/Cem_Karaca", "http://dbpedia.org/resource/Cesar_Rosas", "http://dbpedia.org/resource/Cezary_Ostrowski", "http://dbpedia.org/resource/Chad_Morgan", "http://dbpedia.org/resource/Chad_Taylor_(guitarist)", "http://dbpedia.org/resource/Chae_Bo-hun", "http://dbpedia.org/resource/Chage", "http://dbpedia.org/resource/Charles_Hedger", "http://dbpedia.org/resource/Charles_Jenkins_(Australian_musician)", "http://dbpedia.org/resource/Charles_Sawtelle", "http://dbpedia.org/resource/Charles_Wayne_Day", "http://dbpedia.org/resource/Charley_Patton", "http://dbpedia.org/resource/Charlie_Atom", "http://dbpedia.org/resource/Charlie_Burchill", "http://dbpedia.org/resource/Charlie_Chan_(composer)", "http://dbpedia.org/resource/Charlie_Clouser", "http://dbpedia.org/resource/Charlie_Louvin", "http://dbpedia.org/resource/Charlie_Monroe", "http://dbpedia.org/resource/Charlie_Monttana", "http://dbpedia.org/resource/Charlie_Parr", "http://dbpedia.org/resource/Charly_Coombes", "http://dbpedia.org/resource/Chase_Baird", "http://dbpedia.org/resource/Chauncey_%22Lord%22_Westbrook", "http://dbpedia.org/resource/Chris_Austin", "http://dbpedia.org/resource/Chris_Beard_(singer)", "http://dbpedia.org/resource/Chris_Brooks_(guitarist)", "http://dbpedia.org/resource/Chris_Cain", "http://dbpedia.org/resource/Chris_Chaney", "http://dbpedia.org/resource/Chris_Collingwood", "http://dbpedia.org/resource/Chris_Combs_(composer)", "http://dbpedia.org/resource/Chris_Daniels_(musician)", "http://dbpedia.org/resource/Chris_DeGarmo", "http://dbpedia.org/resource/Chris_Douglas", "http://dbpedia.org/resource/Chris_Duarte_(musician)", "http://dbpedia.org/resource/Chris_Eldridge", "http://dbpedia.org/resource/Chris_Julian_(producer)", "http://dbpedia.org/resource/Chris_Kilmore", "http://dbpedia.org/resource/Chris_Mills_(musician)", "http://dbpedia.org/resource/Chris_Risola", "http://dbpedia.org/resource/Chris_Rodrigues", "http://dbpedia.org/resource/Chris_Standring", "http://dbpedia.org/resource/Chris_Taylor_(Grizzly_Bear_musician)", "http://dbpedia.org/resource/Chris_Volz", "http://dbpedia.org/resource/Chris_Weber", "http://dbpedia.org/resource/Chris_Wilson_(Australian_musician)", "http://dbpedia.org/resource/Chris_Zabriskie", "http://dbpedia.org/resource/Chris_von_Rohr", "http://dbpedia.org/resource/Christian_Steinh\u00e4user", "http://dbpedia.org/resource/Christian_Vidal", "http://dbpedia.org/resource/Christofer_Johnsson", "http://dbpedia.org/resource/Christophe_Godin", "http://dbpedia.org/resource/Cian_Nugent", "http://dbpedia.org/resource/Steve_Cobby", "http://dbpedia.org/resource/Steve_Dawson_(Canadian_musician)", "http://dbpedia.org/resource/Steve_Forrest_(musician)", "http://dbpedia.org/resource/Steve_Foster_(singer)", "http://dbpedia.org/resource/Steve_Hogarth", "http://dbpedia.org/resource/Steve_Jablonsky", "http://dbpedia.org/resource/Steve_Knight_(musician)", "http://dbpedia.org/resource/Steve_Nardella", "http://dbpedia.org/resource/Steve_Nardelli", "http://dbpedia.org/resource/Steve_Soboslai", "http://dbpedia.org/resource/Steve_Stevens", "http://dbpedia.org/resource/Steve_Sundholm", "http://dbpedia.org/resource/Steve_Turner_(guitarist)", "http://dbpedia.org/resource/Steve_Wade_(singer)", "http://dbpedia.org/resource/Stevie_Jackson", "http://dbpedia.org/resource/Stevie_Tonks", "http://dbpedia.org/resource/Stian_Carstensen", "http://dbpedia.org/resource/Stick_McGhee", "http://dbpedia.org/resource/Stoney_(musician)", "http://dbpedia.org/resource/Stuart_A._Staples", "http://dbpedia.org/resource/Stuart_Chatwood", "http://dbpedia.org/resource/Stuart_Duncan", "http://dbpedia.org/resource/Stuart_Emerson", "http://dbpedia.org/resource/Stuart_Michael_Thomas", "http://dbpedia.org/resource/Stuart_Wood_(musician)", "http://dbpedia.org/resource/Stza", "http://dbpedia.org/resource/Sue_Medley", "http://dbpedia.org/resource/Sune_Rose_Wagner", "http://dbpedia.org/resource/Sunny_Duval", "http://dbpedia.org/resource/Super_Chikan", "http://dbpedia.org/resource/Susan_Cowsill", "http://dbpedia.org/resource/Susan_Enan", "http://dbpedia.org/resource/Svein_Dag_Hauge", "http://dbpedia.org/resource/Johnny_Staats", "http://dbpedia.org/resource/Stephen_McNally_(musician)", "http://dbpedia.org/resource/Stephen_Rowe_(musician)", "http://dbpedia.org/resource/Stuart_Turner_(musician)", "http://dbpedia.org/resource/Freddie_Phillips", "http://dbpedia.org/resource/Ian_Stephen", "http://dbpedia.org/resource/Jonathan_Cummins", "http://dbpedia.org/resource/Kelley_Lovelace", "http://dbpedia.org/resource/R._B._Korbet", "http://dbpedia.org/resource/Norman_Orenstein", "http://dbpedia.org/resource/Priya_Thomas", "http://dbpedia.org/resource/Rob_Jungklas", "http://dbpedia.org/resource/Rene\u00e9_Austin", "http://dbpedia.org/resource/Actual_Wolf", "http://dbpedia.org/resource/Caralee_McElroy", "http://dbpedia.org/resource/Carl-Michael_Eide", "http://dbpedia.org/resource/Carl_August_Tidemann", "http://dbpedia.org/resource/Carl_Bar\u00e2t", "http://dbpedia.org/resource/Carl_Bell_(musician)", "http://dbpedia.org/resource/Carl_Broemel", "http://dbpedia.org/resource/Carl_Harvey", "http://dbpedia.org/resource/Carlo_Carfagna", "http://dbpedia.org/resource/Carlos_Berlanga", "http://dbpedia.org/resource/Carlos_Cavazo", "http://dbpedia.org/resource/Carlos_Montoya", "http://dbpedia.org/resource/Carlos_Pe\u00f1a_(singer)", "http://dbpedia.org/resource/Carly_Binding", "http://dbpedia.org/resource/Carol_Kaye", "http://dbpedia.org/resource/Carolina_Slim", "http://dbpedia.org/resource/Carsten_Bo_Eriksen", "http://dbpedia.org/resource/Carter_Stanley", "http://dbpedia.org/resource/Casey_Stratton", "http://dbpedia.org/resource/Cash_McCall_(musician)", "http://dbpedia.org/resource/Cashavelly_Morrison", "http://dbpedia.org/resource/Hitoshi_Okamoto", "http://dbpedia.org/resource/Hobart_Smith", "http://dbpedia.org/resource/Holger_Czukay", "http://dbpedia.org/resource/Holly_Knight", "http://dbpedia.org/resource/Horacio_Villafa\u00f1e", "http://dbpedia.org/resource/Houston_Stackhouse", "http://dbpedia.org/resource/Howard_Drossin", "http://dbpedia.org/resource/Howard_E._Scott", "http://dbpedia.org/resource/Howard_Roberts", "http://dbpedia.org/resource/Hrysoula_Stefanaki", "http://dbpedia.org/resource/Htun_Naung_Sint", "http://dbpedia.org/resource/Huey_Long_(singer)", "http://dbpedia.org/resource/Hugh_Harris_(singer)", "http://dbpedia.org/resource/Hugh_McCracken", "http://dbpedia.org/resource/Hugh_McMillan_(musician)", "http://dbpedia.org/resource/Ben_Deily", "http://dbpedia.org/resource/Ben_Gunn_(guitarist)", "http://dbpedia.org/resource/K\u00e9l\u00e9tigui_Diabat\u00e9", "http://dbpedia.org/resource/L.C._Green", "http://dbpedia.org/resource/L.V._Banks", "http://dbpedia.org/resource/L.V._Johnson", "http://dbpedia.org/resource/L._C._McKinley", "http://dbpedia.org/resource/Lab_Ox", "http://dbpedia.org/resource/Lachlan_Gillespie", "http://dbpedia.org/resource/Lacy_Gibson", "http://dbpedia.org/resource/Lakki_Patey", "http://dbpedia.org/resource/Larry_Knechtel", "http://dbpedia.org/resource/Larry_McNeely", "http://dbpedia.org/resource/Larry_Sparks", "http://dbpedia.org/resource/Larry_Van_Kriedt", "http://dbpedia.org/resource/Larry_Wallis", "http://dbpedia.org/resource/Lars_Lillo-Stenberg", "http://dbpedia.org/resource/Lasse_Myrvold", "http://dbpedia.org/resource/Lata_Gouveia", "http://dbpedia.org/resource/Latino_(singer)", "http://dbpedia.org/resource/Lauri_Yl\u00f6nen", "http://dbpedia.org/resource/Laurie_Lewis", "http://dbpedia.org/resource/Lavon_Volski", "http://dbpedia.org/resource/Lavrentis_Machairitsas", "http://dbpedia.org/resource/Lay_Low", "http://dbpedia.org/resource/Lazy_Bill_Lucas", "http://dbpedia.org/resource/Lazy_Lester", "http://dbpedia.org/resource/Malcolm_Toft", "http://dbpedia.org/resource/Tim_Ward_(musician)", "http://dbpedia.org/resource/Tony_Hall_(musician)", "http://dbpedia.org/resource/Trish_Murphy", "http://dbpedia.org/resource/Ulises_Hadjis", "http://dbpedia.org/resource/Maura_Davis", "http://dbpedia.org/resource/Shane_Simpson_(musician)", "http://dbpedia.org/resource/Vanessa_Peters", "http://dbpedia.org/resource/Henry_Sloan", "http://dbpedia.org/resource/Ruby_Friedman", "http://dbpedia.org/resource/Steve_DeMarchi", "http://dbpedia.org/resource/Remi_Nicole", "http://dbpedia.org/resource/Michael_Gallagher_(guitarist)", "http://dbpedia.org/resource/Willie_Baker", "http://dbpedia.org/resource/Dobie_Gray", "http://dbpedia.org/resource/Dome_La_Muerte", "http://dbpedia.org/resource/Don_Clark_(musician)", "http://dbpedia.org/resource/Don_Dokken", "http://dbpedia.org/resource/Don_Irving", "http://dbpedia.org/resource/Don_McGlashan", "http://dbpedia.org/resource/Don_Nix", "http://dbpedia.org/resource/Don_Rich", "http://dbpedia.org/resource/Donn_Pohren", "http://dbpedia.org/resource/Donna_Simpson_(musician)", "http://dbpedia.org/resource/Donnie_Iris", "http://dbpedia.org/resource/Doug_Ardito", "http://dbpedia.org/resource/Doug_Blair", "http://dbpedia.org/resource/Doug_Boyle", "http://dbpedia.org/resource/Doug_Edwards_(musician)", "http://dbpedia.org/resource/Doug_Fieger", "http://dbpedia.org/resource/Doug_Kershaw", "http://dbpedia.org/resource/Doug_Martsch", "http://dbpedia.org/resource/Doug_Seegers", "http://dbpedia.org/resource/Doug_Van_Gundy", "http://dbpedia.org/resource/Dougie_Poynter", "http://dbpedia.org/resource/Douglas_B._Green", "http://dbpedia.org/resource/Douglas_September", "http://dbpedia.org/resource/Doyle_Dykes", "http://dbpedia.org/resource/Duane_Andrews", "http://dbpedia.org/resource/Duane_Roland", "http://dbpedia.org/resource/Dudley_Taft", "http://dbpedia.org/resource/Duncan_Arsenault", "http://dbpedia.org/resource/Dustin_Tebbutt", "http://dbpedia.org/resource/Dutch_Mason", "http://dbpedia.org/resource/Du\u0161an_Koji\u0107", "http://dbpedia.org/resource/Dwight_Twilley", "http://dbpedia.org/resource/Dylan_Carlson_(musician)", "http://dbpedia.org/resource/Dylan_Mattingly", "http://dbpedia.org/resource/E.G._Kight", "http://dbpedia.org/resource/Simon_Climie", "http://dbpedia.org/resource/Simon_Gallup", "http://dbpedia.org/resource/Simon_Lynge", "http://dbpedia.org/resource/Simon_Mayor", "http://dbpedia.org/resource/Simone_Cilio", "http://dbpedia.org/resource/Simonne_Jones", "http://dbpedia.org/resource/Sinead_Burgess", "http://dbpedia.org/resource/Sini\u0161a_Vuco", "http://dbpedia.org/resource/Sirkus_Eliassen", "http://dbpedia.org/resource/Sita_(singer)", "http://dbpedia.org/resource/Skeeter_Bonn", "http://dbpedia.org/resource/Slick_Aguilar", "http://dbpedia.org/resource/Slowthai", "http://dbpedia.org/resource/Slushii", "http://dbpedia.org/resource/Smiley_Lewis", "http://dbpedia.org/resource/Smolasty", "http://dbpedia.org/resource/Snuffy_Jenkins", "http://dbpedia.org/resource/Soledad_Bravo", "http://dbpedia.org/resource/SonReal", "http://dbpedia.org/resource/Son_Bonds", "http://dbpedia.org/resource/Son_of_Dave", "http://dbpedia.org/resource/Sonja_\u0160kori\u0107", "http://dbpedia.org/resource/Sonny_Landreth", "http://dbpedia.org/resource/Sophia_Fredskild", "http://dbpedia.org/resource/Sotiris_Lagonikas", "http://dbpedia.org/resource/Sound_M.O.B.", "http://dbpedia.org/resource/Dominique_Blais", "http://dbpedia.org/resource/Don_Devore", "http://dbpedia.org/resource/Don_Kerr", "http://dbpedia.org/resource/Gerry_Nestler", "http://dbpedia.org/resource/Mason_Neely", "http://dbpedia.org/resource/Nick_Glennie-Smith", "http://dbpedia.org/resource/Nils_Frykdahl", "http://dbpedia.org/resource/Joe_Crookston", "http://dbpedia.org/resource/Josh_Mease", "http://dbpedia.org/resource/Kate_Mann", "http://dbpedia.org/resource/Owen_Powell", "http://dbpedia.org/resource/Panky_Trinidad", "http://dbpedia.org/resource/Ian_Arber", "http://dbpedia.org/resource/Ian_McCallum_(guitarist)", "http://dbpedia.org/resource/Ichiro_Agata", "http://dbpedia.org/resource/Sam_Goldberg_Jr.", "http://dbpedia.org/resource/Rose_Mazzola", "http://dbpedia.org/resource/Shayne_Carter", "http://dbpedia.org/resource/Pepe_Mart\u00ednez", "http://dbpedia.org/resource/Corentin_Henri_Le_Fur", "http://dbpedia.org/resource/Corey_Harris", "http://dbpedia.org/resource/Corin_Tucker", "http://dbpedia.org/resource/Corky_Laing", "http://dbpedia.org/resource/Courtney_Pollock", "http://dbpedia.org/resource/Craig_Else", "http://dbpedia.org/resource/Craig_Finn", "http://dbpedia.org/resource/Craig_Northey", "http://dbpedia.org/resource/Craig_Sharmat", "http://dbpedia.org/resource/Craig_Wayne_Boyd", "http://dbpedia.org/resource/Craig_Wood_(guitarist)", "http://dbpedia.org/resource/Crispin_Gray", "http://dbpedia.org/resource/Cy_Curnin", "http://dbpedia.org/resource/C\u00e9sar_Isella", "http://dbpedia.org/resource/D._D._Verni", "http://dbpedia.org/resource/D._J._Sparr", "http://dbpedia.org/resource/D._L._Menard", "http://dbpedia.org/resource/Daddy_Stovepipe", "http://dbpedia.org/resource/Dag_Ingebrigtsen", "http://dbpedia.org/resource/Dale_Watson_(singer)", "http://dbpedia.org/resource/Daler_Nazarov", "http://dbpedia.org/resource/Anna_Domino", "http://dbpedia.org/resource/Anomie_Belle", "http://dbpedia.org/resource/Anoraak", "http://dbpedia.org/resource/Govi_(musician)", "http://dbpedia.org/resource/Grady_Martin", "http://dbpedia.org/resource/Graeme_Duffin", "http://dbpedia.org/resource/Graham_Clarke_(musician)", "http://dbpedia.org/resource/Graham_Lewis", "http://dbpedia.org/resource/Grant_Austin_Taylor", "http://dbpedia.org/resource/Grasshopper_(musician)", "http://dbpedia.org/resource/Greg_Garbowsky", "http://dbpedia.org/resource/Greg_Leisz", "http://dbpedia.org/resource/Greg_Leon", "http://dbpedia.org/resource/Greg_Ridley", "http://dbpedia.org/resource/Gregori_Chad_Petree", "http://dbpedia.org/resource/Gregory_Page_(musician)", "http://dbpedia.org/resource/Grutle_Kjellson", "http://dbpedia.org/resource/Guillaume_Grand", "http://dbpedia.org/resource/Guille_Garcia", "http://dbpedia.org/resource/Guitar_Crusher", "http://dbpedia.org/resource/Guitar_Gable", "http://dbpedia.org/resource/Guitar_Nubbit", "http://dbpedia.org/resource/Gunnar_Graps", "http://dbpedia.org/resource/Gunnar_\u00d6rn_Tynes", "http://dbpedia.org/resource/Guy_Buttery", "http://dbpedia.org/resource/Guy_Fletcher", "http://dbpedia.org/resource/Guy_Maddison", "http://dbpedia.org/resource/Guy_Sigsworth", "http://dbpedia.org/resource/Gy\u00f6rgy_Ligeti_(musician)", "http://dbpedia.org/resource/G\u00f6khan_T\u00fcrkmen", "http://dbpedia.org/resource/G\u00f6khan_\u00d6zen", "http://dbpedia.org/resource/Asikey", "http://dbpedia.org/resource/Astennu_(musician)", "http://dbpedia.org/resource/Haywyre", "http://dbpedia.org/resource/Heather_Baker", "http://dbpedia.org/resource/Heike_Matthiesen", "http://dbpedia.org/resource/Heitor_Pereira", "http://dbpedia.org/resource/Helen_Carter", "http://dbpedia.org/resource/Henkka_Sepp\u00e4l\u00e4", "http://dbpedia.org/resource/Henri_Crolla", "http://dbpedia.org/resource/Henri_Sorvali", "http://dbpedia.org/resource/Henrik_Janson", "http://dbpedia.org/resource/Henry_%22Son%22_Sims", "http://dbpedia.org/resource/Henry_Cluney", "http://dbpedia.org/resource/Henry_McCullough", "http://dbpedia.org/resource/Henry_Paul_(musician)", "http://dbpedia.org/resource/Henry_Qualls", "http://dbpedia.org/resource/Henry_Strzelecki", "http://dbpedia.org/resource/Herman_Witkam", "http://dbpedia.org/resource/Himesh_Reshammiya", "http://dbpedia.org/resource/Hip_Linkchain", "http://dbpedia.org/resource/Hiram_Bullock", "http://dbpedia.org/resource/Hirohisa_Horie", "http://dbpedia.org/resource/Hisashi_(musician)", "http://dbpedia.org/resource/MEGG", "http://dbpedia.org/resource/Maartin_Allcock", "http://dbpedia.org/resource/Mac_Martin", "http://dbpedia.org/resource/Madagascar_Slim", "http://dbpedia.org/resource/Madi_Davis", "http://dbpedia.org/resource/Madigan_Shive", "http://dbpedia.org/resource/Madlib", "http://dbpedia.org/resource/Maeve_O'Donovan", "http://dbpedia.org/resource/Magni_\u00c1sgeirsson", "http://dbpedia.org/resource/Major_Harris_(singer)", "http://dbpedia.org/resource/Mal_Webb", "http://dbpedia.org/resource/Malcolm_Burn", "http://dbpedia.org/resource/Mamadou_Diop_(musician)", "http://dbpedia.org/resource/Mandy_Meyer", "http://dbpedia.org/resource/Mani_Sharma", "http://dbpedia.org/resource/Brian_Daniels_(musician)", "http://dbpedia.org/resource/Brian_McTernan", "http://dbpedia.org/resource/Brian_Young_(drummer)", "http://dbpedia.org/resource/Carl_Johan_Grimmark", "http://dbpedia.org/resource/Cesar_Benito", "http://dbpedia.org/resource/Ricardo_Garcia_(German_musician)", "http://dbpedia.org/resource/Rich_Robinson", "http://dbpedia.org/resource/Richard_%22Hacksaw%22_Harney", "http://dbpedia.org/resource/Richard_H._Kirk", "http://dbpedia.org/resource/Richard_Kiser", "http://dbpedia.org/resource/Richard_Sinclair", "http://dbpedia.org/resource/Richard_Tandy", "http://dbpedia.org/resource/Richey_McCourt", "http://dbpedia.org/resource/Richie_Ramone", "http://dbpedia.org/resource/Rick_Anthony", "http://dbpedia.org/resource/Rick_Froberg", "http://dbpedia.org/resource/Rick_Holmstrom", "http://dbpedia.org/resource/Rick_Kemp", "http://dbpedia.org/resource/Rick_Lindy", "http://dbpedia.org/resource/Rick_Spencer_(singer)", "http://dbpedia.org/resource/Rick_Vandivier", "http://dbpedia.org/resource/Rick_Vito", "http://dbpedia.org/resource/Rickey_Lime", "http://dbpedia.org/resource/Ricky_Fataar", "http://dbpedia.org/resource/Riho_Sibul", "http://dbpedia.org/resource/Rik_Simpson", "http://dbpedia.org/resource/Rino_Gaetano", "http://dbpedia.org/resource/Rob_Beckley", "http://dbpedia.org/resource/Rob_Chiarelli", "http://dbpedia.org/resource/Rob_Marcello", "http://dbpedia.org/resource/Robb_Royer", "http://dbpedia.org/resource/Robbie_Crane", "http://dbpedia.org/resource/Robbie_Nevil", "http://dbpedia.org/resource/Robert_Belfour", "http://dbpedia.org/resource/Robert_Boldi\u017ear", "http://dbpedia.org/resource/Robert_Bowlin", "http://dbpedia.org/resource/Robert_Dahlqvist", "http://dbpedia.org/resource/Robert_Earl_Keen", "http://dbpedia.org/resource/Robert_Ellis_Orrall", "http://dbpedia.org/resource/Robert_F._Cranny", "http://dbpedia.org/resource/Robert_Fripp", "http://dbpedia.org/resource/Robert_Hampson", "http://dbpedia.org/resource/Robert_J\u00fcrjendal", "http://dbpedia.org/resource/Robert_Walker_(musician)", "http://dbpedia.org/resource/Robert_Ward_(blues_musician)", "http://dbpedia.org/resource/Robert_Wyatt", "http://dbpedia.org/resource/Roberto_Cantoral", "http://dbpedia.org/resource/Roberto_Garc\u00eda_(bassist)", "http://dbpedia.org/resource/Roberto_Iniesta", "http://dbpedia.org/resource/Robin_Bengtsson", "http://dbpedia.org/resource/Robin_Finck", "http://dbpedia.org/resource/Robin_Millar", "http://dbpedia.org/resource/Rock-Olga", "http://dbpedia.org/resource/Rockin'_Dave_Allen", "http://dbpedia.org/resource/Rockin'_Johnny_Burgin", "http://dbpedia.org/resource/Rodrigo_Le\u00e3o", "http://dbpedia.org/resource/Rodrigo_Riera", "http://dbpedia.org/resource/Roger_Bush_(musician)", "http://dbpedia.org/resource/Roger_Clyne", "http://dbpedia.org/resource/Roger_Greenawalt", "http://dbpedia.org/resource/Roger_Greenaway", "http://dbpedia.org/resource/Roger_Nichols_(songwriter)", "http://dbpedia.org/resource/Roger_Peterson_(musician)", "http://dbpedia.org/resource/Roger_Powell_(musician)", "http://dbpedia.org/resource/Rolf_Cahn", "http://dbpedia.org/resource/Rolly_Teranishi", "http://dbpedia.org/resource/Claude_Zdanow", "http://dbpedia.org/resource/Click-B", "http://dbpedia.org/resource/Clint_Conley", "http://dbpedia.org/resource/Damon_Fowler", "http://dbpedia.org/resource/Dan_Koch", "http://dbpedia.org/resource/Dick_Cooper", "http://dbpedia.org/resource/Jorge_Calder\u00f3n", "http://dbpedia.org/resource/Julie_Byrne", "http://dbpedia.org/resource/Mattie_Delaney", "http://dbpedia.org/resource/Panam_Percy_Paul", "http://dbpedia.org/resource/Steve_Touchstone", "http://dbpedia.org/resource/Kokan_Popovi\u0107", "http://dbpedia.org/resource/Lars_Fredrik_Beckstr\u00f8m", "http://dbpedia.org/resource/Pat_McCurdy", "http://dbpedia.org/resource/Sean_Stubbs", "http://dbpedia.org/resource/Steven_Thachuk", "http://dbpedia.org/resource/\u00c9rica_Garc\u00eda", "http://dbpedia.org/resource/Ralph_Willis_(blues_musician)", "http://dbpedia.org/resource/Todd_Fancey", "http://dbpedia.org/resource/Pete_Stewart", "http://dbpedia.org/resource/Steve_Willaert", "http://dbpedia.org/resource/Tim_Harwill", "http://dbpedia.org/resource/Possessed_by_Paul_James", "http://dbpedia.org/resource/Wally_Tax", "http://dbpedia.org/resource/Katrina_Johansson", "http://dbpedia.org/resource/Evi_Tausen", "http://dbpedia.org/resource/Faith_Nolan", "http://dbpedia.org/resource/Fallon_Bowman", "http://dbpedia.org/resource/Farhad_Darya", "http://dbpedia.org/resource/Fariborz_Lachini", "http://dbpedia.org/resource/Farid_Zoland", "http://dbpedia.org/resource/Faris_Badwan", "http://dbpedia.org/resource/Fatai", "http://dbpedia.org/resource/Femi_Leye", "http://dbpedia.org/resource/Fennesz", "http://dbpedia.org/resource/Fernanda_Takai", "http://dbpedia.org/resource/Fernando_Egozcue", "http://dbpedia.org/resource/Fernando_Mon", "http://dbpedia.org/resource/Fernando_von_Arb", "http://dbpedia.org/resource/Fher_Olvera", "http://dbpedia.org/resource/Finbarr_Dwyer", "http://dbpedia.org/resource/Firebrand_Boy", "http://dbpedia.org/resource/Fito_Cabrales", "http://dbpedia.org/resource/Flattus_Maximus", "http://dbpedia.org/resource/Fleming_Brown", "http://dbpedia.org/resource/Flo_V._Schwarz", "http://dbpedia.org/resource/Florian_Schneider", "http://dbpedia.org/resource/Floyd_Council", "http://dbpedia.org/resource/Floyd_Lee", "http://dbpedia.org/resource/Floyd_Miles", "http://dbpedia.org/resource/Floyd_Smith_(musician)", "http://dbpedia.org/resource/Floyd_Tillman", "http://dbpedia.org/resource/Barry_Burns", "http://dbpedia.org/resource/Jeff_Cardoni", "http://dbpedia.org/resource/Jeff_Cook", "http://dbpedia.org/resource/Jeff_Dahl", "http://dbpedia.org/resource/Jeff_Kite", "http://dbpedia.org/resource/Jeff_Mangum", "http://dbpedia.org/resource/Jeff_Pitchell", "http://dbpedia.org/resource/Jeff_Schroeder", "http://dbpedia.org/resource/Jeff_Watson_(guitarist)", "http://dbpedia.org/resource/Jeffrey_Foskett", "http://dbpedia.org/resource/Jeffrey_Lee_Pierce", "http://dbpedia.org/resource/Jeffrey_Yong", "http://dbpedia.org/resource/Jehangir_Aziz_Hayat", "http://dbpedia.org/resource/Jenny_Hval", "http://dbpedia.org/resource/Jenny_Lewis", "http://dbpedia.org/resource/Jens_Fredrik_Ryland", "http://dbpedia.org/resource/Jens_Ludwig", "http://dbpedia.org/resource/Jeremiah_Johnson_(blues_musician)", "http://dbpedia.org/resource/Jeremy_Edwardson", "http://dbpedia.org/resource/Jeremy_Jay", "http://dbpedia.org/resource/Jeremy_Porter", "http://dbpedia.org/resource/Jerome_T._Youngman", "http://dbpedia.org/resource/Jerry_Amaldev", "http://dbpedia.org/resource/Jerry_Cole", "http://dbpedia.org/resource/Jerry_Douglas", "http://dbpedia.org/resource/Jerry_McCain", "http://dbpedia.org/resource/Jerry_Miller", "http://dbpedia.org/resource/Jess_McAvoy", "http://dbpedia.org/resource/Jesse_Colburn", "http://dbpedia.org/resource/Jesse_Frasure", "http://dbpedia.org/resource/Jesse_Johnson_(musician)", "http://dbpedia.org/resource/Jesse_McReynolds", "http://dbpedia.org/resource/Jesse_Tobias", "http://dbpedia.org/resource/Jesse_Valencia", "http://dbpedia.org/resource/Jesse_Zubot", "http://dbpedia.org/resource/Jessica_Dobson", "http://dbpedia.org/resource/Jessie_Baker", "http://dbpedia.org/resource/Jes\u00fas_El\u00edas", "http://dbpedia.org/resource/Jez_Williams", "http://dbpedia.org/resource/Jim_Armstrong_(guitarist)", "http://dbpedia.org/resource/Jim_Cherry", "http://dbpedia.org/resource/Jim_Couza", "http://dbpedia.org/resource/Jim_Dickinson", "http://dbpedia.org/resource/Jim_Hurst", "http://dbpedia.org/resource/Jim_James", "http://dbpedia.org/resource/Jim_Kaufman", "http://dbpedia.org/resource/Jim_Kweskin", "http://dbpedia.org/resource/Jim_Murray_(musician)", "http://dbpedia.org/resource/Jim_Noir", "http://dbpedia.org/resource/Jim_Owen_(singer-songwriter)", "http://dbpedia.org/resource/Jim_Peterik", "http://dbpedia.org/resource/Jim_Reid_(folk_musician)", "http://dbpedia.org/resource/Jim_Vallance", "http://dbpedia.org/resource/Jimi_Shields", "http://dbpedia.org/resource/Jimmie_Dolan", "http://dbpedia.org/resource/Jimmy_%22Duck%22_Holmes", "http://dbpedia.org/resource/Jimmy_Bryant", "http://dbpedia.org/resource/Jimmy_Burns", "http://dbpedia.org/resource/Jimmy_Cliff", "http://dbpedia.org/resource/Jimmy_Crespo", "http://dbpedia.org/resource/Jimmy_Lewis_(musician)", "http://dbpedia.org/resource/Jimmy_Winston", "http://dbpedia.org/resource/Jiro_(musician)", "http://dbpedia.org/resource/Jive_Jones", "http://dbpedia.org/resource/Ji\u0159\u00ed_Kabe\u0161", "http://dbpedia.org/resource/JoJo_Worthington", "http://dbpedia.org/resource/Joaqu\u00edn_Cardiel", "http://dbpedia.org/resource/Joe_Baiza", "http://dbpedia.org/resource/Joe_Becker_(musician)", "http://dbpedia.org/resource/Joe_Firstman", "http://dbpedia.org/resource/Joe_Grah", "http://dbpedia.org/resource/Joe_Hedges", "http://dbpedia.org/resource/Joe_Holmes", "http://dbpedia.org/resource/Joe_Moretti", "http://dbpedia.org/resource/Joe_Pisapia", "http://dbpedia.org/resource/Joe_Purdy", "http://dbpedia.org/resource/Joe_Robinson_(musician)", "http://dbpedia.org/resource/Joe_Russo_(musician)", "http://dbpedia.org/resource/Joe_Val", "http://dbpedia.org/resource/Joel_Pott", "http://dbpedia.org/resource/Joey_Cook", "http://dbpedia.org/resource/Joey_Mazzola", "http://dbpedia.org/resource/Joey_Molland", "http://dbpedia.org/resource/Joey_Serlin", "http://dbpedia.org/resource/Joey_Sturgis", "http://dbpedia.org/resource/Johan_Frandsen", "http://dbpedia.org/resource/Johan_Reinholdz", "http://dbpedia.org/resource/Johanna_Beisteiner", "http://dbpedia.org/resource/Johannes_S\u00e6b\u00f8e", "http://dbpedia.org/resource/John_%22Charlie%22_Whitney", "http://dbpedia.org/resource/John_Bassette", "http://dbpedia.org/resource/John_Benitez", "http://dbpedia.org/resource/John_Bergin", "http://dbpedia.org/resource/John_Debney", "http://dbpedia.org/resource/John_Eddie", "http://dbpedia.org/resource/John_Edwards_(musician)", "http://dbpedia.org/resource/John_Ford_Coley", "http://dbpedia.org/resource/John_Haggerty", "http://dbpedia.org/resource/John_Hammink", "http://dbpedia.org/resource/John_Haughm", "http://dbpedia.org/resource/John_Hegre", "http://dbpedia.org/resource/John_Herald", "http://dbpedia.org/resource/John_Idan", "http://dbpedia.org/resource/John_Illsley", "http://dbpedia.org/resource/Lee_Brooks", "http://dbpedia.org/resource/Lee_Gates", "http://dbpedia.org/resource/Lee_Gaze", "http://dbpedia.org/resource/Lee_Loughnane", "http://dbpedia.org/resource/Lee_Mellor", "http://dbpedia.org/resource/Lee_Michaels", "http://dbpedia.org/resource/Lee_Payne_(bassist)", "http://dbpedia.org/resource/Lefty_Bates", "http://dbpedia.org/resource/Legendary_Stardust_Cowboy", "http://dbpedia.org/resource/Leo_Rey", "http://dbpedia.org/resource/Leon_Koudelak", "http://dbpedia.org/resource/Leon_Michels", "http://dbpedia.org/resource/Leonard_Caston", "http://dbpedia.org/resource/Leonid_Soybelman", "http://dbpedia.org/resource/Leroy_Dallas", "http://dbpedia.org/resource/Les_Binks", "http://dbpedia.org/resource/Les_Dudek", "http://dbpedia.org/resource/Les_Emmerson", "http://dbpedia.org/resource/Les_Hall", "http://dbpedia.org/resource/Lester_Williams_(musician)", "http://dbpedia.org/resource/Lew_DeWitt", "http://dbpedia.org/resource/Lewis_Taylor", "http://dbpedia.org/resource/Li_Jie_(guitarist)", "http://dbpedia.org/resource/Liam_Howe", "http://dbpedia.org/resource/Liam_Titcomb", "http://dbpedia.org/resource/Liam_\u00d3_Maonla\u00ed", "http://dbpedia.org/resource/Lil'_Dave_Thompson", "http://dbpedia.org/resource/Lil'_Ed_Williams", "http://dbpedia.org/resource/Lil'_Rev", "http://dbpedia.org/resource/Lili_Bayliss", "http://dbpedia.org/resource/Lim_Jeong-hyun", "http://dbpedia.org/resource/Lindsey_Buckingham", "http://dbpedia.org/resource/Lisa_Mitchell", "http://dbpedia.org/resource/Lisa_Moscatiello", "http://dbpedia.org/resource/Lisa_Tucker_(singer)", "http://dbpedia.org/resource/Nature_Ganganbaigal", "http://dbpedia.org/resource/Navarone_Garibaldi", "http://dbpedia.org/resource/Neda_(musician)", "http://dbpedia.org/resource/Neil_Carter_(musician)", "http://dbpedia.org/resource/Neil_Citron", "http://dbpedia.org/resource/Neil_Donell", "http://dbpedia.org/resource/Neil_Hubbard", "http://dbpedia.org/resource/Neil_Levang", "http://dbpedia.org/resource/Neil_Reid", "http://dbpedia.org/resource/Neil_Zaza", "http://dbpedia.org/resource/Nell_Bryden", "http://dbpedia.org/resource/Nguy\u00ean_L\u00ea", "http://dbpedia.org/resource/Nic_Nac", "http://dbpedia.org/resource/Nicholas_Hooper", "http://dbpedia.org/resource/Nicholas_Megalis", "http://dbpedia.org/resource/Nick_Falcon", "http://dbpedia.org/resource/Nick_Fradiani", "http://dbpedia.org/resource/Nick_Hemming", "http://dbpedia.org/resource/Nick_Katzman", "http://dbpedia.org/resource/Nick_Santino_(musician)", "http://dbpedia.org/resource/Nick_Wiggins", "http://dbpedia.org/resource/Nick_Zinner", "http://dbpedia.org/resource/Nicky_Bomba", "http://dbpedia.org/resource/Nicky_Moore", "http://dbpedia.org/resource/Nicolay_(musician)", "http://dbpedia.org/resource/Nicole_C._Mullen", "http://dbpedia.org/resource/Nicolette_Larson", "http://dbpedia.org/resource/Niklas_Bergqvist", "http://dbpedia.org/resource/Paz_Lenchantin", "http://dbpedia.org/resource/Pearl_Thompson", "http://dbpedia.org/resource/Pecker_Dunne", "http://dbpedia.org/resource/Pee_Wee_Crayton", "http://dbpedia.org/resource/Pekka_Heino_(singer)", "http://dbpedia.org/resource/Pelle_Ossler", "http://dbpedia.org/resource/Penny_Hill_(musician)", "http://dbpedia.org/resource/Pepe_Justicia", "http://dbpedia.org/resource/Pepe_Romero", "http://dbpedia.org/resource/Pepe_Smith", "http://dbpedia.org/resource/Per_Aldeheim", "http://dbpedia.org/resource/Per_Magnusson", "http://dbpedia.org/resource/Per_Wiberg", "http://dbpedia.org/resource/Peret", "http://dbpedia.org/resource/Perry_Bamonte", "http://dbpedia.org/resource/Pest_(musician)", "http://dbpedia.org/resource/Pete_Dello", "http://dbpedia.org/resource/Pete_Lynch_(musician)", "http://dbpedia.org/resource/Pete_Mayes", "http://dbpedia.org/resource/Pete_Yorn", "http://dbpedia.org/resource/Peter_Autschbach", "http://dbpedia.org/resource/Peter_Baldrachi", "http://dbpedia.org/resource/Peter_Connelly", "http://dbpedia.org/resource/Peter_Laughner", "http://dbpedia.org/resource/Peter_London", "http://dbpedia.org/resource/Peter_Mosely", "http://dbpedia.org/resource/Peter_Noone", "http://dbpedia.org/resource/Peter_Sinfield", "http://dbpedia.org/resource/Peter_Solowka", "http://dbpedia.org/resource/Peter_Thorup", "http://dbpedia.org/resource/Peter_White_(musician)", "http://dbpedia.org/resource/Peter_Wilkinson_(bass_guitarist)", "http://dbpedia.org/resource/Petey_Dammit", "http://dbpedia.org/resource/Petri_Lindroos", "http://dbpedia.org/resource/Pe\u0111a_D'Boy", "http://dbpedia.org/resource/Phideaux_Xavier", "http://dbpedia.org/resource/Phil_Baugh", "http://dbpedia.org/resource/Phil_Beer", "http://dbpedia.org/resource/Phil_Burton", "http://dbpedia.org/resource/Phil_Jamieson", "http://dbpedia.org/resource/Phil_Mogg", "http://dbpedia.org/resource/Phil_Robson", "http://dbpedia.org/resource/Phil_Seymour", "http://dbpedia.org/resource/Philip_John_Lee", "http://dbpedia.org/resource/Phillip_Boa", "http://dbpedia.org/resource/Phillip_Phillips", "http://dbpedia.org/resource/Phoebus_Delivorias", "http://dbpedia.org/resource/Piet_Sielck", "http://dbpedia.org/resource/Piet_Veerman", "http://dbpedia.org/resource/P\u00e9p\u00e9_et_sa_Guitare", "http://dbpedia.org/resource/Quetzal_Guerrero", "http://dbpedia.org/resource/Qu\u1ed1c_B\u1ea3o", "http://dbpedia.org/resource/R.L._Boyce", "http://dbpedia.org/resource/R._L._Burnside", "http://dbpedia.org/resource/R_Zar_Ni", "http://dbpedia.org/resource/Rabbi_Shergill", "http://dbpedia.org/resource/Rachel_Trachtenburg", "http://dbpedia.org/resource/Radomir_Mihailovi\u0107", "http://dbpedia.org/resource/Rael_Jones", "http://dbpedia.org/resource/Rafael_Riqueni", "http://dbpedia.org/resource/Theo_Goutzinakis", "http://dbpedia.org/resource/Theo_Green", "http://dbpedia.org/resource/Thia_Megia", "http://dbpedia.org/resource/Thomas_Bergersen", "http://dbpedia.org/resource/Thomas_Dinger", "http://dbpedia.org/resource/Thomas_Fraser_(singer)", "http://dbpedia.org/resource/Thomas_Leeb", "http://dbpedia.org/resource/Thomas_Tofthagen", "http://dbpedia.org/resource/Thor_Harris", "http://dbpedia.org/resource/Th\u00e9_Lau", "http://dbpedia.org/resource/Tiago_Della_Vega", "http://dbpedia.org/resource/Tilo_Wolff", "http://dbpedia.org/resource/Tim_Blake", "http://dbpedia.org/resource/Tim_Farriss", "http://dbpedia.org/resource/Tim_Gane", "http://dbpedia.org/resource/Tim_Goodman", "http://dbpedia.org/resource/Tim_Harding_(musician)", "http://dbpedia.org/resource/Tim_McCord", "http://dbpedia.org/resource/Tim_O'Brien_(musician)", "http://dbpedia.org/resource/Tim_Rollinson", "http://dbpedia.org/resource/Tim_Sparks", "http://dbpedia.org/resource/Tim_Van_Eyken", "http://dbpedia.org/resource/Tim_Vanhamel", "http://dbpedia.org/resource/Tim_Vesely", "http://dbpedia.org/resource/Tim_Ware", "http://dbpedia.org/resource/Tim_Williams_(rock_musician)", "http://dbpedia.org/resource/Timba_Harris", "http://dbpedia.org/resource/Timo_Pieni_Huijaus", "http://dbpedia.org/resource/Timo_Rautiainen_(musician)", "http://dbpedia.org/resource/Timothy_Drury", "http://dbpedia.org/resource/Timothy_Jordan_II", "http://dbpedia.org/resource/Tiran_Porter", "http://dbpedia.org/resource/Tito_Auger", "http://dbpedia.org/resource/Tobacco_(musician)", "http://dbpedia.org/resource/Tobias_Exxel", "http://dbpedia.org/resource/Tobias_Jesso_Jr.", "http://dbpedia.org/resource/Toby_Gad", "http://dbpedia.org/resource/Toby_MacFarlaine", "http://dbpedia.org/resource/Tod_Howarth", "http://dbpedia.org/resource/Todd_Ballard", "http://dbpedia.org/resource/Todd_Youth", "http://dbpedia.org/resource/Tom_Astor", "http://dbpedia.org/resource/Tom_Dumont", "http://dbpedia.org/resource/Tom_Evans_(musician)", "http://dbpedia.org/resource/Tom_Goss_(musician)", "http://dbpedia.org/resource/Tom_Hingley", "http://dbpedia.org/resource/Tom_Hunting", "http://dbpedia.org/resource/Tom_Leadon", "http://dbpedia.org/resource/Tom_Osander", "http://dbpedia.org/resource/Tom_Principato", "http://dbpedia.org/resource/Tom_S._Englund", "http://dbpedia.org/resource/Tom_Spencer_(musician)", "http://dbpedia.org/resource/Tom_Stevens_(musician)", "http://dbpedia.org/resource/Tom_Watson_(musician)", "http://dbpedia.org/resource/Tomas_Kalnoky", "http://dbpedia.org/resource/Tomi_Joutsen", "http://dbpedia.org/resource/Tomi_Koivusaari", "http://dbpedia.org/resource/Tommi_Stumpff", "http://dbpedia.org/resource/Tommy_Crook", "http://dbpedia.org/resource/Tommy_McClennan", "http://dbpedia.org/resource/Tommy_Organ", "http://dbpedia.org/resource/Tommy_Shannon", "http://dbpedia.org/resource/Tommy_West_(producer)", "http://dbpedia.org/resource/Tomotaka_Imamichi", "http://dbpedia.org/resource/Tomoyasu_Hotei", "http://dbpedia.org/resource/Willie_Brown_(musician)", "http://dbpedia.org/resource/Willie_Chambers", "http://dbpedia.org/resource/Willie_D._Warren", "http://dbpedia.org/resource/Willie_James_Lyons", "http://dbpedia.org/resource/Wout_Steenhuis", "http://dbpedia.org/resource/Wouter_Hamel", "http://dbpedia.org/resource/Wuki", "http://dbpedia.org/resource/Wynne_Paris", "http://dbpedia.org/resource/Wynonie_Harris", "http://dbpedia.org/resource/Xuefei_Yang", "http://dbpedia.org/resource/Yanka_Dyagileva", "http://dbpedia.org/resource/Yanni_Yuzon", "http://dbpedia.org/resource/Yannis_Kotsiras", "http://dbpedia.org/resource/Yavuz_\u00c7etin", "http://dbpedia.org/resource/Ya\u011fmur_Sar\u0131g\u00fcl", "http://dbpedia.org/resource/Ya\u015far_(singer)", "http://dbpedia.org/resource/Frode_Glesnes", "http://dbpedia.org/resource/F\u00e9lix_Manuaku_Waku", "http://dbpedia.org/resource/Jem_Godfrey", "http://dbpedia.org/resource/Jessie_Baylin", "http://dbpedia.org/resource/Michael_Gulezian", "http://dbpedia.org/resource/John_Hill_(musician)", "http://dbpedia.org/resource/Mark_Chaussee", "http://dbpedia.org/resource/Mat_Brooke", "http://dbpedia.org/resource/Michael_Gurley", "http://dbpedia.org/resource/Russell_Pollard", "http://dbpedia.org/resource/Sam_Forrest", "http://dbpedia.org/resource/The_Damn_Band", "http://dbpedia.org/resource/Vic_DiCara", "http://dbpedia.org/resource/Matt_Murphy_(Canadian_musician)", "http://dbpedia.org/resource/William_Coulter", "http://dbpedia.org/resource/Marcus_Singletary", "http://dbpedia.org/resource/Martin_Rotsey", "http://dbpedia.org/resource/Susanne_Lewis", "http://dbpedia.org/resource/Thomas_Erak", "http://dbpedia.org/resource/Meg_Baird", "http://dbpedia.org/resource/Miguel_\u00c1ngel_Girollet", "http://dbpedia.org/resource/Nathan_Pacheco", "http://dbpedia.org/resource/Nathan_Rogers", "http://dbpedia.org/resource/Oliver_Chapoy", "http://dbpedia.org/resource/Earl_%22Chinna%22_Smith", "http://dbpedia.org/resource/Earl_Scruggs", "http://dbpedia.org/resource/Eck_Robertson", "http://dbpedia.org/resource/Ed_Wool", "http://dbpedia.org/resource/Eddie_Allen_(folk_musician)", "http://dbpedia.org/resource/Eddie_C._Campbell", "http://dbpedia.org/resource/Eddie_Jackson_(musician)", "http://dbpedia.org/resource/Eddie_King_(musician)", "http://dbpedia.org/resource/Eddie_Turner", "http://dbpedia.org/resource/Edgard_Scandurra", "http://dbpedia.org/resource/Edith_Frost", "http://dbpedia.org/resource/Edu_Ardanuy", "http://dbpedia.org/resource/Eduardo_Fal\u00fa", "http://dbpedia.org/resource/Eduardo_Niebla", "http://dbpedia.org/resource/Egil_Hegerberg", "http://dbpedia.org/resource/Ehsaan_Noorani", "http://dbpedia.org/resource/Ehud_Banai", "http://dbpedia.org/resource/Eicca_Toppinen", "http://dbpedia.org/resource/Eivind_R\u00f8lles", "http://dbpedia.org/resource/Eizo_Sakamoto", "http://dbpedia.org/resource/Eldar_V\u00e5gan", "http://dbpedia.org/resource/Elio_Martusciello", "http://dbpedia.org/resource/Eliot_Lewis", "http://dbpedia.org/resource/Eliot_Morris", "http://dbpedia.org/resource/Elmer_Snowden", "http://dbpedia.org/resource/Julito_Rodr\u00edguez", "http://dbpedia.org/resource/Julius_Rodriguez", "http://dbpedia.org/resource/Jun_Sung_Ahn", "http://dbpedia.org/resource/June_Yamagishi", "http://dbpedia.org/resource/Jung_Jae-il", "http://dbpedia.org/resource/Junior_Kimbrough", "http://dbpedia.org/resource/Jussi_Hakulinen", "http://dbpedia.org/resource/Justin_Currie", "http://dbpedia.org/resource/J\u00f6kull_J\u00fal\u00edusson", "http://dbpedia.org/resource/J\u00f8rn_Christensen", "http://dbpedia.org/resource/J\u00f8rn_Inge_Tunsberg", "http://dbpedia.org/resource/KC_Groves", "http://dbpedia.org/resource/KJ_Denhert", "http://dbpedia.org/resource/KK_(musician)", "http://dbpedia.org/resource/Kaan_Akal\u0131n", "http://dbpedia.org/resource/Kaci_Brown", "http://dbpedia.org/resource/Kalben", "http://dbpedia.org/resource/Kaleo_Wassman", "http://dbpedia.org/resource/Kalle_Vilpuu", "http://dbpedia.org/resource/Kamil_Rustam", "http://dbpedia.org/resource/Kaoru_Abe", "http://dbpedia.org/resource/Kapil_Srivastava", "http://dbpedia.org/resource/Kareem_Salama", "http://dbpedia.org/resource/Karel_Pl\u00edhal", "http://dbpedia.org/resource/Kari_Peitsamo", "http://dbpedia.org/resource/Karise_Eden", "http://dbpedia.org/resource/Karl_Logan", "http://dbpedia.org/resource/Lobby_Loyde", "http://dbpedia.org/resource/Lobi_Traor\u00e9", "http://dbpedia.org/resource/Logan_Robot_Gladden", "http://dbpedia.org/resource/Long_John_Hunter", "http://dbpedia.org/resource/Lonnie_Glosson", "http://dbpedia.org/resource/Lord_Ahriman", "http://dbpedia.org/resource/Lorenzo_Antonio", "http://dbpedia.org/resource/Louis_Shelton", "http://dbpedia.org/resource/Loukas_Yorkas", "http://dbpedia.org/resource/Loun\u00e8s_Matoub", "http://dbpedia.org/resource/Luca_Princiotta", "http://dbpedia.org/resource/Lucius_Borich", "http://dbpedia.org/resource/Lucky_Peterson", "http://dbpedia.org/resource/Luigi_Tenco", "http://dbpedia.org/resource/Luis_Almonte", "http://dbpedia.org/resource/Luis_Resto_(musician)", "http://dbpedia.org/resource/Lukas_Meijer", "http://dbpedia.org/resource/Luke_James_(singer)", "http://dbpedia.org/resource/Luke_O'Reilly_(Bel's_Boys)", "http://dbpedia.org/resource/Lulu_Reinhardt", "http://dbpedia.org/resource/Lurrie_Bell", "http://dbpedia.org/resource/Luther_%22Georgia_Boy%22_Johnson", "http://dbpedia.org/resource/Luther_Johnson_(Guitar_Junior)", "http://dbpedia.org/resource/Luther_Perkins", "http://dbpedia.org/resource/Luther_Tucker", "http://dbpedia.org/resource/Lynn_Taitt", "http://dbpedia.org/resource/B\u00fcrgermeista", "http://dbpedia.org/resource/Ohene", "http://dbpedia.org/resource/Oleg_Fesov", "http://dbpedia.org/resource/Oleg_Mityaev", "http://dbpedia.org/resource/Oleg_Sudakov", "http://dbpedia.org/resource/Oleg_Timofeyev", "http://dbpedia.org/resource/Oleh_Skrypka", "http://dbpedia.org/resource/Olga_de_Blanck", "http://dbpedia.org/resource/Oliver_Ackermann", "http://dbpedia.org/resource/Oliver_Fartach-Naini", "http://dbpedia.org/resource/Olli_Tukiainen", "http://dbpedia.org/resource/Ollie_Olsen", "http://dbpedia.org/resource/Omar_Bashir_(musician)", "http://dbpedia.org/resource/Onno_Tun\u00e7", "http://dbpedia.org/resource/Orenda_Fink", "http://dbpedia.org/resource/Orhan_Gencebay", "http://dbpedia.org/resource/Orhan_\u00d6lmez", "http://dbpedia.org/resource/Ori_Naftaly", "http://dbpedia.org/resource/Oscar_Dronjak", "http://dbpedia.org/resource/Osunlade", "http://dbpedia.org/resource/Otis_Taylor_(musician)", "http://dbpedia.org/resource/Otomo_Yoshihide", "http://dbpedia.org/resource/Ottmar_Liebert", "http://dbpedia.org/resource/Oumi_Kapila", "http://dbpedia.org/resource/Ovidiu_Anton", "http://dbpedia.org/resource/Owen_Campbell_(musician)", "http://dbpedia.org/resource/Claire_Holley", "http://dbpedia.org/resource/Se\u00e1n_Cannon", "http://dbpedia.org/resource/Shahin_&_Sepehr", "http://dbpedia.org/resource/Shahin_Najafi", "http://dbpedia.org/resource/Shalom_Hanoch", "http://dbpedia.org/resource/Shameboy", "http://dbpedia.org/resource/Shane_Blay", "http://dbpedia.org/resource/Shane_Gibson_(musician)", "http://dbpedia.org/resource/Shannon_Hamm", "http://dbpedia.org/resource/Shara_Nova", "http://dbpedia.org/resource/Share_Ross", "http://dbpedia.org/resource/Sharon_Anderson_(singer)", "http://dbpedia.org/resource/Shaun_Lopez", "http://dbpedia.org/resource/Shay_Raviv", "http://dbpedia.org/resource/Shea_Rose", "http://dbpedia.org/resource/Shellback_(record_producer)", "http://dbpedia.org/resource/Sherri_Youngward", "http://dbpedia.org/resource/Sheryl_Bailey", "http://dbpedia.org/resource/Shigeru_Joshima", "http://dbpedia.org/resource/Shingai_Shoniwa", "http://dbpedia.org/resource/Shoko_Sawada", "http://dbpedia.org/resource/Shorty_Medlocke", "http://dbpedia.org/resource/Shugo_Tokumaru", "http://dbpedia.org/resource/Sid_Griffin", "http://dbpedia.org/resource/Sid_McGinnis", "http://dbpedia.org/resource/Sierra_Swan", "http://dbpedia.org/resource/Silenoz", "http://dbpedia.org/resource/Sputnik_(singer)", "http://dbpedia.org/resource/Stacy_Jones", "http://dbpedia.org/resource/Staffan_Hellstrand", "http://dbpedia.org/resource/Stan_Kesler", "http://dbpedia.org/resource/Stan_Webb", "http://dbpedia.org/resource/Stanley_Sheldon", "http://dbpedia.org/resource/Stas_Namin", "http://dbpedia.org/resource/Ste_van_Holm", "http://dbpedia.org/resource/Stefan_Grossman", "http://dbpedia.org/resource/Stefano_Rosso", "http://dbpedia.org/resource/Stepan_Pasicznyk", "http://dbpedia.org/resource/Stephan_Lill", "http://dbpedia.org/resource/Stephen_Emmer", "http://dbpedia.org/resource/Stephen_Lipson", "http://dbpedia.org/resource/Stephen_Malkmus", "http://dbpedia.org/resource/Stephin_Merritt", "http://dbpedia.org/resource/Sterling_Roswell", "http://dbpedia.org/resource/Steuart_Smith", "http://dbpedia.org/resource/Steve_%22Lips%22_Kudlow", "http://dbpedia.org/resource/Steve_Asheim", "http://dbpedia.org/resource/Steve_Augeri", "http://dbpedia.org/resource/Steve_Bell_(musician)", "http://dbpedia.org/resource/Doug_Grean", "http://dbpedia.org/resource/Doug_Lancio", "http://dbpedia.org/resource/Doug_McCombs", "http://dbpedia.org/resource/Doug_Paisley", "http://dbpedia.org/resource/Johnny_Colla", "http://dbpedia.org/resource/Paola_e_Chiara", "http://dbpedia.org/resource/Eric_Von_Schmidt", "http://dbpedia.org/resource/Ernest_Ka\u02bbai", "http://dbpedia.org/resource/Laura_Jean", "http://dbpedia.org/resource/Lew_Nottke", "http://dbpedia.org/resource/Joshua_Strachan", "http://dbpedia.org/resource/King_Louie_Bankston", "http://dbpedia.org/resource/Radio_Sloan", "http://dbpedia.org/resource/Wesseh_Freeman", "http://dbpedia.org/resource/Skalpovich", "http://dbpedia.org/resource/Bias_Boshell", "http://dbpedia.org/resource/Big_Bill_Morganfield", "http://dbpedia.org/resource/Big_John_Duncan", "http://dbpedia.org/resource/Bill_Barth", "http://dbpedia.org/resource/Bill_Chinnock", "http://dbpedia.org/resource/Bill_Doss", "http://dbpedia.org/resource/Bill_Gilonis", "http://dbpedia.org/resource/Bill_Henderson_(Canadian_singer)", "http://dbpedia.org/resource/Bill_Keale", "http://dbpedia.org/resource/Bill_Leslie_(journalist)", "http://dbpedia.org/resource/Bill_Leverty", "http://dbpedia.org/resource/Bill_MacCormick", "http://dbpedia.org/resource/Bill_Nershi", "http://dbpedia.org/resource/Bill_Priddle", "http://dbpedia.org/resource/Bill_Wells", "http://dbpedia.org/resource/Billie_Maxwell", "http://dbpedia.org/resource/Billy_Bremner_(musician)", "http://dbpedia.org/resource/Billy_Crain", "http://dbpedia.org/resource/Billy_Flynn_(musician)", "http://dbpedia.org/resource/Billy_Greer", "http://dbpedia.org/resource/Billy_Hughes_(musician)", "http://dbpedia.org/resource/Billy_Mackel", "http://dbpedia.org/resource/Billy_Sawilchik", "http://dbpedia.org/resource/Billy_Smiley", "http://dbpedia.org/resource/Bj\u00f6rn_Thoroddsen", "http://dbpedia.org/resource/Bkorn", "http://dbpedia.org/resource/Black_Allan_Barker", "http://dbpedia.org/resource/Blake_Judd", "http://dbpedia.org/resource/Blind_Joe_Hill", "http://dbpedia.org/resource/Blind_Uncle_Gaspard", "http://dbpedia.org/resource/Blue_Sky_Black_Death", "http://dbpedia.org/resource/Bo_Carter", "http://dbpedia.org/resource/Bob_Atcher", "http://dbpedia.org/resource/Bob_Bogle", "http://dbpedia.org/resource/Bob_Drake_(musician)", "http://dbpedia.org/resource/Bob_Hite", "http://dbpedia.org/resource/Bob_Margolin", "http://dbpedia.org/resource/Bob_Morris_(musician)", "http://dbpedia.org/resource/Bob_Shane", "http://dbpedia.org/resource/Bob_Wootton", "http://dbpedia.org/resource/Bobby_Clancy", "http://dbpedia.org/resource/Bobby_J", "http://dbpedia.org/resource/Bobby_Keyes_(guitarist)", "http://dbpedia.org/resource/Bobby_King_(musician)", "http://dbpedia.org/resource/Bobby_Murray_(musician)", "http://dbpedia.org/resource/Bobby_Poe", "http://dbpedia.org/resource/Bobby_Radcliff", "http://dbpedia.org/resource/Bobo_Jenkins", "http://dbpedia.org/resource/Bohdan_X", "http://dbpedia.org/resource/Bojan_Pe\u010dar", "http://dbpedia.org/resource/Boogie_Bill_Webb", "http://dbpedia.org/resource/Hutch_Harris", "http://dbpedia.org/resource/H\u00e4ns'che_Weiss", "http://dbpedia.org/resource/Ian_Antono", "http://dbpedia.org/resource/Ian_Ball", "http://dbpedia.org/resource/Ian_Callanan", "http://dbpedia.org/resource/Ian_Finney", "http://dbpedia.org/resource/Ian_Gregson_(athlete)", "http://dbpedia.org/resource/Ian_M._Anderson", "http://dbpedia.org/resource/Ian_North", "http://dbpedia.org/resource/Ian_Scott_(producer)", "http://dbpedia.org/resource/Ibrica_Jusi\u0107", "http://dbpedia.org/resource/Ichiyo_Izawa", "http://dbpedia.org/resource/Ida_Maria", "http://dbpedia.org/resource/Idde_Schultz", "http://dbpedia.org/resource/Idha", "http://dbpedia.org/resource/Igor_Grigoriev", "http://dbpedia.org/resource/Ike_Reilly", "http://dbpedia.org/resource/Ike_Willis", "http://dbpedia.org/resource/Ilan_Eshkeri", "http://dbpedia.org/resource/Ilan_Rubin", "http://dbpedia.org/resource/Imaad_Wasif", "http://dbpedia.org/resource/Imre_Poniklo", "http://dbpedia.org/resource/Bigg_D", "http://dbpedia.org/resource/King_Krule", "http://dbpedia.org/resource/King_ov_Hell", "http://dbpedia.org/resource/Kipp_Lennon", "http://dbpedia.org/resource/Kirby_Gregory", "http://dbpedia.org/resource/Kirk_Pengilly", "http://dbpedia.org/resource/Kjartan_Kristiansen", "http://dbpedia.org/resource/Kjartan_Sveinsson", "http://dbpedia.org/resource/Klasse_M\u00f6llberg", "http://dbpedia.org/resource/Klaus_Heuser", "http://dbpedia.org/resource/Klaus_R\u00f6der", "http://dbpedia.org/resource/Kneel_Cohn", "http://dbpedia.org/resource/Knjaz_Varggoth", "http://dbpedia.org/resource/Knut_Schreiner", "http://dbpedia.org/resource/Knut_V\u00e6rnes", "http://dbpedia.org/resource/Kodi_Najm", "http://dbpedia.org/resource/Koga_Masao", "http://dbpedia.org/resource/Koichi_Fukuda", "http://dbpedia.org/resource/Koop_Arponen", "http://dbpedia.org/resource/Kris_Dollimore", "http://dbpedia.org/resource/Kris_Ife", "http://dbpedia.org/resource/Kristian_Ranta", "http://dbpedia.org/resource/Kristian_W\u00e5hlin", "http://dbpedia.org/resource/Kristina_Esfandiari", "http://dbpedia.org/resource/Kristofer_Steen", "http://dbpedia.org/resource/Krist\u00edn_Anna_Valt\u00fdsd\u00f3ttir", "http://dbpedia.org/resource/Kurt_Baker_(musician)", "http://dbpedia.org/resource/Kyle_Andrews", "http://dbpedia.org/resource/Kyle_Carey", "http://dbpedia.org/resource/Kyp_Malone", "http://dbpedia.org/resource/Lito_Camo", "http://dbpedia.org/resource/Little_Axe", "http://dbpedia.org/resource/Little_Freddie_King", "http://dbpedia.org/resource/Little_Hat_Jones", "http://dbpedia.org/resource/Little_Jimmy_Dickens", "http://dbpedia.org/resource/Little_Jimmy_King", "http://dbpedia.org/resource/Little_Smokey_Smothers", "http://dbpedia.org/resource/Little_Willy_Foster", "http://dbpedia.org/resource/Bryant_Clifford_Meyer", "http://dbpedia.org/resource/Brynn_Gersmehl", "http://dbpedia.org/resource/Buddy_Boy_Hawkins", "http://dbpedia.org/resource/Mia_Clarke", "http://dbpedia.org/resource/Mica_Levi", "http://dbpedia.org/resource/Micah_Massey", "http://dbpedia.org/resource/Michael_Baiardi", "http://dbpedia.org/resource/Michael_Brook", "http://dbpedia.org/resource/Michael_Burks", "http://dbpedia.org/resource/Michael_Calfan", "http://dbpedia.org/resource/Michael_Campbell_(American_musician,_born_1985)", "http://dbpedia.org/resource/Michael_Chapdelaine", "http://dbpedia.org/resource/Michael_Coleman_(blues_musician)", "http://dbpedia.org/resource/Michael_Dadap", "http://dbpedia.org/resource/Michael_Franti", "http://dbpedia.org/resource/Michael_Grimm_(musician)", "http://dbpedia.org/resource/Michael_Harwood_(musician)", "http://dbpedia.org/resource/Michael_Head_(popular_musician)", "http://dbpedia.org/resource/Michael_Jagmin", "http://dbpedia.org/resource/Michael_Johns_(singer)", "http://dbpedia.org/resource/Michael_Kang_(musician)", "http://dbpedia.org/resource/Michael_Lloyd_(music_producer)", "http://dbpedia.org/resource/Michael_Magalon", "http://dbpedia.org/resource/Michael_McCann_(composer)", "http://dbpedia.org/resource/Michael_Morales_(musician)", "http://dbpedia.org/resource/Michael_Sarver", "http://dbpedia.org/resource/Michael_Scholz", "http://dbpedia.org/resource/Michael_Todd_(musician)", "http://dbpedia.org/resource/Michael_William_Gilbert", "http://dbpedia.org/resource/Michael_Williams_(guitarist)", "http://dbpedia.org/resource/Michael_Wilton", "http://dbpedia.org/resource/Michael_de_Grussa", "http://dbpedia.org/resource/Michelle_Meldrum", "http://dbpedia.org/resource/Michiel_van_den_Bos", "http://dbpedia.org/resource/Mick_Box", "http://dbpedia.org/resource/Mick_Clarke_(musician)", "http://dbpedia.org/resource/Mick_Cripps", "http://dbpedia.org/resource/Mick_Thomas", "http://dbpedia.org/resource/Mick_Tucker", "http://dbpedia.org/resource/Mick_Whitnall", "http://dbpedia.org/resource/Micki_Free", "http://dbpedia.org/resource/Micky_Lee_Soule", "http://dbpedia.org/resource/Mighty_Joe_Young_(musician)", "http://dbpedia.org/resource/Mih\u00e1ly_V\u00edg", "http://dbpedia.org/resource/Mike_Badger", "http://dbpedia.org/resource/Mike_Clark_(guitarist)", "http://dbpedia.org/resource/Mike_Dimkich", "http://dbpedia.org/resource/Mike_Gibbins", "http://dbpedia.org/resource/Mike_Gordon", "http://dbpedia.org/resource/Mike_Johnson_(guitarist)", "http://dbpedia.org/resource/Mike_Keneally", "http://dbpedia.org/resource/Mike_Kowalski", "http://dbpedia.org/resource/Mike_Krol", "http://dbpedia.org/resource/Mike_Lerner", "http://dbpedia.org/resource/Mike_Martin_(American_guitarist)", "http://dbpedia.org/resource/Mike_Mogis", "http://dbpedia.org/resource/Mike_Morgan_(musician)", "http://dbpedia.org/resource/Mike_Pender", "http://dbpedia.org/resource/Mike_Post", "http://dbpedia.org/resource/Mike_Rutherford", "http://dbpedia.org/resource/Mike_Scheidt", "http://dbpedia.org/resource/Mike_Schuppan", "http://dbpedia.org/resource/Mike_Scott_(Scottish_musician)", "http://dbpedia.org/resource/Mike_Seeger", "http://dbpedia.org/resource/Mike_Turner_(musician)", "http://dbpedia.org/resource/Mike_Zito", "http://dbpedia.org/resource/Miki_Berenyi", "http://dbpedia.org/resource/Milan_Mladenovi\u0107", "http://dbpedia.org/resource/Miles_Benjamin_Anthony_Robinson", "http://dbpedia.org/resource/Miles_Mosley", "http://dbpedia.org/resource/Milica_Davies", "http://dbpedia.org/resource/Minute_Taker", "http://dbpedia.org/resource/Ozan_Do\u011fulu", "http://dbpedia.org/resource/Ozzie_Ahlers", "http://dbpedia.org/resource/O\u011fuz_Abadan", "http://dbpedia.org/resource/Pablo_Garc\u00eda_(musician)", "http://dbpedia.org/resource/Pablo_Minoli", "http://dbpedia.org/resource/Pablo_M\u00e1rquez_(guitarist)", "http://dbpedia.org/resource/Pablo_Sciuto", "http://dbpedia.org/resource/Paco_Arespacochaga", "http://dbpedia.org/resource/Paco_Pe\u00f1a", "http://dbpedia.org/resource/Paco_Serrano", "http://dbpedia.org/resource/Paleface_(musician)", "http://dbpedia.org/resource/Pamela_Morgan", "http://dbpedia.org/resource/Pamela_Spence", "http://dbpedia.org/resource/Pang_Long", "http://dbpedia.org/resource/Papa_Charlie_Jackson", "http://dbpedia.org/resource/Parker_Case", "http://dbpedia.org/resource/Parker_Griggs", "http://dbpedia.org/resource/Passionate_Friends_(band)", "http://dbpedia.org/resource/Pat_DiNizio", "http://dbpedia.org/resource/Pat_Hare", "http://dbpedia.org/resource/Patrick_Clifford_(musician)", "http://dbpedia.org/resource/Patrick_Simmons", "http://dbpedia.org/resource/Patrick_Vian", "http://dbpedia.org/resource/Patrick_Walden", "http://dbpedia.org/resource/Patrick_Watson_(musician)", "http://dbpedia.org/resource/Patsy_Montana", "http://dbpedia.org/resource/Patty_Schemel", "http://dbpedia.org/resource/Paul_%22Wine%22_Jones", "http://dbpedia.org/resource/Paul_Barker", "http://dbpedia.org/resource/Paul_Barrere", "http://dbpedia.org/resource/Paul_Dean_(guitarist)", "http://dbpedia.org/resource/Paul_Evans_(musician)", "http://dbpedia.org/resource/Paul_Gardiner", "http://dbpedia.org/resource/Paul_Haslinger", "http://dbpedia.org/resource/Paul_Hyde", "http://dbpedia.org/resource/Paul_Kowert", "http://dbpedia.org/resource/Paul_Leary", "http://dbpedia.org/resource/Paul_Marazzi", "http://dbpedia.org/resource/Paul_Metsers", "http://dbpedia.org/resource/Paul_Newsome", "http://dbpedia.org/resource/Paul_Rudolph_(musician)", "http://dbpedia.org/resource/Paul_Sykes_(singer)", "http://dbpedia.org/resource/Paul_Watchorn", "http://dbpedia.org/resource/Paul_Webb", "http://dbpedia.org/resource/Paul_Williams_(The_Temptations_singer)", "http://dbpedia.org/resource/Paul_Wilson_(musician)", "http://dbpedia.org/resource/Paul_Yandell", "http://dbpedia.org/resource/Chris_Collins_(singer)", "http://dbpedia.org/resource/Chris_Funk", "http://dbpedia.org/resource/Chris_Newman_(musician)", "http://dbpedia.org/resource/Chris_Rob", "http://dbpedia.org/resource/Chris_Wardman", "http://dbpedia.org/resource/Chris_Woodhouse", "http://dbpedia.org/resource/Christina_Schilling", "http://dbpedia.org/resource/Ron_Anthony", "http://dbpedia.org/resource/Ron_Elliott_(musician)", "http://dbpedia.org/resource/Ron_Emory", "http://dbpedia.org/resource/Roni_Benise", "http://dbpedia.org/resource/Ronni_Le_Tekr\u00f8", "http://dbpedia.org/resource/Ronnie_Baker_Brooks", "http://dbpedia.org/resource/Ronnie_Earl", "http://dbpedia.org/resource/Ronny_Moorings", "http://dbpedia.org/resource/Rory_Attwell", "http://dbpedia.org/resource/Rory_Block", "http://dbpedia.org/resource/Roscoe_Holcomb", "http://dbpedia.org/resource/Rosendo_Ruiz", "http://dbpedia.org/resource/Ross_Childress", "http://dbpedia.org/resource/Ross_Millard", "http://dbpedia.org/resource/Roxanne_Emery", "http://dbpedia.org/resource/Roxanne_Fontana", "http://dbpedia.org/resource/Roy_Brown_(Puerto_Rican_musician)", "http://dbpedia.org/resource/Roy_McCurdy", "http://dbpedia.org/resource/Roy_Mitchell-C\u00e1rdenas", "http://dbpedia.org/resource/Roy_Montgomery", "http://dbpedia.org/resource/Roy_Nichols", "http://dbpedia.org/resource/Roy_Phillips", "http://dbpedia.org/resource/Ruben_De_Fuentes", "http://dbpedia.org/resource/Rudy_Rotta", "http://dbpedia.org/resource/Rune_Eriksen", "http://dbpedia.org/resource/Rupam_Islam", "http://dbpedia.org/resource/Russell_Javors", "http://dbpedia.org/resource/Rust_Epique", "http://dbpedia.org/resource/Rustie", "http://dbpedia.org/resource/Ruth_Radelet", "http://dbpedia.org/resource/Ruthie_Collins", "http://dbpedia.org/resource/Ruthie_Foster", "http://dbpedia.org/resource/Ruud_Jolie", "http://dbpedia.org/resource/Ry_Cooder", "http://dbpedia.org/resource/Ryan_Dahle", "http://dbpedia.org/resource/Ryan_Helm", "http://dbpedia.org/resource/Ryan_Koenig", "http://dbpedia.org/resource/Ryan_Lofty", "http://dbpedia.org/resource/Ryan_Sinn", "http://dbpedia.org/resource/Ryo_Kawakita", "http://dbpedia.org/resource/Ryosuke_Nagaoka", "http://dbpedia.org/resource/Danny_Coralles", "http://dbpedia.org/resource/Danny_Spencer", "http://dbpedia.org/resource/Danny_Vaughn", "http://dbpedia.org/resource/David_Z_(producer)", "http://dbpedia.org/resource/Dean_Magraw", "http://dbpedia.org/resource/\u0130lyas_Yal\u00e7\u0131nta\u015f", "http://dbpedia.org/resource/\u014csama", "http://dbpedia.org/resource/Dwight_Pinkney", "http://dbpedia.org/resource/Dylan_Lardelli", "http://dbpedia.org/resource/Eamon_Hamilton", "http://dbpedia.org/resource/Ed_Boyd", "http://dbpedia.org/resource/Ed_Miller_(Scottish_folk_musician)", "http://dbpedia.org/resource/Ed_Stasium", "http://dbpedia.org/resource/Eddie_Peabody", "http://dbpedia.org/resource/Eric_Carlson_(musician)", "http://dbpedia.org/resource/Ernest_Carter_(drummer)", "http://dbpedia.org/resource/Ryan_Farish", "http://dbpedia.org/resource/Sarane_Ferret", "http://dbpedia.org/resource/Filippos_Pliatsikas", "http://dbpedia.org/resource/Flynn_Gower", "http://dbpedia.org/resource/Frank_Rogers_(record_producer)", "http://dbpedia.org/resource/Gary_Fletcher_(musician)", "http://dbpedia.org/resource/Gavin_Ward_(musician)", "http://dbpedia.org/resource/Nigel_Gavin", "http://dbpedia.org/resource/George_Kahumoku_Jr.", "http://dbpedia.org/resource/Goh_Nakamura", "http://dbpedia.org/resource/Graham_Lindsey", "http://dbpedia.org/resource/Halldor_Mar", "http://dbpedia.org/resource/Helena_Espvall", "http://dbpedia.org/resource/Jack_Dalrymple_(musician)", "http://dbpedia.org/resource/Thomas_MacLean", "http://dbpedia.org/resource/Johnny_Duhan", "http://dbpedia.org/resource/Nesey_Gallons", "http://dbpedia.org/resource/Tom_Peloso", "http://dbpedia.org/resource/Yaiya", "http://dbpedia.org/resource/Stephen_Sphincter", "http://dbpedia.org/resource/Will_Crewdson", "http://dbpedia.org/resource/Tom_Gallo", "http://dbpedia.org/resource/Bobby_Aitken", "http://dbpedia.org/resource/Catfish_Stephenson", "http://dbpedia.org/resource/Cehryl", "http://dbpedia.org/resource/Chance_McKinney", "http://dbpedia.org/resource/Channel_7_(musician)", "http://dbpedia.org/resource/Charles_Gray_(musician)", "http://dbpedia.org/resource/Yiannis_Papadopoulos_(guitarist)", "http://dbpedia.org/resource/Yoad_Nevo", "http://dbpedia.org/resource/Yohio", "http://dbpedia.org/resource/Yoon_Sang", "http://dbpedia.org/resource/Yoshiaki_Manabe", "http://dbpedia.org/resource/Yoshiaki_Miyanoue", "http://dbpedia.org/resource/Yoshie_Fruchter", "http://dbpedia.org/resource/Yoshiki_Fukuyama", "http://dbpedia.org/resource/Yppah", "http://dbpedia.org/resource/Yul_Anderson", "http://dbpedia.org/resource/Yuri_Shevchuk", "http://dbpedia.org/resource/Yutaka_Ozaki", "http://dbpedia.org/resource/Yvonne_Elliman", "http://dbpedia.org/resource/Zach_Dawes", "http://dbpedia.org/resource/Zach_Gill", "http://dbpedia.org/resource/Zachary_Hietala", "http://dbpedia.org/resource/Zang_Tianshuo", "http://dbpedia.org/resource/Zappacosta", "http://dbpedia.org/resource/Zeno_Roth", "http://dbpedia.org/resource/Zeta_Bosio", "http://dbpedia.org/resource/Zolt\u00e1n_K\u0151v\u00e1ry", "http://dbpedia.org/resource/\u00c1sgeir_Trausti", "http://dbpedia.org/resource/\u00c9abha_McMahon", "http://dbpedia.org/resource/\u00d3l\u00f6f_Arnalds", "http://dbpedia.org/resource/\u00d8ystein_Brun", "http://dbpedia.org/resource/Kawabata_Makoto", "http://dbpedia.org/resource/Kevin_Danczak", "http://dbpedia.org/resource/Kira_Willey", "http://dbpedia.org/resource/Rabbit_Brown", "http://dbpedia.org/resource/Jim_Diamond_(music_producer)", "http://dbpedia.org/resource/Sabicas", "http://dbpedia.org/resource/Ira_Cruz", "http://dbpedia.org/resource/Tony_Harmon", "http://dbpedia.org/resource/Legz_Diamond", "http://dbpedia.org/resource/Ryan_MacGrath", "http://dbpedia.org/resource/Mesh-29", "http://dbpedia.org/resource/Sean_Chambers_(musician)", "http://dbpedia.org/resource/Victoria_Sur", "http://dbpedia.org/resource/\u00c1rp\u00e1d_Szarvas", "http://dbpedia.org/resource/Rob_Barraco", "http://dbpedia.org/resource/Reverend_Freakchild", "http://dbpedia.org/resource/Lotte_Kestner", "http://dbpedia.org/resource/Ted_Hutt", "http://dbpedia.org/resource/Rex_Carroll", "http://dbpedia.org/resource/Sonny_Scott", "http://dbpedia.org/resource/Steve_Cooney", "http://dbpedia.org/resource/Zacari", "http://dbpedia.org/resource/Zhang_Ju_(musician)", "http://dbpedia.org/resource/Pat_the_White", "http://dbpedia.org/resource/Shlomo_Gaisin", "http://dbpedia.org/resource/Shovan"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/editing> <http://dbpedia.org/resource/Anthony_Harvey> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": ["http://dbpedia.org/resource/Tread_Softly_Stranger", "http://dbpedia.org/resource/Happy_Is_the_Bride", "http://dbpedia.org/resource/Brothers_in_Law_(film)", "http://dbpedia.org/resource/The_L-Shaped_Room", "http://dbpedia.org/resource/The_Millionairess", "http://dbpedia.org/resource/The_Spy_Who_Came_In_from_the_Cold_(film)", "http://dbpedia.org/resource/The_Whisperers", "http://dbpedia.org/resource/Dr._Strangelove", "http://dbpedia.org/resource/The_Angry_Silence", "http://dbpedia.org/resource/Carlton-Browne_of_the_F.O.", "http://dbpedia.org/resource/Private's_Progress", "http://dbpedia.org/resource/Lolita_(1962_film)", "http://dbpedia.org/resource/I'm_All_Right_Jack"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/programmingPlatform> <http://dbpedia.org/resource/Remote_Desktop_Protocol> . ?x <http://dbpedia.org/ontology/developer> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/On_Broadway_(Smash)> <http://dbpedia.org/property/guests> ?uri } "}, "answers": ["", "Michael Cristofer as Jerry Rand", "Brian d'Arcy James as Frank Houston", "Jennifer Hudson as Veronica Moore", "Thorsten Kaye as Nick"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/capital> <http://dbpedia.org/resource/Oslo> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/University>}"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Ultimate_Merger> <http://dbpedia.org/ontology/executiveProducer> ?uri . <http://dbpedia.org/resource/Trump_Productions> <http://dbpedia.org/property/keyPerson> ?uri} "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Colorado_wine> <http://dbpedia.org/property/officialName> ?uri } "}, "answers": ["http://dbpedia.org/resource/Colorado"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/design> <http://dbpedia.org/resource/Burr_Tuss> . ?x <http://dbpedia.org/ontology/state> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/leaderName> <http://dbpedia.org/resource/City_of_Chicago> . ?x <http://dbpedia.org/ontology/restingPlace> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/restingPlace> <http://dbpedia.org/resource/Mausoleum_of_Augustus> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Royalty>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/university> <http://dbpedia.org/resource/Stanford_Cardinal> . ?uri <http://dbpedia.org/ontology/commonUniversity> <http://dbpedia.org/resource/Jim_Wylie> . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Chiva_bus> <http://dbpedia.org/ontology/automobilePlatform> ?uri } "}, "answers": ["http://dbpedia.org/resource/Ford_Motor_Company", "http://dbpedia.org/resource/Dodge", "http://dbpedia.org/resource/Blue_Bird_Corporation"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/related> <http://dbpedia.org/resource/The_Sarah_Jane_Adventures> and themeMusicComposer <http://dbpedia.org/resource/Ron_Grainer> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/officialLanguage> <http://dbpedia.org/resource/Indian_English> . ?uri <http://dbpedia.org/property/residence> ?x . }"}, "answers": ["315"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/profession> <http://dbpedia.org/resource/Diplomacy> . ?x <http://dbpedia.org/property/religion> ?uri . }"}, "answers": ["1"]}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/knownFor> <http://dbpedia.org/resource/Linguistics> } "}, "answers": ["22"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/nationality> <http://dbpedia.org/resource/Muslim_Brotherhood> . ?x <http://dbpedia.org/ontology/religion> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/manager> <http://dbpedia.org/resource/Ciao_Zanardi> . ?x <http://dbpedia.org/ontology/homeGround> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/language> <http://dbpedia.org/resource/Languages_of_Ethiopia> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Country>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Girls_(The_Prodigy_song)> <http://dbpedia.org/property/recorded> ?uri } "}, "answers": ["http://dbpedia.org/resource/England", "http://dbpedia.org/resource/Essex"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/New_York> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/owningCompany> <http://dbpedia.org/resource/BBC_One> . ?uri <http://dbpedia.org/property/company> ?x . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/tenant> <http://dbpedia.org/resource/Canada> . ?x <http://dbpedia.org/property/tenants> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lake_Uniam\u00e9si> <http://dbpedia.org/ontology/outflow> ?uri } "}, "answers": ["http://dbpedia.org/resource/Benue_River", "http://dbpedia.org/resource/Nile", "http://dbpedia.org/resource/Congo_River", "http://dbpedia.org/resource/Zambezi"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Linda_Jenness> <http://dbpedia.org/ontology/incumbent> ?uri } "}, "answers": ["http://dbpedia.org/resource/Richard_Nixon"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/cities> <http://dbpedia.org/resource/Cuman\u00e1> . ?x <http://dbpedia.org/property/country> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Sigma_TV> <http://dbpedia.org/property/headquarters> ?uri } "}, "answers": ["http://dbpedia.org/resource/Strovolos", "http://dbpedia.org/resource/Cyprus", "http://dbpedia.org/resource/Nicosia"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/International_Union_of_Anarchists> <http://dbpedia.org/property/affiliation> ?uri . }"}, "answers": ["9"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/doctoralAdvisor> <http://dbpedia.org/resource/Jean-Claude_Latombe> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}"}, "answers": ["http://dbpedia.org/resource/James_J._Kuffner_Jr.", "http://dbpedia.org/resource/Suresh_Venkatasubramanian"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/residence> <http://dbpedia.org/resource/Wilton,_Connecticut> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": ["http://dbpedia.org/resource/Samuel_Marvin", "http://dbpedia.org/resource/Charles_Marvin_(Connecticut_politician)", "http://dbpedia.org/resource/Joseph_Birchard", "http://dbpedia.org/resource/Clapp_Raymond", "http://dbpedia.org/resource/Benjamin_Hickox", "http://dbpedia.org/resource/Robert_L._Belknap"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/publisher> <http://dbpedia.org/resource/Bantam_Spectra> . ?x <http://dbpedia.org/property/series> ?uri . }"}, "answers": ["http://dbpedia.org/resource/The_Sword_of_Change", "http://dbpedia.org/resource/Science_in_the_Capital_trilogy", "Autumn Rain Trilogy", "http://dbpedia.org/resource/Bantam_Spectra", "Canon S", "http://dbpedia.org/resource/Deverry_cycle", "Mars Trilogy", "http://dbpedia.org/resource/The_Queendom_of_Sol", "Star of the Guardians", "A Song of Ice and Fire", "http://dbpedia.org/resource/Women_of_the_Otherworld", "The Han Solo Trilogy", "Canon C", "Emergence trilogy", "http://dbpedia.org/resource/The_Nightrunner_Series", "http://dbpedia.org/resource/Bridge_trilogy", "[[#Books in the series", "http://dbpedia.org/resource/The_Jenny_Casey_Trilogy", "Oxford Time Travel, #2", "http://dbpedia.org/resource/Uplift_Universe", "To Halt Armageddon", "Prelude to Dune", "http://dbpedia.org/resource/The_Farseer_Trilogy", "http://dbpedia.org/resource/The_Millennial_Contest_series", "http://dbpedia.org/resource/What_Might_Have_Been_(anthology_series)", "Blade Runner", "Nightrunner", "Legend C", "http://dbpedia.org/resource/Liveship_Traders_Trilogy", "Star Wars Books, Star Wars Legends, The Corellian Trilogy", "Brian Froud's Faerielands", "Oxford Time Travel"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/location> <http://dbpedia.org/resource/Tehran> . ?uri <http://dbpedia.org/ontology/product> ?x . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/grandsire> <http://dbpedia.org/resource/Sundridge> . ?x <http://dbpedia.org/property/awards> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/ground> <http://dbpedia.org/resource/Watkins_Glen_International> . ?x <http://dbpedia.org/property/firstTeam> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/screenplay> <http://dbpedia.org/resource/Akiva_Goldsman> and directed by Joel_Schumacher . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/debutteam> <http://dbpedia.org/resource/Houston_Astros> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/BaseballTeam>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/beatifiedBy> <http://dbpedia.org/resource/Pope_Pius_X> . ?x <http://dbpedia.org/ontology/deathPlace> ?uri . }"}, "answers": ["54"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Meadow_Soprano> <http://dbpedia.org/ontology/relative> ?x . ?x <http://dbpedia.org/property/religion> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Evangelism", "http://dbpedia.org/resource/Born_again_(Christianity)", "http://dbpedia.org/resource/Buddhist", "http://dbpedia.org/resource/Roman_Catholic", "http://dbpedia.org/resource/Roman_Catholicism", "http://dbpedia.org/resource/Catholic_Church", "Roman Catholicism"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/lieutenant> <http://dbpedia.org/resource/Winston_Bryant> . ?x <http://dbpedia.org/ontology/president> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/associatedBand> <http://dbpedia.org/resource/My_Favorite_Girl> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Band>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/owner> <http://dbpedia.org/resource/Warner_Bros._Television> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/programmingLanguage> <http://dbpedia.org/resource/C++> . ?uri <http://dbpedia.org/ontology/operatingSystem> <http://dbpedia.org/resource/Microsoft_Windows> } "}, "answers": ["470"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/language> <http://dbpedia.org/resource/Spanish_language> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}"}, "answers": ["37"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/almaMater> <http://dbpedia.org/resource/Judge_Advocate_General's_Corps,_United_States_Army> . ?x <http://dbpedia.org/ontology/institution> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/mouthMountain> <http://dbpedia.org/resource/Southend-on-Sea> . ?uri <http://dbpedia.org/property/mouthPlace> <http://dbpedia.org/resource/Essex> . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/license> <http://dbpedia.org/resource/GNU_Free_Documentation_License> . ?x <http://dbpedia.org/property/genre> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Raster_graphics_editor"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Allgemeine_SS> <http://dbpedia.org/property/leader> ?uri } "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Metro_Transit_(Minnesota)> <http://dbpedia.org/property/headquarters> ?uri } "}, "answers": ["560", "Minneapolis, Minnesota, United States", "Fred T. Heywood Office Building and Garage"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/creators> <http://dbpedia.org/resource/Frank_Miller_(comics)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/FictionalCharacter>}"}, "answers": ["1"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Spain_on_the_Road_Again> <http://dbpedia.org/ontology/narrator> ?x . ?x <http://dbpedia.org/property/birthPlace> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/doctoralAdvisor> <http://dbpedia.org/resource/Leonard_Lerman> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}"}, "answers": ["http://dbpedia.org/resource/Tom_Maniatis", "http://dbpedia.org/resource/Sidney_Altman"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Winston_Bryant> <http://dbpedia.org/property/governor> ?uri . <http://dbpedia.org/resource/Joseph_Stiglitz> <http://dbpedia.org/ontology/president> ?uri} "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/occupiedByPlace> <http://dbpedia.org/resource/German_occupied_Europe> . ?uri <http://dbpedia.org/property/leaderName> ?x . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/writer> <http://dbpedia.org/resource/Robert_Schenkkan> . ?x <http://dbpedia.org/ontology/place> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/militaryUnit> <http://dbpedia.org/resource/WW1_(album)> } "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Chevrolet_Caprice> <http://dbpedia.org/ontology/predecessor> ?uri } "}, "answers": ["http://dbpedia.org/resource/Pontiac_G8", "http://dbpedia.org/resource/Chevrolet_Impala", "http://dbpedia.org/resource/Chevrolet_Lumina"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Blade_Runner_2:_The_Edge_of_Human> <http://dbpedia.org/property/sequentWork> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/recordLabel> <http://dbpedia.org/resource/ATO_Records> . ?uri <http://dbpedia.org/property/themeMusicComposer> ?x . }"}, "answers": ["http://dbpedia.org/resource/Around_the_Horn", "http://dbpedia.org/resource/Going_to_California_(TV_series)", "http://dbpedia.org/resource/The_100_(TV_series)", "http://dbpedia.org/resource/State_of_Georgia_(TV_series)"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jim_Farley_(businessman)> <http://dbpedia.org/property/relatives> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Kevin_Farley", "http://dbpedia.org/resource/Chris_Farley", "http://dbpedia.org/resource/John_Farley_(actor)"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/publisher> <http://dbpedia.org/resource/Francisco_de_Robles> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book>}"}, "answers": ["http://dbpedia.org/resource/La_Galatea", "http://dbpedia.org/resource/Don_Quixote"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Hornito> <http://dbpedia.org/property/deathPlace> ?uri . <http://dbpedia.org/resource/Jamie_Bateman_C\u00e1n> <http://dbpedia.org/ontology/country> ?uri} "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Fazlur_Rahman_Khan> <http://dbpedia.org/ontology/restingPlace> ?uri } "}, "answers": ["http://dbpedia.org/resource/Chicago", "http://dbpedia.org/resource/Graceland_Cemetery"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Isa_(name)> <http://dbpedia.org/ontology/meaning> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/league> <http://dbpedia.org/resource/American_Hockey_League> . ?x <http://dbpedia.org/property/formerTeam> ?uri . }"}, "answers": ["1"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/school> <http://dbpedia.org/resource/Pietermaritzburg> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/School>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Richard_Coke> <http://dbpedia.org/ontology/office> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/founder> <http://dbpedia.org/resource/John_Forbes_(British_Army_officer)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Location>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/riverMouth> <http://dbpedia.org/resource/Deadhead> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/River>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/John_Kotelawala> <http://dbpedia.org/property/allegiance> ?uri } "}, "answers": ["http://dbpedia.org/resource/Ceylon"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/related> ?x . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Automobile>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Henry_Cluney> <http://dbpedia.org/ontology/origin> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/origin> <http://dbpedia.org/resource/Xynisteri> . ?uri <http://dbpedia.org/property/destinations> <http://dbpedia.org/resource/Mavro> . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/Battle_of_France> . ?x <http://dbpedia.org/ontology/award> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Distinguished_Flying_Cross_(United_Kingdom)", "http://dbpedia.org/resource/Milan_Rastislav_Stefanik_Order", "http://dbpedia.org/resource/Air_Crew_Europe_Star", "http://dbpedia.org/resource/Czechoslovak_War_Cross_1939\u20131945", "http://dbpedia.org/resource/1939\u20131945_Star", "http://dbpedia.org/resource/Croix_de_Guerre_1939\u20131945", "http://dbpedia.org/resource/Legion_of_Honour", "http://dbpedia.org/resource/Military_Order_of_the_White_Lion", "http://dbpedia.org/resource/Knight's_Cross_of_the_Iron_Cross", "http://dbpedia.org/resource/Order_of_the_British_Empire", "http://dbpedia.org/resource/Mentioned_in_dispatches", "http://dbpedia.org/resource/Order_of_the_Bath", "http://dbpedia.org/resource/Navy_Distinguished_Service_Medal", "http://dbpedia.org/resource/German_Cross", "http://dbpedia.org/resource/Distinguished_Service_Order", "http://dbpedia.org/resource/Distinguished_Flying_Cross_(United_States)", "http://dbpedia.org/resource/Croix_de_Guerre", "http://dbpedia.org/resource/Czechoslovakia", "http://dbpedia.org/resource/Order_of_the_White_Lion", "http://dbpedia.org/resource/Milan_Rastislav_\u0160tef\u00e1nik", "http://dbpedia.org/resource/Ehrenpokal_der_Luftwaffe", "http://dbpedia.org/resource/Iron_Cross", "http://dbpedia.org/resource/Distinguished_Service_Medal_(U.S._Army)", "http://dbpedia.org/resource/Legion_of_Merit", "http://dbpedia.org/resource/Croix_de_guerre_1914\u20131918_(France)", "http://dbpedia.org/resource/Order_of_Orange-Nassau", "http://dbpedia.org/resource/Order_of_Merit_of_the_Republic_of_Poland", "http://dbpedia.org/resource/Distinguished_Flying_Medal", "http://dbpedia.org/resource/1939\u20131945_Commemorative_war_medal_(France)", "http://dbpedia.org/resource/Escapees'_Medal", "http://dbpedia.org/resource/Medal_for_the_War_Wounded", "http://dbpedia.org/resource/Resistance_Medal", "http://dbpedia.org/resource/Order_of_the_Million_Elephants_and_the_White_Parasol", "http://dbpedia.org/resource/North_Africa_Security_and_Order_Operations_Commemorative_Medal", "http://dbpedia.org/resource/Colonial_Medal", "http://dbpedia.org/resource/Croix_de_guerre_des_th\u00e9\u00e2tres_d'op\u00e9rations_ext\u00e9rieures", "http://dbpedia.org/resource/Cross_for_Military_Valour", "http://dbpedia.org/resource/Imperial_Order_of_the_Dragon_of_Annam", "http://dbpedia.org/resource/Indochina_Campaign_commemorative_medal", "http://dbpedia.org/resource/Air_Force_Cross_(United_Kingdom)", "http://dbpedia.org/resource/War_Medal_1939\u20131945", "http://dbpedia.org/resource/Order_of_the_Crown_(Romania)", "http://dbpedia.org/resource/Defence_Medal_(United_Kingdom)", "http://dbpedia.org/resource/American_Red_Cross_of_Merit", "http://dbpedia.org/resource/Africa_Star", "http://dbpedia.org/resource/War_Medal_(Norway)", "http://dbpedia.org/resource/Italy_Star", "http://dbpedia.org/resource/Military_Cross", "http://dbpedia.org/resource/France_and_Germany_Star", "http://dbpedia.org/resource/Combatant's_Cross", "http://dbpedia.org/resource/Tunisia", "http://dbpedia.org/resource/Order_of_Polonia_Restituta", "http://dbpedia.org/resource/Silver_Star", "http://dbpedia.org/resource/House_Order_of_Hohenzollern", "http://dbpedia.org/resource/Military_Cross_(Belgium)", "http://dbpedia.org/resource/Queen's_Commendation_for_Valuable_Service_in_the_Air", "http://dbpedia.org/resource/Distinguished_Service_Cross_(United_Kingdom)", "http://dbpedia.org/resource/Virtuti_Militari", "http://dbpedia.org/resource/Cross_of_Valour_(Poland)", "http://dbpedia.org/resource/Air_Efficiency_Award", "http://dbpedia.org/resource/Tank_Memorial_Badge", "http://dbpedia.org/resource/Golden_Party_Badge", "http://dbpedia.org/resource/Order_of_the_Dannebrog", "http://dbpedia.org/resource/Military_Order_of_William", "http://dbpedia.org/resource/Order_of_the_Netherlands_Lion", "http://dbpedia.org/resource/Order_of_St_Michael_and_St_George", "http://dbpedia.org/resource/Order_of_Saint_John_(chartered_1888)", "http://dbpedia.org/resource/Order_of_St._Olav", "http://dbpedia.org/resource/Canadian_Forces'_Decoration", "http://dbpedia.org/resource/Order_of_Canada", "http://dbpedia.org/resource/Croix_de_guerre_(Belgium)", "http://dbpedia.org/resource/Territorial_Decoration", "http://dbpedia.org/resource/Pour_le_M\u00e9rite", "http://dbpedia.org/resource/Victoria_Cross", "http://dbpedia.org/resource/World_War_II_Victory_Medal", "http://dbpedia.org/resource/French_language", "http://dbpedia.org/resource/%22V%22_device", "http://dbpedia.org/resource/Armed_Forces_Reserve_Medal", "http://dbpedia.org/resource/European\u2013African\u2013Middle_Eastern_Campaign_Medal", "http://dbpedia.org/resource/American_Campaign_Medal", "http://dbpedia.org/resource/Navy_Cross", "http://dbpedia.org/resource/Purple_Heart", "http://dbpedia.org/resource/Order_of_Ouissam_Alaouite", "http://dbpedia.org/resource/Order_of_Independence_(Jordan)", "http://dbpedia.org/resource/Order_of_the_Thistle", "http://dbpedia.org/resource/Spanish_Cross", "http://dbpedia.org/resource/Bronze_Medal_of_Military_Valor", "http://dbpedia.org/resource/Gold_Medal_of_Military_Valour", "http://dbpedia.org/resource/German_Sports_Badge", "http://dbpedia.org/resource/Lifesaving_Medal_(Prussia)", "http://dbpedia.org/resource/Wound_Badge", "http://dbpedia.org/resource/Order_of_the_Z\u00e4hringer_Lion", "http://dbpedia.org/resource/Wiederholungsspange", "http://dbpedia.org/resource/Royal_Victorian_Order", "http://dbpedia.org/resource/Order_of_Wen-Hu", "http://dbpedia.org/resource/Sudetenland_Medal", "http://dbpedia.org/resource/The_Honour_Cross_of_the_World_War_1914/1918", "http://dbpedia.org/resource/Eastern_Medal"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Gymnastics_at_the_2008_Summer_Olympics> <http://dbpedia.org/property/artisticMedalist> ?uri } "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Roh_Tae-woo> <http://dbpedia.org/property/battles> ?uri } "}, "answers": ["http://dbpedia.org/resource/Vietnam_War", "http://dbpedia.org/resource/Korean_War"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ladonia_(micronation)> <http://dbpedia.org/ontology/officialLanguage> ?uri . <http://dbpedia.org/resource/Empire_of_Atlantium> <http://dbpedia.org/property/language> ?uri} "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Irving_Chernev> <http://dbpedia.org/resource/Karen_Grigorian> <http://dbpedia.org/ontology/occupation> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/religion> <http://dbpedia.org/resource/Feminist_stripper> . ?x <http://dbpedia.org/property/country> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/position> <http://dbpedia.org/resource/Defenceman> . ?x <http://dbpedia.org/ontology/team> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Link\u00f6ping_HC", "http://dbpedia.org/resource/Buffalo_Beauts", "http://dbpedia.org/resource/Maine_Black_Bears_women's_ice_hockey", "http://dbpedia.org/resource/R\u00f8dovre_Mighty_Bulls_Q", "http://dbpedia.org/resource/HC_Dinamo_Saint_Petersburg", "http://dbpedia.org/resource/Fischtown_Pinguins", "http://dbpedia.org/resource/Cornell_Big_Red_men's_ice_hockey", "http://dbpedia.org/resource/Fr\u00f6lunda_HC", "http://dbpedia.org/resource/Colorado_Avalanche", "http://dbpedia.org/resource/V\u00e5lerenga_Ishockey", "http://dbpedia.org/resource/S\u00f6dert\u00e4lje_SK", "http://dbpedia.org/resource/SCL_Tigers", "http://dbpedia.org/resource/EC_Oilers_Salzburg", "http://dbpedia.org/resource/EHC_Chur", "http://dbpedia.org/resource/Yunost_Minsk", "http://dbpedia.org/resource/Scorpions_de_Mulhouse", "http://dbpedia.org/resource/Traktor_Chelyabinsk", "http://dbpedia.org/resource/Dizel_Penza", "http://dbpedia.org/resource/HC_Dynamo_Moscow", "http://dbpedia.org/resource/Lokomotiv_Yaroslavl", "http://dbpedia.org/resource/Yuzhny_Ural_Orsk", "http://dbpedia.org/resource/Arystan_Temirtau", "http://dbpedia.org/resource/HC_Nov\u00e9_Z\u00e1mky", "http://dbpedia.org/resource/HDD_Jesenice", "http://dbpedia.org/resource/Minnesota_Wild", "http://dbpedia.org/resource/N\u00fcrnberg_Ice_Tigers", "http://dbpedia.org/resource/Brantford_Blast", "http://dbpedia.org/resource/EC_Red_Bull_Salzburg", "http://dbpedia.org/resource/Columbus_Blue_Jackets", "http://dbpedia.org/resource/SKA_Saint_Petersburg", "http://dbpedia.org/resource/Hannover_Scorpions", "http://dbpedia.org/resource/New_York_Rangers", "http://dbpedia.org/resource/Manchester_Storm_(2015\u2013)", "http://dbpedia.org/resource/Nomad_Nur-Sultan", "http://dbpedia.org/resource/HKM_Zvolen", "http://dbpedia.org/resource/New_Jersey_Devils", "http://dbpedia.org/resource/\u00d6rebro_HK", "http://dbpedia.org/resource/Boston_Bruins", "http://dbpedia.org/resource/HC_\u0160koda_Plze\u0148", "http://dbpedia.org/resource/HK_Poprad", "http://dbpedia.org/resource/V\u00e4sterviks_IK", "http://dbpedia.org/resource/Djurg\u00e5rdens_IF_Hockey", "http://dbpedia.org/resource/HC_Slovan_Bratislava", "http://dbpedia.org/resource/PSG_Berani_Zl\u00edn", "http://dbpedia.org/resource/HC_Bozen\u2013Bolzano", "http://dbpedia.org/resource/HK_2016_Trebi\u0161ov", "http://dbpedia.org/resource/HC_Litv\u00ednov", "http://dbpedia.org/resource/HC_Slavia_Praha", "http://dbpedia.org/resource/HC_V\u00edtkovice_Ridera", "http://dbpedia.org/resource/HC_TWK_Innsbruck", "http://dbpedia.org/resource/Herning_Blue_Fox", "http://dbpedia.org/resource/IF_Bj\u00f6rkl\u00f6ven", "http://dbpedia.org/resource/HC_Sparta_Praha", "http://dbpedia.org/resource/Lule\u00e5_HF", "http://dbpedia.org/resource/Asiago_Hockey_1935", "http://dbpedia.org/resource/SC_Rapperswil-Jona_Lakers", "http://dbpedia.org/resource/Tampa_Bay_Lightning", "http://dbpedia.org/resource/Modo_Hockey_Dam", "http://dbpedia.org/resource/Vegas_Golden_Knights", "http://dbpedia.org/resource/Barys_Nur-Sultan", "http://dbpedia.org/resource/Nashville_Predators", "http://dbpedia.org/resource/Memmingen_Indians", "http://dbpedia.org/resource/Maine_Black_Bears", "http://dbpedia.org/resource/ZSC_Lions", "http://dbpedia.org/resource/Edmonton_Oilers", "http://dbpedia.org/resource/HC_CSKA_Moscow", "http://dbpedia.org/resource/Modo_Hockey", "http://dbpedia.org/resource/Coventry_Blaze", "http://dbpedia.org/resource/Chicago_Wolves", "http://dbpedia.org/resource/SC_Bern", "http://dbpedia.org/resource/HC_Dukla_Jihlava", "http://dbpedia.org/resource/HC_Ocel\u00e1\u0159i_T\u0159inec", "http://dbpedia.org/resource/HC_Energie_Karlovy_Vary", "http://dbpedia.org/resource/Oulun_K\u00e4rp\u00e4t", "http://dbpedia.org/resource/Vlci_\u017dilina", "http://dbpedia.org/resource/Montreal_Canadiens", "http://dbpedia.org/resource/HC_Ambr\u00ec-Piotta", "http://dbpedia.org/resource/Bryn\u00e4s_IF", "http://dbpedia.org/resource/ERC_Ingolstadt", "http://dbpedia.org/resource/Winnipeg_Jets", "http://dbpedia.org/resource/HC_Shakhtyor_Soligorsk", "http://dbpedia.org/resource/Avangard_Omsk", "http://dbpedia.org/resource/EVB_Eagles_S\u00fcdtirol", "http://dbpedia.org/resource/HC_Donbass", "http://dbpedia.org/resource/Metallurg_Magnitogorsk", "http://dbpedia.org/resource/Amur_Khabarovsk", "http://dbpedia.org/resource/Sokol_Krasnoyarsk", "http://dbpedia.org/resource/PSK_Sakhalin", "http://dbpedia.org/resource/Mikkelin_Jukurit", "http://dbpedia.org/resource/R\u00f6gle_BK", "http://dbpedia.org/resource/KalPa", "http://dbpedia.org/resource/HC_\u00c4ss\u00e4t_Pori_Oy", "http://dbpedia.org/resource/Ak_Bars_Kazan", "http://dbpedia.org/resource/Almtuna_IS", "http://dbpedia.org/resource/BIK_Karlskoga", "http://dbpedia.org/resource/Toronto_Maple_Leafs", "http://dbpedia.org/resource/Aalborg_Pirates", "http://dbpedia.org/resource/Arizona_Coyotes", "http://dbpedia.org/resource/Salavat_Yulaev_Ufa", "http://dbpedia.org/resource/EHC_Biel", "http://dbpedia.org/resource/HV71", "http://dbpedia.org/resource/Yermak_Angarsk", "http://dbpedia.org/resource/Lukko", "http://dbpedia.org/resource/Lahti_Pelicans", "http://dbpedia.org/resource/Iisalmen_Peli-Karhut", "http://dbpedia.org/resource/HPK", "http://dbpedia.org/resource/Ilves", "http://dbpedia.org/resource/F\u00e4rjestad_BK", "http://dbpedia.org/resource/HIFK", "http://dbpedia.org/resource/Rovaniemen_Kiekko", "http://dbpedia.org/resource/Seattle_Kraken", "http://dbpedia.org/resource/ESC_Planegg", "http://dbpedia.org/resource/Atlant_Moscow_Oblast", "http://dbpedia.org/resource/Rubin_Tyumen", "http://dbpedia.org/resource/Arlan_Kokshetau", "http://dbpedia.org/resource/HK_Martin", "http://dbpedia.org/resource/Ryt\u00ed\u0159i_Kladno", "http://dbpedia.org/resource/HC_Kometa_Brno", "http://dbpedia.org/resource/Avtomobilist_Yekaterinburg", "http://dbpedia.org/resource/Gornyak_Rudny", "http://dbpedia.org/resource/HC_Dynamo_Pardubice", "http://dbpedia.org/resource/HC_Ko\u0161ice", "http://dbpedia.org/resource/Tappara", "http://dbpedia.org/resource/HC_Astana", "http://dbpedia.org/resource/Gyergy\u00f3i_HK", "http://dbpedia.org/resource/HSC_Cs\u00edkszereda", "http://dbpedia.org/resource/HC_Kunlun_Red_Star", "http://dbpedia.org/resource/Yertis_Pavlodar", "http://dbpedia.org/resource/Stavanger_Oilers", "http://dbpedia.org/resource/Straubing_Tigers", "http://dbpedia.org/resource/Kassel_Huskies", "http://dbpedia.org/resource/San_Jose_Barracuda", "http://dbpedia.org/resource/ESV_Kaufbeuren", "http://dbpedia.org/resource/Ottawa_Senators", "http://dbpedia.org/resource/Cleveland_Monsters", "http://dbpedia.org/resource/EHC_Basel", "http://dbpedia.org/resource/HC_Spartak_Moscow", "http://dbpedia.org/resource/HC_Dinamo_Minsk", "http://dbpedia.org/resource/Anaheim_Ducks", "http://dbpedia.org/resource/Washington_Capitals", "http://dbpedia.org/resource/HK_Dukla_Michalovce", "http://dbpedia.org/resource/Calgary_Inferno", "http://dbpedia.org/resource/AIK_Hockey_Dam", "http://dbpedia.org/resource/DK_Peregrine", "http://dbpedia.org/resource/Detroit_Red_Wings", "http://dbpedia.org/resource/Dinamo_Riga", "http://dbpedia.org/resource/HC_TPS", "http://dbpedia.org/resource/Porin_\u00c4ss\u00e4t_(men's_ice_hockey)", "http://dbpedia.org/resource/Dallas_Stars", "http://dbpedia.org/resource/Anyang_Halla", "http://dbpedia.org/resource/Schwenninger_Wild_Wings", "http://dbpedia.org/resource/Metallurg_Novokuznetsk", "http://dbpedia.org/resource/HC_Lada_Togliatti", "http://dbpedia.org/resource/Los_Angeles_Kings", "http://dbpedia.org/resource/HC_Yugra", "http://dbpedia.org/resource/New_York_Islanders", "http://dbpedia.org/resource/HC_Vityaz", "http://dbpedia.org/resource/MAC_Budapest_(women)", "http://dbpedia.org/resource/Chamonix_HC", "http://dbpedia.org/resource/HC_Agidel_Ufa", "http://dbpedia.org/resource/Torpedo_Nizhny_Novgorod", "http://dbpedia.org/resource/Boston_College_Eagles_women's_ice_hockey", "http://dbpedia.org/resource/EV_Lindau_Islanders", "http://dbpedia.org/resource/Orli_Znojmo", "http://dbpedia.org/resource/Bracknell_Queen_Bees", "http://dbpedia.org/resource/San_Jose_Sharks", "http://dbpedia.org/resource/HC_Almaty", "http://dbpedia.org/resource/KooKoo_(ice_hockey_club)", "http://dbpedia.org/resource/Molot-Prikamye_Perm", "http://dbpedia.org/resource/EC_VSV", "http://dbpedia.org/resource/Skellefte\u00e5_AIK", "http://dbpedia.org/resource/HIFK_Naiset", "http://dbpedia.org/resource/Duna\u00fajv\u00e1rosi_Ac\u00e9lbik\u00e1k", "http://dbpedia.org/resource/Link\u00f6ping_HC_Dam", "http://dbpedia.org/resource/KHL_Medve\u0161\u010dak_Zagreb", "http://dbpedia.org/resource/Guildford_Flames", "http://dbpedia.org/resource/Feh\u00e9rv\u00e1r_AV19", "http://dbpedia.org/resource/DVTK_Jegesmedv\u00e9k", "http://dbpedia.org/resource/Deggendorf_Fire", "http://dbpedia.org/resource/Eisb\u00e4ren_Berlin", "http://dbpedia.org/resource/D\u00fcsseldorfer_EG", "http://dbpedia.org/resource/KMH_Budapest_(women)", "http://dbpedia.org/resource/Fort_Wayne_Komets", "http://dbpedia.org/resource/HC_21_Pre\u0161ov", "http://dbpedia.org/resource/AIK_IF", "http://dbpedia.org/resource/Seibu_Princess_Rabbits", "http://dbpedia.org/resource/G\u00f6teborg_HC", "http://dbpedia.org/resource/Vlada_Boleslav", "http://dbpedia.org/resource/Sheffield_Steelers", "http://dbpedia.org/resource/Leeds_Knights", "http://dbpedia.org/resource/Bryn\u00e4s_IF_Dam", "http://dbpedia.org/resource/MHk_32_Liptovsk\u00fd_Mikul\u00e1\u0161", "http://dbpedia.org/resource/JYP_Jyv\u00e4skyl\u00e4", "http://dbpedia.org/resource/Gen\u00e8ve-Servette_HC", "http://dbpedia.org/resource/Seattle_Thunderbirds", "http://dbpedia.org/resource/HC_Lugano", "http://dbpedia.org/resource/KalPa_Naiset", "http://dbpedia.org/resource/HC_Bob\u0159i_Vala\u0161sk\u00e9_Mezi\u0159\u00ed\u010d\u00ed", "http://dbpedia.org/resource/Yale_Bulldogs_women's_ice_hockey", "http://dbpedia.org/resource/MAC_Budapest", "http://dbpedia.org/resource/KISE", "http://dbpedia.org/resource/Minnesota_Whitecaps", "http://dbpedia.org/resource/Worcester_Blades", "http://dbpedia.org/resource/ETC_Crimmitschau", "http://dbpedia.org/resource/Pittsburgh_Penguins", "http://dbpedia.org/resource/Kiekko-Espoo_Naiset", "http://dbpedia.org/resource/Br\u00fbleurs_de_Loups", "http://dbpedia.org/resource/Adler_Mannheim", "http://dbpedia.org/resource/Carolina_Hurricanes", "http://dbpedia.org/resource/Boston_Pride", "http://dbpedia.org/resource/SKIF_Nizhny_Novgorod", "http://dbpedia.org/resource/Shenzhen_KRS_Vanke_Rays", "http://dbpedia.org/resource/Metropolitan_Riveters", "http://dbpedia.org/resource/Lule\u00e5_HF/MSSK", "http://dbpedia.org/resource/Minnesota_Blue_J's", "http://dbpedia.org/resource/HC_Tornado", "http://dbpedia.org/resource/Ferencv\u00e1rosi_TC_(ice_hockey)", "http://dbpedia.org/resource/TUTO_Hockey", "http://dbpedia.org/resource/Florida_Panthers", "http://dbpedia.org/resource/IK_Oskarshamn", "http://dbpedia.org/resource/Leksands_IF", "http://dbpedia.org/resource/Malm\u00f6_Redhawks", "http://dbpedia.org/resource/Free_agent", "http://dbpedia.org/resource/Toyota_Cygnus", "http://dbpedia.org/resource/Vaasan_Sport", "http://dbpedia.org/resource/HC_Pustertal_W\u00f6lfe", "http://dbpedia.org/resource/Grizzlys_Wolfsburg", "http://dbpedia.org/resource/Nice_hockey_C\u00f4te_d'Azur", "http://dbpedia.org/resource/Toronto_Six", "http://dbpedia.org/resource/St._Lawrence_Saints_women's_ice_hockey", "http://dbpedia.org/resource/Brampton_Beast", "http://dbpedia.org/resource/Storhamar_Ishockey", "http://dbpedia.org/resource/BK_Mlad\u00e1_Boleslav", "http://dbpedia.org/resource/Lacombe_Generals", "http://dbpedia.org/resource/Diables_Rouges_de_Brian\u00e7on", "http://dbpedia.org/resource/Augsburger_Panther", "http://dbpedia.org/resource/Vienna_Capitals", "http://dbpedia.org/resource/St._Louis_Blues", "http://dbpedia.org/resource/Frisk_Asker_Ishockey", "http://dbpedia.org/resource/GKS_Tychy_(ice_hockey)", "http://dbpedia.org/resource/CS_Progym_Gheorgheni", "http://dbpedia.org/resource/Graz_99ers", "http://dbpedia.org/resource/Lausanne_HC", "http://dbpedia.org/resource/Nottingham_Panthers", "http://dbpedia.org/resource/GKS_Hockey", "http://dbpedia.org/resource/SaiPa", "http://dbpedia.org/resource/HK_Nitra", "http://dbpedia.org/resource/EC_Peiting", "http://dbpedia.org/resource/IHC_P\u00edsek", "http://dbpedia.org/resource/HC_B\u00edl\u00ed_Tyg\u0159i_Liberec", "http://dbpedia.org/resource/EC_KAC", "http://dbpedia.org/resource/GKS_Katowice_(ice_hockey)", "http://dbpedia.org/resource/HC_Lev_Praha", "http://dbpedia.org/resource/HC_P\u0159\u00edbram", "http://dbpedia.org/resource/Leksands_IF_Dam", "http://dbpedia.org/resource/EHC_Olten", "http://dbpedia.org/resource/Vancouver_Canucks", "http://dbpedia.org/resource/Cardiff_Devils", "http://dbpedia.org/resource/V\u00e4xj\u00f6_Lakers", "http://dbpedia.org/resource/Daemyung_Killer_Whales", "http://dbpedia.org/resource/Minnesota_Golden_Gophers_men's_ice_hockey", "http://dbpedia.org/resource/Buffalo_Sabres", "http://dbpedia.org/resource/Timr\u00e5_IK", "http://dbpedia.org/resource/Motor_\u010cesk\u00e9_Bud\u011bjovice", "http://dbpedia.org/resource/SK_Trha\u010di_Kada\u0148", "http://dbpedia.org/resource/Trenton_Titans", "http://dbpedia.org/resource/EV_Landshut", "http://dbpedia.org/resource/HC_Davos", "http://dbpedia.org/resource/ZSC_Lions_Frauen", "http://dbpedia.org/resource/M\u00f6rrums_GoIS_IK", "http://dbpedia.org/resource/Esbjerg_Energy", "http://dbpedia.org/resource/Imatran_Ketter\u00e4", "http://dbpedia.org/resource/Prince_George_Cougars", "http://dbpedia.org/resource/HC_2001_Kladno", "http://dbpedia.org/resource/Red_Eagles_Hokkaido", "http://dbpedia.org/resource/Wisconsin_Badgers_women's_ice_hockey", "http://dbpedia.org/resource/Vaughan_Flames", "http://dbpedia.org/resource/Philadelphia_Flyers", "http://dbpedia.org/resource/HC_Valpellice", "http://dbpedia.org/resource/Ravensburg_Towerstars", "http://dbpedia.org/resource/Suwon_City_Hall_women's_ice_hockey_team", "http://dbpedia.org/resource/Dragons_de_Rouen", "http://dbpedia.org/resource/HK_Spi\u0161sk\u00e1_Nov\u00e1_Ves", "http://dbpedia.org/resource/Sparta_Warriors", "http://dbpedia.org/resource/Mora_IK", "http://dbpedia.org/resource/HC_'05_Bansk\u00e1_Bystrica", "http://dbpedia.org/resource/HC_Neftekhimik_Nizhnekamsk", "http://dbpedia.org/resource/HC_19_Humenn\u00e9", "http://dbpedia.org/resource/Boxers_de_Bordeaux", "http://dbpedia.org/resource/Cz:VHK_ROBE_Vset\u00edn", "http://dbpedia.org/resource/Espoo_Blues", "http://dbpedia.org/resource/Steinbach_Black_Wings_Linz", "http://dbpedia.org/resource/TPS_Naiset", "http://dbpedia.org/resource/Connecticut_Whale_(PHF)", "http://dbpedia.org/resource/EHC_Winterthur", "http://dbpedia.org/resource/Toronto_Furies", "http://dbpedia.org/resource/Dresdner_Eisl\u00f6wen", "http://dbpedia.org/resource/Herlev_Eagles", "http://dbpedia.org/resource/SC_Bietigheim_Steelers", "http://dbpedia.org/resource/Calgary_Flames", "http://dbpedia.org/resource/Toronto_Marlies", "http://dbpedia.org/resource/Prince_Albert_Raiders", "http://dbpedia.org/resource/Belfast_Giants", "http://dbpedia.org/resource/Admiral_Vladivostok", "http://dbpedia.org/resource/New_Hampshire_Wildcats_women's_ice_hockey", "http://dbpedia.org/resource/Chicago_Blackhawks", "http://dbpedia.org/resource/K\u00f6lner_Haie", "http://dbpedia.org/resource/R\u00f8dovre_Mighty_Bulls", "http://dbpedia.org/resource/Narvik_IK", "http://dbpedia.org/resource/HC_Vita_H\u00e4sten", "http://dbpedia.org/resource/Anglet_Hormadi_\u00c9lite", "http://dbpedia.org/resource/HC_Neman_Grodno", "http://dbpedia.org/resource/HIFK_Hockey", "http://dbpedia.org/resource/Tingsryds_AIF", "http://dbpedia.org/resource/Djurg\u00e5rdens_IF_Hockey_(women)", "http://dbpedia.org/resource/Malm\u00f6_Redhawks_Dam", "http://dbpedia.org/resource/Providence_Bruins", "http://dbpedia.org/resource/FK_Hajduk_Beograd", "http://dbpedia.org/resource/Serbian_White_Eagles_FC", "http://dbpedia.org/resource/FK_Vr\u0161ac", "http://dbpedia.org/resource/FC_Arda_Kardzhali", "http://dbpedia.org/resource/FK_BSK_Batajnica", "http://dbpedia.org/resource/FK_Be\u017eanija", "http://dbpedia.org/resource/FK_Brodarac", "http://dbpedia.org/resource/FK_Budu\u0107nost_Dobanovci", "http://dbpedia.org/resource/FK_Gorno_Lisi\u010de", "http://dbpedia.org/resource/FK_Rad", "http://dbpedia.org/resource/FK_Radni\u010dki_Beograd", "http://dbpedia.org/resource/FK_Smederevo_1924", "http://dbpedia.org/resource/FK_Zvezdara", "http://dbpedia.org/resource/POFC_Botev_Vratsa", "http://dbpedia.org/resource/Kiekko-Espoo", "http://dbpedia.org/resource/EV_Bomo_Thun", "http://dbpedia.org/resource/EC_Bad_T\u00f6lz", "http://dbpedia.org/resource/UMass_Minutemen_ice_hockey", "http://dbpedia.org/resource/Kongsvinger_Knights", "http://dbpedia.org/resource/HC_Thurgau", "http://dbpedia.org/resource/Iserlohn_Roosters", "http://dbpedia.org/resource/Severstal_Cherepovets", "http://dbpedia.org/resource/Belye_Medveditsy", "http://dbpedia.org/resource/DEAC_(ice_hockey)", "http://dbpedia.org/resource/KHL_Sisak", "http://dbpedia.org/resource/Beibarys_Atyrau", "http://dbpedia.org/resource/Lokomotiv_Orsha", "http://dbpedia.org/resource/Wilkes-Barre/Scranton_Penguins", "http://dbpedia.org/resource/Tri-City_Storm", "http://dbpedia.org/resource/HC_Fassa_Falcons", "http://dbpedia.org/resource/SC_Reinach_Damen", "http://dbpedia.org/resource/HK_Dukla_Tren\u010d\u00edn", "http://dbpedia.org/resource/Florida_Everblades", "http://dbpedia.org/resource/HC_Sibir_Novosibirsk", "http://dbpedia.org/resource/Rapaces_de_Gap", "http://dbpedia.org/resource/Toledo_Walleye", "http://dbpedia.org/resource/Dornbirn_Bulldogs", "http://dbpedia.org/resource/Rockford_IceHogs", "http://dbpedia.org/resource/Str\u00f6msbro_IF", "http://dbpedia.org/resource/Sheffield_Steeldogs", "http://dbpedia.org/resource/1._EV_Weiden", "http://dbpedia.org/resource/North_Bay_Battalion", "http://dbpedia.org/resource/SK_Hor\u00e1ck\u00e1_Slavia_T\u0159eb\u00ed\u010d", "http://dbpedia.org/resource/Ontario_Reign", "http://dbpedia.org/resource/UConn_Huskies_women's_ice_hockey", "http://dbpedia.org/resource/Vancouver_Giants", "http://dbpedia.org/resource/Providence_Friars_women's_ice_hockey", "http://dbpedia.org/resource/EV_Zug", "http://dbpedia.org/resource/Frederikshavn_White_Hawks", "http://dbpedia.org/resource/S\u00f8nderjyskE_Ishockey", "http://dbpedia.org/resource/Orlando_Solar_Bears", "http://dbpedia.org/resource/Calgary_Oval_X-Treme", "http://dbpedia.org/resource/Winnipeg_Ice", "http://dbpedia.org/resource/SC_Langenthal", "http://dbpedia.org/resource/Markham_Thunder", "http://dbpedia.org/resource/Les_Canadiennes_de_Montr\u00e9al", "http://dbpedia.org/resource/University_of_Ottawa", "http://dbpedia.org/resource/Pir\u00e1ti_Chomutov", "http://dbpedia.org/resource/Merrimack_Warriors_women's_ice_hockey", "http://dbpedia.org/resource/Princeton_Tigers_women's_ice_hockey", "http://dbpedia.org/resource/Saint-Georges_Cool_FM_103.5", "http://dbpedia.org/resource/Hamilton_Steelhawks_(senior)", "http://dbpedia.org/resource/Utica_Comets", "http://dbpedia.org/resource/Rungsted_Ishockey_Klub", "http://dbpedia.org/resource/Saint_Pierre_and_Miquelon_national_football_team", "http://dbpedia.org/resource/A.S._Saint_Pierraise", "http://dbpedia.org/resource/Hudiksvalls_HC", "http://dbpedia.org/resource/Bossier-Shreveport_Mudbugs", "http://dbpedia.org/resource/AaB_Ishockey_Damer", "http://dbpedia.org/resource/Vermont_Catamounts_women's_ice_hockey", "http://dbpedia.org/resource/Wisconsin_Badgers_men's_ice_hockey", "http://dbpedia.org/resource/Corsaires_de_Dunkerque", "http://dbpedia.org/resource/Harvard_Crimson_men's_ice_hockey", "http://dbpedia.org/resource/RPI_Engineers_women's_ice_hockey", "http://dbpedia.org/resource/HC_Red_Ice", "http://dbpedia.org/resource/Mountfield_HK", "http://dbpedia.org/resource/Nikk\u014d_Ice_Bucks", "http://dbpedia.org/resource/Mitsuboshi_Daito_Peregrine", "http://dbpedia.org/resource/Mikage_Gretz", "http://dbpedia.org/resource/Greenville_Swamp_Rabbits", "http://dbpedia.org/resource/HC_Sarov", "http://dbpedia.org/resource/HC_Ryazan", "http://dbpedia.org/resource/Cracovia_(ice_hockey)", "http://dbpedia.org/resource/HDD_Olimpija_Ljubljana", "http://dbpedia.org/resource/Manitoba_Moose", "http://dbpedia.org/resource/HC_Stadion_Litom\u011b\u0159ice", "http://dbpedia.org/resource/HC_Olomouc", "http://dbpedia.org/resource/HC_Sochi", "http://dbpedia.org/resource/Laval_Predators", "http://dbpedia.org/resource/Milton_Keynes_Lightning", "http://dbpedia.org/resource/Minnesota_State_Mavericks_women's_ice_hockey", "http://dbpedia.org/resource/Dinamo-Neva_Saint_Petersburg", "http://dbpedia.org/resource/Kamloops_Blazers", "http://dbpedia.org/resource/Hvidovre_IK_Kvinder", "http://dbpedia.org/resource/Minnesota_Golden_Gophers_women's_ice_hockey", "http://dbpedia.org/resource/V\u00e4ster\u00e5s_IK", "http://dbpedia.org/resource/Ducs_d'Angers", "http://dbpedia.org/resource/Tohoku_Free_Blades", "http://dbpedia.org/resource/Jokerit", "http://dbpedia.org/resource/Brest_Albatros_Hockey", "http://dbpedia.org/resource/St.Thomas_University,_Saint_Paul-MN_-_USA", "http://dbpedia.org/resource/Oulunkyl\u00e4n_Kiekko-Kerho", "http://dbpedia.org/resource/Saginaw_Spirit", "http://dbpedia.org/resource/Buran_Voronezh", "http://dbpedia.org/resource/Peliitat_Heinola", "http://dbpedia.org/resource/\u00dajpesti_TE_(ice_hockey)", "http://dbpedia.org/resource/MHK_Dubnica_nad_V\u00e1hom", "http://dbpedia.org/resource/Gr\u00e4storps_IK", "http://dbpedia.org/resource/HC_Banik_Sokolov", "http://dbpedia.org/resource/HC_Fribourg-Gott\u00e9ron", "http://dbpedia.org/resource/Bisons_de_Neuilly-sur-Marne", "http://dbpedia.org/resource/HC_Ajoie", "http://dbpedia.org/resource/Saryarka_Karagandy", "http://dbpedia.org/resource/BC_Samara", "http://dbpedia.org/resource/Biryusa_Krasnoyarsk", "http://dbpedia.org/resource/HV71_Dam", "http://dbpedia.org/resource/L\u00f8renskog_IK", "http://dbpedia.org/resource/EHC_Bregenzerwald", "http://dbpedia.org/resource/Bakersfield_Condors_(1998\u20132015)", "http://dbpedia.org/resource/Stoney_Creek_Generals", "http://dbpedia.org/resource/HPK_Kiekkonaiset", "http://dbpedia.org/resource/JKH_GKS_Jastrz\u0119bie", "http://dbpedia.org/resource/HK_M\u0160K_Indian_\u017diar_nad_Hronom", "http://dbpedia.org/resource/United_States_national_team", "http://dbpedia.org/resource/HC_T\u00e1bor", "http://dbpedia.org/resource/Daishin_Hockey", "http://dbpedia.org/resource/HC_Topo\u013e\u010dany", "http://dbpedia.org/resource/Colgate_Raiders_women's_ice_hockey", "http://dbpedia.org/resource/London_Knights", "http://dbpedia.org/resource/Meg\u00e8ve_HC", "http://dbpedia.org/resource/Michigan_Wolverines_men's_ice_hockey", "http://dbpedia.org/resource/Chevaliers_du_lac_d'Annecy", "http://dbpedia.org/resource/Mississauga_Steelheads", "http://dbpedia.org/resource/KeuPa_HT", "http://dbpedia.org/resource/Aspl\u00f6ven_HC", "http://dbpedia.org/resource/Dundas_Real_McCoys", "http://dbpedia.org/resource/Invicta_Dymamos", "http://dbpedia.org/resource/Lausitzer_F\u00fcchse", "http://dbpedia.org/resource/HT_Thurgau_Ladies", "http://dbpedia.org/resource/Starbulls_Rosenheim", "http://dbpedia.org/resource/SC_Riessersee", "http://dbpedia.org/resource/L\u00f6wen_Frankfurt", "http://dbpedia.org/resource/EHC_Red_Bull_M\u00fcnchen", "http://dbpedia.org/resource/Taesongsan_Sports_Club", "http://dbpedia.org/resource/HC_Tambov", "http://dbpedia.org/resource/HK_Riga", "http://dbpedia.org/resource/Krefeld_Pinguine", "http://dbpedia.org/resource/HK_Kurbads", "http://dbpedia.org/resource/Odense_Bulldogs", "http://dbpedia.org/resource/HC_Sion", "http://dbpedia.org/resource/HC_07_Detva", "http://dbpedia.org/resource/Koovee_(ice_hockey)", "http://dbpedia.org/resource/Glasgow_Clan", "http://dbpedia.org/resource/Brock_Badgers", "http://dbpedia.org/resource/HC_Slovan_\u00daste\u010dt\u00ed_Lvi", "http://dbpedia.org/resource/Varberg_Vipers", "http://dbpedia.org/resource/HC_RT_Torax_Poruba", "http://dbpedia.org/resource/Humo_Tashkent", "http://dbpedia.org/resource/Bor\u00e5s_HC", "http://dbpedia.org/resource/Cornell_Big_Red_women's_ice_hockey", "http://dbpedia.org/resource/Stony_Plain_Eagles", "http://dbpedia.org/resource/HK_Partizan", "http://dbpedia.org/resource/VEU_Feldkirch", "http://dbpedia.org/resource/Mitsuboshi_Daito_Perigrine", "http://dbpedia.org/resource/Sokil_Kyiv", "http://dbpedia.org/resource/Quinnipiac_Bobcats_men's_ice_hockey"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/magazine> <http://dbpedia.org/resource/Jump_Square> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Work>}"}, "answers": ["http://dbpedia.org/resource/Death_Note", "http://dbpedia.org/resource/Gate_7", "http://dbpedia.org/resource/Genkaku_Picasso", "http://dbpedia.org/resource/Taisho_Otome_Fairy_Tale", "http://dbpedia.org/resource/Dark_Gathering", "http://dbpedia.org/resource/Luck_Stealer", "http://dbpedia.org/resource/Anohana", "http://dbpedia.org/resource/Embalming_(manga)", "http://dbpedia.org/resource/Good_Luck_Girl!", "http://dbpedia.org/resource/Platinum_End", "http://dbpedia.org/resource/Ultimo_(manga)", "http://dbpedia.org/resource/Kemono_Jihen", "http://dbpedia.org/resource/Mayoi_Neko_Overrun!", "http://dbpedia.org/resource/The_Prince_of_Tennis", "http://dbpedia.org/resource/The_Prince_of_Tennis_II", "http://dbpedia.org/resource/Senyu", "http://dbpedia.org/resource/Seraph_of_the_End", "http://dbpedia.org/resource/Modern_Magic_Made_Simple", "http://dbpedia.org/resource/Moriarty_the_Patriot", "http://dbpedia.org/resource/M\u00e4rchen_M\u00e4dchen", "http://dbpedia.org/resource/Twin_Star_Exorcists", "http://dbpedia.org/resource/Super_HxEros", "http://dbpedia.org/resource/Ky\u016bkyoku!!_Hentai_Kamen", "http://dbpedia.org/resource/D.Gray-man", "http://dbpedia.org/resource/Tista_(manga)", "http://dbpedia.org/resource/To_Love_Ru", "http://dbpedia.org/resource/Juni_Taisen:_Zodiac_War", "http://dbpedia.org/resource/Shiki_(novel)", "http://dbpedia.org/resource/Show-ha_Shoten!", "http://dbpedia.org/resource/Blue_Exorcist", "http://dbpedia.org/resource/Kono_Oto_Tomare!_Sounds_of_Life", "http://dbpedia.org/resource/Kure-nai", "http://dbpedia.org/resource/Rurouni_Kenshin:_Master_of_Flame", "http://dbpedia.org/resource/Rurouni_Kenshin:_Restoration", "http://dbpedia.org/resource/Rurouni_Kenshin:_The_Hokkaido_Arc", "http://dbpedia.org/resource/Tanken_Driland"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/order> <http://dbpedia.org/resource/Bacillales> } "}, "answers": ["http://dbpedia.org/resource/Aeribacillus", "http://dbpedia.org/resource/Aquibacillus", "http://dbpedia.org/resource/Aquibacillus_albus", "http://dbpedia.org/resource/Aquibacillus_halophilus", "http://dbpedia.org/resource/Aquibacillus_salifodinae", "http://dbpedia.org/resource/Aquisalibacillus", "http://dbpedia.org/resource/Caryophanaceae", "http://dbpedia.org/resource/Compostibacillus", "http://dbpedia.org/resource/Desmospora", "http://dbpedia.org/resource/Desmospora_activa", "http://dbpedia.org/resource/Desmospora_profundinema", "http://dbpedia.org/resource/Domibacillus", "http://dbpedia.org/resource/Domibacillus_antri", "http://dbpedia.org/resource/Domibacillus_enclensis", "http://dbpedia.org/resource/Domibacillus_indicus", "http://dbpedia.org/resource/Domibacillus_iocasae", "http://dbpedia.org/resource/Domibacillus_robiginosus", "http://dbpedia.org/resource/Domibacillus_tundrae", "http://dbpedia.org/resource/Fictibacillus", "http://dbpedia.org/resource/Fictibacillus_arsenicus", "http://dbpedia.org/resource/Fictibacillus_barbaricus", "http://dbpedia.org/resource/Fictibacillus_enclensis", "http://dbpedia.org/resource/Fictibacillus_gelatini", "http://dbpedia.org/resource/Fictibacillus_halophilus", "http://dbpedia.org/resource/Fictibacillus_macauensis", "http://dbpedia.org/resource/Fictibacillus_nanhaiensis", "http://dbpedia.org/resource/Fictibacillus_phosphorivorans", "http://dbpedia.org/resource/Fictibacillus_rigui", "http://dbpedia.org/resource/Fictibacillus_solisalsi", "http://dbpedia.org/resource/Filobacillus", "http://dbpedia.org/resource/Filobacillus_milensis", "http://dbpedia.org/resource/Milky_spore", "http://dbpedia.org/resource/Gemella", "http://dbpedia.org/resource/Gemella_morbillorum", "http://dbpedia.org/resource/Gemella_palaticanis", "http://dbpedia.org/resource/Gemella_sanguinis", "http://dbpedia.org/resource/Geobacillus", "http://dbpedia.org/resource/Geobacillus_jurassicus", "http://dbpedia.org/resource/Geobacillus_stearothermophilus", "http://dbpedia.org/resource/Geobacillus_thermoglucosidasius", "http://dbpedia.org/resource/Geobacillus_toebii", "http://dbpedia.org/resource/Macrococcus_lamae", "http://dbpedia.org/resource/Hydrogenibacillus", "http://dbpedia.org/resource/Hydrogenibacillus_schlegelii", "http://dbpedia.org/resource/Jeotgalicoccus_marinus", "http://dbpedia.org/resource/Jeotgalicoccus_pinnipedialis", "http://dbpedia.org/resource/Jeotgalibacillus", "http://dbpedia.org/resource/Jeotgalibacillus_alkaliphilus", "http://dbpedia.org/resource/Jeotgalibacillus_campisalis", "http://dbpedia.org/resource/Jeotgalibacillus_malaysiensis", "http://dbpedia.org/resource/Jeotgalibacillus_marinus", "http://dbpedia.org/resource/Jeotgalibacillus_salarius", "http://dbpedia.org/resource/Jeotgalibacillus_soli", "http://dbpedia.org/resource/Jeotgalicoccus", "http://dbpedia.org/resource/Jeotgalicoccus_aerolatus", "http://dbpedia.org/resource/Jeotgalicoccus_coquinae", "http://dbpedia.org/resource/Jeotgalicoccus_halophilus", "http://dbpedia.org/resource/Jeotgalicoccus_schoeneichii", "http://dbpedia.org/resource/Oceanobacillus_kimchii", "http://dbpedia.org/resource/Kurthia", "http://dbpedia.org/resource/Kurthia_huakuii", "http://dbpedia.org/resource/Kurthia_massiliensis", "http://dbpedia.org/resource/Kurthia_populi", "http://dbpedia.org/resource/Kurthia_senegalensis", "http://dbpedia.org/resource/Kyrpidia", "http://dbpedia.org/resource/Kyrpidia_spormannii", "http://dbpedia.org/resource/Kyrpidia_tusciae", "http://dbpedia.org/resource/Nosocomiicoccus", "http://dbpedia.org/resource/Paenibacillaceae", "http://dbpedia.org/resource/Lentibacillus", "http://dbpedia.org/resource/Lentibacillus_alimentarius", "http://dbpedia.org/resource/Lentibacillus_amyloliquefaciens", "http://dbpedia.org/resource/Lentibacillus_cibarius", "http://dbpedia.org/resource/Lentibacillus_garicola", "http://dbpedia.org/resource/Lentibacillus_halodurans", "http://dbpedia.org/resource/Lentibacillus_halophilus", "http://dbpedia.org/resource/Lentibacillus_jeotgali", "http://dbpedia.org/resource/Lentibacillus_juripiscarius", "http://dbpedia.org/resource/Lentibacillus_kapialis", "http://dbpedia.org/resource/Lentibacillus_lacisalsi", "http://dbpedia.org/resource/Lentibacillus_lipolyticus", "http://dbpedia.org/resource/Lentibacillus_panjinensis", "http://dbpedia.org/resource/Lentibacillus_persicus", "http://dbpedia.org/resource/Lentibacillus_salarius", "http://dbpedia.org/resource/Lentibacillus_salicampi", "http://dbpedia.org/resource/Lentibacillus_salinarum", "http://dbpedia.org/resource/Lentibacillus_saliphilus", "http://dbpedia.org/resource/Lentibacillus_salis", "http://dbpedia.org/resource/Lentibacillus_sediminis", "http://dbpedia.org/resource/Paenisporosarcina_quisquiliarum", "http://dbpedia.org/resource/Planifilum_composti", "http://dbpedia.org/resource/Planifilum_fimeticola", "http://dbpedia.org/resource/Planifilum_fulgidum", "http://dbpedia.org/resource/Planifilum_yunnanense", "http://dbpedia.org/resource/Planomicrobium_alkanoclasticum", "http://dbpedia.org/resource/Polycladomyces_abyssicola", "http://dbpedia.org/resource/Pontibacillus_salipaludis", "http://dbpedia.org/resource/Thalassobacillus", "http://dbpedia.org/resource/Thalassobacillus_devorans", "http://dbpedia.org/resource/Thalassobacillus_hwangdonensis", "http://dbpedia.org/resource/Thalassobacillus_pellis", "http://dbpedia.org/resource/Parageobacillus", "http://dbpedia.org/resource/Parageobacillus_caldoxylosilyticus", "http://dbpedia.org/resource/Paraliobacillus", "http://dbpedia.org/resource/Piscibacillus", "http://dbpedia.org/resource/Piscibacillus_halophilus", "http://dbpedia.org/resource/Piscibacillus_salipiscarius", "http://dbpedia.org/resource/Planifilum", "http://dbpedia.org/resource/Planomicrobium_chinense", "http://dbpedia.org/resource/Planomicrobium_flavidum", "http://dbpedia.org/resource/Polycladomyces", "http://dbpedia.org/resource/Polygonibacillus", "http://dbpedia.org/resource/Pontibacillus", "http://dbpedia.org/resource/Pontibacillus_chungwhensis", "http://dbpedia.org/resource/Pontibacillus_halophilus", "http://dbpedia.org/resource/Pontibacillus_litoralis", "http://dbpedia.org/resource/Pontibacillus_marinus", "http://dbpedia.org/resource/Pontibacillus_salicampi", "http://dbpedia.org/resource/Pontibacillus_yanchengensis", "http://dbpedia.org/resource/Saccharibacillus", "http://dbpedia.org/resource/Saccharibacillus_kuerlensis", "http://dbpedia.org/resource/Saccharibacillus_sacchari", "http://dbpedia.org/resource/Saccharococcus", "http://dbpedia.org/resource/Aidingibacillus", "http://dbpedia.org/resource/Paenibacillus_vulneris", "http://dbpedia.org/resource/Melghiribacillus", "http://dbpedia.org/resource/Thermicanus_aegyptius", "http://dbpedia.org/resource/Thermoflavimicrobium_dichotomicum", "http://dbpedia.org/resource/Paucisalibacillus", "http://dbpedia.org/resource/Paucisalibacillus_algeriensis", "http://dbpedia.org/resource/Cytobacillus", "http://dbpedia.org/resource/Ferdinandcohnia", "http://dbpedia.org/resource/Fermentibacillus", "http://dbpedia.org/resource/Pasteuria", "http://dbpedia.org/resource/Salinicoccus_jeotgali", "http://dbpedia.org/resource/Virgibacillus_chiguensis", "http://dbpedia.org/resource/Virgibacillus_salexigens", "http://dbpedia.org/resource/Macrococcus_canis", "http://dbpedia.org/resource/Virgibacillus_soli", "http://dbpedia.org/resource/Laceyella", "http://dbpedia.org/resource/Laceyella_putida", "http://dbpedia.org/resource/Laceyella_sacchari", "http://dbpedia.org/resource/Laceyella_sediminis", "http://dbpedia.org/resource/Laceyella_tengchongensis", "http://dbpedia.org/resource/Marininema", "http://dbpedia.org/resource/Marinococcus_halophilus", "http://dbpedia.org/resource/Marinococcus_halotolerans", "http://dbpedia.org/resource/Marinococcus_luteus", "http://dbpedia.org/resource/Marinococcus_salis", "http://dbpedia.org/resource/Marinococcus_tarijensis", "http://dbpedia.org/resource/Virgibacillus_byunsanensis", "http://dbpedia.org/resource/Virgibacillus_campisalis", "http://dbpedia.org/resource/Virgibacillus_dokdonensis", "http://dbpedia.org/resource/Virgibacillus_flavescens", "http://dbpedia.org/resource/Virgibacillus_halophilus", "http://dbpedia.org/resource/Virgibacillus_halotolerans", "http://dbpedia.org/resource/Virgibacillus_indicus", "http://dbpedia.org/resource/Virgibacillus_kekensis", "http://dbpedia.org/resource/Virgibacillus_litoralis", "http://dbpedia.org/resource/Virgibacillus_marismortui", "http://dbpedia.org/resource/Virgibacillus_natechei", "http://dbpedia.org/resource/Virgibacillus_ndiopensis", "http://dbpedia.org/resource/Virgibacillus_oceani", "http://dbpedia.org/resource/Virgibacillus_olivae", "http://dbpedia.org/resource/Virgibacillus_phasianinus", "http://dbpedia.org/resource/Virgibacillus_profundi", "http://dbpedia.org/resource/Virgibacillus_salarius", "http://dbpedia.org/resource/Virgibacillus_salinus", "http://dbpedia.org/resource/Virgibacillus_sediminis", "http://dbpedia.org/resource/Virgibacillus_subterraneus", "http://dbpedia.org/resource/Virgibacillus_xinjiangensis", "http://dbpedia.org/resource/Bacillus_aminovorans", "http://dbpedia.org/resource/Bacillus_boroniphilus", "http://dbpedia.org/resource/Bacillus_firmus", "http://dbpedia.org/resource/Bacillus_flexus", "http://dbpedia.org/resource/Bacillus_fumarioli", "http://dbpedia.org/resource/Bacillus_gaemokensis", "http://dbpedia.org/resource/Bacillus_gibsonii", "http://dbpedia.org/resource/Bacillus_halodurans", "http://dbpedia.org/resource/Bacillus_horikoshii", "http://dbpedia.org/resource/Bacillus_mesentericus", "http://dbpedia.org/resource/Bacillus_nealsonii", "http://dbpedia.org/resource/Bacillus_odysseyi", "http://dbpedia.org/resource/Bacillus_oleronius", "http://dbpedia.org/resource/Bacillus_pseudalcalophilus", "http://dbpedia.org/resource/Bacillus_pseudofirmus", "http://dbpedia.org/resource/Bacillus_selenitireducens", "http://dbpedia.org/resource/Bacillus_sporothermodurans", "http://dbpedia.org/resource/Bacillus_thuringiensis_kurstaki", "http://dbpedia.org/resource/Camelliibacillus", "http://dbpedia.org/resource/Jeotgalicoccus_nanhaiensis", "http://dbpedia.org/resource/Oceanobacillus_iheyensis", "http://dbpedia.org/resource/Lihuaxuella", "http://dbpedia.org/resource/Lihuaxuella_thermophila", "http://dbpedia.org/resource/Paenibacillus_koreensis", "http://dbpedia.org/resource/Paenibacillus_vortex", "http://dbpedia.org/resource/Alicyclobacillus_fodiniaquatilis", "http://dbpedia.org/resource/Alicyclobacillus_herbarius", "http://dbpedia.org/resource/Alicyclobacillus_hesperidum", "http://dbpedia.org/resource/Alicyclobacillus_kakegawensis", "http://dbpedia.org/resource/Alicyclobacillus_macrosporangiidus", "http://dbpedia.org/resource/Alicyclobacillus_montanus", "http://dbpedia.org/resource/Alicyclobacillus_pomorum", "http://dbpedia.org/resource/Alicyclobacillus_sacchari", "http://dbpedia.org/resource/Alicyclobacillus_sendaiensis", "http://dbpedia.org/resource/Alicyclobacillus_shizuokensis", "http://dbpedia.org/resource/Alicyclobacillus_tengchongensis", "http://dbpedia.org/resource/Alicyclobacillus_tolerans", "http://dbpedia.org/resource/Alicyclobacillus_vulcanalis", "http://dbpedia.org/resource/Aliibacillus", "http://dbpedia.org/resource/Alkalicoccus", "http://dbpedia.org/resource/Alkalicoccus_chagannorensis", "http://dbpedia.org/resource/Alkalicoccus_daliensis", "http://dbpedia.org/resource/Alkalicoccus_halolimnae", "http://dbpedia.org/resource/Alkalicoccus_luteus", "http://dbpedia.org/resource/Alkalicoccus_saliphilus", "http://dbpedia.org/resource/Alkalicoccus_urumqiensis", "http://dbpedia.org/resource/Alkalihalobacillus_akibai", "http://dbpedia.org/resource/Alkalihalobacillus_algicola", "http://dbpedia.org/resource/Alkalihalobacillus_alkalilacus", "http://dbpedia.org/resource/Alkalihalobacillus_alkalinitrilicus", "http://dbpedia.org/resource/Alkalihalobacillus_alkalisediminis", "http://dbpedia.org/resource/Alkalihalobacillus_berkeleyi", "http://dbpedia.org/resource/Alkalihalobacillus_bogoriensis", "http://dbpedia.org/resource/Alkalihalobacillus_caeni", "http://dbpedia.org/resource/Alkalihalobacillus_haemicellulosilyticus", "http://dbpedia.org/resource/Alkalihalobacillus_haemicentroti", "http://dbpedia.org/resource/Alkalihalobacillus_hunanensis", "http://dbpedia.org/resource/Alkalihalobacillus_hwajinpoensis", "http://dbpedia.org/resource/Alkalihalobacillus_kiskunsagensis", "http://dbpedia.org/resource/Alkalihalobacillus_krulwichiae", "http://dbpedia.org/resource/Alkalihalobacillus_lehensis", "http://dbpedia.org/resource/Alkalihalobacillus_ligniniphilus", "http://dbpedia.org/resource/Alkalihalobacillus_lindianensis", "http://dbpedia.org/resource/Alkalihalobacillus_lonarensis", "http://dbpedia.org/resource/Alkalihalobacillus_macyae", "http://dbpedia.org/resource/Alkalihalobacillus_marmarensis", "http://dbpedia.org/resource/Alkalihalobacillus_miscanthi", "http://dbpedia.org/resource/Alkalihalobacillus_murimartini", "http://dbpedia.org/resource/Alkalihalobacillus_nanhaiisediminis", "http://dbpedia.org/resource/Alkalihalobacillus_okhensis", "http://dbpedia.org/resource/Alkalihalobacillus_oshimensis", "http://dbpedia.org/resource/Alkalihalobacillus_patagoniensis", "http://dbpedia.org/resource/Alkalihalobacillus_plakortidis", "http://dbpedia.org/resource/Alkalihalobacillus_rhizosphaerae", "http://dbpedia.org/resource/Alkalihalobacillus_shacheensis", "http://dbpedia.org/resource/Alkalihalobacillus_trypoxylicola", "http://dbpedia.org/resource/Alkalihalobacillus_urbisdiaboli", "http://dbpedia.org/resource/Alkalihalobacillus_wakoensis", "http://dbpedia.org/resource/Alkalihalobacillus_xiaoxiensis", "http://dbpedia.org/resource/Alkalilactibacillus", "http://dbpedia.org/resource/Allobacillus", "http://dbpedia.org/resource/Ammoniphilus", "http://dbpedia.org/resource/Ammoniphilus_oxalivorans", "http://dbpedia.org/resource/Ammoniphilus_resinae", "http://dbpedia.org/resource/Amphibacillus", "http://dbpedia.org/resource/Amphibacillus_xylanus", "http://dbpedia.org/resource/Amylobacillus", "http://dbpedia.org/resource/Aureibacillus", "http://dbpedia.org/resource/Falsibacillus", "http://dbpedia.org/resource/Macrococcus_hajekii", "http://dbpedia.org/resource/Sporosarcina_ureae", "http://dbpedia.org/resource/Oxalophagus", "http://dbpedia.org/resource/Sporosarcina_pasteurii", "http://dbpedia.org/resource/Ureibacillus_terrenus", "http://dbpedia.org/resource/Jilinibacillus", "http://dbpedia.org/resource/Paenibacillus_dendritiformis", "http://dbpedia.org/resource/Aneurinibacillus", "http://dbpedia.org/resource/Aneurinibacillus_danicus", "http://dbpedia.org/resource/Aneurinibacillus_humi", "http://dbpedia.org/resource/Aneurinibacillus_migulanus", "http://dbpedia.org/resource/Aneurinibacillus_sediminis", "http://dbpedia.org/resource/Aneurinibacillus_soli", "http://dbpedia.org/resource/Aneurinibacillus_terranovensis", "http://dbpedia.org/resource/Aneurinibacillus_thermoaerophilus", "http://dbpedia.org/resource/Aneurinibacillus_tyrosinisolvens", "http://dbpedia.org/resource/Chryseomicrobium", "http://dbpedia.org/resource/Chryseomicrobium_amylolyticum", "http://dbpedia.org/resource/Chryseomicrobium_aureum", "http://dbpedia.org/resource/Chryseomicrobium_deserti", "http://dbpedia.org/resource/Chryseomicrobium_excrementi", "http://dbpedia.org/resource/Chryseomicrobium_imtechense", "http://dbpedia.org/resource/Chryseomicrobium_palamuruense", "http://dbpedia.org/resource/Oceanobacillus_kapialis", "http://dbpedia.org/resource/Pseudogracilibacillus", "http://dbpedia.org/resource/Pseudogracilibacillus_auburnensis", "http://dbpedia.org/resource/Pseudogracilibacillus_endophyticus", "http://dbpedia.org/resource/Psychrobacillus", "http://dbpedia.org/resource/Psychrobacillus_insolitus", "http://dbpedia.org/resource/Psychrobacillus_psychrodurans", "http://dbpedia.org/resource/Psychrobacillus_soli", "http://dbpedia.org/resource/Pueribacillus", "http://dbpedia.org/resource/Radiobacillus", "http://dbpedia.org/resource/Schinkia", "http://dbpedia.org/resource/Sediminibacillus", "http://dbpedia.org/resource/Sediminibacillus_albus", "http://dbpedia.org/resource/Sediminibacillus_halophilus", "http://dbpedia.org/resource/Sediminibacillus_massiliensis", "http://dbpedia.org/resource/Seinonella", "http://dbpedia.org/resource/Virgibacillus_necropolis", "http://dbpedia.org/resource/Macrococcus_brunensis", "http://dbpedia.org/resource/Jeotgalicoccus_huakuii", "http://dbpedia.org/resource/Abyssicoccus", "http://dbpedia.org/resource/Abyssicoccus_albus", "http://dbpedia.org/resource/Jeotgalicoccus_psychrophilus", "http://dbpedia.org/resource/Oceanobacillus_chironomi", "http://dbpedia.org/resource/Heyndrickxia", "http://dbpedia.org/resource/Oxalophagus_oxalicus", "http://dbpedia.org/resource/Sporosarcina_aquimarina", "http://dbpedia.org/resource/Pasteuriaceae", "http://dbpedia.org/resource/Virgibacillus_arcticus", "http://dbpedia.org/resource/Numidum", "http://dbpedia.org/resource/Priestia", "http://dbpedia.org/resource/Robertmurraya", "http://dbpedia.org/resource/Sporosarcina_contaminans", "http://dbpedia.org/resource/Sporosarcina_luteola", "http://dbpedia.org/resource/Sporosarcina_newyorkensis", "http://dbpedia.org/resource/Sporosarcina_siberiensis", "http://dbpedia.org/resource/Sporosarcina_soli", "http://dbpedia.org/resource/Streptohalobacillus", "http://dbpedia.org/resource/Tumebacillus", "http://dbpedia.org/resource/Tumebacillus_algifaecis", "http://dbpedia.org/resource/Tumebacillus_avium", "http://dbpedia.org/resource/Tumebacillus_flagellatus", "http://dbpedia.org/resource/Tumebacillus_ginsengisoli", "http://dbpedia.org/resource/Tumebacillus_lipolyticus", "http://dbpedia.org/resource/Tumebacillus_luteolus", "http://dbpedia.org/resource/Tumebacillus_permanentifrigoris", "http://dbpedia.org/resource/Tumebacillus_soli", "http://dbpedia.org/resource/Cohnella_hongkongensis", "http://dbpedia.org/resource/Cohnella_thermotolerans", "http://dbpedia.org/resource/Paenibacillus_alvei", "http://dbpedia.org/resource/Sporolactobacillus", "http://dbpedia.org/resource/Jeotgalibacillus_alimentarius", "http://dbpedia.org/resource/Oceanobacillus_neutriphilus", "http://dbpedia.org/resource/Virgibacillus_proomii", "http://dbpedia.org/resource/Ureibacillus_composti", "http://dbpedia.org/resource/Ureibacillus_defluvii", "http://dbpedia.org/resource/Ureibacillus_suwonensis", "http://dbpedia.org/resource/Vulcanibacillus", "http://dbpedia.org/resource/Anoxybacillus", "http://dbpedia.org/resource/Anoxybacillus_gonensis", "http://dbpedia.org/resource/Brevibacillus", "http://dbpedia.org/resource/Brevibacillus_borstelensis", "http://dbpedia.org/resource/Brevibacillus_brevis", "http://dbpedia.org/resource/Caenibacillus", "http://dbpedia.org/resource/Calculibacillus", "http://dbpedia.org/resource/Caldalkalibacillus", "http://dbpedia.org/resource/Caldalkalibacillus_thermarum", "http://dbpedia.org/resource/Caldalkalibacillus_uzonensis", "http://dbpedia.org/resource/Caldibacillus", "http://dbpedia.org/resource/Calditerricola", "http://dbpedia.org/resource/Calditerricola_satsumensis", "http://dbpedia.org/resource/Cerasibacillus", "http://dbpedia.org/resource/Virgibacillus", "http://dbpedia.org/resource/Paenibacillus_polymyxa", "http://dbpedia.org/resource/Paenibacillus_tylopili", "http://dbpedia.org/resource/Alteribacter", "http://dbpedia.org/resource/Pasteuria_nishizawae", "http://dbpedia.org/resource/Virgibacillus_siamensis", "http://dbpedia.org/resource/Lederbergia", "http://dbpedia.org/resource/Sporosarcina_globispora", "http://dbpedia.org/resource/Litchfieldia", "http://dbpedia.org/resource/Macrococcus", "http://dbpedia.org/resource/Salibacterium", "http://dbpedia.org/resource/Salibacterium_halochares", "http://dbpedia.org/resource/Salibacterium_halotolerans", "http://dbpedia.org/resource/Salibacterium_lacus", "http://dbpedia.org/resource/Salibacterium_qingdaonense", "http://dbpedia.org/resource/Salimicrobium_album", "http://dbpedia.org/resource/Salimicrobium_flavidum", "http://dbpedia.org/resource/Salimicrobium_halophilum", "http://dbpedia.org/resource/Salimicrobium_salexigens", "http://dbpedia.org/resource/Salinibacillus", "http://dbpedia.org/resource/Salipaludibacillus", "http://dbpedia.org/resource/Salirhabdus", "http://dbpedia.org/resource/Salirhabdus_euzebyi", "http://dbpedia.org/resource/Salirhabdus_salicampi", "http://dbpedia.org/resource/Salisediminibacterium", "http://dbpedia.org/resource/Salisediminibacterium_haloalkalitolerans", "http://dbpedia.org/resource/Salisediminibacterium_halotolerans", "http://dbpedia.org/resource/Salisediminibacterium_locisalis", "http://dbpedia.org/resource/Saliterribacillus", "http://dbpedia.org/resource/Salsuginibacillus", "http://dbpedia.org/resource/Salsuginibacillus_halophilus", "http://dbpedia.org/resource/Salsuginibacillus_kocurii", "http://dbpedia.org/resource/Anaerobacillus", "http://dbpedia.org/resource/Anaerobacillus_alkalidiazotrophicus", "http://dbpedia.org/resource/Effusibacillus", "http://dbpedia.org/resource/Effusibacillus_consociatus", "http://dbpedia.org/resource/Effusibacillus_lacus", "http://dbpedia.org/resource/Effusibacillus_pohliae", "http://dbpedia.org/resource/Virgibacillus_alimentarius", "http://dbpedia.org/resource/Shimazuella_kribbensis", "http://dbpedia.org/resource/Pasteuria_ramosa", "http://dbpedia.org/resource/Siminovitchia", "http://dbpedia.org/resource/Sinibacillus", "http://dbpedia.org/resource/Sinobaca", "http://dbpedia.org/resource/Solibacillus_silvestris", "http://dbpedia.org/resource/Ectobacillus", "http://dbpedia.org/resource/Edaphobacillus", "http://dbpedia.org/resource/Gottfriedia", "http://dbpedia.org/resource/Gracilibacillus", "http://dbpedia.org/resource/Gracilibacillus_boraciitolerans", "http://dbpedia.org/resource/Gracilibacillus_halotolerans", "http://dbpedia.org/resource/Gracilibacillus_massiliensis", "http://dbpedia.org/resource/Gracilibacillus_ureilyticus", "http://dbpedia.org/resource/Halalkalibacillus", "http://dbpedia.org/resource/Halolactibacillus", "http://dbpedia.org/resource/Halolactibacillus_alkaliphilus", "http://dbpedia.org/resource/Halolactibacillus_halophilus", "http://dbpedia.org/resource/Jeotgalicoccus_halotolerans", "http://dbpedia.org/resource/ST8:USA300", "http://dbpedia.org/resource/Oceanobacillus_oncorhynchi", "http://dbpedia.org/resource/Marininema_halotolerans", "http://dbpedia.org/resource/Marininema_mesophilum", "http://dbpedia.org/resource/Marinococcus", "http://dbpedia.org/resource/Margalitia", "http://dbpedia.org/resource/Margalitia_camelliae", "http://dbpedia.org/resource/Margalitia_shackletonii", "http://dbpedia.org/resource/Ornithinibacillus_bavariensis", "http://dbpedia.org/resource/Ornithinibacillus_californiensis", "http://dbpedia.org/resource/Ornithinibacillus_contaminans", "http://dbpedia.org/resource/Ornithinibacillus_halophilus", "http://dbpedia.org/resource/Ornithinibacillus_scapharcae", "http://dbpedia.org/resource/Microaerobacter", "http://dbpedia.org/resource/Peribacillus", "http://dbpedia.org/resource/Sporosarcina_saromensis", "http://dbpedia.org/resource/Sporosarcina_terrae", "http://dbpedia.org/resource/Salinicoccus", "http://dbpedia.org/resource/Virgibacillus_carmonensis", "http://dbpedia.org/resource/Pseudogracilibacillus_marinus", "http://dbpedia.org/resource/Saccharibacillus_deserti", "http://dbpedia.org/resource/Saccharibacillus_endophyticus", "http://dbpedia.org/resource/Saccharibacillus_qingshengii", "http://dbpedia.org/resource/Salimicrobium", "http://dbpedia.org/resource/Salimicrobium_jeotgali", "http://dbpedia.org/resource/Salimicrobium_luteum", "http://dbpedia.org/resource/Salinibacillus_aidingensis", "http://dbpedia.org/resource/Salinibacillus_xinjiangensis", "http://dbpedia.org/resource/Salipaludibacillus_agaradhaerens", "http://dbpedia.org/resource/Salipaludibacillus_aurantiacus", "http://dbpedia.org/resource/Salipaludibacillus_neizhouensis", "http://dbpedia.org/resource/Seinonella_peptonophila", "http://dbpedia.org/resource/Ornithinibacillus", "http://dbpedia.org/resource/Ornithinibacillus_heyuanensis", "http://dbpedia.org/resource/Virgibacillus_kapii", "http://dbpedia.org/resource/Pradoshia", "http://dbpedia.org/resource/Tepidibacillus", "http://dbpedia.org/resource/Terribacillus", "http://dbpedia.org/resource/Terrilactibacillus", "http://dbpedia.org/resource/Texcoconibacillus", "http://dbpedia.org/resource/Thermicanus", "http://dbpedia.org/resource/Thermoflavimicrobium", "http://dbpedia.org/resource/Thermolongibacillus", "http://dbpedia.org/resource/Thermolongibacillus_altinsuensis", "http://dbpedia.org/resource/Paenibacillus_macerans", "http://dbpedia.org/resource/Kroppenstedtia", "http://dbpedia.org/resource/Kroppenstedtia_eburnea", "http://dbpedia.org/resource/Kroppenstedtia_guangzhouensis", "http://dbpedia.org/resource/Sporolactobacillaceae", "http://dbpedia.org/resource/Planomicrobium_koreense", "http://dbpedia.org/resource/Paenibacillus", "http://dbpedia.org/resource/Planomicrobium", "http://dbpedia.org/resource/Mechercharimyces", "http://dbpedia.org/resource/Mesobacillus", "http://dbpedia.org/resource/Metabacillus", "http://dbpedia.org/resource/Natribacillus", "http://dbpedia.org/resource/Natronobacillus", "http://dbpedia.org/resource/Niallia", "http://dbpedia.org/resource/Solibacillus_isronensis", "http://dbpedia.org/resource/Solibacillus_kalamii", "http://dbpedia.org/resource/Tepidibacillus_decaturensis", "http://dbpedia.org/resource/Tepidibacillus_fermentans", "http://dbpedia.org/resource/Tepidibacillus_infernus", "http://dbpedia.org/resource/Terribacillus_aidingensis", "http://dbpedia.org/resource/Terribacillus_goriensis", "http://dbpedia.org/resource/Terribacillus_halophilus", "http://dbpedia.org/resource/Paenisporosarcina", "http://dbpedia.org/resource/Paenisporosarcina_antarctica", "http://dbpedia.org/resource/Paenisporosarcina_indica", "http://dbpedia.org/resource/Paenisporosarcina_macmurdoensis", "http://dbpedia.org/resource/Mechercharimyces_asporophorigenens", "http://dbpedia.org/resource/Mechercharimyces_mesophilus", "http://dbpedia.org/resource/Melghirimyces", "http://dbpedia.org/resource/Melghirimyces_algeriensis", "http://dbpedia.org/resource/Melghirimyces_profundicolus", "http://dbpedia.org/resource/Melghirimyces_thermohalophilus", "http://dbpedia.org/resource/Paraliobacillus_quinghaiensis", "http://dbpedia.org/resource/Paraliobacillus_ryukyuensis", "http://dbpedia.org/resource/Paraliobacillus_sediminis", "http://dbpedia.org/resource/Paucisalibacillus_globulus", "http://dbpedia.org/resource/Sutcliffiella", "http://dbpedia.org/resource/Swionibacillus", "http://dbpedia.org/resource/Weizmannia", "http://dbpedia.org/resource/Pelagirhabdus", "http://dbpedia.org/resource/Pelagirhabdus_alkalitolerans", "http://dbpedia.org/resource/Pelagirhabdus_fermentum", "http://dbpedia.org/resource/Rossellomorea", "http://dbpedia.org/resource/Shimazuella"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/All_I_Need_Is_Your_Sweet_Lovin'> <http://dbpedia.org/ontology/language> ?uri } "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lagos_Preparatory_School> <http://dbpedia.org/property/sport> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/origin> <http://dbpedia.org/resource/England> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Beverage>}"}, "answers": ["http://dbpedia.org/resource/Plymouth_Gin", "http://dbpedia.org/resource/Broker's_Gin", "http://dbpedia.org/resource/King's_Ginger", "http://dbpedia.org/resource/Tynt_Meadow", "http://dbpedia.org/resource/Stones_Bitter", "http://dbpedia.org/resource/Evoca_Cola", "http://dbpedia.org/resource/Fuller's_ESB", "http://dbpedia.org/resource/Bombay_Sapphire", "http://dbpedia.org/resource/Worthington's_White_Shield", "http://dbpedia.org/resource/Old_Rosie"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/On_Air_with_Ryan_Seacrest> <http://dbpedia.org/ontology/starring> ?uri } "}, "answers": ["http://dbpedia.org/resource/Manny_Guevara", "http://dbpedia.org/resource/Ryan_Seacrest", "http://dbpedia.org/resource/Patty_Rodriguez"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/almaMater> <http://dbpedia.org/resource/Franklin_W._Olin> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/University>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/athletics> <http://dbpedia.org/resource/Hockey> . ?x <http://dbpedia.org/ontology/sport> ?uri }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/restingPlace> <http://dbpedia.org/resource/Little_Easton> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Royalty>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/operatingSystem> <http://dbpedia.org/resource/Microsoft_Windows> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Software>}"}, "answers": ["2571"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/subsequentWork> <http://dbpedia.org/resource/Doctor_Who_Extra> . ?uri <http://dbpedia.org/ontology/related> ?x . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/largestCity> <http://dbpedia.org/resource/Lima> . }"}, "answers": ["http://dbpedia.org/resource/Andean_Community", "http://dbpedia.org/resource/Peru\u2013Bolivian_Confederation"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Robert_S._Hall> <http://dbpedia.org/ontology/institution> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Laurie_Johnson> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": ["http://dbpedia.org/resource/And_Soon_the_Darkness", "http://dbpedia.org/resource/You_Must_Be_Joking!_(1965_film)", "http://dbpedia.org/resource/What_a_Whopper", "http://dbpedia.org/resource/The_Beauty_Jungle", "http://dbpedia.org/resource/The_Belstone_Fox", "http://dbpedia.org/resource/The_Lady_and_the_Highwayman", "http://dbpedia.org/resource/Captain_Kronos_\u2013_Vampire_Hunter", "http://dbpedia.org/resource/The_Good_Companions_(1957_film)", "http://dbpedia.org/resource/The_Maids_(film)", "http://dbpedia.org/resource/The_Moonraker", "http://dbpedia.org/resource/Girls_at_Sea_(1958_film)", "http://dbpedia.org/resource/It's_Alive_III:_Island_of_the_Alive", "http://dbpedia.org/resource/It_Lives_Again", "http://dbpedia.org/resource/It_Shouldn't_Happen_to_a_Vet", "http://dbpedia.org/resource/Mister_Jerico", "http://dbpedia.org/resource/Hot_Millions", "http://dbpedia.org/resource/Dr._Strangelove", "http://dbpedia.org/resource/Hedda_(film)", "http://dbpedia.org/resource/The_Firechasers", "http://dbpedia.org/resource/Tiger_Bay_(1959_film)", "http://dbpedia.org/resource/East_of_Sudan", "http://dbpedia.org/resource/Siege_of_the_Saxons", "http://dbpedia.org/resource/Spare_the_Rod", "http://dbpedia.org/resource/Bitter_Harvest_(1963_film)", "http://dbpedia.org/resource/I_Aim_at_the_Stars", "http://dbpedia.org/resource/Operation_Bullshine", "http://dbpedia.org/resource/No_Trees_in_the_Street"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/successor> <http://dbpedia.org/resource/PlayStation_2> . }"}, "answers": ["http://dbpedia.org/resource/PlayStation_(console)"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Doctor_Who:_Evacuation_Earth> <http://dbpedia.org/ontology/series> ?uri } "}, "answers": ["http://dbpedia.org/resource/Doctor_Who"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Entertainment_One_Music> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Artist>}"}, "answers": ["http://dbpedia.org/resource/Dave_Hollister", "http://dbpedia.org/resource/Vado_(rapper)", "http://dbpedia.org/resource/Waka_Flocka_Flame", "http://dbpedia.org/resource/Wanya_Morris", "http://dbpedia.org/resource/Devin_the_Dude", "http://dbpedia.org/resource/Beth_Hart", "http://dbpedia.org/resource/Fred_Again", "http://dbpedia.org/resource/Frost_(rapper)", "http://dbpedia.org/resource/Talib_Kweli", "http://dbpedia.org/resource/Erica_Campbell", "http://dbpedia.org/resource/Ginuwine", "http://dbpedia.org/resource/Gorilla_Zoe", "http://dbpedia.org/resource/Unk", "http://dbpedia.org/resource/Bubba_Sparxxx", "http://dbpedia.org/resource/Keak_da_Sneak", "http://dbpedia.org/resource/Matt_Halpern", "http://dbpedia.org/resource/Jonathan_Davis", "http://dbpedia.org/resource/Jonathan_McReynolds", "http://dbpedia.org/resource/Jonathan_Nelson_(singer)", "http://dbpedia.org/resource/Saukrates", "http://dbpedia.org/resource/Sean_Kingston", "http://dbpedia.org/resource/Basia", "http://dbpedia.org/resource/Misha_Mansoor", "http://dbpedia.org/resource/Montana_of_300", "http://dbpedia.org/resource/Montell_Jordan", "http://dbpedia.org/resource/Najee", "http://dbpedia.org/resource/Nathan_Morris", "http://dbpedia.org/resource/Chief_Keef", "http://dbpedia.org/resource/Chinx", "http://dbpedia.org/resource/Chris_Travis", "http://dbpedia.org/resource/Cilver", "http://dbpedia.org/resource/Stewart_Copeland", "http://dbpedia.org/resource/Cash_Out", "http://dbpedia.org/resource/Lalah_Hathaway", "http://dbpedia.org/resource/Lauran_Hibberd", "http://dbpedia.org/resource/Donell_Jones", "http://dbpedia.org/resource/Dwele", "http://dbpedia.org/resource/E.S.G._(rapper)", "http://dbpedia.org/resource/DJ_Kay_Slay", "http://dbpedia.org/resource/Rich_Boy", "http://dbpedia.org/resource/Rocko_(rapper)", "http://dbpedia.org/resource/Federico_\u00c1greda", "http://dbpedia.org/resource/Fonzworth_Bentley", "http://dbpedia.org/resource/Jerry_Douglas", "http://dbpedia.org/resource/Jim_Jones_(rapper)", "http://dbpedia.org/resource/Lil'_Troy", "http://dbpedia.org/resource/Nik_Kershaw", "http://dbpedia.org/resource/Ya_Boy", "http://dbpedia.org/resource/Elle_Varner", "http://dbpedia.org/resource/Lyfe_Jennings", "http://dbpedia.org/resource/Shawn_Stockman", "http://dbpedia.org/resource/Sheek_Louch", "http://dbpedia.org/resource/Bilal_(American_singer)", "http://dbpedia.org/resource/Black_Cobain", "http://dbpedia.org/resource/Blueface", "http://dbpedia.org/resource/Michael_McCary", "http://dbpedia.org/resource/Ronnie_Bowman", "http://dbpedia.org/resource/Ronnie_Freeman", "http://dbpedia.org/resource/Young_Chop"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Radio_Philippines_Network> <http://dbpedia.org/property/broadcastArea> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/region> <http://dbpedia.org/resource/Ashanti_Region> . ?x <http://dbpedia.org/property/religion> ?uri . }"}, "answers": ["Islam"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cheasty_Boulevard_South> <http://dbpedia.org/property/maintainedBy> ?uri . <http://dbpedia.org/resource/Soccer_Bowl> <http://dbpedia.org/ontology/city> ?uri} "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/1993_European_Grand_Prix> <http://dbpedia.org/property/firstDriver> ?uri } "}, "answers": ["http://dbpedia.org/resource/Ayrton_Senna"]}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/ingredient> <http://dbpedia.org/resource/Potato> . ?x <http://dbpedia.org/property/editing> ?uri }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/launchSite> <http://dbpedia.org/resource/Vandenerg_Air_Base> . ?uri <http://dbpedia.org/property/launchProgramme> ?x . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/FedExField> <http://dbpedia.org/ontology/operator> ?uri } "}, "answers": ["http://dbpedia.org/resource/Washington_Commanders"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/manufacturer> <http://dbpedia.org/resource/Foxconn> . }"}, "answers": ["115"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/state> <http://dbpedia.org/resource/Shallot> . ?x <http://dbpedia.org/property/nationality> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/hairColor> <http://dbpedia.org/resource/Royal_blue> . ?x <http://dbpedia.org/property/nicknames> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/almaMater> <http://dbpedia.org/resource/Somerville_College,_Oxford> . ?x <http://dbpedia.org/property/party> ?uri . }"}, "answers": ["None", "http://dbpedia.org/resource/Liberal_Democrats_(UK)", "http://dbpedia.org/resource/Labour_Party_(UK)", "http://dbpedia.org/resource/Conservative_Party_(UK)", "http://dbpedia.org/resource/Welsh_Labour_Party", "http://dbpedia.org/resource/Labour_and_Co-operative"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jos\u00e9_Rivera_(playwright)> <http://dbpedia.org/property/awards> ?uri } "}, "answers": ["http://dbpedia.org/resource/Obie_Award", "http://dbpedia.org/resource/Academy_Award", "http://dbpedia.org/resource/Goya_Award"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/awards> <http://dbpedia.org/resource/Screen_Actors_Guild_Life_Achievement_Award> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/PoliticalPerson>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kenya_national_under-20_football_team> <http://dbpedia.org/property/homeStadium> ?uri . <http://dbpedia.org/resource/Matin_Suji> <http://dbpedia.org/ontology/birthPlace> ?uri} "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/nearestCity> <http://dbpedia.org/resource/Kenya> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/ProtectedArea>}"}, "answers": ["http://dbpedia.org/resource/Kariandusi_prehistoric_site"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/leaderName> <http://dbpedia.org/resource/Elizabeth_II> . }"}, "answers": ["65"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Luke_List_(golfer)> <http://dbpedia.org/property/almaMater> ?uri . <http://dbpedia.org/resource/K._Terry_Dornbush> <http://dbpedia.org/ontology/college> ?uri} "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/company> <http://dbpedia.org/resource/FremantleMedia> . ?x <http://dbpedia.org/ontology/producer> ?uri . }"}, "answers": ["9"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Haunted_House_(1929_film)> <http://dbpedia.org/property/animator> ?uri . <http://dbpedia.org/resource/Tommy_Ticker_(artist)> <http://dbpedia.org/ontology/director> ?uri} "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/athletics> <http://dbpedia.org/resource/Oakland_Athletics> . ?x <http://dbpedia.org/ontology/architects> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/usedIn> ?uri . <http://dbpedia.org/resource/Solidus_mark> . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/hubAirport> <http://dbpedia.org/resource/Dubai> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Airline>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ford_Y-block_engine> <http://dbpedia.org/ontology/manufacturer> ?uri } "}, "answers": ["http://dbpedia.org/resource/Ford_Motor_Company"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lumberjack_100> <http://dbpedia.org/ontology/region> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/royalDesigner> <http://dbpedia.org/resource/Royal_Designer> . ?x <http://dbpedia.org/property/awards> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Abdel_Bouckar> <http://dbpedia.org/ontology/team> ?uri } "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/nationalteam> <http://dbpedia.org/resource/Tanzania_national_football_team> . ?x <http://dbpedia.org/ontology/team> ?uri }"}, "answers": ["http://dbpedia.org/resource/Stellenbosch_F.C.", "http://dbpedia.org/resource/Kinondoni_Municipal_Council_F.C.", "http://dbpedia.org/resource/Tanzania_national_football_team", "http://dbpedia.org/resource/Lipuli_F.C.", "http://dbpedia.org/resource/Ruvu_Shooting_F.C.", "http://dbpedia.org/resource/Kagera_Sugar_F.C.", "http://dbpedia.org/resource/Young_Africans_S.C.", "http://dbpedia.org/resource/African_Lyon_F.C.", "http://dbpedia.org/resource/F.C._Kariobangi_Sharks", "http://dbpedia.org/resource/Mt_Kenya_United_F.C.", "http://dbpedia.org/resource/Chemelil_Sugar_F.C.", "http://dbpedia.org/resource/Namungo_FC", "http://dbpedia.org/resource/Moro_United_F.C.", "http://dbpedia.org/resource/Mwadui_United", "http://dbpedia.org/resource/Mtibwa_Sugar_F.C.", "http://dbpedia.org/resource/Toto_African", "http://dbpedia.org/resource/Simba_S.C.", "http://dbpedia.org/resource/Friends_Rangers_F.C.", "http://dbpedia.org/resource/3_de_Fevereiro", "http://dbpedia.org/resource/Al-Tadamon_SC_(Kuwait)", "http://dbpedia.org/resource/Arusha_F.C.", "http://dbpedia.org/resource/Maji_Maji_F.C.", "http://dbpedia.org/resource/Long_An_FC", "http://dbpedia.org/resource/SHB_Danang_FC", "http://dbpedia.org/resource/Polisi_S.C.", "http://dbpedia.org/resource/Njombe_Mji_F.C.", "http://dbpedia.org/resource/Mbeya_Kwanza_F.C.", "http://dbpedia.org/resource/Azam_F.C.", "http://dbpedia.org/resource/Mbao_F.C.", "http://dbpedia.org/resource/Al-Ittihad_Club_(Salalah)", "http://dbpedia.org/resource/University_of_Pretoria_F.C.", "http://dbpedia.org/resource/Singida_United_F.C.", "http://dbpedia.org/resource/Mbeya_City_F.C.", "http://dbpedia.org/resource/Geita_Gold_Mine_FC", "http://dbpedia.org/resource/Alliance_Schools_F.C.", "http://dbpedia.org/resource/Shepshed_Dynamo_F.C.", "http://dbpedia.org/resource/Spalding_United_F.C.", "http://dbpedia.org/resource/Rugby_Town_F.C.", "http://dbpedia.org/resource/SV_Wilhelmshaven", "http://dbpedia.org/resource/Tanzania_national_under-20_football_team", "http://dbpedia.org/resource/Coastal_Union_F.C.", "http://dbpedia.org/resource/Villa_Squad", "http://dbpedia.org/resource/JKT_Mgambo", "http://dbpedia.org/resource/JKT_Ruvu_Stars", "http://dbpedia.org/resource/Prisons_F.C.", "http://dbpedia.org/resource/Saraswoti_Youth_Club", "http://dbpedia.org/resource/Rayon_Sports_F.C.", "http://dbpedia.org/resource/Mseto_Sports", "http://dbpedia.org/resource/Weymouth_F.C.", "http://dbpedia.org/resource/England_national_under-17_football_team", "http://dbpedia.org/resource/Portsmouth_F.C.", "http://dbpedia.org/resource/Bromley_F.C.", "http://dbpedia.org/resource/Bognor_Regis_Town_F.C.", "http://dbpedia.org/resource/APR_F.C.", "http://dbpedia.org/resource/Clube_Ferrovi\u00e1rio_de_Nampula", "http://dbpedia.org/resource/Stand_United", "http://dbpedia.org/resource/Gefle_IF", "http://dbpedia.org/resource/Stand_United_F.C.", "http://dbpedia.org/resource/Nkana_F.C.", "http://dbpedia.org/resource/Shangani_F.C.", "http://dbpedia.org/resource/F.C._Bravos_do_Maquis", "http://dbpedia.org/resource/Difa\u00e2_Hassani_El_Jadidi", "http://dbpedia.org/resource/Al_Qadsiah_FC", "http://dbpedia.org/resource/Wydad_AC", "http://dbpedia.org/resource/Mwadui_United_F.C.", "http://dbpedia.org/resource/Rhino_Rangers_F.C.", "http://dbpedia.org/resource/Vital'O_FC", "http://dbpedia.org/resource/A.F.C_Arusha", "http://dbpedia.org/resource/Ashanti_United_S.C.", "http://dbpedia.org/resource/Red_Arrows_F.C.", "http://dbpedia.org/resource/Power_Dynamos_F.C.", "http://dbpedia.org/resource/Tanzania_national_under-17_football_team", "http://dbpedia.org/resource/K.R.C._Genk", "http://dbpedia.org/resource/Geita_Gold", "http://dbpedia.org/resource/Polisi_Tanzania", "http://dbpedia.org/resource/Zanzibar_Ocean_View_F.C.", "http://dbpedia.org/resource/Zanzibar_national_football_team", "http://dbpedia.org/resource/Miembeni_S.C.", "http://dbpedia.org/resource/Aston_Villa_F.C.", "http://dbpedia.org/resource/TP_Mazembe", "http://dbpedia.org/resource/Fenerbah\u00e7e_S.K._(football)", "http://dbpedia.org/resource/Royal_Antwerp_F.C.", "http://dbpedia.org/resource/Kenya_Commercial_Bank_S.C.", "http://dbpedia.org/resource/Bandari_F.C._(Kenya)", "http://dbpedia.org/resource/Biashara_United", "http://dbpedia.org/resource/Police_Tanzania_F.C.", "http://dbpedia.org/resource/Young_African_S.C", "http://dbpedia.org/resource/Biashara_United_F.C.", "http://dbpedia.org/resource/La_Passe_FC", "http://dbpedia.org/resource/Anse_R\u00e9union_FC", "http://dbpedia.org/resource/Botswana_Defence_Force_XI_F.C.", "http://dbpedia.org/resource/TS_Galaxy_F.C.", "http://dbpedia.org/resource/FC_Le_Mont", "http://dbpedia.org/resource/FC_Baulmes", "http://dbpedia.org/resource/FC_Bavois", "http://dbpedia.org/resource/Yverdon-Sport_FC", "http://dbpedia.org/resource/FC_Valmont", "http://dbpedia.org/resource/Vancouver_Whitecaps_(1986\u20132010)", "http://dbpedia.org/resource/Vancouver_Whitecaps_FC", "http://dbpedia.org/resource/Tadamon_Sour_SC", "http://dbpedia.org/resource/Pamba_S.C.", "http://dbpedia.org/resource/Beitar_Tel_Aviv_Bat_Yam_F.C.", "http://dbpedia.org/resource/Maccabi_Tel_Aviv_F.C.", "http://dbpedia.org/resource/S.V._Zulte_Waregem", "http://dbpedia.org/resource/Abajalo_F.C.", "http://dbpedia.org/resource/Bandari_F.C._(Tanzania)", "http://dbpedia.org/resource/Toto_Africa_F.C.", "http://dbpedia.org/resource/Saint_George_S.C.", "http://dbpedia.org/resource/Gor_Mahia_F.C.", "http://dbpedia.org/resource/F.C._West_Ham_United", "http://dbpedia.org/resource/Mlandege_FC", "http://dbpedia.org/resource/Al-Shaab_Hadramaut", "http://dbpedia.org/resource/Free_State_Stars_F.C.", "http://dbpedia.org/resource/Fanja_SC", "http://dbpedia.org/resource/Azam_Fc", "http://dbpedia.org/resource/Al-Markhiya_SC", "http://dbpedia.org/resource/Simba_SC_Simba", "http://dbpedia.org/resource/Malindi_S.C.", "http://dbpedia.org/resource/Whitecaps_FC_Academy", "http://dbpedia.org/resource/Ndanda_F.C.", "http://dbpedia.org/resource/Zimamoto_F.C.", "http://dbpedia.org/resource/Baroka_F.C.", "http://dbpedia.org/resource/Chippa_United_F.C.", "http://dbpedia.org/resource/Highlands_Park_F.C.", "http://dbpedia.org/resource/UiTM_FC", "http://dbpedia.org/resource/KMKM_F.C.", "http://dbpedia.org/resource/Jang'ombe_Boys_F.C.", "http://dbpedia.org/resource/Mafunzo_F.C.", "http://dbpedia.org/resource/Taifa_ya_Jang'ombe_S.C.", "http://dbpedia.org/resource/Sofapaka_F.C.", "http://dbpedia.org/resource/Royal_AM_F.C.", "http://dbpedia.org/resource/Arusha_United_F.C.", "http://dbpedia.org/resource/Gainsborough_Trinity_F.C.", "http://dbpedia.org/resource/Harrogate_Town_A.F.C.", "http://dbpedia.org/resource/Tamworth_F.C.", "http://dbpedia.org/resource/Barrow_A.F.C.", "http://dbpedia.org/resource/Burton_Albion_F.C.", "http://dbpedia.org/resource/Solihull_Moors_F.C.", "http://dbpedia.org/resource/Crawley_Town_F.C.", "http://dbpedia.org/resource/Grimsby_Town_F.C.", "http://dbpedia.org/resource/Histon_F.C.", "http://dbpedia.org/resource/Mansfield_Town_F.C.", "http://dbpedia.org/resource/Leicester_City_F.C.", "http://dbpedia.org/resource/Lincoln_City_F.C.", "http://dbpedia.org/resource/St_Joseph's_F.C.", "http://dbpedia.org/resource/Blackpool_F.C.", "http://dbpedia.org/resource/Oxford_City_F.C.", "http://dbpedia.org/resource/OC_Bukavu_Dawa", "http://dbpedia.org/resource/New_York_Eagles", "http://dbpedia.org/resource/Al-Nasr_SC_(Dubai)", "http://dbpedia.org/resource/FC_St._Veit", "http://dbpedia.org/resource/Heracles_Almelo", "http://dbpedia.org/resource/Pan_African_S.C.", "http://dbpedia.org/resource/Kongsvinger_IL_Toppfotball", "http://dbpedia.org/resource/Petrojet_SC", "http://dbpedia.org/resource/ENPPI_SC", "http://dbpedia.org/resource/CD_Tenerife_B", "http://dbpedia.org/resource/JKU_S.C.", "http://dbpedia.org/resource/Youssoufia_Berrechid", "http://dbpedia.org/resource/Al-Hilal_Club_(Omdurman)", "http://dbpedia.org/resource/AFC_Eskilstuna", "http://dbpedia.org/resource/JS_Saoura", "http://dbpedia.org/resource/FK_Sloboda_Tuzla", "http://dbpedia.org/resource/Tanzania_national_under-23_football_team", "http://dbpedia.org/resource/Tanzania_Soccer_Academy", "http://dbpedia.org/resource/Dhofar_Club", "http://dbpedia.org/resource/Saham_Club", "http://dbpedia.org/resource/AS_Kigali_FC", "http://dbpedia.org/resource/Nakambala_Leopards_F.C.", "http://dbpedia.org/resource/F.C._Platinum", "http://dbpedia.org/resource/ZESCO_United_F.C.", "http://dbpedia.org/resource/GIF_Sundsvall", "http://dbpedia.org/resource/Montego_Bay_United_F.C.", "http://dbpedia.org/resource/Kajumulo_FC", "http://dbpedia.org/resource/Seattle_Saints", "http://dbpedia.org/resource/Moghreb_T\u00e9touan", "http://dbpedia.org/resource/CD_Izarra", "http://dbpedia.org/resource/CD_Tenerife", "http://dbpedia.org/resource/AS_Cannes", "http://dbpedia.org/resource/Morogoro_Youth_Academy", "http://dbpedia.org/resource/Police_F.C._(Tanzania)", "http://dbpedia.org/resource/JKT_Oljoro_F.C.", "http://dbpedia.org/resource/FC_Hirnyk-Sport_Horishni_Plavni", "http://dbpedia.org/resource/FC_Inhulets_Petrove", "http://dbpedia.org/resource/FC_Vorskla_Poltava", "http://dbpedia.org/resource/\u00c9toile_Sportive_du_Sahel", "http://dbpedia.org/resource/Manang_Marshyangdi_Club"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/East_Tilbury> <http://dbpedia.org/ontology/ceremonialCounty> ?uri } "}, "answers": ["http://dbpedia.org/resource/Essex"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Laemmle_Theatres> <http://dbpedia.org/property/service> ?x . ?x <http://dbpedia.org/ontology/award> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/choreographer> <http://dbpedia.org/resource/Catarina_Lindgren> . ?uri <http://dbpedia.org/ontology/parternedBy> ?x . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Siege_of_Santiago> <http://dbpedia.org/property/commander> ?x . ?x <http://dbpedia.org/ontology/battle> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/location> <http://dbpedia.org/resource/California> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/VideoGame>}"}, "answers": ["http://dbpedia.org/resource/Poinsettia_Bowl", "http://dbpedia.org/resource/Super_Bowl_VII"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Philadelphia_Rage> <http://dbpedia.org/ontology/stadium> ?uri } "}, "answers": ["http://dbpedia.org/resource/Philadelphia"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/license> <http://dbpedia.org/resource/Software_as_a_service> . ?x <http://dbpedia.org/property/license> ?uri . }"}, "answers": ["57"]}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/subject> <http://dbpedia.org/resource/Racism> . ?x <http://dbpedia.org/ontology/nonFictionSubject> ?uri }"}, "answers": ["16"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/U.S._Route_59> <http://dbpedia.org/property/junction> ?uri } "}, "answers": ["", "at Houston, TX", "at Laredo, TX", "at Lawrence, KS", "at Ottawa, KS", "at Sallisaw, OK", "at Worthington, MN", "near Avoca, IA", "near Fergus Falls, MN", "near Marshall, TX", "near Texarkana, TX"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/service> <http://dbpedia.org/resource/OneDrive> . ?x <http://dbpedia.org/property/services> ?uri }"}, "answers": ["Microsoft Office", "Web hosting", "", "Internet data center services", "Microsoft Azure", "Microsoft Exchange Online", "Microsoft Office 365", "Microsoft OneDrive for Business", "Microsoft Skype for Business Online", "GitHub", "LinkedIn", "Xbox network", "Azure", "Bing", "Microsoft Store", "Microsoft 365", "OneDrive", "Outlook.com", "Windows Update", "Xbox Game Pass", "Yammer"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bob_Adams_(American_football)> <http://dbpedia.org/property/knownFor> ?uri } "}, "answers": ["http://dbpedia.org/resource/Tight_end", "http://dbpedia.org/resource/National_Football_League", "Scientology official"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Chelsea_F.C> . <http://dbpedia.org/property/owner> ?uri } "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Monroe_Carell_Jr._Children's_Hospital_at_Vanderbilt> <http://dbpedia.org/property/affiliation> ?uri . <http://dbpedia.org/resource/Duncan_U._Fletcher> <http://dbpedia.org/ontology/almaMater> ?uri} "}, "answers": ["http://dbpedia.org/resource/Vanderbilt_University"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bachelor_(artist)> <http://dbpedia.org/ontology/board> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Liv_Ullmann> <http://dbpedia.org/ontology/partner> ?x . ?x <http://dbpedia.org/property/awards> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Goethe_Prize", "http://dbpedia.org/resource/BAFTA_Fellowship", "http://dbpedia.org/resource/Praemium_Imperiale", "http://dbpedia.org/resource/Academy_Award", ""]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/products> <http://dbpedia.org/resource/CrossPlatform_softwares> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/battle> <http://dbpedia.org/resource/Operation_Dragoon> . ?x <http://dbpedia.org/ontology/title> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/firstTeam> <http://dbpedia.org/resource/Williams_Grand_Prix_Engineering> . ?x <http://dbpedia.org/property/poleDriver> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Michael_M._Sears> <http://dbpedia.org/ontology/employer> ?uri } "}, "answers": ["http://dbpedia.org/resource/McDonnell_Aircraft_Corporation", "http://dbpedia.org/resource/Boeing"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/artist> <http://dbpedia.org/resource/McClain_(band)> . ?x <http://dbpedia.org/property/artist> ?uri }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/layout> <http://dbpedia.org/resource/Front-engine,_four-wheel-drive_layout> . ?x <http://dbpedia.org/property/layout> ?uri }"}, "answers": ["http://dbpedia.org/resource/Front-engine,_four-wheel_drive_layout", "http://dbpedia.org/resource/Front-engine,_front-wheel_drive_layout", "http://dbpedia.org/resource/Front-engine,_rear-wheel_drive_layout", "http://dbpedia.org/resource/Front-engine,_four-wheel-drive_layout", "http://dbpedia.org/resource/Front-engine,_rear-wheel-drive_layout", "Front-engine, rear-wheel-drive/Front-engine, all-wheel-drive", "Front-engine, rear-wheel-drive/all-wheel-drive", "Front-engine, all-wheel-drive", "Front-engine, rear-wheel-drive or four-wheel-drive", "http://dbpedia.org/resource/Front-engine,_front-wheel-drive_layout", "", "Front-engine, front-wheel-drive or four-wheel-drive", "http://dbpedia.org/resource/Rear_mid-engine,_rear-wheel_drive_layout", "http://dbpedia.org/resource/Rear_mid-engine,_rear-wheel-drive_layout", "http://dbpedia.org/resource/Front-engine,_front-wheel-drive", "http://dbpedia.org/resource/Front-engine,_all-wheel-drive", "Front-engine, four-wheel-drive", "http://dbpedia.org/resource/F4_layout", "Front engine, front wheel-drive or four-wheel-drive", "Front-engine, front-wheel-drive or four-wheel-driveref|The second generation only.|group=\"nb\"", "http://dbpedia.org/resource/All-wheel_drive", "http://dbpedia.org/resource/Front-engine,_four-wheel-drive", "http://dbpedia.org/resource/Rear-engine,_rear-wheel_drive_layout", "Dual motors 4WD", "Front-engine, front-wheel-drive or all-wheel-drive", "http://dbpedia.org/resource/Front-engine,_front-wheel_drive", "http://dbpedia.org/resource/Front-engine,_all-wheel-drive_layout", "four-wheel-drive", "Transverse Front-engine, front-wheel-drive or four-wheel-drive", "http://dbpedia.org/resource/Front_engine,_rear-wheel_drive_layout", "VSS-F, VSS-S, GEM", "VSS-R, VSS-T", "VSS-S, VSS-R, VSS-T", "http://dbpedia.org/resource/FR_layout", "http://dbpedia.org/resource/FF_layout", "Longitudinal front-engine, front-wheel-drive/four-wheel-drive", "F4 layout or FR layout", "Front-engine, front-wheel-drive/all-wheel-drive", "Front-engine, front-wheel-drive / all-wheel-drive", "Longitudinal FF / F4 layout", "http://dbpedia.org/resource/Front-engine_design", "http://dbpedia.org/resource/Longitudinal_engine", "http://dbpedia.org/resource/Front-wheel_drive", "front-wheel drive or quattro permanent four-wheel drive", "http://dbpedia.org/resource/Front-motor,_front-wheel-drive", "Longitudinal F4 layout", "http://dbpedia.org/resource/Four-wheel-drive", "4", "http://dbpedia.org/resource/Front-engine,_four-wheel_drive", "http://dbpedia.org/resource/Transverse_engine", "Front-engine, front-wheel drive or all-wheel drive", "http://dbpedia.org/resource/Four_wheel_drive", "Dual-motor, all-wheel-drive", "http://dbpedia.org/resource/Rear-wheel_drive", "http://dbpedia.org/resource/Four-wheel_drive", "Front-engine, rear-wheel-drive or all-wheel-drive", "http://dbpedia.org/resource/Front-engine,_rear-wheel-drive", "F4 layout", "Front-engine, front-wheel drive or four-wheel drive", "Front-engine, front-wheel-drive", "Front-engine, rear-wheel drive or four-wheel drive", "FR layout", "FF layout", "http://dbpedia.org/resource/Rear-engine,_rear-wheel-drive_layout", "Twin-engine, all-wheel-drive", "FR/F4", "FR / F4", "Longitudinal front-engine, all-wheel-drive", "Front-engine, four-wheel drive", "FF layout or F4 layout", "http://dbpedia.org/resource/Front-engine,_all-wheel_drive", "FR layout / F4 layout", ",", "Front-engine, rear-wheel-drive", "Front-engine, all-wheel drive", "Dual-motor all-wheel drive", "all-electric", "plug-in hybrid", "Front-motor, front-wheel-drive or Dual-Motors, all-wheel-drive", "Front-engine, rear-wheel-drive or four-wheel drive", "http://dbpedia.org/resource/Mid_engine", "http://dbpedia.org/resource/Front_engine,_rear-wheel-drive_layout", "FF and F4", "http://dbpedia.org/resource/Two-wheel_drive", "http://dbpedia.org/resource/Front_mid-engine,_rear-wheel-drive_layout", "Front mid-engine, four-wheel-drive layout", "FF / F4 layout", "S-10/S-15: Front-engine, rear-wheel-drive /", "T-10/T-15; four-wheel-drive", "Transverse F4 layout", "Transverse FF layout", "Front-engine, front-wheel drive", "F4 layout optional", "FF layout standard", "1996", "F4 layout 1995 optional, continued to be optional until 1999 in Japan and Europe", "FF layout 1993\u20131995 standard continued to be standard until 1999 in Japan and Europe", "Front-engine, front-wheel-drive or four-wheel-drive", "Front-engine, front-wheel-drive or four-wheel-drive \"AllGrip\"", "Front-engine, full-time four-wheel-drive, inline engine", "Transverse front-engine, all-wheel drive or four-wheel drive", "Front-engine, front-wheel-drive, rear-wheel-drive or four-wheel-drive", "http://dbpedia.org/resource/FMR_layout", "http://dbpedia.org/resource/Body-on-frame"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Gatwick_Airport> . ?x <http://dbpedia.org/ontology/destinations> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/WPC_Dynamo_Moscow> <http://dbpedia.org/property/arena> ?x . ?x <http://dbpedia.org/ontology/location> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/leaderName> <http://dbpedia.org/resource/Venkatraman_Ramakrishnan> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/commander> <http://dbpedia.org/resource/The_Jacket> . ?x <http://dbpedia.org/ontology/territory> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Victor_Entertainment> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Records>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/capital> <http://dbpedia.org/resource/Tokyo_Broadcasting_System> . ?x <http://dbpedia.org/property/writer> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/inflow> <http://dbpedia.org/resource/Marmara> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Sea>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Geneva> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/institution> <http://dbpedia.org/resource/AeroKlub_Wroc\u0142aw> . ?x <http://dbpedia.org/property/nationality> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Ukraine", "http://dbpedia.org/resource/Canada"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Arkansas_wine> <http://dbpedia.org/property/officialName> ?uri } "}, "answers": ["http://dbpedia.org/resource/Arkansas"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/routeStart> <http://dbpedia.org/resource/Seberang_Perai> . ?x <http://dbpedia.org/property/crosses> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Malaysia", "http://dbpedia.org/resource/South_Channel,_Malaysia", "http://dbpedia.org/resource/Penang_Strait"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/purpose> <http://dbpedia.org/resource/Maharashtran> } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/mouthPlace> <http://dbpedia.org/resource/Mota-Engil> . ?x <http://dbpedia.org/property/design> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/fields> <http://dbpedia.org/resource/Mathematics> . ?x <http://dbpedia.org/property/fields> ?uri }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jimmie_Lou_Fisher> <http://dbpedia.org/property/governor> ?uri } "}, "answers": ["http://dbpedia.org/resource/Frank_D._White", "http://dbpedia.org/resource/Jim_Guy_Tucker", "http://dbpedia.org/resource/Bill_Clinton", "http://dbpedia.org/resource/Mike_Huckabee"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/England> . ?uri <http://dbpedia.org/property/painters> ?x . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/child> <http://dbpedia.org/resource/Luke_Scott_(director)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Gustavo_Rojas_Pinilla> <http://dbpedia.org/ontology/relation> ?x . ?x <http://dbpedia.org/property/education> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/stateOfOrigin> <http://dbpedia.org/resource/United_States> . ?x <http://dbpedia.org/property/knownFor> ?uri . }"}, "answers": ["1517"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lucifer's_Hammer> <http://dbpedia.org/ontology/publisher> ?uri } "}, "answers": ["http://dbpedia.org/resource/Del_Rey_Books"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/label> <http://dbpedia.org/resource/MapleMusic_Recordings> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Pennsylvania> . ?x <http://dbpedia.org/property/formerTeam> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/primeminister> <http://dbpedia.org/resource/History_of_Trier> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Country>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/owner> <http://dbpedia.org/resource/Roman_Abramovich> . ?uri <http://dbpedia.org/property/employer> ?x . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/foundationPlace> <http://dbpedia.org/resource/Toronto> . ?x <http://dbpedia.org/property/destinations> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/spouse> <http://dbpedia.org/resource/Uncle_Henry_(Oz)> . ?x <http://dbpedia.org/ontology/relative> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Dorothy_Gale"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Blytheville_High_School> <http://dbpedia.org/property/mascot> ?uri } "}, "answers": ["http://dbpedia.org/resource/Chickasaw"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/voices> <http://dbpedia.org/resource/Eliza_Schneider> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": ["http://dbpedia.org/resource/Squirrel_Boy"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/J._Bennett_Johnston> <http://dbpedia.org/property/related> ?x . ?x <http://dbpedia.org/ontology/state> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/debutteam> <http://dbpedia.org/resource/Homestead_Grays> . ?x <http://dbpedia.org/ontology/birthPlace> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Clarksburg,_West_Virginia", "http://dbpedia.org/resource/Oakland,_Florida", "http://dbpedia.org/resource/Newport,_Kentucky", "http://dbpedia.org/resource/Cedartown,_Georgia", "http://dbpedia.org/resource/East_Carnegie,_Pennsylvania", "http://dbpedia.org/resource/Waco,_Texas", "http://dbpedia.org/resource/Raleigh,_West_Virginia", "http://dbpedia.org/resource/Quincy,_Florida", "http://dbpedia.org/resource/Orange,_New_Jersey", "http://dbpedia.org/resource/St._David,_Illinois", "http://dbpedia.org/resource/Pittsburgh", "http://dbpedia.org/resource/Lake_Charles,_Louisiana", "http://dbpedia.org/resource/Atlanta", "http://dbpedia.org/resource/Tulsa,_Oklahoma", "http://dbpedia.org/resource/Roanoke,_Virginia", "http://dbpedia.org/resource/Dunbar,_Pennsylvania", "http://dbpedia.org/resource/Walker_County,_Alabama", "http://dbpedia.org/resource/Rocky_Mount,_North_Carolina", "http://dbpedia.org/resource/Bullard,_Texas", "http://dbpedia.org/resource/Stony_Point,_North_Carolina", "http://dbpedia.org/resource/Baltimore", "http://dbpedia.org/resource/Grottoes,_Virginia", "http://dbpedia.org/resource/Lynchburg,_Virginia", "http://dbpedia.org/resource/Buena_Vista,_Georgia", "http://dbpedia.org/resource/Evergreen,_Conecuh_County,_Alabama", "http://dbpedia.org/resource/Marion_County,_Florida", "http://dbpedia.org/resource/Allegheny,_Pennsylvania", "http://dbpedia.org/resource/Chattanooga,_Tennessee", "http://dbpedia.org/resource/Selma,_Alabama", "http://dbpedia.org/resource/Tanners,_Virginia", "http://dbpedia.org/resource/Knoxville,_Tennessee", "http://dbpedia.org/resource/Rochester,_New_York", "http://dbpedia.org/resource/Shreveport,_Louisiana", "http://dbpedia.org/resource/Ruleville,_Mississippi", "http://dbpedia.org/resource/Charlottesville,_Virginia", "http://dbpedia.org/resource/New_Orleans", "http://dbpedia.org/resource/East_Carnegie_(Pittsburgh)", "http://dbpedia.org/resource/Cincinnati", "http://dbpedia.org/resource/Clairton,_Pennsylvania", "http://dbpedia.org/resource/Reidsville,_North_Carolina", "http://dbpedia.org/resource/Cleveland_County,_North_Carolina", "http://dbpedia.org/resource/Dearing,_Georgia", "http://dbpedia.org/resource/Cuba"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Simpsons_Ride> <http://dbpedia.org/property/starring> ?uri } "}, "answers": ["", "Kelsey Grammer", "Nancy Cartwright", "Hank Azaria", "Julie Kavner", "Dan Castellaneta", "Yeardley Smith"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/computingPlatform> <http://dbpedia.org/resource/IPhone> . ?uri <http://dbpedia.org/property/developer> <http://dbpedia.org/resource/XNU> . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/kingdom> <http://dbpedia.org/resource/Bacillales> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Bacteria>}"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Alice's_Wonderland> <http://dbpedia.org/property/director> ?uri } "}, "answers": ["Walt Disney", "", "Ub Iwerks"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/garrison> <http://dbpedia.org/resource/United_States_Department_of_Defense> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MilitaryUnit>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/design> <http://dbpedia.org/resource/Cable_Stayed_Bridge> . ?x <http://dbpedia.org/ontology/bridgeCarries> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/state> <http://dbpedia.org/resource/Nazi_Germany> } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/doctoralAdvisor> <http://dbpedia.org/resource/Mary_Ainsworth> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}"}, "answers": ["http://dbpedia.org/resource/Patricia_McKinsey_Crittenden"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/locatedInArea> <http://dbpedia.org/resource/Europe> } "}, "answers": ["http://dbpedia.org/resource/Pashallora"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/2010_Pan_Pacific_Swimming_Championships_\u2013_Women's_400_metre_individual_medley> <http://dbpedia.org/property/bronzes> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/doctoralStudent> <http://dbpedia.org/resource/\u00c9tienne_(film)> . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/engine> <http://dbpedia.org/resource/BMW_M10> . ?x <http://dbpedia.org/ontology/predecessor> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/operatingSystem> <http://dbpedia.org/resource/Macintosh_Quadra_660AV> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Software>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Brian_d'Arcy_James> <http://dbpedia.org/property/guests> ?uri } "}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/He's_a_Pirate> <http://dbpedia.org/ontology/writer> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/recordLabel> <http://dbpedia.org/resource/RCA_Records> . ?uri <http://dbpedia.org/ontology/musicComposer> ?x . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/compiler> <http://dbpedia.org/resource/Stephen_Law> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/PhilosophyJournal>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/lastAppearance> <http://dbpedia.org/resource/The_Avengers_(1998_film)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/FictionalCharacter>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Palang_Dharma_Party> <http://dbpedia.org/property/veneratedIn> ?uri . <http://dbpedia.org/resource/Miao> <http://dbpedia.org/ontology/ideology> ?uri} "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/producer> <http://dbpedia.org/resource/Michael_Deeley> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": ["http://dbpedia.org/resource/The_Case_of_the_Mukkinese_Battle-Horn", "http://dbpedia.org/resource/The_Italian_Job", "http://dbpedia.org/resource/The_Man_Who_Fell_to_Earth", "http://dbpedia.org/resource/The_Other_People", "http://dbpedia.org/resource/Conduct_Unbecoming_(1975_film)", "http://dbpedia.org/resource/Murphy's_War", "http://dbpedia.org/resource/Crosstrap", "http://dbpedia.org/resource/Robbery_(1967_film)", "http://dbpedia.org/resource/One_Way_Pendulum_(film)", "http://dbpedia.org/resource/Blade_Runner"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/predecessor> <http://dbpedia.org/resource/Jenny_Macklin> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/OfficeHolder>}"}, "answers": ["4"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Taekwondo> <http://dbpedia.org/property/athletics> ?uri } "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Arlington_National_Cemetery> <http://dbpedia.org/property/placeofburial> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/notableInstruments> <http://dbpedia.org/resource/Drums_Around_the_World> . ?x <http://dbpedia.org/ontology/genre> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/bandMember> <http://dbpedia.org/resource/Guy_(band)> . ?uri <http://dbpedia.org/property/associatedBand> ?x . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/leaderName> <http://dbpedia.org/resource/Queen_Noor_of_Jordan> . ?x <http://dbpedia.org/property/president> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/channel> <http://dbpedia.org/resource/NTSC> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kala_Pani_(1958_film)> <http://dbpedia.org/ontology/director> ?x . ?x <http://dbpedia.org/property/deathPlace> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Mumbai", "http://dbpedia.org/resource/Maharashtra", "http://dbpedia.org/resource/India"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/hairColor> <http://dbpedia.org/resource/Red_hair> . ?x <http://dbpedia.org/ontology/deathPlace> ?uri . }"}, "answers": ["http://dbpedia.org/resource/France", "http://dbpedia.org/resource/Paris", "http://dbpedia.org/resource/Saxonburg,_Pennsylvania"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/Second_Lieutenants> . ?x <http://dbpedia.org/ontology/religion> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/maintainedBy> <http://dbpedia.org/resource/Public_Transport_Authority_(Western_Australia)> . ?x <http://dbpedia.org/property/railwayLine> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/foundationPlace> <http://dbpedia.org/resource/United_States> . ?uri <http://dbpedia.org/property/publisher> ?x . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/inflow> <http://dbpedia.org/resource/Upper_Neratva> . ?x <http://dbpedia.org/property/cities> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/stateOfOrigin> <http://dbpedia.org/resource/Swedish> . ?x <http://dbpedia.org/property/knownFor> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/artist> <http://dbpedia.org/resource/Muse_discography> . ?uri <http://dbpedia.org/property/artist> ?x . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/location> <http://dbpedia.org/resource/Herzogenaurach> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}"}, "answers": ["http://dbpedia.org/resource/Five_Ten_Footwear", "http://dbpedia.org/resource/Puma_(brand)", "http://dbpedia.org/resource/Hydra_Ventures"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/race> <http://dbpedia.org/resource/Lawrence_Realization_Stakes> . ?x <http://dbpedia.org/ontology/award> ?uri . }"}, "answers": ["95"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/editing> <http://dbpedia.org/resource/Mark_Stevens> . ?uri <http://dbpedia.org/property/director> <http://dbpedia.org/resource/Joel_Schumacher> . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Luther:_The_Calling> <http://dbpedia.org/ontology/author> ?x . ?x <http://dbpedia.org/property/popularWorks> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/mainInterests> <http://dbpedia.org/resource/Natural_philosophy> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Philosopher>}"}, "answers": ["http://dbpedia.org/resource/Anaxagoras", "http://dbpedia.org/resource/Alcmaeon_of_Croton", "http://dbpedia.org/resource/Marsilius_of_Inghen", "http://dbpedia.org/resource/Cleanthes", "http://dbpedia.org/resource/John_Philoponus", "http://dbpedia.org/resource/Strato_of_Lampsacus", "http://dbpedia.org/resource/Rodrigo_de_Arriaga", "http://dbpedia.org/resource/Roger_Bacon", "http://dbpedia.org/resource/Miura_Baien", "http://dbpedia.org/resource/Johannes_Nikolaus_Tetens", "http://dbpedia.org/resource/William_of_Ockham", "http://dbpedia.org/resource/Xenophanes"]}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/restingPlace> <http://dbpedia.org/resource/East_Norwalk_Historical_Cemetery> . ?x <http://dbpedia.org/property/restingsPlace> ?uri }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Victor_Entertainment> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Album>}"}, "answers": ["176"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/veneratedIn> <http://dbpedia.org/resource/Judaism> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Saint>}"}, "answers": ["28"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/notableWork> <http://dbpedia.org/resource/Gibson_Les_Paul> . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/phylum> <http://dbpedia.org/resource/Chordate> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Mammal>}"}, "answers": ["http://dbpedia.org/resource/Allacerops", "http://dbpedia.org/resource/Altungulata", "http://dbpedia.org/resource/Darocasorex", "http://dbpedia.org/resource/Deccanolestes", "http://dbpedia.org/resource/Archonta", "http://dbpedia.org/resource/Valentinella", "http://dbpedia.org/resource/Dilambdogale", "http://dbpedia.org/resource/Pebble-mound_mouse", "http://dbpedia.org/resource/Betonnia", "http://dbpedia.org/resource/Geolabididae", "http://dbpedia.org/resource/Sahnitherium", "http://dbpedia.org/resource/Widanelfarasia", "http://dbpedia.org/resource/Kryoryctes", "http://dbpedia.org/resource/Arcantiodelphys", "http://dbpedia.org/resource/Argentodites", "http://dbpedia.org/resource/Eotheroides", "http://dbpedia.org/resource/Erlianomys", "http://dbpedia.org/resource/Uintaceras", "http://dbpedia.org/resource/Ukhaatherium", "http://dbpedia.org/resource/Sorex_araneus_grantii", "http://dbpedia.org/resource/Kaupitherium", "http://dbpedia.org/resource/Kennalestes", "http://dbpedia.org/resource/Mesatirhinus", "http://dbpedia.org/resource/Metarhinus", "http://dbpedia.org/resource/Metatelmatherium", "http://dbpedia.org/resource/Metaxytherium", "http://dbpedia.org/resource/Caribosiren", "http://dbpedia.org/resource/Repomys", "http://dbpedia.org/resource/Notiotitanops", "http://dbpedia.org/resource/Phalangerida", "http://dbpedia.org/resource/Scalaridelphys", "http://dbpedia.org/resource/Basirepomys", "http://dbpedia.org/resource/Batodonoides", "http://dbpedia.org/resource/Batodonoides_vanhouteni", "http://dbpedia.org/resource/Mondegodon", "http://dbpedia.org/resource/Morenelaphus", "http://dbpedia.org/resource/Mulkrajanops", "http://dbpedia.org/resource/Nanolestes", "http://dbpedia.org/resource/Seggeurius", "http://dbpedia.org/resource/Ageitonomys", "http://dbpedia.org/resource/Cambaytherium", "http://dbpedia.org/resource/Caviodon", "http://dbpedia.org/resource/Chacopterygus", "http://dbpedia.org/resource/Sthenodectes", "http://dbpedia.org/resource/Tahr", "http://dbpedia.org/resource/Junggaroperadectes", "http://dbpedia.org/resource/Mimoperadectes", "http://dbpedia.org/resource/Priscosiren", "http://dbpedia.org/resource/Dolinasorex", "http://dbpedia.org/resource/Sinodonomys", "http://dbpedia.org/resource/Telmatherium", "http://dbpedia.org/resource/Cricetulodon", "http://dbpedia.org/resource/Greniodon", "http://dbpedia.org/resource/Guiomys", "http://dbpedia.org/resource/Chacomylus", "http://dbpedia.org/resource/Maelestes", "http://dbpedia.org/resource/Phoxomylus", "http://dbpedia.org/resource/Protitanotherium", "http://dbpedia.org/resource/Prototherium", "http://dbpedia.org/resource/Qatranilestes", "http://dbpedia.org/resource/Radinskya", "http://dbpedia.org/resource/Eosiren", "http://dbpedia.org/resource/Eparctocyona", "http://dbpedia.org/resource/Edworthia", "http://dbpedia.org/resource/Kahawamys", "http://dbpedia.org/resource/Kalimantsia", "http://dbpedia.org/resource/Omoiosicista", "http://dbpedia.org/resource/Stegodibelodon", "http://dbpedia.org/resource/Stegosiren", "http://dbpedia.org/resource/Dorcopsis", "http://dbpedia.org/resource/Hyotheridium", "http://dbpedia.org/resource/Miocnus", "http://dbpedia.org/resource/Parelasmotherium", "http://dbpedia.org/resource/Parikimys", "http://dbpedia.org/resource/Eridanosaurus", "http://dbpedia.org/resource/Yingabalanara", "http://dbpedia.org/resource/Leptalestes"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Carolyn_Dennis> <http://dbpedia.org/ontology/associatedMusicalArtist> ?uri } "}, "answers": ["http://dbpedia.org/resource/The_Carpenters", "http://dbpedia.org/resource/Bruce_Springsteen", "http://dbpedia.org/resource/Kenny_Loggins", "http://dbpedia.org/resource/Stevie_Wonder", "http://dbpedia.org/resource/Bob_Dylan", "http://dbpedia.org/resource/Michael_Jackson"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/ground> <http://dbpedia.org/resource/Rosario_F\u00e9\u00e9,_Paran\u00e1> . ?x <http://dbpedia.org/ontology/youthclubs> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/company> <http://dbpedia.org/resource/Playtone> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": ["http://dbpedia.org/resource/The_2000s_(miniseries)", "http://dbpedia.org/resource/The_Eighties_(miniseries)", "http://dbpedia.org/resource/The_Movies_(miniseries)", "http://dbpedia.org/resource/The_Nineties_(miniseries)", "http://dbpedia.org/resource/The_Pacific_(miniseries)", "http://dbpedia.org/resource/The_Seventies_(miniseries)", "http://dbpedia.org/resource/The_Sixties_(miniseries)", "http://dbpedia.org/resource/Band_of_Brothers_(miniseries)", "http://dbpedia.org/resource/My_Big_Fat_Greek_Life", "http://dbpedia.org/resource/Electric_City_(web_series)", "http://dbpedia.org/resource/Olive_Kitteridge_(miniseries)"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/county> <http://dbpedia.org/resource/Dane_County> . ?x <http://dbpedia.org/ontology/restingPlace> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/publisher> <http://dbpedia.org/resource/SAGE> . ?x <http://dbpedia.org/ontology/academicArea> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pontiac_Building> <http://dbpedia.org/property/architecturalStyle> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/league> <http://dbpedia.org/resource/National_Basketball_Association> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/BasketballPlayer>}"}, "answers": ["http://dbpedia.org/resource/Alize_Johnson", "http://dbpedia.org/resource/Alondes_Williams", "http://dbpedia.org/resource/Alonzo_Mourning", "http://dbpedia.org/resource/Alperen_\u015eeng\u00fcn", "http://dbpedia.org/resource/Andre_Drummond", "http://dbpedia.org/resource/Andrew_Nembhard", "http://dbpedia.org/resource/Andy_Greer", "http://dbpedia.org/resource/Damian_Lillard", "http://dbpedia.org/resource/Damon_Stoudamire", "http://dbpedia.org/resource/Dan_Burke_(basketball)", "http://dbpedia.org/resource/Dan_Craig", "http://dbpedia.org/resource/Daniel_Gafford", "http://dbpedia.org/resource/Daniel_Theis", "http://dbpedia.org/resource/Danko_Cvjeti\u0107anin", "http://dbpedia.org/resource/Danny_Ainge", "http://dbpedia.org/resource/Danuel_House", "http://dbpedia.org/resource/Dario_\u0160ari\u0107", "http://dbpedia.org/resource/Darius_Bazley", "http://dbpedia.org/resource/Darius_Days", "http://dbpedia.org/resource/Darius_Garland", "http://dbpedia.org/resource/Darko_Rajakovi\u0107", "http://dbpedia.org/resource/Darnell_Lazare", "http://dbpedia.org/resource/Darrell_Armstrong", "http://dbpedia.org/resource/Darren_Erman", "http://dbpedia.org/resource/Darvin_Ham", "http://dbpedia.org/resource/Dave_Joerger", "http://dbpedia.org/resource/David_Duke_Jr.", "http://dbpedia.org/resource/David_Griffin_(basketball)", "http://dbpedia.org/resource/David_Johnson_(basketball)", "http://dbpedia.org/resource/David_McClure_(basketball)", "http://dbpedia.org/resource/David_Roddy", "http://dbpedia.org/resource/Davion_Mitchell", "http://dbpedia.org/resource/Davon_Reed", "http://dbpedia.org/resource/Day'Ron_Sharpe", "http://dbpedia.org/resource/De'Aaron_Fox", "http://dbpedia.org/resource/De'Andre_Hunter", "http://dbpedia.org/resource/De'Anthony_Melton", "http://dbpedia.org/resource/DeAndre_Jordan", "http://dbpedia.org/resource/Deandre_Ayton", "http://dbpedia.org/resource/Usman_Garuba", "http://dbpedia.org/resource/Vernon_Carey_Jr.", "http://dbpedia.org/resource/Victor_Oladipo", "http://dbpedia.org/resource/Vince_Williams_Jr.", "http://dbpedia.org/resource/Vitaly_Potapenko", "http://dbpedia.org/resource/Vlatko_\u010can\u010dar", "http://dbpedia.org/resource/V\u00edt_Krej\u010d\u00ed", "http://dbpedia.org/resource/Walker_Kessler", "http://dbpedia.org/resource/Dejan_Milojevi\u0107", "http://dbpedia.org/resource/Dejounte_Murray", "http://dbpedia.org/resource/Dell_Demps", "http://dbpedia.org/resource/Deni_Avdija", "http://dbpedia.org/resource/Dereon_Seabron", "http://dbpedia.org/resource/Derrick_Favors", "http://dbpedia.org/resource/Derrick_Jones_Jr.", "http://dbpedia.org/resource/Derrick_Rose", "http://dbpedia.org/resource/Derrick_White_(basketball)", "http://dbpedia.org/resource/Desmond_Bane", "http://dbpedia.org/resource/Devin_Booker", "http://dbpedia.org/resource/Devin_Cannady", "http://dbpedia.org/resource/Devin_Vassell", "http://dbpedia.org/resource/Devontae_Cacok", "http://dbpedia.org/resource/Devonte'_Graham", "http://dbpedia.org/resource/Dewayne_Dedmon", "http://dbpedia.org/resource/Didi_Louzada", "http://dbpedia.org/resource/Dillon_Brooks", "http://dbpedia.org/resource/Dirk_Nowitzki", "http://dbpedia.org/resource/Al_Attles", "http://dbpedia.org/resource/Al_Horford", "http://dbpedia.org/resource/Alec_Burks", "http://dbpedia.org/resource/Aleksej_Poku\u0161evski", "http://dbpedia.org/resource/Alex_Jensen", "http://dbpedia.org/resource/Alex_Len", "http://dbpedia.org/resource/Alex_McKechnie", "http://dbpedia.org/resource/Art\u016bras_Karni\u0161ovas", "http://dbpedia.org/resource/Austin_Ainge", "http://dbpedia.org/resource/Austin_Reaves", "http://dbpedia.org/resource/Ayo_Dosunmu", "http://dbpedia.org/resource/Ben_Simmons", "http://dbpedia.org/resource/Ben_Sullivan_(basketball)", "http://dbpedia.org/resource/Ben_Wallace_(basketball)", "http://dbpedia.org/resource/Beno_Udrih", "http://dbpedia.org/resource/Frank_Kaminsky", "http://dbpedia.org/resource/Frank_Ntilikina", "http://dbpedia.org/resource/Frank_Vogel", "http://dbpedia.org/resource/Fred_VanVleet", "http://dbpedia.org/resource/Fred_Vinson_(basketball)", "http://dbpedia.org/resource/Garrett_Jackson", "http://dbpedia.org/resource/Garrison_Mathews", "http://dbpedia.org/resource/Gary_Clark_(basketball)", "http://dbpedia.org/resource/Gary_Harris", "http://dbpedia.org/resource/Gary_Payton_II", "http://dbpedia.org/resource/Gary_Trent_Jr.", "http://dbpedia.org/resource/Harrison_Barnes", "http://dbpedia.org/resource/Saben_Lee", "http://dbpedia.org/resource/Sachin_Gupta_(executive)", "http://dbpedia.org/resource/Saddiq_Bey", "http://dbpedia.org/resource/Sam_Cassell", "http://dbpedia.org/resource/Sandro_Mamukelashvili", "http://dbpedia.org/resource/T._J._McConnell", "http://dbpedia.org/resource/T._J._Warren", "http://dbpedia.org/resource/Tari_Eason", "http://dbpedia.org/resource/Taurean_Prince", "http://dbpedia.org/resource/Taylor_Jenkins", "http://dbpedia.org/resource/Wendell_Carter_Jr.", "http://dbpedia.org/resource/Wendell_Moore_Jr.", "http://dbpedia.org/resource/Wenyen_Gabriel", "http://dbpedia.org/resource/Wes_Unseld_Jr.", "http://dbpedia.org/resource/Wesley_Johnson_(basketball)", "http://dbpedia.org/resource/Wesley_Matthews", "http://dbpedia.org/resource/Will_Barton", "http://dbpedia.org/resource/Will_Hardy", "http://dbpedia.org/resource/Anfernee_Simons", "http://dbpedia.org/resource/Anthony_Davis", "http://dbpedia.org/resource/Anthony_Edwards_(basketball)", "http://dbpedia.org/resource/Anthony_Lamb_(basketball)", "http://dbpedia.org/resource/Anthony_Morrow", "http://dbpedia.org/resource/Anthony_Parker", "http://dbpedia.org/resource/Antonio_Lang", "http://dbpedia.org/resource/Elston_Turner", "http://dbpedia.org/resource/Eric_Bledsoe", "http://dbpedia.org/resource/Eric_Gordon", "http://dbpedia.org/resource/Eric_Hughes_(basketball)", "http://dbpedia.org/resource/Eric_Paschall", "http://dbpedia.org/resource/Erik_Spoelstra", "http://dbpedia.org/resource/Ermal_Kuqo", "http://dbpedia.org/resource/Eugene_Omoruyi", "http://dbpedia.org/resource/Evan_Fournier", "http://dbpedia.org/resource/Evan_Mobley", "http://dbpedia.org/resource/Evan_Turner", "http://dbpedia.org/resource/Giannis_Antetokounmpo", "http://dbpedia.org/resource/God_Shammgod", "http://dbpedia.org/resource/Goga_Bitadze", "http://dbpedia.org/resource/Goran_Dragi\u0107", "http://dbpedia.org/resource/Gordon_Hayward", "http://dbpedia.org/resource/Gorgui_Dieng", "http://dbpedia.org/resource/MarJon_Beauchamp", "http://dbpedia.org/resource/Marcus_Garrett", "http://dbpedia.org/resource/Marcus_Georges-Hunt", "http://dbpedia.org/resource/Marcus_Smart", "http://dbpedia.org/resource/Mark_Bryant_(basketball)", "http://dbpedia.org/resource/Mark_Daigneault", "http://dbpedia.org/resource/Mark_Williams_(basketball)", "http://dbpedia.org/resource/Markelle_Fultz", "http://dbpedia.org/resource/Markieff_Morris", "http://dbpedia.org/resource/Marko_Simonovi\u0107_(basketball,_born_1999)", "http://dbpedia.org/resource/Marlon_Garnett", "http://dbpedia.org/resource/Marquese_Chriss", "http://dbpedia.org/resource/Marvin_Williams", "http://dbpedia.org/resource/Popeye_Jones", "http://dbpedia.org/resource/Precious_Achiuwa", "http://dbpedia.org/resource/Predrag_Drobnjak", "http://dbpedia.org/resource/Primo\u017e_Brezec", "http://dbpedia.org/resource/Terence_Davis", "http://dbpedia.org/resource/Teresa_Weatherspoon", "http://dbpedia.org/resource/Terry_Rozier", "http://dbpedia.org/resource/Terry_Taylor_(basketball)", "http://dbpedia.org/resource/Thaddeus_Young", "http://dbpedia.org/resource/Thanasis_Antetokounmpo", "http://dbpedia.org/resource/Udoka_Azubuike", "http://dbpedia.org/resource/Udonis_Haslem", "http://dbpedia.org/resource/Jeff_Weltman", "http://dbpedia.org/resource/Monte_McNair", "http://dbpedia.org/resource/Bo\u0161tjan_Nachbar", "http://dbpedia.org/resource/Brandon_Boston_Jr.", "http://dbpedia.org/resource/Brandon_Clarke", "http://dbpedia.org/resource/Brandon_Goodwin_(basketball)", "http://dbpedia.org/resource/Brandon_Ingram", "http://dbpedia.org/resource/Brandon_Williams_(basketball,_born_1975)", "http://dbpedia.org/resource/Brandon_Williams_(basketball,_born_1999)", "http://dbpedia.org/resource/Braxton_Key", "http://dbpedia.org/resource/Brendan_Malone", "http://dbpedia.org/resource/Bret_Brielmaier", "http://dbpedia.org/resource/Brett_Brown", "http://dbpedia.org/resource/Brian_Adams_(basketball)", "http://dbpedia.org/resource/Brian_Keefe", "http://dbpedia.org/resource/Brian_Shaw", "http://dbpedia.org/resource/Brodric_Thomas", "http://dbpedia.org/resource/Brook_Lopez", "http://dbpedia.org/resource/Bruce_Fraser_(basketball)", "http://dbpedia.org/resource/Bruce_Kreutzer", "http://dbpedia.org/resource/Bruno_Fernando", "http://dbpedia.org/resource/Bryan_Gates", "http://dbpedia.org/resource/Bryce_McGowens", "http://dbpedia.org/resource/Bryn_Forbes", "http://dbpedia.org/resource/Buddy_Boeheim", "http://dbpedia.org/resource/Buddy_Hield", "http://dbpedia.org/resource/Jack_White_(basketball)", "http://dbpedia.org/resource/Jacque_Vaughn", "http://dbpedia.org/resource/Jaden_Hardy", "http://dbpedia.org/resource/Jaden_Ivey", "http://dbpedia.org/resource/Jaden_Springer", "http://dbpedia.org/resource/Jae'Sean_Tate", "http://dbpedia.org/resource/Jake_LaRavia", "http://dbpedia.org/resource/Jakob_P\u00f6ltl", "http://dbpedia.org/resource/Jalen_Brunson", "http://dbpedia.org/resource/Jalen_Duren", "http://dbpedia.org/resource/Jalen_Green", "http://dbpedia.org/resource/Jalen_Johnson", "http://dbpedia.org/resource/Jalen_Suggs", "http://dbpedia.org/resource/Jalen_Williams", "http://dbpedia.org/resource/Jamaal_Magloire", "http://dbpedia.org/resource/Jamahl_Mosley", "http://dbpedia.org/resource/Jamal_Cain", "http://dbpedia.org/resource/Jamal_Murray", "http://dbpedia.org/resource/James_Borrego", "http://dbpedia.org/resource/James_Bouknight", "http://dbpedia.org/resource/James_Harden", "http://dbpedia.org/resource/James_Wiseman", "http://dbpedia.org/resource/Jamie_Young_(basketball)", "http://dbpedia.org/resource/Jared_Butler", "http://dbpedia.org/resource/Jared_Dudley", "http://dbpedia.org/resource/Jared_Harper", "http://dbpedia.org/resource/Jaren_Jackson_Jr.", "http://dbpedia.org/resource/Jarred_Vanderbilt", "http://dbpedia.org/resource/Jarrett_Allen", "http://dbpedia.org/resource/Jarrett_Jack", "http://dbpedia.org/resource/Jarron_Collins", "http://dbpedia.org/resource/Jason_Kidd", "http://dbpedia.org/resource/Jason_Preston", "http://dbpedia.org/resource/Jason_Terry", "http://dbpedia.org/resource/Javonte_Green", "http://dbpedia.org/resource/Jaxson_Hayes", "http://dbpedia.org/resource/Jay_Larranaga", "http://dbpedia.org/resource/Jay_Triano", "http://dbpedia.org/resource/Jaylen_Brown", "http://dbpedia.org/resource/Jaylin_Williams", "http://dbpedia.org/resource/Jayson_Tatum", "http://dbpedia.org/resource/Jeenathan_Williams", "http://dbpedia.org/resource/Keegan_Murray", "http://dbpedia.org/resource/Keita_Bates-Diop", "http://dbpedia.org/resource/Kelly_Olynyk", "http://dbpedia.org/resource/Kelly_Oubre_Jr.", "http://dbpedia.org/resource/Kendall_Brown_(basketball)", "http://dbpedia.org/resource/Kendrick_Nunn", "http://dbpedia.org/resource/Kennedy_Chandler", "http://dbpedia.org/resource/Kenneth_Lofton_Jr.", "http://dbpedia.org/resource/Kenny_Atkinson", "http://dbpedia.org/resource/Kenrich_Williams", "http://dbpedia.org/resource/Kenyon_Martin_Jr.", "http://dbpedia.org/resource/Keon_Ellis", "http://dbpedia.org/resource/Keon_Johnson_(basketball,_born_2002)", "http://dbpedia.org/resource/Kessler_Edwards", "http://dbpedia.org/resource/Kevin_Burleson", "http://dbpedia.org/resource/Kevin_Durant", "http://dbpedia.org/resource/Kevin_Huerter", "http://dbpedia.org/resource/Kevin_Love", "http://dbpedia.org/resource/Kevin_Porter_Jr.", "http://dbpedia.org/resource/Kevin_Pritchard", "http://dbpedia.org/resource/Kevon_Harris_(basketball)", "http://dbpedia.org/resource/Kevon_Looney", "http://dbpedia.org/resource/Keyon_Dooling", "http://dbpedia.org/resource/Khris_Middleton", "http://dbpedia.org/resource/Killian_Hayes", "http://dbpedia.org/resource/Killian_Tillie", "http://dbpedia.org/resource/Matina_Kolokotronis", "http://dbpedia.org/resource/Matisse_Thybulle", "http://dbpedia.org/resource/Matt_Ryan_(basketball)", "http://dbpedia.org/resource/Matt_Thomas_(basketball)", "http://dbpedia.org/resource/Matthew_Dellavedova", "http://dbpedia.org/resource/Maurice_Cheeks", "http://dbpedia.org/resource/Maurice_Harkless", "http://dbpedia.org/resource/Max_Christie_(basketball)", "http://dbpedia.org/resource/Max_Strus", "http://dbpedia.org/resource/Maxi_Kleber", "http://dbpedia.org/resource/Melvin_Frazier", "http://dbpedia.org/resource/Melvin_Hunt", "http://dbpedia.org/resource/Randy_Ayers", "http://dbpedia.org/resource/Raul_Neto", "http://dbpedia.org/resource/Reggie_Bullock", "http://dbpedia.org/resource/Rex_Kalamian", "http://dbpedia.org/resource/A._J._Green_(basketball)", "http://dbpedia.org/resource/A._J._Lawson", "http://dbpedia.org/resource/AJ_Griffin", "http://dbpedia.org/resource/Nikola_Vu\u010devi\u0107", "http://dbpedia.org/resource/Noah_Vonleh", "http://dbpedia.org/resource/Norman_Powell", "http://dbpedia.org/resource/OG_Anunoby", "http://dbpedia.org/resource/Obi_Toppin", "http://dbpedia.org/resource/Ochai_Agbaji", "http://dbpedia.org/resource/Octavio_De_La_Grana", "http://dbpedia.org/resource/Scott_Layden", "http://dbpedia.org/resource/Clifford_Ray", "http://dbpedia.org/resource/Clint_Capela", "http://dbpedia.org/resource/Coby_White", "http://dbpedia.org/resource/Cole_Anthony", "http://dbpedia.org/resource/Cole_Swider", "http://dbpedia.org/resource/Collin_Gillespie", "http://dbpedia.org/resource/John_Konchar", "http://dbpedia.org/resource/John_Lucas_II", "http://dbpedia.org/resource/John_Paxson", "http://dbpedia.org/resource/John_Wall", "http://dbpedia.org/resource/Johnnie_Bryant", "http://dbpedia.org/resource/Johnny_Davis_(basketball,_born_2002)", "http://dbpedia.org/resource/Johnny_Juzang", "http://dbpedia.org/resource/Jon_Horst", "http://dbpedia.org/resource/Jonas_Valan\u010di\u016bnas", "http://dbpedia.org/resource/Jonathan_Isaac", "http://dbpedia.org/resource/Jonathan_Kuminga", "http://dbpedia.org/resource/Jordan_Clarkson", "http://dbpedia.org/resource/Jordan_Hall_(basketball)", "http://dbpedia.org/resource/Jordan_McLaughlin", "http://dbpedia.org/resource/Jordan_Schakel", "http://dbpedia.org/resource/Jordi_Fern\u00e1ndez", "http://dbpedia.org/resource/Jose_Alvarado_(basketball)", "http://dbpedia.org/resource/Joseph_Blair", "http://dbpedia.org/resource/Josh_Christopher", "http://dbpedia.org/resource/Josh_Giddey", "http://dbpedia.org/resource/Josh_Green_(basketball)", "http://dbpedia.org/resource/Josh_Hart", "http://dbpedia.org/resource/Josh_Jackson_(basketball)", "http://dbpedia.org/resource/Josh_Minott", "http://dbpedia.org/resource/Josh_Oppenheimer", "http://dbpedia.org/resource/Josh_Richardson", "http://dbpedia.org/resource/Joshua_Primo", "http://dbpedia.org/resource/Jos\u00e9_Calder\u00f3n_(basketball)", "http://dbpedia.org/resource/Jrue_Holiday", "http://dbpedia.org/resource/Juancho_Hernang\u00f3mez", "http://dbpedia.org/resource/Juhann_Begarin", "http://dbpedia.org/resource/Santi_Aldama", "http://dbpedia.org/resource/Scott_Brooks", "http://dbpedia.org/resource/Scott_Perry_(basketball)", "http://dbpedia.org/resource/Scottie_Barnes", "http://dbpedia.org/resource/Scotty_Pippen_Jr.", "http://dbpedia.org/resource/Serge_Ibaka", "http://dbpedia.org/resource/Gillian_Zucker", "http://dbpedia.org/resource/Jim_Eyen", "http://dbpedia.org/resource/John_Rinehart_(basketball)", "http://dbpedia.org/resource/Justin_Zanik", "http://dbpedia.org/resource/Bam_Adebayo", "http://dbpedia.org/resource/Isaac_Okoro", "http://dbpedia.org/resource/Isaiah_Hartenstein", "http://dbpedia.org/resource/Isaiah_Joe", "http://dbpedia.org/resource/Isaiah_Livers", "http://dbpedia.org/resource/Isaiah_Mobley", "http://dbpedia.org/resource/Isaiah_Roby", "http://dbpedia.org/resource/Isaiah_Stewart", "http://dbpedia.org/resource/Isaiah_Todd", "http://dbpedia.org/resource/Ish_Wainright", "http://dbpedia.org/resource/Iverson_Molinar", "http://dbpedia.org/resource/Ivica_Dukan", "http://dbpedia.org/resource/JD_Davison", "http://dbpedia.org/resource/JT_Thor", "http://dbpedia.org/resource/JaMychal_Green", "http://dbpedia.org/resource/JaVale_McGee", "http://dbpedia.org/resource/Ja_Morant", "http://dbpedia.org/resource/Jabari_Smith_Jr.", "http://dbpedia.org/resource/Jabari_Walker", "http://dbpedia.org/resource/Mitchell_Robinson", "http://dbpedia.org/resource/Monty_Williams", "http://dbpedia.org/resource/Mont\u00e9_Morris", "http://dbpedia.org/resource/Moritz_Wagner_(basketball)", "http://dbpedia.org/resource/Moses_Brown_(basketball)", "http://dbpedia.org/resource/Moses_Moody", "http://dbpedia.org/resource/Moussa_Diabat\u00e9", "http://dbpedia.org/resource/Myles_Turner", "http://dbpedia.org/resource/Naji_Marshall", "http://dbpedia.org/resource/Nassir_Little", "http://dbpedia.org/resource/Nate_Hinton", "http://dbpedia.org/resource/Nate_McMillan", "http://dbpedia.org/resource/Nate_Reinking", "http://dbpedia.org/resource/Nathan_Knight", "http://dbpedia.org/resource/Tony_Brown_(basketball)", "http://dbpedia.org/resource/Trae_Young", "http://dbpedia.org/resource/Trajan_Langdon", "http://dbpedia.org/resource/Travis_Bader", "http://dbpedia.org/resource/Tre_Mann", "http://dbpedia.org/resource/Trendon_Watford", "http://dbpedia.org/resource/Trent_Forrest", "http://dbpedia.org/resource/Trevelin_Queen", "http://dbpedia.org/resource/Trevor_Keels", "http://dbpedia.org/resource/Trey_Burke", "http://dbpedia.org/resource/Trey_Murphy_III", "http://dbpedia.org/resource/Troy_Weaver", "http://dbpedia.org/resource/TyTy_Washington", "http://dbpedia.org/resource/Tyler_Cook", "http://dbpedia.org/resource/Tyler_Dorsey", "http://dbpedia.org/resource/Tyrese_Haliburton", "http://dbpedia.org/resource/Tyrese_Martin", "http://dbpedia.org/resource/Tyrese_Maxey", "http://dbpedia.org/resource/John_Gabriel_(basketball)", "http://dbpedia.org/resource/John_Abbamondi", "http://dbpedia.org/resource/Aaron_Brooks_(basketball)", "http://dbpedia.org/resource/Aaron_Gordon", "http://dbpedia.org/resource/Aaron_Gray", "http://dbpedia.org/resource/Aaron_Holiday", "http://dbpedia.org/resource/Aaron_Miles_(basketball)", "http://dbpedia.org/resource/Aaron_Nesmith", "http://dbpedia.org/resource/Aaron_Wiggins", "http://dbpedia.org/resource/Adam_Caporn", "http://dbpedia.org/resource/Admiral_Schofield", "http://dbpedia.org/resource/Adrian_Griffin", "http://dbpedia.org/resource/CJ_McCollum", "http://dbpedia.org/resource/Cade_Cunningham", "http://dbpedia.org/resource/Caleb_Houstan", "http://dbpedia.org/resource/Caleb_Martin_(basketball)", "http://dbpedia.org/resource/Cam_Reddish", "http://dbpedia.org/resource/Cameron_Johnson", "http://dbpedia.org/resource/Cedi_Osman", "http://dbpedia.org/resource/Chad_Forcier", "http://dbpedia.org/resource/Chandler_Hutchison", "http://dbpedia.org/resource/Charles_Bassey", "http://dbpedia.org/resource/Charles_Lee_(basketball)", "http://dbpedia.org/resource/Charlie_Brown_Jr._(basketball)", "http://dbpedia.org/resource/Chauncey_Billups", "http://dbpedia.org/resource/Chaundee_Brown", "http://dbpedia.org/resource/Chet_Holmgren", "http://dbpedia.org/resource/Chimezie_Metu", "http://dbpedia.org/resource/Chip_Engelland", "http://dbpedia.org/resource/Chris_Boucher_(basketball)", "http://dbpedia.org/resource/Chris_Chiozza", "http://dbpedia.org/resource/Chris_Duarte_(basketball)", "http://dbpedia.org/resource/Chris_Fleming_(basketball)", "http://dbpedia.org/resource/Chris_Paul", "http://dbpedia.org/resource/Chris_Quinn", "http://dbpedia.org/resource/Christian_Braun_(basketball)", "http://dbpedia.org/resource/Christian_Koloko", "http://dbpedia.org/resource/Christian_Wood", "http://dbpedia.org/resource/Chuma_Okeke", "http://dbpedia.org/resource/Steve_Clifford", "http://dbpedia.org/resource/Steve_Kerr", "http://dbpedia.org/resource/Steve_Koonin", "http://dbpedia.org/resource/Steve_Nash", "http://dbpedia.org/resource/Steven_Adams", "http://dbpedia.org/resource/Sviatoslav_Mykhailiuk", "http://dbpedia.org/resource/Fred_Whitfield_(executive)", "http://dbpedia.org/resource/Caris_LeVert", "http://dbpedia.org/resource/Casey_Hill", "http://dbpedia.org/resource/LaMelo_Ball", "http://dbpedia.org/resource/Lamar_Stevens", "http://dbpedia.org/resource/Landry_Shamet", "http://dbpedia.org/resource/Larry_Drew", "http://dbpedia.org/resource/Larry_Nance_Jr.", "http://dbpedia.org/resource/Lauri_Markkanen", "http://dbpedia.org/resource/Lawrence_Frank", "http://dbpedia.org/resource/LeBron_James", "http://dbpedia.org/resource/Leandro_Bolmaro", "http://dbpedia.org/resource/Gary_Wortman", "http://dbpedia.org/resource/Doc_Rivers", "http://dbpedia.org/resource/Domantas_Sabonis", "http://dbpedia.org/resource/Dominick_Barlow", "http://dbpedia.org/resource/Dominique_Wilkins", "http://dbpedia.org/resource/Don_Casey", "http://dbpedia.org/resource/Donnie_Walsh", "http://dbpedia.org/resource/Donovan_Mitchell", "http://dbpedia.org/resource/Donte_DiVincenzo", "http://dbpedia.org/resource/Dorian_Finney-Smith", "http://dbpedia.org/resource/Doug_Christie", "http://dbpedia.org/resource/Draymond_Green", "http://dbpedia.org/resource/Drew_Eubanks", "http://dbpedia.org/resource/Duane_Ticknor", "http://dbpedia.org/resource/Duane_Washington_Jr.", "http://dbpedia.org/resource/Duncan_Robinson_(basketball)", "http://dbpedia.org/resource/Dwane_Casey", "http://dbpedia.org/resource/Dwayne_Jones_(basketball)", "http://dbpedia.org/resource/Dwight_Powell", "http://dbpedia.org/resource/Dylan_Windler", "http://dbpedia.org/resource/Dyson_Daniels", "http://dbpedia.org/resource/D\u0101vis_Bert\u0101ns", "http://dbpedia.org/resource/E._J._Liddell", "http://dbpedia.org/resource/Simone_Fontecchio", "http://dbpedia.org/resource/Skylar_Mays", "http://dbpedia.org/resource/Sonia_Raman", "http://dbpedia.org/resource/Corey_Brewer", "http://dbpedia.org/resource/Cory_Joseph", "http://dbpedia.org/resource/Cynt_Marshall", "http://dbpedia.org/resource/D'Angelo_Russell", "http://dbpedia.org/resource/D._J._Wilson", "http://dbpedia.org/resource/Daishen_Nix", "http://dbpedia.org/resource/Dalano_Banton", "http://dbpedia.org/resource/Dalen_Terry", "http://dbpedia.org/resource/Grant_Golden_(basketball)", "http://dbpedia.org/resource/Grant_Hill", "http://dbpedia.org/resource/Grant_Williams_(basketball)", "http://dbpedia.org/resource/Grayson_Allen", "http://dbpedia.org/resource/Greg_Brown_(basketball,_born_2001)", "http://dbpedia.org/resource/Greg_Buckner", "http://dbpedia.org/resource/Gregg_Popovich", "http://dbpedia.org/resource/Gui_Santos", "http://dbpedia.org/resource/Haywood_Highsmith", "http://dbpedia.org/resource/Herbert_Jones_(basketball)", "http://dbpedia.org/resource/Mahmoud_Abdelfattah", "http://dbpedia.org/resource/Malachi_Flynn", "http://dbpedia.org/resource/Malaki_Branham", "http://dbpedia.org/resource/Malcolm_Hill_(basketball)", "http://dbpedia.org/resource/Malik_Allen", "http://dbpedia.org/resource/Malik_Beasley", "http://dbpedia.org/resource/Malik_Fitts", "http://dbpedia.org/resource/Malik_Monk", "http://dbpedia.org/resource/Manu_Gin\u00f3bili", "http://dbpedia.org/resource/Rich_Cho", "http://dbpedia.org/resource/Rich_Gotham", "http://dbpedia.org/resource/Rick_Welts", "http://dbpedia.org/resource/Ricky_Rubio", "http://dbpedia.org/resource/Robert_Covington", "http://dbpedia.org/resource/Robert_Williams_III", "http://dbpedia.org/resource/Robin_Lopez", "http://dbpedia.org/resource/Rodney_Billups", "http://dbpedia.org/resource/Rodney_Hood", "http://dbpedia.org/resource/Feron_Hunt", "http://dbpedia.org/resource/Jeff_Green_(basketball)", "http://dbpedia.org/resource/Jeff_Teague", "http://dbpedia.org/resource/Jerami_Grant", "http://dbpedia.org/resource/Jeremiah_Robinson-Earl", "http://dbpedia.org/resource/Jeremy_Lamb", "http://dbpedia.org/resource/Jeremy_Sochan", "http://dbpedia.org/resource/Jericho_Sims", "http://dbpedia.org/resource/Jerome_Allen_(basketball)", "http://dbpedia.org/resource/Jerry_West", "http://dbpedia.org/resource/Jesse_Mermuys", "http://dbpedia.org/resource/Jevon_Carter", "http://dbpedia.org/resource/Jimmy_Butler", "http://dbpedia.org/resource/Joakim_Noah", "http://dbpedia.org/resource/Jock_Landale", "http://dbpedia.org/resource/Joe_Harris_(basketball)", "http://dbpedia.org/resource/Joe_Ingles", "http://dbpedia.org/resource/Joe_Lacob", "http://dbpedia.org/resource/Joe_Mazzulla", "http://dbpedia.org/resource/Joe_Prunty", "http://dbpedia.org/resource/Joe_Wieskamp", "http://dbpedia.org/resource/John_Beilein", "http://dbpedia.org/resource/John_Butler_(basketball)", "http://dbpedia.org/resource/John_Collins_(basketball)", "http://dbpedia.org/resource/Len_Komoroski", "http://dbpedia.org/resource/Leon_Rose", "http://dbpedia.org/resource/Lester_Qui\u00f1ones", "http://dbpedia.org/resource/Lindell_Wigginton", "http://dbpedia.org/resource/Lindy_Waters_III", "http://dbpedia.org/resource/Lionel_Chalmers", "http://dbpedia.org/resource/Lionel_Hollins", "http://dbpedia.org/resource/Neemias_Queta", "http://dbpedia.org/resource/Nerlens_Noel", "http://dbpedia.org/resource/Nic_Claxton", "http://dbpedia.org/resource/Nick_Collison", "http://dbpedia.org/resource/Nick_Nurse", "http://dbpedia.org/resource/Nickeil_Alexander-Walker", "http://dbpedia.org/resource/Nico_Harrison", "http://dbpedia.org/resource/Nik_Stauskas", "http://dbpedia.org/resource/Payton_Pritchard", "http://dbpedia.org/resource/Peyton_Watson", "http://dbpedia.org/resource/Phil_Handy", "http://dbpedia.org/resource/Quin_Snyder", "http://dbpedia.org/resource/Quinndary_Weatherspoon", "http://dbpedia.org/resource/R._J._Hampton", "http://dbpedia.org/resource/RJ_Barrett", "http://dbpedia.org/resource/RJ_Nembhard", "http://dbpedia.org/resource/Theo_Pinson", "http://dbpedia.org/resource/Thomas_Bryant_(basketball)", "http://dbpedia.org/resource/Th\u00e9o_Maledon", "http://dbpedia.org/resource/Tiago_Splitter", "http://dbpedia.org/resource/Tim_Hardaway_Jr.", "http://dbpedia.org/resource/Timoth\u00e9_Luwawu-Cabarrot", "http://dbpedia.org/resource/Tobias_Harris", "http://dbpedia.org/resource/Tom_Sterner", "http://dbpedia.org/resource/Tom_Thibodeau", "http://dbpedia.org/resource/Tommy_Sheppard_(basketball)", "http://dbpedia.org/resource/Willie_Green", "http://dbpedia.org/resource/Willy_Hernang\u00f3mez", "http://dbpedia.org/resource/Xavier_Moon", "http://dbpedia.org/resource/Xavier_Sneed", "http://dbpedia.org/resource/Xavier_Tillman", "http://dbpedia.org/resource/Earl_Barron", "http://dbpedia.org/resource/Edmond_Sumner", "http://dbpedia.org/resource/Edniesha_Curry", "http://dbpedia.org/resource/Eduardo_N\u00e1jera", "http://dbpedia.org/resource/Andrea_Williams_(sports_executive)", "http://dbpedia.org/resource/Julian_Champagnie", "http://dbpedia.org/resource/Justin_Champagnie", "http://dbpedia.org/resource/Justin_Holiday", "http://dbpedia.org/resource/Justin_Lewis_(basketball)", "http://dbpedia.org/resource/Justise_Winslow", "http://dbpedia.org/resource/Juwan_Morgan", "http://dbpedia.org/resource/KZ_Okpala", "http://dbpedia.org/resource/Kai_Jones", "http://dbpedia.org/resource/Karen_Stack_Umlauf", "http://dbpedia.org/resource/Karl-Anthony_Towns", "http://dbpedia.org/resource/Luca_Vildoza", "http://dbpedia.org/resource/Luguentz_Dort", "http://dbpedia.org/resource/Luka_Don\u010di\u0107", "http://dbpedia.org/resource/Luke_Kennard_(basketball)", "http://dbpedia.org/resource/Luke_Kornet", "http://dbpedia.org/resource/Luke_Walton", "http://dbpedia.org/resource/Ognjen_Stojakovi\u0107", "http://dbpedia.org/resource/Onyeka_Okongwu", "http://dbpedia.org/resource/Orlando_Robinson", "http://dbpedia.org/resource/Oshae_Brissett", "http://dbpedia.org/resource/Otto_Porter_Jr.", "http://dbpedia.org/resource/Ousmane_Dieng", "http://dbpedia.org/resource/Seth_Curry", "http://dbpedia.org/resource/Shaedon_Sharpe", "http://dbpedia.org/resource/Shai_Gilgeous-Alexander", "http://dbpedia.org/resource/Shake_Milton", "http://dbpedia.org/resource/Shane_Battier", "http://dbpedia.org/resource/Shaun_Livingston", "http://dbpedia.org/resource/Sidney_Lowe", "http://dbpedia.org/resource/Spencer_Dinwiddie", "http://dbpedia.org/resource/Stacey_Augmon", "http://dbpedia.org/resource/Stephen_Curry", "http://dbpedia.org/resource/Stephen_Silas", "http://dbpedia.org/resource/Sterling_Brown_(basketball)", "http://dbpedia.org/resource/Rick_Fuson", "http://dbpedia.org/resource/Blake_Ahearn", "http://dbpedia.org/resource/Blake_Wesley_(basketball)", "http://dbpedia.org/resource/Bob_Bender", "http://dbpedia.org/resource/Bob_Love", "http://dbpedia.org/resource/Bob_Weiss", "http://dbpedia.org/resource/Boban_Marjanovi\u0107", "http://dbpedia.org/resource/Bobby_Portis", "http://dbpedia.org/resource/Bojan_Bogdanovi\u0107", "http://dbpedia.org/resource/Bones_Hyland", "http://dbpedia.org/resource/Igor_Koko\u0161kov", "http://dbpedia.org/resource/Ime_Udoka", "http://dbpedia.org/resource/Immanuel_Quickley", "http://dbpedia.org/resource/Kira_Lewis_Jr.", "http://dbpedia.org/resource/Koby_Altman", "http://dbpedia.org/resource/Kofi_Cockburn", "http://dbpedia.org/resource/Kris_Dunn", "http://dbpedia.org/resource/Kristaps_Porzi\u0146\u0123is", "http://dbpedia.org/resource/Kyle_Anderson_(basketball)", "http://dbpedia.org/resource/Kyle_Korver", "http://dbpedia.org/resource/Kyle_Kuzma", "http://dbpedia.org/resource/Kyle_Lowry", "http://dbpedia.org/resource/Kyler_Edwards", "http://dbpedia.org/resource/Kyrie_Irving", "http://dbpedia.org/resource/Mfiondu_Kabengele", "http://dbpedia.org/resource/Michael_Batiste", "http://dbpedia.org/resource/Michael_Devoe", "http://dbpedia.org/resource/Michael_Foster_(basketball)", "http://dbpedia.org/resource/Michael_Jordan", "http://dbpedia.org/resource/Michael_Lee_(basketball,_born_1983)", "http://dbpedia.org/resource/Michael_Malone_(basketball)", "http://dbpedia.org/resource/Michael_Porter_Jr.", "http://dbpedia.org/resource/Mikal_Bridges", "http://dbpedia.org/resource/Mike_Brown_(basketball,_born_1970)", "http://dbpedia.org/resource/Mike_Conley_Jr.", "http://dbpedia.org/resource/Mike_D'Antoni", "http://dbpedia.org/resource/Mike_Dunlap", "http://dbpedia.org/resource/Mike_Dunleavy_Jr.", "http://dbpedia.org/resource/Mike_Longabardi", "http://dbpedia.org/resource/Mike_Miller_(basketball,_born_1964)", "http://dbpedia.org/resource/Mike_Muscala", "http://dbpedia.org/resource/Mike_Terpstra", "http://dbpedia.org/resource/Mike_Wilhelm_(basketball)", "http://dbpedia.org/resource/Miles_McBride", "http://dbpedia.org/resource/Milt_Palacio", "http://dbpedia.org/resource/P._J._Tucker", "http://dbpedia.org/resource/P._J._Washington", "http://dbpedia.org/resource/Pablo_Prigioni", "http://dbpedia.org/resource/Pascal_Siakam", "http://dbpedia.org/resource/Pat_Connaughton", "http://dbpedia.org/resource/Pat_Riley", "http://dbpedia.org/resource/Pat_Spencer_(basketball)", "http://dbpedia.org/resource/Patrick_Baldwin_Jr.", "http://dbpedia.org/resource/Patrick_Williams_(basketball)", "http://dbpedia.org/resource/Patty_Mills", "http://dbpedia.org/resource/Paul_George", "http://dbpedia.org/resource/Paul_Millsap", "http://dbpedia.org/resource/Paul_Reed_(basketball)", "http://dbpedia.org/resource/Romeo_Langford", "http://dbpedia.org/resource/Ron_Adams", "http://dbpedia.org/resource/Ron_Harper_Jr.", "http://dbpedia.org/resource/Roy_Rogers_(basketball)", "http://dbpedia.org/resource/Royal_Ivey", "http://dbpedia.org/resource/Royce_O'Neale", "http://dbpedia.org/resource/Rudy_Gobert", "http://dbpedia.org/resource/Rudy_Tomjanovich", "http://dbpedia.org/resource/Rui_Hachimura", "http://dbpedia.org/resource/Russell_Westbrook", "http://dbpedia.org/resource/Ryan_Arcidiacono", "http://dbpedia.org/resource/Ryan_Bowen", "http://dbpedia.org/resource/Ryan_Forehan-Kelly", "http://dbpedia.org/resource/Ryan_McDonough_(NBA_executive)", "http://dbpedia.org/resource/Ryan_Rollins", "http://dbpedia.org/resource/\u017darko_\u0110uri\u0161i\u0107", "http://dbpedia.org/resource/Zach_Collins", "http://dbpedia.org/resource/Zach_Kleiman", "http://dbpedia.org/resource/Zavier_Simpson", "http://dbpedia.org/resource/Zeke_Nnaji", "http://dbpedia.org/resource/Ziaire_Williams", "http://dbpedia.org/resource/Zion_Williamson", "http://dbpedia.org/resource/\u00d6mer_Yurtseven", "http://dbpedia.org/resource/Thad_Sheely", "http://dbpedia.org/resource/Tim_Connelly", "http://dbpedia.org/resource/Travis_Schlenk"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/restingPlace> <http://dbpedia.org/resource/London> . ?x <http://dbpedia.org/ontology/opponent> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/nearestCity> <http://dbpedia.org/resource/Wisconsin> . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/HistoricPlace>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Captain_EO> <http://dbpedia.org/ontology/producer> ?uri } "}, "answers": ["http://dbpedia.org/resource/George_Lucas", "http://dbpedia.org/resource/Rusty_Lemorande"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/mother> <http://dbpedia.org/resource/Maria_Ludwika_Krasi\u0144ska> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Royalty>}"}, "answers": ["http://dbpedia.org/resource/Princess_Malgorzata_Izabella_Czartoryska"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/author> <http://dbpedia.org/resource/Alcal\u00e1_de_Henares_Cathedral> . ?uri <http://dbpedia.org/property/author> ?x . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Paphos_International_Airport> <http://dbpedia.org/property/owner> ?uri } "}, "answers": ["http://dbpedia.org/resource/Republic_of_Cyprus"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/occupation> <http://dbpedia.org/resource/Screenwriter> . ?x <http://dbpedia.org/ontology/award> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Writers_Guild_of_America_Awards", "http://dbpedia.org/resource/Gladiator_(2000_film)", "http://dbpedia.org/resource/BAFTA_Award_for_Best_Film", "http://dbpedia.org/resource/Academy_Award_for_Best_Picture", "http://dbpedia.org/resource/Saturn_Award_for_Best_Writing", "http://dbpedia.org/resource/Hugo_Award_for_Best_Dramatic_Presentation", "http://dbpedia.org/resource/Festival_international_du_film_fantastique_de_G\u00e9rardmer", "http://dbpedia.org/resource/Pulitzer_Prize_for_Drama", "http://dbpedia.org/resource/Recife_Cinema_Festival", "http://dbpedia.org/resource/Academy_Awards", "http://dbpedia.org/resource/Grande_Pr\u00eamio_do_Cinema_Brasileiro", "http://dbpedia.org/resource/BAFTA_Award_for_Best_British_Screenplay", "http://dbpedia.org/resource/The_Day_the_Earth_Caught_Fire", "http://dbpedia.org/resource/Lovers_(1991_film)", "http://dbpedia.org/resource/Buxtehude_Bull", "http://dbpedia.org/resource/Boston_International_Film_Festival", "http://dbpedia.org/resource/Dragons_and_Tigers_Award", "http://dbpedia.org/resource/Vancouver_International_Film_Festival", "http://dbpedia.org/resource/Trap_Street_(film)", "http://dbpedia.org/resource/Medal_%22For_Battle_Merit%22", "http://dbpedia.org/resource/Order_of_the_Red_Star", "http://dbpedia.org/resource/Beijing_Bicycle", "http://dbpedia.org/resource/Berlin_International_Film_Festival", "http://dbpedia.org/resource/The_Days_(1993_film)", "http://dbpedia.org/resource/Thessaloniki_International_Film_Festival", "http://dbpedia.org/resource/Shanghai_Dreams", "http://dbpedia.org/resource/In_Love_We_Trust", "http://dbpedia.org/resource/Jury_Prize_(Cannes_Film_Festival)", "http://dbpedia.org/resource/C\u00e9sar_Award_for_Best_Writing", "http://dbpedia.org/resource/The_Barbarian_Invasions", "http://dbpedia.org/resource/Canadian_Screen_Award_for_Best_Director", "http://dbpedia.org/resource/Canadian_Screen_Award_for_Best_Screenplay", "http://dbpedia.org/resource/The_Decline_of_the_American_Empire", "http://dbpedia.org/resource/C\u00e9sar_Award_for_Best_Director", "http://dbpedia.org/resource/C\u00e9sar_Award_for_Best_Film", "http://dbpedia.org/resource/Jesus_of_Montreal", "http://dbpedia.org/resource/Alfred_Fagon_Award", "http://dbpedia.org/resource/National_Endowment_for_the_Arts", "http://dbpedia.org/resource/Doctor_of_Letters", "http://dbpedia.org/resource/University_of_Leicester", "http://dbpedia.org/resource/Guardian_Children's_Fiction_Prize", "http://dbpedia.org/resource/Scottish_Arts_Council", "http://dbpedia.org/resource/Saturn_Awards", "http://dbpedia.org/resource/Honorary_Golden_Bear", "http://dbpedia.org/resource/Golden_Lion", "http://dbpedia.org/resource/Palme_d'Or", "http://dbpedia.org/resource/National_Order_of_Quebec", "http://dbpedia.org/resource/Order_of_Canada", "http://dbpedia.org/resource/Governor_General's_Awards", "http://dbpedia.org/resource/USSR_State_Prize", "http://dbpedia.org/resource/Baeksang_Arts_Awards", "http://dbpedia.org/resource/Nigar_Awards", "http://dbpedia.org/resource/Kerala_State_Film_Award_for_Best_Article_on_Cinema", "http://dbpedia.org/resource/National_Film_Award_for_Best_Direction", "http://dbpedia.org/resource/Tony_Awards", "http://dbpedia.org/resource/Drama_Desk_Award", "http://dbpedia.org/resource/National_Film_Award_for_Best_Screenplay", "http://dbpedia.org/resource/Kerala_State_Film_Award_for_Best_Screenplay", "http://dbpedia.org/resource/Grand_prix_des_lectrices_de_Elle", "http://dbpedia.org/resource/Se_le_movi\u00f3_el_piso:_A_portrait_of_Managua", "http://dbpedia.org/resource/My_Neighbor,_My_Killer", "http://dbpedia.org/resource/National_Film_Awards_(Bangladesh)", "http://dbpedia.org/resource/Gullruten", "http://dbpedia.org/resource/Carl_von_Ossietzky", "http://dbpedia.org/resource/Kosmorama", "http://dbpedia.org/resource/Nesta_(charity)", "http://dbpedia.org/resource/Order_of_Honour_(Russia)", "http://dbpedia.org/resource/Order_of_Friendship", "http://dbpedia.org/resource/Laurence_Olivier_Awards", "http://dbpedia.org/resource/Padma_Shri", "http://dbpedia.org/resource/Blue_Dragon_Film_Awards", "http://dbpedia.org/resource/Filmfare_Award_for_Best_Dialogue", "http://dbpedia.org/resource/Sahitya_Akademi_Award", "http://dbpedia.org/resource/Karnataka_State_Film_Awards", "http://dbpedia.org/resource/Daytime_Emmy_Awards", "http://dbpedia.org/resource/Frankenstein_(2015_film)", "http://dbpedia.org/resource/Brussels_International_Fantastic_Film_Festival", "http://dbpedia.org/resource/Fantasporto", "http://dbpedia.org/resource/Paperhouse_(film)", "http://dbpedia.org/resource/Oldenburg_International_Film_Festival", "http://dbpedia.org/resource/Pillow_Talk_(film)", "http://dbpedia.org/resource/Academy_Award_for_Best_Original_Screenplay", "http://dbpedia.org/resource/The_Go-Between_(1971_film)", "http://dbpedia.org/resource/Monsieur_Klein", "http://dbpedia.org/resource/Accident_(1967_film)", "http://dbpedia.org/resource/C\u00e9sar_Awards", "http://dbpedia.org/resource/Legion_of_Honour", "http://dbpedia.org/resource/Ordre_national_du_M\u00e9rite", "http://dbpedia.org/resource/Obie_Award", "http://dbpedia.org/resource/Goya_Awards", "http://dbpedia.org/resource/Silver_Lion", "http://dbpedia.org/resource/Zee_Kannada", "http://dbpedia.org/resource/Sangeet_Natak_Akademi_Award", "http://dbpedia.org/resource/Antonovych_prize", "http://dbpedia.org/resource/Shevchenko_National_Prize", "http://dbpedia.org/resource/Order_of_Prince_Yaroslav_the_Wise", "http://dbpedia.org/resource/Order_of_the_Red_Banner_of_Labour", "http://dbpedia.org/resource/Hero_of_Ukraine", "http://dbpedia.org/resource/Coming_Home_(1978_film)", "http://dbpedia.org/resource/St._Louis_Literary_Award", "http://dbpedia.org/resource/Primetime_Emmy_Award_for_Outstanding_Writing_for_a_Limited_or_Anthology_Series_or_Movie", "http://dbpedia.org/resource/Tony_Award_for_Best_Play", "http://dbpedia.org/resource/The_River_(1997_film)", "http://dbpedia.org/resource/Silver_Bear_Grand_Jury_Prize", "http://dbpedia.org/resource/Dadasaheb_Phalke_Award", "http://dbpedia.org/resource/Padma_Vibhushan", "http://dbpedia.org/resource/Kossuth_Prize", "http://dbpedia.org/resource/Esquire_(magazine)", "http://dbpedia.org/resource/O._Henry_Award", "http://dbpedia.org/resource/Cannes_Film_Festival", "http://dbpedia.org/resource/Nandi_Awards", "http://dbpedia.org/resource/Filmfare_Award_for_Best_Story", "http://dbpedia.org/resource/Inkpot_Award", "http://dbpedia.org/resource/Di_Balik_Kelambu", "http://dbpedia.org/resource/Bachsas_Awards", "http://dbpedia.org/resource/Grand_prix_litt\u00e9raire_d'Afrique_noire", "http://dbpedia.org/resource/4_Months,_3_Weeks_and_2_Days", "http://dbpedia.org/resource/Katrin_Cartlidge_Foundation", "http://dbpedia.org/resource/British_Academy_of_Film_and_Television_Arts", "http://dbpedia.org/resource/Lenin_Prize", "http://dbpedia.org/resource/Directors_Guild_of_America", "http://dbpedia.org/resource/BAFTA_Award_for_Best_Adapted_Screenplay", "http://dbpedia.org/resource/Jean_de_Florette", "http://dbpedia.org/resource/Writers_Guild_of_America", "http://dbpedia.org/resource/Glenn_Gould_Prize", "http://dbpedia.org/resource/Festival_du_Film_Policier_de_Cognac", "http://dbpedia.org/resource/Gemini_Awards", "http://dbpedia.org/resource/Cin\u00e9fest_Sudbury_International_Film_Festival", "http://dbpedia.org/resource/Balthus_Through_the_Looking_Glass", "http://dbpedia.org/resource/Banff_World_Media_Festival", "http://dbpedia.org/resource/Fellini:_I'm_a_Born_Liar", "http://dbpedia.org/resource/Medal_of_Merit_(Czech_Republic)", "http://dbpedia.org/resource/Australian_Film_Institute_Award_for_Best_Screenplay", "http://dbpedia.org/resource/Muriel's_Wedding", "http://dbpedia.org/resource/AACTA_Award_for_Best_Direction", "http://dbpedia.org/resource/AACTA_Award_for_Best_Film", "http://dbpedia.org/resource/Proof_(1991_film)", "http://dbpedia.org/resource/Bratislava_International_Film_Festival", "http://dbpedia.org/resource/Hong_Kong_International_Film_Festival", "http://dbpedia.org/resource/Deauville_Asian_Film_Festival", "http://dbpedia.org/resource/Venice_Film_Festival", "http://dbpedia.org/resource/MTV_Movie_Award_for_Best_New_Filmmaker", "http://dbpedia.org/resource/Amanda_Award", "http://dbpedia.org/resource/AWGIE_Awards", "http://dbpedia.org/resource/National_Board_of_Review", "http://dbpedia.org/resource/All_in_the_Family", "http://dbpedia.org/resource/Asia-Pacific_Film_Festival", "http://dbpedia.org/resource/Evening_Bell_(film)", "http://dbpedia.org/resource/Myanmar_Motion_Picture_Academy_Awards", "http://dbpedia.org/resource/Une_grenade_avec_\u00e7a%3F", "http://dbpedia.org/resource/Fan_Club_(TV_series)", "http://dbpedia.org/resource/Prix_G\u00e9meaux", "http://dbpedia.org/resource/National_Artist_of_the_Philippines", "http://dbpedia.org/resource/National_Film_Award_for_Best_Cinematography", "http://dbpedia.org/resource/Network_for_the_Promotion_of_Asian_Cinema", "http://dbpedia.org/resource/Shanghai_International_Film_Festival", "http://dbpedia.org/resource/National_Film_Award_\u2013_Special_Mention_(feature_film)", "http://dbpedia.org/resource/ANR_National_Award", "http://dbpedia.org/resource/1976_Cannes_Film_Festival", "http://dbpedia.org/resource/Padma_Bhushan", "http://dbpedia.org/resource/Bronze_Wrangler", "http://dbpedia.org/resource/BAFTA_Award_for_Outstanding_British_Film", "http://dbpedia.org/resource/Directors_Guild_of_Canada", "http://dbpedia.org/resource/National_Film_Award_for_Best_Film_on_Other_Social_Issues", "http://dbpedia.org/resource/Order_%22For_Merit_to_the_Fatherland%22", "http://dbpedia.org/resource/Order_of_Australia", "http://dbpedia.org/resource/American_Black_Film_Festival", "http://dbpedia.org/resource/Japan_Academy_Film_Prize_for_Director_of_the_Year", "http://dbpedia.org/resource/House_on_Fire_(film)", "http://dbpedia.org/resource/Crest_of_Betrayal", "http://dbpedia.org/resource/Dotonbori_River", "http://dbpedia.org/resource/International_Federation_of_Film_Critics", "http://dbpedia.org/resource/Emmy_Awards", "http://dbpedia.org/resource/Humanitas_Prize", "http://dbpedia.org/resource/Alliance_for_Women_in_Media", "http://dbpedia.org/resource/Order_of_the_Three_Stars", "http://dbpedia.org/resource/Filmfare_Awards_South", "http://dbpedia.org/resource/Merited_Artist_of_the_Russian_Federation", "http://dbpedia.org/resource/Nika_Award", "http://dbpedia.org/resource/Toronto_International_Film_Festival", "http://dbpedia.org/resource/San_Sebasti\u00e1n_International_Film_Festival", "http://dbpedia.org/resource/Stockholm_International_Film_Festival"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/veneratedIn> <http://dbpedia.org/resource/Tomb_of_Joshua> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Saint>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ramiro_Pe\u00f1a> <http://dbpedia.org/ontology/team> ?uri } "}, "answers": ["http://dbpedia.org/resource/Sultanes_de_Monterrey"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/subject> <http://dbpedia.org/resource/Fantasy> . ?x <http://dbpedia.org/ontology/subject> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Thanong_Bidaya> <http://dbpedia.org/property/primeminister> ?uri } "}, "answers": ["http://dbpedia.org/resource/Thaksin_Shinawatra", "http://dbpedia.org/resource/Chavalit_Yongchaiyudh"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cyril_Hume> <http://dbpedia.org/ontology/school> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Me_&_U_(song)> <http://dbpedia.org/ontology/album> ?x . ?x <http://dbpedia.org/property/music> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/architectural_Digest> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Place>}"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Parliament_Security_Services> <http://dbpedia.org/property/houses> ?uri } "}, "answers": ["http://dbpedia.org/resource/Rajya_Sabha", "http://dbpedia.org/resource/Lok_Sabha", ""]}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/commander> <http://dbpedia.org/resource/Andrew_Jackson> . ?x <http://dbpedia.org/property/knownFor> ?uri }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/kingdom> <http://dbpedia.org/resource/Israel> . ?x <http://dbpedia.org/property/reign> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dornier_Aerodyne> <http://dbpedia.org/ontology/origin> ?x . ?x <http://dbpedia.org/property/country> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/I_Can't_Change_the_World> <http://dbpedia.org/ontology/album> ?x . ?x <http://dbpedia.org/property/artist> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Brad_Paisley"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/associatedMusicalArtist> <http://dbpedia.org/resource/Demis_Roussos> . ?uri <http://dbpedia.org/property/music> ?x . }"}, "answers": ["http://dbpedia.org/resource/West_Is_West_(2010_film)", "http://dbpedia.org/resource/Rendezvous_in_Corfu", "http://dbpedia.org/resource/Very_Big_Shot"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/placeOfDeath> <http://dbpedia.org/resource/England> . ?x <http://dbpedia.org/ontology/restingPlace> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/beatifiedBy> <http://dbpedia.org/resource/Pope_Pius_X> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": ["http://dbpedia.org/resource/Vicente_Liem_de_la_Paz", "http://dbpedia.org/resource/Rose-Chr\u00e9tien_de_la_Neuville", "http://dbpedia.org/resource/Stephen_Bellesini", "http://dbpedia.org/resource/Gabriel_of_Our_Lady_of_Sorrows", "http://dbpedia.org/resource/Marie-Genevi\u00e8ve_Meunier", "http://dbpedia.org/resource/Marie-Madeleine_Postel", "http://dbpedia.org/resource/Marko_Krizin", "http://dbpedia.org/resource/Melchior_Grodziecki", "http://dbpedia.org/resource/John_Righi", "http://dbpedia.org/resource/Francis_Ferdinand_de_Capillas", "http://dbpedia.org/resource/John_Vianney", "http://dbpedia.org/resource/John_van_Ruysbroeck", "http://dbpedia.org/resource/Agatha_Lin", "http://dbpedia.org/resource/Charles,_Duke_of_Brittany", "http://dbpedia.org/resource/Charlotte_de_la_R\u00e9surrection", "http://dbpedia.org/resource/Christina_von_Stommeln", "http://dbpedia.org/resource/James_of_Viterbo", "http://dbpedia.org/resource/Canonization_of_Joan_of_Arc", "http://dbpedia.org/resource/Gerardo_Cagnoli", "http://dbpedia.org/resource/Madeleine_Sophie_Barat", "http://dbpedia.org/resource/Bartolo_da_San_Gimignano", "http://dbpedia.org/resource/Bartolomeo_Fanti", "http://dbpedia.org/resource/Joan_of_Arc", "http://dbpedia.org/resource/John_Eudes", "http://dbpedia.org/resource/Th\u00e9ophane_V\u00e9nard", "http://dbpedia.org/resource/Lucy_Yi_Zhenmei", "http://dbpedia.org/resource/Gaspar_del_Bufalo", "http://dbpedia.org/resource/Bonaventura_Tornielli", "http://dbpedia.org/resource/Stephen_Pongracz"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/San_Diego_Convention_Center> <http://dbpedia.org/property/venue> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/stateOfOrigin> <http://dbpedia.org/resource/Filipinos> . }"}, "answers": ["316"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/child> <http://dbpedia.org/resource/William_Campbell_Preston_Breckinridge> . ?x <http://dbpedia.org/property/parent> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/residence> <http://dbpedia.org/resource/British_Columbia> . ?x <http://dbpedia.org/property/religion> ?uri . }"}, "answers": ["1"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Heydar> <http://dbpedia.org/ontology/meaning> ?uri } "}, "answers": ["Lion"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/chairman> <http://dbpedia.org/resource/Ronaldo> . ?x <http://dbpedia.org/property/ground> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/team> <http://dbpedia.org/resource/John_Tortorella> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/IceHockeyPlayer>}"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jack_McGregor> <http://dbpedia.org/property/studio> ?uri . <http://dbpedia.org/resource/Philip_Pillsbury> <http://dbpedia.org/ontology/genre> ?uri} "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/currentclub> <http://dbpedia.org/resource/Fleisher_Yarn> . ?x <http://dbpedia.org/property/debutteam> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/locationCity> <http://dbpedia.org/resource/England> . ?x <http://dbpedia.org/property/building> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/stateOfOrigin> <http://dbpedia.org/resource/California> . ?uri <http://dbpedia.org/property/mountain> ?x . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/creators> <http://dbpedia.org/resource/Joe_Shuster> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/ComicsCharacter>}"}, "answers": ["17"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Persona_(1966_film)> <http://dbpedia.org/ontology/writer> ?x . ?x <http://dbpedia.org/property/awards> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Goethe_Prize", "http://dbpedia.org/resource/BAFTA_Fellowship", "http://dbpedia.org/resource/Praemium_Imperiale", "http://dbpedia.org/resource/Academy_Award", ""]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/athletics> <http://dbpedia.org/resource/Robert_Morris_Colonials_football> . ?x <http://dbpedia.org/ontology/highschool> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/almaMater> <http://dbpedia.org/resource/University_of_Queensland> . ?x <http://dbpedia.org/property/awards> ?uri . }"}, "answers": ["56"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/owningCompany> <http://dbpedia.org/resource/Rhaetian_Railways> . ?x <http://dbpedia.org/property/nationality> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/genre> <http://dbpedia.org/resource/Mind_based_board_games> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/BoardGame>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/manufacturer> <http://dbpedia.org/resource/Eristoff> . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Citi_Trends> <http://dbpedia.org/property/constituency> ?uri . <http://dbpedia.org/resource/Malik_Al-Hassan_Yakubu> <http://dbpedia.org/ontology/country> ?uri} "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/position> <http://dbpedia.org/resource/Running_back> . ?x <http://dbpedia.org/ontology/formerTeam> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Arizona_Outlaws", "http://dbpedia.org/resource/Arizona_Wranglers", "http://dbpedia.org/resource/Buffalo_Bills", "http://dbpedia.org/resource/Green_Bay_Packers", "http://dbpedia.org/resource/New_England_Patriots", "http://dbpedia.org/resource/Washington_Commanders", "http://dbpedia.org/resource/Philadelphia_/_Baltimore_Stars", "http://dbpedia.org/resource/Jacksonville_Jaguars", "http://dbpedia.org/resource/Cleveland_Browns", "http://dbpedia.org/resource/Baltimore_Ravens", "http://dbpedia.org/resource/New_York_Giants", "http://dbpedia.org/resource/St._Louis_Rams", "http://dbpedia.org/resource/Indianapolis_Colts", "http://dbpedia.org/resource/Philadelphia_Eagles", "http://dbpedia.org/resource/Steagles", "http://dbpedia.org/resource/Dallas_Cowboys", "http://dbpedia.org/resource/Pittsburgh_Steelers", "http://dbpedia.org/resource/Tennessee_Titans", "http://dbpedia.org/resource/Chicago_Bears", "http://dbpedia.org/resource/Ottawa_Redblacks", "http://dbpedia.org/resource/Washington_Commandos", "http://dbpedia.org/resource/San_Francisco_49ers", "http://dbpedia.org/resource/Edmonton_Elks", "http://dbpedia.org/resource/Indiana_Firebirds", "http://dbpedia.org/resource/New_Orleans_Saints", "http://dbpedia.org/resource/Detroit_Lions", "http://dbpedia.org/resource/Seattle_Seahawks", "http://dbpedia.org/resource/Carolina_Panthers", "http://dbpedia.org/resource/Las_Vegas_Raiders", "http://dbpedia.org/resource/Minnesota_Vikings", "http://dbpedia.org/resource/BC_Lions", "http://dbpedia.org/resource/Montreal_Alouettes", "http://dbpedia.org/resource/1982_San_Francisco_49ers_season", "http://dbpedia.org/resource/Atlanta_Falcons", "http://dbpedia.org/resource/Denver_Broncos", "http://dbpedia.org/resource/Houston_Texans", "http://dbpedia.org/resource/Hartford_Colonials", "http://dbpedia.org/resource/Sacramento_Mountain_Lions", "http://dbpedia.org/resource/Calgary_Stampeders", "http://dbpedia.org/resource/FXFL_Blacktips", "http://dbpedia.org/resource/Tampa_Bay_Buccaneers", "http://dbpedia.org/resource/Arizona_Cardinals", "http://dbpedia.org/resource/Omaha_Nighthawks", "http://dbpedia.org/resource/San_Diego_Chargers", "http://dbpedia.org/resource/Houston_Roughnecks", "http://dbpedia.org/resource/Los_Angeles_Chargers", "http://dbpedia.org/resource/Houston_Gamblers_(2022)", "http://dbpedia.org/resource/Oakland_Raiders", "http://dbpedia.org/resource/Cincinnati_Bengals", "http://dbpedia.org/resource/New_York_Jets", "http://dbpedia.org/resource/Kansas_City_Chiefs", "http://dbpedia.org/resource/New_Mexico_Stars", "http://dbpedia.org/resource/Hamilton_Tiger-Cats", "http://dbpedia.org/resource/New_Jersey_Generals_(2022)", "http://dbpedia.org/resource/New_York_Guardians", "http://dbpedia.org/resource/Dallas_Renegades", "http://dbpedia.org/resource/The_Spring_League", "http://dbpedia.org/resource/Philadelphia_Stars_(2022)", "http://dbpedia.org/resource/XFL_(2020)", "http://dbpedia.org/resource/Los_Angeles_Rams", "http://dbpedia.org/resource/Toronto_Argonauts", "http://dbpedia.org/resource/Orlando_Thunder", "http://dbpedia.org/resource/San_Antonio_Commanders", "http://dbpedia.org/resource/New_York_Brickley_Giants", "http://dbpedia.org/resource/Los_Angeles_Raiders", "http://dbpedia.org/resource/Saskatchewan_Roughriders", "http://dbpedia.org/resource/Winnipeg_Blue_Bombers", "http://dbpedia.org/resource/Miami_Dolphins", "http://dbpedia.org/resource/Pittsburgh_Maulers_(2022)", "http://dbpedia.org/resource/Orlando_Apollos", "http://dbpedia.org/resource/Orlando_XFL_team", "http://dbpedia.org/resource/Michigan_Panthers_(2022)", "http://dbpedia.org/resource/Frankfurt_Galaxy_(NFL_Europe)", "http://dbpedia.org/resource/Las_Vegas_Locomotives", "http://dbpedia.org/resource/San_Francisco_Demons", "http://dbpedia.org/resource/Scottish_Claymores", "http://dbpedia.org/resource/Houston_Oilers", "http://dbpedia.org/resource/Ottawa_Rough_Riders", "http://dbpedia.org/resource/Shreveport_Steamer", "http://dbpedia.org/resource/Shreveport_Pirates", "http://dbpedia.org/resource/Detroit_Wheels", "http://dbpedia.org/resource/Arizona_Hotshots", "http://dbpedia.org/resource/Tri-Cities_Fever", "http://dbpedia.org/resource/Brooklyn_Bolts", "http://dbpedia.org/resource/St._Louis_Ramblers", "http://dbpedia.org/resource/St._Louis_Gunners", "http://dbpedia.org/resource/Your_Call_Football", "http://dbpedia.org/resource/Dayton_Triangles", "http://dbpedia.org/resource/Miami_Seahawks", "http://dbpedia.org/resource/Brooklyn_Dodgers_(NFL)", "http://dbpedia.org/resource/Chicago_Cardinals", "http://dbpedia.org/resource/Arizona_Rattlers", "http://dbpedia.org/resource/New_York/New_Jersey_Hitmen", "http://dbpedia.org/resource/Atlanta_Legends", "http://dbpedia.org/resource/Philadelphia_Bell", "http://dbpedia.org/resource/Oakland_Invaders", "http://dbpedia.org/resource/Michigan_Panthers", "http://dbpedia.org/resource/Virginia_Destroyers", "http://dbpedia.org/resource/Jacksonville_Express", "http://dbpedia.org/resource/Jacksonville_Sharks", "http://dbpedia.org/resource/Orlando_Renegades", "http://dbpedia.org/resource/Memphis_Maniax", "http://dbpedia.org/resource/Panasonic_Impulse", "http://dbpedia.org/resource/Baltimore_Colts", "http://dbpedia.org/resource/Frankford_Yellow_Jackets", "http://dbpedia.org/resource/Cleveland_Bulldogs", "http://dbpedia.org/resource/Canton_Bulldogs", "http://dbpedia.org/resource/Erie_Vets", "http://dbpedia.org/resource/Denver_Dynamite_(arena_football)", "http://dbpedia.org/resource/Charlotte_Rage", "http://dbpedia.org/resource/New_England_Steamrollers", "http://dbpedia.org/resource/Buffalo_Bills_(AAFC)", "http://dbpedia.org/resource/Chicago_Rockets", "http://dbpedia.org/resource/Rhein_Fire_(NFL_Europe)", "http://dbpedia.org/resource/Sioux_City_Bandits", "http://dbpedia.org/resource/Memphis_Showboats", "http://dbpedia.org/resource/Marion_Blue_Racers", "http://dbpedia.org/resource/Portsmouth_Spartans", "http://dbpedia.org/resource/Cincinnati_Reds_(NFL)", "http://dbpedia.org/resource/1956_Detroit_Lions_season", "http://dbpedia.org/resource/Tampa_Bay_Bandits", "http://dbpedia.org/resource/Akron_Pros", "http://dbpedia.org/resource/Boston_Shamrocks_(AFL)", "http://dbpedia.org/resource/Los_Angeles_Dons", "http://dbpedia.org/resource/Denver_Gold", "http://dbpedia.org/resource/Los_Angeles_Xtreme", "http://dbpedia.org/resource/Spring_Football_League", "http://dbpedia.org/resource/Houston_Gamblers", "http://dbpedia.org/resource/New_Orleans_Breakers_(2022)", "http://dbpedia.org/resource/Boston_Yanks", "http://dbpedia.org/resource/Los_Angeles_Bulldogs", "http://dbpedia.org/resource/Philadelphia_Soul", "http://dbpedia.org/resource/Los_Angeles_Avengers", "http://dbpedia.org/resource/Los_Angeles_Express_(USFL)", "http://dbpedia.org/resource/Portland_Breakers", "http://dbpedia.org/resource/Boston_Breakers", "http://dbpedia.org/resource/Memphis_Express", "http://dbpedia.org/resource/All_American_Football_League", "http://dbpedia.org/resource/Cologne_Centurions_(NFL_Europe)", "http://dbpedia.org/resource/Berlin_Thunder_(NFL_Europe)", "http://dbpedia.org/resource/Cleveland_Thunderbolts", "http://dbpedia.org/resource/New_York/New_Jersey_Knights", "http://dbpedia.org/resource/Staten_Island_Stapletons", "http://dbpedia.org/resource/St._P\u00f6lten_Invaders", "http://dbpedia.org/resource/Seattle_Dragons", "http://dbpedia.org/resource/Massachusetts_Marauders", "http://dbpedia.org/resource/Kentucky_Drillers", "http://dbpedia.org/resource/New_Orleans_VooDoo", "http://dbpedia.org/resource/History_of_the_Washington_Commanders", "http://dbpedia.org/resource/San_Antonio_Wings", "http://dbpedia.org/resource/Chicago_Fire_(WFL)", "http://dbpedia.org/resource/Chicago_Winds", "http://dbpedia.org/resource/Pittsburgh_Power", "http://dbpedia.org/resource/Cleveland_Gladiators", "http://dbpedia.org/resource/Shreveport_Knights", "http://dbpedia.org/resource/Colorado_Crush", "http://dbpedia.org/resource/Carolina_Cobras", "http://dbpedia.org/resource/Carolina_Speed", "http://dbpedia.org/resource/St._Louis_Cardinals_(NFL)", "http://dbpedia.org/resource/San_Diego_Fleet", "http://dbpedia.org/resource/Jacksonville_Tomcats", "http://dbpedia.org/resource/Salt_Lake_Stallions", "http://dbpedia.org/resource/History_of_the_Indianapolis_Colts", "http://dbpedia.org/resource/Georgia_Rampage", "http://dbpedia.org/resource/Washington_Valor", "http://dbpedia.org/resource/Portland_Steel", "http://dbpedia.org/resource/Iowa_Barnstormers", "http://dbpedia.org/resource/Wyoming_Cavalry", "http://dbpedia.org/resource/Spokane_Shock", "http://dbpedia.org/resource/History_of_the_Tennessee_Titans", "http://dbpedia.org/resource/Charlotte_Hornets_(WFL)", "http://dbpedia.org/resource/Southern_California_Sun", "http://dbpedia.org/resource/Amsterdam_Admirals", "http://dbpedia.org/resource/Gold_Coast_Titans", "http://dbpedia.org/resource/Parramatta_Eels", "http://dbpedia.org/resource/Bismarck_Bucks", "http://dbpedia.org/resource/Dallas_Texans_(arena)", "http://dbpedia.org/resource/London_Monarchs", "http://dbpedia.org/resource/St._Louis_BattleHawks", "http://dbpedia.org/resource/Birmingham_Barracudas", "http://dbpedia.org/resource/Birmingham_Stallions", "http://dbpedia.org/resource/Pacific_Coast_Professional_Football_League", "http://dbpedia.org/resource/Chicago_Slaughter", "http://dbpedia.org/resource/Brooklyn_Lions_/_Horsemen_(1926)", "http://dbpedia.org/resource/New_Jersey_Generals", "http://dbpedia.org/resource/Sacramento_Surge", "http://dbpedia.org/resource/Kentucky_Wildcats_football", "http://dbpedia.org/resource/Baltimore_Colts_(1947\u20131950)", "http://dbpedia.org/resource/Texas_Revolution_(indoor_football)", "http://dbpedia.org/resource/CenTex_Cavalry", "http://dbpedia.org/resource/Sioux_Falls_Storm", "http://dbpedia.org/resource/Rio_Grande_Valley_Dorados", "http://dbpedia.org/resource/Rio_Grande_Valley_Magic", "http://dbpedia.org/resource/Nebraska_Danger", "http://dbpedia.org/resource/Fan_Controlled_Football", "http://dbpedia.org/resource/New_York_Yankees_(AAFC)", "http://dbpedia.org/resource/The_Marshals_(NIFL)", "http://dbpedia.org/resource/Cincinnati_Commandos", "http://dbpedia.org/resource/Cleveland_Rams", "http://dbpedia.org/resource/Florida_Blazers", "http://dbpedia.org/resource/Cologne_Centurions_(ELF)", "http://dbpedia.org/resource/Jacksonville_Bulls", "http://dbpedia.org/resource/Pottsville_Maroons", "http://dbpedia.org/resource/Buffalo_Indians", "http://dbpedia.org/resource/Duluth_Eskimos", "http://dbpedia.org/resource/Milwaukee_Badgers", "http://dbpedia.org/resource/Birmingham_Vulcans", "http://dbpedia.org/resource/Clifton_Heights_Orange_&_Black", "http://dbpedia.org/resource/Atlantic_City_Tornadoes", "http://dbpedia.org/resource/Paterson_Night_Hawks", "http://dbpedia.org/resource/Upper_Darby_Greenbacks", "http://dbpedia.org/resource/Bloomington_Edge", "http://dbpedia.org/resource/Albany_Empire_(AFL)", "http://dbpedia.org/resource/Elecom_Kobe_Finies", "http://dbpedia.org/resource/Birmingham_Stallions_(2022)", "http://dbpedia.org/resource/Wichita_Falls_Nighthawks", "http://dbpedia.org/resource/Milwaukee_Mustangs_(2009\u20132012)", "http://dbpedia.org/resource/Bergamo_Lions", "http://dbpedia.org/resource/Evansville_BlueCats", "http://dbpedia.org/resource/Ottawa_Renegades", "http://dbpedia.org/resource/Raleigh\u2013Durham_Skyhawks", "http://dbpedia.org/resource/Columbus_Destroyers", "http://dbpedia.org/resource/Tampa_Bay_Bandits_(2022)", "http://dbpedia.org/resource/Racine_Legion", "http://dbpedia.org/resource/San_Antonio_Riders", "http://dbpedia.org/resource/Providence_Steamrollers_(NFL)", "http://dbpedia.org/resource/Oorang_Indians", "http://dbpedia.org/resource/Sacramento_Gold_Miners", "http://dbpedia.org/resource/San_Antonio_Texans", "http://dbpedia.org/resource/San_Jose_SaberCats", "http://dbpedia.org/resource/Berlin_Adler", "http://dbpedia.org/resource/Hamburg_Sea_Devils_(NFL_Europe)", "http://dbpedia.org/resource/Dresden_Monarchs", "http://dbpedia.org/resource/Vienna_Vikings", "http://dbpedia.org/resource/Omaha_Beef", "http://dbpedia.org/resource/Fort_Wayne_FireHawks", "http://dbpedia.org/resource/San_Diego_Strike_Force", "http://dbpedia.org/resource/Birmingham_Iron", "http://dbpedia.org/resource/Utah_Blaze", "http://dbpedia.org/resource/Istanbul_Rams", "http://dbpedia.org/resource/Barcelona_Dragons_(NFL_Europe)", "http://dbpedia.org/resource/Newark_Bears_(AFL)", "http://dbpedia.org/resource/Oglethorpe_Stormy_Petrels_football", "http://dbpedia.org/resource/Michigan_Wolverines_football", "http://dbpedia.org/resource/Orlando_Predators", "http://dbpedia.org/resource/Chicago_Blitz", "http://dbpedia.org/resource/San_Jose_Apaches", "http://dbpedia.org/resource/Arkansas_Stars", "http://dbpedia.org/resource/Montgomery_Bears", "http://dbpedia.org/resource/Las_Vegas_Outlaws_(XFL)", "http://dbpedia.org/resource/El_Toro_Marines", "http://dbpedia.org/resource/San_Diego_Bombers", "http://dbpedia.org/resource/Fort_Worth_Cavalry", "http://dbpedia.org/resource/Omaha_Mammoths", "http://dbpedia.org/resource/1979_NFL_season", "http://dbpedia.org/resource/1981_NFL_season", "http://dbpedia.org/resource/San_Antonio_Gunslingers_(USFL_team)", "http://dbpedia.org/resource/Los_Angeles_Wildcats_(XFL)", "http://dbpedia.org/resource/Florida_Bobcats", "http://dbpedia.org/resource/Chicago_Enforcers", "http://dbpedia.org/resource/Amarillo_Venom", "http://dbpedia.org/resource/DC_Defenders", "http://dbpedia.org/resource/Jersey_Jays", "http://dbpedia.org/resource/Bridgeport_Jets", "http://dbpedia.org/resource/2013_UIFL_season", "http://dbpedia.org/resource/Northern_Kentucky_River_Monsters", "http://dbpedia.org/resource/Owensboro_Rage", "http://dbpedia.org/resource/Huntington_Hammer", "http://dbpedia.org/resource/New_York_Yanks", "http://dbpedia.org/resource/Hammond_Pros", "http://dbpedia.org/resource/Chicago_Tigers", "http://dbpedia.org/resource/Toledo_Maroons", "http://dbpedia.org/resource/Hartford_Blues", "http://dbpedia.org/resource/Kansas_City_Cowboys_(NFL)", "http://dbpedia.org/resource/Orange/Newark_Tornadoes", "http://dbpedia.org/resource/1988_CFL_season", "http://dbpedia.org/resource/The_Hawaiians_(WFL)", "http://dbpedia.org/resource/Birmingham_Thunderbolts", "http://dbpedia.org/resource/Detroit_(1920s_NFL_teams)", "http://dbpedia.org/resource/Columbus_Panhandles", "http://dbpedia.org/resource/Buffalo_team_(NFL)", "http://dbpedia.org/resource/Minneapolis_Marines/Red_Jackets", "http://dbpedia.org/resource/Newtown_Jets", "http://dbpedia.org/resource/San_Antonio_Matadors", "http://dbpedia.org/resource/Ohio_Cannon", "http://dbpedia.org/resource/FCF_Beasts", "http://dbpedia.org/resource/M\u00f6nchengladbach_Mavericks", "http://dbpedia.org/resource/Kiel_Baltic_Hurricanes", "http://dbpedia.org/resource/London_Olympians", "http://dbpedia.org/resource/IBM_Big_Blue", "http://dbpedia.org/resource/Union_Quakers_of_Philadelphia", "http://dbpedia.org/resource/Rochester_Jeffersons", "http://dbpedia.org/resource/Tampa_Cardinals", "http://dbpedia.org/resource/Cleveland_Tigers_(NFL)", "http://dbpedia.org/resource/Rock_Island_Independents", "http://dbpedia.org/resource/Chicago_Bulls_(AFL)", "http://dbpedia.org/resource/New_York_Dragons", "http://dbpedia.org/resource/Columbus_Bullies", "http://dbpedia.org/resource/Massachusetts_Pirates", "http://dbpedia.org/resource/Columbus_Lions", "http://dbpedia.org/resource/West_Virginia_State_University", "http://dbpedia.org/resource/Jacksonville_Sharks_(WFL)", "http://dbpedia.org/resource/Montreal_Machine", "http://dbpedia.org/resource/Birmingham_Fire", "http://dbpedia.org/resource/San_Diego_State_Aztecs", "http://dbpedia.org/resource/Bossier\u2013Shreveport_Battle_Wings", "http://dbpedia.org/resource/Lafayette_Roughnecks", "http://dbpedia.org/resource/Lake_Charles_Land_Sharks", "http://dbpedia.org/resource/New_Orleans_Thunder", "http://dbpedia.org/resource/Louisiana_Swashbucklers", "http://dbpedia.org/resource/Baltimore_Stallions", "http://dbpedia.org/resource/Mobile_Admirals", "http://dbpedia.org/resource/Union_Club_of_Phoenixville", "http://dbpedia.org/resource/Massillon_Tigers", "http://dbpedia.org/resource/Youngstown_Patricians", "http://dbpedia.org/resource/History_of_the_New_England_Patriots", "http://dbpedia.org/resource/History_of_the_Kansas_City_Chiefs", "http://dbpedia.org/resource/Memphis_Southmen", "http://dbpedia.org/resource/St._Louis_Cardinals", "http://dbpedia.org/resource/Portland_Loggers", "http://dbpedia.org/resource/Orange_County_Ramblers", "http://dbpedia.org/resource/Grand_Rapids_Rampage", "http://dbpedia.org/resource/Memphis_Mad_Dogs", "http://dbpedia.org/resource/Birmingham_Americans", "http://dbpedia.org/resource/Continental_Football_League", "http://dbpedia.org/resource/Portland_Thunder_(WFL)"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/publisher> <http://dbpedia.org/resource/Interplay_Entertainment> . ?x <http://dbpedia.org/property/genre> ?uri . }"}, "answers": ["144"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Goya_Awards> <http://dbpedia.org/property/awards> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/grandsire> <http://dbpedia.org/resource/The_Wild> . ?x <http://dbpedia.org/property/race> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/channel> <http://dbpedia.org/resource/BBC_HD> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Science_fictionShow>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/opponent> <http://dbpedia.org/resource/Tom_McLaury> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/locatedInArea> <http://dbpedia.org/resource/California> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Bridge>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pat_Kirkwood_(racing_driver)> <http://dbpedia.org/property/birthplace> ?x . ?x <http://dbpedia.org/ontology/largestCity> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Houston"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/team> <http://dbpedia.org/resource/Phoenix_Suns> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/BasketballPlayer>}"}, "answers": ["http://dbpedia.org/resource/Alton_Ford", "http://dbpedia.org/resource/Alvan_Adams", "http://dbpedia.org/resource/Alvin_Scott", "http://dbpedia.org/resource/Alvin_Sims", "http://dbpedia.org/resource/Amar'e_Stoudemire", "http://dbpedia.org/resource/Andre_Barrett", "http://dbpedia.org/resource/Andrew_Lang_(basketball)", "http://dbpedia.org/resource/Damian_Jones_(basketball)", "http://dbpedia.org/resource/Damion_Lee", "http://dbpedia.org/resource/Dan_Langhi", "http://dbpedia.org/resource/Dan_Majerle", "http://dbpedia.org/resource/Daniel_Santiago", "http://dbpedia.org/resource/Danny_Ainge", "http://dbpedia.org/resource/Danny_Manning", "http://dbpedia.org/resource/Danny_Schayes", "http://dbpedia.org/resource/Danuel_House", "http://dbpedia.org/resource/Dario_\u0160ari\u0107", "http://dbpedia.org/resource/Dave_Lattin", "http://dbpedia.org/resource/David_Thirdkill", "http://dbpedia.org/resource/David_Wood_(basketball)", "http://dbpedia.org/resource/Davon_Reed", "http://dbpedia.org/resource/De'Anthony_Melton", "http://dbpedia.org/resource/Deandre_Ayton", "http://dbpedia.org/resource/Dee_Brown_(basketball,_born_1984)", "http://dbpedia.org/resource/Viacheslav_Kravtsov", "http://dbpedia.org/resource/Vince_Carter", "http://dbpedia.org/resource/Vinny_Del_Negro", "http://dbpedia.org/resource/Walt_Wesley", "http://dbpedia.org/resource/Walter_Davis_(basketball)", "http://dbpedia.org/resource/Walter_McCarty", "http://dbpedia.org/resource/Dennis_Awtrey", "http://dbpedia.org/resource/Dennis_Johnson", "http://dbpedia.org/resource/Dennis_Scott_(basketball)", "http://dbpedia.org/resource/Derrick_Jones_Jr.", "http://dbpedia.org/resource/Devin_Booker", "http://dbpedia.org/resource/Devin_Durrant", "http://dbpedia.org/resource/Dexter_Boney", "http://dbpedia.org/resource/Diante_Garrett", "http://dbpedia.org/resource/Dick_Snyder", "http://dbpedia.org/resource/Dick_Van_Arsdale", "http://dbpedia.org/resource/Dijon_Thompson", "http://dbpedia.org/resource/Dionte_Christmas", "http://dbpedia.org/resource/Alan_Williams_(basketball)", "http://dbpedia.org/resource/Alando_Tucker", "http://dbpedia.org/resource/Alec_Peters", "http://dbpedia.org/resource/Alex_Len", "http://dbpedia.org/resource/Alex_Stivrins", "http://dbpedia.org/resource/Art_Harris", "http://dbpedia.org/resource/Bayard_Forrest", "http://dbpedia.org/resource/Ben_Davis_(basketball)", "http://dbpedia.org/resource/Bernard_Thompson", "http://dbpedia.org/resource/Frank_Johnson_(basketball)", "http://dbpedia.org/resource/Frank_Kaminsky", "http://dbpedia.org/resource/Fred_Saunders", "http://dbpedia.org/resource/Fred_Taylor_(basketball_player)", "http://dbpedia.org/resource/Gabriel_Lundberg", "http://dbpedia.org/resource/Gail_Goodrich", "http://dbpedia.org/resource/Gani_Lawal", "http://dbpedia.org/resource/Gar_Heard", "http://dbpedia.org/resource/Garret_Siler", "http://dbpedia.org/resource/Gary_Gregor", "http://dbpedia.org/resource/Gary_Melchionni", "http://dbpedia.org/resource/George_King_(basketball,_born_1994)", "http://dbpedia.org/resource/George_McCloud", "http://dbpedia.org/resource/George_Wilson_(basketball,_born_1942)", "http://dbpedia.org/resource/Georgi_Glouchkov", "http://dbpedia.org/resource/Hakim_Warrick", "http://dbpedia.org/resource/Hamed_Haddadi", "http://dbpedia.org/resource/Sam_Cassell", "http://dbpedia.org/resource/T._J._Warren", "http://dbpedia.org/resource/T._R._Dunn", "http://dbpedia.org/resource/Tariq_Owens", "http://dbpedia.org/resource/Taylor_Griffin", "http://dbpedia.org/resource/Ted_McClain", "http://dbpedia.org/resource/Wayman_Tisdale", "http://dbpedia.org/resource/Wesley_Johnson_(basketball)", "http://dbpedia.org/resource/Wesley_Person", "http://dbpedia.org/resource/William_Bedford_(basketball)", "http://dbpedia.org/resource/Anthony_Tolliver", "http://dbpedia.org/resource/Antonio_Lang", "http://dbpedia.org/resource/Antonio_McDyess", "http://dbpedia.org/resource/Archie_Goodwin_(basketball)", "http://dbpedia.org/resource/Armen_Gilliam", "http://dbpedia.org/resource/Aron_Baynes", "http://dbpedia.org/resource/Emanuel_Terry", "http://dbpedia.org/resource/Eric_Bledsoe", "http://dbpedia.org/resource/Eric_Moreland", "http://dbpedia.org/resource/Eric_Piatkowski", "http://dbpedia.org/resource/Gerald_Brown_(basketball)", "http://dbpedia.org/resource/Gerald_Green", "http://dbpedia.org/resource/Goran_Dragi\u0107", "http://dbpedia.org/resource/Gordan_Giri\u010dek", "http://dbpedia.org/resource/Marcin_Gortat", "http://dbpedia.org/resource/Marcus_Banks", "http://dbpedia.org/resource/Marcus_Morris", "http://dbpedia.org/resource/Marcus_Thornton_(basketball,_born_1987)", "http://dbpedia.org/resource/Mario_Elie", "http://dbpedia.org/resource/Mark_Bryant_(basketball)", "http://dbpedia.org/resource/Mark_Davis_(basketball,_born_1963)", "http://dbpedia.org/resource/Mark_West_(basketball)", "http://dbpedia.org/resource/Markieff_Morris", "http://dbpedia.org/resource/Marko_Mili\u010d", "http://dbpedia.org/resource/Marquese_Chriss", "http://dbpedia.org/resource/Marty_Byrnes", "http://dbpedia.org/resource/Terrence_Rencher", "http://dbpedia.org/resource/Boris_Diaw", "http://dbpedia.org/resource/Brandan_Wright", "http://dbpedia.org/resource/Brandon_Knight_(basketball)", "http://dbpedia.org/resource/Brevin_Knight", "http://dbpedia.org/resource/Brian_Grant", "http://dbpedia.org/resource/Brian_Skinner", "http://dbpedia.org/resource/Brooks_Thompson", "http://dbpedia.org/resource/Bryce_Cotton", "http://dbpedia.org/resource/Jackson_Vroman", "http://dbpedia.org/resource/Jahidi_White", "http://dbpedia.org/resource/Jake_Tsakalidis", "http://dbpedia.org/resource/Jake_Voskuhl", "http://dbpedia.org/resource/Jalen_Lecque", "http://dbpedia.org/resource/Jalen_Rose", "http://dbpedia.org/resource/Jalen_Smith", "http://dbpedia.org/resource/Jamal_Crawford", "http://dbpedia.org/resource/James_Bailey_(basketball)", "http://dbpedia.org/resource/James_Edwards_(basketball)", "http://dbpedia.org/resource/James_Jones_(basketball,_born_1980)", "http://dbpedia.org/resource/Jared_Dudley", "http://dbpedia.org/resource/Jared_Harper", "http://dbpedia.org/resource/Jarell_Eddie", "http://dbpedia.org/resource/Jarron_Collins", "http://dbpedia.org/resource/Jason_Kidd", "http://dbpedia.org/resource/Jason_Richardson", "http://dbpedia.org/resource/Jawun_Evans", "http://dbpedia.org/resource/Jay_Humphries", "http://dbpedia.org/resource/Keith_Erickson", "http://dbpedia.org/resource/Kelly_Oubre_Jr.", "http://dbpedia.org/resource/Kendall_Marshall", "http://dbpedia.org/resource/Kenny_Battle", "http://dbpedia.org/resource/Kenny_Gattison", "http://dbpedia.org/resource/Matt_Barnes", "http://dbpedia.org/resource/Maurice_Lucas", "http://dbpedia.org/resource/McCoy_McLemore", "http://dbpedia.org/resource/Mel_Counts", "http://dbpedia.org/resource/Raja_Bell", "http://dbpedia.org/resource/Randy_Brown_(basketball)", "http://dbpedia.org/resource/Randy_Livingston", "http://dbpedia.org/resource/Ray_Spalding", "http://dbpedia.org/resource/Reggie_Bullock", "http://dbpedia.org/resource/Rex_Chapman", "http://dbpedia.org/resource/A.C._Green", "http://dbpedia.org/resource/A._J._Price", "http://dbpedia.org/resource/Nikoloz_Tskitishvili", "http://dbpedia.org/resource/Clem_Haskins", "http://dbpedia.org/resource/Clifford_Robinson_(basketball,_born_1966)", "http://dbpedia.org/resource/Connie_Hawkins", "http://dbpedia.org/resource/John_Jenkins_(basketball)", "http://dbpedia.org/resource/John_McCullough_(basketball)", "http://dbpedia.org/resource/John_Shumate", "http://dbpedia.org/resource/John_Wallace_(basketball)", "http://dbpedia.org/resource/John_Wetzel_(basketball)", "http://dbpedia.org/resource/Johnny_High", "http://dbpedia.org/resource/Jon_Leuer", "http://dbpedia.org/resource/Jonah_Bolden", "http://dbpedia.org/resource/Jordan_McRae", "http://dbpedia.org/resource/Josh_Childress", "http://dbpedia.org/resource/Josh_Davis_(basketball,_born_1980)", "http://dbpedia.org/resource/Josh_Gray_(basketball)", "http://dbpedia.org/resource/Josh_Jackson_(basketball)", "http://dbpedia.org/resource/Josh_Okogie", "http://dbpedia.org/resource/Jud_Buechler", "http://dbpedia.org/resource/Scott_English_(basketball)", "http://dbpedia.org/resource/Scott_Williams_(basketball)", "http://dbpedia.org/resource/Sean_Marks", "http://dbpedia.org/resource/Sean_Singletary", "http://dbpedia.org/resource/Sebastian_Telfair", "http://dbpedia.org/resource/Sedric_Toney", "http://dbpedia.org/resource/Ira_Terrell", "http://dbpedia.org/resource/Isaiah_Canaan", "http://dbpedia.org/resource/Isaiah_Thomas_(basketball)", "http://dbpedia.org/resource/Ish_Wainright", "http://dbpedia.org/resource/JaVale_McGee", "http://dbpedia.org/resource/Mo_Layton", "http://dbpedia.org/resource/Nate_Hawthorne", "http://dbpedia.org/resource/Tony_Delk", "http://dbpedia.org/resource/Tony_Dumas", "http://dbpedia.org/resource/Tony_Smith_(basketball)", "http://dbpedia.org/resource/Torrey_Craig", "http://dbpedia.org/resource/Trevor_Ariza", "http://dbpedia.org/resource/Trevor_Ruffin", "http://dbpedia.org/resource/Troy_Daniels", "http://dbpedia.org/resource/Truck_Robinson", "http://dbpedia.org/resource/Ty-Shon_Alexander", "http://dbpedia.org/resource/Ty_Jerome", "http://dbpedia.org/resource/Tyler_Ennis_(basketball)", "http://dbpedia.org/resource/Tyler_Johnson_(basketball)", "http://dbpedia.org/resource/Tyler_Ulis", "http://dbpedia.org/resource/Tyrone_Corbin", "http://dbpedia.org/resource/Tyson_Chandler", "http://dbpedia.org/resource/Aaron_Brooks_(basketball)", "http://dbpedia.org/resource/Aaron_Holiday", "http://dbpedia.org/resource/Aaron_Swinson", "http://dbpedia.org/resource/Abdel_Nader", "http://dbpedia.org/resource/Butch_Feher", "http://dbpedia.org/resource/Cameron_Johnson", "http://dbpedia.org/resource/Cameron_Payne", "http://dbpedia.org/resource/Cedric_Ceballos", "http://dbpedia.org/resource/Cezary_Tryba\u0144ski", "http://dbpedia.org/resource/Chandler_Hutchison", "http://dbpedia.org/resource/Channing_Frye", "http://dbpedia.org/resource/Charles_Barkley", "http://dbpedia.org/resource/Charles_Jones_(basketball,_born_1962)", "http://dbpedia.org/resource/Charles_Pittman_(basketball)", "http://dbpedia.org/resource/Charlie_Bell_(basketball)", "http://dbpedia.org/resource/Charlie_Scott_(basketball)", "http://dbpedia.org/resource/Chase_Budinger", "http://dbpedia.org/resource/Cheick_Diallo", "http://dbpedia.org/resource/Chris_Carr_(basketball)", "http://dbpedia.org/resource/Chris_Morris_(basketball)", "http://dbpedia.org/resource/Chris_Paul", "http://dbpedia.org/resource/Chucky_Brown", "http://dbpedia.org/resource/Steve_Kerr", "http://dbpedia.org/resource/Steve_Nash", "http://dbpedia.org/resource/Steven_Hunter", "http://dbpedia.org/resource/Stromile_Swift", "http://dbpedia.org/resource/Casey_Jacobsen", "http://dbpedia.org/resource/Horacio_Llamas", "http://dbpedia.org/resource/Howard_Eisley", "http://dbpedia.org/resource/Lamar_Green", "http://dbpedia.org/resource/Landry_Shamet", "http://dbpedia.org/resource/Langston_Galloway", "http://dbpedia.org/resource/Larry_Nance", "http://dbpedia.org/resource/Leandro_Barbosa", "http://dbpedia.org/resource/Don_Buse", "http://dbpedia.org/resource/Don_MacLean_(basketball)", "http://dbpedia.org/resource/Donnell_Harvey", "http://dbpedia.org/resource/Dragan_Bender", "http://dbpedia.org/resource/Duane_Cooper", "http://dbpedia.org/resource/Duane_Washington_Jr.", "http://dbpedia.org/resource/Dudley_Bradley", "http://dbpedia.org/resource/Dwayne_Jones_(basketball)", "http://dbpedia.org/resource/E'Twaun_Moore", "http://dbpedia.org/resource/Skeeter_Henry", "http://dbpedia.org/resource/Smush_Parker", "http://dbpedia.org/resource/Sonny_Weems", "http://dbpedia.org/resource/Corie_Blount", "http://dbpedia.org/resource/Corky_Calhoun", "http://dbpedia.org/resource/Cory_Jefferson", "http://dbpedia.org/resource/Courtney_Sims", "http://dbpedia.org/resource/Craig_Dykema", "http://dbpedia.org/resource/Curtis_Perry", "http://dbpedia.org/resource/D._J._Strawberry", "http://dbpedia.org/resource/Dale_Schlueter", "http://dbpedia.org/resource/Grant_Gondrezick", "http://dbpedia.org/resource/Grant_Hill", "http://dbpedia.org/resource/Greg_Grant_(basketball,_born_1966)", "http://dbpedia.org/resource/Greg_Griffin", "http://dbpedia.org/resource/Greg_Howard_(basketball)", "http://dbpedia.org/resource/Greg_Jackson_(basketball,_born_1952)", "http://dbpedia.org/resource/Greg_Monroe", "http://dbpedia.org/resource/Hedo_T\u00fcrko\u011flu", "http://dbpedia.org/resource/M._J._Walker", "http://dbpedia.org/resource/Maciej_Lampe", "http://dbpedia.org/resource/Malcolm_Mackey", "http://dbpedia.org/resource/Rich_Kelley", "http://dbpedia.org/resource/Richard_Dumas", "http://dbpedia.org/resource/Richaun_Holmes", "http://dbpedia.org/resource/Rick_Robey", "http://dbpedia.org/resource/Ricky_Rubio", "http://dbpedia.org/resource/Ricky_Sobers", "http://dbpedia.org/resource/Robert_Archibald", "http://dbpedia.org/resource/Robert_Horry", "http://dbpedia.org/resource/Robin_Lopez", "http://dbpedia.org/resource/Rod_Foster", "http://dbpedia.org/resource/Rod_Knowles", "http://dbpedia.org/resource/Rodney_Rogers", "http://dbpedia.org/resource/Jeff_Cook_(basketball)", "http://dbpedia.org/resource/Jeff_Hornacek", "http://dbpedia.org/resource/Jeff_Webb_(basketball)", "http://dbpedia.org/resource/Jerel_McNeal", "http://dbpedia.org/resource/Jermaine_O'Neal", "http://dbpedia.org/resource/Jerrod_Mustaf", "http://dbpedia.org/resource/Jerry_Chambers", "http://dbpedia.org/resource/Jevon_Carter", "http://dbpedia.org/resource/Jim_Fox_(basketball,_born_1943)", "http://dbpedia.org/resource/Jim_Jackson_(basketball)", "http://dbpedia.org/resource/Jim_Owens_(basketball,_born_1950)", "http://dbpedia.org/resource/Jimmer_Fredette", "http://dbpedia.org/resource/Jock_Landale", "http://dbpedia.org/resource/Joe_Barry_Carroll", "http://dbpedia.org/resource/Joe_Courtney_(basketball)", "http://dbpedia.org/resource/Joe_Crispin", "http://dbpedia.org/resource/Joe_Johnson_(basketball)", "http://dbpedia.org/resource/Joe_Kleine", "http://dbpedia.org/resource/Joe_Reaves", "http://dbpedia.org/resource/Joe_Thomas_(basketball)", "http://dbpedia.org/resource/Joel_Kramer", "http://dbpedia.org/resource/John_%22Hot_Rod%22_Williams", "http://dbpedia.org/resource/John_Coker_(basketball)", "http://dbpedia.org/resource/Linton_Johnson", "http://dbpedia.org/resource/Neal_Walk", "http://dbpedia.org/resource/Negele_Knight", "http://dbpedia.org/resource/Neil_Johnson_(basketball)", "http://dbpedia.org/resource/Nick_Vanos", "http://dbpedia.org/resource/Penny_Hardaway", "http://dbpedia.org/resource/Phil_Lumpkin", "http://dbpedia.org/resource/Phil_Pressey", "http://dbpedia.org/resource/Quentin_Richardson", "http://dbpedia.org/resource/Quincy_Acy", "http://dbpedia.org/resource/Rafael_Addison", "http://dbpedia.org/resource/Tim_Kempton", "http://dbpedia.org/resource/Tim_Legler", "http://dbpedia.org/resource/Tim_Perry", "http://dbpedia.org/resource/Tim_Thomas_(basketball)", "http://dbpedia.org/resource/Toby_Bailey", "http://dbpedia.org/resource/Todd_Day", "http://dbpedia.org/resource/Tom_Chambers_(basketball)", "http://dbpedia.org/resource/Tom_Gugliotta", "http://dbpedia.org/resource/Tom_Van_Arsdale", "http://dbpedia.org/resource/Winston_Crite", "http://dbpedia.org/resource/Xavier_McDaniel", "http://dbpedia.org/resource/Earl_Barron", "http://dbpedia.org/resource/Earl_Clark", "http://dbpedia.org/resource/Earl_Williams_(basketball_player)", "http://dbpedia.org/resource/Ed_Nealy", "http://dbpedia.org/resource/Ed_Pinckney", "http://dbpedia.org/resource/Eddie_Biedenbach", "http://dbpedia.org/resource/Eddie_House", "http://dbpedia.org/resource/Eddie_Johnson_(basketball,_born_1959)", "http://dbpedia.org/resource/Elfrid_Payton_(basketball)", "http://dbpedia.org/resource/Elijah_Millsap", "http://dbpedia.org/resource/Elliot_Perry", "http://dbpedia.org/resource/Justin_Jackson_(basketball,_born_1995)", "http://dbpedia.org/resource/Loren_Meyer", "http://dbpedia.org/resource/Lorenzo_Brown", "http://dbpedia.org/resource/Lou_Amundson", "http://dbpedia.org/resource/Luc_Longley", "http://dbpedia.org/resource/Luis_Scola", "http://dbpedia.org/resource/Luke_Zeller", "http://dbpedia.org/resource/Oliver_Miller", "http://dbpedia.org/resource/Orlando_Johnson", "http://dbpedia.org/resource/Otto_Moore", "http://dbpedia.org/resource/Seth_Curry", "http://dbpedia.org/resource/Shannon_Brown", "http://dbpedia.org/resource/Shaquille_Harrison", "http://dbpedia.org/resource/Shaquille_O'Neal", "http://dbpedia.org/resource/Sharrod_Ford", "http://dbpedia.org/resource/Shavlik_Randolph", "http://dbpedia.org/resource/Shawn_Marion", "http://dbpedia.org/resource/Shawn_Respert", "http://dbpedia.org/resource/Stan_McKenzie_(basketball)", "http://dbpedia.org/resource/Stefano_Rusconi", "http://dbpedia.org/resource/Stephon_Marbury", "http://dbpedia.org/resource/Steve_Burtt_Sr.", "http://dbpedia.org/resource/Bill_Chamberlain", "http://dbpedia.org/resource/Bill_Martin_(basketball)", "http://dbpedia.org/resource/Bismack_Biyombo", "http://dbpedia.org/resource/Bo_Outlaw", "http://dbpedia.org/resource/Bob_Christian_(basketball)", "http://dbpedia.org/resource/Bob_Warlick", "http://dbpedia.org/resource/Ian_Lockhart", "http://dbpedia.org/resource/Kris_Humphries", "http://dbpedia.org/resource/Kurt_Rambis", "http://dbpedia.org/resource/Kurt_Thomas_(basketball)", "http://dbpedia.org/resource/Kyle_Macy", "http://dbpedia.org/resource/Michael_Beasley", "http://dbpedia.org/resource/Michael_Finley", "http://dbpedia.org/resource/Michael_Holton", "http://dbpedia.org/resource/Micheal_Williams", "http://dbpedia.org/resource/Micka\u00ebl_Pi\u00e9trus", "http://dbpedia.org/resource/Mikal_Bridges", "http://dbpedia.org/resource/Mike_Bantom", "http://dbpedia.org/resource/Mike_Bratz", "http://dbpedia.org/resource/Mike_Brown_(basketball,_born_1963)", "http://dbpedia.org/resource/Mike_James_(basketball,_born_1990)", "http://dbpedia.org/resource/Mike_McGee_(basketball)", "http://dbpedia.org/resource/Mike_Morrison_(basketball,_born_1967)", "http://dbpedia.org/resource/Mike_Niles", "http://dbpedia.org/resource/Mike_Sanders_(basketball)", "http://dbpedia.org/resource/Miles_Plumlee", "http://dbpedia.org/resource/Milt_Palacio", "http://dbpedia.org/resource/P._J._Tucker", "http://dbpedia.org/resource/Paris_Bass", "http://dbpedia.org/resource/Pat_Burke", "http://dbpedia.org/resource/Pat_Garrity", "http://dbpedia.org/resource/Pat_Riley", "http://dbpedia.org/resource/Patrick_Mutombo", "http://dbpedia.org/resource/Paul_McPherson", "http://dbpedia.org/resource/Paul_Shirley", "http://dbpedia.org/resource/Paul_Silas", "http://dbpedia.org/resource/Paul_Stovall", "http://dbpedia.org/resource/Paul_Westphal", "http://dbpedia.org/resource/Ron_Lee", "http://dbpedia.org/resource/Ronnie_Price", "http://dbpedia.org/resource/Rory_White", "http://dbpedia.org/resource/Rub\u00e9n_Garc\u00e9s", "http://dbpedia.org/resource/Rumeal_Robinson", "http://dbpedia.org/resource/Ryan_Anderson_(basketball,_born_1988)", "http://dbpedia.org/resource/\u017darko_\u010cabarkapa", "http://dbpedia.org/resource/Yuta_Tabuse", "http://dbpedia.org/resource/Zabian_Dowdell", "http://dbpedia.org/resource/Zoran_Dragi\u0107", "http://dbpedia.org/resource/\u00c9lie_Okobo"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/EXXV-TV> <http://dbpedia.org/ontology/licensee> ?uri } "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jimmy_Wales> <http://dbpedia.org/ontology/board> ?uri } "}, "answers": ["http://dbpedia.org/resource/Wikimedia_Foundation", "http://dbpedia.org/resource/Sunlight_Foundation", "http://dbpedia.org/resource/Creative_Commons", "http://dbpedia.org/resource/Guardian_Media_Group", "http://dbpedia.org/resource/MIT_Center_for_Collective_Intelligence"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/associatedBand> <http://dbpedia.org/resource/Steve_Winwood> . ?uri <http://dbpedia.org/property/employer> ?x . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/associatedBand> <http://dbpedia.org/resource/Ziggi_Recado> . ?x <http://dbpedia.org/property/origin> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Aruba"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jovan_Vladimir> <http://dbpedia.org/property/majorShrine> ?uri } "}, "answers": ["Monastery of St Jovan Vladimir, near Elbasan, Albania"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/engineer> <http://dbpedia.org/resource/Start_+_Flug> . ?x <http://dbpedia.org/property/origin> ?uri }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/family> <http://dbpedia.org/resource/Hominidae> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Mammal>}"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/coach> <http://dbpedia.org/resource/2006_Oakland_Raiders_season> . ?x <http://dbpedia.org/ontology/formerTeam> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/The_Sarah_Jane_Adventures_Collection> <http://dbpedia.org/ontology/painter> ?uri } "}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/I_Pray_on_Christmas> <http://dbpedia.org/property/label> ?uri } "}, "answers": ["http://dbpedia.org/resource/Columbia_Records", "http://dbpedia.org/resource/Sony"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/The_Other_Side_(The_Outer_Limits)> <http://dbpedia.org/property/guests> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/hubAirport> <http://dbpedia.org/resource/Los_Angeles_International_Airport> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Airline>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Vadodara_Junction_railway_station> <http://dbpedia.org/property/line> ?uri } "}, "answers": ["http://dbpedia.org/resource/Ahmedabad\u2013Mumbai_main_line", "http://dbpedia.org/resource/New_Delhi\u2013Mumbai_main_line", "Vadodara\u2013Chhota Udaipur line", "Ahmedabad\u2013Chennai main line,", "Ahmedabad\u2013Howrah main line,"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jon_Curran> <http://dbpedia.org/ontology/college> ?uri } "}, "answers": ["http://dbpedia.org/resource/Vanderbilt_University"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/producer> <http://dbpedia.org/resource/Scott_Haran> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/breeder> <http://dbpedia.org/resource/De_La_Rose> . ?x <http://dbpedia.org/ontology/birthPlace> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Madagascar:_Operation_Penguin> <http://dbpedia.org/property/artist> ?uri } "}, "answers": ["http://dbpedia.org/resource/Hans_Zimmer"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/wineRegion> <http://dbpedia.org/resource/Michigan> . ?wineRegion ?uri }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/athletics> <http://dbpedia.org/resource/University_of_Ireland> . ?x <http://dbpedia.org/ontology/sport> ?uri }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/United_States> . ?x <http://dbpedia.org/ontology/battle> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Tandem_Computers> <http://dbpedia.org/property/founder> ?uri . <http://dbpedia.org/resource/Jim_Harris> <http://dbpedia.org/ontology/subsidiary> ?uri} "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/religion> <http://dbpedia.org/resource/The_Convent_(film)> . ?uri <http://dbpedia.org/property/author> ?x . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/monarch> <http://dbpedia.org/resource/Willem-Alexander_of_the_Netherlands> . ?uri <http://dbpedia.org/property/leaderName> ?x . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/outflow> <http://dbpedia.org/resource/Ionian_Sea> . ?x <http://dbpedia.org/ontology/cities> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/order> <http://dbpedia.org/resource/Primate> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Mammal>}"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/child> <http://dbpedia.org/resource/Marvin_Bush> . ?x <http://dbpedia.org/property/children> ?uri . }"}, "answers": ["http://dbpedia.org/resource/George_W._Bush", "http://dbpedia.org/resource/Marvin_Bush", "http://dbpedia.org/resource/Jeb_Bush", "http://dbpedia.org/resource/Dorothy_Bush_Koch", "http://dbpedia.org/resource/Neil_Bush", "http://dbpedia.org/resource/Pauline_Robinson_Bush", ""]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Elliott_Bay> <http://dbpedia.org/ontology/nearestCity> ?uri } "}, "answers": ["http://dbpedia.org/resource/Seattle"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/homeStadium> <http://dbpedia.org/resource/Riverside_Stadium> . ?x <http://dbpedia.org/property/manager> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Chris_Wilder", "http://dbpedia.org/resource/Neil_Warnock", "", "http://dbpedia.org/resource/Gareth_Southgate", "Gordon Strachan", "http://dbpedia.org/resource/Bryan_Robson", "http://dbpedia.org/resource/Tony_Pulis", "http://dbpedia.org/resource/Jonathan_Woodgate", "Neil Warnock", "http://dbpedia.org/resource/Tony_Mowbray", "http://dbpedia.org/resource/Mark_Venus", "Aitor Karanka", "http://dbpedia.org/resource/Aitor_Karanka", "http://dbpedia.org/resource/Steve_Agnew", "--03-16", "http://dbpedia.org/resource/Garry_Monk", "http://dbpedia.org/resource/Terry_Venables"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Julius_C._Burrows> <http://dbpedia.org/property/order> ?uri } "}, "answers": ["http://dbpedia.org/resource/United_States_Senator", "from Michigan"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/firstDriver> <http://dbpedia.org/resource/Mika_H\u00e4kkinen> . ?x <http://dbpedia.org/property/firstDrivers> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/archipelago> <http://dbpedia.org/resource/Papeete> . ?uri <http://dbpedia.org/property/largestTown> ?x . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/computingPlatform> <http://dbpedia.org/resource/Cross-platform> . ?x <http://dbpedia.org/ontology/developer> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/employer> <http://dbpedia.org/resource/Birdman_Enterprises> . ?x <http://dbpedia.org/property/country> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Oskar_Blues_Brewery> <http://dbpedia.org/ontology/location> ?uri } "}, "answers": ["http://dbpedia.org/resource/Colorado", "http://dbpedia.org/resource/Longmont,_Colorado"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lovelace_Medal> <http://dbpedia.org/property/awards> ?uri . <http://dbpedia.org/resource/Norbert_Wiener> <http://dbpedia.org/ontology/award> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dick_Redding> <http://dbpedia.org/ontology/birthPlace> ?uri } "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Catwoman> <http://dbpedia.org/property/characters> ?uri } "}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/hometown> <http://dbpedia.org/resource/Volos> . ?uri <http://dbpedia.org/property/music> ?x . }"}, "answers": ["http://dbpedia.org/resource/In_Good_Company_(2000_film)"]}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/service> <http://dbpedia.org/resource/Data_center> . ?x <http://dbpedia.org/property/services> ?uri }"}, "answers": ["41"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/education> <http://dbpedia.org/resource/University_of_Queensland> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}"}, "answers": ["http://dbpedia.org/resource/Walter_Heywood_Bryan", "http://dbpedia.org/resource/David_Evans_(geneticist)", "http://dbpedia.org/resource/Banchob_Sripa", "http://dbpedia.org/resource/Michelle_Luciano", "http://dbpedia.org/resource/Sarah_Medland", "http://dbpedia.org/resource/John_Harris_(biblical_scholar)"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/South_Shore_Plaza> <http://dbpedia.org/ontology/address> ?uri } "}, "answers": ["250 Granite Street,Braintree, Massachusetts, US"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Waddy_Wachtel> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": ["http://dbpedia.org/resource/Dickie_Roberts:_Former_Child_Star", "http://dbpedia.org/resource/The_Benchwarmers", "http://dbpedia.org/resource/Up_in_Smoke", "http://dbpedia.org/resource/Bucky_Larson:_Born_to_Be_a_Star", "http://dbpedia.org/resource/The_House_Bunny", "http://dbpedia.org/resource/Strange_Wilderness", "http://dbpedia.org/resource/Grandma's_Boy_(2006_film)", "http://dbpedia.org/resource/Jimi:_All_Is_by_My_Side", "http://dbpedia.org/resource/Joe_Dirt", "http://dbpedia.org/resource/Joe_Dirt_2:_Beautiful_Loser", "http://dbpedia.org/resource/Paul_Blart:_Mall_Cop"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Celluloid_Heroes> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MusicalArtist>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/writer> <http://dbpedia.org/resource/Terry_Pratchett> . ?x <http://dbpedia.org/property/subject> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/choreographer> <http://dbpedia.org/resource/Catarina_Lindgren> . ?x <http://dbpedia.org/ontology/formerPartner> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Niklas_Hogner", "http://dbpedia.org/resource/Anzhelika_Pylkina"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/managerClub> <http://dbpedia.org/resource/England_national_under-20_football_team> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/guests> <http://dbpedia.org/resource/Michael_Cristofer_(entrepreneur)> . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/lieutenant> <http://dbpedia.org/resource/Joe_Purcell> . ?x <http://dbpedia.org/ontology/president> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/majorShrine> <http://dbpedia.org/resource/Hebron> . ?x <http://dbpedia.org/ontology/veneratedIn> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Judaism", "http://dbpedia.org/resource/Bah\u00e1\u02bc\u00ed_Faith", "http://dbpedia.org/resource/Islam", "http://dbpedia.org/resource/Christianity"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/affiliates> <http://dbpedia.org/resource/Dartington_College_of_Arts> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/University>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Sune_Agerschou> <http://dbpedia.org/ontology/nationality> ?uri } "}, "answers": ["http://dbpedia.org/resource/Denmark"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Paul_Demi\u00e9\u00e9ville> <http://dbpedia.org/property/fields> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/canonizedBy> <http://dbpedia.org/resource/Pope_Paul_VI> . }"}, "answers": ["http://dbpedia.org/resource/Ambrose_Barlow", "http://dbpedia.org/resource/David_Lewis_(Jesuit_priest)", "http://dbpedia.org/resource/Denis_Ssebuggwawo_Wasswa", "http://dbpedia.org/resource/Vicenta_Mar\u00eda_L\u00f3pez_i_Vicu\u00f1a", "http://dbpedia.org/resource/Alban_Roe", "http://dbpedia.org/resource/Alexander_Briant", "http://dbpedia.org/resource/Benildus_Roman\u00e7on", "http://dbpedia.org/resource/Saint_Kizito", "http://dbpedia.org/resource/Anne_Line", "http://dbpedia.org/resource/Andrew_Kaggwa", "http://dbpedia.org/resource/Margaret_Clitherow", "http://dbpedia.org/resource/Margaret_Ward", "http://dbpedia.org/resource/Maria_Soledad_Torres_y_Acosta", "http://dbpedia.org/resource/Teresa_Jornet_Ibars", "http://dbpedia.org/resource/Polydore_Plasden", "http://dbpedia.org/resource/John_Macias", "http://dbpedia.org/resource/Thomas_Garnet", "http://dbpedia.org/resource/Adolphus_Ludigo-Mkasa", "http://dbpedia.org/resource/Eustace_White", "http://dbpedia.org/resource/Ralph_Sherwin", "http://dbpedia.org/resource/Robert_Lawrence_(martyr)", "http://dbpedia.org/resource/Augustine_Webster", "http://dbpedia.org/resource/John_Payne_(martyr)", "http://dbpedia.org/resource/John_Rigby_(martyr)", "http://dbpedia.org/resource/John_Southworth_(martyr)", "http://dbpedia.org/resource/John_Stone_(martyr)", "http://dbpedia.org/resource/Juan_Garc\u00eda_L\u00f3pez-Rico", "http://dbpedia.org/resource/Edmund_Gennings", "http://dbpedia.org/resource/John_Jones_(martyr)", "http://dbpedia.org/resource/John_Kemble_(martyr)", "http://dbpedia.org/resource/John_Roberts_(martyr)", "http://dbpedia.org/resource/John_Wall_(priest_and_martyr)", "http://dbpedia.org/resource/John_Houghton_(martyr)", "http://dbpedia.org/resource/Achilleus_Kewanuka", "http://dbpedia.org/resource/Charbel_Makhlouf", "http://dbpedia.org/resource/Charles_Lwanga", "http://dbpedia.org/resource/Swithun_Wells", "http://dbpedia.org/resource/Beatrice_of_Silva", "http://dbpedia.org/resource/Laurence_Humphreys", "http://dbpedia.org/resource/Nicholas_Owen_(Jesuit)", "http://dbpedia.org/resource/Joseph_Mukasa_Balikuddembe", "http://dbpedia.org/resource/Nicholas_Tavelic", "http://dbpedia.org/resource/Henry_Morse", "http://dbpedia.org/resource/Henry_Walpole", "http://dbpedia.org/resource/Richard_Gwyn", "http://dbpedia.org/resource/Robert_Southwell_(priest)", "http://dbpedia.org/resource/Ambrosio_Kibuuka", "http://dbpedia.org/resource/John_Almond_(martyr)", "http://dbpedia.org/resource/Leonardo_Murialdo", "http://dbpedia.org/resource/Rafaela_Porras_Ayll\u00f3n", "http://dbpedia.org/resource/Th\u00e9r\u00e8se_Couderc", "http://dbpedia.org/resource/Edmund_Campion", "http://dbpedia.org/resource/Elizabeth_Ann_Seton", "http://dbpedia.org/resource/Julie_Billiart", "http://dbpedia.org/resource/Oliver_Plunkett", "http://dbpedia.org/resource/Dorothea_of_Montau", "http://dbpedia.org/resource/Edmund_Arrowsmith", "http://dbpedia.org/resource/Matiya_Mulumba", "http://dbpedia.org/resource/John_of_\u00c1vila__John_of_\u00c1vila__1"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/developer> <http://dbpedia.org/resource/The_GNOME_Project> . ?uri <http://dbpedia.org/property/programmingLanguage> ?x . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/architect> <http://dbpedia.org/resource/Francis_Palmer_Smith> . ?uri <http://dbpedia.org/property/location> ?x . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bobby_Skinstad> <http://dbpedia.org/ontology/school> ?uri } "}, "answers": ["http://dbpedia.org/resource/Hilton_College_(South_Africa)"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/name> <http://dbpedia.org/resource/Alabama_Crimson_Tide> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/University>}"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/religion> <http://dbpedia.org/resource/Ethics> . ?x <http://dbpedia.org/ontology/deathPlace> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/movement> <http://dbpedia.org/resource/Jazz> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/narrated> <http://dbpedia.org/resource/The_Incredible_Hulk> . ?uri <http://dbpedia.org/ontology/writer> <http://dbpedia.org/resource/Tales_of_Suspense> . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/education> <http://dbpedia.org/resource/Parsons_School_of_Design> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/deathPlace> <http://dbpedia.org/resource/Hyderabad> . ?x <http://dbpedia.org/property/party> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Majlis_Bachao_Tehreek", "INC till 2015 and TDP", "http://dbpedia.org/resource/Telugu_Desam_Party", "http://dbpedia.org/resource/Bharatiya_Janata_Party", "http://dbpedia.org/resource/Indian_National_Congress", "YSRCP", "http://dbpedia.org/resource/Janata_Dal", "http://dbpedia.org/resource/Dalit_Panther", "http://dbpedia.org/resource/Communist_Party_of_India", "http://dbpedia.org/resource/Republican_Party_of_India", "http://dbpedia.org/resource/Communist_Party_of_India_(Marxist)", "http://dbpedia.org/resource/YSR_Congress_Party", "http://dbpedia.org/resource/All_India_Muslim_League", "http://dbpedia.org/resource/Khaksar_Tehrik", "http://dbpedia.org/resource/Majlis-e-Ittehadul_Muslimeen", "http://dbpedia.org/resource/Telangana_Rashtra_Samithi", "Telugu Desam Party", "", "http://dbpedia.org/resource/Indian_Union_Muslim_League", "http://dbpedia.org/resource/All_India_Majlis-e_Ittihad_al-Muslimin", "Schedule caste student federation, President Republican Party of India", "http://dbpedia.org/resource/Jana_Sena_Party", "Bharatiya Janata Party", "Indian National Congress", "YSR Congress Party", "Independent"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/champion> <http://dbpedia.org/resource/Kansas_City,_Missouri> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/AmericanFootballLeague>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Western_Naval_Command> <http://dbpedia.org/property/garrison> ?uri } "}, "answers": ["http://dbpedia.org/resource/Mumbai", "http://dbpedia.org/resource/Maharashtra"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/successor> <http://dbpedia.org/resource/Samsu-iluna> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": ["http://dbpedia.org/resource/Hammurabi"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/city> <http://dbpedia.org/resource/Maharashtra> . ?x <http://dbpedia.org/property/athletics> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/league> <http://dbpedia.org/resource/2013_National_Premier_Leagues> . ?x <http://dbpedia.org/property/owner> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/residence> <http://dbpedia.org/resource/Beverly_Hills> . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/archipelago> <http://dbpedia.org/resource/Pacific_Ocean> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Island>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/broadcastingArea> <http://dbpedia.org/resource/North_Carolina> . ?x <http://dbpedia.org/property/broadcastArea> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/regionServed> <http://dbpedia.org/resource/Australia> . ?x <http://dbpedia.org/property/region> ?uri }"}, "answers": ["59"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/sisterStations> <http://dbpedia.org/resource/WBCQ-FM> . ?x <http://dbpedia.org/ontology/area> ?uri }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/launchSite> <http://dbpedia.org/resource/Cape_Canaveral_Air_Force_Station> . ?x <http://dbpedia.org/ontology/manufacturer> ?uri . }"}, "answers": ["331"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/cities> <http://dbpedia.org/resource/Kaliningrad> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Sea>}"}, "answers": ["http://dbpedia.org/resource/Baltic_Sea"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/designer> <http://dbpedia.org/resource/Ursula_H\u00e4nle> . ?x <http://dbpedia.org/ontology/origin> ?uri . }"}, "answers": ["http://dbpedia.org/resource/West_Germany"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/commandStructure> <http://dbpedia.org/resource/United_States_Department_of_the_Navy> } "}, "answers": ["http://dbpedia.org/resource/Assault_Craft_Unit_5", "http://dbpedia.org/resource/United_States_Marine_Corps_Military_Police", "http://dbpedia.org/resource/United_States_Marine_Corps_Reserve", "http://dbpedia.org/resource/United_States_Navy_Judge_Advocate_General's_Corps", "http://dbpedia.org/resource/United_States_Navy_Reserve", "http://dbpedia.org/resource/Master-at-arms_(United_States_Navy)", "http://dbpedia.org/resource/Bureau_of_Medicine_and_Surgery", "http://dbpedia.org/resource/Chesapeake_Bay_Flotilla"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Marvin_Bush> <http://dbpedia.org/property/children> ?x . ?x <http://dbpedia.org/ontology/parent> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Temptation_Waits> <http://dbpedia.org/ontology/recordedIn> ?uri } "}, "answers": ["http://dbpedia.org/resource/Madison,_Wisconsin", "http://dbpedia.org/resource/Wisconsin", "http://dbpedia.org/resource/Smart_Studios"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Clay_Aiken> <http://dbpedia.org/property/relatives> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Claudia_Moro> <http://dbpedia.org/ontology/award> ?x . ?x <http://dbpedia.org/property/awards> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Federal_Reserve_Bank_Building_(Seattle)> <http://dbpedia.org/ontology/address> ?uri } "}, "answers": ["Seattle,Washington", "1015 2nd Avenue"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/route> <http://dbpedia.org/resource/E39> . ?uri <http://dbpedia.org/property/destinations> <http://dbpedia.org/resource/Europe> . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/genre> <http://dbpedia.org/resource/Rhythm_and_blues> . ?x <http://dbpedia.org/property/writer> ?uri }"}, "answers": ["http://dbpedia.org/resource/Jagger/Richards", "*Allee Willis\n*Joni Sledge\n*Lisa Walden", "http://dbpedia.org/resource/Elvis_Presley", "http://dbpedia.org/resource/Otis_Blackwell", "", "Allee Willis", "Franne Golde", "http://dbpedia.org/resource/El_DeBarge", "http://dbpedia.org/resource/Jimmy_Jam_and_Terry_Lewis", "http://dbpedia.org/resource/Barry,_Robin_&_Maurice_Gibb", "Van Morrison", "Shelly Peiken, Guy Roche, LeToya Luckett, Jermaine Dupri, Ali Vaskabi-Waski-Jones and Gipp", "James Ingram, Keith Diamond", "http://dbpedia.org/resource/Rod_Temperton", "Rod Temperton", "http://dbpedia.org/resource/Amanda_Black", "Christer Kobedi", "http://dbpedia.org/resource/Jester_Hairston", "Gilbert Moorer, Bill Sheppard", "http://dbpedia.org/resource/Van_Morrison", "http://dbpedia.org/resource/Alejandro_Lerner", "Ignacio \"Kiko\" Cibrian", "Prince", "Greg Johnston, Luke McMaster, Sherry St. Germain, Scott Jacoby", "Marquis Collins, Sisq\u00f3, Rich Shelton, Loren Hill, Kevin Veney and James Travis", "Koda Kumi, her0ism \u2022 Ziggy \u2022 Melanie Fontana", "http://dbpedia.org/resource/Brian_Wilson", "http://dbpedia.org/resource/Mike_Love", "http://dbpedia.org/resource/Travis_McCoy", "http://dbpedia.org/resource/Bobby_Womack", "Harold Payne", "*Luther Vandross\n*Marcus Miller", "Alfred McCrary, Linda McCrary", "Barry Gibb", "http://dbpedia.org/resource/Rodney_Jerkins", "Anesha Birchett", "Antea Birchett", "Delisha Thomas", "Lashawn Daniels", "http://dbpedia.org/resource/Pleasure_P", "http://dbpedia.org/resource/Rico_Love", "http://dbpedia.org/resource/Jim_Jonsin", "http://dbpedia.org/resource/Bigg_D", "http://dbpedia.org/resource/Beverley_Knight", "Neville Thomas", "Pule Pheto", "Baddar Chowdhry", "R. C. Robinson", "http://dbpedia.org/resource/Sezen_Aksu", "http://dbpedia.org/resource/Maurice_White", "http://dbpedia.org/resource/Philip_Bailey", "http://dbpedia.org/resource/Giovanna_Joyce_Imbesi", "http://dbpedia.org/resource/Narada_Michael_Walden", "Shintar\u014d Hirai", "Carolyn Hedrich", "Massimiliano Cal\u00f2, Giuseppe Romanelli, Diego Calvetti", "Lisa Peters", "William Jeffrey", "Antonio Hardy, Lisa Peters, William Jeffrey", "http://dbpedia.org/resource/Arc\u00e1ngel_(singer)", "http://dbpedia.org/resource/Maluma_(singer)", "Stiven Rojas", "Kevin Mauricio Jim\u00e9nez Londo\u00f1o", "Bryan Snaider Lezcano", "Andr\u00e9s Uribe", "Joel Antonio L\u00f3pez", "http://dbpedia.org/resource/Jimi_Hendrix", "Bruce Springsteen", "http://dbpedia.org/resource/Billy_Guy", "Charles Kipps", "http://dbpedia.org/resource/Hal_David", "http://dbpedia.org/resource/Burt_Bacharach", "*Burt Bacharach\n*Hal David", "http://dbpedia.org/resource/Barry_White", "http://dbpedia.org/resource/Barry_Mann", "http://dbpedia.org/resource/Cynthia_Weil", "http://dbpedia.org/resource/Phil_Spector", "http://dbpedia.org/resource/Bobby_Charles", "Fats Domino", "Dave Bartholomew", "Kellee Patterson, MC Hammer, Maurice White, Sheldon Reynolds, Verdine White", "Julian Otto", "Misia, Toshiaki Matsumoto, Hiroshi Matsui", "Momo \"Mocha\" N", "http://dbpedia.org/resource/Robert_Lee_Parker", "http://dbpedia.org/resource/Rufus_Thomas", "http://dbpedia.org/resource/Geoff_Stephens", "http://dbpedia.org/resource/Roger_Cook_(songwriter)", "http://dbpedia.org/resource/Roger_Greenaway", "http://dbpedia.org/resource/Phil_Phillips", "http://dbpedia.org/resource/George_Khoury_(record_producer)", "http://dbpedia.org/resource/Sylvia_Moy", "http://dbpedia.org/resource/Stevie_Wonder", "http://dbpedia.org/resource/Henry_Cosby", "D-Dot Angelettie; P. Brown; Jack Knight; Ron Lawrence; Keith Murray; Robert Rans; Norma Jean Wright", "Georges Padey, Kore & Skalp, M. Pokora and Da Team", "http://dbpedia.org/resource/Ivory_Joe_Hunter", "http://dbpedia.org/resource/Thomas_McClary_(musician)", "http://dbpedia.org/resource/Paul_McCartney", "Django Reinhardt, Stephane Grappelli, MacRae, Israel Cruz", "http://dbpedia.org/resource/Carl_Sturken_and_Evan_Rogers", "Chuck Jackson, Marvin Yancy, Natalie Cole", "*Azar Lawrence\n*Beloyd Taylor\n*Maurice White", "Greg Wright", "Karin Patterson", "Vince Willis", "http://dbpedia.org/resource/Holland\u2013Dozier\u2013Holland", "http://dbpedia.org/resource/Berry_Gordy,_Jr.", "Otis Williams", "Eddie Kendricks", "http://dbpedia.org/resource/Billy_Crawford", "Koda Kumi", "http://dbpedia.org/resource/Jade_MacRae", "http://dbpedia.org/resource/Israel_(musician)", "http://dbpedia.org/resource/Eugene_Record", "http://dbpedia.org/resource/Billy_Davis_(songwriter)", "http://dbpedia.org/resource/William_%22Mickey%22_Stevenson", "http://dbpedia.org/resource/Clarence_Paul", "Barney Ales", "http://dbpedia.org/resource/Bernie_Taupin", "http://dbpedia.org/resource/Elton_John", "http://dbpedia.org/resource/Andre_3000", "http://dbpedia.org/resource/Big_Boi", "Sam Cooke", "http://dbpedia.org/resource/Cris_Morena", "http://dbpedia.org/resource/Carlos_Nilson", "http://dbpedia.org/resource/Maurice_Gibb", "http://dbpedia.org/resource/Barry_Gibb", "http://dbpedia.org/resource/Robin_Gibb", "http://dbpedia.org/resource/Frank_Wilson_(musician)", "Vincent DiMirco", "http://dbpedia.org/resource/Allen_Toussaint", "Ben Raleigh, Dave Linden", "William \"Billy\" Beck, Leroy \"Sugarfoot\" Bonner, Marshall \"Rock\" Jones, Ralph \"Pee Wee\" Middlebrooks, Marvin Pierce, Clarence \"Satch\" Satchell, James \"Diamond\" Williams", "* :de:Hans Bradtke\n* Mike Stoller", "* Jerry Leiber\n* Mike Stoller", "http://dbpedia.org/resource/Angela_Winbush", "http://dbpedia.org/resource/Ren\u00e9_Moore", "http://dbpedia.org/resource/Hitomi_(singer)", "http://dbpedia.org/resource/Faze_(musician)", "Dickie Goodman, Sal Passantino", "J.B. Jefferson, C.B. Simmons, R. Roebuck", "Jefferson, Roebuck", "Jefferson, Simmons, Roebuck", "http://dbpedia.org/resource/Joe_Tex", "http://dbpedia.org/resource/Buddy_Killen", "http://dbpedia.org/resource/Warren_%22Pete%22_Moore", "http://dbpedia.org/resource/Marv_Tarplin", "http://dbpedia.org/resource/Smokey_Robinson", "http://dbpedia.org/resource/Bobby_Rogers", "Peter Andre, Dantae Johnson, Nait Rawknait Masuku", "http://dbpedia.org/resource/Adam_Pallin", "http://dbpedia.org/resource/Joey_Badass", "http://dbpedia.org/resource/Kirk_Knight", "http://dbpedia.org/resource/Powers_Pleasant", "Blanche Carter", "Rex Zamor, Noble Prince Hart", "http://dbpedia.org/resource/Harvey_Fuqua", "http://dbpedia.org/resource/Bo_Diddley", "http://dbpedia.org/resource/Willie_Dixon", "http://dbpedia.org/resource/Ellas_McDaniel", "http://dbpedia.org/resource/Donna_Summer", "Donna Summer", "Jerome Anthony Matthews, Reginald Marcellous Rucker", "http://dbpedia.org/resource/El_Guincho", "http://dbpedia.org/resource/Rosal\u00eda_(singer)", "Utada, C. \"Tricky\" Stewart", "* Mariana Esp\u00f3sito\n* Daniel Amarise Diaz\n* Mart\u00edn D'Agosto\n* Mauro De Tommaso", "Narada Michael Walden, Jeffrey Cohen", "David Bowie", "http://dbpedia.org/resource/Tsunku", "Freddie Perren, Christine Yarian", "Prince, Andre Cymone", "http://dbpedia.org/resource/Dan_Penn", "http://dbpedia.org/resource/Chips_Moman", "Carl Davis, Eugene Record", "http://dbpedia.org/resource/Norman_Whitfield", "Edward Holland Jr.", "and Eddie Kendricks", "http://dbpedia.org/resource/George_Jackson_(songwriter)", "*Mayme Watts\n*Robert Mosely", "*Maurice White\n*Verdine White", "http://dbpedia.org/resource/Buckwild_(music_producer)", "http://dbpedia.org/resource/Redman_(rapper)", "http://dbpedia.org/resource/Method_Man", "Warren Moore", "Robert Rogers", "Jessica Cornish, George Astasio, Jason Pebworth, Jon Shave, Carl Haley, Greg Haley, Rafael Haley, Charlie Platt", "Maurice White, Gregory Curtis", "http://dbpedia.org/resource/Chris_Brown", "1.0", "Michael Hernandez", "Caleb Nordelus", "Christopher Dotson", "Michael Dorsey", "Lyrica Anderson", "Bobby Joseph Turner Jr.", "http://dbpedia.org/resource/Walter_Jacobs", "Lance Finney, Willie Schofield, Bob West", "Billy Osborne, Zane Giles", "David Foster, Brenda Russell and Maurice White", "Rodney Jerkins, Danny Nixon, LaShawn Daniels, Fred Jerkins III, Delisha Thomas", "http://dbpedia.org/resource/Ray_Parker_Jr.", "http://dbpedia.org/resource/Chaka_Khan", "Reginald Hall, Joe Jones", "Rick James", "Luther Vandross, Skip Anderson", "http://dbpedia.org/resource/David_Porter_(musician)", "http://dbpedia.org/resource/Isaac_Hayes", "Antonio Carmona, Samuel Medina, Jan Nilson, Martha Pesante, Yotuel Romero", "http://dbpedia.org/resource/Marvin_Gaye", "http://dbpedia.org/resource/Sheila_E.", "*Dick Taylor", "Ivan Neville", "http://dbpedia.org/resource/Clarence_%22Frogman%22_Henry", "http://dbpedia.org/resource/Bill_Withers", "http://dbpedia.org/resource/Eddie_Holland", "Norman Whitfield", "Eddie Holland", "Francis Lai, Moos, Pascal Castro", "Bachir Baccour, Pascal Boniani Koeu, Adila Sedraia, Axel Tony", "http://dbpedia.org/resource/Ayra_Starr", "Oluwadamilare Aderibigbe", "http://dbpedia.org/resource/Sari_Abboud", "http://dbpedia.org/resource/Jeff_Barry", "http://dbpedia.org/resource/Ellie_Greenwich", "http://dbpedia.org/resource/Michael_Henderson", "http://dbpedia.org/resource/Yoo_Young-jin", "http://dbpedia.org/resource/Yolanda_Adams", "http://dbpedia.org/resource/Drathoven", "Kato", "Komori", "H. Kimura", "Miliyah Kato", "H. Kon", "M. Takesue", "Minoru Komori", "Shinnosuk8", "Twigy", "Sarah De Bono, J Cabrera", "P-Square", "Composition:", "Lyrics:", "Arrangement:", "http://dbpedia.org/resource/Beyonc\u00e9", "http://dbpedia.org/resource/Frankie_Beverly", "http://dbpedia.org/resource/Larry_Blackmon", "Jerome Temple", "Tomi Jenkins", "Ellas McDaniel Bo Diddley", "Misia, Chihiro Kurosu, Jun Sasaki", "* Maurice White\n* Al McKay", "Han Sang Won", "http://dbpedia.org/resource/Teddy_Powell", "Leonard Whitcup", "http://dbpedia.org/resource/Ed_Townsend", "Arthur Brooks, Richard Brooks and Jerry Butler", "http://dbpedia.org/resource/Kanye_West", "http://dbpedia.org/resource/Christopher_Breaux", "H\u00f8iberg Brinsmead", "Alex Gottlieb/Fred Karger/Ben Weisman", "Traditional, arranged by Brook Benton", "traditional, arr. Johnny Cash", "* Aubrey Graham\n* Jhen\u00e9 Chilombo\n* Noah Shebib\n* Jason Beck", "Nelly Furtado, Alex Cuba, James Bryan", "Tom Browne, Toni Smith", "http://dbpedia.org/resource/Johnny_Mercer", "Daisuke Imai", "Takashi Tsushimi", "D.A.I", "Jun Natsume", "* Anita Blay\n* Edvard F\u00f8rre Erfjord\n* Iain James\n* Henrik Michelsen\n* Camille Purcell\n* Sean Paul Henriques", "http://dbpedia.org/resource/2nd_II_None", "http://dbpedia.org/resource/DJ_Quik", "http://dbpedia.org/resource/El_Debarge", "http://dbpedia.org/resource/Mike_d'Abo", "Koda Kumi, Katsumi Ohnishi", "http://dbpedia.org/resource/Jay_McShann", "*Wes Farrell\n*Bert Berns", "Starboy Nathan, Clayton Morrison, Jermaine Scott, Ali Tennant", "http://dbpedia.org/resource/Michel_Legrand", "Stevie Wonder", "Donald Baldwin, Jeffrey Bowen, Lionel Richie", "http://dbpedia.org/resource/Sanja_Vu\u010di\u0107", "http://dbpedia.org/resource/Nemanja_Antoni\u0107", "Kosana Stoji\u0107", "http://dbpedia.org/resource/Misia_(singer)", "Andrew Tierney/ Michael Tierney/ Vince DeGiorgio", "http://dbpedia.org/resource/Barry_Eastmond", "Jolyon Skinner", "Terry Stubbs, Derrick Pearson, Jonathan Burks", "http://dbpedia.org/resource/Barbara_Acklin", "MC Hammer", "http://dbpedia.org/resource/Bernie_Worrell", "http://dbpedia.org/resource/George_Clinton_(funk_musician)", "http://dbpedia.org/resource/Bootsy_Collins", "Charles Simmons", "Bruce Hawes", "Joseph B. Jefferson", "Joseph B. Jefferson, Bruce Hawes, and Charles Simmons", "http://dbpedia.org/resource/Daniel_Wilson_(musician)", "http://dbpedia.org/resource/Joji_(musician)", "http://dbpedia.org/resource/Justin_Raisen", "Luke Niccoli", "Skylark", "http://dbpedia.org/resource/Leon_Payne", "http://dbpedia.org/resource/Jack_Splash", "http://dbpedia.org/resource/Cee_Lo_Green", "Keshia Chant\u00e9, Adam Alexander, Jay Botalla, Alex Vujic, Josh Cohen & Alex Greggs", "http://dbpedia.org/resource/Hiro_(music_producer)", "Kumi Koda", "Franne Golde, Dennis Lambert, Andy Goldmark", "Jordan Davis", "Jacob Davis", "Jason Gantt", "http://dbpedia.org/resource/Brian_Holland", "http://dbpedia.org/resource/Lamont_Dozier", "http://dbpedia.org/resource/Missy_Elliott", "Howard Hewett", "Dana L. Meyers", "http://dbpedia.org/resource/Michael_McDonald_(singer)", "http://dbpedia.org/resource/Joe_Seneca", "*Marriott\n*Lane", "Tony Bruno", "Bruno, Bellini", "Tony Bruno, Brenda Bruno, Sanford Bellini", "George Davis", "Lee Diamond", "* Avril Lavigne\n* Melissa Bel\n* Ryan Cabrera\n* Johan Carlsson\n* Justin Gray", "Francisco Bautista, Jr., David Sanchez, Claude Kelly, Nathan Perez, Steve Valdez", "http://dbpedia.org/resource/Kenny_Gamble_&_Leon_Huff", "Ben E. King, James Bethea", "*Dino Fekaris\n*Freddie Perren", "Robert Carr, Johnny Mitchell, Hy Weiss", "James Phillips", "Jermaine Dupri", "Delmar Arnaud", "Melvyn Matthews", "http://dbpedia.org/resource/Luther_Dixon", "http://dbpedia.org/resource/Al_Cleveland", "http://dbpedia.org/resource/Renaldo_Benson", "http://dbpedia.org/resource/Jerry_Leiber_and_Mike_Stoller", "Fred Jay, Art Harris", "http://dbpedia.org/resource/Hamish_Stuart", "http://dbpedia.org/resource/Ned_Doheny", "William \"Mickey\" Stevenson, Alphonso Higdon", "* Danny Schofield\n* Ali Gatie\n* Samuel Wishkoski", "http://dbpedia.org/resource/Daniel_Jones_(musician)", "http://dbpedia.org/resource/Jim_Beanz", "http://dbpedia.org/resource/Timbaland", "http://dbpedia.org/resource/Ray_Whitley_(songwriter)", "Lay, CC", "http://dbpedia.org/resource/Sam_Dew", "http://dbpedia.org/resource/Matt_Hales", "http://dbpedia.org/resource/Akon", "http://dbpedia.org/resource/Giorgio_Tuinfort", "http://dbpedia.org/resource/Mase", "http://dbpedia.org/resource/Sean_Combs", "Curtis Mayfield", "Nashiem Myrick", "Keisha Spivey", "http://dbpedia.org/resource/Rod_Argent", "Kamaljeet Singh Jhooti, J-Remy, Bobby Bass", "http://dbpedia.org/resource/George_Pajon", "http://dbpedia.org/resource/Taboo_(rapper)", "http://dbpedia.org/resource/Will.i.am", "http://dbpedia.org/resource/Apl.de.ap", "http://dbpedia.org/resource/The_Game_(rapper)", "http://dbpedia.org/resource/ASAP_Rocky", "http://dbpedia.org/resource/DJ_Khaled", "http://dbpedia.org/resource/Printz_Board", "http://dbpedia.org/resource/Justin_Timberlake", "Michael Fratantuno", "http://dbpedia.org/resource/Ray_Davies", "E. McDaniels Bo Diddley", "http://dbpedia.org/resource/Dave_Bartholomew", "http://dbpedia.org/resource/Fats_Domino", "Dave \"Curlee\" Williams", "Dave \"Curlee\" Williams, James Faye \"Roy\" Hall", "http://dbpedia.org/resource/Deke_Richards", "http://dbpedia.org/resource/Sherlie_Matthews", "http://dbpedia.org/resource/Porl_Thompson", "http://dbpedia.org/resource/Boris_Williams", "http://dbpedia.org/resource/Simon_Gallup", "http://dbpedia.org/resource/Robert_Smith_(musician)", "http://dbpedia.org/resource/Lol_Tolhurst", "http://dbpedia.org/resource/Papa_Dee_Allen", "http://dbpedia.org/resource/Harold_Ray_Brown", "http://dbpedia.org/resource/B._B._Dickerson", "http://dbpedia.org/resource/Charles_Miller_(musician)", "http://dbpedia.org/resource/Howard_E._Scott", "http://dbpedia.org/resource/Jerry_Goldstein_(producer)", "http://dbpedia.org/resource/Lee_Oskar", "http://dbpedia.org/resource/Lonnie_Jordan", "Papa Dee Allen, Harold Ray Brown, B. B. Dickerson, Lonnie Jordan, Charles Miller, Lee Oskar, Howard E. Scott", "http://dbpedia.org/resource/Jason_Derulo", "http://dbpedia.org/resource/John_Ryan_(musician)", "http://dbpedia.org/resource/Sean_Douglas_(songwriter)", "http://dbpedia.org/resource/Snoop_Dogg", "http://dbpedia.org/resource/Ricky_Reed", "http://dbpedia.org/resource/Andreas_Schuller", "Jacob Kasher", "Joe Spargur", "Crowder", "David Crowder", "Solomon Olds", "Rebecca Lauren Olds", "* David Crowder\n* Rebecca Lauren Olds\n* Solomon Olds", "http://dbpedia.org/resource/Arnthor_Birgisson", "Ali Tennant", "http://dbpedia.org/resource/Arthur_Alexander", "Natsumi Watanabe, Bounceback", "Cynthia Wilson, D. Rodriguez, Kataya Anderson", "Shanice Knox, Mark A. Knox", "T. Minister, R. Garcia", "http://dbpedia.org/resource/Jerry_Wexler", "Bert Berns", "Solomon Burke", "* J. R. Bailey\n* Rudy Clark\n* Ken Williams", "* J.R. Bailey\n* Rudy Clark\n* Ken Williams", "Philip Bailey, Attala Zane Giles, Allee Willis", "http://dbpedia.org/resource/Waldo_Holmes", "Jimmy Duncan, Bill Farley", "http://dbpedia.org/resource/Prince_(musician)", "http://dbpedia.org/resource/Bunny_Sigler", "http://dbpedia.org/resource/Carol_Davis_(songwriter)", "http://dbpedia.org/resource/Scott_Walker_(singer)", "http://dbpedia.org/resource/Paul_Gayten", "Burt Bacharach, Hal David", "Burt Bacharach and Hal David", "Luther Vandross, Marcus Miller", "http://dbpedia.org/resource/Isley_Brothers", "http://dbpedia.org/resource/Chris_Jasper", "http://dbpedia.org/resource/R._Kelly", "Chris Jasper", "Ernie Isley", "Marvin Isley", "O'Kelly Isley", "Ronald Isley", "Rudolph Isley", "Dessie Rozier", "Rufus Thomas", "Len Ron Hanks, Zane Grey", "David Blake, Adina Howard", "http://dbpedia.org/resource/Bobby_Troup", "http://dbpedia.org/resource/Bernie_Lowe", "http://dbpedia.org/resource/Kal_Mann", "Jerry Leiber and Mike Stoller", "Kal Mann and Bernie Lowe", "http://dbpedia.org/resource/Herb_Lance", "Johnny Wallace", "James Brown", "http://dbpedia.org/resource/Richard_Morris_(songwriter)", "http://dbpedia.org/resource/Buck_Ram", "* Henry Glover\n* Lois Mann", "http://dbpedia.org/resource/Sam_Cooke", "http://dbpedia.org/resource/Debbie_Gibson", "L Tate, Joe Morris", "http://dbpedia.org/resource/Joe_Little_III", "Mike Ferguson", "Edwin \"Tony\" Nicholas", "Ada Edolo", "Tonye Garrick", "Errol Brown, Tony Wilson", "http://dbpedia.org/resource/Ivy_Queen", "Pesante", "*Shawn Carter\n*Kanye West\n*John Lennon\n*Paul McCartney", "Teemu Brunila", "http://dbpedia.org/resource/Amir_Tataloo", "Roberto Carlos", "Joe Simon, Raeford Gerald", "http://dbpedia.org/resource/Marcus_Miller", "http://dbpedia.org/resource/Luther_Vandross", "Derrick Martin", "Derrick Joshua", "http://dbpedia.org/resource/Nate_Dogg", "http://dbpedia.org/resource/Eve_(entertainer)", "Johnny Taylor, Gilbert Moorer, Bill Sheppard", "http://dbpedia.org/resource/Teddy_Riley_(producer)", "Michael Jackson", "Alfred Smith, Joe Hooven, Jerry Winn", "Smith, Hooven, Winn", "Douglas Jack Agu", "Michael Elemba", "Oluwaseyi Odedere", "*Steve Winwood\n*Spencer Davis\n*Muff Winwood", "Jaron Boyer", "Michael Tyler", "Josh Mirenda", "Keni St. Lewis", "http://dbpedia.org/resource/Keisha_Buchanan", "http://dbpedia.org/resource/Ronnie_White", "http://dbpedia.org/resource/The_Pipettes", "Buchanan", "Jenkinson", "McDonald", "Toussaint", "Nicole Jenkinson", "http://dbpedia.org/resource/Tinie_Tempah", "http://dbpedia.org/resource/Zara_Larsson", "Aleisha Bennett", "Tony Hester", "Chris Barbosa, Ed Chisholm", "http://dbpedia.org/resource/David_Eriksen", "http://dbpedia.org/resource/Wayne_Hector", "Michael Stokes", "Emanuel \"E.J.\" Johnson", "Terry Lewis, Melanie Andrews, Janet Jackson", "Jerry Peters, Anita Poree", "http://dbpedia.org/resource/Anthony_Newley", "http://dbpedia.org/resource/John_Barry_(composer)", "http://dbpedia.org/resource/Leslie_Bricusse", "Fraser T Smith", "Kimbra Johnson", "http://dbpedia.org/resource/Ike_Turner", "* Sol\u00e1na Rowe\n* Carlos Mu\u00f1oz\n* Carter Lang\n* Christopher Ruelas\n* Jacob Collier", "http://dbpedia.org/resource/Clint_Ballard,_Jr.", "http://dbpedia.org/resource/Fred_Tobias", "Brian Wilson", "Love", "Mike Love", "Wilson", "* Brian Wilson\n* Mike Love", "Tony Asher", "http://dbpedia.org/resource/John_Marascalco", "http://dbpedia.org/resource/George_Motola", "http://dbpedia.org/resource/Dave_Bayley", "http://dbpedia.org/resource/Rudy_Clark", "http://dbpedia.org/resource/Elliot_Willensky", "http://dbpedia.org/resource/Lennon\u2013McCartney", "http://dbpedia.org/resource/Chad_Hugo", "http://dbpedia.org/resource/Sleepy_Brown", "http://dbpedia.org/resource/Pharrell_Williams", "Denise LaSalle", "Frances Miller", "Francis Miler", "Nick Jonas", "Andy Marvel", "Jonas Jeberg", "Jason Desrouleaux", "Marlin \"Hookman\" Bonds", "Kwon Yun-jung, Lee Jae-myoung", "http://dbpedia.org/resource/Bryson_Tiller", "http://dbpedia.org/resource/Kelly_Rowland", "http://dbpedia.org/resource/Fred_Jerkins_III", "http://dbpedia.org/resource/Summer_Walker", "http://dbpedia.org/resource/LaShawn_Daniels", "http://dbpedia.org/resource/LaTavia_Roberson", "http://dbpedia.org/resource/LeToya_Luckett", "http://dbpedia.org/resource/London_on_da_Track", "Cameron Griffin", "Roark Bailey", "Aubrey Robinson", "Brown, Terry", "* James Brown\n* Johnny Terry", "http://dbpedia.org/resource/Harry_Wayne_Casey", "http://dbpedia.org/resource/Richard_Finch_(musician)", "Harry Wayne Casey", "Richard Finch", "Harry Wayne Casey / Richard Finch", "Damon Albarn, Bobby Womack", "Georgia Dobbins, William Garrett, Freddie Gorman, Brian Holland, Robert Bateman", "*Georgia Dobbins\n*William Garrett\n*Brianbert", "Percy Mayfield", "Ferdinand Washington, Don Robey", "http://dbpedia.org/resource/Tony_Joe_White", "http://dbpedia.org/resource/Marilyn_McLeod", "http://dbpedia.org/resource/Pam_Sawyer", "* Daniel Breland\n* Julian Bunetta\n* David Garcia\n* Jacob Durrett\n* Jessie Jo Dillon\n* Kyle Fishman\n* Michael Hardy\n* Rocky Block\n* Thomas Rhett", "* Courtney Shenade Salter\n* Anthony Parrino\n* Jai'Len Josey\n* Bryan-Michael Cox\n* Jermaine Dupri\n* Johnt\u00e1 Austin", "* Melissa Jefferson\n* Melissa Elliott\n* Theron Thomas\n* Raymond Scott\n* Dan Farber\n* Eric Frederic\n* Antonio Cuna\n* Tobias Wincorn", "Werner Scharfenberger, Fini Busch", "http://dbpedia.org/resource/Roy_Alfred", "Del Serino", "Sam Cooke, J. W. Alexander", "http://dbpedia.org/resource/Frankie_J", "http://dbpedia.org/resource/Chamillionaire", "http://dbpedia.org/resource/Play-N-Skillz", "http://dbpedia.org/resource/Mannie_Fresh", "http://dbpedia.org/resource/Ernie_Isley", "http://dbpedia.org/resource/Marvin_Isley", "http://dbpedia.org/resource/O'Kelly_Isley_Jr.", "http://dbpedia.org/resource/Ronald_Isley", "http://dbpedia.org/resource/Rudolph_Isley", "Isley Jr.", "Ron. Isley", "Rud. Isley", "http://dbpedia.org/resource/Billy_Page", "http://dbpedia.org/resource/Billy_Ward_(singer)", "* Billy Ward\n* Rose Marks", "http://dbpedia.org/resource/Jamie_(singer)", "http://dbpedia.org/resource/Park_Jin-young", "Jinri", "http://dbpedia.org/resource/Harlan_Howard", "* Shaffer Smith\n* Jeremy Phillip Felton\n* James Mtume\n* Larry Troutman\n* Leon Youngblood Jr.\n* Roger\n* Shirley Murdock\n* Teddy Pena", "http://dbpedia.org/resource/Robbie_Robertson", "http://dbpedia.org/resource/Ashford_&_Simpson", "Robert Sharp Jr., Teddy Powell", "http://dbpedia.org/resource/Paul_Politi", "http://dbpedia.org/resource/Matt_Bellamy", "http://dbpedia.org/resource/Irving_Gordon", "http://dbpedia.org/resource/Halle_Bailey", "http://dbpedia.org/resource/Disclosure_(band)", "http://dbpedia.org/resource/Chloe_Bailey", "Johnny Ruffo, Cliff Raux, Michael Tan, Gary Pinto", "http://dbpedia.org/resource/Sister_Rosetta_Tharpe", "http://dbpedia.org/resource/Ari_Lennox", "Justin Bryant", "Kojo Asamoah", "Nicholas Venezia", "Oliver Bergqvist", "http://dbpedia.org/resource/Willie_Denson", "http://dbpedia.org/resource/Ray_Charles", "* Brian Holland\n* Daniel Rey\n* Dee Dee King\n* Freddie Gorman\n* Georgia Dobbins\n* Kal Mann\n* Robert Bateman\n* William Garrett", "http://dbpedia.org/resource/Emtee_(rapper)", "http://dbpedia.org/resource/Tiwa_Savage", "Gregg Diamond", "Davide Romani, Mauro Malavasi, Tanyayette Willoughby", "http://dbpedia.org/resource/Berry_Gordy_Jr.", "http://dbpedia.org/resource/Gladys_Horton", "http://dbpedia.org/resource/Robert_Bateman_(songwriter)", "http://dbpedia.org/resource/Mickey_Stevenson", "Anthony George Anderson, Dane Deviller, Sean Hosein, Adam Hurstfield, Steven Smith", "Gerry Goffin and Carole King", "http://dbpedia.org/resource/Giorgio_Moroder", "http://dbpedia.org/resource/Pete_Bellotte", "http://dbpedia.org/resource/Nat_Adderley,_Jr.", "Luther Vandross", "Greg Perry, Barney Perkins, and General Norman Johnson", "Lemar Obika, Sam Watters, Jim Jonsin and Louis Biancaniello", "Scott Carter", "Tyrese Gibson", "Trevor Jobs", "Barry White", "E. Holland, Jr., B. Holland", "Nick Zesses, Dino Fekaris", "http://dbpedia.org/resource/Tiziano_Ferro", "Benny Latimore", "Benny Latimore, Dallas Austin", "http://dbpedia.org/resource/Gamble_and_Huff", "Bobby Womack, Darryl Carter", "http://dbpedia.org/resource/Jude_Gitamondoc", "Chris Rene, Gabriel Rene, Gina Rene, Claude Kelly, Chuck Harmony", "Larry Marcus", "Gordon", "Felix Cavaliere and Eddie Brigati", "Ike Turner", "Buck Ram", "Tristin Sigerson, Davitt Sigerson, and Bob Thiele", "Bonnie Pink", "http://dbpedia.org/resource/Terry_Thompson_(songwriter)", "Terry Thompson", "http://dbpedia.org/resource/Tom_Petty", "http://dbpedia.org/resource/Mike_Campbell_(musician)", "http://dbpedia.org/resource/Stanley_Benton", "Smith, T.", "Broadus, C.", "Camon, D.", "Curry, T.", "Hale, N.", "Lamb, D.", "Parker, D.", "Stanley Benton", "Thiam, A.", "Young, A.", "Tarkan, Devrim Karao\u011flu, Pete \"Boxta\" Martin, Elijah Wells, Lionel Bermingham", "http://dbpedia.org/resource/Wes_Farrell", "http://dbpedia.org/resource/Belly_(rapper)", "http://dbpedia.org/resource/Massari", "http://dbpedia.org/resource/Ovi_Bistriceanu", "http://dbpedia.org/resource/Tony_Sal", "http://dbpedia.org/resource/Marvin_Hamlisch", "http://dbpedia.org/resource/Carole_Bayer_Sager", "http://dbpedia.org/resource/Donnie_Fritts", "http://dbpedia.org/resource/Eddie_Hinton", "http://dbpedia.org/resource/Chuck_Berry", "Chuck Berry", "Elizabeth Somerville", "Megan Markwick", "Negin, Brian Kierulf, Joshua Schwartz", "http://dbpedia.org/resource/Nil_Karaibrahimgil", "Nil Karaibrahimgil", "Tufan Bayraktar, Ozan \u00c7olako\u011flu, Serkan Din\u00e7er", "Verdine White, Robert White", "http://dbpedia.org/resource/Van_McCoy", "http://dbpedia.org/resource/Marlon_Jackson", "Alonzo Tucker, Jackie Wilson", "Frankie Beverly.", "Al McKay and Maurice White", "IAM", "Akhenaton", "http://dbpedia.org/resource/J-Flexx", "Tiwatope Savage", "http://dbpedia.org/resource/Little_Walter", "http://dbpedia.org/resource/Tre_Jean-Marie", "http://dbpedia.org/resource/A*M*E", "http://dbpedia.org/resource/MNEK", "http://dbpedia.org/resource/Blonde_(duo)", "Bowman", "Campbell", "Jean-Marie", "Emenike", "April Bender", "Brayton Bowman", "Donna Simmal", "Drew Moore", "Ryan Campbell", "http://dbpedia.org/resource/Jackie_DeShannon", "http://dbpedia.org/resource/Sharon_Sheeley", "G-Dragon, Jimmy Th\u00f6rnfeldt", "http://dbpedia.org/resource/Yo_Yo_Honey_Singh,_Diljit_Dosanjh", "Nicolas Brisson, Diam's, DJ Ma\u00eetre, Elio, Dominique Gauriaud, William Geslin, Jurij Prette, Tefa, Vitaa, Micha\u00ebl Youn", "Lecrae Moore, Justin Scott, Ashthon Jones, Lincoln Morris, Torrence Esmond, Khalil Abdul-Rahman, Pran Injeti, Columbus T-Smith, Daniel Tannenbaum", "* Meghan Trainor\n* Eric Frederic\n* Jacob Kasher Hindlin\n* Jason Desrouleaux\n* Peter Svensson", "http://dbpedia.org/resource/David_Lasley", "http://dbpedia.org/resource/Roxanne_Seeman", "Kendrick Duckworth", "Maurice Jordan", "Clifford Harris", "Victoria Mon\u00e9t McCants", "Bobby Ray Simmons", "Lou Baxter, Johnny Moore", "Kanata Okajima & Sara Sakurai", "http://dbpedia.org/resource/Al_Green", "http://dbpedia.org/resource/Al_Jackson_Jr.", "http://dbpedia.org/resource/Willie_Mitchell_(musician)", "Jason Brett Levine, Jonathan David Levine", "http://dbpedia.org/resource/Tony_Macaulay", "R. Kelly", "http://dbpedia.org/resource/Alex_Hope_(songwriter)", "http://dbpedia.org/resource/M-Phazes", "http://dbpedia.org/resource/Ruel_(singer)", "http://dbpedia.org/resource/Amy_Winehouse", "Kamel Houairi, Vinia Mojica,", "M. Darmon, F. Henri,", "Nicolas Vadon", "David James Mattis", "http://dbpedia.org/resource/Savan_Kotecha", "http://dbpedia.org/resource/Steve_Mac", "http://dbpedia.org/resource/Richard_Rodgers", "http://dbpedia.org/resource/Oscar_Hammerstein_II", "Andrew Frampton", "*Mafly\n*ZigZagNote", "http://dbpedia.org/resource/Greg_Champion", "http://dbpedia.org/resource/Stan_Jones_(songwriter)", "Champion", "Wayne Burt", "Burt", "Frank F. Robinson", "*Solomon Linda", "*Solomon Linda\n*Hugo Peretti\n*Luigi Creatore\n*George David Weiss\n*Albert Stanton", "*Hugo Peretti\n*Luigi Creatore\n*George David Weiss\n*Albert Stanton\n*Solomon Linda", "http://dbpedia.org/resource/Gerry_Goffin", "http://dbpedia.org/resource/Carole_King", "http://dbpedia.org/resource/Georges_Aber", "French adaptation:", "Verbal and Taku Takahashi", "http://dbpedia.org/resource/Curtis_Mayfield", "http://dbpedia.org/resource/Lincoln_Chase", "Lincoln Chase", "Shirley Ellis", "http://dbpedia.org/resource/Damon_Albarn", "http://dbpedia.org/resource/Remi_Kabaka_Jr.", "http://dbpedia.org/resource/6lack", "Damon Albarn", "http://dbpedia.org/resource/Dorothy_Fields", "http://dbpedia.org/resource/Nickolas_Ashford", "http://dbpedia.org/resource/Valerie_Simpson", "http://dbpedia.org/resource/Cy_Coleman", "http://dbpedia.org/resource/Spooner_Oldham", "http://dbpedia.org/resource/Dave_Appell", "Jimmy McCracklin, Bob Garlic", "*Johnny Otis\n*Hank Ballard\n*Etta James", "http://dbpedia.org/resource/Ernie_Maresca", "Gerry Roslie", "http://dbpedia.org/resource/Lotti_Golden", "http://dbpedia.org/resource/Richard_Scher", "Warren Davis", "Charles Patrick", "George Malone", "Jimmy Jam & Terry Lewis", "Lemar Obika, Claude Kelly, Tariq Belrouge", "Skip Scarborough, Jerry Peters, Anita Poree", "http://dbpedia.org/resource/Chuck_Willis", "O'Kelly Isley, Jr.", "Alan Jansson, Chris Ma'ia'i, Mike Paton", "Karen Poole, Lene Nystr\u00f8m, Lucas Secon", "Henry Glover and Syd Nathan", "Toshinori Yonekura", "http://dbpedia.org/resource/Phil_Collins", "Kenny Gamble, Cary Gilbert, Leon Huff", "Sam Mizell, Matthew West", "Don Covay, John Berry", "http://dbpedia.org/resource/Beyonce_Knowles", "http://dbpedia.org/resource/OZ_(record_producer)", "http://dbpedia.org/resource/Scott_Storch", "http://dbpedia.org/resource/Nija_Charles", "http://dbpedia.org/resource/Ella_Mai", "Williams", "Andrew Franklin", "Austin Schindler", "Eyobed Getachew", "Robert Waller", "http://dbpedia.org/resource/Mark_Batson", "http://dbpedia.org/resource/Alicia_Keys", "http://dbpedia.org/resource/Harold_Lilly_(songwriter)", "http://dbpedia.org/resource/Rudy_Toombs", "http://dbpedia.org/resource/Eddie_Floyd", "Steve Cropper", "http://dbpedia.org/resource/Marcella_Araica", "http://dbpedia.org/resource/Danja_(musician)", "Missy Elliott", "http://dbpedia.org/resource/Daryl_Simmons", "Toru Watanabe, h-wonder", "Elisabeth Withers, Gordon Chambers, Barry Eastmond", "http://dbpedia.org/resource/John_McLaughlin_(musician)", "Alan Ross", "Dave James", "Tshegofatso Ketshabile", "Celeste Buckingham, Andrej Hru\u0161ka, Martin \u0160r\u00e1mek", "http://dbpedia.org/resource/O'Kelly_Isley,_Jr.", "Marcus Miller, Mark Stephens", "http://dbpedia.org/resource/Kenzie_(songwriter)", "Paul Slayton, Eugene Record", "Edward Holland, Jr.", "J. Blees", "K. Johnsson", "P. Bj\u00f6rklund", "http://dbpedia.org/resource/Adrian_Newman_(producer)", "http://dbpedia.org/resource/Arthur_Resnick", "Jeffrey Scott Silverman, Leon Marcus Michels, Nicholas Anthony Movshon, E. Nathaniel Dawkins", "http://dbpedia.org/resource/Felix_Cavaliere", "http://dbpedia.org/resource/Eddie_Brigati", "http://dbpedia.org/resource/Wyclef_Jean", "http://dbpedia.org/resource/Earl_Nelson_(singer)", "http://dbpedia.org/resource/Bob_Relf", "Bob Relf, Earl Nelson", "Claude M'Barali", "Alain J", "Eric K-Roz", "Kurser", "http://dbpedia.org/resource/Barrett_Strong", "http://dbpedia.org/resource/Tijs_Verwest", "Kamini", "http://dbpedia.org/resource/Eddie_Hazel", "http://dbpedia.org/resource/Barbara_Lewis", "B. Barnes, Brian McKnight", "http://dbpedia.org/resource/Steve_Marriott", "http://dbpedia.org/resource/Ronnie_Lane", "Sonny Gordon", "http://dbpedia.org/resource/Percy_Mayfield", "http://dbpedia.org/resource/Tim_&_Bob", "Constance Guzman, Eddie Minnifield, Sheila E.", "Davide Romani, Mauro Malavasi, Paul Slade", "http://dbpedia.org/resource/Dick_Lee", "Richard Morris", "http://dbpedia.org/resource/Clyde_McPhatter", "Jimmie Crane, Al Jacobs", "Al Jacobs", "Jimmie Crane", "http://dbpedia.org/resource/Ivy_Jo_Hunter", "http://dbpedia.org/resource/Brook_Benton", "http://dbpedia.org/resource/Linda_Creed", "http://dbpedia.org/resource/Thom_Bell", "Ike Turner, Jane Bossung", "Thom Bell, William Hart", "Calvin Lane, Philip Reese", "Philip Reese, Calvin Lane", "http://dbpedia.org/resource/Allee_Willis", "http://dbpedia.org/resource/David_Foster", "http://dbpedia.org/resource/Jerome_Farah", "Willie Mabon", "http://dbpedia.org/resource/Gotye", "http://dbpedia.org/resource/Reed_Vertelney", "Barbara George", "* William DeBarge\n* Eldra DeBarge\n* Etterlene DeBarge", "Ian Green, Deni Hines", "Earl Simmons", "Dan Radclyffe, Maverick Sabre", "Mary Unobsky, Priscilla Coolidge, William Smith", "Callaway, Fraser T Smith, Jack Splash, VLJ", "Eliot Sloan, Joseph Carrier, David Corey", "Rachel Oden", "Chuck Jackson, Marvin Yancy", "http://dbpedia.org/resource/Soulhead", "http://dbpedia.org/resource/Leon_Carr", "Earl Shuman", "Ivory Joe Hunter", "Yvonne Gray, Sherman Marshall", "Mark Holden", "Hank Ballard", "Shirley Goodman, Leonard Lee", "2", "Elise Estrada, Adam Hurstfield, Davor Vulama", "Bilal Oliver", "Rudolph Isley, O'Kelly Isley, Ronald Isley, Ernie Isley, Marvin Isley and Chris Jasper", "Leslie Conn", "http://dbpedia.org/resource/Eden_Ahbez", "Shota Shimizu, Miliyah", "Wayne Anton Brathwaite, Barry J. Eastmond, Billy Ocean", "http://dbpedia.org/resource/David_Cole_(record_producer)", "http://dbpedia.org/resource/Skip_Scarborough", "http://dbpedia.org/resource/Robert_Clivill\u00e9s", "http://dbpedia.org/resource/Michelle_Visage", "Bill Withers", "* Bill Withers\n* Skip Scarborough", "Tommy Never", "http://dbpedia.org/resource/Vegyn", "http://dbpedia.org/resource/Frank_Ocean", "Sherman Josiah", "Japanese Lyrics: H.U.B, Korean lyrics: Yoo Han Jin, Composition: Yoo Han Jin, JJ650, Yoo Young Jin", "http://dbpedia.org/resource/Leon_Huff", "http://dbpedia.org/resource/Kenneth_Gamble", "http://dbpedia.org/resource/Dee_Clark", "* Thom Bell\n* William Hart", "http://dbpedia.org/resource/Charles_Stepney", "Carl Smith", "Raynard Miner", "Fontella Bass", "\"Bruce Hawes\"", "Roger Ball, Malcolm \"Molly\" Duncan, Steve Ferrone, Alan Gorrie, Onnie McIntyre, Hamish Stuart", "http://dbpedia.org/resource/Richard_Lewis_Spencer", "Richard Lewis Spencer", "Athena Cage, Jerry Flowers, Keith Sweat", "http://dbpedia.org/resource/Teddy_Park", "http://dbpedia.org/resource/Future_Bounce", "Earl King", "Keith Sweat, Calvin Broadus, Curtis Jefferson", "http://dbpedia.org/resource/Joyce_Sims", "Todd Bridges", "Austin Michael Jenkins", "Chris Vivion", "Joshua Block", "http://dbpedia.org/resource/SZA_(singer)", "http://dbpedia.org/resource/Robyn_Fenty", "Tyran Donaldson", "Teron Beal, Delroy Pearson, Jesse Powell, Ian Prince", "Donald Storball", "Koda Kumi, George Frideric Handel, Taro Iwashiro, Hugo Lira, Ian-Paolo Lira, Negin, Nosheen, Thomas Gustafsson", "Lil' Eddie, Krys Ivory", "http://dbpedia.org/resource/Berry_Gordy", "http://dbpedia.org/resource/Gwen_Gordy", "http://dbpedia.org/resource/Michael_Lovesmith", "Wayne Vaughn, Wanda Vaughn, Wendi Vaughn and Maurice White", "Christophe Battaglia", "Cyril Tarquiny", "http://dbpedia.org/resource/Jam_Factory_(music_publisher)", "Hwang Yoo-bin", "Tay Jasper", "Zachary Chicoine", "Adrian Mckinnon", "Geoffrey McCray", "Marcus Scott", "Nasia Jones", "http://dbpedia.org/resource/Walter_Becker", "http://dbpedia.org/resource/Donald_Fagen", "Kim Dal Woo, Hwang Hyun", "* Ji-hoon\n* Park Se-jun", "http://dbpedia.org/resource/PnB_Rock", "http://dbpedia.org/resource/Brandon_Bell_(record_producer)", "http://dbpedia.org/resource/Needlz", "Liana Banks", "http://dbpedia.org/resource/Ollie_Jones_(songwriter)", "http://dbpedia.org/resource/Sjava", "http://dbpedia.org/resource/Al_McKay", "Buster Brown", "http://dbpedia.org/resource/Leon_Ware", "http://dbpedia.org/resource/Janie_Bradford", "http://dbpedia.org/resource/Don_%22Sugarcane%22_Harris", "Harris", "Terry", "Dewey Terry", "Dernst Emile II, Antea Birchett, Anesha Birchett, Delisha Thomas", "Anthony Sansault", "David Ployer", "Jean-Michel Padilla", "http://dbpedia.org/resource/Ron_Miller_(songwriter)", "http://dbpedia.org/resource/Holland-Dozier-Holland", "http://dbpedia.org/resource/R._Dean_Taylor", "http://dbpedia.org/resource/The_Valadiers", "http://dbpedia.org/resource/Lawrence_Horn", "http://dbpedia.org/resource/Ronald_Dunbar", "P. Bennet", "Brian Ray, Steve LeGassick", "Jeffrey Atkins, Marcus Vest, J Angel", "Mel Larson, Jerry Marcellino", "http://dbpedia.org/resource/Randy_Edelman", "Ekundayo Paris, Nelson Pigford", "Syl Johnson, Jimmy Jones, Glenn Watts", "Mai Kuraki, Aika Ohno", "Niomi Arleen McLean-Daley, Christian Karlsson, Pontus Winnberg, Henrik Jonback", "http://dbpedia.org/resource/Lionel_Richie", "*Bert Berns\n*Jerry Wexler\n*Edwin Starr\n*Johnny Bristol\n*Harvey Fuqua", "http://dbpedia.org/resource/Gwen_Gordy_Fuqua", "Hadise Acikg\u00f6z, Yves Jongen", "Tricky Stewart, Jermaine Dupri, Marques Houston, Tony Oliver", "http://dbpedia.org/resource/Tracy_Ackerman", "http://dbpedia.org/resource/Ray_Hedges", "Nigel Butler", "Abdul Nello", "Batti Baas, Aaron Blackmon", "http://dbpedia.org/resource/Luther_Ingram", "John Mc Farland", "* Jhen\u00e9 Aiko Chilombo\n* Sean Anderson\n* Brian Warfield\n* Gabriella Wilson\n* Mac Robinson", "http://dbpedia.org/resource/Galt_MacDermot", "http://dbpedia.org/resource/Omen_(musician)", "http://dbpedia.org/resource/Elite_(producer)", "Ron Gilmore Jr.", "Nao'ymt", "Gerald Levert and Marc Gordon", "Mai Kuraki, YOKO Black. Stone, Jeffrey Qwest, Tomoo Kasahara", "James Moore Slim Harpo", "*Goetzman\n*Piccirillo", "Joe Tex", "* Joe Tex\n* James Brown", "Misia, Sakoshin, Yudai Suzuki", "*Leon Huff\n*Gene McFadden\n*John Whitehead", "http://dbpedia.org/resource/Wilko_Johnson", "http://dbpedia.org/resource/Larry_Williams", "Larry Williams", "Harish Joya", "Robert Parker", "Peter Tufel, Kenny Lehman", "Billy Austin, Louis Jordan", "Ian Green, Michelle Lewis", "Adya", "J. Seneca, J. Lee, Rose Marie McCoy", "Clyde Otis", "Brook Benton", "Belford Hendricks", "*Brook Benton\n*Belford Hendricks\n*Clyde Otis", "Nickolas Ashford", "Valerie Simpson", "Bryon Jones, John Kenny", "http://dbpedia.org/resource/Ezekiel_Lewis", "http://dbpedia.org/resource/The_Clutch", "http://dbpedia.org/resource/J._Que", "B. Muhammad", "B. Seals-Kennedy", "C. Nelson", "http://dbpedia.org/resource/Dennis_Lambert", "http://dbpedia.org/resource/Brian_Potter_(musician)", "Rauli Eskolin", "Jimmy Hughes", "Nick Lowe", "Billy Boy Arnold", "JD McPherson", "Joseph Simeone", "Big Tiny Kennedy", "Dan Auerbach / JD McPherson", "JD McPherson & Doug Corcoran", "JD McPherson & Jason Smay", "JD McPherson & Lucie Silvas", "JD McPherson & Nicole Atkins", "JD McPherson & Raynier Jacob Jacildo", "JD McPherson & Trent Dabbs", "JD McPherson / Mark Neill", "McPherson / Corcoran / Sutton / Jacildo / Smay", "McPherson / Sutton", "Richard Edward Scott & Teddy Gentry", "McPherson / Aaron Lee Tasjan / Jacildo / Adam Molad / Sutton / Corcoran / Smay", "McPherson / Jacildo / Smay / Corcoran / Jeffrey Randall Bowman / Sutton", "JD McPherson / Corcoran / Molad / Sutton / Jacildo / Mandy McPherson / Smay / unknown writer", "McPherson / Corcoran / Sutton / Jacildo / Smay / Butch Walker", "JD McPherson / Doug Corcoran / Jason Smay / Ray Jacildo / Parker Millsap / Jimmy Sutton", "Nadir Khayat, AJ Junior, Cornell Haynes, Ilya, Mohombi", "Savuto Vakadewavosa & DJ Ritendra", "*Janie Bradford\n*Berry Gordy", "http://dbpedia.org/resource/Master_P", "http://dbpedia.org/resource/Michael_Jackson", "http://dbpedia.org/resource/Mack_Rice", "Hadise and Yves Jongen.", "Robert Spencer", "Johnny Roberts", "Robert Spencer, Barbie Gaye", "Chad Cates, Jason Walker, Tony Webster Wood", "*Smokey Robinson\n*Ronald White", "* Fats Domino\n* Dave Bartholomew", "* G-Dragon\n*Shoko Fujibayashi\n* Komu\n* Rina Moon", "* Lutricia McNeal\n* Jay G.\n* Daniel B\u00e4ckstr\u00f6m\n* Daniel Papalexis\n* Rami Yacoub\n* Josef Larossi", "* Kathy Wakefield\n* Leonard Caston", "David English", "Elbridge Bryant", "http://dbpedia.org/resource/Emanuel_Kiriakou", "http://dbpedia.org/resource/E._Kidd_Bogart", "http://dbpedia.org/resource/Oh_Land", "Bernard Edwards, Nile Rodgers, Princesa", "*J. J. Jackson\n*Pierre Tubbs\n*Sidney Barnes", "Marv Johnson", "http://dbpedia.org/resource/Ben_Tucker", "http://dbpedia.org/resource/Bob_Dorough", "Lemar, Alonzo Mario Stevenson, Eric Stamile, Tony Reyes", "http://dbpedia.org/resource/Shirley_Owens", "http://dbpedia.org/resource/Emcee_N.I.C.E.", "William \"Kelly Keys\" Armour", "http://dbpedia.org/resource/Kris_Kross", "http://dbpedia.org/resource/Eddie_Cornelius", "John Vallins, Nat Kipner", "Ritchie Adams, Malou Ren\u00e9", "http://dbpedia.org/resource/Usher_(musician)", "Richard Butler, Jr.", "Pierre Medor", "Roberts II", "Tiny Bradshaw, Howard Kay, Lois Mann", "Tiny Bradshaw, Lois Mann, Howie Kay", "Tiny Bradshaw, Lois Mann, Howard Kay", "Tiny Bradshaw, Lois Mann Syd Nathan", "Joe Shapiro, Lou Stallman", "http://dbpedia.org/resource/Eugene_Frank_Williams", "William Bell and Paul Mitchell", "*Jennifer Brown\n*Andy Marvel\n*Billy Mann", "Joseph Wade Scott, Deadric Malone Don Robey", "Buck Ram, Morty Nevins, Al Nevins, Artie Dunn", "Jack Conrad, Ray Kennedy", "http://dbpedia.org/resource/Lil'_Ronnie", "Jeremiah Bethea", "Tamia Hill", "Omar Walker", "Philip Lynah Jr.", "Benjamin Singh-Reynolds", "http://dbpedia.org/resource/Memphis_Curtis", "Eric Fearman, Bobby Harris", "http://dbpedia.org/resource/Verdine_White", "http://dbpedia.org/resource/Larry_Dunn", "http://dbpedia.org/resource/Phillip_Bailey", "http://dbpedia.org/resource/Apache_(rapper)", "Queen Latifah", "Virgil \"Pappy\" Stewart", "Fujibayashi, Imai", "Smokey Robinson", "Naomi Neville Allen Toussaint", "Smokey Robinson, Pete Moore, and Ronnie White", "Ahmad Balshe, Alex Gordon", "Gerald LeVert, Marc Gordon, Eddie LeVert Sr.", "http://dbpedia.org/resource/Esm\u00e9e_Denters", "http://dbpedia.org/resource/Toby_Gad", "http://dbpedia.org/resource/Jay_Graydon", "http://dbpedia.org/resource/Bill_Champlin", "http://dbpedia.org/resource/Allen_Ritter", "http://dbpedia.org/resource/Lil_Nas_X", "http://dbpedia.org/resource/Boi-1da", "Imran Abbas", "Jahaan Sweet", "Thomas Kessler", "http://dbpedia.org/resource/Frank_Dukes", "http://dbpedia.org/resource/The_Weeknd", "http://dbpedia.org/resource/Nicolas_Jaar", "http://dbpedia.org/resource/Ne-Yo", "* Robert Clivill\u00e9s\n* David Cole\n* Bryan Higgins\n* Duran Ramos\n* Trevor Smith", "http://dbpedia.org/resource/George_David_Weiss", "http://dbpedia.org/resource/Luigi_Creatore", "http://dbpedia.org/resource/Hugo_Peretti", "Bill Meyers, Maurice White, Allee Willis", "http://dbpedia.org/resource/Glasses_Malone", "Sam Cooke, Charles Cook, Jr.", "Sam Cooke, Charles Cook, Jr., Jerry Butler, Curtis Mayfield, Calvin Carter, Jerry Leiber & Mike Stoller", "http://dbpedia.org/resource/Don_Covay", "http://dbpedia.org/resource/Vishal_Dadlani", "http://dbpedia.org/resource/Niranjan_Iyengar", "http://dbpedia.org/resource/Jason_Evigan", "http://dbpedia.org/resource/Jonathan_Tucker", "http://dbpedia.org/resource/Nick_Jonas", "http://dbpedia.org/resource/PJ_Bianco", "http://dbpedia.org/resource/Jay-Z", "Jeff Barry, Ellie Greenwich and Phil Spector", "The Philosopher Kings", "http://dbpedia.org/resource/Cory_Rooney", "http://dbpedia.org/resource/Wes_King", "http://dbpedia.org/resource/Cindy_Morgan", "http://dbpedia.org/resource/Cindy_Morgan_(singer)", "Michael W. Smith", "http://dbpedia.org/resource/Matthew_West", "* General Johnson\n* Angelo Bond\n* Greg Perry", "http://dbpedia.org/resource/Nat_Adderley_Jr.", "Jimmy Grant, Allan Felder", "*David Garcia\n*Ben Glover\n*Christopher Stevens", "Jamie Houston", "http://dbpedia.org/resource/John_Leslie_McFarland", "http://dbpedia.org/resource/Aaron_Schroeder", "* Diane Warren", "Koda Kumi, Markie, Katsuhiko Sugiyama", "http://dbpedia.org/resource/T-Pain", "http://dbpedia.org/resource/Rick_Ross", "http://dbpedia.org/resource/Birdman_(rapper)", "Sheldon Reynolds, Maurice White and Allee Willis", "Justin Timberlake", "Tony Maiden", "http://dbpedia.org/resource/GZA", "http://dbpedia.org/resource/Ghostface_Killah", "http://dbpedia.org/resource/Inspectah_Deck", "http://dbpedia.org/resource/Jerry_Duplessis", "http://dbpedia.org/resource/Lil_Wayne", "http://dbpedia.org/resource/RZA", "Isaac Hayes", "Lamont Coleman", "Devon Golder", "K. Lancaster", "Allee Willis, Eduardo Del Barrio and Maurice White", "Dennis Yost, James Cobb, Buddy Buie", "H.U.B.", "Divine Brown, Nelly Furtado, Byram Joseph", "http://dbpedia.org/resource/Israel_(singer)", "Sam Cooke, Arthur Conley and Otis Redding", "http://dbpedia.org/resource/Sid_Wyche", "http://dbpedia.org/resource/Titus_Turner", "Titus Turner", "George Clinton/Daron Taylor", "D. Williams, C. McDonald, F. Baskett, L. Groves", "http://dbpedia.org/resource/Doc_Pomus", "http://dbpedia.org/resource/Fonzi_Thornton", "Rex Rideout", "Vandross", "Johnny Bragg and Robert Riley", "Peabo Bryson", "Karl Wolf", "Jessica Cornish, Farrah Fleurimond, Martin Kleveland, Natalie Walker", "*Kevin Jackson\n*Erik White", "http://dbpedia.org/resource/Mira_Craig", "Alan Maman, Albert Johnson, Nicole Albino, Natalie Albino, Gregory W. Jackson, Al Kooper", "Jeffrey Osborne, John T. McGhee", "*Michael Jackson\n*Brad Buxer\n*Teddy Riley", "* Pdogg\n* RM\n* Lauren Dyson\n* Tushar Apte\n* Suga\n* J-Hope\n* Krysta Youngs\n* Julia Ross\n* Bobby Chung\n* Song Jae-kyung\n* Adora", "Lou Willie Turner", "* Akil King\n* Anthony M. Jones\n* Bianca Atterberry\n* Daoud Anthony\n* Sabrina Carpenter", "Leon Carr, Earl Shuman", "http://dbpedia.org/resource/Sean_Garrett", "Raymond \"Clubba Langg\" Oglesby", "* Dan Hartman\n* Charlie Midnight", "Steve Goldman", "Christopher Bridges,Lloyd and Wood Works", "Marvin Gaye, William \"Mickey\" Stevenson, George Gordy", "Diego Calvetti, Marco Ciappelli", "http://dbpedia.org/resource/Auburn_(singer)", "http://dbpedia.org/resource/Iyaz", "http://dbpedia.org/resource/J._R._Rotem", "http://dbpedia.org/resource/Gary_Barlow", "http://dbpedia.org/resource/Eliot_Kennedy", "http://dbpedia.org/resource/James_%22J.T.%22_Taylor", "http://dbpedia.org/resource/Natasha_Hamilton", "http://dbpedia.org/resource/Robert_%22Kool%22_Bell", "http://dbpedia.org/resource/Claydes_Charles_Smith", "http://dbpedia.org/resource/Jeff_Lynne", "http://dbpedia.org/resource/John_Holt_(singer)", "http://dbpedia.org/resource/Jem_Godfrey", "http://dbpedia.org/resource/Bill_Padley", "http://dbpedia.org/resource/Ronald_Bell_(musician)", "Bell", "Kool & the Gang", "Brown", "George Brown", "George M. Brown", "Tim Woodcock", "Dennis Thomas", "Greg Wilson", "Martin Foster", "Tracey Carmen", "Kool and the Gang", "Howard Barrett", "Tyrone Evans", "Meekaaeel Muhammad", "Earl Toon, Jr.", "http://dbpedia.org/resource/Chris_Kenner", "http://dbpedia.org/resource/G-Dragon", "http://dbpedia.org/resource/T.O.P", "http://dbpedia.org/resource/Taeyang", "* Charles Axton\n* Jerry Lee Smith\n* Floyd Newman\n* Chips Moman\n* Gilbert C. Caple", "Stevie Wonder, DeVante Swing", "Lloyd Price", "http://dbpedia.org/resource/Tamia", "Salaam Remi", "Alicia Renee Williams", "Little Willie John, Titus Turner, James McDougal", "Holland\u2013Dozier\u2013Holland", "The Doors", "http://dbpedia.org/resource/Michael_Masser", "* Michael Masser\n* Linda Creed", "Richard Stannard, Ash Howes, Steve Malcolmson", "http://dbpedia.org/resource/Jhen\u00e9_Aiko", "Pharrell Williams", "Shawn Carter", "Brian Warfield", "Mac Robinson", "Chad Hugo", "Myron Birdsong", "Frank Romano", "Bob Steele", "Wilma Cosm\u00e9, Russ DeSalvo,", "Nathaniel Calhoun", "Lemar Obika, Harold Lily, Hart Dementi, Gerard Thomas", "Simi", "http://dbpedia.org/resource/Howard_Greenfield", "http://dbpedia.org/resource/Neil_Sedaka", "*Park Jin-young\n*Tupac Shakur\n*Johnny Jackson\n*Joseph Jefferson\n*Charles Simmons", "http://dbpedia.org/resource/Kenny_Gamble", "Misha B, Talay Riley", "Steve Horton", "http://dbpedia.org/resource/Lona_Stevens,_Zell_Sanders", "Lona Stevens, Zell Sanders", "http://dbpedia.org/resource/Don_Was", "http://dbpedia.org/resource/David_Was", "David Was, Don Was", "http://dbpedia.org/resource/Roger_Penzabene", "http://dbpedia.org/resource/Randy_Travis", "Alan Jackson", "http://dbpedia.org/resource/Jesse_Stone", "Parker", "http://dbpedia.org/resource/Stephen_Bray", "Dan Gilroy", "Ella Fitzgerald", "http://dbpedia.org/resource/Teddy_Riley", "M. Smith", "M. Jackson", "S. Blair", "Lil' C. Smith", "*Jeff Barry\n*Ellie Greenwich", "Joseph Stefano, Jon Secada, Miguel Morejon", "http://dbpedia.org/resource/Charles_Wright_(musician)", "http://dbpedia.org/resource/Lena_Agree", "http://dbpedia.org/resource/Nina_Sky_(group)", "http://dbpedia.org/resource/Cary_Gilbert", "* Kenneth Gamble\n* Leon Huff\n* Cary Gilbert", "Rory Bennett, Cedric R Hailey, Joel Hailey", "Jonah Ellis, Alisa Peoples and Cavin Yarbrough", "http://dbpedia.org/resource/Freddie_Perren", "Christine Yarian", "http://dbpedia.org/resource/David_Conley_(musician)", "http://dbpedia.org/resource/David_Townsend_(musician)", "Derrick Culler", "http://dbpedia.org/resource/Bobby_Worth", "* D. Smith\n* C. Vetter", "Bert Berns, Solomon Burke", "Bert Berns/Solomon Burke", "http://dbpedia.org/resource/Kim_Eana", "http://dbpedia.org/resource/Allan_Felder", "http://dbpedia.org/resource/Norman_Harris_(musician)", "http://dbpedia.org/resource/Ron_Tyson", "http://dbpedia.org/resource/Simi_(singer)", "http://dbpedia.org/resource/Gene_Chandler", "http://dbpedia.org/resource/Bernice_Williams", "http://dbpedia.org/resource/Earl_Edwards_(songwriter)", "Brandi Wells, Terry Price", "http://dbpedia.org/resource/Polow_da_Don", "http://dbpedia.org/resource/RM_(rapper)", "Charlie J. Perry", "Rod Gammons", "Hawk Wolinski", "E. Simmons", "* Ellie Goulding\n* Ari Staprans Leff\n* Brett McLaughlin\n* Joe Kearns \n* Oscar G\u00f6rres", "http://dbpedia.org/resource/Sam_Watters", "http://dbpedia.org/resource/Kevin_Thornton_(musician)", "Howard Thompson", "Bryan Abrams", "Mark Calderon", "http://dbpedia.org/resource/Chauncey_Hawkins", "http://dbpedia.org/resource/Ahmed_Balshe", "* Grady Martin\n* Alex Zanetis", "*Abel Tesfaye\n*Jason Quenneville\n*Carlo Montagnese\n*Ahmad Balshe", "http://dbpedia.org/resource/Johnny_Otis", "Johnny Otis", "Dkorie Terrell, Marvin Scandrick, Jasiel Roberts", "http://dbpedia.org/resource/Waje", "http://dbpedia.org/resource/Muna_(rapper)", "Emilio Castillo", "Stephen Kupka", "http://dbpedia.org/resource/Robert_Palmer_(singer)", "Jeff Fortgang", "http://dbpedia.org/resource/Richard_Barrett_(musician)", "Brenda Lee Eager, Prince, Hilliard Wilson", "http://dbpedia.org/resource/M\u00fda", "The Whole 9", "Vyshonn Miller", "http://dbpedia.org/resource/Johnny_Bristol", "Harvey Fuqua", "Jackey Beavers", "Etta James", "Pearl Woods", "Leroy Kirkland", "Ji Yu Ri", "Santiago Leyva", "Egbert Nathaniel Dawkins", "Nasir bin Olu Dara Jones", "http://dbpedia.org/resource/John_Hurley,_Ronnie_Wilkins", "Mitchell Bottler", "Ted McNamara", "Gary Zekley", "A. Paris", "E. Paris", "Mitchell Bottler, Edward McNamara, Adeniya Paris, Ekundayo Paris, Gary Zekley", "http://dbpedia.org/resource/George_Harrison", "http://dbpedia.org/resource/Nappy_Brown", "http://dbpedia.org/resource/Fred_Mendelsohn", "http://dbpedia.org/resource/Rose_Marie_McCoy", "Johnny Dee", "http://dbpedia.org/resource/John_Lee_Hooker", "Laura Izibor", "Billy Jackson / Jimmy Wisner", "http://dbpedia.org/resource/Patrick_Adams_(musician)", "http://dbpedia.org/resource/Leon_Sylvers_III", "M. Riley", "A. Dickey", "Edward Ferrell, Clifton Lighty, Darren Lighty, Balewa Muhammad", "http://dbpedia.org/resource/Cook_Classics", "http://dbpedia.org/resource/Charlie_Puth", "prev", "*Clarence Paul\n*Barney Ales\n*Dave Hamilton\n*William \"Mickey\" Stevenson", "Jeffrey Cohen", "Narada Michael Walden", "http://dbpedia.org/resource/Bobby_Day", "http://dbpedia.org/resource/Charles_Singleton_(songwriter)", "Beni, Fujibayashi, Imai", "Phil Spector, Leroy Bates", "http://dbpedia.org/resource/John_Mayer", "Gilbert Garfield", "Warren Griffin III", "http://dbpedia.org/resource/Franne_Golde", "Walter Orange", "Howard Barnes, Don Robertson", "Barnes, Robertson", "H. Barnes, D. Robertson", "Leon Ren\u00e9, as Jimmie Thomas", "Sherry Scott", "The Isley Brothers and Chris Jasper", "Ben Ofoedu / Jack Lucien", "http://dbpedia.org/resource/Duncan_Millar_(musician)", "http://dbpedia.org/resource/David_Titlow", "http://dbpedia.org/resource/Joseph_Brooks_(songwriter)", "http://dbpedia.org/resource/Max_Martin", "H. Hammerschmied", "Sammie, Sean Paul", "Chink Santana, Niomi McLean-Daley", "http://dbpedia.org/resource/Jerry_Goldstein_(record_producer,_musician)", "http://dbpedia.org/resource/War_(American_band)", "Sam Mizell, Matthew West, Clinton Lagerberg", "Bobby Womack, Jim Grisby, Joe Hicks", "http://dbpedia.org/resource/Tina_Turner", "Tina Turner, Leon Ware", "Rhonda Graam", "Tony Boyd, Archie Powell", "http://dbpedia.org/resource/Manfred_Mann_(musician)", "http://dbpedia.org/resource/Mike_Hugg", "http://dbpedia.org/resource/Paul_Jones_(singer)", "Cyril Kamar, Sonny Black", "Sam Cooke , Michael Zager", "Danny Fernandes, Alexander Vujic", "http://dbpedia.org/resource/Tony_Yayo", "Tsugumi", "Yoshika", "James \"Shep\" Sheppard, Clarence Bassett, Charles Baskerville", "James Sheppard, Clarence Bassett, Charles Baskerville", "Miwa Yoshida, Toshiki Kadomatsu, Aoyama Thelma", "http://dbpedia.org/resource/Yasushi_Akimoto", "http://dbpedia.org/resource/Booker_T._Jones", "http://dbpedia.org/resource/Steve_Cropper", "http://dbpedia.org/resource/Lewie_Steinberg", "http://dbpedia.org/resource/King_Floyd", "* Russell Lewis\n* Herman Davis", "Tony Maiden, Lalomie Washburn", "http://dbpedia.org/resource/Bernard_Edwards", "http://dbpedia.org/resource/Nile_Rodgers", "Bernard Edwards", "Nile Rodgers", "Traveling Wilburys", "http://dbpedia.org/resource/Wheesung", "Iggy", "Seo Yong-bae", "Jimmy Hogarth", "http://dbpedia.org/resource/Lin-Manuel_Miranda", "http://dbpedia.org/resource/50_Cent", "http://dbpedia.org/resource/Governor_(singer)", "http://dbpedia.org/resource/Red_Steagall", "http://dbpedia.org/resource/Don_Lanier", "David L. Elliott, Terry Steele, Charles White", "H. Matthews", "Eddie Holland & Shorty Long", "H. Matthews/N. Albright", "H. Matthews/P. Settle", "Richard Penniman Little Richard", "Jimi Hendrix", "112", "http://dbpedia.org/resource/Prodigy_(rapper)", "http://dbpedia.org/resource/Havoc_(Mobb_Deep)", "Misia, Toshitaka Sonoda, Chihiro Close, Jun Sasaki, Satoshi Shimano", "http://dbpedia.org/resource/No_Malice", "http://dbpedia.org/resource/Pusha_T", "http://dbpedia.org/resource/Runtown", "Knight, Drakes, Shorten, Noble", "*Don Powell\n*Rick Kelly\n*Linda Mallah", "Al Johnson and Joe Ruffino", "Chihiro Imai\n* Tsunku", "http://dbpedia.org/resource/Beverly_Jo_Scott", "Lo\u00efc Nottet", "http://dbpedia.org/resource/Dorothy_LaBostrie", "http://dbpedia.org/resource/McKinley_Millet", "http://dbpedia.org/resource/J._Vincent_Edwards", "http://dbpedia.org/resource/Pierre_Tubbs", "Pierre Tubbs and J. Vincent Edwards", "http://dbpedia.org/resource/Eric_Bellinger", "http://dbpedia.org/resource/Hit-Boy", "http://dbpedia.org/resource/Drake_(rapper)", "http://dbpedia.org/resource/Justin_Bieber", "*The Doors\n*Brian Carman & Bob Spickard\n*Vera Matson Ken Darby\n*Junior Parker\n*Sam Phillips\n*Elvis Presley", "Harold Crafton, Wendell Keane, Harold Bagby", "http://dbpedia.org/resource/Adele", "http://dbpedia.org/resource/Paul_Epworth", "Adele", "Paul Epworth", "Adele Adkins, Paul Epworth, Nickolas Ashford, Valerie Simpson", "Rob Peckman", "Luther Vandross, M. Miller", "http://dbpedia.org/resource/MC_Hammer", "http://dbpedia.org/resource/Robert_Brookins", "http://dbpedia.org/resource/Stephanie_Mills", "Claudio Cueni, Chris Stokes", "Roger McNair, Billy Lawrence, Rashad Smith, Armando Colon", "http://dbpedia.org/resource/Clint_Ballard_Jr.", "http://dbpedia.org/resource/Jim_Ford", "http://dbpedia.org/resource/Clifton_Davis", "Richard Berry", "http://dbpedia.org/resource/SoulJa", "http://dbpedia.org/resource/Bill_Medley", "Tiziano Ferro", "Tony Joe White", "Sting, David Hartley", "Ben E. King, Elmo Glick, Ollie Jones", "*Leroy Burgess\n*Patrick Adams", "Sally Jo Dakota", "Shanice Wilson", "http://dbpedia.org/resource/Wayne_Carson", "Wayne Carson", "Johnny Northern, Jimmy Bailay", "Harold Logan and Lloyd Price", "Cheyenne Fowler, Keg Johnson, June Deniece Williams", "Annette Tucker, Nancie Mantz", "Don and Dick Addrisi", "http://dbpedia.org/resource/Debbie_Dean_(singer)", "http://dbpedia.org/resource/Edward_Holland,_Jr.", "http://dbpedia.org/resource/Jo_Armstead", "http://dbpedia.org/resource/Nick_Ashford", "Wanda Hutchinson, Jeanette Hawes", "http://dbpedia.org/resource/William_Guest_(singer)", "http://dbpedia.org/resource/Gladys_Knight", "http://dbpedia.org/resource/Merald_%22Bubba%22_Knight", "http://dbpedia.org/resource/Katherine_Anderson", "Randy Newman", "Ray Charles, Renald Richard", "George Gordy", "Allen Story", "Billie-Jean Brown", "Margaret Johnson Gordy", "Ava Aldridge & Eddie Struzick", "http://dbpedia.org/resource/Henry_Glover", "http://dbpedia.org/resource/Lois_Mann", "* Eric Saade\n* Linnea Deb\n* Joy Deb\n* Jimmy \"Joker\" Th\u00f6rnfeldt", "Lou Stallman", "Misia", "http://dbpedia.org/resource/Buddah_Bless", "http://dbpedia.org/resource/City_Girls", "Charles Wright", "http://dbpedia.org/resource/Steven_%22Lenky%22_Marsden", "Anthony Kelly", "Mark Wolfe", "Wayne Passley", "*Kanye West\n*Tyrone Griffin\n*Austin Post\n*Anthony Kilhoffer\n*Michael Dean\n*Ryan Vojtesak\n*Noah Goldstein\n*Benjamin Benstead\n*Jerome Potter\n*Samuel Griesemer\n*Norman Whitfield\n*Edward Holland\n*Cornelius Grant\n*Larry Heard\n*Robert Owens\n*Luis Vega\n*Ronald Carroll\n*Barbara Tucker\n*Harold Matthews\n*Stephan Garrett\n*Eric Seats\n*Rapture Stewart\n*Malik Jones", "Ken Hirai, Uru", "* Ahmad Balshe\n* Jason Quenneville\n* Danny Fernandes", "http://dbpedia.org/resource/Eddie_del_Barrio", "Jesse Johnson", "George Michael", "Pino Massara, Rosella Conz", "John Davenport", "Peggy Lee", "Eddie Cooley", "*Peggy Lee\n*Eddie Cooley\n*John Davenport", "http://dbpedia.org/resource/Hank_Ballard", "Tessanne Chin, Balewa Muhammad, Perry Mapp", "Morris Day, James Harris III, Terry Lewis", "Danny Fernandes, GoodWill & MGI, Roderick Kerr, Brian Ellis, Richard Page, Steve George, John Lang", "http://dbpedia.org/resource/Red_Caf\u00e9", "http://dbpedia.org/resource/Ryan_Leslie", "http://dbpedia.org/resource/Ahmet_Ertegun", "Elvin Bishop", "http://dbpedia.org/resource/Helen_Miller_(songwriter)", "Don Davis, Kent Barker, Cam Wilson", "Marvin Gaye, Ed Townsend", "http://dbpedia.org/resource/Wilbert_Harrison", "Wilbert Harrison", "Gerry Goffin & eitherJack Keller or Carole King", "* David Crowder\n* Ed Cash", "Joe Sobotka, Johnny Wyker", "http://dbpedia.org/resource/Dee_Dee_Ford", "http://dbpedia.org/resource/Ralph_Johnson_(musician)", "Carl Spencer, Henry Glover", "Koda Kumi, Yanagiman", "http://dbpedia.org/resource/Freddie_Mercury", "Charles McCormick", "* Ben Kohn\n* Ed Drewett\n* Liam Payne\n* Ella Henderson\n* Jan\u00e9e Bennett\n* Peter Kelleher\n* Tom Barnes", "*William Edward John Little Willie John\n*Mertis John Jr.", "Misia, Ken Matsubara, Jun Sasaki", "Danny Fernandes, Ahmad Balshe, Alexander Vujic", "http://dbpedia.org/resource/Bryan_Adams", "http://dbpedia.org/resource/Andrea_Remanda", "http://dbpedia.org/resource/Joe_Scott_(musician)", "http://dbpedia.org/resource/Bill_Harvey_(bandleader)", "http://dbpedia.org/resource/Earl_Forest", "N. Brown", "*Oscar Washington\n*Lewis P. Simpkins\n*Jimmy Forrest", "* Oscar Washington\n* Lewis P. Simpkins\n* Jimmy Forrest", "http://dbpedia.org/resource/David_Frank_(music)", "http://dbpedia.org/resource/Mic_Murphy", "Marcella Detroit", "http://dbpedia.org/resource/Marc_Jordan", "http://dbpedia.org/resource/John_Capek", "http://dbpedia.org/resource/Hikaru_Utada", "http://dbpedia.org/resource/Danny_Fernandes", "http://dbpedia.org/resource/Jason_Quenneville", "http://dbpedia.org/resource/Andrew_Vowles", "http://dbpedia.org/resource/Tracey_Thorn", "http://dbpedia.org/resource/Daddy_G", "http://dbpedia.org/resource/Robert_Del_Naja", "Doltz, Rohff, Reego", "Brian Holland, Lamont Dozier, Eddie Holland, R. Dean Taylor", "Benjamin Nelson, Lover Patterson, George Treadwell", "Benjamin Nelson, Lover Patterson, George Treadwell, Jerry Leiber, Mike Stoller", "http://dbpedia.org/resource/Lou_Reed", "Otis Redding", "http://dbpedia.org/resource/Ted_White_(manager)", "Aretha Franklin", "http://dbpedia.org/resource/Lowman_Pauling", "Lowman Pauling", "* Nile Rodgers\n* Bernard Edwards", "* Donny Hathaway \n* Nadine Theresa McKinnor", "Donny Hathaway and Nadine Theresa McKinnor", "Doc Pomus and Mort Shuman", "http://dbpedia.org/resource/Leon_Russell", "Charlie Singleton", "http://dbpedia.org/resource/Haras_Fyre", "http://dbpedia.org/resource/Gwen_Guthrie", "* Belcalis Almanzar\n* Benjamin Levin\n* Jordan Thorpe\n* Justin Tranter\n* Alexandra Tamposi\n* Andrew Wotman", "Al McKay, Charles Wright, James Gadson, John Rayford, Melvin Dunlap", "* Hikaru Utada", "Norman Meade Jerry Ragovoy", "*Norman Meade Jerry Ragovoy\n*Jimmy Norman", "*Norman Meade a.k.a. Jerry Ragovoy\n*Jimmy Norman", "http://dbpedia.org/resource/Rob_Knox_(producer)", "http://dbpedia.org/resource/Sebastian_Kole", "http://dbpedia.org/resource/Alexander_Sowinski", "http://dbpedia.org/resource/Samuel_T._Herring", "http://dbpedia.org/resource/Matthew_Tavares", "http://dbpedia.org/resource/Chester_Hansen", "http://dbpedia.org/resource/Leland_Whitty", "* Alex van den Hoef\n* Chris van den Hoef\n* Andrew Bullimore\n* Benjamin Shubert\n* Christian Michael Dold\n* Golden Landis Von Jones\n* Matthew Musto", "Ken the 390, Thelma Aoyama, Mika Arata, Larry Morey", "Ayaka", "Kentar\u014d Kobuchi", "Shunsuke Kuroda", "June", "Slow Rabbit", "Changmo", "Suran", "http://dbpedia.org/resource/Jade_Thirlwall", "http://dbpedia.org/resource/Iain_James", "http://dbpedia.org/resource/Jesy_Nelson", "http://dbpedia.org/resource/Leigh-Anne_Pinnock", "http://dbpedia.org/resource/Perrie_Edwards", "http://dbpedia.org/resource/Michelle_Lewis", "Thomas Barnes", "Peter Kelleher", "Ben Kohn", "Mischke Butler", "Erika Nuri", "Heidi Rojas", "Sadiq Onifade", "Oluwaseyi Akerele", "Dave Bartholomew and Pearl King", "http://dbpedia.org/resource/Asian_Da_Brat", "http://dbpedia.org/resource/Jay_Sean", "http://dbpedia.org/resource/Gucci_Mane", "Khaid", "http://dbpedia.org/resource/Herb_Alpert", "http://dbpedia.org/resource/Lou_Adler", "Lou Adler, Herb Alpert, Sam Cooke", "Lukay aka \"Hit-mayka\"", "Barbara Mason", "http://dbpedia.org/resource/Banky_W", "Ron Miller, Bryan Wells", "Vernon Bullock, Jack Goga, Ivy Jo Hunter and Pam Sawyer.", "Marty Cooper, Lou Josie", "Skalp, Eloquence, Tony Parker", "A-side: Holland\u2013Dozier\u2013Holland", "B-side: Holland\u2013Dozier\u2013Gorman", "Eric Ben\u00e9t, George Nash, Jr.", "Allee Willis, David Foster and Maurice White", "*Darryl Carter\n*Bobby Womack\n*Linda Womack", "http://dbpedia.org/resource/Wayne_Vaughn", "Naomi Neville", "Harry Ray, Al Goodman, Lee Walter", "http://dbpedia.org/resource/Charlie_Smalls", "Al Yankovic", "David Foster, Larry Dunn, Brenda Russell, Verdine White and Maurice White", "Stephen Mitchell", "Marti Sharron", "Gary Skardina", "* Stephen Mitchell\n* Marti Sharron\n* Gary Skardina", "* Bobby Eli\n* John Freeman\n* Vinnie Barrett", "Bobby Eli, John Freeman, Vinnie Barrett", "JHETT, Koda Kumi, Lori Fine", "http://dbpedia.org/resource/Gregory_Carroll_(R&B_singer)", "http://dbpedia.org/resource/Doris_Troy", "http://dbpedia.org/resource/Colin_Blunstone", "Buddy Johnson", "Walter Jacobs Little Walter", "Disputed", "* Bill Withers\n* Ralph MacDonald\n* William Salter", "http://dbpedia.org/resource/Richard_Penniman", "Hikaru Utada", "Nariaki Obukuro", "Youki Kojima", "http://dbpedia.org/resource/Ua_(singer)", "http://dbpedia.org/resource/Shinichi_Osawa", "* Teddy\n* Taeyang\n* T.O.P\n* G-Dragon", "JQ", "Jo Yoon-kyung", "Seolim", "* Folarin\n* Antonio Palmer\n* Stokley Williams\n* Sam Dew", "Tetsuya Komuro", "Yasuhiro Abe", "Tsukasa", "Adelabu Alexander Adewunmi", "Bobby Womack", "*Donna Summer\n*Bruce Sudano\n*Michael Omartian", "Rose Marie McCoy and Luther Dixon", "Tony Tolbert, Lance Alexander", "http://dbpedia.org/resource/Deon_Jackson_(singer)", "http://dbpedia.org/resource/Ron_Holden", "http://dbpedia.org/resource/Bert_Keyes", "http://dbpedia.org/resource/Sylvia_Robinson", "Bert Keyes", "* Lee Chae-rin\n* Anne-Marie Nicholson\n* Freedo\n* Nafla\n* Cleo Tighe\n* Sarah Blanchard", "Paul Kim", "http://dbpedia.org/resource/Memphis_Edward_Curtis", "Adrian McKinnon", "Andrew Choi", "Jang Yeo-jin", "http://dbpedia.org/resource/Desmond_Child", "http://dbpedia.org/resource/Phoebus_(songwriter)", "M. Brown, James Bryan", "Jeff Miyahara.", "http://dbpedia.org/resource/Sam_Brown_III", "Ren\u00e9e Armand", "Dave Bartholomew, Pearl King, Anita Steinman", "Donna Summer, Bruce Sudano, Michael Omartian, Virgil Weber, John Bettis, Harold Faltermeyer", "Terry Williams", "Melissa Elliott", "Chad Elliot", "http://dbpedia.org/resource/Jessie_Hill", "http://dbpedia.org/resource/Mort_Garson", "http://dbpedia.org/resource/Bob_Hilliard", "Bob Hilliard", "Mort Garson", "Jonas Jeberg, Terence Abney, Tshawe Baqwa, Yosef Wolde-Mariam, Marcella Brailsford, Kasper Larsen, Ole Brodersen", "Anthony Egizii, Marvin Priest, David Musumeci", "Prince, Levi Seacer Jr., Tony M.", "http://dbpedia.org/resource/The_Chords_(American_band)", "http://dbpedia.org/resource/Charles_F._Calhoun", "Charles F. Calhoun Jesse Stone", "http://dbpedia.org/resource/Johnny_Kidd_(singer)", "Johnny Kidd, Guy Robinson", "Brilleaux, Martin, Mayo, Sparks", "http://dbpedia.org/resource/Henry_Ballard", "* Hank Ballard\n* James Brown", "http://dbpedia.org/resource/J._Cole", "Anthony Parrino", "Tim Schoegje", "http://dbpedia.org/resource/John_Fred_Gourrier", "Tommy Bryan", "Meisa, Clone, Jeff Miyahara, Shoko Fujibayashi, U-ka, June", "*O'Kelly Isley Jr.\n*Rudolph Isley\n*Ronald Isley", "http://dbpedia.org/resource/Vinnie_Barrett", "http://dbpedia.org/resource/Bobby_Eli", "Anthony Hamilton", "Kelvin Wooten", "Lavell Crump", "John Watson Johnny \"Guitar\" Watson", "Cha Cha Malone", "Pressha", "http://dbpedia.org/resource/Ben_E._King", "Shinjiroh Inoue, H.u.b.", "Curt Bedeau, Gerry Charles, Hugh L Clarke, Brian George, Lucien George, Paul George", "http://dbpedia.org/resource/Justin_Parker", "http://dbpedia.org/resource/Mikky_Ekko", "Elof Loelv", "Ken Gold, Billy Ocean", "7", "http://dbpedia.org/resource/Irv_Gotti", "http://dbpedia.org/resource/Ja_Rule", "http://dbpedia.org/resource/Charli_Baltimore", "Holmes, Leaosavaii, Patel, Tupa'i", "Christian Ballard, Andrew Ian Murray, Tom Nichols", "Little Richard, Enotris Johnson", "Sheila E., Pete Escoveda, Cat Gray", "Derek Safo, Dan Hartman, Lewis Fuller, Andrew Mutambira, Giorgio Tuinfort, David Wiggins", "http://dbpedia.org/resource/Mikey_Craig", "http://dbpedia.org/resource/Boy_George", "http://dbpedia.org/resource/Jon_Moss", "http://dbpedia.org/resource/Roy_Hay_(musician)", "http://dbpedia.org/resource/Gordon_Banks_musician", "http://dbpedia.org/resource/Jackie_Edwards_(musician)", "Curtis Johnson", "Chuck Brown", "Jon Sheldon", "Davies", "http://dbpedia.org/resource/General_Johnson_(musician)", "Angelo Bond", "Greg Perry", "http://dbpedia.org/resource/Marc_Gordon", "http://dbpedia.org/resource/Lula_Mae_Hardaway", "Don Hunter", "John Patton, Amiel Sommers", "* G-Dragon\n* Teddy \n* T.O.P", "Billy Hayes", "Jay W. Johnson", "http://dbpedia.org/resource/Dr._Freeze", "Ellas McDaniel a.k.a. Bo Diddley", "Ellas McDaniels Bo Diddley", "http://dbpedia.org/resource/Channel_7_(musician)", "http://dbpedia.org/resource/Rupert_Gayle", "Sari Abboud", "http://dbpedia.org/resource/Jesse_McCartney", "Corron Ty Cole", "James Bunton", "http://dbpedia.org/resource/Gamble_&_Huff", "McFadden & Whitehead", "http://dbpedia.org/resource/Tyran_Carlo", "http://dbpedia.org/resource/James_Brown", "http://dbpedia.org/resource/Mike_Jones_(rapper)", "Tommy James, Peter Lucia", "http://dbpedia.org/resource/Alan_Price", "http://dbpedia.org/resource/Eric_Burdon", "*Norman Whitfield\n*Joel Schumacher", "*M. Williams\n*J. McAllister\n*Chantay Savage", "* Brenton Brown\n* Chris McClarney\n* David Crowder\n* Hank Bentley", "* Curt Bedeau\n* Gerry Charles\n* Hugh L Clarke\n* Brian George\n* Lucien George\n* Paul George\n* James Brown", "http://dbpedia.org/resource/Esther_Nabaasa", "*Dave Bartholomew \n*Fats Domino", "Brian Holland, Lamont Dozier, and Edward Holland Jr.", "http://dbpedia.org/resource/Gordon_Mills", "* Robert Kelly\n* Raphael Ramos Oliveira", "http://dbpedia.org/resource/Johnny_Nash", "* James Brown\n* Bobby Byrd", "Fred Jay, Al Julia", "James Harris III", "Terry Lewis", "* La Toya Jackson\n* Jeffr\u00e9 Phillips\n* Thom Frood\n* David Frood\n* Michael Hoffman", "Michael Walker", "Johnny Flippin", "*Emcee N.I.C.E.\n*Richard Smallwood\n*Sam Peezy\n*BJ Luster", "Kashif", "Kenneth Gamble, Leon Huff", "* Sally Nix\n* Henry Glover", "* Guy Wood\n* Edward Seiler\n* Sol Marcus\n* Sally Nix\n* Henry Glover", "Berry Gordy, Mike Ossman, Al Abrams, John O'Den", "Master P, Silkk the Shocker, Pimp C, Charles Simmons, Joseph B. Jefferson", "http://dbpedia.org/resource/Masato_Nakamura", "http://dbpedia.org/resource/Mario_Winans", "http://dbpedia.org/resource/Adonis_Shropshire", "Chauncey Hawkins", "Michael Carlos Jones", "Frankie Romano", "http://dbpedia.org/resource/Jimmy_Castor", "http://dbpedia.org/resource/Jimmy_Smith_(musician)", "Jay Hawkins", "Herb Slotkin", "L. Vandross, M. Miller", "http://dbpedia.org/resource/Leroy_Swearingen", "Leroy Swearingen", "Larry Blackmon, Robert Smith, William Seth Allen", "Marvin Gaye", "Forest Hairston", "http://dbpedia.org/resource/Tori_Kelly", "http://dbpedia.org/resource/Ed_Sheeran", "* Dallas Austin\n* Michael Bivins", "Kurt Walker", "Nasir Jones", "Samuel Barnes", "J. Olivier", "Tremaine Neverson, Joseph Cartegena, Marcello Valenzano, Andre Christopher Lyon, August Rigo, Eddie Montilla", "http://dbpedia.org/resource/Benny_Andersson", "http://dbpedia.org/resource/Bj\u00f6rn_Ulvaeus", "http://dbpedia.org/resource/Brenda_Russell", "http://dbpedia.org/resource/Jermaine_Jackson", "http://dbpedia.org/resource/Billie_Hughes", "http://dbpedia.org/resource/Patrick_Moten", "http://dbpedia.org/resource/Sandra_Sully_(songwriter)", "Juan Luis Morena, Llandel Veguilla, Faheem Rasheed Najm, Victor Martinez, Ernesto Padilla", "Willie Hutch", "Terry Coffey, Jon Nettlesbey", "* Wilson Pickett\n* Steve Cropper", "MC Solaar", "Ira Tucker Jr.", "Dwight Myers", "Christopher Stevens, Ayiesha Woods", "Leroy Kirkland & Mamie Thomas", "http://dbpedia.org/resource/Fred_Weismantel", "Steve Martin", "Koda Kumi, Morimoto Kosuke", "Winfred Lovett", "* H.U.B.\n* Shingo.S", "http://dbpedia.org/resource/Shir\u014d_Sagisu", "http://dbpedia.org/resource/Bobby_Russell", "Verbal, Agent Kozel, Minami", "Lou Josie", "Miko Manguba", "Brian Lotho", "Chino David", "Cholo Dela Cruz", "Joshua Jacobe", "Louie Pedroso", "Martin De Vera", "Mico Cruz", "http://dbpedia.org/resource/Mariah_Carey", "http://dbpedia.org/resource/James_Poyser", "http://dbpedia.org/resource/Lester_Abrams", "http://dbpedia.org/resource/Flavour_N'abania", "Tiwa Savage", "Flavour N'abania and Tiwa Savage", "Zack Tabudlo", "http://dbpedia.org/resource/Sabrina_Carpenter", "http://dbpedia.org/resource/Brett_McLaughlin", "Micha\u00ebl Youn", "Dominique Gauriaud", "Jurij Prette", "Nicolas Brisson", "William Geslin", "http://dbpedia.org/resource/Clay_Hammond", "http://dbpedia.org/resource/Claudine_Clark", "http://dbpedia.org/resource/Walter_Afanasieff", "http://dbpedia.org/resource/Jeff_Cohen_(songwriter)", "Walden", "Afanasieff", "Liz Jackson", "http://dbpedia.org/resource/JonFX", "http://dbpedia.org/resource/XXXTentacion", "http://dbpedia.org/resource/Stefflon_Don", "http://dbpedia.org/resource/Ky-Mani_Marley", "Josh Humber", "Danger Mouse", "Cee-Lo Green", "Vincent Montana Jr., Ronnie James, Janice Gugliuzza", "http://dbpedia.org/resource/Robby_Krieger", "http://dbpedia.org/resource/Ivano_Fossati", "Van Morrison, Hugh Murphy", "Eddie Holland, Harold Beatty", "Lauren\u0163iu Du\u0163\u0103, Ovidiu Bistriceanu", "P-Money, Vince Harder, S Hansen", "Dan Sembello. Don Freeman, John Sembello & Michael Sembello", "Chaka Khan, Rhoda Roberts", "Dan Sembello, Don Freeman, John Sembello & Michael Sembello", "* Aubrey Graham\n* Jacques Webster II\n* Ozan Yildirim\n* Ebony Oshunrinde\n* Jahaan Sweet\n* Stephane Reibaldi\n* Charlotte Wilson\n* Kenneth Edmonds\n* Varrel Wade\n* Marcus Reddick\n* Brandon Banks\n* Kyla Moscovich\n* Michael Gordon\n* Dernst Emile II\n* Teo Halm", "Alan Kasirye", "Taio Cruz", "Yoshi, y@suo ohtani", "http://dbpedia.org/resource/Denise_Eisenberg_Rich", "http://dbpedia.org/resource/Stargate_(production_team)", "Hal Davis, Don Fletcher, Berry Gordy, Mel Larson, Jerry Marcellino", "Bernard \"Beloyd\" Taylor and Peter Cor Belenky", "http://dbpedia.org/resource/Tyra_Bolling", "http://dbpedia.org/resource/Steve_Porcaro", "R. Byrd and T. Terry", "http://dbpedia.org/resource/Ronnie_Freeman", "Ray Charles", "Rico Love, Dwayne Nesmith, Jean-Pierre Medor, Karina Malave", "http://dbpedia.org/resource/Patti_LaBelle", "Armstead Edwards", "James \"Budd\" Ellison", "http://dbpedia.org/resource/Vini_Poncia", "http://dbpedia.org/resource/William_Hart_(singer)", "Warren Peace", "Barbara Lynn Ozen", "J. W. Alexander, Zelda Samuels", "J.W. Alexander, Zelda Samuels", "http://dbpedia.org/resource/Henry_Krieger", "http://dbpedia.org/resource/Siedah_Garrett", "James Johnson, Ernestine Smith", "Roger Atkins, Helen Miller", "Jackie Members", "Richard Poindexter", "Robert Poindexter", "Narada Michael Walden, Sunny Hilden", "http://dbpedia.org/resource/Bobby_Nunn_(R&B_musician)", "http://dbpedia.org/resource/Chico_DeBarge", "http://dbpedia.org/resource/Paul_Kyser", "Barry, Robin and Maurice Gibb", "Ike Turner, Tina Turner", "Anita Poree", "Leonard Caston, Jr.", "Tsunku", "Bill Myers, Brenda Russell, Maurice White", "Peter Radcliffe, Tony Sepe, Barry White", "*Phil Spector\n*Barry Mann\n*Cynthia Weil", "Jackie Wilson, Norm Henry", "Arthur Alexander", "*Eddie Brigati\n*Felix Cavaliere", "Gerald Baillergeau, Cedric R Hailey, Joel Hailey", "Lennon\u2013McCartney", "http://dbpedia.org/resource/William_Bell_(singer)", "Dan Penn, Rick Hall, Oscar Franks", "Leiber/Stoller/Pomus", "http://dbpedia.org/resource/Dave_Crawford_(musician)", "http://dbpedia.org/resource/Trey_Songz", "Alja Jackson", "Kesia Hollins", "Indira Boodram", "Jazmyn Michel Roberts", "Sohshiroh Mizumasa", "http://dbpedia.org/resource/James_F._Hanley", "Wayne Anton Brathwaite, Barry James Eastmond, Billy Ocean", "Troy Taylor", "Tremaine Neverson", "Christopher Umana", "Najja McDwell", "http://dbpedia.org/resource/Teenie_Hodges", "Bob Robinson", "Brian McKnight", "Tim Kelley", "Larry Gottlieb, Marc Blatte", "Lloyd Chiate, L. Garrett, Eddie Money, R. Taylor", "Chris Malinchak, Marvin Gaye", "Jon Lind and Maurice White", "Arlene Matza, Howard McCrary, Maurice White", "Jean Hancock, Jerry Peters", "Al McKay, White", "Philip Bailey, Eddie del Barrio, Roxanne Seeman, White", "S\u01a1n T\u00f9ng M-TP", "http://dbpedia.org/resource/Freddie_Gorman", "Holland\u2013Dozier\u2013Holland\u2013Bradford\u2013Gorman", "*K. Jackson\n*E. White\n* B. Williams", "K. Jackson, E. White, B. Williams", "David Lewis, Wayne Lewis", "Norma Jean Wright, Kenneth M. Burke, Allan W. Felder", "http://dbpedia.org/resource/Richie_Barrett", "http://dbpedia.org/resource/Joe_Strummer", "http://dbpedia.org/resource/Mick_Jones_(The_Clash)", "http://dbpedia.org/resource/Andrew_Farriss", "http://dbpedia.org/resource/Garry_Gary_Beers", "http://dbpedia.org/resource/Jon_Farriss", "http://dbpedia.org/resource/Tim_Farriss", "http://dbpedia.org/resource/Kirk_Pengilly", "http://dbpedia.org/resource/Michael_Hutchence", "I. Clyne", "I. Clyne, G. Humphrys, R. Lovett", "Ian Clyne, Gerry Humphrys, Rob Lovett", "Derek \"D.O.A.\" Allen", "Gerald Isaac", "Phillip \"Taj\" Jackson", "http://dbpedia.org/resource/Stuart_Bascombe", "http://dbpedia.org/resource/Leroy_Burgess", "Maurice White, Verdine White", "Billy Ward, Rose Marks", "*Albert Hamilton\n*Richard Morris\n*Edwin Starr", "Tina Turner", "http://dbpedia.org/resource/Homer_Banks", "Carl Hampton", "*Frank Wildhorn\n*Jack Murphy", "Philip Bailey, Andrew Klippel, Alan Glass", "http://dbpedia.org/resource/Marvin_Yancy", "http://dbpedia.org/resource/The_Independents_(vocal_group)", "Nanna \u00d8land Fabricius", "Owen Beverly", "*Patrick Adams\n*Dave Jordan", "http://dbpedia.org/resource/Brenton_Wood", "Albert Hamilton", "Edward Wingate", "Ronnie Savoy"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Search_(2014_film)> <http://dbpedia.org/ontology/editing> ?x . ?x <http://dbpedia.org/property/awards> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Academy_Award", "http://dbpedia.org/resource/Academy_Award_for_Best_Director", "http://dbpedia.org/resource/C\u00e9sar_Award", "http://dbpedia.org/resource/C\u00e9sar_Award_for_Best_Director", "BAFTA for Best Director", "and other see ''[[#Awards"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/series> <http://dbpedia.org/resource/Yasmin_Paige> . ?x <http://dbpedia.org/property/related> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/executiveProducer> <http://dbpedia.org/resource/Steven_Moffat> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": ["20"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/predecessor> <http://dbpedia.org/resource/Sho> . ?x <http://dbpedia.org/property/engine> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/draftTeam> <http://dbpedia.org/resource/Ontario> . ?x <http://dbpedia.org/property/team> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/institution> <http://dbpedia.org/resource/St_George's_Hospital> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/AcademicAdvisor>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/athletics> <http://dbpedia.org/resource/National_Collegiate_Athletic_Association> . ?uri <http://dbpedia.org/ontology/almaMater> ?x . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/creators> <http://dbpedia.org/resource/Paul_Dini> . }"}, "answers": ["15"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/family> <http://dbpedia.org/resource/Buccinidae> . }"}, "answers": ["282"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Aghasalim_Childagh> <http://dbpedia.org/ontology/deathPlace> ?uri } "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/John_B._Waldo> <http://dbpedia.org/ontology/successor> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/occupation> <http://dbpedia.org/resource/Screenwriter> . ?x <http://dbpedia.org/ontology/award> ?uri . }"}, "answers": ["218"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/houses> <http://dbpedia.org/resource/Parliament_Security_Services> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/House>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/city> <http://dbpedia.org/resource/Alabama> . ?x <http://dbpedia.org/property/owner> ?uri . }"}, "answers": ["131"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/beatifiedBy> <http://dbpedia.org/resource/Pope_Pius_XI> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Saint>}"}, "answers": ["http://dbpedia.org/resource/Ambrose_Barlow", "http://dbpedia.org/resource/Andr\u00e9-Hubert_Fournet", "http://dbpedia.org/resource/David_Gonson", "http://dbpedia.org/resource/David_Lewis_(Jesuit_priest)", "http://dbpedia.org/resource/Vincenza_Gerosa", "http://dbpedia.org/resource/William_Patenson", "http://dbpedia.org/resource/Paula_Frassinetti", "http://dbpedia.org/resource/Alban_Roe", "http://dbpedia.org/resource/Alfonso_Rodr\u00edguez_Olmedo", "http://dbpedia.org/resource/Bernadette_Soubirous", "http://dbpedia.org/resource/Frances_Xavier_Cabrini", "http://dbpedia.org/resource/Francesco_Maria_da_Camporosso", "http://dbpedia.org/resource/Gemma_Galgani", "http://dbpedia.org/resource/Salomone_Leclercq", "http://dbpedia.org/resource/William_Ireland_(Jesuit)", "http://dbpedia.org/resource/Anne_Line", "http://dbpedia.org/resource/Anthony_Mary_Claret", "http://dbpedia.org/resource/Anthony_Turner_(martyr)", "http://dbpedia.org/resource/Manuel_Ruiz_Lopez", "http://dbpedia.org/resource/Margaret_Clitherow", "http://dbpedia.org/resource/Margaret_Ward", "http://dbpedia.org/resource/Maria_Domenica_Mazzarello", "http://dbpedia.org/resource/Maria_Giuseppa_Rossello", "http://dbpedia.org/resource/Maria_Micaela_Desmaisieres", "http://dbpedia.org/resource/Mary_Euphrasia_Pelletier", "http://dbpedia.org/resource/Teresa_Margaret_of_the_Sacred_Heart", "http://dbpedia.org/resource/Jean_de_Lalande", "http://dbpedia.org/resource/Thomas_Garnet", "http://dbpedia.org/resource/James_Bell_(priest)", "http://dbpedia.org/resource/Jeanne-Antide_Thouret", "http://dbpedia.org/resource/Ren\u00e9_Goupil", "http://dbpedia.org/resource/Eustace_White", "http://dbpedia.org/resource/No\u00ebl_Pinot", "http://dbpedia.org/resource/Richard_Martin_(martyr)", "http://dbpedia.org/resource/Claude_La_Colombi\u00e8re", "http://dbpedia.org/resource/Conrad_of_Parzham", "http://dbpedia.org/resource/John_Rigby_(martyr)", "http://dbpedia.org/resource/John_Southworth_(martyr)", "http://dbpedia.org/resource/Joseph_Pignatelli", "http://dbpedia.org/resource/Edmund_Gennings", "http://dbpedia.org/resource/Gh\u00e9br\u0113-Michael", "http://dbpedia.org/resource/Bartolomea_Capitanio", "http://dbpedia.org/resource/Isaac_Jogues", "http://dbpedia.org/resource/Irmgard_of_Chiemsee", "http://dbpedia.org/resource/John_Finch_(martyr)", "http://dbpedia.org/resource/John_Jones_(martyr)", "http://dbpedia.org/resource/John_Kemble_(martyr)", "http://dbpedia.org/resource/Juan_Jacobo_Fernandez", "http://dbpedia.org/resource/Catherine_Labour\u00e9", "http://dbpedia.org/resource/Swithun_Wells", "http://dbpedia.org/resource/Beatrice_of_Silva", "http://dbpedia.org/resource/Laurent-Joseph-Marius_Imbert", "http://dbpedia.org/resource/Henry_Abbot_(martyr)", "http://dbpedia.org/resource/Robert_Anderton", "http://dbpedia.org/resource/Henry_Morse", "http://dbpedia.org/resource/Henry_Walpole", "http://dbpedia.org/resource/Richard_Langhorne", "http://dbpedia.org/resource/Robert_Bellarmine", "http://dbpedia.org/resource/Robert_Southwell_(priest)", "http://dbpedia.org/resource/Joan_Elizabeth_Bichier_des_\u00c2ges", "http://dbpedia.org/resource/John_Almond_(martyr)", "http://dbpedia.org/resource/John_Bosco", "http://dbpedia.org/resource/John_Fenwick_(Jesuit)", "http://dbpedia.org/resource/John_Gavan", "http://dbpedia.org/resource/Peter_Julian_Eymard", "http://dbpedia.org/resource/Pierre-Ren\u00e9_Rogue", "http://dbpedia.org/resource/Thomas_Reynolds_(priest)", "http://dbpedia.org/resource/Thomas_Whitbread", "http://dbpedia.org/resource/Th\u00e9r\u00e8se_of_Lisieux", "http://dbpedia.org/resource/Osanna_of_Cattaro", "http://dbpedia.org/resource/Baldassare_Ravaschieri", "http://dbpedia.org/resource/Michel_Garico\u00efts", "http://dbpedia.org/resource/Paul_Chong_Hasang", "http://dbpedia.org/resource/Roque_Gonz\u00e1lez_y_de_Santa_Cruz", "http://dbpedia.org/resource/Edmund_Arrowsmith", "http://dbpedia.org/resource/Lucy_Filippini", "http://dbpedia.org/resource/Gomidas_Keumurdjian"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/associatedBand> <http://dbpedia.org/resource/Foxy_Brown_(rapper)> } "}, "answers": ["http://dbpedia.org/resource/Amerie", "http://dbpedia.org/resource/Kid_Capri", "http://dbpedia.org/resource/Ren\u00e9_Moore", "http://dbpedia.org/resource/Simone_Hines", "http://dbpedia.org/resource/DJ_Clue", "http://dbpedia.org/resource/DJ_Envy", "http://dbpedia.org/resource/Queen_Pen", "http://dbpedia.org/resource/Total_(girl_group)"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Chickasaw_Campaign_of_1736> <http://dbpedia.org/property/commicted> ?x . ?x <http://dbpedia.org/ontology/combatant> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/David_Ian_Salter> <http://dbpedia.org/ontology/editing> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/mouthMountain> <http://dbpedia.org/resource/Essex> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/River>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Roy_Walker_(production_designer)> <http://dbpedia.org/property/awards> ?uri . <http://dbpedia.org/resource/Walt_Disney> <http://dbpedia.org/ontology/award> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Marina_Pankova> <http://dbpedia.org/property/placeOfDeath> ?uri . <http://dbpedia.org/resource/Viktor_Ulyanich> <http://dbpedia.org/ontology/deathPlace> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/locationCity> <http://dbpedia.org/resource/Tehran> . ?uri <http://dbpedia.org/property/products> ?x . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/keyPeople> <http://dbpedia.org/resource/Gold_Base> . ?x <http://dbpedia.org/ontology/religion> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/college> <http://dbpedia.org/resource/Midland_College> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/BasketballPlayer>}"}, "answers": ["1"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/city> <http://dbpedia.org/resource/New_York> . ?uri <http://dbpedia.org/property/starring> ?x . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Hearth_and_Home> <http://dbpedia.org/ontology/editor> ?uri } "}, "answers": ["http://dbpedia.org/resource/Harriet_Beecher_Stowe", "http://dbpedia.org/resource/Donald_Grant_Mitchell"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/restingPlace> <http://dbpedia.org/resource/Convent_of_the_Barefoot_Trinitarians> . ?uri <http://dbpedia.org/property/author> ?x . }"}, "answers": ["http://dbpedia.org/resource/Rinconete_y_Cortadillo", "http://dbpedia.org/resource/La_Galatea", "http://dbpedia.org/resource/Don_Quixote", "http://dbpedia.org/resource/Novelas_ejemplares", "http://dbpedia.org/resource/Los_trabajos_de_Persiles_y_Sigismunda", "http://dbpedia.org/resource/El_licenciado_Vidriera"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/A_Barrel_of_Laughs> <http://dbpedia.org/property/creator> ?x . ?x <http://dbpedia.org/ontology/award> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/position> <http://dbpedia.org/resource/Defenceman> . ?x <http://dbpedia.org/ontology/team> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Link\u00f6ping_HC", "http://dbpedia.org/resource/Buffalo_Beauts", "http://dbpedia.org/resource/Maine_Black_Bears_women's_ice_hockey", "http://dbpedia.org/resource/R\u00f8dovre_Mighty_Bulls_Q", "http://dbpedia.org/resource/HC_Dinamo_Saint_Petersburg", "http://dbpedia.org/resource/Fischtown_Pinguins", "http://dbpedia.org/resource/Cornell_Big_Red_men's_ice_hockey", "http://dbpedia.org/resource/Fr\u00f6lunda_HC", "http://dbpedia.org/resource/Colorado_Avalanche", "http://dbpedia.org/resource/V\u00e5lerenga_Ishockey", "http://dbpedia.org/resource/S\u00f6dert\u00e4lje_SK", "http://dbpedia.org/resource/SCL_Tigers", "http://dbpedia.org/resource/EC_Oilers_Salzburg", "http://dbpedia.org/resource/EHC_Chur", "http://dbpedia.org/resource/Yunost_Minsk", "http://dbpedia.org/resource/Scorpions_de_Mulhouse", "http://dbpedia.org/resource/Traktor_Chelyabinsk", "http://dbpedia.org/resource/Dizel_Penza", "http://dbpedia.org/resource/HC_Dynamo_Moscow", "http://dbpedia.org/resource/Lokomotiv_Yaroslavl", "http://dbpedia.org/resource/Yuzhny_Ural_Orsk", "http://dbpedia.org/resource/Arystan_Temirtau", "http://dbpedia.org/resource/HC_Nov\u00e9_Z\u00e1mky", "http://dbpedia.org/resource/HDD_Jesenice", "http://dbpedia.org/resource/Minnesota_Wild", "http://dbpedia.org/resource/N\u00fcrnberg_Ice_Tigers", "http://dbpedia.org/resource/Brantford_Blast", "http://dbpedia.org/resource/EC_Red_Bull_Salzburg", "http://dbpedia.org/resource/Columbus_Blue_Jackets", "http://dbpedia.org/resource/SKA_Saint_Petersburg", "http://dbpedia.org/resource/Hannover_Scorpions", "http://dbpedia.org/resource/New_York_Rangers", "http://dbpedia.org/resource/Manchester_Storm_(2015\u2013)", "http://dbpedia.org/resource/Nomad_Nur-Sultan", "http://dbpedia.org/resource/HKM_Zvolen", "http://dbpedia.org/resource/New_Jersey_Devils", "http://dbpedia.org/resource/\u00d6rebro_HK", "http://dbpedia.org/resource/Boston_Bruins", "http://dbpedia.org/resource/HC_\u0160koda_Plze\u0148", "http://dbpedia.org/resource/HK_Poprad", "http://dbpedia.org/resource/V\u00e4sterviks_IK", "http://dbpedia.org/resource/Djurg\u00e5rdens_IF_Hockey", "http://dbpedia.org/resource/HC_Slovan_Bratislava", "http://dbpedia.org/resource/PSG_Berani_Zl\u00edn", "http://dbpedia.org/resource/HC_Bozen\u2013Bolzano", "http://dbpedia.org/resource/HK_2016_Trebi\u0161ov", "http://dbpedia.org/resource/HC_Litv\u00ednov", "http://dbpedia.org/resource/HC_Slavia_Praha", "http://dbpedia.org/resource/HC_V\u00edtkovice_Ridera", "http://dbpedia.org/resource/HC_TWK_Innsbruck", "http://dbpedia.org/resource/Herning_Blue_Fox", "http://dbpedia.org/resource/IF_Bj\u00f6rkl\u00f6ven", "http://dbpedia.org/resource/HC_Sparta_Praha", "http://dbpedia.org/resource/Lule\u00e5_HF", "http://dbpedia.org/resource/Asiago_Hockey_1935", "http://dbpedia.org/resource/SC_Rapperswil-Jona_Lakers", "http://dbpedia.org/resource/Tampa_Bay_Lightning", "http://dbpedia.org/resource/Modo_Hockey_Dam", "http://dbpedia.org/resource/Vegas_Golden_Knights", "http://dbpedia.org/resource/Barys_Nur-Sultan", "http://dbpedia.org/resource/Nashville_Predators", "http://dbpedia.org/resource/Memmingen_Indians", "http://dbpedia.org/resource/Maine_Black_Bears", "http://dbpedia.org/resource/ZSC_Lions", "http://dbpedia.org/resource/Edmonton_Oilers", "http://dbpedia.org/resource/HC_CSKA_Moscow", "http://dbpedia.org/resource/Modo_Hockey", "http://dbpedia.org/resource/Coventry_Blaze", "http://dbpedia.org/resource/Chicago_Wolves", "http://dbpedia.org/resource/SC_Bern", "http://dbpedia.org/resource/HC_Dukla_Jihlava", "http://dbpedia.org/resource/HC_Ocel\u00e1\u0159i_T\u0159inec", "http://dbpedia.org/resource/HC_Energie_Karlovy_Vary", "http://dbpedia.org/resource/Oulun_K\u00e4rp\u00e4t", "http://dbpedia.org/resource/Vlci_\u017dilina", "http://dbpedia.org/resource/Montreal_Canadiens", "http://dbpedia.org/resource/HC_Ambr\u00ec-Piotta", "http://dbpedia.org/resource/Bryn\u00e4s_IF", "http://dbpedia.org/resource/ERC_Ingolstadt", "http://dbpedia.org/resource/Winnipeg_Jets", "http://dbpedia.org/resource/HC_Shakhtyor_Soligorsk", "http://dbpedia.org/resource/Avangard_Omsk", "http://dbpedia.org/resource/EVB_Eagles_S\u00fcdtirol", "http://dbpedia.org/resource/HC_Donbass", "http://dbpedia.org/resource/Metallurg_Magnitogorsk", "http://dbpedia.org/resource/Amur_Khabarovsk", "http://dbpedia.org/resource/Sokol_Krasnoyarsk", "http://dbpedia.org/resource/PSK_Sakhalin", "http://dbpedia.org/resource/Mikkelin_Jukurit", "http://dbpedia.org/resource/R\u00f6gle_BK", "http://dbpedia.org/resource/KalPa", "http://dbpedia.org/resource/HC_\u00c4ss\u00e4t_Pori_Oy", "http://dbpedia.org/resource/Ak_Bars_Kazan", "http://dbpedia.org/resource/Almtuna_IS", "http://dbpedia.org/resource/BIK_Karlskoga", "http://dbpedia.org/resource/Toronto_Maple_Leafs", "http://dbpedia.org/resource/Aalborg_Pirates", "http://dbpedia.org/resource/Arizona_Coyotes", "http://dbpedia.org/resource/Salavat_Yulaev_Ufa", "http://dbpedia.org/resource/EHC_Biel", "http://dbpedia.org/resource/HV71", "http://dbpedia.org/resource/Yermak_Angarsk", "http://dbpedia.org/resource/Lukko", "http://dbpedia.org/resource/Lahti_Pelicans", "http://dbpedia.org/resource/Iisalmen_Peli-Karhut", "http://dbpedia.org/resource/HPK", "http://dbpedia.org/resource/Ilves", "http://dbpedia.org/resource/F\u00e4rjestad_BK", "http://dbpedia.org/resource/HIFK", "http://dbpedia.org/resource/Rovaniemen_Kiekko", "http://dbpedia.org/resource/Seattle_Kraken", "http://dbpedia.org/resource/ESC_Planegg", "http://dbpedia.org/resource/Atlant_Moscow_Oblast", "http://dbpedia.org/resource/Rubin_Tyumen", "http://dbpedia.org/resource/Arlan_Kokshetau", "http://dbpedia.org/resource/HK_Martin", "http://dbpedia.org/resource/Ryt\u00ed\u0159i_Kladno", "http://dbpedia.org/resource/HC_Kometa_Brno", "http://dbpedia.org/resource/Avtomobilist_Yekaterinburg", "http://dbpedia.org/resource/Gornyak_Rudny", "http://dbpedia.org/resource/HC_Dynamo_Pardubice", "http://dbpedia.org/resource/HC_Ko\u0161ice", "http://dbpedia.org/resource/Tappara", "http://dbpedia.org/resource/HC_Astana", "http://dbpedia.org/resource/Gyergy\u00f3i_HK", "http://dbpedia.org/resource/HSC_Cs\u00edkszereda", "http://dbpedia.org/resource/HC_Kunlun_Red_Star", "http://dbpedia.org/resource/Yertis_Pavlodar", "http://dbpedia.org/resource/Stavanger_Oilers", "http://dbpedia.org/resource/Straubing_Tigers", "http://dbpedia.org/resource/Kassel_Huskies", "http://dbpedia.org/resource/San_Jose_Barracuda", "http://dbpedia.org/resource/ESV_Kaufbeuren", "http://dbpedia.org/resource/Ottawa_Senators", "http://dbpedia.org/resource/Cleveland_Monsters", "http://dbpedia.org/resource/EHC_Basel", "http://dbpedia.org/resource/HC_Spartak_Moscow", "http://dbpedia.org/resource/HC_Dinamo_Minsk", "http://dbpedia.org/resource/Anaheim_Ducks", "http://dbpedia.org/resource/Washington_Capitals", "http://dbpedia.org/resource/HK_Dukla_Michalovce", "http://dbpedia.org/resource/Calgary_Inferno", "http://dbpedia.org/resource/AIK_Hockey_Dam", "http://dbpedia.org/resource/DK_Peregrine", "http://dbpedia.org/resource/Detroit_Red_Wings", "http://dbpedia.org/resource/Dinamo_Riga", "http://dbpedia.org/resource/HC_TPS", "http://dbpedia.org/resource/Porin_\u00c4ss\u00e4t_(men's_ice_hockey)", "http://dbpedia.org/resource/Dallas_Stars", "http://dbpedia.org/resource/Anyang_Halla", "http://dbpedia.org/resource/Schwenninger_Wild_Wings", "http://dbpedia.org/resource/Metallurg_Novokuznetsk", "http://dbpedia.org/resource/HC_Lada_Togliatti", "http://dbpedia.org/resource/Los_Angeles_Kings", "http://dbpedia.org/resource/HC_Yugra", "http://dbpedia.org/resource/New_York_Islanders", "http://dbpedia.org/resource/HC_Vityaz", "http://dbpedia.org/resource/MAC_Budapest_(women)", "http://dbpedia.org/resource/Chamonix_HC", "http://dbpedia.org/resource/HC_Agidel_Ufa", "http://dbpedia.org/resource/Torpedo_Nizhny_Novgorod", "http://dbpedia.org/resource/Boston_College_Eagles_women's_ice_hockey", "http://dbpedia.org/resource/EV_Lindau_Islanders", "http://dbpedia.org/resource/Orli_Znojmo", "http://dbpedia.org/resource/Bracknell_Queen_Bees", "http://dbpedia.org/resource/San_Jose_Sharks", "http://dbpedia.org/resource/HC_Almaty", "http://dbpedia.org/resource/KooKoo_(ice_hockey_club)", "http://dbpedia.org/resource/Molot-Prikamye_Perm", "http://dbpedia.org/resource/EC_VSV", "http://dbpedia.org/resource/Skellefte\u00e5_AIK", "http://dbpedia.org/resource/HIFK_Naiset", "http://dbpedia.org/resource/Duna\u00fajv\u00e1rosi_Ac\u00e9lbik\u00e1k", "http://dbpedia.org/resource/Link\u00f6ping_HC_Dam", "http://dbpedia.org/resource/KHL_Medve\u0161\u010dak_Zagreb", "http://dbpedia.org/resource/Guildford_Flames", "http://dbpedia.org/resource/Feh\u00e9rv\u00e1r_AV19", "http://dbpedia.org/resource/DVTK_Jegesmedv\u00e9k", "http://dbpedia.org/resource/Deggendorf_Fire", "http://dbpedia.org/resource/Eisb\u00e4ren_Berlin", "http://dbpedia.org/resource/D\u00fcsseldorfer_EG", "http://dbpedia.org/resource/KMH_Budapest_(women)", "http://dbpedia.org/resource/Fort_Wayne_Komets", "http://dbpedia.org/resource/HC_21_Pre\u0161ov", "http://dbpedia.org/resource/AIK_IF", "http://dbpedia.org/resource/Seibu_Princess_Rabbits", "http://dbpedia.org/resource/G\u00f6teborg_HC", "http://dbpedia.org/resource/Vlada_Boleslav", "http://dbpedia.org/resource/Sheffield_Steelers", "http://dbpedia.org/resource/Leeds_Knights", "http://dbpedia.org/resource/Bryn\u00e4s_IF_Dam", "http://dbpedia.org/resource/MHk_32_Liptovsk\u00fd_Mikul\u00e1\u0161", "http://dbpedia.org/resource/JYP_Jyv\u00e4skyl\u00e4", "http://dbpedia.org/resource/Gen\u00e8ve-Servette_HC", "http://dbpedia.org/resource/Seattle_Thunderbirds", "http://dbpedia.org/resource/HC_Lugano", "http://dbpedia.org/resource/KalPa_Naiset", "http://dbpedia.org/resource/HC_Bob\u0159i_Vala\u0161sk\u00e9_Mezi\u0159\u00ed\u010d\u00ed", "http://dbpedia.org/resource/Yale_Bulldogs_women's_ice_hockey", "http://dbpedia.org/resource/MAC_Budapest", "http://dbpedia.org/resource/KISE", "http://dbpedia.org/resource/Minnesota_Whitecaps", "http://dbpedia.org/resource/Worcester_Blades", "http://dbpedia.org/resource/ETC_Crimmitschau", "http://dbpedia.org/resource/Pittsburgh_Penguins", "http://dbpedia.org/resource/Kiekko-Espoo_Naiset", "http://dbpedia.org/resource/Br\u00fbleurs_de_Loups", "http://dbpedia.org/resource/Adler_Mannheim", "http://dbpedia.org/resource/Carolina_Hurricanes", "http://dbpedia.org/resource/Boston_Pride", "http://dbpedia.org/resource/SKIF_Nizhny_Novgorod", "http://dbpedia.org/resource/Shenzhen_KRS_Vanke_Rays", "http://dbpedia.org/resource/Metropolitan_Riveters", "http://dbpedia.org/resource/Lule\u00e5_HF/MSSK", "http://dbpedia.org/resource/Minnesota_Blue_J's", "http://dbpedia.org/resource/HC_Tornado", "http://dbpedia.org/resource/Ferencv\u00e1rosi_TC_(ice_hockey)", "http://dbpedia.org/resource/TUTO_Hockey", "http://dbpedia.org/resource/Florida_Panthers", "http://dbpedia.org/resource/IK_Oskarshamn", "http://dbpedia.org/resource/Leksands_IF", "http://dbpedia.org/resource/Malm\u00f6_Redhawks", "http://dbpedia.org/resource/Free_agent", "http://dbpedia.org/resource/Toyota_Cygnus", "http://dbpedia.org/resource/Vaasan_Sport", "http://dbpedia.org/resource/HC_Pustertal_W\u00f6lfe", "http://dbpedia.org/resource/Grizzlys_Wolfsburg", "http://dbpedia.org/resource/Nice_hockey_C\u00f4te_d'Azur", "http://dbpedia.org/resource/Toronto_Six", "http://dbpedia.org/resource/St._Lawrence_Saints_women's_ice_hockey", "http://dbpedia.org/resource/Brampton_Beast", "http://dbpedia.org/resource/Storhamar_Ishockey", "http://dbpedia.org/resource/BK_Mlad\u00e1_Boleslav", "http://dbpedia.org/resource/Lacombe_Generals", "http://dbpedia.org/resource/Diables_Rouges_de_Brian\u00e7on", "http://dbpedia.org/resource/Augsburger_Panther", "http://dbpedia.org/resource/Vienna_Capitals", "http://dbpedia.org/resource/St._Louis_Blues", "http://dbpedia.org/resource/Frisk_Asker_Ishockey", "http://dbpedia.org/resource/GKS_Tychy_(ice_hockey)", "http://dbpedia.org/resource/CS_Progym_Gheorgheni", "http://dbpedia.org/resource/Graz_99ers", "http://dbpedia.org/resource/Lausanne_HC", "http://dbpedia.org/resource/Nottingham_Panthers", "http://dbpedia.org/resource/GKS_Hockey", "http://dbpedia.org/resource/SaiPa", "http://dbpedia.org/resource/HK_Nitra", "http://dbpedia.org/resource/EC_Peiting", "http://dbpedia.org/resource/IHC_P\u00edsek", "http://dbpedia.org/resource/HC_B\u00edl\u00ed_Tyg\u0159i_Liberec", "http://dbpedia.org/resource/EC_KAC", "http://dbpedia.org/resource/GKS_Katowice_(ice_hockey)", "http://dbpedia.org/resource/HC_Lev_Praha", "http://dbpedia.org/resource/HC_P\u0159\u00edbram", "http://dbpedia.org/resource/Leksands_IF_Dam", "http://dbpedia.org/resource/EHC_Olten", "http://dbpedia.org/resource/Vancouver_Canucks", "http://dbpedia.org/resource/Cardiff_Devils", "http://dbpedia.org/resource/V\u00e4xj\u00f6_Lakers", "http://dbpedia.org/resource/Daemyung_Killer_Whales", "http://dbpedia.org/resource/Minnesota_Golden_Gophers_men's_ice_hockey", "http://dbpedia.org/resource/Buffalo_Sabres", "http://dbpedia.org/resource/Timr\u00e5_IK", "http://dbpedia.org/resource/Motor_\u010cesk\u00e9_Bud\u011bjovice", "http://dbpedia.org/resource/SK_Trha\u010di_Kada\u0148", "http://dbpedia.org/resource/Trenton_Titans", "http://dbpedia.org/resource/EV_Landshut", "http://dbpedia.org/resource/HC_Davos", "http://dbpedia.org/resource/ZSC_Lions_Frauen", "http://dbpedia.org/resource/M\u00f6rrums_GoIS_IK", "http://dbpedia.org/resource/Esbjerg_Energy", "http://dbpedia.org/resource/Imatran_Ketter\u00e4", "http://dbpedia.org/resource/Prince_George_Cougars", "http://dbpedia.org/resource/HC_2001_Kladno", "http://dbpedia.org/resource/Red_Eagles_Hokkaido", "http://dbpedia.org/resource/Wisconsin_Badgers_women's_ice_hockey", "http://dbpedia.org/resource/Vaughan_Flames", "http://dbpedia.org/resource/Philadelphia_Flyers", "http://dbpedia.org/resource/HC_Valpellice", "http://dbpedia.org/resource/Ravensburg_Towerstars", "http://dbpedia.org/resource/Suwon_City_Hall_women's_ice_hockey_team", "http://dbpedia.org/resource/Dragons_de_Rouen", "http://dbpedia.org/resource/HK_Spi\u0161sk\u00e1_Nov\u00e1_Ves", "http://dbpedia.org/resource/Sparta_Warriors", "http://dbpedia.org/resource/Mora_IK", "http://dbpedia.org/resource/HC_'05_Bansk\u00e1_Bystrica", "http://dbpedia.org/resource/HC_Neftekhimik_Nizhnekamsk", "http://dbpedia.org/resource/HC_19_Humenn\u00e9", "http://dbpedia.org/resource/Boxers_de_Bordeaux", "http://dbpedia.org/resource/Cz:VHK_ROBE_Vset\u00edn", "http://dbpedia.org/resource/Espoo_Blues", "http://dbpedia.org/resource/Steinbach_Black_Wings_Linz", "http://dbpedia.org/resource/TPS_Naiset", "http://dbpedia.org/resource/Connecticut_Whale_(PHF)", "http://dbpedia.org/resource/EHC_Winterthur", "http://dbpedia.org/resource/Toronto_Furies", "http://dbpedia.org/resource/Dresdner_Eisl\u00f6wen", "http://dbpedia.org/resource/Herlev_Eagles", "http://dbpedia.org/resource/SC_Bietigheim_Steelers", "http://dbpedia.org/resource/Calgary_Flames", "http://dbpedia.org/resource/Toronto_Marlies", "http://dbpedia.org/resource/Prince_Albert_Raiders", "http://dbpedia.org/resource/Belfast_Giants", "http://dbpedia.org/resource/Admiral_Vladivostok", "http://dbpedia.org/resource/New_Hampshire_Wildcats_women's_ice_hockey", "http://dbpedia.org/resource/Chicago_Blackhawks", "http://dbpedia.org/resource/K\u00f6lner_Haie", "http://dbpedia.org/resource/R\u00f8dovre_Mighty_Bulls", "http://dbpedia.org/resource/Narvik_IK", "http://dbpedia.org/resource/HC_Vita_H\u00e4sten", "http://dbpedia.org/resource/Anglet_Hormadi_\u00c9lite", "http://dbpedia.org/resource/HC_Neman_Grodno", "http://dbpedia.org/resource/HIFK_Hockey", "http://dbpedia.org/resource/Tingsryds_AIF", "http://dbpedia.org/resource/Djurg\u00e5rdens_IF_Hockey_(women)", "http://dbpedia.org/resource/Malm\u00f6_Redhawks_Dam", "http://dbpedia.org/resource/Providence_Bruins", "http://dbpedia.org/resource/FK_Hajduk_Beograd", "http://dbpedia.org/resource/Serbian_White_Eagles_FC", "http://dbpedia.org/resource/FK_Vr\u0161ac", "http://dbpedia.org/resource/FC_Arda_Kardzhali", "http://dbpedia.org/resource/FK_BSK_Batajnica", "http://dbpedia.org/resource/FK_Be\u017eanija", "http://dbpedia.org/resource/FK_Brodarac", "http://dbpedia.org/resource/FK_Budu\u0107nost_Dobanovci", "http://dbpedia.org/resource/FK_Gorno_Lisi\u010de", "http://dbpedia.org/resource/FK_Rad", "http://dbpedia.org/resource/FK_Radni\u010dki_Beograd", "http://dbpedia.org/resource/FK_Smederevo_1924", "http://dbpedia.org/resource/FK_Zvezdara", "http://dbpedia.org/resource/POFC_Botev_Vratsa", "http://dbpedia.org/resource/Kiekko-Espoo", "http://dbpedia.org/resource/EV_Bomo_Thun", "http://dbpedia.org/resource/EC_Bad_T\u00f6lz", "http://dbpedia.org/resource/UMass_Minutemen_ice_hockey", "http://dbpedia.org/resource/Kongsvinger_Knights", "http://dbpedia.org/resource/HC_Thurgau", "http://dbpedia.org/resource/Iserlohn_Roosters", "http://dbpedia.org/resource/Severstal_Cherepovets", "http://dbpedia.org/resource/Belye_Medveditsy", "http://dbpedia.org/resource/DEAC_(ice_hockey)", "http://dbpedia.org/resource/KHL_Sisak", "http://dbpedia.org/resource/Beibarys_Atyrau", "http://dbpedia.org/resource/Lokomotiv_Orsha", "http://dbpedia.org/resource/Wilkes-Barre/Scranton_Penguins", "http://dbpedia.org/resource/Tri-City_Storm", "http://dbpedia.org/resource/HC_Fassa_Falcons", "http://dbpedia.org/resource/SC_Reinach_Damen", "http://dbpedia.org/resource/HK_Dukla_Tren\u010d\u00edn", "http://dbpedia.org/resource/Florida_Everblades", "http://dbpedia.org/resource/HC_Sibir_Novosibirsk", "http://dbpedia.org/resource/Rapaces_de_Gap", "http://dbpedia.org/resource/Toledo_Walleye", "http://dbpedia.org/resource/Dornbirn_Bulldogs", "http://dbpedia.org/resource/Rockford_IceHogs", "http://dbpedia.org/resource/Str\u00f6msbro_IF", "http://dbpedia.org/resource/Sheffield_Steeldogs", "http://dbpedia.org/resource/1._EV_Weiden", "http://dbpedia.org/resource/North_Bay_Battalion", "http://dbpedia.org/resource/SK_Hor\u00e1ck\u00e1_Slavia_T\u0159eb\u00ed\u010d", "http://dbpedia.org/resource/Ontario_Reign", "http://dbpedia.org/resource/UConn_Huskies_women's_ice_hockey", "http://dbpedia.org/resource/Vancouver_Giants", "http://dbpedia.org/resource/Providence_Friars_women's_ice_hockey", "http://dbpedia.org/resource/EV_Zug", "http://dbpedia.org/resource/Frederikshavn_White_Hawks", "http://dbpedia.org/resource/S\u00f8nderjyskE_Ishockey", "http://dbpedia.org/resource/Orlando_Solar_Bears", "http://dbpedia.org/resource/Calgary_Oval_X-Treme", "http://dbpedia.org/resource/Winnipeg_Ice", "http://dbpedia.org/resource/SC_Langenthal", "http://dbpedia.org/resource/Markham_Thunder", "http://dbpedia.org/resource/Les_Canadiennes_de_Montr\u00e9al", "http://dbpedia.org/resource/University_of_Ottawa", "http://dbpedia.org/resource/Pir\u00e1ti_Chomutov", "http://dbpedia.org/resource/Merrimack_Warriors_women's_ice_hockey", "http://dbpedia.org/resource/Princeton_Tigers_women's_ice_hockey", "http://dbpedia.org/resource/Saint-Georges_Cool_FM_103.5", "http://dbpedia.org/resource/Hamilton_Steelhawks_(senior)", "http://dbpedia.org/resource/Utica_Comets", "http://dbpedia.org/resource/Rungsted_Ishockey_Klub", "http://dbpedia.org/resource/Saint_Pierre_and_Miquelon_national_football_team", "http://dbpedia.org/resource/A.S._Saint_Pierraise", "http://dbpedia.org/resource/Hudiksvalls_HC", "http://dbpedia.org/resource/Bossier-Shreveport_Mudbugs", "http://dbpedia.org/resource/AaB_Ishockey_Damer", "http://dbpedia.org/resource/Vermont_Catamounts_women's_ice_hockey", "http://dbpedia.org/resource/Wisconsin_Badgers_men's_ice_hockey", "http://dbpedia.org/resource/Corsaires_de_Dunkerque", "http://dbpedia.org/resource/Harvard_Crimson_men's_ice_hockey", "http://dbpedia.org/resource/RPI_Engineers_women's_ice_hockey", "http://dbpedia.org/resource/HC_Red_Ice", "http://dbpedia.org/resource/Mountfield_HK", "http://dbpedia.org/resource/Nikk\u014d_Ice_Bucks", "http://dbpedia.org/resource/Mitsuboshi_Daito_Peregrine", "http://dbpedia.org/resource/Mikage_Gretz", "http://dbpedia.org/resource/Greenville_Swamp_Rabbits", "http://dbpedia.org/resource/HC_Sarov", "http://dbpedia.org/resource/HC_Ryazan", "http://dbpedia.org/resource/Cracovia_(ice_hockey)", "http://dbpedia.org/resource/HDD_Olimpija_Ljubljana", "http://dbpedia.org/resource/Manitoba_Moose", "http://dbpedia.org/resource/HC_Stadion_Litom\u011b\u0159ice", "http://dbpedia.org/resource/HC_Olomouc", "http://dbpedia.org/resource/HC_Sochi", "http://dbpedia.org/resource/Laval_Predators", "http://dbpedia.org/resource/Milton_Keynes_Lightning", "http://dbpedia.org/resource/Minnesota_State_Mavericks_women's_ice_hockey", "http://dbpedia.org/resource/Dinamo-Neva_Saint_Petersburg", "http://dbpedia.org/resource/Kamloops_Blazers", "http://dbpedia.org/resource/Hvidovre_IK_Kvinder", "http://dbpedia.org/resource/Minnesota_Golden_Gophers_women's_ice_hockey", "http://dbpedia.org/resource/V\u00e4ster\u00e5s_IK", "http://dbpedia.org/resource/Ducs_d'Angers", "http://dbpedia.org/resource/Tohoku_Free_Blades", "http://dbpedia.org/resource/Jokerit", "http://dbpedia.org/resource/Brest_Albatros_Hockey", "http://dbpedia.org/resource/St.Thomas_University,_Saint_Paul-MN_-_USA", "http://dbpedia.org/resource/Oulunkyl\u00e4n_Kiekko-Kerho", "http://dbpedia.org/resource/Saginaw_Spirit", "http://dbpedia.org/resource/Buran_Voronezh", "http://dbpedia.org/resource/Peliitat_Heinola", "http://dbpedia.org/resource/\u00dajpesti_TE_(ice_hockey)", "http://dbpedia.org/resource/MHK_Dubnica_nad_V\u00e1hom", "http://dbpedia.org/resource/Gr\u00e4storps_IK", "http://dbpedia.org/resource/HC_Banik_Sokolov", "http://dbpedia.org/resource/HC_Fribourg-Gott\u00e9ron", "http://dbpedia.org/resource/Bisons_de_Neuilly-sur-Marne", "http://dbpedia.org/resource/HC_Ajoie", "http://dbpedia.org/resource/Saryarka_Karagandy", "http://dbpedia.org/resource/BC_Samara", "http://dbpedia.org/resource/Biryusa_Krasnoyarsk", "http://dbpedia.org/resource/HV71_Dam", "http://dbpedia.org/resource/L\u00f8renskog_IK", "http://dbpedia.org/resource/EHC_Bregenzerwald", "http://dbpedia.org/resource/Bakersfield_Condors_(1998\u20132015)", "http://dbpedia.org/resource/Stoney_Creek_Generals", "http://dbpedia.org/resource/HPK_Kiekkonaiset", "http://dbpedia.org/resource/JKH_GKS_Jastrz\u0119bie", "http://dbpedia.org/resource/HK_M\u0160K_Indian_\u017diar_nad_Hronom", "http://dbpedia.org/resource/United_States_national_team", "http://dbpedia.org/resource/HC_T\u00e1bor", "http://dbpedia.org/resource/Daishin_Hockey", "http://dbpedia.org/resource/HC_Topo\u013e\u010dany", "http://dbpedia.org/resource/Colgate_Raiders_women's_ice_hockey", "http://dbpedia.org/resource/London_Knights", "http://dbpedia.org/resource/Meg\u00e8ve_HC", "http://dbpedia.org/resource/Michigan_Wolverines_men's_ice_hockey", "http://dbpedia.org/resource/Chevaliers_du_lac_d'Annecy", "http://dbpedia.org/resource/Mississauga_Steelheads", "http://dbpedia.org/resource/KeuPa_HT", "http://dbpedia.org/resource/Aspl\u00f6ven_HC", "http://dbpedia.org/resource/Dundas_Real_McCoys", "http://dbpedia.org/resource/Invicta_Dymamos", "http://dbpedia.org/resource/Lausitzer_F\u00fcchse", "http://dbpedia.org/resource/HT_Thurgau_Ladies", "http://dbpedia.org/resource/Starbulls_Rosenheim", "http://dbpedia.org/resource/SC_Riessersee", "http://dbpedia.org/resource/L\u00f6wen_Frankfurt", "http://dbpedia.org/resource/EHC_Red_Bull_M\u00fcnchen", "http://dbpedia.org/resource/Taesongsan_Sports_Club", "http://dbpedia.org/resource/HC_Tambov", "http://dbpedia.org/resource/HK_Riga", "http://dbpedia.org/resource/Krefeld_Pinguine", "http://dbpedia.org/resource/HK_Kurbads", "http://dbpedia.org/resource/Odense_Bulldogs", "http://dbpedia.org/resource/HC_Sion", "http://dbpedia.org/resource/HC_07_Detva", "http://dbpedia.org/resource/Koovee_(ice_hockey)", "http://dbpedia.org/resource/Glasgow_Clan", "http://dbpedia.org/resource/Brock_Badgers", "http://dbpedia.org/resource/HC_Slovan_\u00daste\u010dt\u00ed_Lvi", "http://dbpedia.org/resource/Varberg_Vipers", "http://dbpedia.org/resource/HC_RT_Torax_Poruba", "http://dbpedia.org/resource/Humo_Tashkent", "http://dbpedia.org/resource/Bor\u00e5s_HC", "http://dbpedia.org/resource/Cornell_Big_Red_women's_ice_hockey", "http://dbpedia.org/resource/Stony_Plain_Eagles", "http://dbpedia.org/resource/HK_Partizan", "http://dbpedia.org/resource/VEU_Feldkirch", "http://dbpedia.org/resource/Mitsuboshi_Daito_Perigrine", "http://dbpedia.org/resource/Sokil_Kyiv", "http://dbpedia.org/resource/Quinnipiac_Bobcats_men's_ice_hockey"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/president> <http://dbpedia.org/resource/Joseph_Stiglitz> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/President>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/manufacturer> <http://dbpedia.org/resource/Sony> . ?uri <http://dbpedia.org/property/products> <http://dbpedia.org/resource/Foxconn> . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Religion> <http://dbpedia.org/property/programmeFormat> ?uri } "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bertrada_of_Laon> <http://dbpedia.org/property/mother> ?uri } "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/AH141> <http://dbpedia.org/ontology/league> ?uri . <http://dbpedia.org/resource/Malaysia_Junior_Hockey_League> <http://dbpedia.org/property/country> ?uri} "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/recordLabel> <http://dbpedia.org/resource/Celluloid_Records> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Artist>}"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/trainer> <http://dbpedia.org/resource/Henry_McDaniel_(racehorse_trainer)> . ?x <http://dbpedia.org/ontology/award> ?uri . }"}, "answers": ["http://dbpedia.org/resource/American_Champion_Older_Dirt_Male_Horse", "http://dbpedia.org/resource/American_Champion_Three-Year-Old_Male_Horse", "http://dbpedia.org/resource/American_Champion_Two-Year-Old_Male_Horse", "http://dbpedia.org/resource/American_Horse_of_the_Year"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Klang_Valley> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/owner> <http://dbpedia.org/resource/Tabriz> . ?x <http://dbpedia.org/property/builder> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/college> <http://dbpedia.org/resource/Arizona_State_Sun_Devils> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/GolfPlayer>}"}, "answers": ["http://dbpedia.org/resource/Anna_Nordqvist", "http://dbpedia.org/resource/Jeanne-Marie_Busuttil", "http://dbpedia.org/resource/Jon_Rahm", "http://dbpedia.org/resource/Carlota_Ciganda", "http://dbpedia.org/resource/Heather_Farr", "http://dbpedia.org/resource/Phil_Mickelson", "http://dbpedia.org/resource/Mike_Hill_(golfer)"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/keyPeople> <http://dbpedia.org/resource/Saxophone> . ?uri <http://dbpedia.org/ontology/starring> ?x . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/education> <http://dbpedia.org/resource/Protestant_School> . ?uri <http://dbpedia.org/ontology/computingPlatform> ?x . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/William_Anthony_(artist)> <http://dbpedia.org/ontology/training> ?uri . <http://dbpedia.org/resource/Yale_Repertory_Theatre> <http://dbpedia.org/property/owner> ?uri} "}, "answers": ["http://dbpedia.org/resource/Yale_University"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Erica_Frank> <http://dbpedia.org/ontology/institution> ?uri . <http://dbpedia.org/resource/Douglass_North> <http://dbpedia.org/property/veneratedIn> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/KunstEN_Museum_of_Modern_Art_Aalborg> <http://dbpedia.org/property/language> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/relatives> <http://dbpedia.org/resource/Ron_Cyrus> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": ["http://dbpedia.org/resource/Brandi_Cyrus", "http://dbpedia.org/resource/Trace_Cyrus"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/services> <http://dbpedia.org/resource/Web_hosting_service> . ?x <http://dbpedia.org/property/services> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/parent> <http://dbpedia.org/resource/Julius_Caesar> . ?x <http://dbpedia.org/property/successor> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Tiberius", "Augustus", "Tiberius, stepson by third wife, son-in-law, and adoptive son"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Voere> <http://dbpedia.org/ontology/predecessor> ?uri } "}, "answers": ["http://dbpedia.org/resource/West_Germany"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/editing> <http://dbpedia.org/resource/Mark_Stevens_(film_editor)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": ["http://dbpedia.org/resource/Freddy_vs._Jason", "http://dbpedia.org/resource/The_Collection_(film)", "http://dbpedia.org/resource/The_Final_Destination", "http://dbpedia.org/resource/The_Number_23", "http://dbpedia.org/resource/8mm_(film)", "http://dbpedia.org/resource/Batman_&_Robin_(film)", "http://dbpedia.org/resource/Flawless_(1999_film)", "http://dbpedia.org/resource/Leprechaun:_Origins", "http://dbpedia.org/resource/Phone_Booth_(film)", "http://dbpedia.org/resource/Tigerland", "http://dbpedia.org/resource/Setup_(2011_film)", "http://dbpedia.org/resource/Stay_Alive", "http://dbpedia.org/resource/Blood_Creek", "http://dbpedia.org/resource/Patient_Zero_(film)"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/tenants> <http://dbpedia.org/resource/Raptors_905> . ?x <http://dbpedia.org/ontology/tenant> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/Croix_de_Guerre> . ?x <http://dbpedia.org/ontology/territory> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Royal_Society> <http://dbpedia.org/property/awards> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ford_SHO_V8_engine> <http://dbpedia.org/ontology/manufacturer> ?uri } "}, "answers": ["http://dbpedia.org/resource/Ford_Motor_Company", "http://dbpedia.org/resource/Yamaha_Motor_Company"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Mauritius_Broadcasting_Corporation> <http://dbpedia.org/property/broadcastArea> ?uri } "}, "answers": ["http://dbpedia.org/resource/Mauritius", "http://dbpedia.org/resource/Agal\u00e9ga", "http://dbpedia.org/resource/Rodrigues", "Worldwide"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/cinematography> <http://dbpedia.org/resource/Gregg_Toland> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": ["http://dbpedia.org/resource/Dead_End_(1937_film)", "http://dbpedia.org/resource/Beloved_Enemy", "http://dbpedia.org/resource/Forsaking_All_Others", "http://dbpedia.org/resource/Enchantment_(1948_film)", "http://dbpedia.org/resource/Play_Girl_(1932_film)", "http://dbpedia.org/resource/The_Bat_(1926_film)", "http://dbpedia.org/resource/The_Best_Years_of_Our_Lives", "http://dbpedia.org/resource/The_Bishop's_Wife", "http://dbpedia.org/resource/The_Cowboy_and_the_Lady_(1938_film)", "http://dbpedia.org/resource/The_Dark_Angel_(1935_film)", "http://dbpedia.org/resource/The_Devil_to_Pay!", "http://dbpedia.org/resource/The_Goldwyn_Follies", "http://dbpedia.org/resource/The_Grapes_of_Wrath_(film)", "http://dbpedia.org/resource/The_Kid_from_Brooklyn", "http://dbpedia.org/resource/The_Kid_from_Spain", "http://dbpedia.org/resource/The_Little_Foxes_(film)", "http://dbpedia.org/resource/The_Long_Voyage_Home", "http://dbpedia.org/resource/The_Masquerader_(1933_film)", "http://dbpedia.org/resource/The_Nuisance_(1933_film)", "http://dbpedia.org/resource/The_Outlaw", "http://dbpedia.org/resource/The_Road_to_Glory", "http://dbpedia.org/resource/The_Tenderfoot_(film)", "http://dbpedia.org/resource/The_Trespasser_(1929_film)", "http://dbpedia.org/resource/The_Unholy_Garden", "http://dbpedia.org/resource/The_Washington_Masquerade", "http://dbpedia.org/resource/The_Wedding_Night", "http://dbpedia.org/resource/The_Westerner_(1940_film)", "http://dbpedia.org/resource/The_Winning_of_Barbara_Worth", "http://dbpedia.org/resource/Citizen_Kane", "http://dbpedia.org/resource/Come_and_Get_It_(1936_film)", "http://dbpedia.org/resource/Condemned_(1929_film)", "http://dbpedia.org/resource/Ball_of_Fire", "http://dbpedia.org/resource/Intermezzo_(1939_film)", "http://dbpedia.org/resource/Nana_(1934_film)", "http://dbpedia.org/resource/Tonight_or_Never_(1931_film)", "http://dbpedia.org/resource/Tugboat_Annie", "http://dbpedia.org/resource/A_Song_Is_Born", "http://dbpedia.org/resource/Bulldog_Drummond_(1922_film)", "http://dbpedia.org/resource/Bulldog_Drummond_(1929_film)", "http://dbpedia.org/resource/Street_Scene_(film)", "http://dbpedia.org/resource/Lazy_River_(film)", "http://dbpedia.org/resource/Song_of_the_South", "http://dbpedia.org/resource/Man_Wanted", "http://dbpedia.org/resource/Les_Mis\u00e9rables_(1935_film)", "http://dbpedia.org/resource/Public_Hero_\ufe5f1", "http://dbpedia.org/resource/Queen_Kelly", "http://dbpedia.org/resource/Raffles_(1930_film)", "http://dbpedia.org/resource/Raffles_(1939_film)", "http://dbpedia.org/resource/These_Three", "http://dbpedia.org/resource/This_Is_Heaven", "http://dbpedia.org/resource/Woman_Chases_Man", "http://dbpedia.org/resource/Wuthering_Heights_(1939_film)", "http://dbpedia.org/resource/One_Heavenly_Night", "http://dbpedia.org/resource/Splendor_(1935_film)", "http://dbpedia.org/resource/Indiscreet_(1931_film)", "http://dbpedia.org/resource/Palmy_Days", "http://dbpedia.org/resource/We_Live_Again"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/university> <http://dbpedia.org/resource/Penn_State_Nittany_Lions_football> . ?x <http://dbpedia.org/property/highschool> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/family> <http://dbpedia.org/resource/Balanidae> . ?x <http://dbpedia.org/property/authority> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/highschool> <http://dbpedia.org/resource/Ringgold_High_School_(Pennsylvania)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/AmericanFootballPlayer>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/Afghanisthan> . ?x <http://dbpedia.org/ontology/territory> ?uri }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/relatives> <http://dbpedia.org/resource/Kendall_Jenner> . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/employer> <http://dbpedia.org/resource/CNN> . ?x <http://dbpedia.org/ontology/almaMater> ?uri . }"}, "answers": ["http://dbpedia.org/resource/St._Thomas_University_School_of_Law", "http://dbpedia.org/resource/University_of_Miami", "http://dbpedia.org/resource/George_Washington_University", "http://dbpedia.org/resource/University_of_Texas_at_Austin", "http://dbpedia.org/resource/George_Mason_University", "http://dbpedia.org/resource/Sciences_Po", "http://dbpedia.org/resource/Colgate_University", "http://dbpedia.org/resource/University_of_California,_Berkeley", "http://dbpedia.org/resource/University_of_Rhode_Island", "http://dbpedia.org/resource/Pennsylvania_State_University", "http://dbpedia.org/resource/Vassar_College", "http://dbpedia.org/resource/London_School_of_Economics", "http://dbpedia.org/resource/University_of_Technology_Sydney", "http://dbpedia.org/resource/Georgetown_University", "http://dbpedia.org/resource/Cornell_University", "http://dbpedia.org/resource/Northwestern_University", "http://dbpedia.org/resource/University_of_Victoria", "http://dbpedia.org/resource/British_Columbia"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/First_Church_of_Christ,_Scientist_(Pittsburgh)> <http://dbpedia.org/ontology/location> ?uri } "}, "answers": ["http://dbpedia.org/resource/Pittsburgh"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Henry_Bourchier> <http://dbpedia.org/ontology/spouse> ?x . ?x <http://dbpedia.org/property/restingplace> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/country> <http://dbpedia.org/resource/United_States> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": ["http://dbpedia.org/resource/All_Souls_(TV_series)", "http://dbpedia.org/resource/Alt.news_26:46", "http://dbpedia.org/resource/Amanpour_&_Company", "http://dbpedia.org/resource/America's_Election_Headquarters", "http://dbpedia.org/resource/America's_Prince:_The_John_F._Kennedy_Jr._Story", "http://dbpedia.org/resource/America_2040", "http://dbpedia.org/resource/America_After_9/11", "http://dbpedia.org/resource/American_Digger_(TV_series)", "http://dbpedia.org/resource/American_Guns", "http://dbpedia.org/resource/American_Institute_of_Chemists_Gold_Medal", "http://dbpedia.org/resource/An_Evening_with_Fred_Astaire", "http://dbpedia.org/resource/Andy_Warhol's_Fifteen_Minutes", "http://dbpedia.org/resource/Damien_(TV_series)", "http://dbpedia.org/resource/DanceLife", "http://dbpedia.org/resource/Dance_USA_Dance", "http://dbpedia.org/resource/Dancing_at_the_Harvest_Moon", "http://dbpedia.org/resource/Dangerous_Curves_(TV_series)", "http://dbpedia.org/resource/Dark_Relic", "http://dbpedia.org/resource/Dash_and_Lilly", "http://dbpedia.org/resource/Dawn_of_the_Croods", "http://dbpedia.org/resource/Deadliest_Catch", "http://dbpedia.org/resource/Deadwax", "http://dbpedia.org/resource/Deep_Jungle", "http://dbpedia.org/resource/Bowl_Challenge_Cup", "http://dbpedia.org/resource/Casanova_sin_Amor", "http://dbpedia.org/resource/Confederate_Military_History", "http://dbpedia.org/resource/Valley_of_the_Dolls_(TV_series)", "http://dbpedia.org/resource/Vatta's_War", "http://dbpedia.org/resource/Vince_Lombardi_Trophy", "http://dbpedia.org/resource/Voltron_(TV_series)", "http://dbpedia.org/resource/WCW_Power_Hour", "http://dbpedia.org/resource/WWE_Diva_Search", "http://dbpedia.org/resource/WWF_Mania", "http://dbpedia.org/resource/WWF_on_MSG_Network", "http://dbpedia.org/resource/Wanna_Be_a_VJ", "http://dbpedia.org/resource/Washington_(miniseries)", "http://dbpedia.org/resource/Doc_Corkle", "http://dbpedia.org/resource/Hollywood_Zombies", "http://dbpedia.org/resource/Wacky_Packages", "http://dbpedia.org/resource/Albert_Leon_Whiteman_Memorial_Prize", "http://dbpedia.org/resource/Descendants:_School_of_Secrets", "http://dbpedia.org/resource/Designing_Spaces", "http://dbpedia.org/resource/Dessert_First_with_Anne_Thornton", "http://dbpedia.org/resource/Destination_Tennis", "http://dbpedia.org/resource/Devlin_(TV_series)", "http://dbpedia.org/resource/DiResta", "http://dbpedia.org/resource/Dial_Hot_Line", "http://dbpedia.org/resource/Diary_of_a_Wimpy_Kid_(film_series)", "http://dbpedia.org/resource/DietTribe", "http://dbpedia.org/resource/Digging_for_the_Truth", "http://dbpedia.org/resource/DinoSquad", "http://dbpedia.org/resource/Dinosaur_Train", "http://dbpedia.org/resource/Dinotopia_(TV_series)", "http://dbpedia.org/resource/The_Rob,_Arnie,_and_Dawn_Show", "http://dbpedia.org/resource/National_Medal_of_Arts", "http://dbpedia.org/resource/The_Wizard_Knight", "http://dbpedia.org/resource/Wilks_Memorial_Award", "http://dbpedia.org/resource/Airline_(American_TV_series)", "http://dbpedia.org/resource/Al_Rojo_Vivo_(2002_TV_program)", "http://dbpedia.org/resource/Ali_Velshi_on_Target", "http://dbpedia.org/resource/Art_Mann_Presents", "http://dbpedia.org/resource/Artstar", "http://dbpedia.org/resource/Astroblast!", "http://dbpedia.org/resource/Austin_Mahone_Takeover", "http://dbpedia.org/resource/Automaniac", "http://dbpedia.org/resource/Battle_of_the_Supercars", "http://dbpedia.org/resource/Bayly_(talk_show)", "http://dbpedia.org/resource/Beach_Bites_with_Katie_Lee", "http://dbpedia.org/resource/Beat_Shazam", "http://dbpedia.org/resource/Beat_the_Odds", "http://dbpedia.org/resource/Behind_Closed_Doors_(1996_TV_series)", "http://dbpedia.org/resource/Behind_the_Mask_(TV_series)", "http://dbpedia.org/resource/Behind_the_Screen_(TV_series)", "http://dbpedia.org/resource/Being_Bobby_Brown", "http://dbpedia.org/resource/Berlin_Station_(TV_series)", "http://dbpedia.org/resource/Best_Baker_in_America", "http://dbpedia.org/resource/Best_of_World_Championship_Wrestling", "http://dbpedia.org/resource/Beyond_the_Prairie:_The_True_Story_of_Laura_Ingalls_Wilder", "http://dbpedia.org/resource/For_My_Daughter's_Honor", "http://dbpedia.org/resource/Force_Five", "http://dbpedia.org/resource/Forecast_Earth", "http://dbpedia.org/resource/Foreign_Intrigue", "http://dbpedia.org/resource/Four_Corners_(American_TV_series)", "http://dbpedia.org/resource/Four_Days_in_October", "http://dbpedia.org/resource/Four_on_the_Floor_(American_TV_program)", "http://dbpedia.org/resource/Frank_Leaves_for_the_Orient", "http://dbpedia.org/resource/Fred_3:_Camp_Fred", "http://dbpedia.org/resource/Frontier_Justice_(TV_series)", "http://dbpedia.org/resource/Frosty_the_Snowman_(TV_special)", "http://dbpedia.org/resource/Fugitive_Strike_Force", "http://dbpedia.org/resource/Full_Circle_(1960_TV_series)", "http://dbpedia.org/resource/Full_Moon_Over_Miami", "http://dbpedia.org/resource/Funk_Flex_Full_Throttle", "http://dbpedia.org/resource/Funky_Cops", "http://dbpedia.org/resource/Galidor:_Defenders_of_the_Outer_Dimension", "http://dbpedia.org/resource/Game_On!_(2020_game_show)", "http://dbpedia.org/resource/Gaming_Wall_Street", "http://dbpedia.org/resource/Gangsters:_America's_Most_Evil", "http://dbpedia.org/resource/Gardening_by_the_Yard", "http://dbpedia.org/resource/Genetics_Society_of_America_Medal", "http://dbpedia.org/resource/George_H.W._Bush_(film)", "http://dbpedia.org/resource/George_W._Beadle_Award", "http://dbpedia.org/resource/George_W._Bush_(film)", "http://dbpedia.org/resource/Halo_(TV_series)", "http://dbpedia.org/resource/Hamilton's_Pharmacopeia", "http://dbpedia.org/resource/Hammer_of_the_Gods_(2009_film)", "http://dbpedia.org/resource/Hammerman", "http://dbpedia.org/resource/Hand_of_God_(TV_series)", "http://dbpedia.org/resource/Happy_Days", "http://dbpedia.org/resource/Harvest_of_Shame", "http://dbpedia.org/resource/Haunted_Live", "http://dbpedia.org/resource/Haunted_Towns", "http://dbpedia.org/resource/Haunted_USA", "http://dbpedia.org/resource/Haute_Dog", "http://dbpedia.org/resource/Have_a_Laugh!", "http://dbpedia.org/resource/Have_a_Little_Faith_(film)", "http://dbpedia.org/resource/Hawaii_overprint_note", "http://dbpedia.org/resource/STEM_in_30", "http://dbpedia.org/resource/Saints_&_Strangers", "http://dbpedia.org/resource/Sam's_Game", "http://dbpedia.org/resource/Cowboys_and_Outlaws", "http://dbpedia.org/resource/TV3_Winchester", "http://dbpedia.org/resource/TV_Ilegal", "http://dbpedia.org/resource/TV_Party", "http://dbpedia.org/resource/Take_Me_Out_(American_game_show)", "http://dbpedia.org/resource/Take_Note", "http://dbpedia.org/resource/Take_Off!_with_The_Savvy_Stews", "http://dbpedia.org/resource/Take_the_Stage", "http://dbpedia.org/resource/Tales_from_the_Darkside", "http://dbpedia.org/resource/Talking_Funny_(television_special)", "http://dbpedia.org/resource/Tamron_Hall_(talk_show)", "http://dbpedia.org/resource/Tanisha_Gets_Married", "http://dbpedia.org/resource/Taquita_+_Kaui", "http://dbpedia.org/resource/Target_(American_TV_series)", "http://dbpedia.org/resource/Tate_(TV_series)", "http://dbpedia.org/resource/Tattletales", "http://dbpedia.org/resource/Taxicab_Confessions", "http://dbpedia.org/resource/TechKnow", "http://dbpedia.org/resource/Teen_Town_(TV_series)", "http://dbpedia.org/resource/Weekend_of_Terror", "http://dbpedia.org/resource/What_Would_Brian_Boitano_Make%3F", "http://dbpedia.org/resource/Wheel_2000", "http://dbpedia.org/resource/When_Spicy_Meets_Sweet", "http://dbpedia.org/resource/Where's_Huddles%3F", "http://dbpedia.org/resource/Who_Is_the_Black_Dahlia%3F", "http://dbpedia.org/resource/Why_Me%3F_(1984_film)", "http://dbpedia.org/resource/The_Great_Food_Truck_Race", "http://dbpedia.org/resource/Shewhart_Medal", "http://dbpedia.org/resource/'Til_Death_Do_Us_Part:_Carmen_and_Dave", "http://dbpedia.org/resource/10.5_(miniseries)", "http://dbpedia.org/resource/120_Minutes_(2004_TV_program)", "http://dbpedia.org/resource/12_Miles_of_Bad_Road", "http://dbpedia.org/resource/13th_World_Science_Fiction_Convention", "http://dbpedia.org/resource/Angela_Anaconda", "http://dbpedia.org/resource/Ang\u00e9lica,_mi_vida", "http://dbpedia.org/resource/Animal_World_(TV_series)", "http://dbpedia.org/resource/Animated_Tales_of_the_World", "http://dbpedia.org/resource/Animation_Domination_High-Def", "http://dbpedia.org/resource/Anthony_Ant", "http://dbpedia.org/resource/Anya's_Bell", "http://dbpedia.org/resource/Apple_Pie_(TV_series)", "http://dbpedia.org/resource/Arabian_Nights_(miniseries)", "http://dbpedia.org/resource/Archie:_To_Riverdale_and_Back_Again", "http://dbpedia.org/resource/Empire_(1962_TV_series)", "http://dbpedia.org/resource/Empty_Cradle", "http://dbpedia.org/resource/Enjoying_Everyday_Life", "http://dbpedia.org/resource/Epic_Ink", "http://dbpedia.org/resource/Escaping_the_NXIVM_Cult:_A_Mother's_Fight_to_Save_Her_Daughter", "http://dbpedia.org/resource/Gerald_Loeb_Award", "http://dbpedia.org/resource/Get_Ed", "http://dbpedia.org/resource/Ghost_Loop", "http://dbpedia.org/resource/Ghost_Nation_(TV_series)", "http://dbpedia.org/resource/Ghost_Stalkers", "http://dbpedia.org/resource/Ghost_in_a_Teeny_Bikini", "http://dbpedia.org/resource/Gilda_Joyce", "http://dbpedia.org/resource/Gimme_a_Break!", "http://dbpedia.org/resource/Godfather_of_Harlem", "http://dbpedia.org/resource/Going_Bananas_(American_TV_series)", "http://dbpedia.org/resource/Goldie_and_the_Boxer", "http://dbpedia.org/resource/Good_Morning,_Mickey!", "http://dbpedia.org/resource/Goodnight_Burbank", "http://dbpedia.org/resource/Gordita_Chronicles", "http://dbpedia.org/resource/Many_Happy_Returns_(TV_series)", "http://dbpedia.org/resource/March_to_WrestleMania", "http://dbpedia.org/resource/Married..._with_Children", "http://dbpedia.org/resource/Married_in_America", "http://dbpedia.org/resource/Martin_and_Lewis_(film)", "http://dbpedia.org/resource/Planet_in_Peril", "http://dbpedia.org/resource/Play_the_Percentages", "http://dbpedia.org/resource/Playboy_Prime", "http://dbpedia.org/resource/Playboy_Shootout", "http://dbpedia.org/resource/Players_(2010_TV_series)", "http://dbpedia.org/resource/Playmakers", "http://dbpedia.org/resource/Please_Don't_Eat_the_Daisies_(TV_series)", "http://dbpedia.org/resource/Poltergeist:_The_Legacy", "http://dbpedia.org/resource/Poolside_Chats", "http://dbpedia.org/resource/Pop_of_the_Morning", "http://dbpedia.org/resource/Potato_Head_Kids", "http://dbpedia.org/resource/Potter_Puppet_Pals", "http://dbpedia.org/resource/Power_Lunch", "http://dbpedia.org/resource/President's_Volunteer_Service_Award", "http://dbpedia.org/resource/Primetime_Emmy_Award_for_Outstanding_Animated_Program", "http://dbpedia.org/resource/Primetime_Emmy_Award_for_Outstanding_Comedy_Series", "http://dbpedia.org/resource/Primetime_Emmy_Award_for_Outstanding_Drama_Series", "http://dbpedia.org/resource/Primetime_Emmy_Award_for_Outstanding_Lead_Actor_in_a_Comedy_Series", "http://dbpedia.org/resource/Primetime_Emmy_Award_for_Outstanding_Lead_Actress_in_a_Comedy_Series", "http://dbpedia.org/resource/Primetime_Emmy_Award_for_Outstanding_Lead_Actress_in_a_Drama_Series", "http://dbpedia.org/resource/Primetime_Emmy_Award_for_Outstanding_Music_Composition_for_a_Series", "http://dbpedia.org/resource/Primetime_Emmy_Award_for_Outstanding_Supporting_Actor_in_a_Comedy_Series", "http://dbpedia.org/resource/Primetime_Emmy_Award_for_Outstanding_Supporting_Actor_in_a_Drama_Series", "http://dbpedia.org/resource/Primetime_Emmy_Award_for_Outstanding_Supporting_Actress_in_a_Comedy_Series", "http://dbpedia.org/resource/Primetime_Emmy_Award_for_Outstanding_Supporting_Actress_in_a_Drama_Series", "http://dbpedia.org/resource/Primetime_Emmy_Award_for_Outstanding_Voice-Over_Performance", "http://dbpedia.org/resource/Primetime_Emmy_Award_for_Outstanding_Writing_for_a_Comedy_Series", "http://dbpedia.org/resource/Primetime_Emmy_Award_for_Outstanding_Writing_for_a_Drama_Series", "http://dbpedia.org/resource/Tennessee_Tuxedo_and_His_Tales", "http://dbpedia.org/resource/Texas_Ranch_House", "http://dbpedia.org/resource/That's_My_Boy_(1954_TV_series)", "http://dbpedia.org/resource/The_19th_Wife_(film)", "http://dbpedia.org/resource/The_5th_Wave_(series)", "http://dbpedia.org/resource/The_Adams_Chronicles", "http://dbpedia.org/resource/The_Andy_Griffith_Show", "http://dbpedia.org/resource/The_Angel_of_Pennsylvania_Avenue", "http://dbpedia.org/resource/The_Animal_Shelf", "http://dbpedia.org/resource/The_Anna_Nicole_Story", "http://dbpedia.org/resource/The_Apocalypse_Triptych", "http://dbpedia.org/resource/The_Banana_Splits_in_Hocus_Pocus_Park", "http://dbpedia.org/resource/The_Bannen_Way", "http://dbpedia.org/resource/The_Bastard_Executioner", "http://dbpedia.org/resource/The_Best_Thing_I_Ever_Ate", "http://dbpedia.org/resource/The_Best_Thing_I_Ever_Made", "http://dbpedia.org/resource/The_Big_Empty_(book_series)", "http://dbpedia.org/resource/The_Big_Waste", "http://dbpedia.org/resource/The_Biggest_Loser_(Dutch_TV_series)", "http://dbpedia.org/resource/The_Birthday_Boys_(TV_series)", "http://dbpedia.org/resource/The_Bluffers", "http://dbpedia.org/resource/The_Boys_from_Boise_(TV_program)", "http://dbpedia.org/resource/The_Brothers_Grunt", "http://dbpedia.org/resource/The_Campbell_Playhouse_(TV_series)", "http://dbpedia.org/resource/The_Canterville_Ghost_(1985_film)", "http://dbpedia.org/resource/The_Cape_(1996_TV_series)", "http://dbpedia.org/resource/The_Chris_Isaak_Hour", "http://dbpedia.org/resource/The_Circle_(American_TV_series)", "http://dbpedia.org/resource/UCLA_Luskin_School_of_Public_Affairs", "http://dbpedia.org/resource/USA_Saturday_Nightmares", "http://dbpedia.org/resource/Unknown_Sender", "http://dbpedia.org/resource/Ma_Perkins", "http://dbpedia.org/resource/Playboy_Special_Edition", "http://dbpedia.org/resource/Powder_River_(radio)", "http://dbpedia.org/resource/Princess_of_Power", "http://dbpedia.org/resource/Vorkosigan_Saga", "http://dbpedia.org/resource/Wade_Trophy", "http://dbpedia.org/resource/How_I_Met_Your_Dad", "http://dbpedia.org/resource/The_Orphan's_Tales", "http://dbpedia.org/resource/Opie_with_Jim_Norton", "http://dbpedia.org/resource/Borderland_(TV_series)", "http://dbpedia.org/resource/Born_This_Way_(TV_series)", "http://dbpedia.org/resource/Both_Sides_with_Jesse_Jackson", "http://dbpedia.org/resource/Bought_&_Sold_(TV_series)", "http://dbpedia.org/resource/Bounty_Wars", "http://dbpedia.org/resource/Bozo:_The_World's_Most_Famous_Clown", "http://dbpedia.org/resource/Bratzillaz", "http://dbpedia.org/resource/Breaking_Up_with_Shannen_Doherty", "http://dbpedia.org/resource/Brunch_at_Bobby's", "http://dbpedia.org/resource/Jackpot_Bowling", "http://dbpedia.org/resource/Jason_of_Star_Command", "http://dbpedia.org/resource/Kelsey's_Homemade", "http://dbpedia.org/resource/Kentucky_Life", "http://dbpedia.org/resource/Kevin_and_Bean", "http://dbpedia.org/resource/Kevin_from_Work", "http://dbpedia.org/resource/Keystone_Press_Awards", "http://dbpedia.org/resource/Kid's_Beat", "http://dbpedia.org/resource/Kids_BBQ_Championship", "http://dbpedia.org/resource/Kids_Halloween_Baking_Championship", "http://dbpedia.org/resource/Kiki_Strike", "http://dbpedia.org/resource/Bob_Kingsley's_Country_Top_40", "http://dbpedia.org/resource/Mastodon_Minutes", "http://dbpedia.org/resource/Meatballs_&_Spaghetti", "http://dbpedia.org/resource/Medical_Horizons", "http://dbpedia.org/resource/Merlin's_Apprentice", "http://dbpedia.org/resource/Raquel!_(TV_program)", "http://dbpedia.org/resource/Real_Magic_TV", "http://dbpedia.org/resource/Real_News_Update", "http://dbpedia.org/resource/Realtree_Outdoors", "http://dbpedia.org/resource/Reckless_Behavior:_Caught_on_Tape", "http://dbpedia.org/resource/Reckless_Tortuga", "http://dbpedia.org/resource/Recorded_by_Arizal", "http://dbpedia.org/resource/Relative_Success_with_Tabatha", "http://dbpedia.org/resource/Religion_&_Ethics_Newsweekly", "http://dbpedia.org/resource/Resident_Advisors_(TV_series)", "http://dbpedia.org/resource/Restaurant_Stakeout", "http://dbpedia.org/resource/Retired_at_35", "http://dbpedia.org/resource/Reunion_Road_Trip", "http://dbpedia.org/resource/Reunited:_The_Real_World_Las_Vegas", "http://dbpedia.org/resource/The_College_Admissions_Scandal", "http://dbpedia.org/resource/The_Comic_Strip_(TV_series)", "http://dbpedia.org/resource/The_Con_(TV_series)", "http://dbpedia.org/resource/The_Connection_(1973_film)", "http://dbpedia.org/resource/The_Cut_(1998_TV_series)", "http://dbpedia.org/resource/The_Daily_Habit", "http://dbpedia.org/resource/The_Dan_Patrick_Show", "http://dbpedia.org/resource/The_Day_the_Loving_Stopped", "http://dbpedia.org/resource/The_Deadly_Game_(1982_film)", "http://dbpedia.org/resource/The_Dennis_Miller_Show", "http://dbpedia.org/resource/The_Dollmaker", "http://dbpedia.org/resource/The_Donald_O'Connor_Show", "http://dbpedia.org/resource/The_Doug_Banks_Radio_Show", "http://dbpedia.org/resource/The_Durante-Moore_Show", "http://dbpedia.org/resource/The_Earth_Day_Special", "http://dbpedia.org/resource/The_Edge_(TV_series)", "http://dbpedia.org/resource/The_Edsel_Show", "http://dbpedia.org/resource/The_Elizabeth_Smart_Story", "http://dbpedia.org/resource/The_Essentials_(TV_program)", "http://dbpedia.org/resource/The_Executioner's_Song_(film)", "http://dbpedia.org/resource/The_Exile_(TV_series)", "http://dbpedia.org/resource/The_Exonerated", "http://dbpedia.org/resource/The_First_Christmas:_The_Story_of_the_First_Christmas_Snow", "http://dbpedia.org/resource/The_First_Easter_Rabbit", "http://dbpedia.org/resource/The_First_Olympics:_Athens_1896", "http://dbpedia.org/resource/The_Five_of_Me", "http://dbpedia.org/resource/The_Flintstones_Meet_Rockula_and_Frankenstone", "http://dbpedia.org/resource/The_Ford_Road_Show_Featuring_Bing_Crosby", "http://dbpedia.org/resource/The_Game_of_Life_(game_show)", "http://dbpedia.org/resource/The_Gary_Coleman_Show", "http://dbpedia.org/resource/The_Gayle_King_Show", "http://dbpedia.org/resource/The_Gentlemen's_Rant", "http://dbpedia.org/resource/The_Glo_Friends", "http://dbpedia.org/resource/The_Halfblood_Chronicles", "http://dbpedia.org/resource/The_Hanna-Barbera_New_Cartoon_Series", "http://dbpedia.org/resource/The_Healers_(film)", "http://dbpedia.org/resource/The_Hero_(2013_TV_series)", "http://dbpedia.org/resource/The_History_of_Howard_Stern", "http://dbpedia.org/resource/The_Itsy_Bitsy_Spider_(TV_series)", "http://dbpedia.org/resource/The_Job_(2001_TV_series)", "http://dbpedia.org/resource/The_Keepers", "http://dbpedia.org/resource/The_Kwicky_Koala_Show", "http://dbpedia.org/resource/The_Laura_Ingraham_Show", "http://dbpedia.org/resource/The_Little_Rascals_(animated_TV_series)", "http://dbpedia.org/resource/The_Lizzie_Bennet_Diaries", "http://dbpedia.org/resource/The_Long_Hot_Summer_(1985_film)", "http://dbpedia.org/resource/The_Long_Island_Incident", "http://dbpedia.org/resource/The_Magic_School_Bus_(TV_series)", "http://dbpedia.org/resource/The_Mail_Story", "http://dbpedia.org/resource/The_Meltdown_with_Jonah_and_Kumail", "http://dbpedia.org/resource/The_Mind_of_the_Married_Man", "http://dbpedia.org/resource/The_Money_Wheel", "http://dbpedia.org/resource/The_Mouse_Factory", "http://dbpedia.org/resource/The_Mr._Peabody_&_Sherman_Show", "http://dbpedia.org/resource/The_Muppets_Mayhem", "http://dbpedia.org/resource/The_NBC_Mystery_Movie", "http://dbpedia.org/resource/The_NFL_Today", "http://dbpedia.org/resource/The_New_Adventures_of_Flash_Gordon", "http://dbpedia.org/resource/The_New_Adventures_of_Jonny_Quest", "http://dbpedia.org/resource/The_New_Adventures_of_Mighty_Mouse_and_Heckle_&_Jeckle", "http://dbpedia.org/resource/The_New_Adventures_of_Superman_(TV_series)", "http://dbpedia.org/resource/The_New_WKRP_in_Cincinnati", "http://dbpedia.org/resource/The_New_Woody_Woodpecker_Show", "http://dbpedia.org/resource/The_Nightmare_Room", "http://dbpedia.org/resource/The_Oregon_Trail_(TV_series)", "http://dbpedia.org/resource/The_Osmonds_(TV_series)", "http://dbpedia.org/resource/The_Pat_Sajak_Show", "http://dbpedia.org/resource/The_Pearl_Bailey_Show", "http://dbpedia.org/resource/The_Police_Tapes", "http://dbpedia.org/resource/The_Power_Team_(TV_series)", "http://dbpedia.org/resource/The_Pretender:_Island_of_the_Haunted", "http://dbpedia.org/resource/The_Rainbow_Warrior_(film)", "http://dbpedia.org/resource/The_Real_L_Word", "http://dbpedia.org/resource/The_Rebel_(American_TV_series)", "http://dbpedia.org/resource/The_Rebels_(TV_series)", "http://dbpedia.org/resource/The_Red_Badge_of_Courage_(1974_film)", "http://dbpedia.org/resource/The_Regular_Guys", "http://dbpedia.org/resource/The_Return_of_The_Ultimate_Fighter:_Team_Volkanovski_vs._Team_Ortega", "http://dbpedia.org/resource/The_Richard_Bey_Show", "http://dbpedia.org/resource/The_Roy_Rogers_and_Dale_Evans_Show", "http://dbpedia.org/resource/The_Shalom_Show", "http://dbpedia.org/resource/The_Shop", "http://dbpedia.org/resource/The_Show_with_No_Name", "http://dbpedia.org/resource/The_Simple_Life_of_Noah_Dearborn", "http://dbpedia.org/resource/The_Special_London_Bridge_Special", "http://dbpedia.org/resource/The_Spooktacular_New_Adventures_of_Casper", "http://dbpedia.org/resource/The_Stafford_Project", "http://dbpedia.org/resource/The_Story_of_Pretty_Boy_Floyd", "http://dbpedia.org/resource/The_Streets_of_San_Francisco", "http://dbpedia.org/resource/The_Sweeter_Side_of_Life", "http://dbpedia.org/resource/The_Sylvester_&_Tweety_Mysteries", "http://dbpedia.org/resource/The_Temptations_(miniseries)", "http://dbpedia.org/resource/The_Three_Musketeers_(American_TV_series)", "http://dbpedia.org/resource/The_Tick_(1994_TV_series)", "http://dbpedia.org/resource/The_Time_Warp_Trio", "http://dbpedia.org/resource/The_Town_Santa_Forgot", "http://dbpedia.org/resource/The_Truth_About_the_Harry_Quebert_Affair_(miniseries)", "http://dbpedia.org/resource/The_Ultimate_Fighter:_Team_Jones_vs._Team_Sonnen", "http://dbpedia.org/resource/The_Ultimate_Fighter:_United_States_vs._United_Kingdom", "http://dbpedia.org/resource/The_Ultimatum:_Marry_or_Move_On", "http://dbpedia.org/resource/The_Wilton_North_Report", "http://dbpedia.org/resource/The_World_of_Sid_&_Marty_Krofft_at_the_Hollywood_Bowl", "http://dbpedia.org/resource/The_Wright_Stuff_(film)", "http://dbpedia.org/resource/Golden_Globe_Award_for_Best_Supporting_Actress_\u2013_Motion_Picture", "http://dbpedia.org/resource/The_BJ_Shea_Morning_Experience", "http://dbpedia.org/resource/James_Cardinal_Gibbons_Medal", "http://dbpedia.org/resource/Jamie,_Frosty_and_Frank_Show", "http://dbpedia.org/resource/Saturn_Award_for_Best_Supporting_Actress_on_Television", "http://dbpedia.org/resource/Mineral,_Washington_murders", "http://dbpedia.org/resource/2000X", "http://dbpedia.org/resource/2000_Malibu_Road", "http://dbpedia.org/resource/2000_Plus", "http://dbpedia.org/resource/2021_in_Professional_Fighters_League", "http://dbpedia.org/resource/2022_in_Professional_Fighters_League", "http://dbpedia.org/resource/20th_Century_with_Mike_Wallace", "http://dbpedia.org/resource/30_Years_to_Life_(1998_film)", "http://dbpedia.org/resource/3rd_Rock_from_the_Sun", "http://dbpedia.org/resource/8-Track_Flashback", "http://dbpedia.org/resource/9/11:_Inside_the_President's_War_Room", "http://dbpedia.org/resource/AM_America", "http://dbpedia.org/resource/APEC_United_States_2011", "http://dbpedia.org/resource/No_Place_to_Hide_(1981_film)", "http://dbpedia.org/resource/Noisey_(TV_series)", "http://dbpedia.org/resource/Noriega:_God's_Favorite", "http://dbpedia.org/resource/North_Mission_Road", "http://dbpedia.org/resource/Northwest_Afternoon", "http://dbpedia.org/resource/Nuestra_Belleza_Latina_2008", "http://dbpedia.org/resource/Nuestra_Belleza_Latina_2009", "http://dbpedia.org/resource/Obie_Award", "http://dbpedia.org/resource/Oblivious_(American_game_show)", "http://dbpedia.org/resource/Ocean_Force", "http://dbpedia.org/resource/Golden_Globe_Award_for_Best_Actor_\u2013_Television_Series_Drama", "http://dbpedia.org/resource/Golden_Globe_Award_for_Best_Actress_\u2013_Television_Series_Musical_or_Comedy", "http://dbpedia.org/resource/Pearl_Meister_Greengard_Prize", "http://dbpedia.org/resource/The_Goldbergs_(broadcast_series)", "http://dbpedia.org/resource/The_Land_of_Stories", "http://dbpedia.org/resource/International_Race_of_Champions", "http://dbpedia.org/resource/RITA_Award", "http://dbpedia.org/resource/Relish_(magazine)", "http://dbpedia.org/resource/The_Secrets_of_Droon", "http://dbpedia.org/resource/Mickey_and_Amelia", "http://dbpedia.org/resource/Tortured_Souls", "http://dbpedia.org/resource/2018_in_Professional_Fighters_League", "http://dbpedia.org/resource/2019_in_Professional_Fighters_League", "http://dbpedia.org/resource/Citizen_X", "http://dbpedia.org/resource/Clinton_(film)", "http://dbpedia.org/resource/Clover_(1997_film)", "http://dbpedia.org/resource/Coast_to_Coast_(2003_film)", "http://dbpedia.org/resource/College_Football_Scoreboard", "http://dbpedia.org/resource/Collision_Course:_Truman_vs._MacArthur", "http://dbpedia.org/resource/Combat_Sergeant", "http://dbpedia.org/resource/Comedy_Knockout", "http://dbpedia.org/resource/Commander_Tom_Show", "http://dbpedia.org/resource/Complications_(TV_series)", "http://dbpedia.org/resource/Construction_Intervention", "http://dbpedia.org/resource/Contraption_(game_show)", "http://dbpedia.org/resource/American_Music_Awards_of_1974", "http://dbpedia.org/resource/Amulet_(comics)", "http://dbpedia.org/resource/Aunt_Jenny's_Real_Life_Stories", "http://dbpedia.org/resource/John_and_Abigail_Adams", "http://dbpedia.org/resource/Johnny_and_the_Sprites", "http://dbpedia.org/resource/Jokebook", "http://dbpedia.org/resource/Jonny's_Golden_Quest", "http://dbpedia.org/resource/Jonny_Zero", "http://dbpedia.org/resource/Josie_and_the_Pussycats_(TV_series)", "http://dbpedia.org/resource/Santa_Clarita_Diet", "http://dbpedia.org/resource/Saturday_Supercade", "http://dbpedia.org/resource/Scarecrow_(2013_film)", "http://dbpedia.org/resource/Scared_Famous_(TV_series)", "http://dbpedia.org/resource/Scaredy_Camp", "http://dbpedia.org/resource/Scene_of_the_Crime_(TV_series)", "http://dbpedia.org/resource/Scooby's_All-Star_Laff-A-Lympics", "http://dbpedia.org/resource/Scooby_Goes_Hollywood", "http://dbpedia.org/resource/Scrabble_Showdown", "http://dbpedia.org/resource/Screen_Directors_Playhouse", "http://dbpedia.org/resource/Search_for_the_Perfect_Girlfriend", "http://dbpedia.org/resource/Seasons_of_the_Heart_(1994_film)", "http://dbpedia.org/resource/Secrets_&_Mysteries", "http://dbpedia.org/resource/Secrets_of_a_Restaurant_Chef", "http://dbpedia.org/resource/Sectaurs", "http://dbpedia.org/resource/Falling_Kingdoms", "http://dbpedia.org/resource/Giada_in_Paradise", "http://dbpedia.org/resource/Muse_(web_series)", "http://dbpedia.org/resource/BBQ_Blitz", "http://dbpedia.org/resource/BBQ_Brawl", "http://dbpedia.org/resource/BBQ_USA", "http://dbpedia.org/resource/BET_Presents:_The_Encore", "http://dbpedia.org/resource/Back_to_the_Future_(TV_series)", "http://dbpedia.org/resource/Baketopia", "http://dbpedia.org/resource/Ball_in_the_Family", "http://dbpedia.org/resource/Balls_Deep_(TV_series)", "http://dbpedia.org/resource/Barbecue_America", "http://dbpedia.org/resource/Barbie_Dolphin_Magic", "http://dbpedia.org/resource/Barker_Bill's_Cartoon_Show", "http://dbpedia.org/resource/Bataan_Rescue", "http://dbpedia.org/resource/Bates_Motel_(film)", "http://dbpedia.org/resource/Batman:_The_Lazarus_Syndrome", "http://dbpedia.org/resource/Anita_Borg_Institute_Women_of_Vision_Awards", "http://dbpedia.org/resource/Infidelity_(1987_film)", "http://dbpedia.org/resource/Inquizition", "http://dbpedia.org/resource/Insane_Coaster_Wars", "http://dbpedia.org/resource/Inside_City_Hall", "http://dbpedia.org/resource/Inside_the_Osmonds", "http://dbpedia.org/resource/Insidious_(film_series)", "http://dbpedia.org/resource/Intelsat_II", "http://dbpedia.org/resource/Iranican", "http://dbpedia.org/resource/It's_a_Business", "http://dbpedia.org/resource/It_Takes_Two_(game_show)", "http://dbpedia.org/resource/Jack_Hanna's_Animal_Adventures", "http://dbpedia.org/resource/Missing_Persons_(TV_series)", "http://dbpedia.org/resource/Mission:_Magic!", "http://dbpedia.org/resource/Moment_of_Truth_(2021_TV_series)", "http://dbpedia.org/resource/Mommy_XXX", "http://dbpedia.org/resource/Monarch_(American_TV_series)", "http://dbpedia.org/resource/Monster_High:_Fright_On!", "http://dbpedia.org/resource/More_Than_Murder", "http://dbpedia.org/resource/Morgan_Spurlock_Inside_Man", "http://dbpedia.org/resource/Motormouth_(American_TV_program)", "http://dbpedia.org/resource/Movies_That_Shook_the_World", "http://dbpedia.org/resource/Movin'_with_Nancy", "http://dbpedia.org/resource/Mr._Iglesias", "http://dbpedia.org/resource/Mr._Lucky_(TV_series)", "http://dbpedia.org/resource/Mr._Wong_(web_series)", "http://dbpedia.org/resource/Mrs._Munger's_Class", "http://dbpedia.org/resource/Murder_Me,_Murder_You", "http://dbpedia.org/resource/Murder_at_the_Presidio", "http://dbpedia.org/resource/MyMusic", "http://dbpedia.org/resource/My_Baby_Is_Missing", "http://dbpedia.org/resource/My_Life_with_the_Walter_Boys", "http://dbpedia.org/resource/My_Scene", "http://dbpedia.org/resource/Mysterious_Journeys", "http://dbpedia.org/resource/Mystery_Island", "http://dbpedia.org/resource/Mystery_Millionaire", "http://dbpedia.org/resource/NASCAR_Classics", "http://dbpedia.org/resource/NASCAR_in_Primetime", "http://dbpedia.org/resource/NBA_Action", "http://dbpedia.org/resource/NBC_60th_Anniversary_Celebration", "http://dbpedia.org/resource/NBC_Weather_Plus", "http://dbpedia.org/resource/NFL_Cheerleader_Playoffs", "http://dbpedia.org/resource/Naked_SNCTM", "http://dbpedia.org/resource/Naked_Vegas", "http://dbpedia.org/resource/Chefography", "http://dbpedia.org/resource/Chicago_Air_&_Water_Show", "http://dbpedia.org/resource/Too_Fat_for_15:_Fighting_Back", "http://dbpedia.org/resource/Tool_Academy_(season_2)", "http://dbpedia.org/resource/Top_5_Restaurants", "http://dbpedia.org/resource/Totally_Pauly", "http://dbpedia.org/resource/TouchVision", "http://dbpedia.org/resource/Tough_Crowd_with_Colin_Quinn", "http://dbpedia.org/resource/Tough_Love:_Co-Ed", "http://dbpedia.org/resource/Tough_Love_Miami", "http://dbpedia.org/resource/Tough_Love_New_Orleans", "http://dbpedia.org/resource/Tougher_In_Alaska", "http://dbpedia.org/resource/Toxic_Crusaders", "http://dbpedia.org/resource/Tracey_Ullman:_Live_and_Exposed", "http://dbpedia.org/resource/Tracey_Ullman_in_the_Trailer_Tales", "http://dbpedia.org/resource/Trackdown:_Finding_the_Goodbar_Killer", "http://dbpedia.org/resource/Trapped:_The_Alex_Cooper_Story", "http://dbpedia.org/resource/Trauma:_Life_in_the_E.R.", "http://dbpedia.org/resource/Trenches_(web_series)", "http://dbpedia.org/resource/Troubadour,_TX", "http://dbpedia.org/resource/Truman_(1997_film)", "http://dbpedia.org/resource/Turing_Award", "http://dbpedia.org/resource/Turning_Point_(TV_program)", "http://dbpedia.org/resource/Tush_(TV_series)", "http://dbpedia.org/resource/The_It_Girl_(novel_series)", "http://dbpedia.org/resource/The_Kane_Chronicles", "http://dbpedia.org/resource/A_Capitol_Fourth", "http://dbpedia.org/resource/A_Case_of_Rape", "http://dbpedia.org/resource/A_Christmas_Sing_with_Bing_(1955\u20131962)", "http://dbpedia.org/resource/A_Christmas_Story_Live!", "http://dbpedia.org/resource/A_Cook's_Tour_(TV_series)", "http://dbpedia.org/resource/A_Craftsman's_Legacy", "http://dbpedia.org/resource/A_Fire_in_the_Sky", "http://dbpedia.org/resource/A_Man_and_His_Music_+_Ella_+_Jobim", "http://dbpedia.org/resource/A_Time_to_Heal_(film)", "http://dbpedia.org/resource/A_Tree_Grows_in_Brooklyn_(1974_film)", "http://dbpedia.org/resource/A_Waltz_Through_the_Hills", "http://dbpedia.org/resource/A_Woman_Named_Jackie", "http://dbpedia.org/resource/A_Wrinkle_in_Time_(2003_film)", "http://dbpedia.org/resource/Academy_Award_for_Best_Actor", "http://dbpedia.org/resource/Academy_Award_for_Best_Actress", "http://dbpedia.org/resource/Academy_Award_for_Best_Adapted_Screenplay", "http://dbpedia.org/resource/Academy_Award_for_Best_Cinematography", "http://dbpedia.org/resource/Academy_Award_for_Best_Costume_Design", "http://dbpedia.org/resource/Academy_Award_for_Best_Live_Action_Short_Film", "http://dbpedia.org/resource/Academy_Award_for_Best_Makeup_and_Hairstyling", "http://dbpedia.org/resource/Academy_Award_for_Best_Original_Score", "http://dbpedia.org/resource/Academy_Award_for_Best_Sound_Editing", "http://dbpedia.org/resource/Academy_Award_for_Best_Supporting_Actor", "http://dbpedia.org/resource/Academy_Award_for_Best_Supporting_Actress", "http://dbpedia.org/resource/Advanced_Extremely_High_Frequency", "http://dbpedia.org/resource/After_the_Shock", "http://dbpedia.org/resource/Buddy_Thunderstruck", "http://dbpedia.org/resource/Bullet_in_the_Face", "http://dbpedia.org/resource/Bully_Beatdown", "http://dbpedia.org/resource/Buried_Secrets_(film)", "http://dbpedia.org/resource/But_I_Don't_Want_to_Get_Married!", "http://dbpedia.org/resource/Butch_Cassidy_(TV_series)", "http://dbpedia.org/resource/Byline_(TV_series)", "http://dbpedia.org/resource/CSI:_NY_(season_6)", "http://dbpedia.org/resource/CSI:_NY_(season_9)", "http://dbpedia.org/resource/Caitlin's_Way", "http://dbpedia.org/resource/Califunya", "http://dbpedia.org/resource/Call_to_Cosplay", "http://dbpedia.org/resource/Call_to_Danger", "http://dbpedia.org/resource/Camel_Spiders_(film)", "http://dbpedia.org/resource/Camp_Cucamonga", "http://dbpedia.org/resource/Campus_Hoopla", "http://dbpedia.org/resource/Canap\u00e9_(TV_series)", "http://dbpedia.org/resource/Cavalcade_of_America", "http://dbpedia.org/resource/Ceiling_Unlimited", "http://dbpedia.org/resource/Celebrity_Blackjack", "http://dbpedia.org/resource/Celebrity_Bowling", "http://dbpedia.org/resource/Celebrity_Close_Calls", "http://dbpedia.org/resource/Celebrity_Justice", "http://dbpedia.org/resource/Center_Stage_(TV_series)", "http://dbpedia.org/resource/Chameleon_II:_Death_Match", "http://dbpedia.org/resource/Changes_(1991_film)", "http://dbpedia.org/resource/Changing_Your_World", "http://dbpedia.org/resource/Cheer_(TV_series)", "http://dbpedia.org/resource/Chemical_Industry_Medal", "http://dbpedia.org/resource/China:_A_Century_of_Revolution", "http://dbpedia.org/resource/China:_Time_of_Xi", "http://dbpedia.org/resource/China_Uncensored", "http://dbpedia.org/resource/Christmas_Miracle_in_Caufield,_U.S.A.", "http://dbpedia.org/resource/Circle_of_Deceit_(1998_film)", "http://dbpedia.org/resource/Stone_Protectors", "http://dbpedia.org/resource/Strange_Voices", "http://dbpedia.org/resource/Street_Court", "http://dbpedia.org/resource/Street_Genius", "http://dbpedia.org/resource/Strip_Search_(web_series)", "http://dbpedia.org/resource/Stylish_with_Jenna_Lyons", "http://dbpedia.org/resource/SummerSlam_Spectacular", "http://dbpedia.org/resource/Summer_House_(2006_TV_series)", "http://dbpedia.org/resource/Sunrise_Earth", "http://dbpedia.org/resource/Sunrise_Weather", "http://dbpedia.org/resource/Super_Dave:_Daredevil_for_Hire", "http://dbpedia.org/resource/Super_Duper_Sumos", "http://dbpedia.org/resource/Super_Tuesday_(TV_program)", "http://dbpedia.org/resource/Superboy_(TV_series)", "http://dbpedia.org/resource/Superstars_of_Wrestling_(Canadian_TV_series)", "http://dbpedia.org/resource/Surgery_Saved_My_Life", "http://dbpedia.org/resource/Surviving_Death", "http://dbpedia.org/resource/Surviving_Suburbia", "http://dbpedia.org/resource/Surviving_the_Cut", "http://dbpedia.org/resource/Sweet_Surrender_(TV_series)", "http://dbpedia.org/resource/NBA_Summer_League", "http://dbpedia.org/resource/HistoryMapped", "http://dbpedia.org/resource/Iliad_House", "http://dbpedia.org/resource/Walt_Disney's_Story_Land:_55_Favorite_Stories", "http://dbpedia.org/resource/92_KQRS_Morning_Show", "http://dbpedia.org/resource/Academic_All-America", "http://dbpedia.org/resource/Academy_Award_for_Best_Visual_Effects", "http://dbpedia.org/resource/Capt'n_Sailorbird", "http://dbpedia.org/resource/Captain_11", "http://dbpedia.org/resource/Captain_Harlock_and_the_Queen_of_a_Thousand_Years", "http://dbpedia.org/resource/Captain_Kangaroo", "http://dbpedia.org/resource/Cari_&_Jemele_(Won't)_Stick_to_Sports", "http://dbpedia.org/resource/Caroline%3F", "http://dbpedia.org/resource/Carpool_(1983_film)", "http://dbpedia.org/resource/Cartoon_All-Stars_to_the_Rescue", "http://dbpedia.org/resource/Cartoon_Sushi", "http://dbpedia.org/resource/Castaways_(TV_series)", "http://dbpedia.org/resource/HitRecord_on_TV", "http://dbpedia.org/resource/Hockey_Night_Live!", "http://dbpedia.org/resource/Holiday_Baking_Championship", "http://dbpedia.org/resource/Hollywood_Wrestling", "http://dbpedia.org/resource/Homeboys_in_Outer_Space", "http://dbpedia.org/resource/Hong_Kong_Phooey", "http://dbpedia.org/resource/Hot_Ones", "http://dbpedia.org/resource/House_of_Ho", "http://dbpedia.org/resource/How's_Your_News%3F", "http://dbpedia.org/resource/How_Booze_Built_America", "http://dbpedia.org/resource/How_I_Met_Your_Mother", "http://dbpedia.org/resource/How_to_Eat_Like_a_Child", "http://dbpedia.org/resource/Howe_&_Howe_Tech", "http://dbpedia.org/resource/Howie_Mandel's_Sunny_Skies", "http://dbpedia.org/resource/Huang's_World", "http://dbpedia.org/resource/Beat_the_Band", "http://dbpedia.org/resource/Behind_the_Mike", "http://dbpedia.org/resource/LBJ_(1991_film)", "http://dbpedia.org/resource/Largo_Winch_(TV_series)", "http://dbpedia.org/resource/Laverne_&_Shirley_(1981_TV_series)", "http://dbpedia.org/resource/The_Dog_House_(talk_show)", "http://dbpedia.org/resource/Heroes_in_Hell", "http://dbpedia.org/resource/NASCAR_Grand_National_East_Series", "http://dbpedia.org/resource/The_Weird_Circle", "http://dbpedia.org/resource/Vytor:_The_Starfire_Champion", "http://dbpedia.org/resource/William_T._Hornaday_Awards", "http://dbpedia.org/resource/Dogs_in_the_City", "http://dbpedia.org/resource/Dorm_Life", "http://dbpedia.org/resource/Douglas_Family_Gold", "http://dbpedia.org/resource/Do\u00f1a_Bella", "http://dbpedia.org/resource/Dr._Drew_On_Call", "http://dbpedia.org/resource/Dragon_Fighter", "http://dbpedia.org/resource/DreamWorks_Dragons:_The_Nine_Realms", "http://dbpedia.org/resource/Dream_Maker", "http://dbpedia.org/resource/DuMont_Evening_News", "http://dbpedia.org/resource/Duff's_Happy_Fun_Bake_Time", "http://dbpedia.org/resource/Duluth_Ship_Canal", "http://dbpedia.org/resource/Dumbo's_Circus", "http://dbpedia.org/resource/E!'s_Pam:_Girl_on_the_Loose!", "http://dbpedia.org/resource/E/R", "http://dbpedia.org/resource/Sinbad_Jr._and_his_Magic_Belt", "http://dbpedia.org/resource/Sky_King", "http://dbpedia.org/resource/Slattery's_People", "http://dbpedia.org/resource/Snoops_(1989_TV_series)", "http://dbpedia.org/resource/Snow_(2004_film)", "http://dbpedia.org/resource/So_Evil,_My_Sister", "http://dbpedia.org/resource/Soccer_Made_in_Germany", "http://dbpedia.org/resource/Somerset_Maugham_TV_Theatre", "http://dbpedia.org/resource/Something_Is_Out_There", "http://dbpedia.org/resource/Sonny_Spoon", "http://dbpedia.org/resource/Sons_of_Guns", "http://dbpedia.org/resource/Sons_of_Hollywood", "http://dbpedia.org/resource/Sordid_Lives:_The_Series", "http://dbpedia.org/resource/Soul_Train_Music_Awards", "http://dbpedia.org/resource/South_Dakota_Adventure", "http://dbpedia.org/resource/Neustadt_International_Prize_for_Literature", "http://dbpedia.org/resource/Open_Source_(radio_show)", "http://dbpedia.org/resource/The_Amazing_Nero_Wolfe", "http://dbpedia.org/resource/Smart_City_Radio", "http://dbpedia.org/resource/The_Toucher_and_Rich_Show", "http://dbpedia.org/resource/Telnarian_Histories", "http://dbpedia.org/resource/Rex_Is_Not_Your_Lawyer", "http://dbpedia.org/resource/The_Winnie_Years", "http://dbpedia.org/resource/Maximum_Ride", "http://dbpedia.org/resource/24:_Conspiracy", "http://dbpedia.org/resource/3-Gun_Nation", "http://dbpedia.org/resource/Cora_Unashamed", "http://dbpedia.org/resource/Cornerstone_Television", "http://dbpedia.org/resource/Country_Style_(American_TV_series)", "http://dbpedia.org/resource/Couples_Therapy_(2019_TV_series)", "http://dbpedia.org/resource/Court_Cam", "http://dbpedia.org/resource/Crashbox", "http://dbpedia.org/resource/Creature_Double_Feature", "http://dbpedia.org/resource/Creepy_Crawlers_(TV_series)", "http://dbpedia.org/resource/Criminal_Minds", "http://dbpedia.org/resource/Crisis_Center", "http://dbpedia.org/resource/Crush_(American_game_show)", "http://dbpedia.org/resource/Cultureshock", "http://dbpedia.org/resource/Curtain_Call_(American_TV_series)", "http://dbpedia.org/resource/Cyberstalker_(film)", "http://dbpedia.org/resource/DC_9/11:_Time_of_Crisis", "http://dbpedia.org/resource/Gracepoint", "http://dbpedia.org/resource/Grady_(American_TV_series)", "http://dbpedia.org/resource/Graffiti_Rock", "http://dbpedia.org/resource/Grand_Slam_(American_game_show)", "http://dbpedia.org/resource/Granite_Flats", "http://dbpedia.org/resource/Graves_(TV_series)", "http://dbpedia.org/resource/Great_Lake_Warriors", "http://dbpedia.org/resource/Gulf_Playhouse", "http://dbpedia.org/resource/Gunsmoke:_The_Long_Ride", "http://dbpedia.org/resource/Healthy_Appetite_with_Ellie_Krieger", "http://dbpedia.org/resource/Hearts_of_Space", "http://dbpedia.org/resource/Heathcliff_(1980_TV_series)", "http://dbpedia.org/resource/Helen_of_Troy_(miniseries)", "http://dbpedia.org/resource/Helter_Skelter_(1976_film)", "http://dbpedia.org/resource/Hercules_(miniseries)", "http://dbpedia.org/resource/High_Finance_(TV_series)", "http://dbpedia.org/resource/High_Guardian_Spice", "http://dbpedia.org/resource/Highway_Patrol_(American_TV_series)", "http://dbpedia.org/resource/History's_Mysteries", "http://dbpedia.org/resource/M*A*S*H_(TV_series)", "http://dbpedia.org/resource/MCW_Pro_Wrestling", "http://dbpedia.org/resource/MSNBC_Reports", "http://dbpedia.org/resource/MTV_Sports", "http://dbpedia.org/resource/MTV_Tres", "http://dbpedia.org/resource/M_Squad", "http://dbpedia.org/resource/Ma's_Roadhouse", "http://dbpedia.org/resource/MacArthur_(1999_film)", "http://dbpedia.org/resource/Mad_Libs_(game_show)", "http://dbpedia.org/resource/Magic_Kingdom_of_Landover", "http://dbpedia.org/resource/Majipoor_series", "http://dbpedia.org/resource/Make_the_Connection", "http://dbpedia.org/resource/Making_It!_Minority_Success_Stories", "http://dbpedia.org/resource/Man_Fire_Food", "http://dbpedia.org/resource/Man_in_the_Arena:_Tom_Brady", "http://dbpedia.org/resource/CBS_Radio_Workshop", "http://dbpedia.org/resource/Rica,_Famosa,_Latina", "http://dbpedia.org/resource/Ring_Warriors", "http://dbpedia.org/resource/Ringo_(1978_film)", "http://dbpedia.org/resource/Riptide_(American_TV_series)", "http://dbpedia.org/resource/Road_to_the_White_House", "http://dbpedia.org/resource/Robot_Chicken", "http://dbpedia.org/resource/Robot_Chicken:_Star_Wars", "http://dbpedia.org/resource/Robotech_(TV_series)", "http://dbpedia.org/resource/Rock_'N'_America", "http://dbpedia.org/resource/Rock_Star_(TV_series)", "http://dbpedia.org/resource/Rock_Stars_(TV_series)", "http://dbpedia.org/resource/Rock_of_Love:_Charm_School", "http://dbpedia.org/resource/Rock_of_Love_Bus_with_Bret_Michaels", "http://dbpedia.org/resource/Rock_of_Love_with_Bret_Michaels", "http://dbpedia.org/resource/Rock_of_Love_with_Bret_Michaels_(season_1)", "http://dbpedia.org/resource/Rogue_Nature", "http://dbpedia.org/resource/Damon_Knight_Memorial_Grand_Master_Award", "http://dbpedia.org/resource/The_Brown_Hornet", "http://dbpedia.org/resource/Remembering_the_Kanji_and_Remembering_the_Hanzi", "http://dbpedia.org/resource/Our_Secret_Weapon", "http://dbpedia.org/resource/Rock_Lords", "http://dbpedia.org/resource/King_Raven_Trilogy", "http://dbpedia.org/resource/Karl_Marx_Library", "http://dbpedia.org/resource/The_Dudley_&_Bob_Show", "http://dbpedia.org/resource/America's_Original_Outlaws", "http://dbpedia.org/resource/Evil_Roy_Slade", "http://dbpedia.org/resource/Extreme_Cheapskates", "http://dbpedia.org/resource/Eyewitness_(British_TV_series)", "http://dbpedia.org/resource/F._Scott_Fitzgerald_and_'The_Last_of_the_Belles'", "http://dbpedia.org/resource/Face_of_Evil", "http://dbpedia.org/resource/Face_the_Nation", "http://dbpedia.org/resource/Fame,_Fortune_and_Romance", "http://dbpedia.org/resource/Family_Game_Night_(game_show)", "http://dbpedia.org/resource/Fantasy_Island", "http://dbpedia.org/resource/Fast_Times", "http://dbpedia.org/resource/Fatal_Contact:_Bird_Flu_in_America", "http://dbpedia.org/resource/Fear_Clinic", "http://dbpedia.org/resource/Fearless_Music", "http://dbpedia.org/resource/Festival_of_Family_Classics", "http://dbpedia.org/resource/Fight_Master:_Bellator_MMA", "http://dbpedia.org/resource/Filter_(TV_series)", "http://dbpedia.org/resource/Final_X", "http://dbpedia.org/resource/Fire_Me...Please", "http://dbpedia.org/resource/Firefighter_(film)", "http://dbpedia.org/resource/Fireside_Theatre", "http://dbpedia.org/resource/Fish_Warrior", "http://dbpedia.org/resource/Five_Days_to_Midnight", "http://dbpedia.org/resource/Flint_Town", "http://dbpedia.org/resource/Flirty_Dancing", "http://dbpedia.org/resource/Jefferson_Lecture", "http://dbpedia.org/resource/Jenna's_American_Sex_Star", "http://dbpedia.org/resource/Jennifer_Falls", "http://dbpedia.org/resource/Jerry_O'", "http://dbpedia.org/resource/Jessie_(1984_TV_series)", "http://dbpedia.org/resource/Jimmy_Carter_(film)", "http://dbpedia.org/resource/Joe_&_Evan", "http://dbpedia.org/resource/Joe_Dancer", "http://dbpedia.org/resource/Joe_Pitt_Casebooks", "http://dbpedia.org/resource/Legendary_Dudas", "http://dbpedia.org/resource/Lego_Masters_(American_TV_series)", "http://dbpedia.org/resource/Leverage_(American_TV_series)", "http://dbpedia.org/resource/Lies_Before_Kisses", "http://dbpedia.org/resource/Life..._and_Stuff", "http://dbpedia.org/resource/Lincoln_Heights_(TV_series)", "http://dbpedia.org/resource/National_Bingo_Night_(American_game_show)", "http://dbpedia.org/resource/Nero_Wolfe_(1981_TV_series)", "http://dbpedia.org/resource/New_Mexico_True_Television", "http://dbpedia.org/resource/New_Stage", "http://dbpedia.org/resource/New_Wave_Theatre", "http://dbpedia.org/resource/New_Year's_Eve_Live", "http://dbpedia.org/resource/New_York_Goes_to_Hollywood", "http://dbpedia.org/resource/News_Central", "http://dbpedia.org/resource/Newton's_Apple", "http://dbpedia.org/resource/Night_Calls", "http://dbpedia.org/resource/Nightly_Pop", "http://dbpedia.org/resource/Pegasus_(satellite)", "http://dbpedia.org/resource/Pete_Kelly's_Blues_(TV_series)", "http://dbpedia.org/resource/Peter_Gunn", "http://dbpedia.org/resource/Phantom_2040", "http://dbpedia.org/resource/Philco_Radio_Time", "http://dbpedia.org/resource/Pictionary_(1989_game_show)", "http://dbpedia.org/resource/Piers_Morgan_Live", "http://dbpedia.org/resource/Private_Screenings", "http://dbpedia.org/resource/Push,_Nevada", "http://dbpedia.org/resource/Pussycat_Dolls_Present:_Girlicious", "http://dbpedia.org/resource/Quiz_Kids_(game_show)", "http://dbpedia.org/resource/Race_to_the_Center_of_the_Earth", "http://dbpedia.org/resource/There's..._Johnny!", "http://dbpedia.org/resource/Thief_(TV_series)", "http://dbpedia.org/resource/This_Close", "http://dbpedia.org/resource/This_Is_Family", "http://dbpedia.org/resource/This_Man_Dawson", "http://dbpedia.org/resource/Thomas_Hunt_Morgan_Medal", "http://dbpedia.org/resource/Time_Bomb_(1984_film)", "http://dbpedia.org/resource/To_Love_and_Die", "http://dbpedia.org/resource/To_the_Contrary", "http://dbpedia.org/resource/Tom_Green's_House_Tonight", "http://dbpedia.org/resource/Tommy_Lee_Goes_to_College", "http://dbpedia.org/resource/Willy_(TV_series)", "http://dbpedia.org/resource/Wings_of_Fire_(film)", "http://dbpedia.org/resource/Wish_Kid", "http://dbpedia.org/resource/Within_the_Rock", "http://dbpedia.org/resource/Woke_Up_Dead", "http://dbpedia.org/resource/Women's_Murder_Club_(TV_series)", "http://dbpedia.org/resource/Work_with_Me", "http://dbpedia.org/resource/World's_Toughest_Fixes", "http://dbpedia.org/resource/Worldstar_Headquarters", "http://dbpedia.org/resource/Worth_It_(TV_series)", "http://dbpedia.org/resource/Wrangler_(TV_series)", "http://dbpedia.org/resource/X_Minus_One", "http://dbpedia.org/resource/Fun_to_Be_Fit", "http://dbpedia.org/resource/World_Series_of_Football_(1902\u201303)", "http://dbpedia.org/resource/Mijos", "http://dbpedia.org/resource/Young_Widder_Brown", "http://dbpedia.org/resource/Live_at_Oak_Tree:_The_Series", "http://dbpedia.org/resource/Television_Infrared_Observation_Satellite", "http://dbpedia.org/resource/The_Sidney_Award", "http://dbpedia.org/resource/ESPN2_Garage", "http://dbpedia.org/resource/Early_Start", "http://dbpedia.org/resource/Earth_II", "http://dbpedia.org/resource/Earth_to_America_(TV_special)", "http://dbpedia.org/resource/Electra_Woman_and_Dyna_Girl", "http://dbpedia.org/resource/Ellen_DeGeneres:_Here_and_Now", "http://dbpedia.org/resource/Julie_on_Sesame_Street", "http://dbpedia.org/resource/Just_In", "http://dbpedia.org/resource/Justice_League_Action", "http://dbpedia.org/resource/KH-5_Argon", "http://dbpedia.org/resource/Kam_Kardashian", "http://dbpedia.org/resource/Karma_(2020_TV_series)", "http://dbpedia.org/resource/Live_on_Tape", "http://dbpedia.org/resource/Living_Proof:_The_Hank_Williams_Jr._Story", "http://dbpedia.org/resource/Living_with_Ed", "http://dbpedia.org/resource/Lizzo's_Watch_Out_for_the_Big_Grrrls", "http://dbpedia.org/resource/Locke_&_Key_(TV_series)", "http://dbpedia.org/resource/Lonesome_Dove:_The_Series", "http://dbpedia.org/resource/Lost_in_the_West", "http://dbpedia.org/resource/Lou_Grant_(TV_series)", "http://dbpedia.org/resource/Love_Is_Blind_(TV_series)", "http://dbpedia.org/resource/Loving_Leah", "http://dbpedia.org/resource/Lucha_Underground", "http://dbpedia.org/resource/Lucky_Luke_(1984_TV_series)", "http://dbpedia.org/resource/Lucky_Starr_series", "http://dbpedia.org/resource/Off_the_Grid:_Million_Dollar_Manhunt", "http://dbpedia.org/resource/Off_the_Hook:_Extreme_Catches", "http://dbpedia.org/resource/Off_the_Wall_(game_show)", "http://dbpedia.org/resource/Oh,_No!_Not_THEM!", "http://dbpedia.org/resource/Ollie_&_Scoops", "http://dbpedia.org/resource/Once_You_Meet_a_Stranger", "http://dbpedia.org/resource/Operation_Build", "http://dbpedia.org/resource/Opie_and_Anthony", "http://dbpedia.org/resource/Oprah's_Lifeclass", "http://dbpedia.org/resource/Orson_Welles_Commentaries", "http://dbpedia.org/resource/Oswald_Veblen_Prize_in_Geometry", "http://dbpedia.org/resource/Out_of_the_Box_(TV_series)", "http://dbpedia.org/resource/Outside_the_Bubble:_A_Roadtrip_with_Alexandra_Pelosi", "http://dbpedia.org/resource/Over_Your_Head", "http://dbpedia.org/resource/Sex,_Love_&_Secrets", "http://dbpedia.org/resource/Sex_&_Mrs._X", "http://dbpedia.org/resource/Sex_Court", "http://dbpedia.org/resource/Sexcetera", "http://dbpedia.org/resource/Shaggy_&_Scooby-Doo_Get_a_Clue!", "http://dbpedia.org/resource/Shannon_(1981_TV_series)", "http://dbpedia.org/resource/Shatner's_Raw_Nerve", "http://dbpedia.org/resource/ShoXC", "http://dbpedia.org/resource/Show_Me_the_Money_(American_game_show)", "http://dbpedia.org/resource/Show_Us_Your_Wits", "http://dbpedia.org/resource/Side_Order_of_Life", "http://dbpedia.org/resource/Silver_Surfer_(TV_series)", "http://dbpedia.org/resource/Space_(miniseries)", "http://dbpedia.org/resource/Space_Cats", "http://dbpedia.org/resource/Space_Patrol_(1950_TV_series)", "http://dbpedia.org/resource/Space_Sentinels", "http://dbpedia.org/resource/Space_Strikers", "http://dbpedia.org/resource/Special_Agent_Oso", "http://dbpedia.org/resource/SpeedWeek", "http://dbpedia.org/resource/Spider-Man_(1981_TV_series)", "http://dbpedia.org/resource/Spiral_Zone", "http://dbpedia.org/resource/Spirit_Riding_Free", "http://dbpedia.org/resource/SportsCentury", "http://dbpedia.org/resource/Sports_Show_with_Norm_Macdonald", "http://dbpedia.org/resource/Spring_Baking_Championship", "http://dbpedia.org/resource/Spring_Break_Challenge", "http://dbpedia.org/resource/Stalked:_Someone's_Watching", "http://dbpedia.org/resource/Stankervision", "http://dbpedia.org/resource/Star_Trek:_Odyssey", "http://dbpedia.org/resource/Star_Trek:_Titan", "http://dbpedia.org/resource/Starcom:_The_U.S._Space_Force", "http://dbpedia.org/resource/Stargate_Universe", "http://dbpedia.org/resource/Starship_Regulars", "http://dbpedia.org/resource/Stay_Woke:_The_Black_Lives_Matter_Movement", "http://dbpedia.org/resource/Jane_Addams_Children's_Book_Award", "http://dbpedia.org/resource/The_Screen_Guild_Theater", "http://dbpedia.org/resource/Theme_Time_Radio_Hour", "http://dbpedia.org/resource/Thieves'_World", "http://dbpedia.org/resource/The_Twelve_Houses_series", "http://dbpedia.org/resource/Kerlan_Award", "http://dbpedia.org/resource/The_Ace_&_TJ_Show", "http://dbpedia.org/resource/The_Orson_Welles_Almanac", "http://dbpedia.org/resource/Pulse_of_the_Planet", "http://dbpedia.org/resource/Really,_Raquel", "http://dbpedia.org/resource/Big_Apple_(TV_series)", "http://dbpedia.org/resource/Big_Freedia:_Queen_of_Bounce", "http://dbpedia.org/resource/Bikini_Barbershop", "http://dbpedia.org/resource/Billionaire_Boys_Club_(1987_film)", "http://dbpedia.org/resource/Bison_Radio_Network", "http://dbpedia.org/resource/Bit_Museum", "http://dbpedia.org/resource/Blackberry_Hill", "http://dbpedia.org/resource/Blowin'_Up", "http://dbpedia.org/resource/Bobby_Flay's_Barbecue_Addiction", "http://dbpedia.org/resource/Bobby_Jones_Gospel", "http://dbpedia.org/resource/Bobcat_Goldthwait's_Misfits_&_Monsters", "http://dbpedia.org/resource/Bodies_of_Evidence_(TV_series)", "http://dbpedia.org/resource/Hurricane_Saturday", "http://dbpedia.org/resource/I'm_Asian_American_and...", "http://dbpedia.org/resource/I've_Been_Waiting_for_You_(film)", "http://dbpedia.org/resource/I-Caught", "http://dbpedia.org/resource/I_Didn't_Know_I_Was_Pregnant", "http://dbpedia.org/resource/I_Hart_Food", "http://dbpedia.org/resource/Ice_Bound:_A_Woman's_Survival_at_the_South_Pole", "http://dbpedia.org/resource/If_You_Believe_(film)", "http://dbpedia.org/resource/Impastor", "http://dbpedia.org/resource/Imus_in_the_Morning", "http://dbpedia.org/resource/In_Harm's_Way_(TV_series)", "http://dbpedia.org/resource/In_My_Dreams_(film)", "http://dbpedia.org/resource/In_Search_of_History", "http://dbpedia.org/resource/In_Their_Boots", "http://dbpedia.org/resource/In_Touch_with_Dr._Charles_Stanley", "http://dbpedia.org/resource/In_the_Line_of_Duty:_Ambush_in_Waco", "http://dbpedia.org/resource/In_the_Presence_of_Mine_Enemies_(film)", "http://dbpedia.org/resource/In_the_Spider's_Web", "http://dbpedia.org/resource/Kindred_Spirits_(TV_series)", "http://dbpedia.org/resource/Kiosko", "http://dbpedia.org/resource/Kitchen_Sink_(TV_series)", "http://dbpedia.org/resource/Knight_Rider_(2008_film)", "http://dbpedia.org/resource/Knight_Squad", "http://dbpedia.org/resource/Little_House_on_the_Prairie_(miniseries)", "http://dbpedia.org/resource/Little_Voice_(TV_series)", "http://dbpedia.org/resource/Mexico:_One_Plate_at_a_Time", "http://dbpedia.org/resource/Mickey_Mouse_Clubhouse", "http://dbpedia.org/resource/Midnight_Blue_(TV_series)", "http://dbpedia.org/resource/Mighty_Med", "http://dbpedia.org/resource/Miracle_Child_(film)", "http://dbpedia.org/resource/Miracle_Workers_(2006_TV_series)", "http://dbpedia.org/resource/PINAGMULAN:_The_Journey_Home", "http://dbpedia.org/resource/Rookies_(American_TV_series)", "http://dbpedia.org/resource/Room_for_Two_(American_TV_series)", "http://dbpedia.org/resource/Rox_(American_TV_series)", "http://dbpedia.org/resource/Rubik,_the_Amazing_Cube", "http://dbpedia.org/resource/Daytime_Emmy_Award_for_Outstanding_Children's_Animated_Program", "http://dbpedia.org/resource/Daytime_Emmy_Award_for_Outstanding_Drama_Series_Directing_Team", "http://dbpedia.org/resource/Daytime_Emmy_Award_for_Outstanding_Drama_Series_Writing_Team", "http://dbpedia.org/resource/Daytime_Emmy_Award_for_Outstanding_Lead_Actor_in_a_Drama_Series", "http://dbpedia.org/resource/Daytime_Emmy_Award_for_Outstanding_Lead_Actress_in_a_Drama_Series", "http://dbpedia.org/resource/Daytime_Emmy_Award_for_Outstanding_Supporting_Actor_in_a_Drama_Series", "http://dbpedia.org/resource/Daytime_Emmy_Award_for_Outstanding_Supporting_Actress_in_a_Drama_Series", "http://dbpedia.org/resource/Daytime_Emmy_Award_for_Outstanding_Younger_Actor_in_a_Drama_Series", "http://dbpedia.org/resource/East_Meets_West_(TV_series)", "http://dbpedia.org/resource/Final_Curtain_(film)", "http://dbpedia.org/resource/From_Scratch_(radio)", "http://dbpedia.org/resource/Fulkerson_Prize", "http://dbpedia.org/resource/Garbage_Pail_Kids", "http://dbpedia.org/resource/George_Carlin:_Again!", "http://dbpedia.org/resource/Go_Go_Gophers", "http://dbpedia.org/resource/Golden_Globe_Cecil_B._DeMille_Award", "http://dbpedia.org/resource/Saga_of_the_Light_Isles", "http://dbpedia.org/resource/Orson_Welles_and_People", "http://dbpedia.org/resource/Penny_Stamps_Distinguished_Speaker_Series", "http://dbpedia.org/resource/Mountain_Stage", "http://dbpedia.org/resource/BodyLove", "http://dbpedia.org/resource/Book_of_World_Records_Series", "http://dbpedia.org/resource/Yogi_Bear_and_the_Magical_Flight_of_the_Spruce_Goose", "http://dbpedia.org/resource/Yogi_and_the_Invasion_of_the_Space_Bears", "http://dbpedia.org/resource/Your_OWN_Show:_Oprah's_Search_for_the_Next_TV_Star", "http://dbpedia.org/resource/Zombie_College", "http://dbpedia.org/resource/\u00a1Mucha_Lucha!", "http://dbpedia.org/resource/\u00bfQu\u00e9_Pasa,_USA%3F", "http://dbpedia.org/resource/\u00c1ngel_Rebelde", "http://dbpedia.org/resource/Nancy_Drew_on_Campus", "http://dbpedia.org/resource/Playboy_TV_Double_Features", "http://dbpedia.org/resource/The_Curse_(TV_series)", "http://dbpedia.org/resource/Mirror_Awards", "http://dbpedia.org/resource/Leven_Thumps", "http://dbpedia.org/resource/NAACP_Theatre_Awards", "http://dbpedia.org/resource/The_Three_Stooges_Collection", "http://dbpedia.org/resource/The_Fireman's_Ball_(1974_film)"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/distributor> <http://dbpedia.org/resource/Cinema_International_Corporation> . ?uri <http://dbpedia.org/ontology/editing> <http://dbpedia.org/resource/Hulian_Doyle> . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Rouen_Business_School> <http://dbpedia.org/ontology/province> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/recordedIn> <http://dbpedia.org/resource/Miami> . ?uri <http://dbpedia.org/property/writer> ?x . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Bangkok> . ?x <http://dbpedia.org/property/religion> ?uri }"}, "answers": ["4"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/associatedMusicalArtist> <http://dbpedia.org/resource/Tony_Allen_(musician)> . ?uri <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Victor_Entertainment> . }"}, "answers": ["http://dbpedia.org/resource/Fela_Kuti"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/computingPlatform> <http://dbpedia.org/resource/Microsoft_Windows> . ?uri <http://dbpedia.org/property/programmingLanguage> <http://dbpedia.org/resource/OS> . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Martin_Molony> <http://dbpedia.org/ontology/trainer> ?uri . <http://dbpedia.org/resource/Coneygree> <http://dbpedia.org/property/race> ?uri} "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/arena> <http://dbpedia.org/resource/The_Palace_of_Auburn_Hills> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SportsTeam>}"}, "answers": ["http://dbpedia.org/resource/Detroit_Shock", "http://dbpedia.org/resource/Detroit_Vipers"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/company> <http://dbpedia.org/resource/Playtone> and written <http://dbpedia.org/resource/Graham_Yost> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Darth_Vader> <http://dbpedia.org/property/family> ?uri . <http://dbpedia.org/resource/Padm\u00e9_Amidala> <http://dbpedia.org/ontology/series> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/services> <http://dbpedia.org/resource/Microsoft_Azure> . ?x <http://dbpedia.org/property/services> ?uri }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/firstTeam> <http://dbpedia.org/resource/Scuderia_Ferrari> . ?x <http://dbpedia.org/ontology/firstDriver> ?uri . }"}, "answers": ["320"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Swedish_Academy> <http://dbpedia.org/property/presenter> ?x . ?x <http://dbpedia.org/ontology/award> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/producer> <http://dbpedia.org/resource/Michael_Deeley> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": ["10"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Liang_Chow> <http://dbpedia.org/property/name> ?uri } "}, "answers": ["Liang Chow"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Zurich_Affoltern_am_Albis> <http://dbpedia.org/property/line> ?x . ?x <http://dbpedia.org/ontology/country> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Julian_Leow_Beng_Kim> <http://dbpedia.org/property/almaMater> ?uri . }"}, "answers": ["7"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/almaMater> <http://dbpedia.org/resource/Burbank_High_School> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Vesak> <http://dbpedia.org/ontology/type> ?uri } "}, "answers": ["http://dbpedia.org/resource/Buddhism"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Anna_Bergman> <http://dbpedia.org/ontology/parent> ?x . ?x <http://dbpedia.org/property/awards> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Goethe_Prize", "http://dbpedia.org/resource/BAFTA_Fellowship", "http://dbpedia.org/resource/Praemium_Imperiale", "http://dbpedia.org/resource/Academy_Award", ""]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/foundationPlace> <http://dbpedia.org/resource/New_York> . ?uri <http://dbpedia.org/property/board> ?x . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/deathPlace> <http://dbpedia.org/resource/California> . ?uri <http://dbpedia.org/property/musical> ?x . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/operatingSystem> <http://dbpedia.org/resource/C++> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Software>}"}, "answers": ["http://dbpedia.org/resource/CodeSynthesis_XSD"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/language> <http://dbpedia.org/resource/French_language> . ?x <http://dbpedia.org/property/currency> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Algerian_dinar", "http://dbpedia.org/resource/West_African_CFA_franc", "Euro", "", "CFP franc", "http://dbpedia.org/resource/CFP_franc", "*French franc\n*Algerian franc", "http://dbpedia.org/resource/Central_African_CFA_franc", "-", "Sahrawi peseta", "Moroccan dirham , Algerian dinar, Mauritanian ouguiya", "Franc", "Krone", "Kr\u00f3na", "http://dbpedia.org/resource/Mauritanian_ouguiya", "http://dbpedia.org/resource/Mauritian_rupee", "http://dbpedia.org/resource/Dalasi", "http://dbpedia.org/resource/Burundian_franc", "http://dbpedia.org/resource/Surinamese_dollar", "http://dbpedia.org/resource/Lao_kip", "\u0111\u1ed3nga", "http://dbpedia.org/resource/Guinean_franc", "http://dbpedia.org/resource/Guyanese_dollar", "Cape Verdean escudo", "Gambian dalasi", "Ghanaian cedi", "Guinean franc", "Liberian dollar", "Nigerian naira", "Sierra Leonean leone", "West African CFA franc", "http://dbpedia.org/resource/Euro", "http://dbpedia.org/resource/United_States_dollar", "http://dbpedia.org/resource/East_Caribbean_dollar", "http://dbpedia.org/resource/CFP_Franc", "OMRs]], 3 OCTs", "and 9 special cases)", "http://dbpedia.org/resource/French_Indochinese_piastre", "http://dbpedia.org/resource/South_Vietnamese_\u0111\u1ed3ng", "http://dbpedia.org/resource/Danish_krone", "http://dbpedia.org/resource/Polish_z\u0142oty", "http://dbpedia.org/resource/Pound_sterling", "http://dbpedia.org/resource/US_dollar", "http://dbpedia.org/resource/Bulgarian_lev", "http://dbpedia.org/resource/Swedish_krona", "http://dbpedia.org/resource/Swiss_franc", "http://dbpedia.org/resource/Croatian_kuna", "http://dbpedia.org/resource/Czech_koruna", "http://dbpedia.org/resource/Hungarian_forint", "http://dbpedia.org/resource/Romanian_leu", "Euro and", "http://dbpedia.org/resource/French_Equatorial_African_franc"]}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/party> <http://dbpedia.org/resource/Janata_Party> . ?x <http://dbpedia.org/ontology/otherParty> ?uri }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/First_Legislative_Assembly_of_Uttar_Pradesh> <http://dbpedia.org/ontology/president> ?x . ?x <http://dbpedia.org/property/party> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/keyPeople> <http://dbpedia.org/resource/Jimmy_Wales> . ?x <http://dbpedia.org/ontology/owner> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Army_Group_Oberrhein_(Germany)> <http://dbpedia.org/property/notableCommander> ?uri } "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Qaqun> <http://dbpedia.org/ontology/place> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/World_of_Tomorrow_(film)> <http://dbpedia.org/ontology/editing> ?x . ?x <http://dbpedia.org/property/awards> ?uri . }"}, "answers": ["*2001 Academy Award nominee for Best Animated Short Film \n* 1999 Short Film Palme d'Or nominee: Cannes Film Festival\n* 2007 Grand Jury Prize for Short Film: Sundance Film Festival\n* 2015 Grand Jury Prize for Short Film: Sundance Film Festival\n* 2015 Academy Award nominee for Best Animated Short Film \n* Winner of over 250 other film festival awards"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/locatedInArea> <http://dbpedia.org/resource/Inyo_National_Forest> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Mountain>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/spouse> <http://dbpedia.org/resource/Fr\u00e9d\u00e9ric_Joliot-Curie> . ?x <http://dbpedia.org/property/children> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Pierre_Joliot", "http://dbpedia.org/resource/H\u00e9l\u00e8ne_Langevin-Joliot", ""]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/First_National_Bank_and_Trust_Building_(Lima,_Ohio)> <http://dbpedia.org/property/architecturalStyle> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/California> . ?x <http://dbpedia.org/property/awards> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/primeMinister> <http://dbpedia.org/resource/Gough_Whitlam> . ?x <http://dbpedia.org/property/position> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kim_Sawchuk> <http://dbpedia.org/ontology/locationCity> ?uri . <http://dbpedia.org/resource/Vuelta_Mexico_Telmex> <http://dbpedia.org/property/locationCountry> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Stockholm> . }"}, "answers": ["111"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Salthill> <http://dbpedia.org/property/locationCity> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Baco_noir> <http://dbpedia.org/ontology/wineRegion> ?uri . }"}, "answers": ["8"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jerusalem_Institute_of_Justice> <http://dbpedia.org/property/services> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/tenant> <http://dbpedia.org/resource/Boston_Red_Sox> . ?x <http://dbpedia.org/property/stadium> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Battle_of_Fort_Stephenson> <http://dbpedia.org/ontology/commander> ?uri } "}, "answers": ["http://dbpedia.org/resource/George_Croghan_(soldier)", "http://dbpedia.org/resource/Henry_Procter_(British_Army_officer)", "http://dbpedia.org/resource/Robert_Dickson_(fur_trader)"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Prodigal_Son_(play)> <http://dbpedia.org/property/subject> ?uri } "}, "answers": ["http://dbpedia.org/resource/Jesus"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/publisher> <http://dbpedia.org/resource/ARM_architecture> . ?x <http://dbpedia.org/property/computingPlatform> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/voice> <http://dbpedia.org/resource/Clamp_(manga_artists)> . ?x <http://dbpedia.org/property/voice> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/training> <http://dbpedia.org/resource/University_of_Oxford> . ?x <http://dbpedia.org/ontology/training> ?uri . }"}, "answers": ["16"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Montecito_Inn> <http://dbpedia.org/ontology/developer> ?uri } "}, "answers": ["http://dbpedia.org/resource/Charlie_Chaplin"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/recordLabel> <http://dbpedia.org/resource/Point_Blank_Records> . ?uri <http://dbpedia.org/property/starring> ?x . }"}, "answers": ["http://dbpedia.org/resource/The_Blues_(film_series)", "http://dbpedia.org/resource/Muscle_Shoals_(film)"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/occupation> <http://dbpedia.org/resource/Craig_Van_Tilbury> . ?uri <http://dbpedia.org/property/residence> <http://dbpedia.org/resource/Karen_Grigorian> . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/artist> <http://dbpedia.org/resource/Christopher_Franke> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": ["http://dbpedia.org/resource/Babylon_5"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bobby_Beasley> <http://dbpedia.org/ontology/race> ?uri } "}, "answers": ["http://dbpedia.org/resource/Cheltenham_Gold_Cup", "http://dbpedia.org/resource/Galway_Plate", "http://dbpedia.org/resource/Grand_National", "http://dbpedia.org/resource/National_Hunt_racing"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/North_Sea> <http://dbpedia.org/property/inflow> ?uri } "}, "answers": ["http://dbpedia.org/resource/Waal_(river)", "http://dbpedia.org/resource/Weser", "http://dbpedia.org/resource/Ems_(river)", "http://dbpedia.org/resource/Rhine", "http://dbpedia.org/resource/Scheldt", "http://dbpedia.org/resource/Baltic_Sea", "http://dbpedia.org/resource/River_Dee,_Aberdeenshire", "http://dbpedia.org/resource/River_Don,_Aberdeenshire", "http://dbpedia.org/resource/River_Forth", "http://dbpedia.org/resource/River_Spey", "http://dbpedia.org/resource/River_Tay", "http://dbpedia.org/resource/River_Tees", "http://dbpedia.org/resource/River_Thames", "http://dbpedia.org/resource/River_Tyne", "http://dbpedia.org/resource/River_Wear", "http://dbpedia.org/resource/Elbe", "http://dbpedia.org/resource/Humber", "http://dbpedia.org/resource/Meuse"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/type> <http://dbpedia.org/resource/Nazi_Germany> . ?x <http://dbpedia.org/ontology/head> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Wilfred_McDonald> <http://dbpedia.org/property/playedFor> ?uri } "}, "answers": ["http://dbpedia.org/resource/Detroit_Red_Wings", "http://dbpedia.org/resource/Toronto_Maple_Leafs", "http://dbpedia.org/resource/New_York_Rangers"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/league> <http://dbpedia.org/resource/2013\u201314_La_Liga> . ?uri <http://dbpedia.org/property/youthclubs> ?x . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/inflow> <http://dbpedia.org/resource/Atlantic_Ocean> . ?x <http://dbpedia.org/property/cities> ?uri . }"}, "answers": ["95"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/cinematography> <http://dbpedia.org/resource/John_Derek> . ?x <http://dbpedia.org/ontology/starring> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cam_Plante> <http://dbpedia.org/property/playedFor> ?uri } "}, "answers": ["http://dbpedia.org/resource/Toronto_Maple_Leafs"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/deathCause> <http://dbpedia.org/resource/Lung_cancer> . ?x <http://dbpedia.org/property/awards> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ashot_Barseghyan> <http://dbpedia.org/ontology/parent> ?x . ?x <http://dbpedia.org/property/occupation> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/K._Terry_Dornbush> <http://dbpedia.org/ontology/almaMater> ?uri } "}, "answers": ["http://dbpedia.org/resource/Vanderbilt_University"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/predecessor> <http://dbpedia.org/resource/Brian_Peddle> . ?x <http://dbpedia.org/ontology/birthPlace> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/knownFor> <http://dbpedia.org/resource/Dragons'_Den_(UK_TV_series)> . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/writer> <http://dbpedia.org/resource/Jump_Square> . ?x <http://dbpedia.org/property/writer> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/European_Go_Federation> <http://dbpedia.org/property/membership> ?uri } "}, "answers": ["http://dbpedia.org/resource/Denmark", "http://dbpedia.org/resource/Austria", "http://dbpedia.org/resource/Belarus", "http://dbpedia.org/resource/Belgium", "http://dbpedia.org/resource/France", "http://dbpedia.org/resource/Georgia_(country)", "http://dbpedia.org/resource/Armenia", "http://dbpedia.org/resource/Germany", "http://dbpedia.org/resource/Poland", "http://dbpedia.org/resource/Portugal", "http://dbpedia.org/resource/Ukraine", "http://dbpedia.org/resource/United_Kingdom", "http://dbpedia.org/resource/Kazakhstan", "http://dbpedia.org/resource/Bosnia", "http://dbpedia.org/resource/Norway", "http://dbpedia.org/resource/Serbia", "http://dbpedia.org/resource/Ireland", "http://dbpedia.org/resource/Israel", "http://dbpedia.org/resource/Italy", "http://dbpedia.org/resource/Turkey", "http://dbpedia.org/resource/Bulgaria", "http://dbpedia.org/resource/Sweden", "http://dbpedia.org/resource/Switzerland", "http://dbpedia.org/resource/Slovakia", "http://dbpedia.org/resource/Slovenia", "http://dbpedia.org/resource/Croatia", "http://dbpedia.org/resource/Cyprus", "http://dbpedia.org/resource/Czech_Republic", "http://dbpedia.org/resource/Finland", "http://dbpedia.org/resource/Netherlands", "http://dbpedia.org/resource/Luxembourg", "http://dbpedia.org/resource/Spain", "http://dbpedia.org/resource/Hungary", "http://dbpedia.org/resource/Iceland", "http://dbpedia.org/resource/Lithuania", "http://dbpedia.org/resource/Romania", "http://dbpedia.org/resource/Russia"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/team> <http://dbpedia.org/resource/National_Basketball_Association> . ?x <http://dbpedia.org/ontology/team> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/operator> <http://dbpedia.org/resource/Norfolk_Southern_Railway> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/RailwayLine>}"}, "answers": ["http://dbpedia.org/resource/Pittsburgh_Line", "http://dbpedia.org/resource/Reading_Line", "http://dbpedia.org/resource/Buffalo_Line", "http://dbpedia.org/resource/Cincinnati_District", "http://dbpedia.org/resource/Sunbury_Line", "http://dbpedia.org/resource/SouthWest_Service", "http://dbpedia.org/resource/Lurgan_Branch"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/assembly> <http://dbpedia.org/resource/Toluca> . ?x <http://dbpedia.org/ontology/related> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/product> <http://dbpedia.org/resource/Wealth_management> . ?x <http://dbpedia.org/property/product> ?uri }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/producer> <http://dbpedia.org/resource/Julie_Gardner> . ?uri <http://dbpedia.org/property/related> ?x . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/cinematography> <http://dbpedia.org/resource/Jordan_Cronenweth> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": ["21"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/creator> <http://dbpedia.org/resource/Brian_Graden> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/birthPlace> <http://dbpedia.org/resource/England> . ?x <http://dbpedia.org/ontology/religion> ?uri . }"}, "answers": ["164"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/characters> <http://dbpedia.org/resource/Stella_Kowalski> . ?x <http://dbpedia.org/property/writer> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kim_Sawchuk> <http://dbpedia.org/ontology/region> ?uri } "}, "answers": ["http://dbpedia.org/resource/North_America", "http://dbpedia.org/resource/Canada"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/architect> <http://dbpedia.org/resource/Krasnye_Vorota_(Moscow_Metro)> . ?x <http://dbpedia.org/property/keyBuilding> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Robert_Newton_Hall> <http://dbpedia.org/ontology/institution> ?uri . <http://dbpedia.org/resource/Erica_Frank> <http://dbpedia.org/property/commonInstitutions> ?uri} "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/recordLabel> <http://dbpedia.org/resource/Pablo_Records> . ?uri <http://dbpedia.org/property/spouse> ?x . }"}, "answers": ["http://dbpedia.org/resource/Pearl_Bailey"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/BMW_M43> <http://dbpedia.org/property/engine> ?x . ?x <http://dbpedia.org/ontology/predecessor> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/locationCity> <http://dbpedia.org/resource/New_Taipei_City> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Device>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Wan_Air> <http://dbpedia.org/property/hubs> ?uri } "}, "answers": ["http://dbpedia.org/resource/France", "http://dbpedia.org/resource/Tahiti", "http://dbpedia.org/resource/Fa'a'\u0101_International_Airport"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/headquarters> <http://dbpedia.org/resource/Amstelveen> . ?x <http://dbpedia.org/property/members> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/currentclub> <http://dbpedia.org/resource/Middlesbrough_F.C.> . ?uri <http://dbpedia.org/property/manager> ?x . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/owner> <http://dbpedia.org/resource/Toronto> . ?x <http://dbpedia.org/ontology/tenant> ?uri . }"}, "answers": ["http://dbpedia.org/resource/GTA_Grizzlies", "http://dbpedia.org/resource/Toronto_Lady_Lynx", "http://dbpedia.org/resource/Toronto_Lynx", "http://dbpedia.org/resource/Toronto_Atomic_FC", "http://dbpedia.org/resource/Serbian_White_Eagles_FC", "http://dbpedia.org/resource/FC_Ukraine_United", "http://dbpedia.org/resource/SC_Toronto", "http://dbpedia.org/resource/Etobicoke_Eagles", "http://dbpedia.org/resource/Hamilton_Nationals", "http://dbpedia.org/resource/TMU_Bold", "http://dbpedia.org/resource/Toronto_Arrows", "http://dbpedia.org/resource/Toronto_FC_Academy", "http://dbpedia.org/resource/Toronto_FC_II", "http://dbpedia.org/resource/Toronto_Wolfpack", "http://dbpedia.org/resource/Canada_national_rugby_league_team", "http://dbpedia.org/resource/Internacional_de_Toronto"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/John_O._Moseley> <http://dbpedia.org/property/almaMater> ?uri } "}, "answers": ["http://dbpedia.org/resource/Austin_College", "http://dbpedia.org/resource/University_of_Oklahoma", "http://dbpedia.org/resource/Merton_College,_Oxford", "http://dbpedia.org/resource/Rhodes_College", "http://dbpedia.org/resource/Southeastern_Oklahoma_State_University"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/birthPlace> <http://dbpedia.org/resource/Oslo> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Newspaper>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/artist> <http://dbpedia.org/resource/King_Crimson> . ?x <http://dbpedia.org/property/recordedIn> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/associatedActs> <http://dbpedia.org/resource/Johnny_Cash> . }"}, "answers": ["35"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/neighboringMunicipalities> <http://dbpedia.org/resource/Pregny-Chamb\u00e9sy> . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/operatingSystem> <http://dbpedia.org/resource/Unix> . ?x <http://dbpedia.org/property/developer> ?uri . }"}, "answers": ["302"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dschinghis_Khan_(song)> <http://dbpedia.org/ontology/trackNumber> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/restingPlace> <http://dbpedia.org/resource/Beeleigh_Abbey> . ?x <http://dbpedia.org/ontology/deathPlace> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Chidambaram_Subramaniam> <http://dbpedia.org/property/minister> ?x . ?x <http://dbpedia.org/ontology/party> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/South_Park_Bridge> <http://dbpedia.org/property/maintainedBy> ?x . ?x <http://dbpedia.org/ontology/capital> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/LG_Electronics> <http://dbpedia.org/ontology/operatingSystem> ?uri . <http://dbpedia.org/resource/Dart_(programming_language)> <http://dbpedia.org/property/developer> ?uri} "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/origin> <http://dbpedia.org/resource/England> . ?x <http://dbpedia.org/ontology/origin> ?uri . }"}, "answers": ["18"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/King_County,_Washington> <http://dbpedia.org/ontology/countySeat> ?uri } "}, "answers": ["http://dbpedia.org/resource/Seattle"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/occupation> <http://dbpedia.org/resource/Federal_Bureau_of_Investigation> . }"}, "answers": ["88"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/locationCity> <http://dbpedia.org/resource/California> . ?uri <http://dbpedia.org/property/training> ?x . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/QF_6-pounder_Hotchkiss> <http://dbpedia.org/property/usedInWar> ?x . ?x <http://dbpedia.org/ontology/combatant> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/predecessor> <http://dbpedia.org/resource/Samuel_W._McCall> . ?uri <http://dbpedia.org/property/office> <http://dbpedia.org/resource/Massachusetts_House_of_Representatives> . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/WCSE-LP> <http://dbpedia.org/ontology/sisterStation> ?x . ?x <http://dbpedia.org/property/location> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/starring> <http://dbpedia.org/resource/Michael_Jackson> . ?x <http://dbpedia.org/ontology/producer> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Ray_Jessel", "http://dbpedia.org/resource/L.A._Reid", "http://dbpedia.org/resource/John_Branca", "http://dbpedia.org/resource/Spike_Lee", "http://dbpedia.org/resource/Bryan_Michael_Stoller", "http://dbpedia.org/resource/Anna_Fantastic", "http://dbpedia.org/resource/James_Goldston"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/chairman> <http://dbpedia.org/resource/Joan_Laporta> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SoccerClub>}"}, "answers": ["http://dbpedia.org/resource/2003\u201304_FC_Barcelona_season", "http://dbpedia.org/resource/2004\u201305_FC_Barcelona_season", "http://dbpedia.org/resource/2005\u201306_FC_Barcelona_season", "http://dbpedia.org/resource/2006\u201307_FC_Barcelona_season", "http://dbpedia.org/resource/2007\u201308_FC_Barcelona_season", "http://dbpedia.org/resource/FC_Barcelona_(beach_soccer)", "http://dbpedia.org/resource/FC_Barcelona_(women)_B", "http://dbpedia.org/resource/2008\u201309_FC_Barcelona_season", "http://dbpedia.org/resource/2009\u201310_FC_Barcelona_season", "http://dbpedia.org/resource/FC_Barcelona", "http://dbpedia.org/resource/FC_Barcelona_(youth)", "http://dbpedia.org/resource/FC_Barcelona_Atl\u00e8tic", "http://dbpedia.org/resource/FC_Barcelona_Femen\u00ed", "http://dbpedia.org/resource/FC_Barcelona_Futsal", "http://dbpedia.org/resource/FC_Barcelona_Handbol"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/almaMater> <http://dbpedia.org/resource/Harvard-Westlake_School> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/movement> <http://dbpedia.org/resource/Feminism> . ?x <http://dbpedia.org/property/nationality> ?uri . }"}, "answers": ["33"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/branch> <http://dbpedia.org/resource/Nazi_6th_Army> . ?x <http://dbpedia.org/ontology/relative> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/partner> <http://dbpedia.org/resource/Brynn_Carman> . ?x <http://dbpedia.org/ontology/formerPartner> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/governmentType> <http://dbpedia.org/resource/Unitary> . ?x <http://dbpedia.org/ontology/state> ?uri }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Entertainment_One_Music> . ?uri <http://dbpedia.org/ontology/bandMember> ?x . }"}, "answers": ["29"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/almaMater> <http://dbpedia.org/resource/Somerville_College> . ?x <http://dbpedia.org/property/party> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/music> <http://dbpedia.org/resource/James_Horner> . ?x <http://dbpedia.org/ontology/producer> ?uri . }"}, "answers": ["171"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/David_Isaacs_(writer)> <http://dbpedia.org/ontology/notableWork> ?uri } "}, "answers": ["http://dbpedia.org/resource/Frasier", "http://dbpedia.org/resource/Cheers", "http://dbpedia.org/resource/M*A*S*H_(TV_series)", "http://dbpedia.org/resource/Mad_Men"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Egypt_Nanotechnology_Center> <http://dbpedia.org/property/province> ?uri } "}, "answers": ["http://dbpedia.org/resource/Giza"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/manager> <http://dbpedia.org/resource/John_Spencer> . ?x <http://dbpedia.org/ontology/homeStadium> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/restingPlace> <http://dbpedia.org/resource/Winchester_Cathedral> . }"}, "answers": ["3"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Stephen_Ambrose_Traversari> <http://dbpedia.org/property/producer> ?uri . <http://dbpedia.org/resource/Erik_Bork> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/formerTeam> <http://dbpedia.org/resource/Boston_Bruins> . ?x <http://dbpedia.org/property/playedFor> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Boston_Bruins", "http://dbpedia.org/resource/Montreal_Maroons", "http://dbpedia.org/resource/New_York_Americans", "http://dbpedia.org/resource/Philadelphia_Quakers_(NHL)", "http://dbpedia.org/resource/Ottawa_Senators_(original)", "http://dbpedia.org/resource/Chicago_Black_Hawks", "http://dbpedia.org/resource/Toronto_Maple_Leafs", "http://dbpedia.org/resource/New_York_Rangers", "http://dbpedia.org/resource/Philadelphia_Flyers", "http://dbpedia.org/resource/New_Jersey_Devils", "http://dbpedia.org/resource/V\u00e5lerenga_Ishockey", "http://dbpedia.org/resource/Detroit_Red_Wings", "http://dbpedia.org/resource/Djurg\u00e5rdens_IF_Hockey", "http://dbpedia.org/resource/Colorado_Avalanche", "http://dbpedia.org/resource/New_York_Islanders", "http://dbpedia.org/resource/Stavanger_Oilers", "http://dbpedia.org/resource/F\u00e4rjestads_BK", "http://dbpedia.org/resource/Frisk_Tigers", "http://dbpedia.org/resource/Stjernen", "http://dbpedia.org/resource/AIK_Hockey", "Elitserien", "NHL", "http://dbpedia.org/resource/Malm\u00f6_Redhawks", "http://dbpedia.org/resource/Thomas_Sabo_Ice_Tigers", "http://dbpedia.org/resource/Avangard_Omsk", "http://dbpedia.org/resource/Montreal_Canadiens", "http://dbpedia.org/resource/Torpedo_Nizhny_Novgorod", "http://dbpedia.org/resource/Carolina_Hurricanes", "http://dbpedia.org/resource/HC_CSKA_Moscow", "http://dbpedia.org/resource/HC_Lada_Togliatti", "http://dbpedia.org/resource/Quebec_Nordiques", "http://dbpedia.org/resource/Edmonton_Oilers", "http://dbpedia.org/resource/Lokomotiv_Yaroslavl", "http://dbpedia.org/resource/Severstal_Cherepovets", "http://dbpedia.org/resource/Anaheim_Ducks", "http://dbpedia.org/resource/San_Jose_Sharks", "http://dbpedia.org/resource/Tampa_Bay_Lightning", "http://dbpedia.org/resource/Metallurg_Novokuznetsk", "http://dbpedia.org/resource/Phoenix_Coyotes", "http://dbpedia.org/resource/Calgary_Flames", "http://dbpedia.org/resource/HC_Dynamo_Moscow", "http://dbpedia.org/resource/Minnesota_Wild", "http://dbpedia.org/resource/Pittsburgh_Penguins", "http://dbpedia.org/resource/HC_\u010cesk\u00e9_Bud\u011bjovice", "http://dbpedia.org/resource/Dallas_Stars", "http://dbpedia.org/resource/Vancouver_Canucks", "http://dbpedia.org/resource/Hockey_Milano_Rossoblu", "http://dbpedia.org/resource/IF_Bj\u00f6rkl\u00f6ven", "http://dbpedia.org/resource/Minnesota_North_Stars", "http://dbpedia.org/resource/Ottawa_Senators", "http://dbpedia.org/resource/Buffalo_Sabres", "http://dbpedia.org/resource/Winnipeg_Jets_(1972\u20131996)", "http://dbpedia.org/resource/Chicago_Blackhawks", "http://dbpedia.org/resource/EV_Zug", "http://dbpedia.org/resource/St._Louis_Blues", "http://dbpedia.org/resource/EHC_M\u00fcnchen", "http://dbpedia.org/resource/HC_Davos", "http://dbpedia.org/resource/HC_Lugano", "http://dbpedia.org/resource/L\u00f8renskog_IK", "http://dbpedia.org/resource/Barys_Astana", "http://dbpedia.org/resource/Adler_Mannheim", "http://dbpedia.org/resource/Winnipeg_Jets", "http://dbpedia.org/resource/Los_Angeles_Kings", "http://dbpedia.org/resource/Bryn\u00e4s_IF", "http://dbpedia.org/resource/Ilves_Tampere", "Adirondack Red Wings", "London Knights", "Portland Pirates", "Providence Bruins", "Salt Lake Golden Eagles", "Detroit Falcons", "Fort Wayne Komets", "Knoxville Cherokees", "Las Vegas Thunder", "Detroit Vipers", "Qu\u00e9bec Rafales", "San Antonio Dragons", "Phoenix Mustangs", "Port Huron Border Cats", "Knoxville Speed", "Jacksonville Barracudas", "Kansas City Outlaws", "Utica Blizzard", "http://dbpedia.org/resource/Hamburg_Freezers", "http://dbpedia.org/resource/Columbus_Blue_Jackets", "http://dbpedia.org/resource/Florida_Panthers", "http://dbpedia.org/resource/DEG_Metro_Stars", "http://dbpedia.org/resource/Mighty_Ducks_of_Anaheim", "http://dbpedia.org/resource/Quebec_Aces", "http://dbpedia.org/resource/Binghamton_Dusters", "http://dbpedia.org/resource/Kansas_City_Blues_(ice_hockey)", "http://dbpedia.org/resource/Hershey_Bears", "http://dbpedia.org/resource/Rochester_Americans", "http://dbpedia.org/resource/Hartford_Whalers", "http://dbpedia.org/resource/Washington_Capitals", "http://dbpedia.org/resource/Winnipeg_Jets_(1972\u201396)", "http://dbpedia.org/resource/EV_Landshut", "http://dbpedia.org/resource/KalPa", "http://dbpedia.org/resource/Cincinnati_Stingers", "http://dbpedia.org/resource/R\u00f6gle_BK", "http://dbpedia.org/resource/Nashville_Predators", "http://dbpedia.org/resource/BSC_Preussen", "Eishockey-Bundesliga", "Boston Bruins", "Edmonton Oilers", "Minnesota North Stars", "New York Rangers", "Tampa Bay Lightning", "http://dbpedia.org/resource/Rapperswil-Jona_Lakers", "http://dbpedia.org/resource/Kloten_Flyers", "Swiss", "New York Islanders", "http://dbpedia.org/resource/St._Louis_Eagles", "Detroit Red Wings", "http://dbpedia.org/resource/HK_Dukla_Tren\u010d\u00edn", "http://dbpedia.org/resource/HC_Slavia_Praha", "http://dbpedia.org/resource/CHZ_Litvinov", "http://dbpedia.org/resource/Cleveland_Barons_(NHL)", "http://dbpedia.org/resource/Colorado_Rockies_(NHL)", "http://dbpedia.org/resource/California_Golden_Seals", "http://dbpedia.org/resource/VIK_V\u00e4ster\u00e5s_HK", "http://dbpedia.org/resource/Dinamo_Riga_(original)", "http://dbpedia.org/resource/Hannover_Scorpions", "http://dbpedia.org/resource/Tappara", "http://dbpedia.org/resource/Porin_\u00c4ss\u00e4t_(men's_ice_hockey)", "http://dbpedia.org/resource/Lukko", "http://dbpedia.org/resource/SKA_Saint_Petersburg", "http://dbpedia.org/resource/Capital_District_Islanders", "http://dbpedia.org/resource/Providence_Bruins", "http://dbpedia.org/resource/Arizona_Coyotes", "http://dbpedia.org/resource/Philadelphia_Blazers", "http://dbpedia.org/resource/Wembley_Monarchs", "http://dbpedia.org/resource/Wembley_Lions", "http://dbpedia.org/resource/Atlanta_Flames", "http://dbpedia.org/resource/St.Louis_Blues", "http://dbpedia.org/resource/Metallurg_Magnitogorsk", "http://dbpedia.org/resource/Sokil_Kyiv", "http://dbpedia.org/resource/Ak_Bars_Kazan", "http://dbpedia.org/resource/Jokerit", "http://dbpedia.org/resource/Krylya_Sovetov_Moscow", "http://dbpedia.org/resource/HC_Ambri-Piotta", "http://dbpedia.org/resource/HC_Khimik_Voskresensk", "http://dbpedia.org/resource/Klagenfurt_AC", "SKA Kalinin", "http://dbpedia.org/resource/Springfield_Indians", "http://dbpedia.org/resource/Chicago_Wolves", "IHL", "AHL", "http://dbpedia.org/resource/EC_Red_Bull_Salzburg", "http://dbpedia.org/resource/Vancouver_Millionaires", "http://dbpedia.org/resource/Pittsburgh_Pirates_(NHL)", "http://dbpedia.org/resource/Montreal_Wanderers", "http://dbpedia.org/resource/Toronto_Arenas", "http://dbpedia.org/resource/Toronto_Blueshirts", "http://dbpedia.org/resource/Toronto_Shamrocks", "http://dbpedia.org/resource/Duluth_Hornets", "http://dbpedia.org/resource/Kitchener_Flying_Dutchmen", "http://dbpedia.org/resource/Kitchener_Millionaires", "NHA", "PCHA", "AHA", "CPHL", "http://dbpedia.org/resource/Regina_Capitals", "http://dbpedia.org/resource/Edmonton_Eskimos_(ice_hockey)", "http://dbpedia.org/resource/Oakland_Seals", "http://dbpedia.org/resource/Val_Pusteria_Wolves", "http://dbpedia.org/resource/Nippon_Paper_Cranes", "http://dbpedia.org/resource/EC_VSV", "http://dbpedia.org/resource/\u00d6rebro_HK", "http://dbpedia.org/resource/Victoria_Cougars", "http://dbpedia.org/resource/Seattle_Metropolitans", "http://dbpedia.org/resource/Calgary_Tigers", "http://dbpedia.org/resource/Detroit_Falcons_(NHL)", "http://dbpedia.org/resource/Victoria_Aristocrats", "http://dbpedia.org/resource/New_Haven_Eagles", "http://dbpedia.org/resource/Pacific_Coast_Hockey_League", "http://dbpedia.org/resource/Seattle_Seahawks_(ice_hockey)", "http://dbpedia.org/resource/Boston_Cubs", "CAHL", "IAHL", "PCHL", "http://dbpedia.org/resource/Indianapolis_Racers", "http://dbpedia.org/resource/New_England_Whalers", "http://dbpedia.org/resource/New_York_Golden_Blades", "Philadelphia Flyers", "http://dbpedia.org/resource/Toronto_St._Pats", "http://dbpedia.org/resource/Vaasan_Sport", "http://dbpedia.org/resource/HIFK_(ice_hockey)", "http://dbpedia.org/resource/HPK", "http://dbpedia.org/resource/SaiPa", "http://dbpedia.org/resource/Odense_Bulldogs", "http://dbpedia.org/resource/Graz_99ers", "http://dbpedia.org/resource/Maine_Mariners_(ECHL)", "http://dbpedia.org/resource/Ilves", "http://dbpedia.org/resource/Detroit_Falcons_(hockey)", "Pittsburgh Pirates", "Pittsburgh Shamrocks", "Toronto Maple Leafs", "Philadelphia Quakers", "Syracuse Stars", "Detroit Cougars", "http://dbpedia.org/resource/Modo_Hockey", "HIFK", "Los Angeles Kings", "SM-liiga", "Schwenninger Wild Wings", "\u00c4ss\u00e4t", "DEL", "Krefeld Pinguine", "http://dbpedia.org/resource/Tacoma_Rockets", "http://dbpedia.org/resource/Seattle_Bombers", "http://dbpedia.org/resource/Ottawa_Nationals", "http://dbpedia.org/resource/Birmingham_Bulls_(WHA)", "http://dbpedia.org/resource/Toronto_Toros", "WHA", "http://dbpedia.org/resource/Minnesota_Fighting_Saints", "http://dbpedia.org/resource/Calgary_Cowboys", "http://dbpedia.org/resource/Cleveland_Crusaders", "http://dbpedia.org/resource/Montreal_Voyageurs", "http://dbpedia.org/resource/San_Francisco_Seals_(hockey)", "http://dbpedia.org/resource/Springfield_Kings", "WHL", "San Diego Mariners", "http://dbpedia.org/resource/HC_Fribourg-Gott\u00e9ron", "http://dbpedia.org/resource/Winnipeg_61st_Battalion", "http://dbpedia.org/resource/EHC_Black_Wings_Linz", "http://dbpedia.org/resource/SCL_Tigers", "http://dbpedia.org/resource/ERC_Ingolstadt", "http://dbpedia.org/resource/Brooklyn_Americans", "Chicago Black Hawks", "http://dbpedia.org/resource/Atlanta_Thrashers", "http://dbpedia.org/resource/SC_Bern", "http://dbpedia.org/resource/HC_Bolzano", "http://dbpedia.org/resource/SC_Riessersee", "http://dbpedia.org/resource/K\u00f6lner_Haie", "http://dbpedia.org/resource/GKS_Tychy", "http://dbpedia.org/resource/Kiekko-Espoo", "Chicago Blackhawks", "Ottawa Senators", "http://dbpedia.org/resource/Admiral_Vladivostok", "http://dbpedia.org/resource/Lausanne_HC", "http://dbpedia.org/resource/Duna\u00fajv\u00e1rosi_Ac\u00e9lbik\u00e1k", "http://dbpedia.org/resource/Kunlun_Red_Star", "http://dbpedia.org/resource/DVTK_Jegesmedv\u00e9k", "http://dbpedia.org/resource/HC_Neftekhimik_Nizhnekamsk", "http://dbpedia.org/resource/HC_Slovan_Bratislava", "http://dbpedia.org/resource/KHL_Medve\u0161\u010dak_Zagreb", "http://dbpedia.org/resource/Sheffield_Steelers", "http://dbpedia.org/resource/HC_Atlant_Moscow_Oblast", "http://dbpedia.org/resource/K\u00e4rp\u00e4t", "http://dbpedia.org/resource/Houston_Aeros_(WHA)", "http://dbpedia.org/resource/Pittsburgh_Hornets", "http://dbpedia.org/resource/Innsbrucker_EV", "http://dbpedia.org/resource/HC_TWK_Innsbruck", "http://dbpedia.org/resource/EHC_Chur", "http://dbpedia.org/resource/EHC_Lustenau", "http://dbpedia.org/resource/Newcastle_Vipers", "http://dbpedia.org/resource/Vityaz_Chekhov", "http://dbpedia.org/resource/HC_Spartak_Moscow", "http://dbpedia.org/resource/KHL_Medve\u0161\u010dak", "http://dbpedia.org/resource/S\u00f6dert\u00e4lje_SK", "http://dbpedia.org/resource/Mora_IK", "http://dbpedia.org/resource/KooKoo_(Liiga)", "Espoo Blues", "Nashville Predators", "Mighty Ducks of Anaheim", "http://dbpedia.org/resource/Augsburger_Panther", "http://dbpedia.org/resource/Frankfurt_Lions", "http://dbpedia.org/resource/Nottingham_Panthers", "Calgary Flames", "Vancouver Canucks", "http://dbpedia.org/resource/New_Haven_Nighthawks", "http://dbpedia.org/resource/Buffalo_Bisons_(AHL)", "St. Louis Blues", "http://dbpedia.org/resource/AIK_IF", "http://dbpedia.org/resource/Coventry_Blaze", "http://dbpedia.org/resource/Lahti_Pelicans", "http://dbpedia.org/resource/Boxers_de_Bordeaux", "http://dbpedia.org/resource/EC_KAC", "http://dbpedia.org/resource/HC_Donbass", "Colorado Avalanche", "http://dbpedia.org/resource/HC_Salzburg", "http://dbpedia.org/resource/Boston_Olympics", "http://dbpedia.org/resource/Minneapolis_Millers_(AHA)", "http://dbpedia.org/resource/Pittsburgh_Shamrocks", "http://dbpedia.org/resource/Tulsa_Oilers", "http://dbpedia.org/resource/Johnstown_Blue_Birds", "http://dbpedia.org/resource/Cleveland_Falcons", "http://dbpedia.org/resource/St._Paul_Saints_(AHA)", "EHL", "http://dbpedia.org/resource/Hamilton_Tigers", "http://dbpedia.org/resource/Maine_Mariners_(AHL)", "http://dbpedia.org/resource/HC_Milano", "http://dbpedia.org/resource/HC_Alleghe", "Italy", "http://dbpedia.org/resource/Chicago_Cougars", "http://dbpedia.org/resource/Toronto_St._Patricks", "http://dbpedia.org/resource/Vancouver_Blazers", "http://dbpedia.org/resource/HC_Sparta_Praha", "New York Americans", "http://dbpedia.org/resource/Ratingen_Lions", "http://dbpedia.org/resource/HC_Gherd\u00ebina", "http://dbpedia.org/resource/F\u00e4rjestad_BK", "http://dbpedia.org/resource/Link\u00f6ping_HC", "http://dbpedia.org/resource/Gen\u00e8ve-Servette_HC", "http://dbpedia.org/resource/Schwenninger_Wild_Wings", "http://dbpedia.org/resource/HC_Sibir_Novosibirsk", "http://dbpedia.org/resource/Krefeld_Pinguine", "http://dbpedia.org/resource/Vienna_Capitals", "http://dbpedia.org/resource/V\u00e4xj\u00f6_Lakers", "http://dbpedia.org/resource/HC_Vityaz", "http://dbpedia.org/resource/HC_Plze\u0148_1929", "http://dbpedia.org/resource/HK_Nitra", "http://dbpedia.org/resource/HC_Dinamo_Minsk", "KHL", "Tipos extraliga", "http://dbpedia.org/resource/Utah_Grizzlies", "http://dbpedia.org/resource/San_Diego_Gulls_(1990\u20131995)", "http://dbpedia.org/resource/Houston_Aeros_(1994\u20132013)", "http://dbpedia.org/resource/Manitoba_Moose", "http://dbpedia.org/resource/N\u00fcrnberg_Ice_Tigers", "http://dbpedia.org/resource/Traktor_Chelyabinsk", "http://dbpedia.org/resource/HK_Riga_2000", "http://dbpedia.org/resource/Salavat_Yulaev_Ufa", "Ak Bars Kazan", "http://dbpedia.org/resource/Link\u00f6pings_HC", "Pittsburgh Penguins", "http://dbpedia.org/resource/Phoenix_Roadrunners_(WHA)", "http://dbpedia.org/resource/Eisb\u00e4ren_Berlin", "http://dbpedia.org/resource/Belfast_Giants", "http://dbpedia.org/resource/Espoo_Blues", "http://dbpedia.org/resource/HC_Kladno", "http://dbpedia.org/resource/HC_Kometa_Brno", "http://dbpedia.org/resource/HC_\u0160koda_Plze\u0148", "http://dbpedia.org/resource/Saskatoon_Crescents", "http://dbpedia.org/resource/F\u00fcchse_Duisburg", "Hamilton Tigers", "Toronto Dentals", "http://dbpedia.org/resource/California_Seals", "http://dbpedia.org/resource/Atlant_Moscow_Oblast", "http://dbpedia.org/resource/EHC_Biel", "http://dbpedia.org/resource/Scorpions_de_Mulhouse", "Atlanta Thrashers", "Florida Panthers", "San Jose Sharks", "http://dbpedia.org/resource/HC_Asiago", "Serie A", "http://dbpedia.org/resource/Toronto_Granites", "Montreal Maroons", "http://dbpedia.org/resource/Blues_(Espoo)", "http://dbpedia.org/resource/ZSC_Lions", "Colorado Rockies", "Montreal Canadiens", "http://dbpedia.org/resource/Manchester_Storm_(1995\u20132002)", "http://dbpedia.org/resource/VEU_Feldkirch", "http://dbpedia.org/resource/Brandon_Wheat_Kings", "http://dbpedia.org/resource/Adirondack_Red_Wings", "http://dbpedia.org/resource/Moncton_Golden_Flames", "http://dbpedia.org/resource/Kamloops_Junior_Oilers", "http://dbpedia.org/resource/New_Westminster_Bruins", "http://dbpedia.org/resource/HC_Merano", "Cleveland Crusaders", "http://dbpedia.org/resource/Portland_Rosebuds_(ice_hockey)", "Maine Mariners", "Peoria Rivermen", "Fredericton Express", "http://dbpedia.org/resource/HC_TPS", "http://dbpedia.org/resource/Spokane_Canaries", "http://dbpedia.org/resource/Lule\u00e5_HF", "NLA", "EBEL", "http://dbpedia.org/resource/JYP_Jyv\u00e4skyl\u00e4", "http://dbpedia.org/resource/EHC_Basel", "http://dbpedia.org/resource/Bolzano_HC", "http://dbpedia.org/resource/HC_Litv\u00ednov", "http://dbpedia.org/resource/HC_Devils_Milano", "http://dbpedia.org/resource/HC_Meran", "http://dbpedia.org/resource/HC_MVD", "http://dbpedia.org/resource/Yugra_Khanty-Mansiysk", "http://dbpedia.org/resource/Syracuse_Stars_(ice_hockey)", "http://dbpedia.org/resource/Buffalo_Bisons_(IHL)", "http://dbpedia.org/resource/Boston_Bruin_Cubs", "Buffalo Sabres", "http://dbpedia.org/resource/EHC_Wolfsburg", "http://dbpedia.org/resource/HC_Pardubice", "http://dbpedia.org/resource/KLH_Chomutov", "http://dbpedia.org/resource/Frisk_Asker_Ishockey", "WHA/NHL", "http://dbpedia.org/resource/Binghamton_Whalers", "http://dbpedia.org/resource/Detroit_Cougars_(NHL)", "http://dbpedia.org/resource/Cleveland_Barons_(1937\u20131973)", "IAHL/AHL", "http://dbpedia.org/resource/San_Diego_Mariners", "http://dbpedia.org/resource/Windsor_Bulldogs", "OHASr", "http://dbpedia.org/resource/Seibu_Prince_Rabbits", "http://dbpedia.org/resource/Minnesota_Golden_Gophers_men's_ice_hockey", "http://dbpedia.org/resource/Straubing_Tigers", "http://dbpedia.org/resource/Skellefte\u00e5_AIK", "http://dbpedia.org/resource/Tappara_Tampere", "http://dbpedia.org/resource/Leksands_IF", "http://dbpedia.org/resource/Br\u00fbleurs_de_Loups", "http://dbpedia.org/resource/Herning_Blue_Fox", "http://dbpedia.org/resource/KS_Cracovia_(ice_hockey)", "http://dbpedia.org/resource/Orli_Znojmo", "http://dbpedia.org/resource/HC_Vitkovice", "http://dbpedia.org/resource/Sportiva_Hockey_Club_Fassa", "http://dbpedia.org/resource/Saskatoon_Sheiks", "Oakland Sheiks", "http://dbpedia.org/resource/HK_Acroni_Jesenice", "http://dbpedia.org/resource/HDD_Olimpija_Ljubljana", "http://dbpedia.org/resource/Innsbruck_EV", "New England Whalers", "http://dbpedia.org/resource/HC_V\u00edtkovice_Ridera", "http://dbpedia.org/resource/Providence_Reds", "http://dbpedia.org/resource/Indianapolis_Capitals", "http://dbpedia.org/resource/Detroit_Olympics", "http://dbpedia.org/resource/Clinton_Comets", "http://dbpedia.org/resource/Portland_Buckaroos", "http://dbpedia.org/resource/St._Louis_Flyers", "http://dbpedia.org/resource/Cleveland_Barons_(1937-73)", "http://dbpedia.org/resource/Malm\u00f6_IF", "http://dbpedia.org/resource/Renfrew_Hockey_Club", "Newark Bulldogs", "http://dbpedia.org/resource/Hamilton_Tigers_(ice_hockey)", "http://dbpedia.org/resource/Grand_Rapids_Rockets", "http://dbpedia.org/resource/Chatham_Maroons", "http://dbpedia.org/resource/Cleveland_Barons_(1937\u201373)", "http://dbpedia.org/resource/Washington_Lions", "http://dbpedia.org/resource/Winnipeg_Jets_(1972-96)", "http://dbpedia.org/resource/Los_Angeles_Sharks", "http://dbpedia.org/resource/Renfrew_Creamery_Kings", "http://dbpedia.org/resource/Portage_Lakes_Hockey_Club", "http://dbpedia.org/resource/GKS_Tychy_(ice_hockey)", "http://dbpedia.org/resource/Podhale_Nowy_Targ", "http://dbpedia.org/resource/GKS_Katowice_(ice_hockey)", "http://dbpedia.org/resource/EHC_Kloten", "http://dbpedia.org/resource/Oulun_K\u00e4rp\u00e4t", "SEL", "http://dbpedia.org/resource/Cape_Breton_Oilers", "http://dbpedia.org/resource/Erie_Blades", "http://dbpedia.org/resource/Kassel_Huskies", "http://dbpedia.org/resource/ESV_Kaufbeuren", "", "http://dbpedia.org/resource/SC_Rapperswil-Jona", "http://dbpedia.org/resource/Fr\u00f6lunda_HC", "Brooklyn Americans", "http://dbpedia.org/resource/Brantford_Smoke", "http://dbpedia.org/resource/HC_Milano_Saima", "http://dbpedia.org/resource/Ratinger_L\u00f6wen", "http://dbpedia.org/resource/Star_Bulls_Rosenheim", "http://dbpedia.org/resource/TuS_Geretsried", "Anaheim Ducks", "Phoenix Coyotes", "'''Birmingham Bulls", "'''WHA", "http://dbpedia.org/resource/Toronto_Balmy_Beach_Beachers", "http://dbpedia.org/resource/Hannover_Indians", "http://dbpedia.org/resource/HC_Dukla_Tren\u010d\u00edn", "http://dbpedia.org/resource/Dornbirner_EC", "http://dbpedia.org/resource/HC_Ambr\u00ec-Piotta", "http://dbpedia.org/resource/HC_B\u00edl\u00ed_Tyg\u0159i_Liberec", "http://dbpedia.org/resource/HC_Ko\u0161ice", "http://dbpedia.org/resource/Frederikshavn_White_Hawks"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Stockholm> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Newspaper>}"}, "answers": ["http://dbpedia.org/resource/Dagens_Nyheter", "http://dbpedia.org/resource/Dagsposten_(Swedish_newspaper)", "http://dbpedia.org/resource/Stockholms-Tidningen", "http://dbpedia.org/resource/Post-_och_Inrikes_Tidningar", "http://dbpedia.org/resource/Aftonbladet", "http://dbpedia.org/resource/Stockholms_Dagblad", "http://dbpedia.org/resource/Flamman", "http://dbpedia.org/resource/Ny_Illustrerad_Tidning", "http://dbpedia.org/resource/Dagen_(1896-1920)", "http://dbpedia.org/resource/Expressen", "http://dbpedia.org/resource/Nationen_(weekly_newspaper)", "http://dbpedia.org/resource/Metro_(Swedish_newspaper)"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/city> <http://dbpedia.org/resource/Fort_Lauderdale,_Florida> . ?x <http://dbpedia.org/property/ground> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Purnima_Banerjee> <http://dbpedia.org/property/party> ?uri } "}, "answers": ["http://dbpedia.org/resource/Indian_National_Congress"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ganz_UV> <http://dbpedia.org/ontology/operator> ?x . ?x <http://dbpedia.org/property/nationality> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/producer> <http://dbpedia.org/resource/Larry_J._Franco> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": ["4"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Nihoa> <http://dbpedia.org/property/nearestCity> ?uri . <http://dbpedia.org/resource/Jim_Brady_(quarterback)> <http://dbpedia.org/ontology/deathPlace> ?uri} "}, "answers": ["http://dbpedia.org/resource/Hawaii"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/computingPlatform> <http://dbpedia.org/resource/Commodore_64> . ?x <http://dbpedia.org/property/genre> ?uri . }"}, "answers": ["1693"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Steven_Palazzo> <http://dbpedia.org/property/battles> ?uri } "}, "answers": ["http://dbpedia.org/resource/Gulf_War"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/United_States> . ?x <http://dbpedia.org/property/discipline> ?uri . }"}, "answers": ["Public health, Medicine", "African-American literature and African-American culture", "http://dbpedia.org/resource/Archaeology", "http://dbpedia.org/resource/Prehistory", "http://dbpedia.org/resource/Africa", "http://dbpedia.org/resource/Chemistry", "http://dbpedia.org/resource/Law", "Biology", "http://dbpedia.org/resource/Biophysics", "http://dbpedia.org/resource/Biochemistry", "http://dbpedia.org/resource/Botany", "http://dbpedia.org/resource/Library_Science", "http://dbpedia.org/resource/Sociology", "http://dbpedia.org/resource/Education", "http://dbpedia.org/resource/Literary_magazine", "http://dbpedia.org/resource/Literary_journal", "http://dbpedia.org/resource/Engineering", "http://dbpedia.org/resource/Jurisprudence", "http://dbpedia.org/resource/Social_justice", "http://dbpedia.org/resource/Economics", "http://dbpedia.org/resource/Anthropology", "http://dbpedia.org/resource/Geology", "http://dbpedia.org/resource/Oceanography", "http://dbpedia.org/resource/Philosophy", "http://dbpedia.org/resource/Computer_Science", "http://dbpedia.org/resource/New_Testament", "http://dbpedia.org/resource/Water_resources", "http://dbpedia.org/resource/Political_science", "http://dbpedia.org/resource/Mathematics_education", "http://dbpedia.org/resource/Psychoanalysis", "http://dbpedia.org/resource/Cardiology", "http://dbpedia.org/resource/Cardiothoracic_surgery", "http://dbpedia.org/resource/Pulmonary_disease", "http://dbpedia.org/resource/Ophthalmology", "Process of synthesis in organic chemistry", "http://dbpedia.org/resource/Neurology", "http://dbpedia.org/resource/Gender_studies", "Mathematics", "http://dbpedia.org/resource/Semiotics", "http://dbpedia.org/resource/Poetry", "http://dbpedia.org/resource/Photography", "http://dbpedia.org/resource/International_relations", "http://dbpedia.org/resource/Culture", "http://dbpedia.org/resource/Literature", "http://dbpedia.org/resource/Fiction", "http://dbpedia.org/resource/Nonfiction", "http://dbpedia.org/resource/Social_issues", "Educational psychology and school psychology", "http://dbpedia.org/resource/Sociologist", "http://dbpedia.org/resource/Law_review", "http://dbpedia.org/resource/Game_theory", "http://dbpedia.org/resource/Genetics", "http://dbpedia.org/resource/Computer_science", "Demography and Social epidemiology", "http://dbpedia.org/resource/Medicine", "http://dbpedia.org/resource/Biogeography", "http://dbpedia.org/resource/Biography", "http://dbpedia.org/resource/Biomedicine", "Molecular structure of organisms; drug action", "Literary magazine", "http://dbpedia.org/resource/Chirality_(chemistry)", "http://dbpedia.org/resource/Library_and_information_science", "http://dbpedia.org/resource/Molecular_biology", "Feminist speculative fiction", "http://dbpedia.org/resource/History", "http://dbpedia.org/resource/History_of_philosophy", "http://dbpedia.org/resource/Oriental_studies", "http://dbpedia.org/resource/Mycology", "http://dbpedia.org/resource/American_studies", "http://dbpedia.org/resource/Art_history", "http://dbpedia.org/resource/Art", "http://dbpedia.org/resource/Art_criticism", "Literature", "http://dbpedia.org/resource/Meteorology", "Meteorology and Climatology", "http://dbpedia.org/resource/Pulmonology", "http://dbpedia.org/resource/Neuroscience", "http://dbpedia.org/resource/Virology", "http://dbpedia.org/resource/Hematology", "http://dbpedia.org/resource/Oncology", "http://dbpedia.org/resource/Pediatry", "http://dbpedia.org/resource/Pacific_studies", "http://dbpedia.org/resource/International_law", "http://dbpedia.org/resource/Cultural_studies", "http://dbpedia.org/resource/Critical_theory", "http://dbpedia.org/resource/Comparative_law", "http://dbpedia.org/resource/Admiralty_law", "http://dbpedia.org/resource/Civil_law_(legal_system)", "http://dbpedia.org/resource/Labor_Studies", "http://dbpedia.org/resource/Language_acquisition", "http://dbpedia.org/resource/Psychology", "English literature", "http://dbpedia.org/resource/Cognitive_neuroscience", "http://dbpedia.org/resource/Psychophysiology", "http://dbpedia.org/resource/Pathology", "http://dbpedia.org/resource/Epidemiology_of_cancer", "http://dbpedia.org/resource/History_of_Christianity", "http://dbpedia.org/resource/Theology", "http://dbpedia.org/resource/Biblical_studies", "http://dbpedia.org/resource/Endocrinology", "Perception and motor skills", "http://dbpedia.org/resource/Religious_studies", "Philosophy", "Greek archaeology, art, epigraphy, history, and literature", "http://dbpedia.org/resource/Planetary_science", "http://dbpedia.org/resource/Immunology", "http://dbpedia.org/resource/Business", "Motorcycling culture", "http://dbpedia.org/resource/Linguistics", "History", "http://dbpedia.org/resource/Political_Science", "http://dbpedia.org/resource/Labor_movement", "http://dbpedia.org/resource/Industrial_relations", "http://dbpedia.org/resource/Worker_rights", "http://dbpedia.org/resource/Pre-hospital_emergency_medicine", "http://dbpedia.org/resource/Child_psychiatry", "Rheumatology", "http://dbpedia.org/resource/History_of_education", "http://dbpedia.org/resource/Pharmacy_practice", "http://dbpedia.org/resource/Pharmacy", "http://dbpedia.org/resource/Physiology", "http://dbpedia.org/resource/Radiology", "Geology", "Physics", "Physiology", "http://dbpedia.org/resource/Chemical_Engineering", "http://dbpedia.org/resource/Physics", "Music", "http://dbpedia.org/resource/Intellectual_property_law", "http://dbpedia.org/resource/Popular_science", "http://dbpedia.org/resource/Social_psychology", "http://dbpedia.org/resource/Environmental_psychology", "http://dbpedia.org/resource/Social_history", "http://dbpedia.org/resource/Political_history", "http://dbpedia.org/resource/Economic_history", "http://dbpedia.org/resource/Gender_roles", "http://dbpedia.org/resource/Social_sciences", "http://dbpedia.org/resource/Latin_American_studies", "http://dbpedia.org/resource/Evolutionary_biology", "http://dbpedia.org/resource/Phylogeny", "http://dbpedia.org/resource/Information_Systems", "http://dbpedia.org/resource/Entomology", "http://dbpedia.org/resource/Animal_law", "http://dbpedia.org/resource/Communication_theory", "http://dbpedia.org/resource/Computer_network", "http://dbpedia.org/resource/Computers", "Communications", "http://dbpedia.org/resource/Men's_studies", "http://dbpedia.org/resource/Foreign_affairs", "http://dbpedia.org/resource/Organic_chemistry", "http://dbpedia.org/resource/Cyberpsychology", "http://dbpedia.org/resource/Human-computer_interaction", "http://dbpedia.org/resource/Ethnology", "Psychology, applied behavior analysis", "http://dbpedia.org/resource/Old_Testament", "http://dbpedia.org/resource/Analytical_Chemistry", "http://dbpedia.org/resource/Food_science", "http://dbpedia.org/resource/Surgery", "http://dbpedia.org/resource/Hydrology", "Economics", "http://dbpedia.org/resource/Pharmacology", "http://dbpedia.org/resource/Therapeutics", "http://dbpedia.org/resource/Statistics", "Psychoanalysis", "Law", "http://dbpedia.org/resource/Constitutional_law", "Laser and photonics", "http://dbpedia.org/resource/Mathematics", "Sociologist", "http://dbpedia.org/resource/Consciousness", "http://dbpedia.org/resource/Digital_typography", "http://dbpedia.org/resource/United_States_labor_law", "http://dbpedia.org/resource/Library_science", "http://dbpedia.org/resource/Media_studies", "http://dbpedia.org/resource/Environmental_law", "http://dbpedia.org/resource/Geriatrics", "http://dbpedia.org/resource/Gerontology", "http://dbpedia.org/resource/Computer_clustering", "http://dbpedia.org/resource/East_Asian_studies", "http://dbpedia.org/resource/Obstetrics", "http://dbpedia.org/resource/Gynaecology", "http://dbpedia.org/resource/Science_fiction_studies", "http://dbpedia.org/resource/Recreational_mathematics", "http://dbpedia.org/resource/Visual_perception", "http://dbpedia.org/resource/Primatology", "http://dbpedia.org/resource/Orthodontics", "http://dbpedia.org/resource/Southern_literature", "http://dbpedia.org/resource/Ornithology", "Science humor", "http://dbpedia.org/resource/Science", "Cultural and ethnic studies", "http://dbpedia.org/resource/Mormon_studies", "Law and feminism", "http://dbpedia.org/resource/Hebrew", "http://dbpedia.org/resource/Periodical", "Entomology", "Electrical engineering, Computer science and Communications", "http://dbpedia.org/resource/Machine_learning", "Shakespearean scholar", "Political Scientist", "http://dbpedia.org/resource/Cross-cultural_studies", "http://dbpedia.org/resource/English_literature", "http://dbpedia.org/resource/Information_science", "http://dbpedia.org/resource/Missiology", "http://dbpedia.org/resource/Middle_Eastern_studies", "http://dbpedia.org/resource/Plant_Sciences", "http://dbpedia.org/resource/Sports_medicine", "http://dbpedia.org/resource/Mathematical_physics", "http://dbpedia.org/resource/Psychiatry", "psychology and statistics", "http://dbpedia.org/resource/Systematics", "http://dbpedia.org/resource/American_literature", "http://dbpedia.org/resource/Human_resource_management", "International law", "http://dbpedia.org/resource/Armenian_studies", "http://dbpedia.org/resource/Chess", "http://dbpedia.org/resource/Comparative_literature", "http://dbpedia.org/resource/Cryptography", "http://dbpedia.org/resource/Commercial_law", "http://dbpedia.org/resource/Approximation_theory", "Atmospheric sciences and Physical oceanography", "http://dbpedia.org/resource/Cell_biology", "http://dbpedia.org/resource/Biotechnology", "http://dbpedia.org/resource/Psychotherapy_&_Counseling", "http://dbpedia.org/resource/Environmental_engineering", "http://dbpedia.org/resource/Development_studies", "http://dbpedia.org/resource/International_development", "http://dbpedia.org/resource/Neonatology", "http://dbpedia.org/resource/Women's_studies", "http://dbpedia.org/resource/Paleontology", "http://dbpedia.org/resource/Public_policy", "http://dbpedia.org/resource/Finance", "http://dbpedia.org/resource/Investment", "http://dbpedia.org/resource/Urban_studies", "http://dbpedia.org/resource/Interventional_Radiology", "http://dbpedia.org/resource/Family_medicine", "Literary journal", "http://dbpedia.org/resource/Korean_studies", "French", "http://dbpedia.org/resource/Classics", "Science policy", "Byzantine art and medieval art", "http://dbpedia.org/resource/Ecology", "http://dbpedia.org/resource/Economic_anthropology", "English language arts for middle and high school", "http://dbpedia.org/resource/Evolutionary_Biology", "http://dbpedia.org/resource/Maritime_law", "http://dbpedia.org/resource/France", "http://dbpedia.org/resource/Humanities", "Culture", "Chemical biology", "http://dbpedia.org/resource/Microbiology", "Area studies on the Southern United States", "http://dbpedia.org/resource/History_of_Pennsylvania", "http://dbpedia.org/resource/Sexualization", "http://dbpedia.org/resource/Chemical_physics", "http://dbpedia.org/resource/Physical_Chemistry", "http://dbpedia.org/resource/Politics", "http://dbpedia.org/resource/Violence", "http://dbpedia.org/resource/Victimisation", "http://dbpedia.org/resource/Music", "http://dbpedia.org/resource/European_law", "Sociology", "http://dbpedia.org/resource/Multidisciplinary_approach", "Women and the media", "Ophthalmology"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/voices> <http://dbpedia.org/resource/Mona_Marshall> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": ["http://dbpedia.org/resource/Rambo:_The_Force_of_Freedom", "http://dbpedia.org/resource/The_Glo_Friends", "http://dbpedia.org/resource/Eagle_Riders", "http://dbpedia.org/resource/Kissyfur"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/cinematography> <http://dbpedia.org/resource/Gregg_Toland> . ?uri <http://dbpedia.org/property/musicComposer> <http://dbpedia.org/resource/Bernard_Herrmann> . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/city> <http://dbpedia.org/resource/Cancun_conference_(disambiguation)> . ?x <http://dbpedia.org/property/cities> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/format> <http://dbpedia.org/resource/5.1_surround_sound> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/He's_a_Liar> <http://dbpedia.org/property/subsequentWork> ?x . ?x <http://dbpedia.org/ontology/producer> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/creator> <http://dbpedia.org/resource/Simon_Fuller> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": ["http://dbpedia.org/resource/American_Idol", "http://dbpedia.org/resource/American_Juniors", "http://dbpedia.org/resource/Vietnam_Idol", "http://dbpedia.org/resource/Asian_Idol", "http://dbpedia.org/resource/Australian_Idol", "http://dbpedia.org/resource/Geostar", "http://dbpedia.org/resource/Hay_Superstar", "http://dbpedia.org/resource/Telugu_Indian_Idol", "http://dbpedia.org/resource/Arab_Idol", "http://dbpedia.org/resource/Pinoy_Idol", "http://dbpedia.org/resource/Pop_Idol", "http://dbpedia.org/resource/Popworld", "http://dbpedia.org/resource/The_Next_Great_American_Band", "http://dbpedia.org/resource/Nouvelle_Star", "http://dbpedia.org/resource/Bangladeshi_Idol", "http://dbpedia.org/resource/Italian_Idol", "http://dbpedia.org/resource/Music_Idol", "http://dbpedia.org/resource/Cambodian_Idol", "http://dbpedia.org/resource/Canadian_Idol", "http://dbpedia.org/resource/Chinese_Idol", "http://dbpedia.org/resource/SuperStar_(Arabic_TV_series)", "http://dbpedia.org/resource/SuperStar_(Czech_and_Slovak_TV_series)", "http://dbpedia.org/resource/SuperStar_Search_Slovakia", "http://dbpedia.org/resource/Latin_American_Idol", "http://dbpedia.org/resource/Singapore_Idol", "http://dbpedia.org/resource/So_You_Think_You_Can_Dance_(British_TV_series)", "http://dbpedia.org/resource/So_You_Think_You_Can_Dance_(China)", "http://dbpedia.org/resource/So_You_Think_You_Can_Dance_(Greek_TV_series)", "http://dbpedia.org/resource/So_You_Think_You_Can_Dance_Australia", "http://dbpedia.org/resource/So_You_Think_You_Can_Dance_Canada", "http://dbpedia.org/resource/Malaysian_Idol", "http://dbpedia.org/resource/Maldivian_Idol", "http://dbpedia.org/resource/New_Zealand_Idol", "http://dbpedia.org/resource/Nigerian_Idol", "http://dbpedia.org/resource/Philippine_Idol", "http://dbpedia.org/resource/Q'Viva!_The_Chosen", "http://dbpedia.org/resource/World_Idol", "http://dbpedia.org/resource/Eesti_otsib_superstaari", "http://dbpedia.org/resource/Star_Search_Croatia", "http://dbpedia.org/resource/I_Dream", "http://dbpedia.org/resource/Idol_(Norwegian_TV_series)", "http://dbpedia.org/resource/Idol_(Serbian-Montenegrin_and_Macedonian_TV_series)", "http://dbpedia.org/resource/Idol_(Swedish_TV_series)", "http://dbpedia.org/resource/Idol_Philippines", "http://dbpedia.org/resource/Idol_Puerto_Rico", "http://dbpedia.org/resource/Idols_(Danish_TV_series)", "http://dbpedia.org/resource/Idols_(East_African_TV_series)", "http://dbpedia.org/resource/Idols_(Finnish_TV_series)", "http://dbpedia.org/resource/Idols_(West_African_TV_series)", "http://dbpedia.org/resource/Idols_South_Africa", "http://dbpedia.org/resource/Idool_(TV_series)", "http://dbpedia.org/resource/If_I_Can_Dream_(web_series)", "http://dbpedia.org/resource/Indian_Idol_(Hindi_TV_series)", "http://dbpedia.org/resource/Indian_Idol_Marathi", "http://dbpedia.org/resource/Indonesian_Idol", "http://dbpedia.org/resource/Indonesian_Idol_Junior", "http://dbpedia.org/resource/Kokhav_Nolad", "http://dbpedia.org/resource/Little_Britain_USA", "http://dbpedia.org/resource/Pakistan_Idol", "http://dbpedia.org/resource/You_Can_Dance:_Po_prostu_ta\u0144cz!", "http://dbpedia.org/resource/\u00cddolos_(Brazilian_TV_series)"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/engine> <http://dbpedia.org/resource/V8_engine> . ?x <http://dbpedia.org/ontology/related> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/opponent> <http://dbpedia.org/resource/Dwight_D._Eisenhower> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/nonFictionSubject> <http://dbpedia.org/resource/Thud!> . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Harlan_Mathews> <http://dbpedia.org/ontology/almaMater> ?uri . <http://dbpedia.org/resource/Richard_Merrill_Atkinson> <http://dbpedia.org/property/education> ?uri} "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/architect> <http://dbpedia.org/resource/Pyusawhti> . ?x <http://dbpedia.org/property/programmeFormat> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/parent> <http://dbpedia.org/resource/Sony_Financial> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Bank>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cooper_Mountain_Vineyards> <http://dbpedia.org/property/location> ?uri . <http://dbpedia.org/resource/Mount_Bachelor_ski_area> <http://dbpedia.org/ontology/locatedInArea> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/tenants> <http://dbpedia.org/resource/Mercedes-Benz_Superdome> . ?x <http://dbpedia.org/ontology/tenant> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Alfred_Blalock> <http://dbpedia.org/property/employer> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/citizenship> <http://dbpedia.org/resource/United_States> . ?x <http://dbpedia.org/ontology/deathCause> ?uri . }"}, "answers": ["2"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/league> <http://dbpedia.org/resource/Czech_Extraliga> . ?x <http://dbpedia.org/ontology/formerTeam> ?uri . }"}, "answers": ["1017"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/training> <http://dbpedia.org/resource/Lithuanian_Students_Basketball_League> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Artist>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Alpine_skiing_at_the_1964_Winter_Olympics_\u2013_Men's_slalom> <http://dbpedia.org/property/battles> ?uri } "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Mouse_Morris> <http://dbpedia.org/property/race> ?uri } "}, "answers": ["http://dbpedia.org/resource/Queen_Mother_Champion_Chase", "http://dbpedia.org/resource/Supreme_Novices'_Hurdle", "http://dbpedia.org/resource/Neptune_Investment_Management_Novices'_Hurdle", "http://dbpedia.org/resource/Irish_Grand_National", "http://dbpedia.org/resource/Cheltenham_Gold_Cup", "http://dbpedia.org/resource/World_Hurdle", "http://dbpedia.org/resource/Johnny_Henderson_Grand_Annual_Chase", "http://dbpedia.org/resource/The_Grand_National", "http://dbpedia.org/resource/Christie's_Foxhunter_Chase"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/South_Park:_The_Stick_of_Truth> <http://dbpedia.org/ontology/writer> ?uri } "}, "answers": ["http://dbpedia.org/resource/Matt_Stone", "http://dbpedia.org/resource/Trey_Parker"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/type> <http://dbpedia.org/resource/Typically_Tropical> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Organisation>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/division> <http://dbpedia.org/resource/NCAA_Division_I_Football_Bowl_Subdivision> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/University>}"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/locationCity> <http://dbpedia.org/resource/Texas> } "}, "answers": ["60"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/William_Deane> <http://dbpedia.org/property/primeminister> ?uri . <http://dbpedia.org/resource/Mark_Latham> <http://dbpedia.org/ontology/type> ?uri} "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/city> <http://dbpedia.org/resource/Metro_Manila> . ?x <http://dbpedia.org/property/team> ?uri . }"}, "answers": ["4"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cheasty_Boulevard_South> <http://dbpedia.org/property/mainter> ?uri . <http://dbpedia.org/resource/King_County,_Washington> <http://dbpedia.org/ontology/countySeat> ?uri} "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/destinations> <http://dbpedia.org/resource/TranStar_Airlines> . ?x <http://dbpedia.org/property/largestCity> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/writers> <http://dbpedia.org/resource/Neil_Gaiman> . ?x <http://dbpedia.org/ontology/notableWork> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/youthclubs> <http://dbpedia.org/resource/FC_Barcelona> . }"}, "answers": ["http://dbpedia.org/resource/Andreu_Font\u00e0s", "http://dbpedia.org/resource/Andreu_Guerao", "http://dbpedia.org/resource/Andreu_Ramos", "http://dbpedia.org/resource/Andr\u00e9_Onana", "http://dbpedia.org/resource/Andr\u00e9s_Iniesta", "http://dbpedia.org/resource/Dami\u00e0_Viader", "http://dbpedia.org/resource/Dani_Erencia", "http://dbpedia.org/resource/Dani_Fern\u00e1ndez_(footballer,_born_1983)", "http://dbpedia.org/resource/Dani_Morer", "http://dbpedia.org/resource/Dani_Pacheco", "http://dbpedia.org/resource/Dani_Tortolero", "http://dbpedia.org/resource/Daniel_C\u00e1rdenas", "http://dbpedia.org/resource/Daniel_L\u00f3pez_(footballer,_born_1992)", "http://dbpedia.org/resource/Daniel_Mej\u00edas", "http://dbpedia.org/resource/Daniel_Toribio", "http://dbpedia.org/resource/David_Babunski", "http://dbpedia.org/resource/David_Bermudo", "http://dbpedia.org/resource/David_Casablanca", "http://dbpedia.org/resource/David_Coromina", "http://dbpedia.org/resource/David_Garc\u00eda_(footballer,_born_1980)", "http://dbpedia.org/resource/David_Junc\u00e0", "http://dbpedia.org/resource/David_Pirri", "http://dbpedia.org/resource/David_S\u00e1nchez_(footballer,_born_1982)", "http://dbpedia.org/resource/David_Zalzman", "http://dbpedia.org/resource/Valery_Fern\u00e1ndez", "http://dbpedia.org/resource/Vicen\u00e7_Mart\u00ednez", "http://dbpedia.org/resource/Vicen\u00e7_Sasot", "http://dbpedia.org/resource/V\u00edctor_Aldana", "http://dbpedia.org/resource/V\u00edctor_Blasco", "http://dbpedia.org/resource/V\u00edctor_Bravo_(footballer)", "http://dbpedia.org/resource/V\u00edctor_Curto", "http://dbpedia.org/resource/V\u00edctor_G\u00f3mez_(footballer)", "http://dbpedia.org/resource/V\u00edctor_Ib\u00e1\u00f1ez", "http://dbpedia.org/resource/V\u00edctor_Rodr\u00edguez_(Spanish_footballer)", "http://dbpedia.org/resource/V\u00edctor_Ruiz_(footballer,_born_1989)", "http://dbpedia.org/resource/V\u00edctor_S\u00e1nchez_(footballer,_born_1987)", "http://dbpedia.org/resource/V\u00edctor_Vald\u00e9s", "http://dbpedia.org/resource/V\u00edctor_V\u00e1zquez_(footballer,_born_1987)", "http://dbpedia.org/resource/V\u00edctor_\u00c1lvarez_(footballer)", "http://dbpedia.org/resource/Walter_Fern\u00e1ndez", "http://dbpedia.org/resource/Didi_(footballer,_born_1985)", "http://dbpedia.org/resource/Diego_Almeida", "http://dbpedia.org/resource/Diego_Capel", "http://dbpedia.org/resource/Diego_G\u00f3mez_(Spanish_footballer)", "http://dbpedia.org/resource/Diego_L\u00f3pez_(footballer,_born_May_2002)", "http://dbpedia.org/resource/Aimar_Moratalla", "http://dbpedia.org/resource/Aitor_Cantalapiedra", "http://dbpedia.org/resource/Akui_N'dekre_Elie_Moises", "http://dbpedia.org/resource/Alain_Ebwelle", "http://dbpedia.org/resource/Alasana_Manneh", "http://dbpedia.org/resource/Albert_Celades", "http://dbpedia.org/resource/Albert_Dalmau", "http://dbpedia.org/resource/Albert_Dorca", "http://dbpedia.org/resource/Albert_Ferrer", "http://dbpedia.org/resource/Albert_Jorquera", "http://dbpedia.org/resource/Albert_Luque", "http://dbpedia.org/resource/Albert_Manteca", "http://dbpedia.org/resource/Albert_Puigdollers", "http://dbpedia.org/resource/Albert_Torras", "http://dbpedia.org/resource/Alberto_Bot\u00eda", "http://dbpedia.org/resource/Alberto_Garc\u00eda_(Spanish_footballer)", "http://dbpedia.org/resource/Alberto_Manga", "http://dbpedia.org/resource/Ale_Pipo", "http://dbpedia.org/resource/Aleix_Vidal", "http://dbpedia.org/resource/Alejandro_Balde", "http://dbpedia.org/resource/Alejandro_Marcos", "http://dbpedia.org/resource/Alejandro_Marqu\u00e9s", "http://dbpedia.org/resource/Alejandro_Viedma", "http://dbpedia.org/resource/Alejo_Indias", "http://dbpedia.org/resource/Alex_Covelo", "http://dbpedia.org/resource/Alex_Zahavi", "http://dbpedia.org/resource/Alexis_Meva", "http://dbpedia.org/resource/Alfi_Conteh-Lacalle", "http://dbpedia.org/resource/Austin_Amer", "http://dbpedia.org/resource/Ayoub_Abou", "http://dbpedia.org/resource/Ben_Lederman", "http://dbpedia.org/resource/Fran_M\u00e9rida", "http://dbpedia.org/resource/Fran_\u00c1lvarez", "http://dbpedia.org/resource/Francesc_Arnau", "http://dbpedia.org/resource/Francisco_Borrego", "http://dbpedia.org/resource/Francisco_Mateo", "http://dbpedia.org/resource/Francisco_Monta\u00f1\u00e9s", "http://dbpedia.org/resource/Francisco_Rufete", "http://dbpedia.org/resource/Franck_Songo'o", "http://dbpedia.org/resource/Franco_Fasciana_(footballer,_born_1990)", "http://dbpedia.org/resource/Frank_Angong", "http://dbpedia.org/resource/Gabri_(footballer,_born_1979)", "http://dbpedia.org/resource/Gabri_Mart\u00ednez", "http://dbpedia.org/resource/Gai_Assulin", "http://dbpedia.org/resource/Garc\u00eda_Castany", "http://dbpedia.org/resource/Garc\u00eda_Pimienta", "http://dbpedia.org/resource/Gavi_(footballer)", "http://dbpedia.org/resource/Ga\u00ebl_Etock", "http://dbpedia.org/resource/Gen\u00eds_Garc\u00eda_Junyent", "http://dbpedia.org/resource/Gen\u00eds_Montolio", "http://dbpedia.org/resource/Haitam_Abaida", "http://dbpedia.org/resource/Haruna_Babangida", "http://dbpedia.org/resource/Salva_(footballer,_born_1961)", "http://dbpedia.org/resource/Salvador_Sadurn\u00ed", "http://dbpedia.org/resource/Samuel_Bay\u00f3n", "http://dbpedia.org/resource/Samuel_Okunowo", "http://dbpedia.org/resource/Sandro_Ram\u00edrez", "http://dbpedia.org/resource/Sandro_Reyes", "http://dbpedia.org/resource/S\u00e1nchez_Jara", "http://dbpedia.org/resource/S\u00edgfrid_Gr\u00e0cia", "http://dbpedia.org/resource/Takefusa_Kubo", "http://dbpedia.org/resource/Wilfrid_Kaptoum", "http://dbpedia.org/resource/Anselmo_Eyegue", "http://dbpedia.org/resource/Ansu_Fati", "http://dbpedia.org/resource/Antoni_Lima", "http://dbpedia.org/resource/Antoni_Torres", "http://dbpedia.org/resource/Antonio_Glauder", "http://dbpedia.org/resource/Antonio_Hidalgo_(footballer,_born_1979)", "http://dbpedia.org/resource/Antonio_Lao", "http://dbpedia.org/resource/Antonio_Pinilla", "http://dbpedia.org/resource/Antonio_Sanabria", "http://dbpedia.org/resource/Antonio_Sola", "http://dbpedia.org/resource/Anwar_Mediero", "http://dbpedia.org/resource/Armand_Ken_Ella", "http://dbpedia.org/resource/Arnau_Mart\u00ednez", "http://dbpedia.org/resource/Arnau_Tenas", "http://dbpedia.org/resource/Emilio_Guti\u00e9rrez_(footballer)", "http://dbpedia.org/resource/Emilio_G\u00f3mez_(footballer)", "http://dbpedia.org/resource/Enric_Franquesa", "http://dbpedia.org/resource/Enric_Vall\u00e8s", "http://dbpedia.org/resource/Erbol_Atabayev", "http://dbpedia.org/resource/Eric_Garc\u00eda_(footballer,_born_2001)", "http://dbpedia.org/resource/Eric_Montes", "http://dbpedia.org/resource/Eric_Reverter", "http://dbpedia.org/resource/Erick_Ferigra", "http://dbpedia.org/resource/Erik_Vardanyan", "http://dbpedia.org/resource/Ernest_Forg\u00e0s", "http://dbpedia.org/resource/Ernesto_Dom\u00ednguez", "http://dbpedia.org/resource/Esteve_Fradera", "http://dbpedia.org/resource/Eugeni_Valderrama", "http://dbpedia.org/resource/Gerard_Autet", "http://dbpedia.org/resource/Gerard_Barri", "http://dbpedia.org/resource/Gerard_Deulofeu", "http://dbpedia.org/resource/Gerard_Fern\u00e1ndez", "http://dbpedia.org/resource/Gerard_L\u00f3pez", "http://dbpedia.org/resource/Gerard_Piqu\u00e9", "http://dbpedia.org/resource/Giovani_dos_Santos", "http://dbpedia.org/resource/Godswill_Ekpolo", "http://dbpedia.org/resource/Goran_Mari\u0107_(footballer)", "http://dbpedia.org/resource/Manuel_Lanzarote", "http://dbpedia.org/resource/Marc_Bartra", "http://dbpedia.org/resource/Marc_Bar\u00f3", "http://dbpedia.org/resource/Marc_Bernaus", "http://dbpedia.org/resource/Marc_Crosas", "http://dbpedia.org/resource/Marc_Cucurella", "http://dbpedia.org/resource/Marc_Fern\u00e1ndez_(footballer)", "http://dbpedia.org/resource/Marc_Gual", "http://dbpedia.org/resource/Marc_Jurado", "http://dbpedia.org/resource/Marc_Mart\u00ednez", "http://dbpedia.org/resource/Marc_Mart\u00ednez_(footballer,_born_1990)", "http://dbpedia.org/resource/Marc_Muniesa", "http://dbpedia.org/resource/Marc_Navarro", "http://dbpedia.org/resource/Marc_Pedraza", "http://dbpedia.org/resource/Marc_Tenas", "http://dbpedia.org/resource/Marc_Valiente", "http://dbpedia.org/resource/Mario_Rosas", "http://dbpedia.org/resource/Mart\u00ed_Filosia", "http://dbpedia.org/resource/Mart\u00ed_Riverola", "http://dbpedia.org/resource/Mart\u00ed_Verg\u00e9s", "http://dbpedia.org/resource/Mart\u00ed_Vil\u00e0", "http://dbpedia.org/resource/Mart\u00edn_Dom\u00ednguez", "http://dbpedia.org/resource/Mart\u00edn_Montoya", "http://dbpedia.org/resource/Pitu_(footballer)", "http://dbpedia.org/resource/Pol_Calvet", "http://dbpedia.org/resource/Pol_Garc\u00eda", "http://dbpedia.org/resource/Pol_Roig\u00e9", "http://dbpedia.org/resource/Tente_S\u00e1nchez", "http://dbpedia.org/resource/Urko_Pardo", "http://dbpedia.org/resource/Brian_Oliv\u00e1n", "http://dbpedia.org/resource/Brian_Pe\u00f1a", "http://dbpedia.org/resource/James_Efmorfidis", "http://dbpedia.org/resource/Jandro_Orellana", "http://dbpedia.org/resource/Jaume_Cu\u00e9llar", "http://dbpedia.org/resource/Jaume_Sobregrau", "http://dbpedia.org/resource/Javi_L\u00f3pez_(footballer,_born_1964)", "http://dbpedia.org/resource/Javi_Martos", "http://dbpedia.org/resource/Javi_Moreno_(footballer,_born_1974)", "http://dbpedia.org/resource/Javi_Puado", "http://dbpedia.org/resource/Javi_Ruiz", "http://dbpedia.org/resource/Javier_Espinosa", "http://dbpedia.org/resource/Javier_Oliete", "http://dbpedia.org/resource/Javito", "http://dbpedia.org/resource/Jean_Marie_Dongou", "http://dbpedia.org/resource/Kays_Ruiz-Atil", "http://dbpedia.org/resource/Keita_Bald\u00e9", "http://dbpedia.org/resource/Kike_Saverio", "http://dbpedia.org/resource/Mateu_Morey", "http://dbpedia.org/resource/Mat\u00edas_Lacava", "http://dbpedia.org/resource/Mauro_Icardi", "http://dbpedia.org/resource/Max_Svensson_(footballer,_born_2001)", "http://dbpedia.org/resource/Maxi_Rol\u00f3n", "http://dbpedia.org/resource/Ram\u00f3n_Calder\u00e9", "http://dbpedia.org/resource/Ram\u00f3n_Mas\u00f3", "http://dbpedia.org/resource/Ram\u00f3n_Montesinos", "http://dbpedia.org/resource/Ra\u00fal_Baena", "http://dbpedia.org/resource/Ra\u00fal_Caballero_(footballer,_born_1978)", "http://dbpedia.org/resource/Ra\u00fal_Moro", "http://dbpedia.org/resource/Niko_Takahashi", "http://dbpedia.org/resource/Jon_Toral", "http://dbpedia.org/resource/Jonathan_Carril", "http://dbpedia.org/resource/Jonathan_dos_Santos", "http://dbpedia.org/resource/Jony_Rodr\u00edguez", "http://dbpedia.org/resource/Jordan_Larsson", "http://dbpedia.org/resource/Jordi_Alba", "http://dbpedia.org/resource/Jordi_Condom", "http://dbpedia.org/resource/Jordi_Cruyff", "http://dbpedia.org/resource/Jordi_Ferr\u00f3n", "http://dbpedia.org/resource/Jordi_Gonzalvo", "http://dbpedia.org/resource/Jordi_G\u00f3mez", "http://dbpedia.org/resource/Jordi_L\u00f3pez_(footballer)", "http://dbpedia.org/resource/Jordi_Masip", "http://dbpedia.org/resource/Jordi_Mas\u00f3_(footballer)", "http://dbpedia.org/resource/Jordi_Mboula", "http://dbpedia.org/resource/Jordi_Ortega", "http://dbpedia.org/resource/Jordi_Quintill\u00e0", "http://dbpedia.org/resource/Jordi_Roca_(footballer)", "http://dbpedia.org/resource/Jordi_Roura", "http://dbpedia.org/resource/Jordi_Vinyals", "http://dbpedia.org/resource/Jordi_Xumetra", "http://dbpedia.org/resource/Jorge_Perona", "http://dbpedia.org/resource/Jorge_Troiteiro", "http://dbpedia.org/resource/Jorge_Vilda", "http://dbpedia.org/resource/Joselu_(footballer,_born_1990)", "http://dbpedia.org/resource/Josep_Maria_Fust\u00e9", "http://dbpedia.org/resource/Josep_Mart\u00ednez", "http://dbpedia.org/resource/Josep_Moratalla", "http://dbpedia.org/resource/Josep_Seguer", "http://dbpedia.org/resource/Josep_Setvalls", "http://dbpedia.org/resource/Josimar_Quintero", "http://dbpedia.org/resource/Josu", "http://dbpedia.org/resource/Jos\u00e9_Antonio_Llamas", "http://dbpedia.org/resource/Jos\u00e9_Aurelio_Su\u00e1rez", "http://dbpedia.org/resource/Jos\u00e9_Berm\u00fadez", "http://dbpedia.org/resource/Jos\u00e9_Casado", "http://dbpedia.org/resource/Jos\u00e9_Manuel_Casado", "http://dbpedia.org/resource/Jos\u00e9_Manuel_Rueda", "http://dbpedia.org/resource/Jos\u00e9_Mars\u00e0", "http://dbpedia.org/resource/Jos\u00e9_Terr\u00f3n_(footballer)", "http://dbpedia.org/resource/Juan_Antonio_Chesa", "http://dbpedia.org/resource/Juan_Antonio_Osado", "http://dbpedia.org/resource/Juan_Antonio_Ros", "http://dbpedia.org/resource/Juan_Carlos_Moreno_(footballer)", "http://dbpedia.org/resource/Juan_Carlos_Rojo", "http://dbpedia.org/resource/Juan_Fern\u00e1ndez_(footballer,_born_1999)", "http://dbpedia.org/resource/Juanan_Entrena", "http://dbpedia.org/resource/Juanjo_(footballer,_born_1977)", "http://dbpedia.org/resource/Judan_Ali", "http://dbpedia.org/resource/Julen_Arellano", "http://dbpedia.org/resource/Santiago_Bueno", "http://dbpedia.org/resource/Sebasti\u00e1n_Herrera", "http://dbpedia.org/resource/Sekou_Gassama", "http://dbpedia.org/resource/Sergi_Altimira", "http://dbpedia.org/resource/Sergi_Barju\u00e1n", "http://dbpedia.org/resource/Sergi_Can\u00f3s", "http://dbpedia.org/resource/Sergi_G\u00f3mez", "http://dbpedia.org/resource/Sergi_L\u00f3pez_(footballer)", "http://dbpedia.org/resource/Sergi_Palencia", "http://dbpedia.org/resource/Sergi_Puig", "http://dbpedia.org/resource/Sergi_Roberto", "http://dbpedia.org/resource/Sergi_Samper", "http://dbpedia.org/resource/Sergio_Ayala", "http://dbpedia.org/resource/Sergio_Buenacasa", "http://dbpedia.org/resource/Sergio_Busquets", "http://dbpedia.org/resource/Sergio_Cirio", "http://dbpedia.org/resource/Sergio_Garc\u00eda_(footballer,_born_1983)", "http://dbpedia.org/resource/Sergio_G\u00f3mez_(footballer,_born_2000)", "http://dbpedia.org/resource/Sergio_Juste", "http://dbpedia.org/resource/Sergio_Santamar\u00eda", "http://dbpedia.org/resource/Isaac_Becerra", "http://dbpedia.org/resource/Isaac_Cuenca", "http://dbpedia.org/resource/Isaac_Padilla", "http://dbpedia.org/resource/Ismael_L\u00f3pez_(footballer,_born_1978)", "http://dbpedia.org/resource/Iv\u00e1n_Balliu", "http://dbpedia.org/resource/Iv\u00e1n_Bravo", "http://dbpedia.org/resource/Iv\u00e1n_Carril", "http://dbpedia.org/resource/Iv\u00e1n_D\u00edaz_(footballer,_born_1978)", "http://dbpedia.org/resource/Iv\u00e1n_Martos", "http://dbpedia.org/resource/Iv\u00e1n_Pe\u00f1aranda", "http://dbpedia.org/resource/Iv\u00e1n_de_la_Pe\u00f1a", "http://dbpedia.org/resource/I\u00f1aki_Pe\u00f1a", "http://dbpedia.org/resource/Moha_El_Ouriachi", "http://dbpedia.org/resource/Mois\u00e9s_Pereiro", "http://dbpedia.org/resource/Monchu", "http://dbpedia.org/resource/Moustapha_Seck", "http://dbpedia.org/resource/Munir_El_Haddadi", "http://dbpedia.org/resource/Nano_(footballer,_born_1982)", "http://dbpedia.org/resource/Tonet", "http://dbpedia.org/resource/Toni_Calvo", "http://dbpedia.org/resource/Toni_Dovale", "http://dbpedia.org/resource/Toni_Moral", "http://dbpedia.org/resource/Toni_Velamaz\u00e1n", "http://dbpedia.org/resource/Aar\u00f3n_Bueno", "http://dbpedia.org/resource/Abel_Ruiz", "http://dbpedia.org/resource/Adama_Traor\u00e9_(footballer,_born_1996)", "http://dbpedia.org/resource/Adri\u00e0_Altimira", "http://dbpedia.org/resource/Adri\u00e0_Arjona", "http://dbpedia.org/resource/Adri\u00e0_Carmona", "http://dbpedia.org/resource/Adri\u00e0_Guerrero", "http://dbpedia.org/resource/Adri\u00e0_Vilanova", "http://dbpedia.org/resource/Adri\u00e1n_Bernab\u00e9", "http://dbpedia.org/resource/Cesc_F\u00e0bregas", "http://dbpedia.org/resource/Chadi_Riad", "http://dbpedia.org/resource/Chumi", "http://dbpedia.org/resource/Steven_Prieto", "http://dbpedia.org/resource/Carles_Ale\u00f1\u00e1", "http://dbpedia.org/resource/Carles_Busquets", "http://dbpedia.org/resource/Carles_Coto", "http://dbpedia.org/resource/Carles_Cuadrat", "http://dbpedia.org/resource/Carles_Planas", "http://dbpedia.org/resource/Carles_P\u00e9rez", "http://dbpedia.org/resource/Carles_Rexach", "http://dbpedia.org/resource/Carlos_Blanco_(footballer,_born_1996)", "http://dbpedia.org/resource/Carlos_Gilbert", "http://dbpedia.org/resource/Carlos_Julio_Mart\u00ednez", "http://dbpedia.org/resource/Carlos_Mart\u00ednez_(footballer,_born_1997)", "http://dbpedia.org/resource/Carlos_Mart\u00ednez_(footballer,_born_June_1986)", "http://dbpedia.org/resource/Carlos_Pe\u00f1a_(Spanish_footballer)", "http://dbpedia.org/resource/Hugo_L\u00f3pez_(footballer)", "http://dbpedia.org/resource/Labinot_Kabashi", "http://dbpedia.org/resource/Domingo_Acedo", "http://dbpedia.org/resource/Sim\u00f3n_Colina", "http://dbpedia.org/resource/Sito_Riera", "http://dbpedia.org/resource/Cristian_Ceballos", "http://dbpedia.org/resource/Cristian_Hidalgo", "http://dbpedia.org/resource/Cristian_Lobato", "http://dbpedia.org/resource/Cristian_Tello", "http://dbpedia.org/resource/Crist\u00f3bal_Parralo", "http://dbpedia.org/resource/Guille_Abascal", "http://dbpedia.org/resource/Guillem_Jaime", "http://dbpedia.org/resource/Guillermo_Amor", "http://dbpedia.org/resource/Hendrio", "http://dbpedia.org/resource/Macky_Bagnack", "http://dbpedia.org/resource/Mamadou_Sylla_(footballer,_born_1994)", "http://dbpedia.org/resource/Mamadou_Tounkara", "http://dbpedia.org/resource/Manolo_(footballer,_born_1960)", "http://dbpedia.org/resource/Manu_Trigueros", "http://dbpedia.org/resource/Ricard_S\u00e1nchez", "http://dbpedia.org/resource/Riqui_Puig", "http://dbpedia.org/resource/Robert_Costa_(footballer)", "http://dbpedia.org/resource/Roberto_Alarc\u00f3n_(footballer,_born_1994)", "http://dbpedia.org/resource/Roberto_Merino", "http://dbpedia.org/resource/Roberto_Trashorras", "http://dbpedia.org/resource/Rodri_(footballer,_born_1934)", "http://dbpedia.org/resource/Rodri_(footballer,_born_1971)", "http://dbpedia.org/resource/Rodri_(footballer,_born_1984)", "http://dbpedia.org/resource/Rodri_(footballer,_born_2000)", "http://dbpedia.org/resource/Rodrigo_Tar\u00edn", "http://dbpedia.org/resource/Roger_Garc\u00eda", "http://dbpedia.org/resource/Roger_Riera", "http://dbpedia.org/resource/Fabrice_Ondoa", "http://dbpedia.org/resource/Federico_Bessone", "http://dbpedia.org/resource/Felip_Ortiz", "http://dbpedia.org/resource/Felipe_Sanch\u00f3n", "http://dbpedia.org/resource/Fernando_Navarro_(Spanish_footballer)", "http://dbpedia.org/resource/Fernando_Quesada", "http://dbpedia.org/resource/Ferran_Olivella", "http://dbpedia.org/resource/Ferr\u00e1n_Sarsanedas", "http://dbpedia.org/resource/Fod\u00e9_Fofana", "http://dbpedia.org/resource/Jeffr\u00e9n_Su\u00e1rez", "http://dbpedia.org/resource/Jesjua_Angoy-Cruyff", "http://dbpedia.org/resource/Jes\u00fas_Lucendo", "http://dbpedia.org/resource/Jes\u00fas_Olmo", "http://dbpedia.org/resource/Jes\u00fas_Tato", "http://dbpedia.org/resource/Jito_(footballer)", "http://dbpedia.org/resource/Joan_Campins", "http://dbpedia.org/resource/Joan_Luque", "http://dbpedia.org/resource/Joan_Verd\u00fa", "http://dbpedia.org/resource/Joel_Huertas", "http://dbpedia.org/resource/Joel_Roca", "http://dbpedia.org/resource/Jofre_Mateu", "http://dbpedia.org/resource/Lee_Seung-woo", "http://dbpedia.org/resource/Leo_L\u00f3pez_(footballer)", "http://dbpedia.org/resource/Lionel_Enguene", "http://dbpedia.org/resource/Lionel_Messi", "http://dbpedia.org/resource/Nayim", "http://dbpedia.org/resource/Nico_Gonz\u00e1lez_(footballer,_born_2002)", "http://dbpedia.org/resource/Pedro_(footballer,_born_1987)", "http://dbpedia.org/resource/Pedro_Antonio_N\u00fa\u00f1ez", "http://dbpedia.org/resource/Pep_Guardiola", "http://dbpedia.org/resource/Pepe_Mor\u00e9", "http://dbpedia.org/resource/Pepe_Palau", "http://dbpedia.org/resource/Pepe_Reina", "http://dbpedia.org/resource/Pere_Gratac\u00f3s", "http://dbpedia.org/resource/Pere_Valent\u00ed_Mora", "http://dbpedia.org/resource/Quique_Mart\u00edn", "http://dbpedia.org/resource/Quique_de_Lucas", "http://dbpedia.org/resource/Quique_\u00c1lvarez", "http://dbpedia.org/resource/Rafa_Mir", "http://dbpedia.org/resource/Rafa_M\u00fajica", "http://dbpedia.org/resource/Rafinha_(footballer,_born_February_1993)", "http://dbpedia.org/resource/Thiago_Alc\u00e2ntara", "http://dbpedia.org/resource/Tito_Vilanova", "http://dbpedia.org/resource/Tom\u00e1s_Re\u00f1ones", "http://dbpedia.org/resource/Xavi", "http://dbpedia.org/resource/Xavi_Carmona", "http://dbpedia.org/resource/Xavi_Ginard", "http://dbpedia.org/resource/Xavi_Moro", "http://dbpedia.org/resource/Xavi_Quintill\u00e0", "http://dbpedia.org/resource/Xavi_Simons", "http://dbpedia.org/resource/Xavier_Pelegr\u00ed", "http://dbpedia.org/resource/Edu_Campabadal", "http://dbpedia.org/resource/Efra\u00edn_Ju\u00e1rez", "http://dbpedia.org/resource/Eladio_Silvestre", "http://dbpedia.org/resource/Julio_Iglesias_(footballer)", "http://dbpedia.org/resource/Julio_Pleguezuelo", "http://dbpedia.org/resource/Justo_Tejada", "http://dbpedia.org/resource/J\u00e9r\u00e9my_Guillemenot", "http://dbpedia.org/resource/Kai_Corbett", "http://dbpedia.org/resource/Llu\u00eds_Carreras", "http://dbpedia.org/resource/Llu\u00eds_Pujol", "http://dbpedia.org/resource/Llu\u00eds_Sastre", "http://dbpedia.org/resource/Lobo_Carrasco", "http://dbpedia.org/resource/Louie_Barry", "http://dbpedia.org/resource/Lucas_Gafarot", "http://dbpedia.org/resource/Luis_Carri\u00f3n", "http://dbpedia.org/resource/Luis_Garc\u00eda_(footballer,_born_1978)", "http://dbpedia.org/resource/Luis_Milla_(footballer,_born_1966)", "http://dbpedia.org/resource/Luis_Pellicer", "http://dbpedia.org/resource/Lu\u00eds_Gustavo_Ledes", "http://dbpedia.org/resource/Oriol_Busquets", "http://dbpedia.org/resource/Oriol_Rey", "http://dbpedia.org/resource/Oriol_Riera", "http://dbpedia.org/resource/Oriol_Romeu", "http://dbpedia.org/resource/Oriol_Rosell", "http://dbpedia.org/resource/Biel_Farr\u00e9s", "http://dbpedia.org/resource/Bobby_Adekanye", "http://dbpedia.org/resource/Bojan_Krki\u0107", "http://dbpedia.org/resource/H\u00e9ctor_Beller\u00edn", "http://dbpedia.org/resource/H\u00e9ctor_Sim\u00f3n", "http://dbpedia.org/resource/Iago_Falque", "http://dbpedia.org/resource/Ian_Poveda", "http://dbpedia.org/resource/Ib\u00e1n_Cuadrado", "http://dbpedia.org/resource/Ignasi_Miquel", "http://dbpedia.org/resource/Ignasi_Vilarrasa", "http://dbpedia.org/resource/Iker_Bravo", "http://dbpedia.org/resource/Ilaix_Moriba", "http://dbpedia.org/resource/Ilias_Akhomach", "http://dbpedia.org/resource/Ilie_S\u00e1nchez", "http://dbpedia.org/resource/Konrad_de_la_Fuente", "http://dbpedia.org/resource/Michal_Zuk", "http://dbpedia.org/resource/Migue", "http://dbpedia.org/resource/Miguel_Ba\u00f1uz", "http://dbpedia.org/resource/Miguel_Mart\u00ednez_(Spanish_footballer)", "http://dbpedia.org/resource/Miguel_Mora_(footballer)", "http://dbpedia.org/resource/Miguel_\u00c1ngel_(footballer,_born_1993)", "http://dbpedia.org/resource/Mika_M\u00e1rmol", "http://dbpedia.org/resource/Mikel_Arteta", "http://dbpedia.org/resource/Mingo_(footballer)", "http://dbpedia.org/resource/Miquel_Ferrer", "http://dbpedia.org/resource/Pablo_Maqueda", "http://dbpedia.org/resource/Pablo_Navas", "http://dbpedia.org/resource/Paco_Clos", "http://dbpedia.org/resource/Paco_Fortes", "http://dbpedia.org/resource/Paik_Seung-ho", "http://dbpedia.org/resource/Paqui", "http://dbpedia.org/resource/Patric_(Spanish_footballer)", "http://dbpedia.org/resource/Pau_Morer", "http://dbpedia.org/resource/Pau_Torres_(footballer,_born_1987)", "http://dbpedia.org/resource/Rub\u00e9n_Alcaraz", "http://dbpedia.org/resource/Rub\u00e9n_Garc\u00eda_(footballer,_born_1998)", "http://dbpedia.org/resource/Rub\u00e9n_Mart\u00ednez_(footballer,_born_1984)", "http://dbpedia.org/resource/Rub\u00e9n_Mart\u00ednez_(footballer,_born_1989)", "http://dbpedia.org/resource/Rub\u00e9n_Mi\u00f1o", "http://dbpedia.org/resource/Rub\u00e9n_Rochina", "http://dbpedia.org/resource/Zak_Gilsenan", "http://dbpedia.org/resource/\u00c1lex_Blanco_(footballer,_born_1998)", "http://dbpedia.org/resource/\u00c1lex_Carbonell", "http://dbpedia.org/resource/\u00c1lex_Collado", "http://dbpedia.org/resource/\u00c1lex_Corredera", "http://dbpedia.org/resource/\u00c1lex_Garc\u00eda_(footballer,_born_1970)", "http://dbpedia.org/resource/\u00c1lex_Grimaldo", "http://dbpedia.org/resource/\u00c1lex_L\u00f3pez_(footballer,_born_1993)", "http://dbpedia.org/resource/\u00c1lex_Moreno_(footballer)", "http://dbpedia.org/resource/\u00c1lex_Sala", "http://dbpedia.org/resource/\u00c1lex_S\u00e1nchez_(footballer,_born_1991)", "http://dbpedia.org/resource/\u00c1lvaro_Sanz", "http://dbpedia.org/resource/\u00c1ngel_Pedraza", "http://dbpedia.org/resource/\u00d3scar_Arp\u00f3n", "http://dbpedia.org/resource/\u00d3scar_C\u00e9spedes", "http://dbpedia.org/resource/\u00d3scar_Garc\u00eda_(footballer,_born_1973)", "http://dbpedia.org/resource/\u00d3scar_L\u00f3pez_(footballer,_born_1980)", "http://dbpedia.org/resource/\u00d3scar_Mingueza", "http://dbpedia.org/resource/\u00d3scar_Serrano_(footballer)", "http://dbpedia.org/resource/\u00d3scar_\u00c1lvarez_(footballer)"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Alexander_Lippisch> <http://dbpedia.org/property/designer> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Carmela_Soprano> <http://dbpedia.org/ontology/relative> ?x . ?x <http://dbpedia.org/property/religion> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Evangelism", "http://dbpedia.org/resource/Born_again_(Christianity)", "http://dbpedia.org/resource/Buddhist", "http://dbpedia.org/resource/Roman_Catholic", "http://dbpedia.org/resource/Roman_Catholicism", "Roman Catholicism"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/firstTeam> <http://dbpedia.org/resource/Scuderia_Ferrari> . ?x <http://dbpedia.org/property/poleMouth> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Erastus_Wiman> <http://dbpedia.org/ontology/citizenship> ?uri } "}, "answers": ["http://dbpedia.org/resource/Canadians"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/stateOfOrigin> <http://dbpedia.org/resource/French_people> . ?x <http://dbpedia.org/property/awards> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Prix_Goncourt", "http://dbpedia.org/resource/Legion_of_Honour", "http://dbpedia.org/resource/London_Film_Festival", "Best Feature Short", "La Bonne Nouvelle", "Knight of the Ordre National du M\u00e9rite, 2012\n \nSilver Medal of CNRS, 2017\nKnight of the L\u00e9gion d'honneur, 2017", "http://dbpedia.org/resource/Acad\u00e9mie_fran\u00e7aise", "http://dbpedia.org/resource/Knight_of_the_Legion_of_Honour", "http://dbpedia.org/resource/Officer_of_the_National_Order_of_Merit", "", ",", "http://dbpedia.org/resource/Righteous_Among_the_Nations", "http://dbpedia.org/resource/International_Documentary_Film_Festival_Amsterdam", "*1988 International prize for Young Perfumers \n*2008 Legion of Honour", "http://dbpedia.org/resource/Poncelet_Prize", "Legion of Honor", "Knight of the Legion of Honor", "http://dbpedia.org/resource/Ordre_des_Arts_et_des_Lettres", "\"Dream Garden Prize\" at the Garden Festival of Saint-Cloud, 2000; Nespresso contest, 2009; Lan Airlines contest 2012; \"Best Design Award\" at the BD West Fair, Los Angeles, 2015", "Kickboxing world champion", "* Ordre national du M\u00e9rite\n* Ordre des Arts et des Lettres"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Robert_William_Wilcox> <http://dbpedia.org/ontology/district> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/subsidiary> <http://dbpedia.org/resource/Tandem_Computers> . ?uri <http://dbpedia.org/property/company> ?x . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/cinematography> <http://dbpedia.org/resource/Jordan_Cronenweth> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": ["http://dbpedia.org/resource/Best_Friends_(1982_film)", "http://dbpedia.org/resource/Gable_and_Lombard", "http://dbpedia.org/resource/Gardens_of_Stone", "http://dbpedia.org/resource/Handle_with_Care_(1977_film)", "http://dbpedia.org/resource/Play_It_as_It_Lays_(film)", "http://dbpedia.org/resource/Brewster_McCloud", "http://dbpedia.org/resource/The_Front_Page_(1974_film)", "http://dbpedia.org/resource/The_Nickel_Ride", "http://dbpedia.org/resource/Trilogy_(film)", "http://dbpedia.org/resource/Stop_Making_Sense", "http://dbpedia.org/resource/The_Touch_of_Satan", "http://dbpedia.org/resource/Zandy's_Bride", "http://dbpedia.org/resource/Cutter's_Way", "http://dbpedia.org/resource/Rolling_Thunder_(film)", "http://dbpedia.org/resource/Final_Analysis", "http://dbpedia.org/resource/Peggy_Sue_Got_Married", "http://dbpedia.org/resource/Just_Between_Friends", "http://dbpedia.org/resource/One_in_a_Million:_The_Ron_LeFlore_Story", "http://dbpedia.org/resource/State_of_Grace_(1990_film)", "http://dbpedia.org/resource/Birds_of_Prey_(1973_film)", "http://dbpedia.org/resource/Blade_Runner"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/riverServed> <http://dbpedia.org/resource/Thames_Estuary> . ?uri <http://dbpedia.org/property/riverMouth> <http://dbpedia.org/resource/North_Sea> . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/locationCity> <http://dbpedia.org/resource/Toronto> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}"}, "answers": ["144"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/deathPlace> <http://dbpedia.org/resource/Westwood,_Los_Angeles> . ?uri <http://dbpedia.org/property/editing> ?x . }"}, "answers": ["http://dbpedia.org/resource/Dance,_Girl,_Dance", "http://dbpedia.org/resource/The_Devil_and_Daniel_Webster_(film)", "http://dbpedia.org/resource/The_Fallen_Sparrow", "http://dbpedia.org/resource/The_Hunchback_of_Notre_Dame_(1939_film)", "http://dbpedia.org/resource/The_Iron_Major", "http://dbpedia.org/resource/The_Magnificent_Ambersons_(film)", "http://dbpedia.org/resource/Citizen_Kane", "http://dbpedia.org/resource/Bachelor_Mother", "http://dbpedia.org/resource/My_Favorite_Wife", "http://dbpedia.org/resource/Fifth_Avenue_Girl", "http://dbpedia.org/resource/Seven_Days'_Leave_(1942_film)", "http://dbpedia.org/resource/Bombardier_(film)"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/musicComposer> <http://dbpedia.org/resource/Bernard_Herrmann> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Presidio_Santa_Cruz_de_Terrenate> <http://dbpedia.org/ontology/builder> ?uri } "}, "answers": ["http://dbpedia.org/resource/Spain"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/sisterStation> <http://dbpedia.org/resource/WXME> . ?x <http://dbpedia.org/property/broadcastArea> ?uri }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/channel> <http://dbpedia.org/resource/Comedy_Central> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": ["48"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/affiliation> <http://dbpedia.org/resource/Monroe_Carell_Jr._Children's_Hospital_at_Vanderbilt_University_Medical_Center> . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/officeHolder> <http://dbpedia.org/resource/United_States_Senate> . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/relative> <http://dbpedia.org/resource/Huey,_Dewey,_and_Louie> . ?uri <http://dbpedia.org/property/family> <http://dbpedia.org/resource/Duck_family_(Disney)> . }"}, "answers": ["http://dbpedia.org/resource/Donald_Duck", "http://dbpedia.org/resource/Gladstone_Gander"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bloomington_Viaduct> <http://dbpedia.org/property/crosses> ?uri } "}, "answers": ["http://dbpedia.org/resource/North_Branch_Potomac_River"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/residence> <http://dbpedia.org/resource/Cape_Town> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/OfficeHolder>}"}, "answers": ["1"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/parent> <http://dbpedia.org/resource/BBC> . ?uri <http://dbpedia.org/property/products> ?x . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Martin_Pugh> <http://dbpedia.org/property/spouse> ?uri . <http://dbpedia.org/resource/Alana_Stewart> <http://dbpedia.org/ontology/associatedActs> ?uri} "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/team> <http://dbpedia.org/resource/Newell_Old_Boys> . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Antoine_Bibeau> <http://dbpedia.org/property/draftTeam> ?uri . <http://dbpedia.org/resource/Nathan_Dempsey> <http://dbpedia.org/ontology/playedFor> ?uri} "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Agal\u00e9ga> <http://dbpedia.org/ontology/broadcastArea> ?uri } "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/deputy> <http://dbpedia.org/resource/Neil_Brown_(Australian_politician)> } "}, "answers": ["http://dbpedia.org/resource/John_Howard__Tenure__6", "http://dbpedia.org/resource/John_Howard__Tenure__8"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/deathPlace> <http://dbpedia.org/resource/Los_Angeles> . ?x <http://dbpedia.org/ontology/debutteam> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/operator> <http://dbpedia.org/resource/Budapest> . ?x <http://dbpedia.org/property/operator> ?uri }"}, "answers": ["http://dbpedia.org/resource/BKV_Zrt.", "", "Budapest,", "F\u0151v\u00e1rosi Villamosvas\u00fat ,"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Puss_in_Boots_(1922_film)> <http://dbpedia.org/ontology/producer> ?x . ?x <http://dbpedia.org/property/awards> ?uri . }"}, "answers": ["1", "3", "26", ""]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/garrison> <http://dbpedia.org/resource/Militia> . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/garrison> <http://dbpedia.org/resource/Minister_of_Defense_(Saudi_Arabia)> . ?x <http://dbpedia.org/ontology/territory> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/opponent> <http://dbpedia.org/resource/John_G._Schmitz> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/OfficeHolder>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Shorty_Rogers> <http://dbpedia.org/ontology/associatedBand> ?x . ?x <http://dbpedia.org/property/associatedMusicalArtist> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/team> <http://dbpedia.org/resource/Dallas_Cowboys> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/AmericanFootballPlayer>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/computingPlatform> <http://dbpedia.org/resource/Cell_(microprocessor)> . ?uri <http://dbpedia.org/ontology/predecessor> <http://dbpedia.org/resource/PlayStation_2> . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/debutTeam> <http://dbpedia.org/resource/Houston_Astros> . ?uri <http://dbpedia.org/property/team> ?x . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/area> <http://dbpedia.org/resource/Washington> . ?x <http://dbpedia.org/ontology/programmeFormat> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/creator> <http://dbpedia.org/resource/Russell_T_Davies> . ?uri <http://dbpedia.org/ontology/related> ?x . }"}, "answers": ["http://dbpedia.org/resource/Sarah_Jane's_Alien_Files", "http://dbpedia.org/resource/Torchwood", "http://dbpedia.org/resource/Doctor_Who", "http://dbpedia.org/resource/K9_(TV_series)", "http://dbpedia.org/resource/The_Sarah_Jane_Adventures", "http://dbpedia.org/resource/Cucumber_(British_TV_series)", "http://dbpedia.org/resource/Tofu_(web_series)", "http://dbpedia.org/resource/Torchwood_Declassified", "http://dbpedia.org/resource/Banana_(TV_series)", "http://dbpedia.org/resource/Queer_as_Folk_(2022_TV_series)", "http://dbpedia.org/resource/Queer_as_Folk_(American_TV_series)"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/commander> <http://dbpedia.org/resource/Feng_Zicai> . ?x <http://dbpedia.org/ontology/territory> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Michael_Springer> <http://dbpedia.org/property/parentOrganization> ?uri . <http://dbpedia.org/resource/Syracuse_University_Press> <http://dbpedia.org/ontology/club> ?uri} "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/BASIC> <http://dbpedia.org/ontology/designer> ?uri . <http://dbpedia.org/resource/Language_Integrated_Query> <http://dbpedia.org/property/founded> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/McDonnell_Douglas> <http://dbpedia.org/property/successor> ?uri . <http://dbpedia.org/resource/Bharathiar_University> <http://dbpedia.org/ontology/builder> ?uri} "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/city> <http://dbpedia.org/resource/Columbus_Crew_SC> . ?x <http://dbpedia.org/property/matches> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/American_Mediterranean_Sea> <http://dbpedia.org/property/cities> ?uri . }"}, "answers": ["19"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/producer> <http://dbpedia.org/resource/FremantleMedia> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": ["http://dbpedia.org/resource/Got_Talent_Espa\u00f1a", "http://dbpedia.org/resource/Nouvelle_Star", "http://dbpedia.org/resource/Le_Juste_Prix", "http://dbpedia.org/resource/Factor_X_(Chilean_TV_series)", "http://dbpedia.org/resource/Quizmania", "http://dbpedia.org/resource/X_Factor_(Danish_TV_series)", "http://dbpedia.org/resource/X_Factor_(Dutch_TV_series)", "http://dbpedia.org/resource/X_Factor_(French_TV_series)", "http://dbpedia.org/resource/X_Factor_(Norwegian_TV_series)", "http://dbpedia.org/resource/X_Factor_(Romanian_TV_series)", "http://dbpedia.org/resource/X_Factor_India"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/chairman> <http://dbpedia.org/resource/Merritt_Paulson> . ?x <http://dbpedia.org/ontology/homeStadium> ?uri . }"}, "answers": ["http://dbpedia.org/resource/List_of_association_football_stadiums_by_capacity", "http://dbpedia.org/resource/Portland,_Oregon", "http://dbpedia.org/resource/Providence_Park", "http://dbpedia.org/resource/Oregon", "http://dbpedia.org/resource/Merlo_Field"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/producer> <http://dbpedia.org/resource/Michael_Deeley> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": ["10"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/race> <http://dbpedia.org/resource/Lawrence_Realization_Stakes> . ?x <http://dbpedia.org/ontology/award> ?uri . }"}, "answers": ["http://dbpedia.org/resource/American_Champion_Three-Year-Old_Male_Horse", "http://dbpedia.org/resource/American_Horse_of_the_Year", "http://dbpedia.org/resource/American_Champion_Two-Year-Old_Male_Horse", "http://dbpedia.org/resource/United_States_Champion_Jockey_by_earnings", "http://dbpedia.org/resource/United_States_Champion_Jockey_by_wins", "http://dbpedia.org/resource/Canadian_Champion_Jockey_by_wins", "http://dbpedia.org/resource/George_Woolf_Memorial_Jockey_Award", "http://dbpedia.org/resource/United_States_Champion_Thoroughbred_Trainer_by_wins", "http://dbpedia.org/resource/Leading_sire_in_North_America", "http://dbpedia.org/resource/United_States_Champion_Thoroughbred_Trainer_by_earnings", "http://dbpedia.org/resource/Avelino_Gomez_Memorial_Award", "http://dbpedia.org/resource/Eclipse_Special_Award", "http://dbpedia.org/resource/Red_Smith_%22Good_Guy%22_Award", "http://dbpedia.org/resource/ESPY_Award", "http://dbpedia.org/resource/Eclipse_Award_for_Outstanding_Jockey", "http://dbpedia.org/resource/National_Thoroughbred_Racing_Association_Moment_of_the_Year", "http://dbpedia.org/resource/American_Champion_Male_Turf_Horse", "http://dbpedia.org/resource/American_Champion_Older_Dirt_Female_Horse", "http://dbpedia.org/resource/American_Champion_Two-Year-Old_Filly", "http://dbpedia.org/resource/American_Champion_Older_Dirt_Male_Horse", "http://dbpedia.org/resource/Triple_Crown_of_Thoroughbred_Racing_(United_States)", "http://dbpedia.org/resource/Monmouth_Park_Racetrack", "http://dbpedia.org/resource/Leading_broodmare_sire_in_North_America", "http://dbpedia.org/resource/British_flat_racing_Champion_Jockey", "http://dbpedia.org/resource/National_Turf_Writers_Association", "http://dbpedia.org/resource/Arlington_Park", "http://dbpedia.org/resource/Mike_Venezia_Memorial_Award", "http://dbpedia.org/resource/American_Champion_Jockey_by_stakes_wins", "http://dbpedia.org/resource/California_Horse_of_the_Year"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/United_Kingdom> . ?uri <http://dbpedia.org/property/editing> ?x . }"}, "answers": ["479"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/starring> <http://dbpedia.org/resource/Jeff_Conaway> . ?uri <http://dbpedia.org/ontology/producer> <http://dbpedia.org/resource/Jason_Carter_(actor)> . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pittsburgh_Line> <http://dbpedia.org/property/end> ?x . ?x <http://dbpedia.org/ontology/foundation> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/United_States> . ?uri <http://dbpedia.org/property/publisher> ?x . }"}, "answers": ["12"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/team> <http://dbpedia.org/resource/National_Basketball_Association> . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/2002_Players_Championship> <http://dbpedia.org/property/nationality> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jane_Austen_in_Manhattan> <http://dbpedia.org/ontology/author> ?uri . <http://dbpedia.org/resource/Emma_(novel)> <http://dbpedia.org/property/writer> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/canonizedBy> <http://dbpedia.org/resource/Pope_John_Paul_II> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": ["http://dbpedia.org/resource/Alonso_de_Orozco_Mena", "http://dbpedia.org/resource/Vicente_Liem_de_la_Paz", "http://dbpedia.org/resource/Virginia_Centurione_Bracelli", "http://dbpedia.org/resource/Humilis_of_Bisignano", "http://dbpedia.org/resource/Paula_Frassinetti", "http://dbpedia.org/resource/Agnes_of_Bohemia", "http://dbpedia.org/resource/Maria_Chiara_Nanetti", "http://dbpedia.org/resource/Alberic_Crescitelli", "http://dbpedia.org/resource/Alfonso_Rodr\u00edguez_Olmedo", "http://dbpedia.org/resource/Auguste_Chapdelaine", "http://dbpedia.org/resource/Benedict_Menni", "http://dbpedia.org/resource/Bernard_of_Corleone", "http://dbpedia.org/resource/Francis_Regis_Clet", "http://dbpedia.org/resource/Gaspare_Bertoni", "http://dbpedia.org/resource/Saint_Thorlak", "http://dbpedia.org/resource/Eug\u00e8ne_de_Mazenod", "http://dbpedia.org/resource/Sim\u00f3n_de_Rojas", "http://dbpedia.org/resource/Anna_Wang", "http://dbpedia.org/resource/Annibale_Maria_di_Francia", "http://dbpedia.org/resource/Arnold_Janssen", "http://dbpedia.org/resource/Andrew_D\u0169ng-L\u1ea1c", "http://dbpedia.org/resource/Giuseppe_Maria_Tomasi", "http://dbpedia.org/resource/Giuseppe_Moscati", "http://dbpedia.org/resource/Marcellin_Champagnat", "http://dbpedia.org/resource/Marguerite_Bourgeoys", "http://dbpedia.org/resource/Maria_De_Mattias", "http://dbpedia.org/resource/Marie-Marguerite_d'Youville", "http://dbpedia.org/resource/Marie-Nicolas-Antoine_Daveluy", "http://dbpedia.org/resource/Mark_Ji_Tianxiang", "http://dbpedia.org/resource/Marko_Krizin", "http://dbpedia.org/resource/Melchior_Grodziecki", "http://dbpedia.org/resource/Manuel_Moralez", "http://dbpedia.org/resource/Marie_de_la_Paix_Giuliani", "http://dbpedia.org/resource/Marie_of_Saint_Just", "http://dbpedia.org/resource/Marie_of_Saint_Natalie", "http://dbpedia.org/resource/Jacobo_Kyushei_Tomonaga", "http://dbpedia.org/resource/Jadwiga_of_Poland", "http://dbpedia.org/resource/Jan_Sarkander", "http://dbpedia.org/resource/Jean-Louis_Bonnard", "http://dbpedia.org/resource/Jeanne_Delanoue", "http://dbpedia.org/resource/Katharine_Drexel", "http://dbpedia.org/resource/Maximilian_Kolbe", "http://dbpedia.org/resource/Eustochia_Smeralda_Calafato", "http://dbpedia.org/resource/Bernard_V\u0169_V\u0103n_Du\u1ec7", "http://dbpedia.org/resource/Gregorio_Grassi", "http://dbpedia.org/resource/Francis_Fasani", "http://dbpedia.org/resource/Francis_Ferdinand_de_Capillas", "http://dbpedia.org/resource/Claude_La_Colombi\u00e8re", "http://dbpedia.org/resource/Clelia_Barbieri", "http://dbpedia.org/resource/Josemar\u00eda_Escriv\u00e1", "http://dbpedia.org/resource/Joseph_Freinademetz", "http://dbpedia.org/resource/Joseph_Marchand", "http://dbpedia.org/resource/Juan_Grande_Rom\u00e1n", "http://dbpedia.org/resource/Giordano_Ansalone", "http://dbpedia.org/resource/Mutien-Marie_Wiaux", "http://dbpedia.org/resource/Nimatullah_Kassab", "http://dbpedia.org/resource/Agatha_Lin", "http://dbpedia.org/resource/Agnes_Tsao_Kou_Ying", "http://dbpedia.org/resource/Agostina_Livia_Pietrantoni", "http://dbpedia.org/resource/Agostino_Roscelli", "http://dbpedia.org/resource/Callistus_Caravario", "http://dbpedia.org/resource/Laurent-Joseph-Marius_Imbert", "http://dbpedia.org/resource/Tommaso_da_Cori", "http://dbpedia.org/resource/Martyrs_of_the_Spanish_Civil_War", "http://dbpedia.org/resource/Domingo_Ib\u00e1\u00f1ez_de_Erquicia", "http://dbpedia.org/resource/Sim\u00e9on-Fran\u00e7ois_Berneux", "http://dbpedia.org/resource/Crispin_of_Viterbo", "http://dbpedia.org/resource/Magdalene_of_Canossa", "http://dbpedia.org/resource/Magdalene_of_Nagasaki", "http://dbpedia.org/resource/Michael_H\u1ed3_\u0110\u00ecnh_Hy", "http://dbpedia.org/resource/Ezequi\u00e9l_Moreno_y_D\u00edaz", "http://dbpedia.org/resource/Faustina_Kowalska", "http://dbpedia.org/resource/John_Gabriel_Perboyre", "http://dbpedia.org/resource/Leopold_Mandi\u0107", "http://dbpedia.org/resource/Pauline_of_the_Agonizing_Heart_of_Jesus", "http://dbpedia.org/resource/Paulinus_of_Trier", "http://dbpedia.org/resource/Pedro_Poveda_Castroverde", "http://dbpedia.org/resource/Peter_Lieou", "http://dbpedia.org/resource/Peter_Sanz", "http://dbpedia.org/resource/Pierre-Henri_Dorie", "http://dbpedia.org/resource/Raimundus_Li_Quanzhen", "http://dbpedia.org/resource/Thomasian_Martyrs", "http://dbpedia.org/resource/Edith_Stein", "http://dbpedia.org/resource/Egidio_Maria_of_Saint_Joseph", "http://dbpedia.org/resource/Lorenzo_Ruiz", "http://dbpedia.org/resource/Louis_Gabriel_Taurin_Dufresse", "http://dbpedia.org/resource/Lucy_Yi_Zhenmei", "http://dbpedia.org/resource/Ignatius_of_Santhi\u00e0", "http://dbpedia.org/resource/Ignazia_Verzeri", "http://dbpedia.org/resource/Kinga_of_Poland", "http://dbpedia.org/resource/Korean_Martyrs", "http://dbpedia.org/resource/Miguel_Febres_Cordero", "http://dbpedia.org/resource/Padre_Pio", "http://dbpedia.org/resource/Paola_Elisabetta_Cerioli", "http://dbpedia.org/resource/Paul_Chong_Hasang", "http://dbpedia.org/resource/Paul_Liu_Hanzuo", "http://dbpedia.org/resource/Roque_Gonz\u00e1lez_y_de_Santa_Cruz", "http://dbpedia.org/resource/Rosa_Francisca_Dolors_Molas_Vallv\u00e9", "http://dbpedia.org/resource/Rose_Philippine_Duchesne", "http://dbpedia.org/resource/R\u00e9my_Isor\u00e9", "http://dbpedia.org/resource/David_Rold\u00e1n_Lara", "http://dbpedia.org/resource/Marie-Adolphine", "http://dbpedia.org/resource/Marie-Hermine_of_Jesus", "http://dbpedia.org/resource/Marciano_Jos\u00e9", "http://dbpedia.org/resource/Stephen_Pongracz"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/music> <http://dbpedia.org/resource/James_Horner> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": ["http://dbpedia.org/resource/All_the_King's_Men_(2006_film)", "http://dbpedia.org/resource/An_American_Tail", "http://dbpedia.org/resource/An_American_Tail:_Fievel_Goes_West", "http://dbpedia.org/resource/An_American_Tail:_The_Treasure_of_Manhattan_Island", "http://dbpedia.org/resource/Deep_Impact_(film)", "http://dbpedia.org/resource/Vibes_(film)", "http://dbpedia.org/resource/Volunteers_(1985_film)", "http://dbpedia.org/resource/Aliens_(film)", "http://dbpedia.org/resource/Avatar_(2009_film)", "http://dbpedia.org/resource/Between_Friends_(1983_film)", "http://dbpedia.org/resource/Beyond_Borders_(film)", "http://dbpedia.org/resource/For_Greater_Glory", "http://dbpedia.org/resource/We're_Back!_A_Dinosaur's_Story_(film)", "http://dbpedia.org/resource/Where_the_River_Runs_Black", "http://dbpedia.org/resource/Another_48_Hrs.", "http://dbpedia.org/resource/Apocalypto", "http://dbpedia.org/resource/Apollo_13_(film)", "http://dbpedia.org/resource/Enemy_at_the_Gates", "http://dbpedia.org/resource/Andy_Colby's_Incredible_Adventure", "http://dbpedia.org/resource/Glory_(1989_film)", "http://dbpedia.org/resource/Gorky_Park_(film)", "http://dbpedia.org/resource/The_33", "http://dbpedia.org/resource/The_Amazing_Spider-Man_(film)", "http://dbpedia.org/resource/The_Boy_in_the_Striped_Pyjamas_(film)", "http://dbpedia.org/resource/The_Chumscrubber", "http://dbpedia.org/resource/Uncommon_Valor", "http://dbpedia.org/resource/Unlawful_Entry_(film)", "http://dbpedia.org/resource/How_the_Sith_Stole_Christmas", "http://dbpedia.org/resource/Bopha!", "http://dbpedia.org/resource/Braveheart", "http://dbpedia.org/resource/Jack_the_Bear", "http://dbpedia.org/resource/Jade_(film)", "http://dbpedia.org/resource/Brainstorm_(1983_film)", "http://dbpedia.org/resource/Ransom_(1996_film)", "http://dbpedia.org/resource/Raptor_(film)", "http://dbpedia.org/resource/The_Devil's_Own", "http://dbpedia.org/resource/The_Dresser_(1983_film)", "http://dbpedia.org/resource/The_Forgotten_(2004_film)", "http://dbpedia.org/resource/The_Four_Feathers_(2002_film)", "http://dbpedia.org/resource/The_Hand_(1981_film)", "http://dbpedia.org/resource/The_Journey_of_Natty_Gann", "http://dbpedia.org/resource/The_Karate_Kid_(2010_film)", "http://dbpedia.org/resource/The_Lady_in_Red_(1979_film)", "http://dbpedia.org/resource/The_Land_Before_Time_(film)", "http://dbpedia.org/resource/The_Land_Before_Time_II:_The_Great_Valley_Adventure", "http://dbpedia.org/resource/The_Land_Before_Time_III:_The_Time_of_the_Great_Giving", "http://dbpedia.org/resource/The_Land_Before_Time_V:_The_Mysterious_Island", "http://dbpedia.org/resource/The_Legend_of_Zorro", "http://dbpedia.org/resource/The_Life_Before_Her_Eyes", "http://dbpedia.org/resource/The_Man_Without_a_Face", "http://dbpedia.org/resource/The_Mask_of_Zorro", "http://dbpedia.org/resource/The_Missing_(2003_film)", "http://dbpedia.org/resource/The_Name_of_the_Rose_(film)", "http://dbpedia.org/resource/The_New_World_(2005_film)", "http://dbpedia.org/resource/The_Pagemaster", "http://dbpedia.org/resource/The_Pelican_Brief_(film)", "http://dbpedia.org/resource/The_Perfect_Storm_(film)", "http://dbpedia.org/resource/The_Pursuit_of_D._B._Cooper", "http://dbpedia.org/resource/The_Rocketeer_(film)", "http://dbpedia.org/resource/The_Spiderwick_Chronicles_(film)", "http://dbpedia.org/resource/The_Spitfire_Grill", "http://dbpedia.org/resource/The_Stone_Boy_(film)", "http://dbpedia.org/resource/The_Land_Before_Time_VIII:_The_Big_Freeze", "http://dbpedia.org/resource/48_Hrs.", "http://dbpedia.org/resource/Class_Action_(film)", "http://dbpedia.org/resource/Clear_and_Present_Danger_(film)", "http://dbpedia.org/resource/Cocoon:_The_Return", "http://dbpedia.org/resource/Cocoon_(film)", "http://dbpedia.org/resource/Commando_(1985_film)", "http://dbpedia.org/resource/Searching_for_Bobby_Fischer", "http://dbpedia.org/resource/Balto_(film)", "http://dbpedia.org/resource/Batteries_Not_Included", "http://dbpedia.org/resource/Battle_Beyond_the_Stars", "http://dbpedia.org/resource/Iris_(2001_film)", "http://dbpedia.org/resource/My_Heroes_Have_Always_Been_Cowboys_(film)", "http://dbpedia.org/resource/Troy_(film)", "http://dbpedia.org/resource/A_Beautiful_Mind_(film)", "http://dbpedia.org/resource/A_Far_Off_Place", "http://dbpedia.org/resource/A_Piano_for_Mrs._Cimino", "http://dbpedia.org/resource/Swing_Kids_(1993_film)", "http://dbpedia.org/resource/Testament_(1983_film)", "http://dbpedia.org/resource/Captain_EO", "http://dbpedia.org/resource/Casper_(film)", "http://dbpedia.org/resource/Honey,_I_Shrunk_the_Kids", "http://dbpedia.org/resource/House_of_Cards_(1993_film)", "http://dbpedia.org/resource/House_of_Sand_and_Fog_(film)", "http://dbpedia.org/resource/How_the_Grinch_Stole_Christmas_(2000_film)", "http://dbpedia.org/resource/Sneakers_(1992_film)", "http://dbpedia.org/resource/Something_Wicked_This_Way_Comes_(film)", "http://dbpedia.org/resource/Courage_Under_Fire", "http://dbpedia.org/resource/Dad_(1989_film)", "http://dbpedia.org/resource/Heaven_Help_Us", "http://dbpedia.org/resource/Roger_Rabbit_short_films", "http://dbpedia.org/resource/Field_of_Dreams", "http://dbpedia.org/resource/Flightplan", "http://dbpedia.org/resource/Legends_of_the_Fall", "http://dbpedia.org/resource/Project_X_(1987_film)", "http://dbpedia.org/resource/Radio_(2003_film)", "http://dbpedia.org/resource/Thunderheart", "http://dbpedia.org/resource/Titanic_(1997_film)", "http://dbpedia.org/resource/To_Gillian_on_Her_37th_Birthday", "http://dbpedia.org/resource/Willow_(film)", "http://dbpedia.org/resource/Windtalkers", "http://dbpedia.org/resource/Wolf_Totem_(film)", "http://dbpedia.org/resource/Wolfen_(film)", "http://dbpedia.org/resource/Jumanji", "http://dbpedia.org/resource/Living_in_the_Age_of_Airplanes", "http://dbpedia.org/resource/Off_Beat_(1986_film)", "http://dbpedia.org/resource/Once_Around", "http://dbpedia.org/resource/Once_Upon_a_Forest", "http://dbpedia.org/resource/Southpaw_(film)", "http://dbpedia.org/resource/Space_Raiders_(film)", "http://dbpedia.org/resource/Star_Trek_II:_The_Wrath_of_Khan", "http://dbpedia.org/resource/Star_Trek_III:_The_Search_for_Spock", "http://dbpedia.org/resource/Bicentennial_Man_(film)", "http://dbpedia.org/resource/Bobby_Jones:_Stroke_of_Genius", "http://dbpedia.org/resource/Humanoids_from_the_Deep", "http://dbpedia.org/resource/I_Love_You_to_Death", "http://dbpedia.org/resource/In_Country", "http://dbpedia.org/resource/Krull_(film)", "http://dbpedia.org/resource/Mighty_Joe_Young_(1998_film)", "http://dbpedia.org/resource/Patriot_Games_(film)", "http://dbpedia.org/resource/Deadly_Blessing", "http://dbpedia.org/resource/P.K._and_the_Kid"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/United_States> . ?uri <http://dbpedia.org/property/voice> ?x . }"}, "answers": ["http://dbpedia.org/resource/List_of_Chaotic_characters", "http://dbpedia.org/resource/Donkey_(Shrek)", "http://dbpedia.org/resource/Marceline_the_Vampire_Queen", "http://dbpedia.org/resource/Allen_Walker", "http://dbpedia.org/resource/Nea_D._Campbell", "http://dbpedia.org/resource/Shoyo_Hinata", "http://dbpedia.org/resource/James_Vega", "http://dbpedia.org/resource/Iron_Bull", "http://dbpedia.org/resource/Jerry_Mouse", "http://dbpedia.org/resource/Tom_Cat", "http://dbpedia.org/resource/The_Noid", "http://dbpedia.org/resource/Doctor_Neo_Cortex", "http://dbpedia.org/resource/Crash_Bandicoot_(character)", "http://dbpedia.org/resource/Wendy_Testaburger", "http://dbpedia.org/resource/Liane_Cartman", "http://dbpedia.org/resource/List_of_Tenchi_Muyo!_characters", "http://dbpedia.org/resource/Reptar", "http://dbpedia.org/resource/Faith_Connors", "http://dbpedia.org/resource/Lieutenant_Green", "http://dbpedia.org/resource/Riku_(Kingdom_Hearts)", "http://dbpedia.org/resource/Chester_Cheetah", "http://dbpedia.org/resource/Otacon", "http://dbpedia.org/resource/Piglet_(Winnie-the-Pooh)", "http://dbpedia.org/resource/Guybrush_Threepwood", "http://dbpedia.org/resource/Kate_Austen", "http://dbpedia.org/resource/Guile_(Street_Fighter)", "http://dbpedia.org/resource/Anna_Williams_(Tekken)", "http://dbpedia.org/resource/Sally_Brown", "http://dbpedia.org/resource/Princess_Daphne_(character)", "http://dbpedia.org/resource/Suicide_(wrestling)", "http://dbpedia.org/resource/Urd_(Oh_My_Goddess!)", "http://dbpedia.org/resource/Ronald_McDonald", "http://dbpedia.org/resource/Yogi_Bear", "http://dbpedia.org/resource/Boo-Boo_Bear", "http://dbpedia.org/resource/Hiro_Takachiho"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/birthPlace> <http://dbpedia.org/resource/England> . ?x <http://dbpedia.org/ontology/deathPlace> ?uri . }"}, "answers": ["10774"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/Battle_of_the_Bulge> . ?x <http://dbpedia.org/ontology/relation> ?uri . }"}, "answers": ["http://dbpedia.org/resource/General_(United_States)", "http://dbpedia.org/resource/Willard_Ames_Holbrook", "http://dbpedia.org/resource/Lucius_Roy_Holbrook", "http://dbpedia.org/resource/Amasa_J._Parker", "http://dbpedia.org/resource/Erastus_Corning", "http://dbpedia.org/resource/Edwin_Corning_Jr.", "http://dbpedia.org/resource/Parker_Corning", "http://dbpedia.org/resource/James_Lawton_Collins", "http://dbpedia.org/resource/James_Lawton_Collins_Jr.", "http://dbpedia.org/resource/Michael_Collins_(astronaut)", "http://dbpedia.org/resource/Montgomery_C._Meigs", "http://dbpedia.org/resource/Montgomery_Meigs_(born_1945)", "http://dbpedia.org/resource/Doris_Ryer_Nixon", "http://dbpedia.org/resource/Lewis_Nixon_(naval_architect)", "http://dbpedia.org/resource/Stanhope_Wood_Nixon"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Y_Block_engine> <http://dbpedia.org/ontology/manufacturer> ?uri . <http://dbpedia.org/resource/Sho> <http://dbpedia.org/property/engine> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/developer> <http://dbpedia.org/resource/Blizzard_Entertainment> . ?x <http://dbpedia.org/property/genre> ?uri . }"}, "answers": ["62"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/locatedInArea> <http://dbpedia.org/resource/Ridgewood,_New_Jersey> . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Jeff_Conaway> <http://dbpedia.org/ontology/starring> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Miss_Michigan_USA> <http://dbpedia.org/property/city> ?uri } "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/area> <http://dbpedia.org/resource/Regional_Radio_Sports_Network> } "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Sylvain_LVI> <http://dbpedia.org/property/fields> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/garrison> <http://dbpedia.org/resource/Manchester_Airport> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Airline>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dalma_Kov\u00e1cs> <http://dbpedia.org/ontology/associatedMusicalArtist> ?uri } "}, "answers": ["http://dbpedia.org/resource/Eurovision_Song_Contest", "http://dbpedia.org/resource/Marius_Moga", "http://dbpedia.org/resource/Catalin_M\u0103ru\u021b\u0103", "http://dbpedia.org/resource/Divertis", "http://dbpedia.org/resource/Faimo\u0219ii", "http://dbpedia.org/resource/Ploaia_de_stele"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/fields> <http://dbpedia.org/resource/Field_Marshal> . ?x <http://dbpedia.org/ontology/religion> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/assembly> <http://dbpedia.org/resource/Canada> . ?x <http://dbpedia.org/ontology/basedOn> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/On_Broadway_(Smash)> <http://dbpedia.org/property/guests> ?uri . }"}, "answers": ["5"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/commander> <http://dbpedia.org/resource/Egushawa> . ?x <http://dbpedia.org/ontology/combatant> ?uri . }"}, "answers": ["30"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/designer> <http://dbpedia.org/resource/Olivier_Boulay> . ?x <http://dbpedia.org/ontology/layout> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Rear-wheel_drive", "http://dbpedia.org/resource/Front-engine,_front-wheel-drive_layout", "http://dbpedia.org/resource/Front-engine,_rear-wheel-drive_layout", "http://dbpedia.org/resource/Front-engine,_four-wheel-drive_layout", "http://dbpedia.org/resource/Mid-engine_design", "http://dbpedia.org/resource/Four-wheel_drive", "http://dbpedia.org/resource/North_America"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Ridgewood,_New_Jersey> . }"}, "answers": ["http://dbpedia.org/resource/W._Cary_Edwards", "http://dbpedia.org/resource/Alfred_Lutter", "http://dbpedia.org/resource/Ali_Stroker", "http://dbpedia.org/resource/Frankie_Jonas", "http://dbpedia.org/resource/Fred_DuVal", "http://dbpedia.org/resource/Anne_Donovan", "http://dbpedia.org/resource/Anthony_Pollina", "http://dbpedia.org/resource/Eric_Gurry", "http://dbpedia.org/resource/Eric_S._Rosengren", "http://dbpedia.org/resource/Evanka_Osmak", "http://dbpedia.org/resource/Glenda_Arentzen", "http://dbpedia.org/resource/Margaret_Juntwait", "http://dbpedia.org/resource/Mark_Cahill", "http://dbpedia.org/resource/Martha_Byrne", "http://dbpedia.org/resource/Brian_Williams", "http://dbpedia.org/resource/Bryan_Buffington", "http://dbpedia.org/resource/Jake_Tapp", "http://dbpedia.org/resource/Jason_Heyward", "http://dbpedia.org/resource/Kazu_Shigenobu", "http://dbpedia.org/resource/Kelly_Conheeney", "http://dbpedia.org/resource/Melanie_McGuire", "http://dbpedia.org/resource/Joseph_McKenna_(wrestler)", "http://dbpedia.org/resource/Josh_Flitter", "http://dbpedia.org/resource/Molly_Creamer", "http://dbpedia.org/resource/Nancy_Torresen", "http://dbpedia.org/resource/Christopher_J._Connors", "http://dbpedia.org/resource/Carl_F._Ullrich", "http://dbpedia.org/resource/Don_Van_Natta_Jr.", "http://dbpedia.org/resource/Cosmo_Jarvis", "http://dbpedia.org/resource/Dale_Berra", "http://dbpedia.org/resource/Helen_Nearing", "http://dbpedia.org/resource/MC_Paul_Barman", "http://dbpedia.org/resource/Richard_Kollmar", "http://dbpedia.org/resource/Jeffrey_Nordling", "http://dbpedia.org/resource/Jennifer_Morgan_(activist)", "http://dbpedia.org/resource/Jimmie_Todd_Smith", "http://dbpedia.org/resource/Joe_Harasymiak", "http://dbpedia.org/resource/John_Cortez", "http://dbpedia.org/resource/Nikki_Phillips_(soccer)", "http://dbpedia.org/resource/Peter_Carlisle", "http://dbpedia.org/resource/Elizabeth_Hawes", "http://dbpedia.org/resource/Liz_Krueger", "http://dbpedia.org/resource/Bill_DeMott", "http://dbpedia.org/resource/Bill_Wielechowski", "http://dbpedia.org/resource/Bob_Sebra", "http://dbpedia.org/resource/Michael_Zegen", "http://dbpedia.org/resource/Mike_Dietze", "http://dbpedia.org/resource/Mike_Ferguson_(New_Jersey_politician)", "http://dbpedia.org/resource/Mike_Laga", "http://dbpedia.org/resource/Paul_M._Cook", "http://dbpedia.org/resource/Paul_Mara", "http://dbpedia.org/resource/Helen_O'Bannon", "http://dbpedia.org/resource/Matt_Mondanile", "http://dbpedia.org/resource/Rich_Edson__Rich_Edson__1"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/operator> <http://dbpedia.org/resource/Maple_Leaf_Sports_&_Entertainment> . ?x <http://dbpedia.org/ontology/tenant> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Toronto_Furies", "http://dbpedia.org/resource/Toronto_Maple_Leafs", "http://dbpedia.org/resource/Toronto_Marlies", "http://dbpedia.org/resource/Hockey_Canada", "http://dbpedia.org/resource/Hockey_Hall_of_Fame", "http://etobicokedolphins.ca/", "http://www.nhlalumni.org", "http://dbpedia.org/resource/Toronto_Roadrunners", "http://dbpedia.org/resource/Toronto-Buffalo_Royals", "http://dbpedia.org/resource/Toronto_Triumph", "http://dbpedia.org/resource/Hamilton_Nationals", "http://dbpedia.org/resource/Toronto_Argonauts", "http://dbpedia.org/resource/Toronto_FC", "http://dbpedia.org/resource/Toronto_FC_II", "http://dbpedia.org/resource/Canada_men's_national_soccer_team"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Timothy_Morton> <http://dbpedia.org/property/mainInterests> ?uri } "}, "answers": ["http://dbpedia.org/resource/Buddhism", "http://dbpedia.org/resource/Metaphysics", "http://dbpedia.org/resource/Object-oriented_ontology", "http://dbpedia.org/resource/Philosophical_realism", "http://dbpedia.org/resource/Ecocriticism"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/almaMater> <http://dbpedia.org/resource/National_and_Kapodistrian_University_of_Athens> . ?x <http://dbpedia.org/property/awards> ?uri . }"}, "answers": ["29"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/affiliation> <http://dbpedia.org/resource/Association_of_Southeast_Asian_Institutions_Of_Higher_Learning> . ?x <http://dbpedia.org/ontology/computingPlatform> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/campus> <http://dbpedia.org/resource/Suburb> . ?uri <http://dbpedia.org/property/campus> ?x . }"}, "answers": ["http://dbpedia.org/resource/Small_Satellite_Conference", "http://dbpedia.org/resource/The_Lawrence_Herbert_School_of_Communication"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/programmingLanguage> <http://dbpedia.org/resource/C_(programming_language)> . }"}, "answers": ["http://dbpedia.org/resource/AllJoyn", "http://dbpedia.org/resource/Allegro_(software_library)", "http://dbpedia.org/resource/Almquist_shell", "http://dbpedia.org/resource/Alpine_(email_client)", "http://dbpedia.org/resource/Alsamixer", "http://dbpedia.org/resource/Amaya_(web_editor)", "http://dbpedia.org/resource/Ambient_(desktop_environment)", "http://dbpedia.org/resource/American_fuzzy_lop_(fuzzer)", "http://dbpedia.org/resource/AmigaTeX", "http://dbpedia.org/resource/Amsterdam_Compiler_Kit", "http://dbpedia.org/resource/Anacron", "http://dbpedia.org/resource/Android_Team_Awareness_Kit", "http://dbpedia.org/resource/Das_U-Boot", "http://dbpedia.org/resource/Data_Plane_Development_Kit", "http://dbpedia.org/resource/Dconf", "http://dbpedia.org/resource/DeaDBeeF", "http://dbpedia.org/resource/Debian-Installer", "http://dbpedia.org/resource/Apache_Guacamole", "http://dbpedia.org/resource/User-Mode_Driver_Framework", "http://dbpedia.org/resource/Uswsusp", "http://dbpedia.org/resource/Util-linux", "http://dbpedia.org/resource/Uzbl", "http://dbpedia.org/resource/VDPAU", "http://dbpedia.org/resource/VIPS_(software)", "http://dbpedia.org/resource/VLC_media_player", "http://dbpedia.org/resource/VMware_Workstation", "http://dbpedia.org/resource/VTK", "http://dbpedia.org/resource/Varnish_(software)", "http://dbpedia.org/resource/Veejay_(software)", "http://dbpedia.org/resource/VeraCrypt", "http://dbpedia.org/resource/Verilog-to-Routing", "http://dbpedia.org/resource/Versant_Object_Database", "http://dbpedia.org/resource/Veusz", "http://dbpedia.org/resource/Vi", "http://dbpedia.org/resource/Video_Disk_Recorder", "http://dbpedia.org/resource/ViennaRNA_Package", "http://dbpedia.org/resource/Vim_(text_editor)", "http://dbpedia.org/resource/VirtuaWin", "http://dbpedia.org/resource/VirtualBox", "http://dbpedia.org/resource/Virtuoso_Universal_Server", "http://dbpedia.org/resource/Vision_(IRC)", "http://dbpedia.org/resource/VisualBoyAdvance", "http://dbpedia.org/resource/Visual_Molecular_Dynamics", "http://dbpedia.org/resource/Vkernel", "http://dbpedia.org/resource/VnStat", "http://dbpedia.org/resource/Vorbis", "http://dbpedia.org/resource/Vulkan", "http://dbpedia.org/resource/W3m", "http://dbpedia.org/resource/WHAT_IF_software", "http://dbpedia.org/resource/WPS_Office", "http://dbpedia.org/resource/WWIV", "http://dbpedia.org/resource/Watcom_C/C++", "http://dbpedia.org/resource/Waterfox", "http://dbpedia.org/resource/Distributed_Codec_Engine", "http://dbpedia.org/resource/Dm-cache", "http://dbpedia.org/resource/Sedna_(database)", "http://dbpedia.org/resource/Slurm_Workload_Manager", "http://dbpedia.org/resource/SoundTracker_(Unix)", "http://dbpedia.org/resource/Spell_(Unix)", "http://dbpedia.org/resource/HeaderDoc", "http://dbpedia.org/resource/LADSPA", "http://dbpedia.org/resource/Privoxy", "http://dbpedia.org/resource/Ssh-agent", "http://dbpedia.org/resource/PGPfone", "http://dbpedia.org/resource/PackCC", "http://dbpedia.org/resource/Deeplearning4j", "http://dbpedia.org/resource/Dia_(software)", "http://dbpedia.org/resource/Diff", "http://dbpedia.org/resource/Dingoo_A320_SDK", "http://dbpedia.org/resource/DirectFB", "http://dbpedia.org/resource/Direct_Rendering_Infrastructure", "http://dbpedia.org/resource/Direct_Rendering_Manager", "http://dbpedia.org/resource/Distcc", "http://dbpedia.org/resource/Distributed_Concurrent_Versions_System", "http://dbpedia.org/resource/Distributed_Replicated_Block_Device", "http://dbpedia.org/resource/Dm-crypt", "http://dbpedia.org/resource/Dnsmasq", "http://dbpedia.org/resource/Google_App_Runtime_for_Chrome", "http://dbpedia.org/resource/Mirai_(malware)", "http://dbpedia.org/resource/Move_(command)", "http://dbpedia.org/resource/Network_Security_Services", "http://dbpedia.org/resource/Aircrack-ng", "http://dbpedia.org/resource/AkelPad", "http://dbpedia.org/resource/Asprise_OCR", "http://dbpedia.org/resource/Astropy", "http://dbpedia.org/resource/Augeas_(software)", "http://dbpedia.org/resource/Authbind", "http://dbpedia.org/resource/AutoDock", "http://dbpedia.org/resource/Avahi_(software)", "http://dbpedia.org/resource/Avant_Window_Navigator", "http://dbpedia.org/resource/Ayttm", "http://dbpedia.org/resource/Baudline", "http://dbpedia.org/resource/BePDF", "http://dbpedia.org/resource/BennuGD", "http://dbpedia.org/resource/Berkeley_DB", "http://dbpedia.org/resource/Bersirc", "http://dbpedia.org/resource/Foremost_(software)", "http://dbpedia.org/resource/Format_(command)", "http://dbpedia.org/resource/Fortune_(Unix)", "http://dbpedia.org/resource/Fossil_(software)", "http://dbpedia.org/resource/FoundationDB", "http://dbpedia.org/resource/FourQ", "http://dbpedia.org/resource/Framewave", "http://dbpedia.org/resource/Framework_(office_suite)", "http://dbpedia.org/resource/Fraunhofer_FDK_AAC", "http://dbpedia.org/resource/Fre:ac", "http://dbpedia.org/resource/FreeArc", "http://dbpedia.org/resource/FreeGLUT", "http://dbpedia.org/resource/FreeJ", "http://dbpedia.org/resource/FreeMat", "http://dbpedia.org/resource/FreeON", "http://dbpedia.org/resource/FreeOTFE", "http://dbpedia.org/resource/FreeType", "http://dbpedia.org/resource/Freeciv", "http://dbpedia.org/resource/Frei0r", "http://dbpedia.org/resource/Fresco_(web_browser)", "http://dbpedia.org/resource/Fuse_(emulator)", "http://dbpedia.org/resource/Fwupd", "http://dbpedia.org/resource/G95", "http://dbpedia.org/resource/GAMESS_(UK)", "http://dbpedia.org/resource/GAMESS_(US)", "http://dbpedia.org/resource/GAP_(computer_algebra_system)", "http://dbpedia.org/resource/GConf", "http://dbpedia.org/resource/GDAL", "http://dbpedia.org/resource/GD_Graphics_Library", "http://dbpedia.org/resource/GEGL", "http://dbpedia.org/resource/GENESIS_(software)", "http://dbpedia.org/resource/GGPO", "http://dbpedia.org/resource/GIMP", "http://dbpedia.org/resource/GLFW", "http://dbpedia.org/resource/GLib", "http://dbpedia.org/resource/GNATS", "http://dbpedia.org/resource/GNOME_1", "http://dbpedia.org/resource/GNOME_2", "http://dbpedia.org/resource/GNOME_3", "http://dbpedia.org/resource/GNOME_Archive_Manager", "http://dbpedia.org/resource/GNOME_Boxes", "http://dbpedia.org/resource/GNOME_Builder", "http://dbpedia.org/resource/GNOME_Calculator", "http://dbpedia.org/resource/GNOME_Core_Applications", "http://dbpedia.org/resource/GNOME_Dictionary", "http://dbpedia.org/resource/GNOME_Disks", "http://dbpedia.org/resource/GNOME_Display_Manager", "http://dbpedia.org/resource/GNOME_LaTeX", "http://dbpedia.org/resource/GNOME_Screenshot", "http://dbpedia.org/resource/GNOME_Software", "http://dbpedia.org/resource/GNOME_Terminal", "http://dbpedia.org/resource/GNOME_Videos", "http://dbpedia.org/resource/GNUSim8085", "http://dbpedia.org/resource/GNU_Assembler", "http://dbpedia.org/resource/GNU_Compiler_Collection", "http://dbpedia.org/resource/GNU_Core_Utilities", "http://dbpedia.org/resource/GNU_Debugger", "http://dbpedia.org/resource/GNU_Emacs", "http://dbpedia.org/resource/GNU_Fortran", "http://dbpedia.org/resource/GNU_GRUB", "http://dbpedia.org/resource/GNU_Linear_Programming_Kit", "http://dbpedia.org/resource/GNU_MPFR", "http://dbpedia.org/resource/GNU_Oleo", "http://dbpedia.org/resource/GNU_Paint", "http://dbpedia.org/resource/GNU_Parted", "http://dbpedia.org/resource/GNU_Privacy_Guard", "http://dbpedia.org/resource/GNU_Prolog", "http://dbpedia.org/resource/GNU_Readline", "http://dbpedia.org/resource/GNU_Scientific_Library", "http://dbpedia.org/resource/GNU_Screen", "http://dbpedia.org/resource/GNU_arch", "http://dbpedia.org/resource/GNU_nano", "http://dbpedia.org/resource/GNUnet", "http://dbpedia.org/resource/GObject", "http://dbpedia.org/resource/GPAC_Project_on_Advanced_Content", "http://dbpedia.org/resource/GPSBabel", "http://dbpedia.org/resource/GPUOpen", "http://dbpedia.org/resource/GPUTILS", "http://dbpedia.org/resource/GPXE", "http://dbpedia.org/resource/GRASS_GIS", "http://dbpedia.org/resource/GROMACS", "http://dbpedia.org/resource/GStreamer", "http://dbpedia.org/resource/GT.M", "http://dbpedia.org/resource/GTK", "http://dbpedia.org/resource/GTK_Scene_Graph_Kit", "http://dbpedia.org/resource/Galeon", "http://dbpedia.org/resource/Ganglia_(software)", "http://dbpedia.org/resource/Gargoyle_(router_firmware)", "http://dbpedia.org/resource/Geany", "http://dbpedia.org/resource/Gearman", "http://dbpedia.org/resource/Gedit", "http://dbpedia.org/resource/Geekbench", "http://dbpedia.org/resource/Geeqie", "http://dbpedia.org/resource/Generic_Mapping_Tools", "http://dbpedia.org/resource/HIARCS", "http://dbpedia.org/resource/HMMER", "http://dbpedia.org/resource/HP_Linux_Imaging_and_Printing", "http://dbpedia.org/resource/HTMLDOC", "http://dbpedia.org/resource/HTTrack", "http://dbpedia.org/resource/Hack_(video_game)", "http://dbpedia.org/resource/Haiku_PackageInstaller", "http://dbpedia.org/resource/Hamilton_C_shell", "http://dbpedia.org/resource/HandBrake", "http://dbpedia.org/resource/Hatari_(emulator)", "http://dbpedia.org/resource/Binary_File_Descriptor_library", "http://dbpedia.org/resource/SNNS", "http://dbpedia.org/resource/SPICE", "http://dbpedia.org/resource/SPIN_model_checker", "http://dbpedia.org/resource/SQL_Server_Express", "http://dbpedia.org/resource/SQLite", "http://dbpedia.org/resource/SVGALib", "http://dbpedia.org/resource/SWAD_(software)", "http://dbpedia.org/resource/SWFTools", "http://dbpedia.org/resource/SWI-Prolog", "http://dbpedia.org/resource/SWIG", "http://dbpedia.org/resource/Sagan_(software)", "http://dbpedia.org/resource/Sam_(text_editor)", "http://dbpedia.org/resource/Samba_(software)", "http://dbpedia.org/resource/Samhain_(software)", "http://dbpedia.org/resource/Sympa", "http://dbpedia.org/resource/Synaptic_(software)", "http://dbpedia.org/resource/Sysctl", "http://dbpedia.org/resource/Systat_(BSD)", "http://dbpedia.org/resource/SystemBuilder/SB+", "http://dbpedia.org/resource/SystemTap", "http://dbpedia.org/resource/System_Security_Services_Daemon", "http://dbpedia.org/resource/Systemd", "http://dbpedia.org/resource/TWRP_(software)", "http://dbpedia.org/resource/Tarantool", "http://dbpedia.org/resource/Tarsnap", "http://dbpedia.org/resource/Tcpdump", "http://dbpedia.org/resource/Tcsh", "http://dbpedia.org/resource/Ted_(word_processor)", "http://dbpedia.org/resource/Tee_(command)", "http://dbpedia.org/resource/Telegram_(software)", "http://dbpedia.org/resource/Telix", "http://dbpedia.org/resource/WaveLab", "http://dbpedia.org/resource/Wayland_(display_server_protocol)", "http://dbpedia.org/resource/Wc_(Unix)", "http://dbpedia.org/resource/WebP", "http://dbpedia.org/resource/Webalizer", "http://dbpedia.org/resource/Website_Meta_Language", "http://dbpedia.org/resource/WeeChat", "http://dbpedia.org/resource/Wenlin_Software_for_learning_Chinese", "http://dbpedia.org/resource/Wget", "http://dbpedia.org/resource/WildMIDI", "http://dbpedia.org/resource/Gwyddion_(software)", "http://dbpedia.org/resource/Sdb_(debugger)", "http://dbpedia.org/resource/Secure_copy_protocol", "http://dbpedia.org/resource/Seafile", "http://dbpedia.org/resource/Apache_Arrow", "http://dbpedia.org/resource/Apache_Avro", "http://dbpedia.org/resource/Apache_Axis2", "http://dbpedia.org/resource/Apache_Celix", "http://dbpedia.org/resource/Apache_CouchDB", "http://dbpedia.org/resource/Apache_HTTP_Server", "http://dbpedia.org/resource/Apache_Harmony", "http://dbpedia.org/resource/Apache_Portable_Runtime", "http://dbpedia.org/resource/Apache_SpamAssassin", "http://dbpedia.org/resource/Apache_Subversion", "http://dbpedia.org/resource/Apache_SystemDS", "http://dbpedia.org/resource/Apache_Thrift", "http://dbpedia.org/resource/AppArmor", "http://dbpedia.org/resource/AppImage", "http://dbpedia.org/resource/AppStream", "http://dbpedia.org/resource/AppleWin", "http://dbpedia.org/resource/Appserver.io", "http://dbpedia.org/resource/Ar_(Unix)", "http://dbpedia.org/resource/Arachne_(web_browser)", "http://dbpedia.org/resource/Archivemount", "http://dbpedia.org/resource/Arduino", "http://dbpedia.org/resource/Arena_(web_browser)", "http://dbpedia.org/resource/ArpON", "http://dbpedia.org/resource/Arpwatch", "http://dbpedia.org/resource/Elvis_(text_editor)", "http://dbpedia.org/resource/Emacs", "http://dbpedia.org/resource/Embeddable_Common_Lisp", "http://dbpedia.org/resource/Empathy_(software)", "http://dbpedia.org/resource/Emscripten", "http://dbpedia.org/resource/Enchant_(software)", "http://dbpedia.org/resource/Enduro/X", "http://dbpedia.org/resource/Enlightenment_Foundation_Libraries", "http://dbpedia.org/resource/Envsys", "http://dbpedia.org/resource/Eqn_(software)", "http://dbpedia.org/resource/Eraser_(software)", "http://dbpedia.org/resource/Erwise", "http://dbpedia.org/resource/EtherApe", "http://dbpedia.org/resource/Ethtool", "http://dbpedia.org/resource/Ettercap_(software)", "http://dbpedia.org/resource/Eucalyptus_(software)", "http://dbpedia.org/resource/Euler_(software)", "http://dbpedia.org/resource/Evergreen_(software)", "http://dbpedia.org/resource/Android_Runtime", "http://dbpedia.org/resource/Gerris_(software)", "http://dbpedia.org/resource/Getty_(Unix)", "http://dbpedia.org/resource/Gforth", "http://dbpedia.org/resource/Ghostscript", "http://dbpedia.org/resource/GiFT", "http://dbpedia.org/resource/Glade_Interface_Designer", "http://dbpedia.org/resource/Glftpd", "http://dbpedia.org/resource/Glibc", "http://dbpedia.org/resource/Glide_(API)", "http://dbpedia.org/resource/Gnome_Wave_Cleaner", "http://dbpedia.org/resource/Gnopernicus", "http://dbpedia.org/resource/GnuCash", "http://dbpedia.org/resource/GnuTLS", "http://dbpedia.org/resource/Gnumeric", "http://dbpedia.org/resource/Gnuplot", "http://dbpedia.org/resource/Gobby", "http://dbpedia.org/resource/GoldSrc", "http://dbpedia.org/resource/Gold_Box", "http://dbpedia.org/resource/Google_Chrome", "http://dbpedia.org/resource/Google_Native_Client", "http://dbpedia.org/resource/Google_Search", "http://dbpedia.org/resource/Gosling_Emacs", "http://dbpedia.org/resource/MapServer", "http://dbpedia.org/resource/MariaDB", "http://dbpedia.org/resource/Pintos", "http://dbpedia.org/resource/PipeWire", "http://dbpedia.org/resource/Pkg-config", "http://dbpedia.org/resource/Pkgsrc", "http://dbpedia.org/resource/Ploticus", "http://dbpedia.org/resource/Pluma_(text_editor)", "http://dbpedia.org/resource/Plymouth_(software)", "http://dbpedia.org/resource/Pngcrush", "http://dbpedia.org/resource/Polipo", "http://dbpedia.org/resource/Polkit", "http://dbpedia.org/resource/PortAudio", "http://dbpedia.org/resource/Portable_C_Compiler", "http://dbpedia.org/resource/Postfix_(software)", "http://dbpedia.org/resource/PostgreSQL", "http://dbpedia.org/resource/Potrace", "http://dbpedia.org/resource/PottersWheel", "http://dbpedia.org/resource/Pound_(networking)", "http://dbpedia.org/resource/PowerTOP", "http://dbpedia.org/resource/Praat", "http://dbpedia.org/resource/Premake", "http://dbpedia.org/resource/PreonVM", "http://dbpedia.org/resource/Pretty_Good_Privacy", "http://dbpedia.org/resource/Previous_(software)", "http://dbpedia.org/resource/Prime95", "http://dbpedia.org/resource/TenDRA_Compiler", "http://dbpedia.org/resource/Ten\u00e9s_Empanadas_Graciela", "http://dbpedia.org/resource/TeraChem", "http://dbpedia.org/resource/TestDisk", "http://dbpedia.org/resource/Texinfo", "http://dbpedia.org/resource/Textadept", "http://dbpedia.org/resource/Tgif_(program)", "http://dbpedia.org/resource/U1DB", "http://dbpedia.org/resource/UCBLogo", "http://dbpedia.org/resource/UClibc", "http://dbpedia.org/resource/UDE", "http://dbpedia.org/resource/UDP_Unicorn", "http://dbpedia.org/resource/UFRaw", "http://dbpedia.org/resource/ULE_scheduler", "http://dbpedia.org/resource/UMFPACK", "http://dbpedia.org/resource/UPower", "http://dbpedia.org/resource/UWSGI", "http://dbpedia.org/resource/Udev", "http://dbpedia.org/resource/UdiWWW", "http://dbpedia.org/resource/UltraDefrag", "http://dbpedia.org/resource/Unbound_(DNS_server)", "http://dbpedia.org/resource/Uniq", "http://dbpedia.org/resource/Universal_Windows_Platform", "http://dbpedia.org/resource/Unlambda", "http://dbpedia.org/resource/UnrealIRCd", "http://dbpedia.org/resource/Upstart_(software)", "http://dbpedia.org/resource/MagmaFS", "http://dbpedia.org/resource/Path_(social_network)", "http://dbpedia.org/resource/Pe_(text_editor)", "http://dbpedia.org/resource/PoorMan", "http://dbpedia.org/resource/VisIt", "http://dbpedia.org/resource/WWW_Interactive_Multipurpose_Server", "http://dbpedia.org/resource/LTIB", "http://dbpedia.org/resource/YARV", "http://dbpedia.org/resource/Hping", "http://dbpedia.org/resource/Xconfig", "http://dbpedia.org/resource/Zswap", "http://dbpedia.org/resource/APBS_(software)", "http://dbpedia.org/resource/Box86", "http://dbpedia.org/resource/Brain_Fuck_Scheduler", "http://dbpedia.org/resource/Brasero_(software)", "http://dbpedia.org/resource/Brotli", "http://dbpedia.org/resource/BSAFE", "http://dbpedia.org/resource/JamaicaVM", "http://dbpedia.org/resource/Java_(software_platform)", "http://dbpedia.org/resource/Java_OpenGL", "http://dbpedia.org/resource/Kerberos_(protocol)", "http://dbpedia.org/resource/Kernel-Mode_Driver_Framework", "http://dbpedia.org/resource/Kernel-based_Virtual_Machine", "http://dbpedia.org/resource/Bmon", "http://dbpedia.org/resource/Master_Password_(algorithm)", "http://dbpedia.org/resource/Math_Kernel_Library", "http://dbpedia.org/resource/Mathomatic", "http://dbpedia.org/resource/MatrixSSL", "http://dbpedia.org/resource/Mausezahn", "http://dbpedia.org/resource/Mbed_TLS", "http://dbpedia.org/resource/Mdadm", "http://dbpedia.org/resource/MediaLib", "http://dbpedia.org/resource/Media_Lovin'_Toolkit", "http://dbpedia.org/resource/Memcached", "http://dbpedia.org/resource/Menuconfig", "http://dbpedia.org/resource/Metacity", "http://dbpedia.org/resource/RanaVision", "http://dbpedia.org/resource/RasMol", "http://dbpedia.org/resource/Ratpoison", "http://dbpedia.org/resource/Realsoft_3D", "http://dbpedia.org/resource/RecordMyDesktop", "http://dbpedia.org/resource/Redis", "http://dbpedia.org/resource/Redshift_(software)", "http://dbpedia.org/resource/Remmina", "http://dbpedia.org/resource/Remote_Shell", "http://dbpedia.org/resource/Reprise_License_Manager", "http://dbpedia.org/resource/RetrievalWare", "http://dbpedia.org/resource/RetroArch", "http://dbpedia.org/resource/Revision_Control_System", "http://dbpedia.org/resource/The_Sleuth_Kit", "http://dbpedia.org/resource/Swsusp", "http://dbpedia.org/resource/XFast", "http://dbpedia.org/resource/Librsvg", "http://dbpedia.org/resource/OpenVR", "http://dbpedia.org/resource/Scalasca", "http://dbpedia.org/resource/389_Directory_Server", "http://dbpedia.org/resource/4th_Dimension_(software)", "http://dbpedia.org/resource/9wm", "http://dbpedia.org/resource/ADS-AC", "http://dbpedia.org/resource/AICCU", "http://dbpedia.org/resource/AMBER", "http://dbpedia.org/resource/AMDgpu_(Linux_kernel_module)", "http://dbpedia.org/resource/AMosaic", "http://dbpedia.org/resource/ANUGA_Hydro", "http://dbpedia.org/resource/AOLserver", "http://dbpedia.org/resource/ASCEND", "http://dbpedia.org/resource/ATATool", "http://dbpedia.org/resource/Nirvana_(software)", "http://dbpedia.org/resource/Nm_(Unix)", "http://dbpedia.org/resource/Nmap", "http://dbpedia.org/resource/Nnn_(file_manager)", "http://dbpedia.org/resource/Node.js", "http://dbpedia.org/resource/Nouveau_(software)", "http://dbpedia.org/resource/Ntfsprogs", "http://dbpedia.org/resource/Ntop", "http://dbpedia.org/resource/Nuitka", "http://dbpedia.org/resource/Nullsoft_Scriptable_Install_System", "http://dbpedia.org/resource/NumPy", "http://dbpedia.org/resource/Numba", "http://dbpedia.org/resource/OBS_Studio", "http://dbpedia.org/resource/OFono", "http://dbpedia.org/resource/OHRRPGCE", "http://dbpedia.org/resource/ORX", "http://dbpedia.org/resource/OSIP", "http://dbpedia.org/resource/OVN", "http://dbpedia.org/resource/GIO_(software)", "http://dbpedia.org/resource/Gossip_(software)", "http://dbpedia.org/resource/Internet_Speech_Audio_Codec", "http://dbpedia.org/resource/MyISAM", "http://dbpedia.org/resource/Lout_(software)", "http://dbpedia.org/resource/PUFFS_(NetBSD)", "http://dbpedia.org/resource/Rarian", "http://dbpedia.org/resource/OpenLava", "http://dbpedia.org/resource/X264", "http://dbpedia.org/resource/TOMLAB", "http://dbpedia.org/resource/PyCBC", "http://dbpedia.org/resource/Systemd-boot", "http://dbpedia.org/resource/Citadel/UX", "http://dbpedia.org/resource/Citcom", "http://dbpedia.org/resource/Clam_AntiVirus", "http://dbpedia.org/resource/Climm", "http://dbpedia.org/resource/Cliqz", "http://dbpedia.org/resource/ClockworkMod", "http://dbpedia.org/resource/Clutter_(software)", "http://dbpedia.org/resource/Cmus", "http://dbpedia.org/resource/Cocoa_(API)", "http://dbpedia.org/resource/Coda_(file_system)", "http://dbpedia.org/resource/CodeXL", "http://dbpedia.org/resource/Collaborative_Computational_Project_Number_4", "http://dbpedia.org/resource/Collectd", "http://dbpedia.org/resource/Comdb2", "http://dbpedia.org/resource/Comeau_C/C++", "http://dbpedia.org/resource/Comm", "http://dbpedia.org/resource/Commons_Daemon", "http://dbpedia.org/resource/Compiz", "http://dbpedia.org/resource/Completely_Fair_Scheduler", "http://dbpedia.org/resource/Concurrent_Versions_System", "http://dbpedia.org/resource/Conky_(software)", "http://dbpedia.org/resource/ConnMan", "http://dbpedia.org/resource/Join_(Unix)", "http://dbpedia.org/resource/Sawmill_(software)", "http://dbpedia.org/resource/Sbase", "http://dbpedia.org/resource/Sc_(spreadsheet_calculator)", "http://dbpedia.org/resource/SciPy", "http://dbpedia.org/resource/Scigress", "http://dbpedia.org/resource/Scilab_Image_Processing", "http://dbpedia.org/resource/Scrcpy", "http://dbpedia.org/resource/Scrot", "http://dbpedia.org/resource/SeaBIOS", "http://dbpedia.org/resource/Searchdaimon", "http://dbpedia.org/resource/Seccomp", "http://dbpedia.org/resource/Secure_file_transfer_program", "http://dbpedia.org/resource/Security-Enhanced_Linux", "http://dbpedia.org/resource/Sed", "http://dbpedia.org/resource/Seed_(programming)", "http://dbpedia.org/resource/F9_Financial_Reporting", "http://dbpedia.org/resource/Fdupes", "http://dbpedia.org/resource/Mpxplay", "http://dbpedia.org/resource/Pipelight", "http://dbpedia.org/resource/B.A.T.M.A.N.", "http://dbpedia.org/resource/BARON", "http://dbpedia.org/resource/BBEdit", "http://dbpedia.org/resource/BRL-CAD", "http://dbpedia.org/resource/BWPing", "http://dbpedia.org/resource/Bacula", "http://dbpedia.org/resource/Balsa_(email_client)", "http://dbpedia.org/resource/Barebox", "http://dbpedia.org/resource/Basename", "http://dbpedia.org/resource/Bash_(Unix_shell)", "http://dbpedia.org/resource/AberMUD", "http://dbpedia.org/resource/Info-ZIP", "http://dbpedia.org/resource/Info_(Unix)", "http://dbpedia.org/resource/Ingres_(database)", "http://dbpedia.org/resource/Initng", "http://dbpedia.org/resource/Insight_Segmentation_and_Registration_Toolkit", "http://dbpedia.org/resource/Instrument_Neutral_Distributed_Interface", "http://dbpedia.org/resource/Integrated_Performance_Primitives", "http://dbpedia.org/resource/Intelligent_Input_Bus", "http://dbpedia.org/resource/Interlisp", "http://dbpedia.org/resource/Internet_Download_Manager", "http://dbpedia.org/resource/Internet_Low_Bitrate_Codec", "http://dbpedia.org/resource/IoTivity", "http://dbpedia.org/resource/Ipchains", "http://dbpedia.org/resource/Iperf", "http://dbpedia.org/resource/Ipkg", "http://dbpedia.org/resource/Iproute2", "http://dbpedia.org/resource/Iptables", "http://dbpedia.org/resource/IrcII", "http://dbpedia.org/resource/Irssi", "http://dbpedia.org/resource/JACK_Audio_Connection_Kit", "http://dbpedia.org/resource/JED_(text_editor)", "http://dbpedia.org/resource/JModelica.org", "http://dbpedia.org/resource/JWM", "http://dbpedia.org/resource/Jabberd2", "http://dbpedia.org/resource/Mixxx", "http://dbpedia.org/resource/Mktemp", "http://dbpedia.org/resource/MoSync", "http://dbpedia.org/resource/MoarVM", "http://dbpedia.org/resource/Mobile_Web_Server", "http://dbpedia.org/resource/Mod_mono", "http://dbpedia.org/resource/Mod_openpgp", "http://dbpedia.org/resource/Modest_(email_client)", "http://dbpedia.org/resource/MoltenVK", "http://dbpedia.org/resource/Mondo_Rescue", "http://dbpedia.org/resource/MonetDB", "http://dbpedia.org/resource/Mongoose_(web_server)", "http://dbpedia.org/resource/Mongrel2", "http://dbpedia.org/resource/Monit", "http://dbpedia.org/resource/Monkey_HTTP_Server", "http://dbpedia.org/resource/Mono_(software)", "http://dbpedia.org/resource/Montage_(image_software)", "http://dbpedia.org/resource/MoonEdit", "http://dbpedia.org/resource/Moonlight_(runtime)", "http://dbpedia.org/resource/More_(command)", "http://dbpedia.org/resource/Mosaic_(web_browser)", "http://dbpedia.org/resource/Motion_(surveillance_software)", "http://dbpedia.org/resource/Mozilla_Thunderbird", "http://dbpedia.org/resource/Mpg123", "http://dbpedia.org/resource/Mpv_(media_player)", "http://dbpedia.org/resource/MsQuic", "http://dbpedia.org/resource/MscGen", "http://dbpedia.org/resource/Msmtp", "http://dbpedia.org/resource/MtPaint", "http://dbpedia.org/resource/MuPDF", "http://dbpedia.org/resource/Multiplan", "http://dbpedia.org/resource/Multipurpose_Transaction_Protocol", "http://dbpedia.org/resource/Music_on_Console", "http://dbpedia.org/resource/Mutt_(email_client)", "http://dbpedia.org/resource/Mutter_(software)", "http://dbpedia.org/resource/MyPaint", "http://dbpedia.org/resource/MySQL", "http://dbpedia.org/resource/MySensors", "http://dbpedia.org/resource/MythTV", "http://dbpedia.org/resource/N2n", "http://dbpedia.org/resource/NPF_(firewall)", "http://dbpedia.org/resource/NTFS-3G", "http://dbpedia.org/resource/Nagios", "http://dbpedia.org/resource/Naim_(software)", "http://dbpedia.org/resource/NanoVM", "http://dbpedia.org/resource/Top_(software)", "http://dbpedia.org/resource/Tor_(network)", "http://dbpedia.org/resource/Torque_(game_engine)", "http://dbpedia.org/resource/Touch_(command)", "http://dbpedia.org/resource/Tox_(protocol)", "http://dbpedia.org/resource/Toybox", "http://dbpedia.org/resource/Tr_(Unix)", "http://dbpedia.org/resource/Transbase", "http://dbpedia.org/resource/TrueCrypt", "http://dbpedia.org/resource/Trusted_Platform_Module", "http://dbpedia.org/resource/Ttcp", "http://dbpedia.org/resource/Tux_Paint", "http://dbpedia.org/resource/Tux_Typing", "http://dbpedia.org/resource/Tuxedo_(software)", "http://dbpedia.org/resource/Twm", "http://dbpedia.org/resource/Jedi_(game_engine)", "http://dbpedia.org/resource/K_virtual_machine", "http://dbpedia.org/resource/Karbon_(software)", "http://dbpedia.org/resource/Ls", "http://dbpedia.org/resource/Troff", "http://dbpedia.org/resource/AV1", "http://dbpedia.org/resource/AWeb", "http://dbpedia.org/resource/ActiveX", "http://dbpedia.org/resource/Adaptive_Server_Enterprise", "http://dbpedia.org/resource/Adobe_FrameMaker", "http://dbpedia.org/resource/Adobe_PDF_Library", "http://dbpedia.org/resource/Advanced_Intrusion_Detection_Environment", "http://dbpedia.org/resource/Advanced_Linux_Sound_Architecture", "http://dbpedia.org/resource/Advanced_Visualization_Studio", "http://dbpedia.org/resource/Adventure_Game_Studio", "http://dbpedia.org/resource/Aegisub", "http://dbpedia.org/resource/Aerospike_(database)", "http://dbpedia.org/resource/AfterStep", "http://dbpedia.org/resource/After_Dark_(software)", "http://dbpedia.org/resource/Budgie_(desktop_environment)", "http://dbpedia.org/resource/Bullet_(software)", "http://dbpedia.org/resource/Bup", "http://dbpedia.org/resource/BusyBox", "http://dbpedia.org/resource/CDex", "http://dbpedia.org/resource/CHKDSK", "http://dbpedia.org/resource/CIFSD", "http://dbpedia.org/resource/CMU_Sphinx", "http://dbpedia.org/resource/CMake", "http://dbpedia.org/resource/CPython", "http://dbpedia.org/resource/CSipSimple", "http://dbpedia.org/resource/CTWM", "http://dbpedia.org/resource/CUBRID", "http://dbpedia.org/resource/CUPS", "http://dbpedia.org/resource/CURL", "http://dbpedia.org/resource/C_shell", "http://dbpedia.org/resource/Cairo_(graphics)", "http://dbpedia.org/resource/Calibre_(software)", "http://dbpedia.org/resource/Cdrtools", "http://dbpedia.org/resource/Cemu", "http://dbpedia.org/resource/Cgroups", "http://dbpedia.org/resource/Ch_(computer_programming)", "http://dbpedia.org/resource/Cheat_Engine", "http://dbpedia.org/resource/Cheese_(software)", "http://dbpedia.org/resource/Chewing_(Input_Method)", "http://dbpedia.org/resource/Chipmunk_(software)", "http://dbpedia.org/resource/Chntpw", "http://dbpedia.org/resource/Chrony", "http://dbpedia.org/resource/CinePaint", "http://dbpedia.org/resource/CircuitPython", "http://dbpedia.org/resource/Stevie_(text_editor)", "http://dbpedia.org/resource/Strace", "http://dbpedia.org/resource/Streamripper", "http://dbpedia.org/resource/Strings_(Unix)", "http://dbpedia.org/resource/Strip_(Unix)", "http://dbpedia.org/resource/StrongSwan", "http://dbpedia.org/resource/Studierfenster", "http://dbpedia.org/resource/Sudo", "http://dbpedia.org/resource/Surf_(web_browser)", "http://dbpedia.org/resource/Surface_Evolver", "http://dbpedia.org/resource/Suricata_(software)", "http://dbpedia.org/resource/Sway_(window_manager)", "http://dbpedia.org/resource/TRE_(computing)", "http://dbpedia.org/resource/Tachyon_(software)", "http://dbpedia.org/resource/Tail_(Unix)", "http://dbpedia.org/resource/Tangerine_(software)", "http://dbpedia.org/resource/Test_(Unix)", "http://dbpedia.org/resource/Tribe_Flood_Network", "http://dbpedia.org/resource/PageSpinner", "http://dbpedia.org/resource/Libgcrypt", "http://dbpedia.org/resource/MPSolve", "http://dbpedia.org/resource/Casync", "http://dbpedia.org/resource/Hoc_(programming_language)", "http://dbpedia.org/resource/HomeBank", "http://dbpedia.org/resource/Honeyd", "http://dbpedia.org/resource/Bcache", "http://dbpedia.org/resource/LCC_(compiler)", "http://dbpedia.org/resource/LHA_(file_format)", "http://dbpedia.org/resource/LINA_(software)", "http://dbpedia.org/resource/LIRC", "http://dbpedia.org/resource/LTTng", "http://dbpedia.org/resource/LXC", "http://dbpedia.org/resource/LZ4_(compression_algorithm)", "http://dbpedia.org/resource/LZFSE", "http://dbpedia.org/resource/LabPlot", "http://dbpedia.org/resource/LatencyTOP", "http://dbpedia.org/resource/Launchd", "http://dbpedia.org/resource/LeJOS", "http://dbpedia.org/resource/Leafnode", "http://dbpedia.org/resource/FlexAID", "http://dbpedia.org/resource/Tracker_(search_software)", "http://dbpedia.org/resource/Tree_(command)", "http://dbpedia.org/resource/Ultrix_Window_Manager", "http://dbpedia.org/resource/User-mode_Linux", "http://dbpedia.org/resource/PicoSpan", "http://dbpedia.org/resource/Doas", "http://dbpedia.org/resource/DocPoint", "http://dbpedia.org/resource/Dokan_Library", "http://dbpedia.org/resource/Doom_engine", "http://dbpedia.org/resource/DotGNU", "http://dbpedia.org/resource/Dovecot_(software)", "http://dbpedia.org/resource/Dpkg", "http://dbpedia.org/resource/DrQueue", "http://dbpedia.org/resource/Dracut_(software)", "http://dbpedia.org/resource/Dropbear_(software)", "http://dbpedia.org/resource/Dryad_(programming)", "http://dbpedia.org/resource/Drync", "http://dbpedia.org/resource/Dvdisaster", "http://dbpedia.org/resource/Dwm", "http://dbpedia.org/resource/EAS3", "http://dbpedia.org/resource/ECryptfs", "http://dbpedia.org/resource/EDI_(software)", "http://dbpedia.org/resource/Simple_DirectMedia_Layer", "http://dbpedia.org/resource/Simple_Protocol_for_Independent_Computing_Environments", "http://dbpedia.org/resource/Simutrans", "http://dbpedia.org/resource/Singular_(software)", "http://dbpedia.org/resource/Sjeng_(software)", "http://dbpedia.org/resource/Slapt-get", "http://dbpedia.org/resource/Sleep_(command)", "http://dbpedia.org/resource/Slrn", "http://dbpedia.org/resource/Small-C", "http://dbpedia.org/resource/Smart_Common_Input_Method", "http://dbpedia.org/resource/Smartmontools", "http://dbpedia.org/resource/Sndio", "http://dbpedia.org/resource/SoX", "http://dbpedia.org/resource/Sodipodi", "http://dbpedia.org/resource/Sort_(Unix)", "http://dbpedia.org/resource/SourceMeter", "http://dbpedia.org/resource/SourcePuller", "http://dbpedia.org/resource/Source_Filmmaker", "http://dbpedia.org/resource/NOVA_(filesystem)", "http://dbpedia.org/resource/OpenDataPlane", "http://dbpedia.org/resource/Physics_Abstraction_Layer", "http://dbpedia.org/resource/Ssh-keygen", "http://dbpedia.org/resource/Xarchiver", "http://dbpedia.org/resource/ScrollKeeper", "http://dbpedia.org/resource/Zram", "http://dbpedia.org/resource/Tagsistant", "http://dbpedia.org/resource/Couchbase_Server", "http://dbpedia.org/resource/Courier_Mail_Server", "http://dbpedia.org/resource/Cron", "http://dbpedia.org/resource/Cryptlib", "http://dbpedia.org/resource/Csound", "http://dbpedia.org/resource/Cubesat_Space_Protocol", "http://dbpedia.org/resource/Curses_(programming_library)", "http://dbpedia.org/resource/Cwm_(window_manager)", "http://dbpedia.org/resource/Cygwin", "http://dbpedia.org/resource/Cyrus_IMAP_server", "http://dbpedia.org/resource/D-Bus", "http://dbpedia.org/resource/DAP_(software)", "http://dbpedia.org/resource/DATACOM/DB", "http://dbpedia.org/resource/DBase", "http://dbpedia.org/resource/DECIPHER_(software)", "http://dbpedia.org/resource/DNF_(software)", "http://dbpedia.org/resource/DTrace", "http://dbpedia.org/resource/Daemontools", "http://dbpedia.org/resource/GpsDrive", "http://dbpedia.org/resource/Gpsd", "http://dbpedia.org/resource/GrADS", "http://dbpedia.org/resource/Grace_(plotting_tool)", "http://dbpedia.org/resource/GraphicsMagick", "http://dbpedia.org/resource/Graphviz", "http://dbpedia.org/resource/Gregorio_(software)", "http://dbpedia.org/resource/Grep", "http://dbpedia.org/resource/Gretl", "http://dbpedia.org/resource/Grip_(software)", "http://dbpedia.org/resource/Grsync", "http://dbpedia.org/resource/Gtranslator", "http://dbpedia.org/resource/Gummi_(software)", "http://dbpedia.org/resource/Guvcview", "http://dbpedia.org/resource/Gzip", "http://dbpedia.org/resource/H2O_(web_server)", "http://dbpedia.org/resource/HAProxy", "http://dbpedia.org/resource/Asterisk_(PBX)", "http://dbpedia.org/resource/At_(command)", "http://dbpedia.org/resource/Heirloom_Project", "http://dbpedia.org/resource/Hercules_(emulator)", "http://dbpedia.org/resource/Hiawatha_(web_server)", "http://dbpedia.org/resource/Highly_Available_STorage", "http://dbpedia.org/resource/Hildon", "http://dbpedia.org/resource/HipHop_for_PHP", "http://dbpedia.org/resource/MATE_(software)", "http://dbpedia.org/resource/MBROLA", "http://dbpedia.org/resource/MCSim", "http://dbpedia.org/resource/MCabber", "http://dbpedia.org/resource/MIDletPascal", "http://dbpedia.org/resource/MIMEDefang", "http://dbpedia.org/resource/MIRC", "http://dbpedia.org/resource/MPEG_Audio_Decoder", "http://dbpedia.org/resource/MPIR_(mathematics_software)", "http://dbpedia.org/resource/MPMC", "http://dbpedia.org/resource/MPlayer", "http://dbpedia.org/resource/MSQL", "http://dbpedia.org/resource/MTR_(software)", "http://dbpedia.org/resource/MUMPS_(software)", "http://dbpedia.org/resource/MacRuby", "http://dbpedia.org/resource/Madagascar_(software)", "http://dbpedia.org/resource/Magic_(software)", "http://dbpedia.org/resource/Make_(software)", "http://dbpedia.org/resource/Mandoc", "http://dbpedia.org/resource/CLIP_OS", "http://dbpedia.org/resource/Ring_(programming_language)", "http://dbpedia.org/resource/Rio_(windowing_system)", "http://dbpedia.org/resource/Rm_(Unix)", "http://dbpedia.org/resource/Rmetrics", "http://dbpedia.org/resource/Climate_Data_Operators", "http://dbpedia.org/resource/Sally_Project", "http://dbpedia.org/resource/Suhosin", "http://dbpedia.org/resource/IBM_Configuration_Management_Version_Control_(CMVC)", "http://dbpedia.org/resource/ISLISP", "http://dbpedia.org/resource/Ex_(text_editor)", "http://dbpedia.org/resource/Exe2bin", "http://dbpedia.org/resource/Exim", "http://dbpedia.org/resource/Expat_(software)", "http://dbpedia.org/resource/Expect", "http://dbpedia.org/resource/Express_Data_Path", "http://dbpedia.org/resource/Ext2Fsd", "http://dbpedia.org/resource/Ezmlm", "http://dbpedia.org/resource/FAAC", "http://dbpedia.org/resource/FEATool_Multiphysics", "http://dbpedia.org/resource/FFTW", "http://dbpedia.org/resource/FIGlet", "http://dbpedia.org/resource/FRRouting", "http://dbpedia.org/resource/Fairy-Max", "http://dbpedia.org/resource/Farstream", "http://dbpedia.org/resource/Fast_Artificial_Neural_Network", "http://dbpedia.org/resource/Fast_Library_for_Number_Theory", "http://dbpedia.org/resource/Fcron", "http://dbpedia.org/resource/Fdm_(software)", "http://dbpedia.org/resource/Feh_(image_viewer)", "http://dbpedia.org/resource/Fermat_(computer_algebra_system)", "http://dbpedia.org/resource/Ffdshow", "http://dbpedia.org/resource/File_(command)", "http://dbpedia.org/resource/File_Compare", "http://dbpedia.org/resource/File_System_Visualizer", "http://dbpedia.org/resource/Filesystem_in_Userspace", "http://dbpedia.org/resource/Find_(Windows)", "http://dbpedia.org/resource/Firefly_(computer_program)", "http://dbpedia.org/resource/Firefly_Media_Server", "http://dbpedia.org/resource/Firefox_for_iOS", "http://dbpedia.org/resource/Flashrom_(utility)", "http://dbpedia.org/resource/Flatpak", "http://dbpedia.org/resource/Fldigi", "http://dbpedia.org/resource/FlexNet_Publisher", "http://dbpedia.org/resource/FlightGear", "http://dbpedia.org/resource/Flowgrind", "http://dbpedia.org/resource/Flutter_(software)", "http://dbpedia.org/resource/Foma_(software)", "http://dbpedia.org/resource/FontForge", "http://dbpedia.org/resource/Joe's_Own_Editor", "http://dbpedia.org/resource/Lemon_(parser_generator)", "http://dbpedia.org/resource/Less_(Unix)", "http://dbpedia.org/resource/Lex_(software)", "http://dbpedia.org/resource/LiVES", "http://dbpedia.org/resource/LibGDX", "http://dbpedia.org/resource/LibSBML", "http://dbpedia.org/resource/LibTIFF", "http://dbpedia.org/resource/Libart", "http://dbpedia.org/resource/Libav", "http://dbpedia.org/resource/Libcaca", "http://dbpedia.org/resource/Libdca", "http://dbpedia.org/resource/Libdvdcss", "http://dbpedia.org/resource/Libevent", "http://dbpedia.org/resource/Libffi", "http://dbpedia.org/resource/Libjpeg", "http://dbpedia.org/resource/Liblzg", "http://dbpedia.org/resource/Libpng", "http://dbpedia.org/resource/Libqrencode", "http://dbpedia.org/resource/LibreDWG", "http://dbpedia.org/resource/LibreSSL", "http://dbpedia.org/resource/Libsndfile", "http://dbpedia.org/resource/Libusb", "http://dbpedia.org/resource/Libuv", "http://dbpedia.org/resource/Libvirt", "http://dbpedia.org/resource/Libvisual", "http://dbpedia.org/resource/Libvpx", "http://dbpedia.org/resource/Libwww", "http://dbpedia.org/resource/Libxml2", "http://dbpedia.org/resource/Libzip", "http://dbpedia.org/resource/LifeLines", "http://dbpedia.org/resource/Liferea", "http://dbpedia.org/resource/LightDM", "http://dbpedia.org/resource/LightGBM", "http://dbpedia.org/resource/Lightning_Memory-Mapped_Database", "http://dbpedia.org/resource/Lighttpd", "http://dbpedia.org/resource/Lightweight_Java_Game_Library", "http://dbpedia.org/resource/Line_Mode_Browser", "http://dbpedia.org/resource/Links_(web_browser)", "http://dbpedia.org/resource/Linphone", "http://dbpedia.org/resource/Lint_(software)", "http://dbpedia.org/resource/Linux-HA", "http://dbpedia.org/resource/LinuxMCE", "http://dbpedia.org/resource/Linux_PAM", "http://dbpedia.org/resource/Linux_Router_Project", "http://dbpedia.org/resource/Linux_Test_Project", "http://dbpedia.org/resource/Linux_Virtual_Server", "http://dbpedia.org/resource/Linux_color_management", "http://dbpedia.org/resource/Linux_namespaces", "http://dbpedia.org/resource/NaviServer", "http://dbpedia.org/resource/Navit", "http://dbpedia.org/resource/NcFTP", "http://dbpedia.org/resource/Ncdu", "http://dbpedia.org/resource/Ncurses", "http://dbpedia.org/resource/Ne_(text_editor)", "http://dbpedia.org/resource/Neatx", "http://dbpedia.org/resource/NekoVM", "http://dbpedia.org/resource/Nemo_(file_manager)", "http://dbpedia.org/resource/Net-SNMP", "http://dbpedia.org/resource/NetPIPE", "http://dbpedia.org/resource/NetXMS", "http://dbpedia.org/resource/Netfilter", "http://dbpedia.org/resource/Netpbm", "http://dbpedia.org/resource/Netperf", "http://dbpedia.org/resource/Netscape_Portable_Runtime", "http://dbpedia.org/resource/Netsniff-ng", "http://dbpedia.org/resource/Nettle_(cryptographic_library)", "http://dbpedia.org/resource/Netwide_Assembler", "http://dbpedia.org/resource/Network_Caller_ID", "http://dbpedia.org/resource/Network_Security_Toolkit", "http://dbpedia.org/resource/Network_UPS_Tools", "http://dbpedia.org/resource/Neuron_(software)", "http://dbpedia.org/resource/Newt_(programming_library)", "http://dbpedia.org/resource/Nftables", "http://dbpedia.org/resource/Nginx", "http://dbpedia.org/resource/Ngrep", "http://dbpedia.org/resource/Nhttpd", "http://dbpedia.org/resource/Pcap", "http://dbpedia.org/resource/Pcb-rnd", "http://dbpedia.org/resource/Pdnsd", "http://dbpedia.org/resource/PearPC", "http://dbpedia.org/resource/Pegasus_(workflow_management)", "http://dbpedia.org/resource/Pegasus_Mail", "http://dbpedia.org/resource/Percona_Server_for_MySQL", "http://dbpedia.org/resource/Perforce_Jam", "http://dbpedia.org/resource/Perl", "http://dbpedia.org/resource/Perl_Compatible_Regular_Expressions", "http://dbpedia.org/resource/Phalcon_(framework)", "http://dbpedia.org/resource/PhantomJS", "http://dbpedia.org/resource/Philip's_Music_Writer", "http://dbpedia.org/resource/Pi-hole", "http://dbpedia.org/resource/Pico_(text_editor)", "http://dbpedia.org/resource/Pro_Tools", "http://dbpedia.org/resource/ProcDump", "http://dbpedia.org/resource/Profanity_(instant_messaging_client)", "http://dbpedia.org/resource/Project64", "http://dbpedia.org/resource/Project_Chrono", "http://dbpedia.org/resource/Project_Unreality", "http://dbpedia.org/resource/Ps_(Unix)", "http://dbpedia.org/resource/Psyco", "http://dbpedia.org/resource/PuTTY", "http://dbpedia.org/resource/PulseAudio", "http://dbpedia.org/resource/Puma_(web_server)", "http://dbpedia.org/resource/Pwd", "http://dbpedia.org/resource/Py2exe", "http://dbpedia.org/resource/PyGTK", "http://dbpedia.org/resource/PyMOL", "http://dbpedia.org/resource/Pyrex_(programming_language)", "http://dbpedia.org/resource/Python_Imaging_Library", "http://dbpedia.org/resource/Pyxplot", "http://dbpedia.org/resource/Q-Chem", "http://dbpedia.org/resource/QDriverStation", "http://dbpedia.org/resource/QEMU", "http://dbpedia.org/resource/QLattice", "http://dbpedia.org/resource/Qfusion", "http://dbpedia.org/resource/Qmail", "http://dbpedia.org/resource/Quake_II_engine", "http://dbpedia.org/resource/Quake_engine", "http://dbpedia.org/resource/QuickC", "http://dbpedia.org/resource/QuteCom", "http://dbpedia.org/resource/REAPER", "http://dbpedia.org/resource/REFIt", "http://dbpedia.org/resource/ROCm", "http://dbpedia.org/resource/ROX_Desktop", "http://dbpedia.org/resource/RPM_Package_Manager", "http://dbpedia.org/resource/RRDtool", "http://dbpedia.org/resource/Radare2", "http://dbpedia.org/resource/Radiance_(software)", "http://dbpedia.org/resource/Radvd", "http://dbpedia.org/resource/Theora", "http://dbpedia.org/resource/Threema", "http://dbpedia.org/resource/Thttpd", "http://dbpedia.org/resource/TianoCore_EDK_II", "http://dbpedia.org/resource/Tig_(software)", "http://dbpedia.org/resource/TigerVNC", "http://dbpedia.org/resource/TightVNC", "http://dbpedia.org/resource/Timberwolf_(web_browser)", "http://dbpedia.org/resource/TimescaleDB", "http://dbpedia.org/resource/TinTin++", "http://dbpedia.org/resource/Tinc_(protocol)", "http://dbpedia.org/resource/Tk_(software)", "http://dbpedia.org/resource/Tkhtml", "http://dbpedia.org/resource/Tkrzw", "http://dbpedia.org/resource/Tmux", "http://dbpedia.org/resource/TomoPy", "http://dbpedia.org/resource/Winamp", "http://dbpedia.org/resource/WindowLab", "http://dbpedia.org/resource/Windows_File_Manager", "http://dbpedia.org/resource/Windows_Presentation_Foundation", "http://dbpedia.org/resource/Windows_Update_MiniTool", "http://dbpedia.org/resource/Wine_(software)", "http://dbpedia.org/resource/Wing_IDE", "http://dbpedia.org/resource/Winmostar", "http://dbpedia.org/resource/Winplot", "http://dbpedia.org/resource/Wirecast", "http://dbpedia.org/resource/WiredTiger", "http://dbpedia.org/resource/Wireshark", "http://dbpedia.org/resource/WolfSSH", "http://dbpedia.org/resource/WolfSSL", "http://dbpedia.org/resource/Wolfram_Mathematica", "http://dbpedia.org/resource/Workbench_(AmigaOS)", "http://dbpedia.org/resource/Wpa_supplicant", "http://dbpedia.org/resource/X-CD-Roast", "http://dbpedia.org/resource/X.Org_Server", "http://dbpedia.org/resource/X2x", "http://dbpedia.org/resource/XAD_(software)", "http://dbpedia.org/resource/XBill", "http://dbpedia.org/resource/XCB", "http://dbpedia.org/resource/XDM_(display_manager)", "http://dbpedia.org/resource/XForms_(toolkit)", "http://dbpedia.org/resource/XFree86", "http://dbpedia.org/resource/XMLStarlet", "http://dbpedia.org/resource/XMMS2", "http://dbpedia.org/resource/XQuartz", "http://dbpedia.org/resource/XVidCap", "http://dbpedia.org/resource/XZ_Utils", "http://dbpedia.org/resource/XaoS", "http://dbpedia.org/resource/Xdebug", "http://dbpedia.org/resource/Xed", "http://dbpedia.org/resource/Xen", "http://dbpedia.org/resource/Xephyr", "http://dbpedia.org/resource/Xinetd", "http://dbpedia.org/resource/Xlib", "http://dbpedia.org/resource/Xmove", "http://dbpedia.org/resource/XnView", "http://dbpedia.org/resource/Xombrero", "http://dbpedia.org/resource/Xplico", "http://dbpedia.org/resource/Xrdb", "http://dbpedia.org/resource/Xsnow", "http://dbpedia.org/resource/Xsupplicant", "http://dbpedia.org/resource/Xvid", "http://dbpedia.org/resource/Xwax", "http://dbpedia.org/resource/Xzgv", "http://dbpedia.org/resource/YAMBO_code", "http://dbpedia.org/resource/YASARA", "http://dbpedia.org/resource/Yate_(telephony_engine)", "http://dbpedia.org/resource/FreeSWITCH", "http://dbpedia.org/resource/GDK", "http://dbpedia.org/resource/GIFBuilder", "http://dbpedia.org/resource/LessTif", "http://dbpedia.org/resource/InnoDB", "http://dbpedia.org/resource/Xinit", "http://dbpedia.org/resource/RubyMotion", "http://dbpedia.org/resource/EGL_(API)", "http://dbpedia.org/resource/ELinks", "http://dbpedia.org/resource/ESpeak", "http://dbpedia.org/resource/Eclipse_Paho", "http://dbpedia.org/resource/Ed_(text_editor)", "http://dbpedia.org/resource/EdgeX_Foundry", "http://dbpedia.org/resource/Eggdrop", "http://dbpedia.org/resource/Julius_(software)", "http://dbpedia.org/resource/KDE_Display_Manager", "http://dbpedia.org/resource/KDevelop", "http://dbpedia.org/resource/Kamailio", "http://dbpedia.org/resource/Kannel_(telecommunications)", "http://dbpedia.org/resource/Lm_sensors", "http://dbpedia.org/resource/Logical_Volume_Manager_(Linux)", "http://dbpedia.org/resource/Lotus_1-2-3", "http://dbpedia.org/resource/Lspci", "http://dbpedia.org/resource/LuaJIT", "http://dbpedia.org/resource/LuaTeX", "http://dbpedia.org/resource/Lustre_(file_system)", "http://dbpedia.org/resource/LwIP", "http://dbpedia.org/resource/Lynx_(web_browser)", "http://dbpedia.org/resource/Off-the-Record_Messaging", "http://dbpedia.org/resource/Oidentd", "http://dbpedia.org/resource/OllyDbg", "http://dbpedia.org/resource/Oniguruma", "http://dbpedia.org/resource/OpenAFS", "http://dbpedia.org/resource/OpenAL", "http://dbpedia.org/resource/OpenBGPD", "http://dbpedia.org/resource/OpenCPN", "http://dbpedia.org/resource/OpenCTM", "http://dbpedia.org/resource/OpenCV", "http://dbpedia.org/resource/OpenCaster", "http://dbpedia.org/resource/OpenDNSSEC", "http://dbpedia.org/resource/OpenFX_(software)", "http://dbpedia.org/resource/OpenGL", "http://dbpedia.org/resource/OpenGL_SC", "http://dbpedia.org/resource/OpenIKED", "http://dbpedia.org/resource/OpenJ9", "http://dbpedia.org/resource/OpenJPEG", "http://dbpedia.org/resource/OpenLDAP", "http://dbpedia.org/resource/OpenModelica", "http://dbpedia.org/resource/OpenNTPD", "http://dbpedia.org/resource/OpenOSPFD", "http://dbpedia.org/resource/OpenPAM", "http://dbpedia.org/resource/OpenQRM", "http://dbpedia.org/resource/OpenRCT2", "http://dbpedia.org/resource/OpenResty", "http://dbpedia.org/resource/OpenSMTPD", "http://dbpedia.org/resource/OpenSSH", "http://dbpedia.org/resource/OpenSSL", "http://dbpedia.org/resource/OpenTTD", "http://dbpedia.org/resource/OpenVAS", "http://dbpedia.org/resource/OpenVPN", "http://dbpedia.org/resource/OpenVX", "http://dbpedia.org/resource/OpenWebRTC", "http://dbpedia.org/resource/Open_Management_Infrastructure", "http://dbpedia.org/resource/Open_vSwitch", "http://dbpedia.org/resource/Openbox", "http://dbpedia.org/resource/Opentracker", "http://dbpedia.org/resource/Ophcrack", "http://dbpedia.org/resource/Opkg", "http://dbpedia.org/resource/OptiX", "http://dbpedia.org/resource/Oracle_Database", "http://dbpedia.org/resource/Oracle_VM_Server_for_x86", "http://dbpedia.org/resource/Oracle_iPlanet_Web_Server", "http://dbpedia.org/resource/OrangeFS", "http://dbpedia.org/resource/Orange_(software)", "http://dbpedia.org/resource/OrionVM", "http://dbpedia.org/resource/Osmocom", "http://dbpedia.org/resource/OutGuess", "http://dbpedia.org/resource/Owl_Scientific_Computing", "http://dbpedia.org/resource/Serpent_(software)", "http://dbpedia.org/resource/Shared_Source_Common_Language_Infrastructure", "http://dbpedia.org/resource/Shotcut", "http://dbpedia.org/resource/ShredIt", "http://dbpedia.org/resource/Shyster_(expert_system)", "http://dbpedia.org/resource/Siag_Office", "http://dbpedia.org/resource/Sigrok", "http://dbpedia.org/resource/Core_Foundation", "http://dbpedia.org/resource/Sparse", "http://dbpedia.org/resource/Spartan_(chemistry_software)", "http://dbpedia.org/resource/Speed_Dreams", "http://dbpedia.org/resource/SpiderMonkey", "http://dbpedia.org/resource/Split_(Unix)", "http://dbpedia.org/resource/Spread_Toolkit", "http://dbpedia.org/resource/Squeezelite", "http://dbpedia.org/resource/SquidNT", "http://dbpedia.org/resource/Stacheldraht", "http://dbpedia.org/resource/Stackless_Python", "http://dbpedia.org/resource/Staden_Package", "http://dbpedia.org/resource/StarLogo", "http://dbpedia.org/resource/Starcounter", "http://dbpedia.org/resource/StatXact", "http://dbpedia.org/resource/Stata", "http://dbpedia.org/resource/State_Threads", "http://dbpedia.org/resource/Steinberg_Cubase", "http://dbpedia.org/resource/Sterling_(program)", "http://dbpedia.org/resource/Netscape_Mail_&_Newsgroups", "http://dbpedia.org/resource/Xynth", "http://dbpedia.org/resource/Yacc", "http://dbpedia.org/resource/Pspell", "http://dbpedia.org/resource/BibDesk", "http://dbpedia.org/resource/Binary_Ninja", "http://dbpedia.org/resource/Bioctl", "http://dbpedia.org/resource/BitKeeper", "http://dbpedia.org/resource/BitPim", "http://dbpedia.org/resource/BitchX", "http://dbpedia.org/resource/BitlBee", "http://dbpedia.org/resource/Blend4Web", "http://dbpedia.org/resource/BlueGriffon", "http://dbpedia.org/resource/Bluefish_(software)", "http://dbpedia.org/resource/Bnetd", "http://dbpedia.org/resource/Boehm_garbage_collector", "http://dbpedia.org/resource/Hw.sensors", "http://dbpedia.org/resource/Hybris_(software)", "http://dbpedia.org/resource/Hydra_(software)", "http://dbpedia.org/resource/Hypermail", "http://dbpedia.org/resource/I3_(window_manager)", "http://dbpedia.org/resource/IA_Writer", "http://dbpedia.org/resource/IBM_Db2", "http://dbpedia.org/resource/IOzone", "http://dbpedia.org/resource/IPOP", "http://dbpedia.org/resource/IPPOLIT", "http://dbpedia.org/resource/IPXE", "http://dbpedia.org/resource/IW_(game_engine)", "http://dbpedia.org/resource/IWork", "http://dbpedia.org/resource/Icecast", "http://dbpedia.org/resource/Id_Tech_3", "http://dbpedia.org/resource/IdeaList", "http://dbpedia.org/resource/Iftop", "http://dbpedia.org/resource/Ii_(IRC_client)", "http://dbpedia.org/resource/ImageMagick", "http://dbpedia.org/resource/InSSIDer", "http://dbpedia.org/resource/Indent_(Unix)", "http://dbpedia.org/resource/Kino_(software)", "http://dbpedia.org/resource/Kmscon", "http://dbpedia.org/resource/Komodo_(chess)", "http://dbpedia.org/resource/Komodo_Edit", "http://dbpedia.org/resource/Komodo_IDE", "http://dbpedia.org/resource/KornShell", "http://dbpedia.org/resource/Kyoto_Common_Lisp", "http://dbpedia.org/resource/Listaller", "http://dbpedia.org/resource/LiteSpeed_Web_Server", "http://dbpedia.org/resource/Little_CMS", "http://dbpedia.org/resource/MiKTeX", "http://dbpedia.org/resource/MicroPython", "http://dbpedia.org/resource/MicroSIP", "http://dbpedia.org/resource/Microsoft_SQL_Server", "http://dbpedia.org/resource/Midnight_Commander", "http://dbpedia.org/resource/Mimalloc", "http://dbpedia.org/resource/MinGW", "http://dbpedia.org/resource/Ming_library", "http://dbpedia.org/resource/Mingw-w64", "http://dbpedia.org/resource/MiniGL", "http://dbpedia.org/resource/Minicom", "http://dbpedia.org/resource/Minimo", "http://dbpedia.org/resource/Mintty", "http://dbpedia.org/resource/Miranda_IM", "http://dbpedia.org/resource/Miredo", "http://dbpedia.org/resource/P.I.P.S.", "http://dbpedia.org/resource/P0f", "http://dbpedia.org/resource/PARI/GP", "http://dbpedia.org/resource/PCem", "http://dbpedia.org/resource/PForth", "http://dbpedia.org/resource/PHYLIP", "http://dbpedia.org/resource/PIC_(markup_language)", "http://dbpedia.org/resource/PLANTA_Project", "http://dbpedia.org/resource/PLplot", "http://dbpedia.org/resource/PPSSPP", "http://dbpedia.org/resource/PROJ", "http://dbpedia.org/resource/PSIPRED", "http://dbpedia.org/resource/PSPP", "http://dbpedia.org/resource/PTGui", "http://dbpedia.org/resource/PUPS_P3", "http://dbpedia.org/resource/PVCS", "http://dbpedia.org/resource/PackageKit", "http://dbpedia.org/resource/Panda3D", "http://dbpedia.org/resource/Pandas_(software)", "http://dbpedia.org/resource/Pango", "http://dbpedia.org/resource/Panoweaver", "http://dbpedia.org/resource/ParaView", "http://dbpedia.org/resource/Parallel_Virtual_File_System", "http://dbpedia.org/resource/Parallel_Virtual_Machine", "http://dbpedia.org/resource/Parrot_virtual_machine", "http://dbpedia.org/resource/Parsec_(software)", "http://dbpedia.org/resource/Partclone", "http://dbpedia.org/resource/Rsync", "http://dbpedia.org/resource/Rsyslog", "http://dbpedia.org/resource/Ruby_(programming_language)", "http://dbpedia.org/resource/Ruby_MRI", "http://dbpedia.org/resource/Rufus_(software)", "http://dbpedia.org/resource/Runit", "http://dbpedia.org/resource/Rzip", "http://dbpedia.org/resource/SAP_ERP", "http://dbpedia.org/resource/SAS_(software)", "http://dbpedia.org/resource/SCM_(Scheme_implementation)", "http://dbpedia.org/resource/SCST", "http://dbpedia.org/resource/SILK", "http://dbpedia.org/resource/SIMH", "http://dbpedia.org/resource/SIOD", "http://dbpedia.org/resource/SIP_(software)", "http://dbpedia.org/resource/SK1_(program)", "http://dbpedia.org/resource/SLinCA@Home", "http://dbpedia.org/resource/SMPEG", "http://dbpedia.org/resource/Executor_(software)", "http://dbpedia.org/resource/FORM_(symbolic_manipulation_system)", "http://dbpedia.org/resource/Finch_(software)", "http://dbpedia.org/resource/GLX", "http://dbpedia.org/resource/GPM_(software)", "http://dbpedia.org/resource/Gnulib", "http://dbpedia.org/resource/Haiku_Applications", "http://dbpedia.org/resource/Haiku_Depot", "http://dbpedia.org/resource/Halalgoogling", "http://dbpedia.org/resource/RTLinux", "http://dbpedia.org/resource/OpenSC", "http://dbpedia.org/resource/Mod_qos", "http://dbpedia.org/resource/Yudit", "http://dbpedia.org/resource/ZBar", "http://dbpedia.org/resource/ZBrush", "http://dbpedia.org/resource/ZMailer", "http://dbpedia.org/resource/ZMap_(software)", "http://dbpedia.org/resource/Z_shell", "http://dbpedia.org/resource/Zabbix", "http://dbpedia.org/resource/Zathura_(document_viewer)", "http://dbpedia.org/resource/Zend_Engine", "http://dbpedia.org/resource/ZeroVM", "http://dbpedia.org/resource/Zerynth", "http://dbpedia.org/resource/Zlib", "http://dbpedia.org/resource/Zstd", "http://dbpedia.org/resource/Zuse_Institute_Berlin", "http://dbpedia.org/resource/Ipconfig", "http://dbpedia.org/resource/Ircle", "http://dbpedia.org/resource/NicheStack_TCP/IPv4", "http://dbpedia.org/resource/Video4Linux", "http://dbpedia.org/resource/MySQL_Archive", "http://dbpedia.org/resource/Se_(text_editor)", "http://dbpedia.org/resource/MarkLogic_Server", "http://dbpedia.org/resource/Sysbench"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/artist> <http://dbpedia.org/resource/Cirque_du_Soleil_discography> . ?uri <http://dbpedia.org/property/artist> ?x . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/director> <http://dbpedia.org/resource/Orson_Welles> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": ["http://dbpedia.org/resource/Filming_Othello", "http://dbpedia.org/resource/Filming_The_Trial", "http://dbpedia.org/resource/Moby_Dick_(unfinished_film)", "http://dbpedia.org/resource/Around_the_World_with_Orson_Welles", "http://dbpedia.org/resource/The_Deep_(unfinished_film)", "http://dbpedia.org/resource/Vienna_(film)", "http://dbpedia.org/resource/The_Miracle_of_St._Anne", "http://dbpedia.org/resource/The_Fountain_of_Youth_(film)", "http://dbpedia.org/resource/The_Lady_from_Shanghai", "http://dbpedia.org/resource/The_Magnificent_Ambersons_(film)", "http://dbpedia.org/resource/The_Merchant_of_Venice_(1969_film)", "http://dbpedia.org/resource/The_Other_Side_of_the_Wind", "http://dbpedia.org/resource/The_Stranger_(1946_film)", "http://dbpedia.org/resource/The_Trial_(1962_film)", "http://dbpedia.org/resource/The_Heroine", "http://dbpedia.org/resource/Citizen_Kane", "http://dbpedia.org/resource/Citizen_Kane_trailer", "http://dbpedia.org/resource/The_Immortal_Story", "http://dbpedia.org/resource/Mr._Arkadin", "http://dbpedia.org/resource/Too_Much_Johnson_(1938_film)", "http://dbpedia.org/resource/Touch_of_Evil", "http://dbpedia.org/resource/Chimes_at_Midnight", "http://dbpedia.org/resource/Twelfth_Night_(1933_film)", "http://dbpedia.org/resource/Don_Quixote_(unfinished_film)", "http://dbpedia.org/resource/One_Man_Band_(unfinished_film)", "http://dbpedia.org/resource/Macbeth_(1948_film)", "http://dbpedia.org/resource/Three_Cases_of_Murder", "http://dbpedia.org/resource/Orson_Welles'_Magic_Show", "http://dbpedia.org/resource/Othello_(1951_film)", "http://dbpedia.org/resource/Black_Magic_(1949_film)"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/discoverer> <http://dbpedia.org/resource/Urbain_Le_Verrier> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Planet>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cambodian_Democrats> <http://dbpedia.org/property/hubs> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/crosses> <http://dbpedia.org/resource/Box_girder_bridge> . ?x <http://dbpedia.org/ontology/river> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/party> <http://dbpedia.org/resource/Austria> . ?x <http://dbpedia.org/property/membership> ?uri }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/currentclub> <http://dbpedia.org/resource/Jason_Hayne> . ?x <http://dbpedia.org/ontology/team> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/Richard_Taylor_(colonel)> . ?x <http://dbpedia.org/ontology/combatant> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/associatedMusicalArtist> <http://dbpedia.org/resource/Tangerine_Dream> . ?x <http://dbpedia.org/property/album> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/language> <http://dbpedia.org/resource/Germanic_languages> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Writer>}"}, "answers": ["http://dbpedia.org/resource/Bae_Suah"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/employer> <http://dbpedia.org/resource/ITV_(TV_network)> . }"}, "answers": ["66"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/author> <http://dbpedia.org/resource/Carl_Sagan> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book>}"}, "answers": ["http://dbpedia.org/resource/The_Demon-Haunted_World", "http://dbpedia.org/resource/Billions_and_Billions", "http://dbpedia.org/resource/Cosmos_(Sagan_book)", "http://dbpedia.org/resource/Broca's_Brain", "http://dbpedia.org/resource/The_Dragons_of_Eden", "http://dbpedia.org/resource/Pale_Blue_Dot_(book)", "http://dbpedia.org/resource/The_Varieties_of_Scientific_Experience", "http://dbpedia.org/resource/Contact_(novel)", "http://dbpedia.org/resource/The_Cosmic_Connection"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/voice> <http://dbpedia.org/resource/Peanuts_Motion_Comics> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Thomas_Secunda> <http://dbpedia.org/ontology/employer> ?x . ?x <http://dbpedia.org/property/owner> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/regionServed> <http://dbpedia.org/resource/Mid_Wales> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/nationality> <http://dbpedia.org/resource/British_people> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": ["http://dbpedia.org/resource/David_M._Thompson", "http://dbpedia.org/resource/Anya_Camilleri", "http://dbpedia.org/resource/Gordon_Hessler", "http://dbpedia.org/resource/Steven_Lewis_Simpson", "http://dbpedia.org/resource/Chris_New"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/birthPlace> <http://dbpedia.org/resource/United_States> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MilitaryPerson>}"}, "answers": ["http://dbpedia.org/resource/Allen_Thiele", "http://dbpedia.org/resource/Alvin_B._Koeneman", "http://dbpedia.org/resource/Andrew_B._Willison", "http://dbpedia.org/resource/Andrew_Goodpaster", "http://dbpedia.org/resource/Andrew_J._Weaher", "http://dbpedia.org/resource/Andrew_Porter_(Revolutionary_War_officer)", "http://dbpedia.org/resource/Alexander_Gardner_(soldier)", "http://dbpedia.org/resource/Dan_Blaine", "http://dbpedia.org/resource/Dan_Burton", "http://dbpedia.org/resource/Dan_Lederman", "http://dbpedia.org/resource/Daniel_R._Schroeder", "http://dbpedia.org/resource/David_A._Korn", "http://dbpedia.org/resource/David_C._Nichols", "http://dbpedia.org/resource/David_C._Richardson_(admiral)", "http://dbpedia.org/resource/David_E._White", "http://dbpedia.org/resource/David_H._Ohle", "http://dbpedia.org/resource/David_Robert_Wingate", "http://dbpedia.org/resource/Van_N._Backman", "http://dbpedia.org/resource/Vance_Wilkins", "http://dbpedia.org/resource/Verne_Orr", "http://dbpedia.org/resource/Vernon_Prichard", "http://dbpedia.org/resource/Vincent_Patriarca", "http://dbpedia.org/resource/W._A._Parham", "http://dbpedia.org/resource/Walter_D._Druen_Jr.", "http://dbpedia.org/resource/Walter_E._Carter_Jr.", "http://dbpedia.org/resource/Walter_E._Lauer", "http://dbpedia.org/resource/Walter_Goodale_Morrill", "http://dbpedia.org/resource/Warren_S._Snow", "http://dbpedia.org/resource/Dick_H._Guinn", "http://dbpedia.org/resource/Dick_Van_Orden", "http://dbpedia.org/resource/Al_Melvin_(politician)", "http://dbpedia.org/resource/Alan_G._Sharp", "http://dbpedia.org/resource/Albert_Baciocco", "http://dbpedia.org/resource/Albert_Sale", "http://dbpedia.org/resource/Alex_Minsky", "http://dbpedia.org/resource/Arthur_B._Engel", "http://dbpedia.org/resource/Augustus_Henry_Seward", "http://dbpedia.org/resource/Augustus_I._Robbins", "http://dbpedia.org/resource/Benedict_L._Stabile", "http://dbpedia.org/resource/Benjamin_M._Chiswell", "http://dbpedia.org/resource/Bernard_Taylor_(Medal_of_Honor)", "http://dbpedia.org/resource/Francis_C._Green", "http://dbpedia.org/resource/Francis_Oliver_(Medal_of_Honor)", "http://dbpedia.org/resource/Frank_A._Keating", "http://dbpedia.org/resource/Frank_F._Ledford_Jr.", "http://dbpedia.org/resource/Frank_Gay_Clarke", "http://dbpedia.org/resource/Frank_J._Grass", "http://dbpedia.org/resource/Frank_T._Mildren", "http://dbpedia.org/resource/Frank_W._Johnson", "http://dbpedia.org/resource/Fred_L._Walker", "http://dbpedia.org/resource/Frederick_C._Turner", "http://dbpedia.org/resource/Frederick_Jarvis", "http://dbpedia.org/resource/Frederick_S._Neilon", "http://dbpedia.org/resource/Frederick_Townsend_Ward", "http://dbpedia.org/resource/Frederick_W._M._Holliday", "http://dbpedia.org/resource/G._Alvin_Massenburg", "http://dbpedia.org/resource/Garland_Wright", "http://dbpedia.org/resource/George_Bacon_(CIA_officer)", "http://dbpedia.org/resource/George_E._Schafer", "http://dbpedia.org/resource/George_P._Steele", "http://dbpedia.org/resource/George_R._Stotser", "http://dbpedia.org/resource/George_Roudebush", "http://dbpedia.org/resource/George_S._Blake", "http://dbpedia.org/resource/George_W._Hansbrough", "http://dbpedia.org/resource/George_Windle_Read", "http://dbpedia.org/resource/Hank_Stackpole", "http://dbpedia.org/resource/Harold_C._Ostertag", "http://dbpedia.org/resource/Harold_L._George", "http://dbpedia.org/resource/Harold_M._Koenig", "http://dbpedia.org/resource/Harry_C._Wheeler", "http://dbpedia.org/resource/Harry_J._Mott_III", "http://dbpedia.org/resource/Harry_M._Wurzbach", "http://dbpedia.org/resource/Harry_March", "http://dbpedia.org/resource/Harvey_E._Brown_Jr.", "http://dbpedia.org/resource/Sam_W._Westbrook_III", "http://dbpedia.org/resource/Sammy_L._Davis", "http://dbpedia.org/resource/Samuel_Tankersley_Williams", "http://dbpedia.org/resource/Samuel_Tilden_Ansell", "http://dbpedia.org/resource/Sandra_A._Gregory", "http://dbpedia.org/resource/T._Cooper_Evans", "http://dbpedia.org/resource/Ted_F._Bowlds", "http://dbpedia.org/resource/Wayne_G._Shear_Jr.", "http://dbpedia.org/resource/Wilbur_N._Taylor", "http://dbpedia.org/resource/Willard_Stewart_Paul", "http://dbpedia.org/resource/William_A._Brown_(admiral)", "http://dbpedia.org/resource/William_B._Ault", "http://dbpedia.org/resource/William_C._Bryan", "http://dbpedia.org/resource/William_C._Lee", "http://dbpedia.org/resource/William_C._Norris_(general)", "http://dbpedia.org/resource/William_D._Edwards", "http://dbpedia.org/resource/William_E._Richey", "http://dbpedia.org/resource/William_F._Ward_Jr.", "http://dbpedia.org/resource/William_G._Haan", "http://dbpedia.org/resource/William_Gordon_Rutherfurd", "http://dbpedia.org/resource/William_H._H._Morris_Jr.", "http://dbpedia.org/resource/William_H._Reno", "http://dbpedia.org/resource/William_H._Rowden", "http://dbpedia.org/resource/William_H._Strayer", "http://dbpedia.org/resource/William_Hathaway", "http://dbpedia.org/resource/William_Herbert_Allaire_Jr.", "http://dbpedia.org/resource/William_J._Hancock", "http://dbpedia.org/resource/William_L._Sibert", "http://dbpedia.org/resource/William_Logan_Crittenden", "http://dbpedia.org/resource/William_Lovenstein", "http://dbpedia.org/resource/William_M._Miley", "http://dbpedia.org/resource/William_O'Neill_(Medal_of_Honor)", "http://dbpedia.org/resource/William_Osborn_(Medal_of_Honor)", "http://dbpedia.org/resource/William_Overstreet_Jr.", "http://dbpedia.org/resource/William_P._Driscoll", "http://dbpedia.org/resource/William_P._Mack", "http://dbpedia.org/resource/William_P._Yarborough", "http://dbpedia.org/resource/William_R._Etnyre", "http://dbpedia.org/resource/William_R._Smedberg_III", "http://dbpedia.org/resource/William_Raborn", "http://dbpedia.org/resource/William_Reed_(Medal_of_Honor)", "http://dbpedia.org/resource/William_S._Schwob", "http://dbpedia.org/resource/William_VanMeter_Alford_Jr.", "http://dbpedia.org/resource/William_Washington_Larsen", "http://dbpedia.org/resource/Frank_Tolan", "http://dbpedia.org/resource/Anthony_A._Less", "http://dbpedia.org/resource/Anthony_G._Crutchfield", "http://dbpedia.org/resource/Anthony_J._Burshnick", "http://dbpedia.org/resource/Aquilla_Coonrod", "http://dbpedia.org/resource/Archibald_Scales", "http://dbpedia.org/resource/Emil_Kapaun", "http://dbpedia.org/resource/Erasmus_Burt", "http://dbpedia.org/resource/Erastus_Corning_2nd", "http://dbpedia.org/resource/Eric_A._Trent", "http://dbpedia.org/resource/Ervin_J._Rokke", "http://dbpedia.org/resource/Eugene_Smith_(aviator)", "http://dbpedia.org/resource/Gerald_E._Miller", "http://dbpedia.org/resource/Gerald_T._Bartlett", "http://dbpedia.org/resource/Glenn_K._Rieth", "http://dbpedia.org/resource/Marcus_A._Anderson", "http://dbpedia.org/resource/Marcus_Simon", "http://dbpedia.org/resource/Mark_D._Harnitchek", "http://dbpedia.org/resource/Martin_H._Daniell", "http://dbpedia.org/resource/Martin_Lancaster", "http://dbpedia.org/resource/Mary_Fields_Hall", "http://dbpedia.org/resource/Poole_England", "http://dbpedia.org/resource/Terrance_T._Etnyre", "http://dbpedia.org/resource/Terry_Goddard", "http://dbpedia.org/resource/Thaddeus_B._Glover", "http://dbpedia.org/resource/Jacob_Sanford", "http://dbpedia.org/resource/Brad_Mooney", "http://dbpedia.org/resource/Bruce_Laingen", "http://dbpedia.org/resource/Jack_W._Hill", "http://dbpedia.org/resource/Jacob_L._Shuford", "http://dbpedia.org/resource/James_A._Winnefeld_Sr.", "http://dbpedia.org/resource/James_Ancil_Shipton", "http://dbpedia.org/resource/James_C._Card", "http://dbpedia.org/resource/James_C._Irwin", "http://dbpedia.org/resource/James_Edward_Hanger", "http://dbpedia.org/resource/James_F._Ayers", "http://dbpedia.org/resource/James_Francis_McIndoe", "http://dbpedia.org/resource/James_H._Turpin", "http://dbpedia.org/resource/James_Jackson_(Medal_of_Honor)", "http://dbpedia.org/resource/James_L._Bradley", "http://dbpedia.org/resource/James_L._Williams", "http://dbpedia.org/resource/James_R._Brown", "http://dbpedia.org/resource/James_R._Hildreth", "http://dbpedia.org/resource/James_W._Kelly", "http://dbpedia.org/resource/Janet_C._Wolfenbarger", "http://dbpedia.org/resource/Kavon_Hakimzadeh", "http://dbpedia.org/resource/Ken_Stolle", "http://dbpedia.org/resource/Kent_J._Carroll", "http://dbpedia.org/resource/Max_Baratz", "http://dbpedia.org/resource/Max_W._Noah", "http://dbpedia.org/resource/Ralph_C._Smith", "http://dbpedia.org/resource/Raphael_Zengel", "http://dbpedia.org/resource/Raymond_J._Bowman", "http://dbpedia.org/resource/Raymond_S._McLain", "http://dbpedia.org/resource/Reddick_Allred", "http://dbpedia.org/resource/Regina_Benjamin", "http://dbpedia.org/resource/Nantaje", "http://dbpedia.org/resource/Bernard_McBride", "http://dbpedia.org/resource/Norman_Cota", "http://dbpedia.org/resource/Clair_F._Gill", "http://dbpedia.org/resource/Claudius_E._Watts_III", "http://dbpedia.org/resource/Clay_Beauford", "http://dbpedia.org/resource/Clay_T._Buckingham", "http://dbpedia.org/resource/Cleveland_S._Rockwell", "http://dbpedia.org/resource/Clive_L._DuVal_II", "http://dbpedia.org/resource/Clyde_T._Lusk", "http://dbpedia.org/resource/Alfred_Valenzuela", "http://dbpedia.org/resource/Algernon_Ransome", "http://dbpedia.org/resource/John_J._Donnelly", "http://dbpedia.org/resource/John_Jacob_Rhodes_III", "http://dbpedia.org/resource/John_L._Ballantyne_III", "http://dbpedia.org/resource/John_L._Hall_Jr.", "http://dbpedia.org/resource/John_M._Drake", "http://dbpedia.org/resource/John_N._Christenson", "http://dbpedia.org/resource/John_P._Yount", "http://dbpedia.org/resource/John_S._Pustay", "http://dbpedia.org/resource/John_S._Tanner", "http://dbpedia.org/resource/John_Shadegg", "http://dbpedia.org/resource/John_T._Walker_(USMC)", "http://dbpedia.org/resource/John_W._Comfort", "http://dbpedia.org/resource/John_W._Hendrix", "http://dbpedia.org/resource/John_W._Nyquist", "http://dbpedia.org/resource/John_W._O'Daniel", "http://dbpedia.org/resource/Jonathan_A._Yuen", "http://dbpedia.org/resource/Joseph_Caravalho", "http://dbpedia.org/resource/Joseph_E._Tofalo", "http://dbpedia.org/resource/Joseph_Harold_Moore", "http://dbpedia.org/resource/Joseph_J._Cook", "http://dbpedia.org/resource/Joseph_J._Redden", "http://dbpedia.org/resource/Joseph_Rider_Farrington", "http://dbpedia.org/resource/Joseph_Wood_(congressman)", "http://dbpedia.org/resource/Joshua_B._Lee", "http://dbpedia.org/resource/Joycelyn_Elders", "http://dbpedia.org/resource/Scott_Studenmund", "http://dbpedia.org/resource/Irving_Goff", "http://dbpedia.org/resource/J._Bennett_Johnston", "http://dbpedia.org/resource/J._D._Williams_(admiral)", "http://dbpedia.org/resource/J._W._Hinton", "http://dbpedia.org/resource/Monte_B._Miller", "http://dbpedia.org/resource/Monte_Melkonian", "http://dbpedia.org/resource/Moses_Hardy", "http://dbpedia.org/resource/Mosess_Fishman", "http://dbpedia.org/resource/Tony_L._Cothron", "http://dbpedia.org/resource/Troy_H._Middleton", "http://dbpedia.org/resource/Troy_Kelley", "http://dbpedia.org/resource/Truman_Spangrud", "http://dbpedia.org/resource/John_O'Callaghan_(Medal_of_Honor)", "http://dbpedia.org/resource/Abu_Mansoor_Al-Amriki", "http://dbpedia.org/resource/Chalmers_Goodlin", "http://dbpedia.org/resource/Charles_A._Reeder", "http://dbpedia.org/resource/Charles_E._Larkin", "http://dbpedia.org/resource/Charles_J._Leidig", "http://dbpedia.org/resource/Charles_J._Whiting", "http://dbpedia.org/resource/Charles_Newtown_Hunter", "http://dbpedia.org/resource/Charles_S._Farnsworth", "http://dbpedia.org/resource/Charles_S._Lovell", "http://dbpedia.org/resource/Charles_Sutherland_(Surgeon_General)", "http://dbpedia.org/resource/Charles_W._Moore_Jr.", "http://dbpedia.org/resource/Charles_W._Ryder", "http://dbpedia.org/resource/Charles_Yates", "http://dbpedia.org/resource/Chris_Gibson_(New_York_politician)", "http://dbpedia.org/resource/Christopher_W._Grady", "http://dbpedia.org/resource/Stuart_S._Stryker", "http://dbpedia.org/resource/Carl_A._Strock", "http://dbpedia.org/resource/Homer_I._Lewis", "http://dbpedia.org/resource/Horace_L._McBride", "http://dbpedia.org/resource/Howard_F._Stone", "http://dbpedia.org/resource/Hugh_Joseph_Gaffey", "http://dbpedia.org/resource/L._S._Kollmorgen", "http://dbpedia.org/resource/Lance_Edward_Massey", "http://dbpedia.org/resource/LeRoy_Pope_Walker", "http://dbpedia.org/resource/Leander_H._McNelly", "http://dbpedia.org/resource/Nannasaddie", "http://dbpedia.org/resource/Don_Pratt", "http://dbpedia.org/resource/Donald_F._Hagen", "http://dbpedia.org/resource/Donald_W._Bennett", "http://dbpedia.org/resource/Duane_W._Martin", "http://dbpedia.org/resource/Dwight_H._Johnson", "http://dbpedia.org/resource/Solomon_P._Ortiz", "http://dbpedia.org/resource/Solon_Borland", "http://dbpedia.org/resource/Solon_D._Neal", "http://dbpedia.org/resource/William_H._Folly", "http://dbpedia.org/resource/Cornelius_C._Smith", "http://dbpedia.org/resource/Cornelius_Cole_Smith_Jr.", "http://dbpedia.org/resource/Cornelius_Nugteren", "http://dbpedia.org/resource/Cornelius_W._Wickersham", "http://dbpedia.org/resource/Craig_R._McKinley", "http://dbpedia.org/resource/Arthur_Dowler", "http://dbpedia.org/resource/Henry_McIver", "http://dbpedia.org/resource/Henry_Reeve_(soldier)", "http://dbpedia.org/resource/Henry_T._Waskow", "http://dbpedia.org/resource/Henry_Terrell_Jr.", "http://dbpedia.org/resource/Henry_Tureman_Allen", "http://dbpedia.org/resource/M._Caldwell_Butler", "http://dbpedia.org/resource/Manson_K._Brown", "http://dbpedia.org/resource/Richard_Bodycombe", "http://dbpedia.org/resource/Richard_C._Bethurem", "http://dbpedia.org/resource/Richard_D._Herr", "http://dbpedia.org/resource/Richard_G._Graves", "http://dbpedia.org/resource/Richard_Harding_Poff", "http://dbpedia.org/resource/Richard_Henry_Pratt", "http://dbpedia.org/resource/Richard_J._Tallman", "http://dbpedia.org/resource/Richard_K._Saxer", "http://dbpedia.org/resource/Richard_Secord", "http://dbpedia.org/resource/Richard_Sherwood_Satterlee", "http://dbpedia.org/resource/Richard_Trefry", "http://dbpedia.org/resource/Richmond_P._Hobson", "http://dbpedia.org/resource/Robert_A._McIntosh", "http://dbpedia.org/resource/Robert_B._Baldwin", "http://dbpedia.org/resource/Robert_C._Macon", "http://dbpedia.org/resource/Robert_C._Murphy_(colonel)", "http://dbpedia.org/resource/Robert_D._Beckel", "http://dbpedia.org/resource/Robert_F._Coverdale", "http://dbpedia.org/resource/Robert_F._Schoultz", "http://dbpedia.org/resource/Robert_G._Shaver", "http://dbpedia.org/resource/Robert_Gammage", "http://dbpedia.org/resource/Robert_H._Scarborough", "http://dbpedia.org/resource/Robert_J._Spane", "http://dbpedia.org/resource/Robert_L._Leuschner_Jr.", "http://dbpedia.org/resource/Robert_Lee_Bullard", "http://dbpedia.org/resource/Robert_M._Elton", "http://dbpedia.org/resource/Robert_Murray_(physician)", "http://dbpedia.org/resource/Robert_P._Griffin", "http://dbpedia.org/resource/Robert_Sink", "http://dbpedia.org/resource/Robert_T._Moeller", "http://dbpedia.org/resource/Robert_T._Nelson", "http://dbpedia.org/resource/Robert_V._Maraist", "http://dbpedia.org/resource/Rodney_P._Rempt", "http://dbpedia.org/resource/Roger_P._Scheer", "http://dbpedia.org/resource/Roger_W._Sandler", "http://dbpedia.org/resource/Richard_Campagna", "http://dbpedia.org/resource/Ezekiel_F._Clay", "http://dbpedia.org/resource/Jefferson_Van_Horne", "http://dbpedia.org/resource/Jeffrey_R._Riemer", "http://dbpedia.org/resource/Jerry_L._Unruh", "http://dbpedia.org/resource/Jerry_O._Tuttle", "http://dbpedia.org/resource/Jesse_Gove", "http://dbpedia.org/resource/Joan_Marie_Engel", "http://dbpedia.org/resource/John_A._Bradley", "http://dbpedia.org/resource/John_A._Gordon", "http://dbpedia.org/resource/John_A._Kjellstrom", "http://dbpedia.org/resource/John_A._Wharton", "http://dbpedia.org/resource/John_Bacon_McDonald", "http://dbpedia.org/resource/John_Blake_(soldier)", "http://dbpedia.org/resource/John_C._Fr\u00e9mont", "http://dbpedia.org/resource/John_C._Inglis", "http://dbpedia.org/resource/John_Christopher_Guise", "http://dbpedia.org/resource/John_F._Davidson", "http://dbpedia.org/resource/John_F._Wall", "http://dbpedia.org/resource/John_H._Gibbons_(naval_officer)", "http://dbpedia.org/resource/John_Horton_Slaughter", "http://dbpedia.org/resource/John_J._Batbie_Jr.", "http://dbpedia.org/resource/Lee_Metcalf", "http://dbpedia.org/resource/Leon_C._Covell", "http://dbpedia.org/resource/Leonard_D._Holder_Jr.", "http://dbpedia.org/resource/Leonard_H._Perroots", "http://dbpedia.org/resource/Leonard_P._Wishart_III", "http://dbpedia.org/resource/Leroy_H._Vokes", "http://dbpedia.org/resource/Lesley_J._McNair", "http://dbpedia.org/resource/Lewis_Warrington_(Medal_of_Honor)", "http://dbpedia.org/resource/Linda_J._Bird", "http://dbpedia.org/resource/Neil_M._Stevenson", "http://dbpedia.org/resource/Paxton_Hibben", "http://dbpedia.org/resource/Perry_M._Smith", "http://dbpedia.org/resource/Pete_Turnham", "http://dbpedia.org/resource/Peter_K._Cullins", "http://dbpedia.org/resource/Peter_Winston_(politician)", "http://dbpedia.org/resource/Philip_Egner", "http://dbpedia.org/resource/R._Dean_Tice", "http://dbpedia.org/resource/Theodore_G._Stroup", "http://dbpedia.org/resource/Thomas_A._Aldrich", "http://dbpedia.org/resource/Thomas_Ewing_Jr.", "http://dbpedia.org/resource/Thomas_J._Plewes", "http://dbpedia.org/resource/Thomas_Lynch_(admiral)", "http://dbpedia.org/resource/Thomas_M._Montgomery", "http://dbpedia.org/resource/Thomas_McClelland", "http://dbpedia.org/resource/Thomas_Stickney", "http://dbpedia.org/resource/Thomas_W._Stivers", "http://dbpedia.org/resource/Tim_Wirth", "http://dbpedia.org/resource/Wilma_Vaught", "http://dbpedia.org/resource/Wilson_Allen_Shoffner", "http://dbpedia.org/resource/Winfield_Dunn", "http://dbpedia.org/resource/Wycliffe_D._Toole_Jr.", "http://dbpedia.org/resource/Enrique_Sinclair", "http://dbpedia.org/resource/Eben_F._Stone", "http://dbpedia.org/resource/Ebenezer_Farrand", "http://dbpedia.org/resource/Eddie_Doyle_(American_football)", "http://dbpedia.org/resource/Edgar_R._Aston", "http://dbpedia.org/resource/Edmund_Kirby_Smith", "http://dbpedia.org/resource/Edmund_Sebree", "http://dbpedia.org/resource/Edson_Raff", "http://dbpedia.org/resource/Edward_H._Martin", "http://dbpedia.org/resource/Edward_Johnston_(Medal_of_Honor)", "http://dbpedia.org/resource/Edward_Leonard_King", "http://dbpedia.org/resource/Edward_S._Briggs", "http://dbpedia.org/resource/Edward_Sigerfoos", "http://dbpedia.org/resource/Edwin_L._Elwood", "http://dbpedia.org/resource/Eivind_Johansen", "http://dbpedia.org/resource/Elizabeth_Hight", "http://dbpedia.org/resource/Ellis_L._Perry", "http://dbpedia.org/resource/Elmer_J._Hoffman", "http://dbpedia.org/resource/Julian_Cook", "http://dbpedia.org/resource/Kareem_Rashad_Sultan_Khan", "http://dbpedia.org/resource/Lloyd_D._Brown", "http://dbpedia.org/resource/Lloyd_M._Bucher", "http://dbpedia.org/resource/Louie_Yim-qun", "http://dbpedia.org/resource/Lunsford_E._Oliver", "http://dbpedia.org/resource/Lyman_G._Bennett", "http://dbpedia.org/resource/Oran_Henderson", "http://dbpedia.org/resource/Orlando_Ward", "http://dbpedia.org/resource/Orren_R._Whiddon", "http://dbpedia.org/resource/Oscar_J._Upham", "http://dbpedia.org/resource/Oscar_L._Chapman", "http://dbpedia.org/resource/Sidney_Souers", "http://dbpedia.org/resource/Silvestre_Reyes", "http://dbpedia.org/resource/Simeon_B._Brown", "http://dbpedia.org/resource/Spark_Matsunaga", "http://dbpedia.org/resource/Stafford_LeRoy_Irwin", "http://dbpedia.org/resource/Stanley_C._Beck", "http://dbpedia.org/resource/Stanley_Eric_Reinhart", "http://dbpedia.org/resource/Stephen_Snyder-Hill", "http://dbpedia.org/resource/Bob_Kalsu", "http://dbpedia.org/resource/Bob_Vickman", "http://dbpedia.org/resource/Michael_A._Brookes", "http://dbpedia.org/resource/Michael_D._Lumpkin", "http://dbpedia.org/resource/Michael_J._Connor", "http://dbpedia.org/resource/Michael_Joseph_Lenihan", "http://dbpedia.org/resource/Michael_O'Regan_(Medal_of_Honor)", "http://dbpedia.org/resource/Michael_P._C._Carns", "http://dbpedia.org/resource/Michele_S._Jones", "http://dbpedia.org/resource/Mike_Basca", "http://dbpedia.org/resource/Millard_Harmon", "http://dbpedia.org/resource/Patrick_K._Gamble", "http://dbpedia.org/resource/Patrick_M._Hughes", "http://dbpedia.org/resource/Paul_Coverdell", "http://dbpedia.org/resource/Paul_E._Trimble", "http://dbpedia.org/resource/Paul_J._Mueller", "http://dbpedia.org/resource/Paul_Shulman", "http://dbpedia.org/resource/Paul_T._Carroll", "http://dbpedia.org/resource/Paul_Wilkins_Kendall", "http://dbpedia.org/resource/Roscoe_H._Hillenkoetter", "http://dbpedia.org/resource/Roy_E._Lindquist", "http://dbpedia.org/resource/Roy_Mackert", "http://dbpedia.org/resource/Royal_N._Moore_Jr.", "http://dbpedia.org/resource/Ry\u014d_Kurusu", "http://dbpedia.org/resource/George_W._Thompson_(Medal_of_Honor)", "http://dbpedia.org/resource/William_R._Richardson_(Medal_of_Honor)"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Steve_Romeo> <http://dbpedia.org/ontology/deathPlace> ?uri } "}, "answers": ["http://dbpedia.org/resource/United_States", "http://dbpedia.org/resource/Ranger_Peak_(Wyoming)", "http://dbpedia.org/resource/Wyoming"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/athletics> <http://dbpedia.org/resource/National_Collegiate_Athletic_Association> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/University>}"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/designer> <http://dbpedia.org/resource/Lars_Bak_(computer_programmer)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lemberger_LD20b> <http://dbpedia.org/property/birthPlace> ?uri . <http://dbpedia.org/resource/H101> <http://dbpedia.org/ontology/origin> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/birthPlace> <http://dbpedia.org/resource/Louisiana> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": ["http://dbpedia.org/resource/Alvin_Batiste", "http://dbpedia.org/resource/Alvin_Benjamin_Rubin", "http://dbpedia.org/resource/Amy_Fay", "http://dbpedia.org/resource/Andrew_Hero_Jr.", "http://dbpedia.org/resource/Andy_Bowen", "http://dbpedia.org/resource/Andy_Sperandeo", "http://dbpedia.org/resource/Damion_Jeanpiere", "http://dbpedia.org/resource/Danny_Granger", "http://dbpedia.org/resource/Dave_Bolen", "http://dbpedia.org/resource/David_Birney_(bishop)", "http://dbpedia.org/resource/David_Suhor", "http://dbpedia.org/resource/David_W._Brown", "http://dbpedia.org/resource/Dayne_Sherman", "http://dbpedia.org/resource/Dean_Cochran", "http://dbpedia.org/resource/Dee_D._Drell", "http://dbpedia.org/resource/Vance_Plauch\u00e9", "http://dbpedia.org/resource/Vaughn_Lusby", "http://dbpedia.org/resource/Victor_G._Guillory", "http://dbpedia.org/resource/Victor_S\u00e9jour", "http://dbpedia.org/resource/Victoria_Williams", "http://dbpedia.org/resource/Vincent_Timphony", "http://dbpedia.org/resource/W._G._Snuffy_Walden", "http://dbpedia.org/resource/Walter_Boasso", "http://dbpedia.org/resource/Walter_Guion", "http://dbpedia.org/resource/Warmoth_T._Gibbs", "http://dbpedia.org/resource/Dixon_Hearne", "http://dbpedia.org/resource/Heather_Christian", "http://dbpedia.org/resource/Leslie_Stowe", "http://dbpedia.org/resource/Dickson_Despommier", "http://dbpedia.org/resource/Thomas_M._Amoss", "http://dbpedia.org/resource/Mary_Ellen_Sigsbee", "http://dbpedia.org/resource/Al_Montreuil", "http://dbpedia.org/resource/Albert_Tate_Jr.", "http://dbpedia.org/resource/Alex_Pourteau", "http://dbpedia.org/resource/Alfred_Hartley", "http://dbpedia.org/resource/Alice_Lee_Moqu\u00e9", "http://dbpedia.org/resource/Benjamin_C._Dawkins_Jr.", "http://dbpedia.org/resource/Benjamin_M._Rosen", "http://dbpedia.org/resource/Benton_Reed", "http://dbpedia.org/resource/Beth_Mizell", "http://dbpedia.org/resource/Foster_Campbell", "http://dbpedia.org/resource/Frances_Fredericks", "http://dbpedia.org/resource/Frank_Burton_Ellis", "http://dbpedia.org/resource/Frank_Joseph_Polozola", "http://dbpedia.org/resource/Franklin_Foil", "http://dbpedia.org/resource/Fred_Stamps", "http://dbpedia.org/resource/Frederick_Jacob_Reagan_Heebe", "http://dbpedia.org/resource/Gaston_J._Sigur_Jr.", "http://dbpedia.org/resource/Gaston_Louis_Noel_Porterie", "http://dbpedia.org/resource/Gene_Reynolds_(politician)", "http://dbpedia.org/resource/Gene_Taylor_(Mississippi_politician)", "http://dbpedia.org/resource/George_Arceneaux", "http://dbpedia.org/resource/George_Caldwell_(Louisiana_official)", "http://dbpedia.org/resource/George_Eustis_Jr.", "http://dbpedia.org/resource/George_K._Favrot", "http://dbpedia.org/resource/George_W._Jack", "http://dbpedia.org/resource/Hagan_Landry", "http://dbpedia.org/resource/Hamilton_D._Coleman", "http://dbpedia.org/resource/Hank_Lauricella", "http://dbpedia.org/resource/Harold_Dejan", "http://dbpedia.org/resource/Harold_Sylvester", "http://dbpedia.org/resource/Tanner_Rainey", "http://dbpedia.org/resource/Taylor_Barras", "http://dbpedia.org/resource/Tazzie_Colomb", "http://dbpedia.org/resource/Ted_Ellis_(artist)", "http://dbpedia.org/resource/Wayne_P\u00e9r\u00e9", "http://dbpedia.org/resource/Wellborn_Jack", "http://dbpedia.org/resource/Whitfield_Jack", "http://dbpedia.org/resource/Whitmell_P._Martin", "http://dbpedia.org/resource/Wilbert_Rideau", "http://dbpedia.org/resource/William_D._Porter", "http://dbpedia.org/resource/William_Denis_Brown_III", "http://dbpedia.org/resource/William_Henry_Hunt_(judge)", "http://dbpedia.org/resource/William_J._Behan", "http://dbpedia.org/resource/William_Lewis_Elkin", "http://dbpedia.org/resource/William_P._Crowell", "http://dbpedia.org/resource/William_Walton_Butterworth", "http://dbpedia.org/resource/Anthony_Freeman", "http://dbpedia.org/resource/Anthony_Johnson_(defensive_lineman)", "http://dbpedia.org/resource/Archibald_(musician)", "http://dbpedia.org/resource/Archie_Williams_(singer)", "http://dbpedia.org/resource/Eric_Bieniemy", "http://dbpedia.org/resource/Eric_Skrmetta", "http://dbpedia.org/resource/Ernest_%22Doc%22_Paulin", "http://dbpedia.org/resource/Gerald_Lewis_(basketball)", "http://dbpedia.org/resource/Gia_M._Hamilton", "http://dbpedia.org/resource/Gis\u00e8le_Ruiz_Goldstein", "http://dbpedia.org/resource/Glenell_Sanders", "http://dbpedia.org/resource/Glenn_McCuen", "http://dbpedia.org/resource/Glenn_McMorris", "http://dbpedia.org/resource/Gordon_Novel", "http://dbpedia.org/resource/Marcel_Livaudais_Jr.", "http://dbpedia.org/resource/Marcia_Washington", "http://dbpedia.org/resource/Margaret_Rose_Henry", "http://dbpedia.org/resource/Marguerite_Piazza", "http://dbpedia.org/resource/Marilyn_Joi", "http://dbpedia.org/resource/Marilyn_Minter", "http://dbpedia.org/resource/Mark_Dudenhefer", "http://dbpedia.org/resource/Mark_LeBlanc", "http://dbpedia.org/resource/Marquise_Hill", "http://dbpedia.org/resource/Martin_Ransohoff", "http://dbpedia.org/resource/Marva_Wright", "http://dbpedia.org/resource/Mary_Ann_Vial_Lemmon", "http://dbpedia.org/resource/Mary_Robichaux", "http://dbpedia.org/resource/Marzieh_Hashemi", "http://dbpedia.org/resource/Terence_Blanchard", "http://dbpedia.org/resource/Teri_Anulewicz", "http://dbpedia.org/resource/Terry_A._Doughty", "http://dbpedia.org/resource/Urban_Henry", "http://dbpedia.org/resource/Mary_N._Meeker", "http://dbpedia.org/resource/Peter_Williams_(American_actor)", "http://dbpedia.org/resource/Robert_Pender", "http://dbpedia.org/resource/Jeffrey_Vitter", "http://dbpedia.org/resource/Brandon_Friedman", "http://dbpedia.org/resource/Brant_J._Pitre", "http://dbpedia.org/resource/Brian_Anthony_Jackson", "http://dbpedia.org/resource/Bryan_B._Battaglia", "http://dbpedia.org/resource/Bryan_Hymel", "http://dbpedia.org/resource/Bud_Scott", "http://dbpedia.org/resource/Jacob_Waguespack", "http://dbpedia.org/resource/Jacqueline_Ceballos", "http://dbpedia.org/resource/Jacques_Dupr\u00e9", "http://dbpedia.org/resource/James_A._Louttit", "http://dbpedia.org/resource/James_August_Comiskey", "http://dbpedia.org/resource/James_C._Bolton", "http://dbpedia.org/resource/James_C._Dever_III", "http://dbpedia.org/resource/James_D._Peterson", "http://dbpedia.org/resource/James_E._Bolin", "http://dbpedia.org/resource/James_L._Dennis", "http://dbpedia.org/resource/James_P._Pope", "http://dbpedia.org/resource/James_Travis_Trimble_Jr.", "http://dbpedia.org/resource/James_W._English", "http://dbpedia.org/resource/Jamie_Baldridge", "http://dbpedia.org/resource/Jamie_Fair", "http://dbpedia.org/resource/Jane_Margaret_Triche_Milazzo", "http://dbpedia.org/resource/Jared_Poch\u00e9", "http://dbpedia.org/resource/Jay_Aldrich", "http://dbpedia.org/resource/Jay_C._Zainey", "http://dbpedia.org/resource/Jazz_(wrestler)", "http://dbpedia.org/resource/Jean-Paul_Coussan", "http://dbpedia.org/resource/Jeannette_Knoll", "http://dbpedia.org/resource/Kate_M._Gordon", "http://dbpedia.org/resource/Katharine_Carl", "http://dbpedia.org/resource/Keith_P._Ellison", "http://dbpedia.org/resource/Ken_Layne", "http://dbpedia.org/resource/Kevin_Lewis_(defensive_back)", "http://dbpedia.org/resource/Kidd_Jordan", "http://dbpedia.org/resource/Kim_Batiste", "http://dbpedia.org/resource/Bob_Cato", "http://dbpedia.org/resource/Matthew_Gaines", "http://dbpedia.org/resource/Melvin_Hayes", "http://dbpedia.org/resource/Mem_Shannon", "http://dbpedia.org/resource/Rakeem_Boyd", "http://dbpedia.org/resource/Ralph_E._Tyson", "http://dbpedia.org/resource/Rashaad_Newsome", "http://dbpedia.org/resource/Raymond_M._Clausen_Jr.", "http://dbpedia.org/resource/Reginald_J._Brown", "http://dbpedia.org/resource/Thelton_Henderson", "http://dbpedia.org/resource/3D_Na'Tee", "http://dbpedia.org/resource/A._J._McNamara", "http://dbpedia.org/resource/Norby_Chabert", "http://dbpedia.org/resource/Norma_Holloway_Johnson", "http://dbpedia.org/resource/Joseph_Haspel", "http://dbpedia.org/resource/Clarence_Faulk", "http://dbpedia.org/resource/Clay_D._Land", "http://dbpedia.org/resource/Clemens_V._Rault", "http://dbpedia.org/resource/Cleo_Fields", "http://dbpedia.org/resource/Cliff_Sutter", "http://dbpedia.org/resource/Compton_I._White", "http://dbpedia.org/resource/Amy_Stephens", "http://dbpedia.org/resource/John_Levy_(musician)", "http://dbpedia.org/resource/John_M._Jackson", "http://dbpedia.org/resource/John_M._Lilley", "http://dbpedia.org/resource/John_Minor_Wisdom", "http://dbpedia.org/resource/John_Peltz", "http://dbpedia.org/resource/John_R._G._Pitkin", "http://dbpedia.org/resource/John_Stocks_(politician)", "http://dbpedia.org/resource/John_T._Watkins", "http://dbpedia.org/resource/John_Trice_Nixon", "http://dbpedia.org/resource/John_Victor_Parker", "http://dbpedia.org/resource/John_Volz", "http://dbpedia.org/resource/John_W._Houghtaling_II", "http://dbpedia.org/resource/John_W._deGravelles", "http://dbpedia.org/resource/Jon_Alston", "http://dbpedia.org/resource/Jonathan_Perry_(politician)", "http://dbpedia.org/resource/Joseph_Biddle_Wilkinson_Jr.", "http://dbpedia.org/resource/Joseph_Jay_Pastoriza", "http://dbpedia.org/resource/Joseph_R._West", "http://dbpedia.org/resource/Josh_Wall", "http://dbpedia.org/resource/Joy_Harden_Bradford", "http://dbpedia.org/resource/Judi_Ann_Mason", "http://dbpedia.org/resource/Sarah_S._Vance", "http://dbpedia.org/resource/Scott_Crichton_(judge)", "http://dbpedia.org/resource/Edward_Avery_McIlhenny", "http://dbpedia.org/resource/Lula_J._Davis", "http://dbpedia.org/resource/Ivan_L._R._Lemelle", "http://dbpedia.org/resource/J._C._Seaman", "http://dbpedia.org/resource/J._D._Mooney", "http://dbpedia.org/resource/Jace_Peterson", "http://dbpedia.org/resource/Jack_Murphy_Gordon", "http://dbpedia.org/resource/Moise_H._Goldstein_Sr.", "http://dbpedia.org/resource/Morey_Leonard_Sear", "http://dbpedia.org/resource/Moses_J._Liddell", "http://dbpedia.org/resource/Murphy_J._Foster", "http://dbpedia.org/resource/Nannette_Jolivette_Brown", "http://dbpedia.org/resource/Napoleon_A._Jones_Jr.", "http://dbpedia.org/resource/Toni_Graphia", "http://dbpedia.org/resource/Toni_Jo_Henry", "http://dbpedia.org/resource/Tony_Chachere", "http://dbpedia.org/resource/Troy_Hebert", "http://dbpedia.org/resource/Ivory_Harris", "http://dbpedia.org/resource/John_Guckenheimer", "http://dbpedia.org/resource/John_Hill_(screenwriter)", "http://dbpedia.org/resource/Aaron_Loup", "http://dbpedia.org/resource/Adrian_G._Duplantier", "http://dbpedia.org/resource/Adrian_Hardy", "http://dbpedia.org/resource/Adrian_Joseph_Caillouet", "http://dbpedia.org/resource/C._L._Bryant", "http://dbpedia.org/resource/Cade_Doughty", "http://dbpedia.org/resource/Caitlin_Connor", "http://dbpedia.org/resource/Calvin_A._Johnson_Jr.", "http://dbpedia.org/resource/Charles_Armstrong_(baseball)", "http://dbpedia.org/resource/Charles_E._McKenzie", "http://dbpedia.org/resource/Charles_F._Roos", "http://dbpedia.org/resource/Charles_Maurian", "http://dbpedia.org/resource/Charles_Parlange", "http://dbpedia.org/resource/Charles_Schwartz_Jr.", "http://dbpedia.org/resource/Charlice_Byrd", "http://dbpedia.org/resource/Charlton_Beattie", "http://dbpedia.org/resource/Chris_Broussard", "http://dbpedia.org/resource/Christian_Garrison", "http://dbpedia.org/resource/Chuck_Reed_(gridiron_football)", "http://dbpedia.org/resource/Antoine_Garibaldi", "http://dbpedia.org/resource/Steve_Pylant", "http://dbpedia.org/resource/Susie_Morgan", "http://dbpedia.org/resource/Suzanne_Haik_Terrell", "http://dbpedia.org/resource/Manuel_Teodoro", "http://dbpedia.org/resource/William_Lee_Brent", "http://dbpedia.org/resource/Carl_Barbier", "http://dbpedia.org/resource/Hodding_Carter_III", "http://dbpedia.org/resource/Hosea_Fortune", "http://dbpedia.org/resource/Hugh_L._Fontaine", "http://dbpedia.org/resource/Benny_Powell", "http://dbpedia.org/resource/Lance_Dunbar", "http://dbpedia.org/resource/Lansing_Leroy_Mitchell", "http://dbpedia.org/resource/Layon_Gray", "http://dbpedia.org/resource/Leander_Perez", "http://dbpedia.org/resource/Victor_E._Rillieux", "http://dbpedia.org/resource/Doc_Faustina", "http://dbpedia.org/resource/Don_Maestri", "http://dbpedia.org/resource/Don_Rogers_(politician)", "http://dbpedia.org/resource/Donn_Kushner", "http://dbpedia.org/resource/Donni_Leaycraft", "http://dbpedia.org/resource/Dorothy_Pocklington", "http://dbpedia.org/resource/Doyle_Lane", "http://dbpedia.org/resource/Dustin_Schuetter", "http://dbpedia.org/resource/E._W._Foy", "http://dbpedia.org/resource/Karl_Jaffary", "http://dbpedia.org/resource/Joseph_A._Shakspeare", "http://dbpedia.org/resource/Rickey_Minor", "http://dbpedia.org/resource/W._E._%22Bill%22_Dykes", "http://dbpedia.org/resource/Cora_Kelley_Ward", "http://dbpedia.org/resource/Dale_Archer", "http://dbpedia.org/resource/Dale_M._Erdey", "http://dbpedia.org/resource/Greg_Deichmann", "http://dbpedia.org/resource/Greg_Litton", "http://dbpedia.org/resource/Gus_Weill", "http://dbpedia.org/resource/H._Parrott_Bacot", "http://dbpedia.org/resource/Henry_Anthony_Politz", "http://dbpedia.org/resource/Henry_Clay_Sevier", "http://dbpedia.org/resource/Henry_Mentz", "http://dbpedia.org/resource/Henry_Methvin", "http://dbpedia.org/resource/Henry_Richardson_Labouisse_Jr.", "http://dbpedia.org/resource/Herbert_William_Christenberry", "http://dbpedia.org/resource/Hewitt_Bouanchaud", "http://dbpedia.org/resource/Mack_E._Barham", "http://dbpedia.org/resource/Madeline_Haikala", "http://dbpedia.org/resource/Richard_Johnson_Putnam", "http://dbpedia.org/resource/Richard_T._Haik", "http://dbpedia.org/resource/Robert_C._Smith_(political_scientist)", "http://dbpedia.org/resource/Robert_Claiborne_(American_football)", "http://dbpedia.org/resource/Robert_G._James", "http://dbpedia.org/resource/Robert_G._Jones", "http://dbpedia.org/resource/Robert_L._Mouton", "http://dbpedia.org/resource/Robert_Max_Ross", "http://dbpedia.org/resource/Robert_Neller", "http://dbpedia.org/resource/Roger_Blake_West", "http://dbpedia.org/resource/Roland_Barbay", "http://dbpedia.org/resource/Kristin_Diable", "http://dbpedia.org/resource/Ezola_Foster", "http://dbpedia.org/resource/F._Edward_H\u00e9bert", "http://dbpedia.org/resource/Fatima_Shaik", "http://dbpedia.org/resource/Fly_Young_Red", "http://dbpedia.org/resource/Barry_Milligan", "http://dbpedia.org/resource/Jefferson_B._Snyder", "http://dbpedia.org/resource/Jehu_V._Chase", "http://dbpedia.org/resource/Jenny_Craig_(entrepreneur)", "http://dbpedia.org/resource/Jeremy_Geathers", "http://dbpedia.org/resource/Jerry_Tillery", "http://dbpedia.org/resource/Jesse_Cougle", "http://dbpedia.org/resource/Jesse_Myles", "http://dbpedia.org/resource/Jessel_Ourso", "http://dbpedia.org/resource/Jim_Cason", "http://dbpedia.org/resource/Jim_Donelon", "http://dbpedia.org/resource/Joachim_O._Fern\u00e1ndez", "http://dbpedia.org/resource/Joanne_Lyles_White", "http://dbpedia.org/resource/Joby_Ogwyn", "http://dbpedia.org/resource/Joe_Martina", "http://dbpedia.org/resource/Joe_Neal", "http://dbpedia.org/resource/John_B._Babcock", "http://dbpedia.org/resource/John_B._Fournet", "http://dbpedia.org/resource/John_Bentley_Mays", "http://dbpedia.org/resource/John_Crane_(writer)", "http://dbpedia.org/resource/John_D._Ewing", "http://dbpedia.org/resource/John_Harvey_Lowery", "http://dbpedia.org/resource/John_Horton_Slaughter", "http://dbpedia.org/resource/Leonard_Smith_(American_football)", "http://dbpedia.org/resource/Lester_Balaski", "http://dbpedia.org/resource/Lil_iROCC_Williams", "http://dbpedia.org/resource/Linda_Hopkins", "http://dbpedia.org/resource/Lisa_Bero", "http://dbpedia.org/resource/Nauman_Scott", "http://dbpedia.org/resource/Newton_C._Blanchard", "http://dbpedia.org/resource/Pauline_Cushman", "http://dbpedia.org/resource/Pete_Livermore", "http://dbpedia.org/resource/Peter_Beer_(judge)", "http://dbpedia.org/resource/Peter_J._Fos", "http://dbpedia.org/resource/Peyton_Manning", "http://dbpedia.org/resource/Phanor_Breazeale", "http://dbpedia.org/resource/Phil_Guy", "http://dbpedia.org/resource/Phillip_Livas", "http://dbpedia.org/resource/Quin_Hillyer", "http://dbpedia.org/resource/Thomas_A._Drake", "http://dbpedia.org/resource/Thomas_Gilcrease", "http://dbpedia.org/resource/Thomas_J._Ryan_(admiral)", "http://dbpedia.org/resource/Timothy_Meyers", "http://dbpedia.org/resource/Tina_Chandler", "http://dbpedia.org/resource/Tom_Stagg_(judge)", "http://dbpedia.org/resource/Tommy_Perry", "http://dbpedia.org/resource/William_Wright_Heard", "http://dbpedia.org/resource/Willie_Francis", "http://dbpedia.org/resource/Woodrow_Bradley_Seals", "http://dbpedia.org/resource/Fredric_King", "http://dbpedia.org/resource/Theodore_Roe", "http://dbpedia.org/resource/Martin_L._Pipes", "http://dbpedia.org/resource/Earl_Ernest_Veron", "http://dbpedia.org/resource/Ed_Lafitte", "http://dbpedia.org/resource/Eddie_Price", "http://dbpedia.org/resource/Edgar_G._%22Sonny%22_Mouton_Jr.", "http://dbpedia.org/resource/Edmond_D\u00e9d\u00e9", "http://dbpedia.org/resource/Edward_J._McShane", "http://dbpedia.org/resource/Edward_James_Boyle_Sr.", "http://dbpedia.org/resource/Edward_T._Lewis_(politician)", "http://dbpedia.org/resource/Edwards_Barham", "http://dbpedia.org/resource/Edwin_E._Moise", "http://dbpedia.org/resource/Edwin_F._Hunter", "http://dbpedia.org/resource/Eldon_E._Fallon", "http://dbpedia.org/resource/Elizabeth_Weaver", "http://dbpedia.org/resource/Ella_Brennan", "http://dbpedia.org/resource/Elmer_R._Tapper", "http://dbpedia.org/resource/Elmo_Pearce_Lee", "http://dbpedia.org/resource/Julien_Obioha", "http://dbpedia.org/resource/Justin_Williams_(baseball)", "http://dbpedia.org/resource/Lou_Sino", "http://dbpedia.org/resource/Louis_Haynes", "http://dbpedia.org/resource/Louis_Henry_Burns", "http://dbpedia.org/resource/Luke_Hawx", "http://dbpedia.org/resource/Lurita_Doan", "http://dbpedia.org/resource/Okla_Jones_II", "http://dbpedia.org/resource/Ollie_Tyler", "http://dbpedia.org/resource/Orlando_Thomas", "http://dbpedia.org/resource/Shantrelle_P._Lewis", "http://dbpedia.org/resource/Sheila_Wills", "http://dbpedia.org/resource/Stanwood_Duval", "http://dbpedia.org/resource/Bill_Monroe_(journalist)", "http://dbpedia.org/resource/Bob_Kaufman", "http://dbpedia.org/resource/Bob_Odom", "http://dbpedia.org/resource/Bolivar_E._Kemp", "http://dbpedia.org/resource/Bolivar_Edwards_Kemp_Jr.", "http://dbpedia.org/resource/Bonnie_Davis", "http://dbpedia.org/resource/Hunter_B._Shirley", "http://dbpedia.org/resource/Big_Mike_(rapper)", "http://dbpedia.org/resource/Big_Train_Jackson", "http://dbpedia.org/resource/Kip_Holden", "http://dbpedia.org/resource/Kirk_Talbot", "http://dbpedia.org/resource/Kordell_Stewart", "http://dbpedia.org/resource/Korey_Williams", "http://dbpedia.org/resource/Micaela_Almonester,_Baroness_de_Pontalba", "http://dbpedia.org/resource/Michael_L._Kurtz", "http://dbpedia.org/resource/Michael_Pittman_Sr.", "http://dbpedia.org/resource/Michelangelo_Canale", "http://dbpedia.org/resource/Mike_Jackson_(Texas_politician)", "http://dbpedia.org/resource/Pam_Dickerson", "http://dbpedia.org/resource/Pamela_Pepper", "http://dbpedia.org/resource/Papa_Charlie_Jackson", "http://dbpedia.org/resource/Parker_Griffith", "http://dbpedia.org/resource/Pat_Screen", "http://dbpedia.org/resource/Patricia_Maxwell", "http://dbpedia.org/resource/Paul_Carmouche", "http://dbpedia.org/resource/Paul_H._Maloney", "http://dbpedia.org/resource/Paul_Hollis", "http://dbpedia.org/resource/Paul_Octave_H\u00e9bert", "http://dbpedia.org/resource/Ronnie_Haliburton", "http://dbpedia.org/resource/Rosa_Rio", "http://dbpedia.org/resource/Royd_Anderson", "http://dbpedia.org/resource/Rush_Wimberly", "http://dbpedia.org/resource/Rusty_Staub", "http://dbpedia.org/resource/S._Maurice_Hicks_Jr.", "http://dbpedia.org/resource/Sarah_Dyer", "http://dbpedia.org/resource/Murder_of_Oneal_Moore", "http://dbpedia.org/resource/Charles_Emery_Tooke_Jr.", "http://dbpedia.org/resource/Ralph_Norman_Bauer", "http://dbpedia.org/resource/P._J._Boudousqu\u00e9", "http://dbpedia.org/resource/William_S._Peck_Sr."]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/9_to_5_(musical)> <http://dbpedia.org/property/musicBy> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/keyPerson> <http://dbpedia.org/resource/Kazuo_Hirai> . ?uri <http://dbpedia.org/property/builder> ?x . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Rostov-Glavny> <http://dbpedia.org/ontology/servingRailwayLine> ?uri } "}, "answers": ["http://dbpedia.org/resource/Krasnodar"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/league> <http://dbpedia.org/resource/National_Hockey_League> . ?x <http://dbpedia.org/ontology/team> ?uri . }"}, "answers": ["1226"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/deathPlace> <http://dbpedia.org/resource/St._Petersburg> . }"}, "answers": ["102"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/ingredient> <http://dbpedia.org/resource/Coconut> . ?x <http://dbpedia.org/ontology/country> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jeffrey_Vanan> <http://dbpedia.org/ontology/country> ?uri . <http://dbpedia.org/resource/American_Mediterranean_Sea> <http://dbpedia.org/property/origin> ?uri} "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/owningCompany> <http://dbpedia.org/resource/Turner_Broadcasting_System> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pandaruan_Bridge> <http://dbpedia.org/property/maintainedBy> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/dam> <http://dbpedia.org/resource/Zambia> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/River>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cahora_Bassa> <http://dbpedia.org/property/inflow> ?uri } "}, "answers": ["http://dbpedia.org/resource/Zambezi_River"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Fikret_Orman> <http://dbpedia.org/ontology/almaMater> ?uri } "}, "answers": ["http://dbpedia.org/resource/University_of_Florida", "http://dbpedia.org/resource/Y\u0131ld\u0131z_Technical_University"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Evraz> <http://dbpedia.org/ontology/owningCompany> ?uri } "}, "answers": ["http://dbpedia.org/resource/Roman_Abramovich"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Berlin> . ?x <http://dbpedia.org/ontology/leader> ?uri . }"}, "answers": ["47"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/relative> <http://dbpedia.org/resource/Barry_Voight> . }"}, "answers": ["http://dbpedia.org/resource/Angelina_Jolie"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/state> <http://dbpedia.org/resource/Mecklenburg-Vorpommern> . ?x <http://dbpedia.org/property/cities> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/creator> <http://dbpedia.org/resource/Creature_Comforts> . ?x <http://dbpedia.org/property/awards> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/area> <http://dbpedia.org/resource/Monticello,_Maine> . ?x <http://dbpedia.org/property/area> ?uri }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/artist> <http://dbpedia.org/resource/Katy_B> . ?x <http://dbpedia.org/property/label> ?uri . }"}, "answers": ["20"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/2015_Pro_Duta_FC_season> <http://dbpedia.org/property/stadium> ?uri } "}, "answers": ["http://dbpedia.org/resource/Teladan_Stadium", "http://dbpedia.org/resource/Medan", "http://dbpedia.org/resource/Stadio_degli_Oliveti", "http://dbpedia.org/resource/Indonesia", "Cavanis Stadium", "SGU BSD-City Field", "SPH Karawaci Field", "Stadio Buon Riposo", "Stadio Cavanis", "T.D. Pardede Field"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pointe_d'Aveneyre> <http://dbpedia.org/ontology/mountainRange> ?uri } "}, "answers": ["http://dbpedia.org/resource/Swiss_Alps"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Jerry_Bock> . ?x <http://dbpedia.org/ontology/basedOn> ?uri . }"}, "answers": ["12"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/editing> <http://dbpedia.org/resource/Mark_Stevens_(film_editor)> . ?uri <http://dbpedia.org/ontology/director> <http://dbpedia.org/resource/Joel_Schumacher> . }"}, "answers": ["7"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/judges> <http://dbpedia.org/resource/Ludacris> . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/league> <http://dbpedia.org/resource/Argentine_Primera_Divisi\u00f3n> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Youthclubs>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/deathCause> <http://dbpedia.org/resource/Hanging> . ?x <http://dbpedia.org/ontology/opponent> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Francis_Bacon", "http://dbpedia.org/resource/Edward_Coke"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lawrence_Okoye> <http://dbpedia.org/property/nationality> ?uri } "}, "answers": ["http://dbpedia.org/resource/Great_Britain"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/party> <http://dbpedia.org/resource/Barasat_(Lok_Sabha_constituency)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Politician>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/album> <http://dbpedia.org/resource/Harry_and_the_Potters_(album)> . ?x <http://dbpedia.org/ontology/genre> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Arthur_G\u00e9gei> <http://dbpedia.org/ontology/successor> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/editing> <http://dbpedia.org/resource/Mark_Stevens_(film_editor)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": ["14"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Journal_of_Cerebral_Blood_Flow_&_Metabolism> <http://dbpedia.org/property/academicDiscipline> ?uri . <http://dbpedia.org/resource/Ragout_fin> <http://dbpedia.org/ontology/ingredient> ?uri} "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/starring> <http://dbpedia.org/resource/Jason_Carter> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/mascot> <http://dbpedia.org/resource/Aubie> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SportsTeam>}"}, "answers": ["http://dbpedia.org/resource/Auburn_Tigers"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/placeOfBurial> <http://dbpedia.org/resource/Rome> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Royalty>}"}, "answers": ["http://dbpedia.org/resource/Rory_O'Donnell,_1st_Earl_of_Tyrconnell"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cornell_University_Press> <http://dbpedia.org/property/parent> ?uri . <http://dbpedia.org/resource/Mario_Garc\u00eda_Menocal> <http://dbpedia.org/ontology/almaMater> ?uri} "}, "answers": ["http://dbpedia.org/resource/Cornell_University"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/birthPlace> <http://dbpedia.org/resource/England> . ?x <http://dbpedia.org/ontology/religion> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Anglicanism", "http://dbpedia.org/resource/Christianity", "http://dbpedia.org/resource/Anglican_Communion", "http://dbpedia.org/resource/Buddhism", "http://dbpedia.org/resource/Catholic_Church", "http://dbpedia.org/resource/Nonconformist_(Protestantism)", "http://dbpedia.org/resource/Church_of_England", "http://dbpedia.org/resource/Protestantism", "http://dbpedia.org/resource/Latter_Day_Saint_movement", "http://dbpedia.org/resource/Puritans", "http://dbpedia.org/resource/Unitarianism", "http://dbpedia.org/resource/Methodism", "http://dbpedia.org/resource/Islam", "http://dbpedia.org/resource/Church_of_Ireland", "http://dbpedia.org/resource/Traditionalist_Catholicism", "http://dbpedia.org/resource/Presbyterianism", "http://dbpedia.org/resource/Congregational_church", "http://dbpedia.org/resource/Latin_Church", "http://dbpedia.org/resource/Theravada"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/MacKenzie_Miller> <http://dbpedia.org/ontology/birthPlace> ?uri } "}, "answers": ["http://dbpedia.org/resource/Versailles,_Kentucky", "http://dbpedia.org/resource/United_States", "http://dbpedia.org/resource/Kentucky"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/canonizedBy> <http://dbpedia.org/resource/Agatha_of_Sicily> . ?x <http://dbpedia.org/ontology/birthPlace> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/awards> <http://dbpedia.org/resource/Royal_Astronomical_Society> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}"}, "answers": ["http://dbpedia.org/resource/Stephen_R._Bourne", "http://dbpedia.org/resource/Patrick_Moore"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/occupation> <http://dbpedia.org/resource/Church_of_England> . ?x <http://dbpedia.org/property/deathPlace> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Scarborough,_North_Yorkshire", "http://dbpedia.org/resource/Yorkshire", "Bardfield, Sillery, Canada East", "http://dbpedia.org/resource/Australia", "http://dbpedia.org/resource/Queensland", "http://dbpedia.org/resource/Greenslopes", "http://dbpedia.org/resource/Madeley,_Shropshire", "Boulogne, France", "http://dbpedia.org/resource/Bengal_Presidency", "http://dbpedia.org/resource/British_India", "http://dbpedia.org/resource/Kolkata", "http://dbpedia.org/resource/England", "http://dbpedia.org/resource/Broughton,_Northamptonshire", "http://dbpedia.org/resource/Northamptonshire", "http://dbpedia.org/resource/Cumberland", "http://dbpedia.org/resource/St_Bees", "http://dbpedia.org/resource/Tahiti", "Mayfair, Middlesex, Great Britain", "http://dbpedia.org/resource/Bournemouth", "Stand, Manchester"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/address> <http://dbpedia.org/resource/Renaissance_Center> } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/restingPlace> <http://dbpedia.org/resource/Madrid> . ?uri <http://dbpedia.org/property/author> ?x . }"}, "answers": ["6"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/notableWork> <http://dbpedia.org/resource/Band_of_Brothers_(miniseries)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/kingdom> <http://dbpedia.org/resource/Animal> . ?x <http://dbpedia.org/property/species> ?uri . }"}, "answers": ["74010"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/nearestCity> <http://dbpedia.org/resource/Helsinki> } "}, "answers": ["http://dbpedia.org/resource/Baltic_Sea", "http://dbpedia.org/resource/Gulf_of_Finland"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bruce_Beutler> <http://dbpedia.org/ontology/award> ?x . ?x <http://dbpedia.org/property/awards> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/publisher> <http://dbpedia.org/resource/Thomas_Egerton_(publisher)> . }"}, "answers": ["http://dbpedia.org/resource/Sense_and_Sensibility", "http://dbpedia.org/resource/Pride_and_Prejudice", "http://dbpedia.org/resource/Mansfield_Park"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/jointPartner> <http://dbpedia.org/resource/Sony> . ?uri <http://dbpedia.org/property/manufacturer> <http://dbpedia.org/resource/As_As_a_Appliance> . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Congress_of_Industrial_Organizations> <http://dbpedia.org/property/founded> ?uri } "}, "answers": ["1935-11-09", "http://dbpedia.org/resource/Pittsburgh,_Pennsylvania"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/formerTeam> <http://dbpedia.org/resource/Toronto_Argonauts> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/AmericanFootballPlayer>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/opponent> <http://dbpedia.org/resource/Benjamin_Spock> . ?x <http://dbpedia.org/property/president> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/majorShrine> <http://dbpedia.org/resource/Pozna\u0144> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Saint>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/branch> <http://dbpedia.org/resource/Continental_Army> . }"}, "answers": ["157"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Vangelis> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": ["http://dbpedia.org/resource/De_Mantel_der_Liefde", "http://dbpedia.org/resource/Alexander_(2004_film)", "http://dbpedia.org/resource/1492:_Conquest_of_Paradise", "http://dbpedia.org/resource/Antarctica_(1983_film)", "http://dbpedia.org/resource/The_Bounty_(1984_film)", "http://dbpedia.org/resource/The_Plague_(1992_film)", "http://dbpedia.org/resource/The_Wild_Nation", "http://dbpedia.org/resource/Missing_(1982_film)", "http://dbpedia.org/resource/Trashed_(film)", "http://dbpedia.org/resource/Twilight_of_Shadows", "http://dbpedia.org/resource/Chariots_of_Fire", "http://dbpedia.org/resource/Chariots_of_Fire_(play)", "http://dbpedia.org/resource/Do_You_Hear_the_Dogs_Barking%3F", "http://dbpedia.org/resource/Crime_and_Passion", "http://dbpedia.org/resource/El_Greco_(2007_film)", "http://dbpedia.org/resource/Bitter_Moon", "http://dbpedia.org/resource/Blade_Runner", "http://dbpedia.org/resource/De_Nuremberg_\u00e0_Nuremberg"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/species> <http://dbpedia.org/resource/Vitis_vinifera> . ?x <http://dbpedia.org/ontology/wineRegion> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Rolling_Stone_Album_Guide> <http://dbpedia.org/property/publisher> ?uri } "}, "answers": ["http://dbpedia.org/resource/Random_House", "http://dbpedia.org/resource/Fireside_Books", "Random House/Rolling Stone Press"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/21Vianet> <http://dbpedia.org/property/services> ?uri . }"}, "answers": ["9"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/design> <http://dbpedia.org/resource/Box_girder_bridge> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/River>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Saleen_S5S_Raptor> <http://dbpedia.org/property/designer> ?uri } "}, "answers": ["http://dbpedia.org/resource/Warren,_Michigan", "http://dbpedia.org/resource/ASC_Creative_Services", "http://dbpedia.org/resource/Michigan"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/1999_San_Marino_Grand_Prix> <http://dbpedia.org/ontology/firstDriver> ?uri } "}, "answers": ["http://dbpedia.org/resource/Michael_Schumacher"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/doctoralStudents> <http://dbpedia.org/resource/Erich_Bagge> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}"}, "answers": ["http://dbpedia.org/resource/Werner_Heisenberg"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/commander> <http://dbpedia.org/resource/Egushawa> . ?x <http://dbpedia.org/property/battles> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Union_State> <http://dbpedia.org/ontology/largestCity> ?uri } "}, "answers": ["http://dbpedia.org/resource/Moscow"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/athleticsTeam> <http://dbpedia.org/resource/Micheal_Powell> . ?uri <http://dbpedia.org/property/owner> <http://dbpedia.org/resource/Syracuse_University> } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/distributor> <http://dbpedia.org/resource/Ted_Hartley> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/routeEnd> <http://dbpedia.org/resource/Madison,_Wisconsin> . ?x <http://dbpedia.org/property/routeStart> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/commander> <http://dbpedia.org/resource/Colin_Powell> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MilitaryConflict>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/United_States_Congress> <http://dbpedia.org/property/houses> ?uri } "}, "answers": ["http://dbpedia.org/resource/United_States_House_of_Representatives", "http://dbpedia.org/resource/United_States_Senate"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/locationCity> <http://dbpedia.org/resource/Toronto> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}"}, "answers": ["http://dbpedia.org/resource/Darius_Films", "http://dbpedia.org/resource/Argus_Corporation", "http://dbpedia.org/resource/Waste_Connections_of_Canada", "http://dbpedia.org/resource/Gluskin_Sheff", "http://dbpedia.org/resource/Simpsons_(department_store)", "http://dbpedia.org/resource/Jatheon_Technologies", "http://dbpedia.org/resource/WorldGaming_Network", "http://dbpedia.org/resource/Aikenhead's_Hardware", "http://dbpedia.org/resource/Aislelabs", "http://dbpedia.org/resource/Mill_Street_Brewery", "http://dbpedia.org/resource/Algorithmics_Inc.", "http://dbpedia.org/resource/Alientrap", "http://dbpedia.org/resource/Avro_Canada", "http://dbpedia.org/resource/Franco-Nevada", "http://dbpedia.org/resource/Gabriel_Resources", "http://dbpedia.org/resource/Hakim_Optical", "http://dbpedia.org/resource/Wesdome_Gold_Mines", "http://dbpedia.org/resource/West_49", "http://dbpedia.org/resource/WildBrain_Studios", "http://dbpedia.org/resource/Round_Table_Advertising", "http://dbpedia.org/resource/AquaMobile", "http://dbpedia.org/resource/Entertainment_One", "http://dbpedia.org/resource/Equinox_Minerals", "http://dbpedia.org/resource/Maple_Leaf_Sports_&_Entertainment", "http://dbpedia.org/resource/Unity_Bank_of_Canada", "http://dbpedia.org/resource/Metallica_Resources", "http://dbpedia.org/resource/Guardly", "http://dbpedia.org/resource/Bookmark_Content_and_Communications", "http://dbpedia.org/resource/Breakwater_Resources", "http://dbpedia.org/resource/Brookfield_Asset_Management", "http://dbpedia.org/resource/Brookfield_Business_Partners", "http://dbpedia.org/resource/Brookfield_Infrastructure_Partners", "http://dbpedia.org/resource/Brookfield_Renewable_Partners", "http://dbpedia.org/resource/Blue_Isle_Studios", "http://dbpedia.org/resource/Canopy_Labs", "http://dbpedia.org/resource/Revelo_Electric", "http://dbpedia.org/resource/The_Stars_Group", "http://dbpedia.org/resource/Oliver_&_Bonacini_Restaurants", "http://dbpedia.org/resource/Ontario_Pension_Board", "http://dbpedia.org/resource/AHED_(company)", "http://dbpedia.org/resource/No_Trace_Camping", "http://dbpedia.org/resource/ORION_(research_and_education_network)", "http://dbpedia.org/resource/Hollinger_Inc.", "http://dbpedia.org/resource/Forum_Research", "http://dbpedia.org/resource/ToonBox_Entertainment", "http://dbpedia.org/resource/Sysomos", "http://dbpedia.org/resource/Confederation_Life", "http://dbpedia.org/resource/Constellation_Software", "http://dbpedia.org/resource/Joker's_Closet", "http://dbpedia.org/resource/Grande_Cheese", "http://dbpedia.org/resource/Jumblies_Theatre", "http://dbpedia.org/resource/PlateSpin", "http://dbpedia.org/resource/Nice_Shoes", "http://dbpedia.org/resource/BMO_Capital_Markets", "http://dbpedia.org/resource/Banger_Films", "http://dbpedia.org/resource/Mountain_Province_Diamonds", "http://dbpedia.org/resource/Crystallex_International_Corporation", "http://dbpedia.org/resource/Jingle_Punks_Music", "http://dbpedia.org/resource/Adex_Mining", "http://dbpedia.org/resource/Aecon", "http://dbpedia.org/resource/CPP_Investment_Board", "http://dbpedia.org/resource/CTV_News", "http://dbpedia.org/resource/Canada_Goose_(clothing)", "http://dbpedia.org/resource/Canadian_General_Electric", "http://dbpedia.org/resource/Centerra_Gold", "http://dbpedia.org/resource/Stott_Pilates", "http://dbpedia.org/resource/Suba_Games", "http://dbpedia.org/resource/Swiss_Chalet", "http://dbpedia.org/resource/Fraser_Papers", "http://dbpedia.org/resource/Capstone_Infrastructure", "http://dbpedia.org/resource/Capybara_Games", "http://dbpedia.org/resource/Home_Capital_Group", "http://dbpedia.org/resource/Hudbay", "http://dbpedia.org/resource/Heroic_Television", "http://dbpedia.org/resource/Dundee_Corporation", "http://dbpedia.org/resource/CognoVision", "http://dbpedia.org/resource/Slaight_Communications", "http://dbpedia.org/resource/Sleep_Country_Canada", "http://dbpedia.org/resource/Solar_Ship,_Inc.", "http://dbpedia.org/resource/Laserglow_Technologies", "http://dbpedia.org/resource/SubPac_(company)", "http://dbpedia.org/resource/Corby_Spirit_and_Wine", "http://dbpedia.org/resource/Crave_(streaming_service)", "http://dbpedia.org/resource/DUCA_Credit_Union", "http://dbpedia.org/resource/Grand_&_Toy", "http://dbpedia.org/resource/Great_Lakes_Brewery_(Toronto)", "http://dbpedia.org/resource/Groove_Games", "http://dbpedia.org/resource/Asigra", "http://dbpedia.org/resource/Mackenzie_Investments", "http://dbpedia.org/resource/Centre_for_Applied_Genomics", "http://dbpedia.org/resource/Richtree_Market", "http://dbpedia.org/resource/Rogers_Radio", "http://dbpedia.org/resource/Clay_&_Paper_Theatre", "http://dbpedia.org/resource/Sunward_Aerospace_Group", "http://dbpedia.org/resource/Kanati_Clothing_Company", "http://dbpedia.org/resource/Altius_Architects", "http://dbpedia.org/resource/Exchange_Bank_of_Canada", "http://dbpedia.org/resource/Fairmont_Hotels_and_Resorts", "http://dbpedia.org/resource/First_National_Financial_Corporation", "http://dbpedia.org/resource/Neptune_(company)", "http://dbpedia.org/resource/New_Gold", "http://dbpedia.org/resource/Nexient_Learning", "http://dbpedia.org/resource/Peace_Arch_Entertainment", "http://dbpedia.org/resource/P\u00dcR_Gum", "http://dbpedia.org/resource/Radical_Sheep_Productions", "http://dbpedia.org/resource/XMG_Studio", "http://dbpedia.org/resource/YM_Biosciences", "http://dbpedia.org/resource/Yamana_Gold", "http://dbpedia.org/resource/Enwave", "http://dbpedia.org/resource/Oliphant's_Gym", "http://dbpedia.org/resource/Polson_Iron_Works_Limited", "http://dbpedia.org/resource/Incubator_Games", "http://dbpedia.org/resource/Labatt_Brewing_Company", "http://dbpedia.org/resource/LoyaltyOne", "http://dbpedia.org/resource/Echologics", "http://dbpedia.org/resource/ElderTreks", "http://dbpedia.org/resource/Elevation_Pictures", "http://dbpedia.org/resource/KEYreit", "http://dbpedia.org/resource/Lundin_Mining", "http://dbpedia.org/resource/Ontario_Teachers'_Pension_Plan", "http://dbpedia.org/resource/Osisko_Mining", "http://dbpedia.org/resource/Cinram", "http://dbpedia.org/resource/SimEx-Iwerks", "http://dbpedia.org/resource/Sovereign_General_Insurance_Company", "http://dbpedia.org/resource/Paradise_Comics", "http://dbpedia.org/resource/Shore_Tilbe_Perkins+Will", "http://dbpedia.org/resource/Wave_Financial", "http://dbpedia.org/resource/Big_Smoke_Burger", "http://dbpedia.org/resource/IBI_Group", "http://dbpedia.org/resource/Indigo_Books_and_Music", "http://dbpedia.org/resource/Kinross_Gold", "http://dbpedia.org/resource/Kobo_Inc.", "http://dbpedia.org/resource/Oxford_Properties", "http://dbpedia.org/resource/Panorama_Software", "http://dbpedia.org/resource/Roots_Canada", "http://dbpedia.org/resource/FUN_Technologies", "http://dbpedia.org/resource/Fontana_North", "http://dbpedia.org/resource/GlobeScan", "http://dbpedia.org/resource/Penzu", "http://dbpedia.org/resource/VMedia", "http://dbpedia.org/resource/Yowza!_Animation", "http://dbpedia.org/resource/Marketwired", "http://dbpedia.org/resource/Native_Earth_Performing_Arts", "http://dbpedia.org/resource/TeamBuy"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Khok_Kwang> <http://dbpedia.org/ontology/timeZone> ?uri } "}, "answers": ["http://dbpedia.org/resource/Time_in_Thailand"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/opponent> <http://dbpedia.org/resource/Gervase_Helwys> . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Michael_Roos_(ice_hockey)> <http://dbpedia.org/property/formerTeam> ?uri . <http://dbpedia.org/resource/Ryan_Powell> <http://dbpedia.org/ontology/team> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/network> <http://dbpedia.org/resource/Prime_Time_Entertainment_Network> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": ["http://dbpedia.org/resource/Pointman", "http://dbpedia.org/resource/Island_City_(1994_film)", "http://dbpedia.org/resource/Time_Trax", "http://dbpedia.org/resource/Kung_Fu:_The_Legend_Continues"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/position> <http://dbpedia.org/resource/Defenceman> . ?x <http://dbpedia.org/ontology/team> ?uri . }"}, "answers": ["1608"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/1997_Canadian_Grand_Prix> <http://dbpedia.org/ontology/poleDriver> ?uri . <http://dbpedia.org/resource/1994_Spanish_Grand-Prix> <http://dbpedia.org/property/firstDriverName> ?uri} "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Alan_Thicke> <http://dbpedia.org/property/narrated> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/creator> <http://dbpedia.org/resource/CE_Webber> . ?uri <http://dbpedia.org/property/starring> <http://dbpedia.org/resource/Companion_(Doctor_Who)> . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/garrison> <http://dbpedia.org/resource/Turin> . ?x <http://dbpedia.org/ontology/territory> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Thesaban> <http://dbpedia.org/property/cities> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/predecessor> <http://dbpedia.org/resource/Mark_Latham> . ?uri <http://dbpedia.org/property/partner> <http://dbpedia.org/resource/Tim_Mathieson> . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/owners> <http://dbpedia.org/resource/Schibsted> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Newspaper>}"}, "answers": ["http://dbpedia.org/resource/Verdens_Gang", "http://dbpedia.org/resource/Bergens_Tidende", "http://dbpedia.org/resource/F\u00e6drelandsvennen", "http://dbpedia.org/resource/Aftenposten", "http://dbpedia.org/resource/Aftonbladet", "http://dbpedia.org/resource/Svenska_Dagbladet"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/bandMember> <http://dbpedia.org/resource/Robert_De_Niro> . ?uri <http://dbpedia.org/property/associatedMusicalArtist> ?x . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/operatingSystem> <http://dbpedia.org/resource/Microsoft_Windows> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Software>}"}, "answers": ["http://dbpedia.org/resource/AllJoyn", "http://dbpedia.org/resource/AllegroGraph", "http://dbpedia.org/resource/Allegro_Common_Lisp", "http://dbpedia.org/resource/Allmyapps", "http://dbpedia.org/resource/Altacast", "http://dbpedia.org/resource/Altap_Salamander", "http://dbpedia.org/resource/Altium_Designer", "http://dbpedia.org/resource/Amarok_(software)", "http://dbpedia.org/resource/Amazon_Lumberyard", "http://dbpedia.org/resource/Amazon_Virtual_Private_Cloud", "http://dbpedia.org/resource/Amiga_Forever", "http://dbpedia.org/resource/Analytica_(software)", "http://dbpedia.org/resource/AndreaMosaic", "http://dbpedia.org/resource/Anduril_(workflow_engine)", "http://dbpedia.org/resource/AetherPal", "http://dbpedia.org/resource/Agfa_impax_6", "http://dbpedia.org/resource/Darcs", "http://dbpedia.org/resource/Darktable", "http://dbpedia.org/resource/DashO_(software)", "http://dbpedia.org/resource/Dashlane", "http://dbpedia.org/resource/Dask_(software)", "http://dbpedia.org/resource/DataFlex", "http://dbpedia.org/resource/Data_Analytics_Library", "http://dbpedia.org/resource/Data_build_tool", "http://dbpedia.org/resource/Daylon_Leveller", "http://dbpedia.org/resource/Deal.II", "http://dbpedia.org/resource/Deep-Sky_Planner", "http://dbpedia.org/resource/Deep_Freeze_(software)", "http://dbpedia.org/resource/Aoki_Lapis", "http://dbpedia.org/resource/Aqsis", "http://dbpedia.org/resource/Aquad", "http://dbpedia.org/resource/Aquiles", "http://dbpedia.org/resource/ArcEditor", "http://dbpedia.org/resource/ArcGIS_Pro", "http://dbpedia.org/resource/ArcIMS", "http://dbpedia.org/resource/ArcInfo", "http://dbpedia.org/resource/ArcSoft_ShowBiz", "http://dbpedia.org/resource/ArcView", "http://dbpedia.org/resource/Bork3D_Game_Engine", "http://dbpedia.org/resource/Cassandre_software", "http://dbpedia.org/resource/Dell_MediaDirect", "http://dbpedia.org/resource/Dentrix", "http://dbpedia.org/resource/DesktopX", "http://dbpedia.org/resource/Desktop_Cleanup_Wizard", "http://dbpedia.org/resource/Dex_(software)", "http://dbpedia.org/resource/User-Mode_Driver_Framework", "http://dbpedia.org/resource/VB_Watch", "http://dbpedia.org/resource/VCV_Rack", "http://dbpedia.org/resource/VEDIT", "http://dbpedia.org/resource/VIPS_(software)", "http://dbpedia.org/resource/VMac", "http://dbpedia.org/resource/VMmark", "http://dbpedia.org/resource/VMware_Horizon", "http://dbpedia.org/resource/VMware_Server", "http://dbpedia.org/resource/VOGL", "http://dbpedia.org/resource/VSDC_Free_Video_Editor", "http://dbpedia.org/resource/VSdocman", "http://dbpedia.org/resource/V_Flower", "http://dbpedia.org/resource/Valve_Anti-Cheat", "http://dbpedia.org/resource/VariCAD", "http://dbpedia.org/resource/Vegas_Pro", "http://dbpedia.org/resource/Vegeta_(software)", "http://dbpedia.org/resource/Veyon", "http://dbpedia.org/resource/Victoria_(3D_figure)", "http://dbpedia.org/resource/Vidalia_(software)", "http://dbpedia.org/resource/ViewMinder", "http://dbpedia.org/resource/VirtuaWin", "http://dbpedia.org/resource/VirtualAcorn", "http://dbpedia.org/resource/VirtualDJ", "http://dbpedia.org/resource/VirtualDub", "http://dbpedia.org/resource/VirtualDubMod", "http://dbpedia.org/resource/Virtual_ANS", "http://dbpedia.org/resource/Virtual_Audio_Cable", "http://dbpedia.org/resource/Virtual_Pascal", "http://dbpedia.org/resource/VisualARQ", "http://dbpedia.org/resource/VisualFEA", "http://dbpedia.org/resource/VisualSVN", "http://dbpedia.org/resource/VisualSVN_Server", "http://dbpedia.org/resource/Visual_Assist", "http://dbpedia.org/resource/Visual_Basic_for_Applications", "http://dbpedia.org/resource/Visual_Component_Framework", "http://dbpedia.org/resource/Visual_Components", "http://dbpedia.org/resource/Visual_Installer", "http://dbpedia.org/resource/Visual_Intercept", "http://dbpedia.org/resource/Visual_MODFLOW", "http://dbpedia.org/resource/Visual_Molecular_Dynamics", "http://dbpedia.org/resource/Visual_Pinball", "http://dbpedia.org/resource/Visual_Prolog", "http://dbpedia.org/resource/Visual_Test", "http://dbpedia.org/resource/Vivo_Software", "http://dbpedia.org/resource/VkTrace", "http://dbpedia.org/resource/Vocaloid", "http://dbpedia.org/resource/Vocaloid_2", "http://dbpedia.org/resource/Voicemeeter", "http://dbpedia.org/resource/Vol_(command)", "http://dbpedia.org/resource/Volatility_(software)", "http://dbpedia.org/resource/VoluMill", "http://dbpedia.org/resource/Vowpal_Wabbit", "http://dbpedia.org/resource/VzRoom", "http://dbpedia.org/resource/W32tm", "http://dbpedia.org/resource/WASTE", "http://dbpedia.org/resource/WBAdmin", "http://dbpedia.org/resource/WCF_Data_Services", "http://dbpedia.org/resource/WISE-FTP", "http://dbpedia.org/resource/WMA_Convert", "http://dbpedia.org/resource/WPKG_(software)", "http://dbpedia.org/resource/WUHU_(software)", "http://dbpedia.org/resource/Waf_(build_system)", "http://dbpedia.org/resource/WarpPLS", "http://dbpedia.org/resource/Watcom_C/C++", "http://dbpedia.org/resource/Findstr", "http://dbpedia.org/resource/Shar", "http://dbpedia.org/resource/Share_(P2P)", "http://dbpedia.org/resource/Skia_Graphics_Engine", "http://dbpedia.org/resource/Sophocles_(software)", "http://dbpedia.org/resource/Windows_service", "http://dbpedia.org/resource/Hyperscore", "http://dbpedia.org/resource/Windows_Meeting_Space", "http://dbpedia.org/resource/IBM_Lotus_Freelance_Graphics", "http://dbpedia.org/resource/MusicEase", "http://dbpedia.org/resource/Palm_Desktop", "http://dbpedia.org/resource/YProxy", "http://dbpedia.org/resource/Microsoft_Indic_Language_Input_Tool", "http://dbpedia.org/resource/Windows_Photo_Viewer", "http://dbpedia.org/resource/Parallels_Workstation_Extreme", "http://dbpedia.org/resource/QuickLOAD", "http://dbpedia.org/resource/VSTS_Profiler", "http://dbpedia.org/resource/NeuroSolutions", "http://dbpedia.org/resource/PlanMaker", "http://dbpedia.org/resource/SPEED2000", "http://dbpedia.org/resource/Ssh-agent", "http://dbpedia.org/resource/Trade_Space_Visualizer", "http://dbpedia.org/resource/NexusDB", "http://dbpedia.org/resource/PowerMapper", "http://dbpedia.org/resource/WQL", "http://dbpedia.org/resource/MySQL_DataController", "http://dbpedia.org/resource/Windows_Chat", "http://dbpedia.org/resource/WireFusion", "http://dbpedia.org/resource/Madoka_(business_process_automation)", "http://dbpedia.org/resource/Microsoft_Songsmith", "http://dbpedia.org/resource/NewViews", "http://dbpedia.org/resource/Raylectron", "http://dbpedia.org/resource/Windows_Feedback_Hub", "http://dbpedia.org/resource/Windows_NT_6_startup_process", "http://dbpedia.org/resource/WiperSoft", "http://dbpedia.org/resource/Deep_Zoom", "http://dbpedia.org/resource/Deeplearning4j", "http://dbpedia.org/resource/Demetra+", "http://dbpedia.org/resource/Denemo", "http://dbpedia.org/resource/Deno_(software)", "http://dbpedia.org/resource/Dependency_Walker", "http://dbpedia.org/resource/Derive_(computer_algebra_system)", "http://dbpedia.org/resource/DesignSpark_Mechanical", "http://dbpedia.org/resource/Designbox", "http://dbpedia.org/resource/Desktop_Window_Manager", "http://dbpedia.org/resource/Dev-C++", "http://dbpedia.org/resource/Dev-Pascal", "http://dbpedia.org/resource/DevPartner", "http://dbpedia.org/resource/Device_Manager", "http://dbpedia.org/resource/Dial_Gate_VoIP_Softswitch", "http://dbpedia.org/resource/DigiCel_FlipBook", "http://dbpedia.org/resource/DigiGuide", "http://dbpedia.org/resource/Digital_Forensics_Framework", "http://dbpedia.org/resource/Digital_Performer", "http://dbpedia.org/resource/Digital_Photo_Professional", "http://dbpedia.org/resource/Digital_Scrapbook_Artist", "http://dbpedia.org/resource/DirSync_Pro", "http://dbpedia.org/resource/Direct3D", "http://dbpedia.org/resource/DirectShow", "http://dbpedia.org/resource/DirectVobSub", "http://dbpedia.org/resource/Directory_Opus", "http://dbpedia.org/resource/Dired", "http://dbpedia.org/resource/DiscJuggler", "http://dbpedia.org/resource/Diskcomp", "http://dbpedia.org/resource/Diskcopy", "http://dbpedia.org/resource/Diskpart", "http://dbpedia.org/resource/Distributed_Concurrent_Versions_System", "http://dbpedia.org/resource/DoPDF", "http://dbpedia.org/resource/Google_App_Runtime_for_Chrome", "http://dbpedia.org/resource/The_All-Seeing_Eye", "http://dbpedia.org/resource/GameSpy_Arcade", "http://dbpedia.org/resource/Mew_(software)", "http://dbpedia.org/resource/MicroPlanner_X-Pert", "http://dbpedia.org/resource/Microsoft_Help_2", "http://dbpedia.org/resource/Microsoft_Help_Viewer", "http://dbpedia.org/resource/Microsoft_Money", "http://dbpedia.org/resource/Motherboard_Monitor", "http://dbpedia.org/resource/Move_(command)", "http://dbpedia.org/resource/NCSS_(statistical_software)", "http://dbpedia.org/resource/SmartCam", "http://dbpedia.org/resource/ProArc", "http://dbpedia.org/resource/Spotnet", "http://dbpedia.org/resource/System_Restore", "http://dbpedia.org/resource/AirMosaic", "http://dbpedia.org/resource/Airy_(software)", "http://dbpedia.org/resource/AkelPad", "http://dbpedia.org/resource/Alcohol_120%25", "http://dbpedia.org/resource/Aldor", "http://dbpedia.org/resource/Algodoo", "http://dbpedia.org/resource/Alibre_Design", "http://dbpedia.org/resource/ArtRage", "http://dbpedia.org/resource/Artisteer", "http://dbpedia.org/resource/Artweaver", "http://dbpedia.org/resource/ArviZ", "http://dbpedia.org/resource/As-Easy-As", "http://dbpedia.org/resource/Ascalaph_Designer", "http://dbpedia.org/resource/AstroMenace", "http://dbpedia.org/resource/Atlantis_Word_Processor", "http://dbpedia.org/resource/Attack_Surface_Analyzer", "http://dbpedia.org/resource/Audio_Stream_Input/Output", "http://dbpedia.org/resource/Audiograbber", "http://dbpedia.org/resource/Audiveris", "http://dbpedia.org/resource/AutoHotkey", "http://dbpedia.org/resource/AutoREALM", "http://dbpedia.org/resource/Autodesk_Arnold", "http://dbpedia.org/resource/Autodesk_Simulation", "http://dbpedia.org/resource/Autodesk_Softimage", "http://dbpedia.org/resource/Avast_Antivirus", "http://dbpedia.org/resource/AviSynth", "http://dbpedia.org/resource/Avid_Free_DV", "http://dbpedia.org/resource/Avizo_(software)", "http://dbpedia.org/resource/Avogadro_(software)", "http://dbpedia.org/resource/Avro_Keyboard", "http://dbpedia.org/resource/Awomo", "http://dbpedia.org/resource/BeaTunes", "http://dbpedia.org/resource/Beaker_(web_browser)", "http://dbpedia.org/resource/Becky!", "http://dbpedia.org/resource/BeebEm", "http://dbpedia.org/resource/Berkeley_DB", "http://dbpedia.org/resource/Berkeley_Open_Infrastructure_for_Network_Computing", "http://dbpedia.org/resource/Bersirc", "http://dbpedia.org/resource/Beyond_TV", "http://dbpedia.org/resource/BiZZdesign_Enterprise_Studio", "http://dbpedia.org/resource/Aladdin4D", "http://dbpedia.org/resource/ForeUI", "http://dbpedia.org/resource/Forensic_Toolkit", "http://dbpedia.org/resource/FormatFactory", "http://dbpedia.org/resource/Format_(command)", "http://dbpedia.org/resource/Forte_(notation_program)", "http://dbpedia.org/resource/Fort\u00e9_Agent", "http://dbpedia.org/resource/Fotografix", "http://dbpedia.org/resource/Frama-C", "http://dbpedia.org/resource/Framewave", "http://dbpedia.org/resource/Framsticks", "http://dbpedia.org/resource/Fre:ac", "http://dbpedia.org/resource/Fred_Optical_Engineering_Software", "http://dbpedia.org/resource/FreeArc", "http://dbpedia.org/resource/FreeCAD", "http://dbpedia.org/resource/FreeFem++", "http://dbpedia.org/resource/FreeHAL", "http://dbpedia.org/resource/FreePCB", "http://dbpedia.org/resource/FreePOPs", "http://dbpedia.org/resource/FreeUndelete", "http://dbpedia.org/resource/Free_AVI_Video_Converter", "http://dbpedia.org/resource/Free_Studio", "http://dbpedia.org/resource/Freemake_Audio_Converter", "http://dbpedia.org/resource/Freemake_Music_Box", "http://dbpedia.org/resource/Freestyle_(software)", "http://dbpedia.org/resource/Frescobaldi_(software)", "http://dbpedia.org/resource/Fresh_Memory_(software)", "http://dbpedia.org/resource/Fritzing", "http://dbpedia.org/resource/FrontBase", "http://dbpedia.org/resource/Ftype", "http://dbpedia.org/resource/Fuse_(emulator)", "http://dbpedia.org/resource/FusionReactor", "http://dbpedia.org/resource/Future_Pinball", "http://dbpedia.org/resource/FxCop", "http://dbpedia.org/resource/GAUSS_(software)", "http://dbpedia.org/resource/GCompris", "http://dbpedia.org/resource/GDevelop", "http://dbpedia.org/resource/GEDA", "http://dbpedia.org/resource/GENtle", "http://dbpedia.org/resource/GEOVIA", "http://dbpedia.org/resource/GFA_BASIC", "http://dbpedia.org/resource/GGPO", "http://dbpedia.org/resource/GGobi", "http://dbpedia.org/resource/GIMPshop", "http://dbpedia.org/resource/GLBasic", "http://dbpedia.org/resource/GLFW", "http://dbpedia.org/resource/GLib", "http://dbpedia.org/resource/GMS_(software)", "http://dbpedia.org/resource/GMX_Multi_Messenger", "http://dbpedia.org/resource/GNAT", "http://dbpedia.org/resource/GNAVI", "http://dbpedia.org/resource/GNUSim8085", "http://dbpedia.org/resource/GNU_Chess", "http://dbpedia.org/resource/GNU_Common_Lisp", "http://dbpedia.org/resource/GNU_Debugger", "http://dbpedia.org/resource/GNU_Go", "http://dbpedia.org/resource/GNU_Privacy_Guard", "http://dbpedia.org/resource/GNU_Solfege", "http://dbpedia.org/resource/GNU_arch", "http://dbpedia.org/resource/GPUOpen", "http://dbpedia.org/resource/GPlates", "http://dbpedia.org/resource/GSSHA", "http://dbpedia.org/resource/GadgetTrak", "http://dbpedia.org/resource/Gadu-Gadu", "http://dbpedia.org/resource/GaiaEHR", "http://dbpedia.org/resource/Gajim", "http://dbpedia.org/resource/GameMaker", "http://dbpedia.org/resource/GameShadow", "http://dbpedia.org/resource/Game_Jackal", "http://dbpedia.org/resource/Gameswf", "http://dbpedia.org/resource/GanttProject", "http://dbpedia.org/resource/Geany", "http://dbpedia.org/resource/GenMAPP", "http://dbpedia.org/resource/Genbox_Family_History", "http://dbpedia.org/resource/GeneXus", "http://dbpedia.org/resource/Gene_Designer", "http://dbpedia.org/resource/Genealogica_Grafica", "http://dbpedia.org/resource/Genealone", "http://dbpedia.org/resource/General_Mission_Analysis_Tool", "http://dbpedia.org/resource/Genie_Backup_Manager", "http://dbpedia.org/resource/GenoPro", "http://dbpedia.org/resource/Gensim", "http://dbpedia.org/resource/Genstat", "http://dbpedia.org/resource/GeoModeller", "http://dbpedia.org/resource/HIARCS", "http://dbpedia.org/resource/HIEW", "http://dbpedia.org/resource/HOSxP", "http://dbpedia.org/resource/HPX", "http://dbpedia.org/resource/HP_Integrity_Virtual_Machines", "http://dbpedia.org/resource/HTCondor", "http://dbpedia.org/resource/HTML-Kit", "http://dbpedia.org/resource/Ham_Radio_Deluxe", "http://dbpedia.org/resource/HandBrake", "http://dbpedia.org/resource/Handbook_Emission_Factors_for_Road_Transport_(HBEFA)", "http://dbpedia.org/resource/Hangul_(word_processor)", "http://dbpedia.org/resource/Harmor", "http://dbpedia.org/resource/Harvard_Graphics", "http://dbpedia.org/resource/Hatsune_Miku", "http://dbpedia.org/resource/Haxe", "http://dbpedia.org/resource/Bing_Maps_Platform", "http://dbpedia.org/resource/Chika_(software)", "http://dbpedia.org/resource/SOAtest", "http://dbpedia.org/resource/SP-Forth", "http://dbpedia.org/resource/SPIN_model_checker", "http://dbpedia.org/resource/SPSS_Modeler", "http://dbpedia.org/resource/SQL_Database_Studio", "http://dbpedia.org/resource/SQL_Server_Express", "http://dbpedia.org/resource/SQL_Server_Management_Studio", "http://dbpedia.org/resource/SQLyog", "http://dbpedia.org/resource/SRM_Engine_Suite", "http://dbpedia.org/resource/STDU_Viewer", "http://dbpedia.org/resource/SUBST", "http://dbpedia.org/resource/SUPERAntiSpyware", "http://dbpedia.org/resource/SUPER_(computer_program)", "http://dbpedia.org/resource/SVFlux", "http://dbpedia.org/resource/SVNBridge", "http://dbpedia.org/resource/SVN_Notifier", "http://dbpedia.org/resource/SVSlope", "http://dbpedia.org/resource/SWiSH_Max", "http://dbpedia.org/resource/SXM_(transactional_memory)", "http://dbpedia.org/resource/SYSTAT_(software)", "http://dbpedia.org/resource/SafeDisc", "http://dbpedia.org/resource/SageMath", "http://dbpedia.org/resource/Sage_300", "http://dbpedia.org/resource/Sage_50cloud", "http://dbpedia.org/resource/Salome_(software)", "http://dbpedia.org/resource/Salt_(software)", "http://dbpedia.org/resource/Sam_(text_editor)", "http://dbpedia.org/resource/Samurize", "http://dbpedia.org/resource/Sandcastle_(software)", "http://dbpedia.org/resource/SwordSearcher", "http://dbpedia.org/resource/Sylpheed", "http://dbpedia.org/resource/SymmetricDS", "http://dbpedia.org/resource/Syncdocs", "http://dbpedia.org/resource/Synfig", "http://dbpedia.org/resource/Synkron", "http://dbpedia.org/resource/SynthMaster", "http://dbpedia.org/resource/Syntorial", "http://dbpedia.org/resource/Sysax_FTP_Automation", "http://dbpedia.org/resource/Sysax_Multi_Server", "http://dbpedia.org/resource/Sysedit", "http://dbpedia.org/resource/SystemBuilder/SB+", "http://dbpedia.org/resource/System_Center_Essentials", "http://dbpedia.org/resource/System_File_Checker", "http://dbpedia.org/resource/System_Idle_Process", "http://dbpedia.org/resource/Systeminfo.exe", "http://dbpedia.org/resource/Systems_Tool_Kit", "http://dbpedia.org/resource/Sytrus", "http://dbpedia.org/resource/TAPAAL_Model_Checker", "http://dbpedia.org/resource/TIGCC", "http://dbpedia.org/resource/TI_InterActive!", "http://dbpedia.org/resource/TMPGEnc", "http://dbpedia.org/resource/TMetric", "http://dbpedia.org/resource/TN3270_Plus", "http://dbpedia.org/resource/TNTmips", "http://dbpedia.org/resource/TOMNET", "http://dbpedia.org/resource/TOWeb", "http://dbpedia.org/resource/TPL_Tables", "http://dbpedia.org/resource/TVPaint_Animation", "http://dbpedia.org/resource/TWAIN", "http://dbpedia.org/resource/TabWorks", "http://dbpedia.org/resource/Tabbles", "http://dbpedia.org/resource/TableCurve_2D", "http://dbpedia.org/resource/TableCurve_3D", "http://dbpedia.org/resource/Tar_(computing)", "http://dbpedia.org/resource/TaskCracker_for_Outlook", "http://dbpedia.org/resource/TeX_Live", "http://dbpedia.org/resource/TeXnicCenter", "http://dbpedia.org/resource/TeXstudio", "http://dbpedia.org/resource/TeamSpeak", "http://dbpedia.org/resource/TeamViewer", "http://dbpedia.org/resource/Tebis", "http://dbpedia.org/resource/Techila_Grid", "http://dbpedia.org/resource/Techinline", "http://dbpedia.org/resource/Tee_(command)", "http://dbpedia.org/resource/Telix", "http://dbpedia.org/resource/DAvE_(Infineon)", "http://dbpedia.org/resource/DR_TV", "http://dbpedia.org/resource/DVD_Profiler", "http://dbpedia.org/resource/DVD_X_Copy", "http://dbpedia.org/resource/DX_Studio", "http://dbpedia.org/resource/Dabbler", "http://dbpedia.org/resource/DarkComet", "http://dbpedia.org/resource/DataCAD", "http://dbpedia.org/resource/DataScene", "http://dbpedia.org/resource/Data_Desk", "http://dbpedia.org/resource/Data_Toolbar", "http://dbpedia.org/resource/DatabaseSpy", "http://dbpedia.org/resource/Dataplot", "http://dbpedia.org/resource/WaveLab", "http://dbpedia.org/resource/WebKit", "http://dbpedia.org/resource/WebPlus", "http://dbpedia.org/resource/WebSharper", "http://dbpedia.org/resource/Which_(command)", "http://dbpedia.org/resource/Whizfolders", "http://dbpedia.org/resource/Who_Is_To_Blame%3F", "http://dbpedia.org/resource/WiMP", "http://dbpedia.org/resource/WiX", "http://dbpedia.org/resource/WikiBhasha", "http://dbpedia.org/resource/Megurine_Luka", "http://dbpedia.org/resource/RoboWar", "http://dbpedia.org/resource/Elektrik_Piano", "http://dbpedia.org/resource/Evertontv", "http://dbpedia.org/resource/Evidence_Eliminator", "http://dbpedia.org/resource/Eye-Sys", "http://dbpedia.org/resource/Route_(command)", "http://dbpedia.org/resource/SAGE_(game_engine)", "http://dbpedia.org/resource/SDI_Tools", "http://dbpedia.org/resource/SQL_Server_Integration_Services", "http://dbpedia.org/resource/Sachiko_(software)", "http://dbpedia.org/resource/Saturn_(software)", "http://dbpedia.org/resource/ScopeArchiv", "http://dbpedia.org/resource/Spatial_Query_Server", "http://dbpedia.org/resource/System_Architect", "http://dbpedia.org/resource/Storage@home", "http://dbpedia.org/resource/XRumer", "http://dbpedia.org/resource/HarfBuzz", "http://dbpedia.org/resource/PxTone", "http://dbpedia.org/resource/MOLCAS", "http://dbpedia.org/resource/Macne_Nana", "http://dbpedia.org/resource/Nuclino", "http://dbpedia.org/resource/.NET_Bio", "http://dbpedia.org/resource/.NET_Micro_Framework", "http://dbpedia.org/resource/0_A.D._(video_game)", "http://dbpedia.org/resource/Angelfish_software", "http://dbpedia.org/resource/Animation:Master", "http://dbpedia.org/resource/AnkhSVN", "http://dbpedia.org/resource/Antenna_House_Formatter", "http://dbpedia.org/resource/Anvil_Studio", "http://dbpedia.org/resource/Any_Video_Converter", "http://dbpedia.org/resource/Apache_Airflow", "http://dbpedia.org/resource/Apache_Flex", "http://dbpedia.org/resource/Apache_HTTP_Server", "http://dbpedia.org/resource/Apache_Harmony", "http://dbpedia.org/resource/Apache_MXNet", "http://dbpedia.org/resource/Apache_OpenMeetings", "http://dbpedia.org/resource/Apache_OpenOffice", "http://dbpedia.org/resource/Apache_Pig", "http://dbpedia.org/resource/Apache_SINGA", "http://dbpedia.org/resource/Apache_Spark", "http://dbpedia.org/resource/Apache_Taverna", "http://dbpedia.org/resource/Apophysis_(software)", "http://dbpedia.org/resource/Appetizer_(software)", "http://dbpedia.org/resource/AppleWin", "http://dbpedia.org/resource/AppleWorks", "http://dbpedia.org/resource/Application_Request_Routing", "http://dbpedia.org/resource/Appserver.io", "http://dbpedia.org/resource/ArX", "http://dbpedia.org/resource/ArcMap", "http://dbpedia.org/resource/ArcSDE", "http://dbpedia.org/resource/Archicad", "http://dbpedia.org/resource/Archim", "http://dbpedia.org/resource/Architect_(software)", "http://dbpedia.org/resource/Ardour_(software)", "http://dbpedia.org/resource/Arena_(software)", "http://dbpedia.org/resource/Argentum_Backup", "http://dbpedia.org/resource/Armagetron_Advanced", "http://dbpedia.org/resource/ArrayTrack", "http://dbpedia.org/resource/EmEditor", "http://dbpedia.org/resource/Embeddable_Common_Lisp", "http://dbpedia.org/resource/Emigma", "http://dbpedia.org/resource/EnCase", "http://dbpedia.org/resource/Encarta", "http://dbpedia.org/resource/Encyclop\u00e6dia_Britannica_Ultimate_Reference_Suite", "http://dbpedia.org/resource/Epi_Info", "http://dbpedia.org/resource/Epi_Map", "http://dbpedia.org/resource/Epigram_(programming_language)", "http://dbpedia.org/resource/Epostmailer", "http://dbpedia.org/resource/Eraser_(software)", "http://dbpedia.org/resource/Eric_(software)", "http://dbpedia.org/resource/Erwin_Data_Modeler", "http://dbpedia.org/resource/Euler_(software)", "http://dbpedia.org/resource/EventMachine", "http://dbpedia.org/resource/Event_Viewer", "http://dbpedia.org/resource/Evernote", "http://dbpedia.org/resource/Gephi", "http://dbpedia.org/resource/GetFEM++", "http://dbpedia.org/resource/Gforth", "http://dbpedia.org/resource/Ghostzilla", "http://dbpedia.org/resource/Gig_Performer", "http://dbpedia.org/resource/Gizmo5", "http://dbpedia.org/resource/Glade_Interface_Designer", "http://dbpedia.org/resource/GlobalSight", "http://dbpedia.org/resource/Gmsh", "http://dbpedia.org/resource/GnuTLS", "http://dbpedia.org/resource/Go!Zilla", "http://dbpedia.org/resource/Gobby", "http://dbpedia.org/resource/Golaem_Crowd", "http://dbpedia.org/resource/GoldWave", "http://dbpedia.org/resource/Gollum_(software)", "http://dbpedia.org/resource/Gonvisor", "http://dbpedia.org/resource/Google_Chrome_Frame", "http://dbpedia.org/resource/Google_Plugin_for_Eclipse", "http://dbpedia.org/resource/Google_Sheets", "http://dbpedia.org/resource/Google_Spaces", "http://dbpedia.org/resource/Google_Talk", "http://dbpedia.org/resource/Google_Test", "http://dbpedia.org/resource/Google_Toolbar", "http://dbpedia.org/resource/Google_Web_Accelerator", "http://dbpedia.org/resource/Google_Web_Toolkit", "http://dbpedia.org/resource/Gorm_(computing)", "http://dbpedia.org/resource/MapBasic", "http://dbpedia.org/resource/MapWindow_GIS", "http://dbpedia.org/resource/Maptitude", "http://dbpedia.org/resource/MaraDNS", "http://dbpedia.org/resource/Marble_(software)", "http://dbpedia.org/resource/Marmalade_(software)", "http://dbpedia.org/resource/Pinta_(software)", "http://dbpedia.org/resource/Piranesi_(software)", "http://dbpedia.org/resource/PirateBrowser", "http://dbpedia.org/resource/Pixar_RenderMan", "http://dbpedia.org/resource/PlantUML", "http://dbpedia.org/resource/Plant_Simulation", "http://dbpedia.org/resource/Plastic_SCM", "http://dbpedia.org/resource/Platinum_Arts_Sandbox", "http://dbpedia.org/resource/PlayN", "http://dbpedia.org/resource/Poedit", "http://dbpedia.org/resource/PokerTH", "http://dbpedia.org/resource/PolyEdit", "http://dbpedia.org/resource/Popcorn_Time", "http://dbpedia.org/resource/Poppler_(software)", "http://dbpedia.org/resource/Porn_Time", "http://dbpedia.org/resource/Portable,_Extensible_Toolkit_for_Scientific_Computation", "http://dbpedia.org/resource/PortableApps.com", "http://dbpedia.org/resource/PostgreSQL", "http://dbpedia.org/resource/PottersWheel", "http://dbpedia.org/resource/PowerArchiver", "http://dbpedia.org/resource/PowerDesigner", "http://dbpedia.org/resource/PowerMAN", "http://dbpedia.org/resource/PowerWord", "http://dbpedia.org/resource/Power_Pivot", "http://dbpedia.org/resource/Powercfg", "http://dbpedia.org/resource/Praat", "http://dbpedia.org/resource/Prevx", "http://dbpedia.org/resource/Prey_(software)", "http://dbpedia.org/resource/PriEsT", "http://dbpedia.org/resource/Prime95", "http://dbpedia.org/resource/PrimoPDF", "http://dbpedia.org/resource/Tera_Term", "http://dbpedia.org/resource/Terminator_(terminal_emulator)", "http://dbpedia.org/resource/TerrSet", "http://dbpedia.org/resource/Terragen", "http://dbpedia.org/resource/TestComplete", "http://dbpedia.org/resource/Test_Studio", "http://dbpedia.org/resource/Testing_Anywhere", "http://dbpedia.org/resource/TexLab", "http://dbpedia.org/resource/Texmaker", "http://dbpedia.org/resource/TextPad", "http://dbpedia.org/resource/Text_Template_Transformation_Toolkit", "http://dbpedia.org/resource/Textadept", "http://dbpedia.org/resource/The_Bat!", "http://dbpedia.org/resource/David_Laserscanner", "http://dbpedia.org/resource/UBASIC", "http://dbpedia.org/resource/UCSF_Chimera", "http://dbpedia.org/resource/UC_Browser", "http://dbpedia.org/resource/UDig", "http://dbpedia.org/resource/UFMOD", "http://dbpedia.org/resource/UGENE", "http://dbpedia.org/resource/UKTV_Play", "http://dbpedia.org/resource/UNetbootin", "http://dbpedia.org/resource/UPX", "http://dbpedia.org/resource/Ubuntu_One", "http://dbpedia.org/resource/Ulead_DVD_MovieFactory", "http://dbpedia.org/resource/Ulead_MediaStudio_Pro", "http://dbpedia.org/resource/UltraHLE", "http://dbpedia.org/resource/UltraISO", "http://dbpedia.org/resource/UltraMon", "http://dbpedia.org/resource/Ultrasurf", "http://dbpedia.org/resource/Umbraco", "http://dbpedia.org/resource/Unbound_(DNS_server)", "http://dbpedia.org/resource/UniKey_(software)", "http://dbpedia.org/resource/Universal_Document_Converter", "http://dbpedia.org/resource/Universal_USB_Installer", "http://dbpedia.org/resource/Universe_Sandbox", "http://dbpedia.org/resource/Unix2dos", "http://dbpedia.org/resource/Unvanquished_(video_game)", "http://dbpedia.org/resource/UpdateStar", "http://dbpedia.org/resource/UploadFTP", "http://dbpedia.org/resource/Uppaal_Model_Checker", "http://dbpedia.org/resource/Dr._Watson_(debugger)", "http://dbpedia.org/resource/Drishti_(client)", "http://dbpedia.org/resource/Driver_Verifier", "http://dbpedia.org/resource/I-DEAS", "http://dbpedia.org/resource/Magic_Lantern_(software)", "http://dbpedia.org/resource/Matrix_Template_Library", "http://dbpedia.org/resource/Merli_(software)", "http://dbpedia.org/resource/Microsoft_Management_Console", "http://dbpedia.org/resource/NI_Massive", "http://dbpedia.org/resource/NHS_Pathways", "http://dbpedia.org/resource/Piranha_(compositing_software)", "http://dbpedia.org/resource/Pixie_(renderer)", "http://dbpedia.org/resource/Primer-E_Primer", "http://dbpedia.org/resource/Microsoft_Write", "http://dbpedia.org/resource/Naver_VIBE", "http://dbpedia.org/resource/PTV_VISSIM", "http://dbpedia.org/resource/VALO-CD", "http://dbpedia.org/resource/VisIt", "http://dbpedia.org/resource/WS_FTP", "http://dbpedia.org/resource/WampServer", "http://dbpedia.org/resource/Windows_Address_Book", "http://dbpedia.org/resource/Windows_Management_Instrumentation", "http://dbpedia.org/resource/Windows_Remote_Management", "http://dbpedia.org/resource/Windows_Script_Host", "http://dbpedia.org/resource/MSConfig", "http://dbpedia.org/resource/Norton_Safe_Web", "http://dbpedia.org/resource/Vocaloid_4", "http://dbpedia.org/resource/MindMapper", "http://dbpedia.org/resource/Mirar_Toolbar", "http://dbpedia.org/resource/Pushd_and_popd", "http://dbpedia.org/resource/Simple_DNS_Plus", "http://dbpedia.org/resource/Grid_MP", "http://dbpedia.org/resource/Group_Shot", "http://dbpedia.org/resource/Hosting_Controller", "http://dbpedia.org/resource/Jungle_Disk", "http://dbpedia.org/resource/TinkerPlots", "http://dbpedia.org/resource/Truevision3D", "http://dbpedia.org/resource/Norton_LiveUpdate", "http://dbpedia.org/resource/SCSI_Pass_Through_Interface", "http://dbpedia.org/resource/Tekla_Structures", "http://dbpedia.org/resource/L0phtCrack", "http://dbpedia.org/resource/LM-X_License_Manager", "http://dbpedia.org/resource/Line_Music", "http://dbpedia.org/resource/Motor-CAD", "http://dbpedia.org/resource/SynfiniWay", "http://dbpedia.org/resource/ACD/ChemSketch", "http://dbpedia.org/resource/ADO.NET", "http://dbpedia.org/resource/AGi32", "http://dbpedia.org/resource/AMD_700_chipset_series", "http://dbpedia.org/resource/AMD_CodeAnalyst", "http://dbpedia.org/resource/AME_Accounting_Software", "http://dbpedia.org/resource/ARSloid", "http://dbpedia.org/resource/ATILA", "http://dbpedia.org/resource/ATLAS.ti", "http://dbpedia.org/resource/ATunes", "http://dbpedia.org/resource/Bootcfg", "http://dbpedia.org/resource/Borland_C++", "http://dbpedia.org/resource/Borland_Sidekick", "http://dbpedia.org/resource/Borland_Turbo_C", "http://dbpedia.org/resource/BricsCAD", "http://dbpedia.org/resource/Bricx_Command_Center", "http://dbpedia.org/resource/Brief_(text_editor)", "http://dbpedia.org/resource/Brother's_Keeper_(software)", "http://dbpedia.org/resource/Brush_Strokes_Image_Editor", "http://dbpedia.org/resource/Adobe_JRun", "http://dbpedia.org/resource/Adobe_LiveCycle_Designer", "http://dbpedia.org/resource/Adobe_Photoshop_Album", "http://dbpedia.org/resource/Adobe_Sign", "http://dbpedia.org/resource/Adobe_Technical_Communication_Suite", "http://dbpedia.org/resource/Adobe_eLearning_Suite", "http://dbpedia.org/resource/BRFplus", "http://dbpedia.org/resource/BSAFE", "http://dbpedia.org/resource/Back_Orifice_2000", "http://dbpedia.org/resource/Jaguar_(software)", "http://dbpedia.org/resource/Jaikoz", "http://dbpedia.org/resource/Jalview", "http://dbpedia.org/resource/Jami_(software)", "http://dbpedia.org/resource/Jarte", "http://dbpedia.org/resource/Katalon_Studio", "http://dbpedia.org/resource/Kate_(text_editor)", "http://dbpedia.org/resource/Kazaa", "http://dbpedia.org/resource/Kdb+", "http://dbpedia.org/resource/KeePass", "http://dbpedia.org/resource/Kerkythea", "http://dbpedia.org/resource/Kernel-Mode_Driver_Framework", "http://dbpedia.org/resource/KeyHoleTV", "http://dbpedia.org/resource/Keynote_(notetaking_software)", "http://dbpedia.org/resource/KiCad", "http://dbpedia.org/resource/KiXtart", "http://dbpedia.org/resource/Kid_Pix", "http://dbpedia.org/resource/Kiki_the_nano_bot", "http://dbpedia.org/resource/Kill_(command)", "http://dbpedia.org/resource/Bloomberg_Terminal", "http://dbpedia.org/resource/Blue_Moon_Rendering_Tools", "http://dbpedia.org/resource/BrookGPU", "http://dbpedia.org/resource/MathMagic", "http://dbpedia.org/resource/MathType", "http://dbpedia.org/resource/Math_Kernel_Library", "http://dbpedia.org/resource/Mathcad", "http://dbpedia.org/resource/Matheass", "http://dbpedia.org/resource/Mavis_Beacon_Teaches_Typing", "http://dbpedia.org/resource/Max_(software)", "http://dbpedia.org/resource/Maxwell_Render", "http://dbpedia.org/resource/MayaVi", "http://dbpedia.org/resource/McAfee_VirusScan", "http://dbpedia.org/resource/Meadow_(programming)", "http://dbpedia.org/resource/MedCalc", "http://dbpedia.org/resource/MediaHuman_Audio_Converter", "http://dbpedia.org/resource/MediaInfo", "http://dbpedia.org/resource/MediaMonkey", "http://dbpedia.org/resource/MediaPortal", "http://dbpedia.org/resource/MediaWiki", "http://dbpedia.org/resource/Media_Lovin'_Toolkit", "http://dbpedia.org/resource/Mediaroom", "http://dbpedia.org/resource/MediathekView", "http://dbpedia.org/resource/MedinTux", "http://dbpedia.org/resource/Mednafen", "http://dbpedia.org/resource/Mega2,_the_Manipulation_Environment_for_Genetic_Analysis", "http://dbpedia.org/resource/MemoQ", "http://dbpedia.org/resource/Memonic", "http://dbpedia.org/resource/Mental_Ray", "http://dbpedia.org/resource/Mercurial", "http://dbpedia.org/resource/Mercury_(programming_language)", "http://dbpedia.org/resource/Mercury_Mail_Transport_System", "http://dbpedia.org/resource/MetaSAN", "http://dbpedia.org/resource/MetaStock", "http://dbpedia.org/resource/Metamath", "http://dbpedia.org/resource/Metapad", "http://dbpedia.org/resource/Metasequoia_(software)", "http://dbpedia.org/resource/Metashape", "http://dbpedia.org/resource/Carbide.c++", "http://dbpedia.org/resource/CargoMax", "http://dbpedia.org/resource/Rainwave", "http://dbpedia.org/resource/Rakudo", "http://dbpedia.org/resource/Ranorex_Studio", "http://dbpedia.org/resource/RapidSVN", "http://dbpedia.org/resource/Raptor_(programming_language)", "http://dbpedia.org/resource/RasMol", "http://dbpedia.org/resource/Rational_Automation_Framework", "http://dbpedia.org/resource/Rational_Performance_Tester", "http://dbpedia.org/resource/Rational_Software_Modeler", "http://dbpedia.org/resource/Rational_Synergy", "http://dbpedia.org/resource/RawTherapee", "http://dbpedia.org/resource/Rclone", "http://dbpedia.org/resource/Re-mix", "http://dbpedia.org/resource/Ready,_Set,_Go!_(software)", "http://dbpedia.org/resource/Reaktor", "http://dbpedia.org/resource/RealXtend", "http://dbpedia.org/resource/RealityCapture", "http://dbpedia.org/resource/Realsoft_3D", "http://dbpedia.org/resource/Rebtel", "http://dbpedia.org/resource/Recoll", "http://dbpedia.org/resource/Recover_(command)", "http://dbpedia.org/resource/Recovery_Console", "http://dbpedia.org/resource/RedMon", "http://dbpedia.org/resource/Redcore", "http://dbpedia.org/resource/Redmine", "http://dbpedia.org/resource/Redshift_(renderer)", "http://dbpedia.org/resource/Redshift_(software)", "http://dbpedia.org/resource/RegexBuddy", "http://dbpedia.org/resource/Regsvr32", "http://dbpedia.org/resource/Rel_(DBMS)", "http://dbpedia.org/resource/RemotePC", "http://dbpedia.org/resource/Remote_Utilities", "http://dbpedia.org/resource/Renesis_Player", "http://dbpedia.org/resource/Renoise", "http://dbpedia.org/resource/Replace_(command)", "http://dbpedia.org/resource/Resource_Hacker", "http://dbpedia.org/resource/Resource_Monitor", "http://dbpedia.org/resource/Retroshare", "http://dbpedia.org/resource/Reuters_3000_Xtra", "http://dbpedia.org/resource/Revo_Uninstaller", "http://dbpedia.org/resource/Rhinoceros_3D", "http://dbpedia.org/resource/The_Geochemist's_Workbench", "http://dbpedia.org/resource/The_Major_BBS", "http://dbpedia.org/resource/The_Master_Genealogist", "http://dbpedia.org/resource/The_Next_Generation_of_Genealogy_Sitebuilding", "http://dbpedia.org/resource/The_Print_Shop", "http://dbpedia.org/resource/The_SemWare_Editor", "http://dbpedia.org/resource/The_Ur-Quan_Masters", "http://dbpedia.org/resource/The_Word_Bible_Software", "http://dbpedia.org/resource/Diffpack", "http://dbpedia.org/resource/Dig_(command)", "http://dbpedia.org/resource/Digital_Project", "http://dbpedia.org/resource/Digital_Universe_Atlas", "http://dbpedia.org/resource/Dim3", "http://dbpedia.org/resource/Dir_(command)", "http://dbpedia.org/resource/Dirac_(software)", "http://dbpedia.org/resource/Disk_Cleanup", "http://dbpedia.org/resource/EnDrain", "http://dbpedia.org/resource/Endorphin_(software)", "http://dbpedia.org/resource/Eudora_OSE", "http://dbpedia.org/resource/ProCite", "http://dbpedia.org/resource/System_Center_Mobile_Device_Manager", "http://dbpedia.org/resource/Jamstix", "http://dbpedia.org/resource/SpeedTree", "http://dbpedia.org/resource/Statistica", "http://dbpedia.org/resource/Vvvv", "http://dbpedia.org/resource/YULS", "http://dbpedia.org/resource/LinSig", "http://dbpedia.org/resource/Visual_Logic", "http://dbpedia.org/resource/ZMUD", "http://dbpedia.org/resource/PSI-Plot", "http://dbpedia.org/resource/System_Center_Service_Manager", "http://dbpedia.org/resource/3CX_Phone_System", "http://dbpedia.org/resource/3DCrafter", "http://dbpedia.org/resource/3D_Movie_Maker", "http://dbpedia.org/resource/3D_Topicscape", "http://dbpedia.org/resource/3Delight", "http://dbpedia.org/resource/@MAX_SyncUp", "http://dbpedia.org/resource/ABBYY_FineReader", "http://dbpedia.org/resource/AC3D", "http://dbpedia.org/resource/AC3Filter", "http://dbpedia.org/resource/ACE_(editor)", "http://dbpedia.org/resource/ADaMSoft", "http://dbpedia.org/resource/AGX_Multiphysics", "http://dbpedia.org/resource/AIM_(software)", "http://dbpedia.org/resource/AIM_Ad_Hack", "http://dbpedia.org/resource/ALFTP", "http://dbpedia.org/resource/AMBER", "http://dbpedia.org/resource/AMD_APP_SDK", "http://dbpedia.org/resource/AMD_Radeon_Software", "http://dbpedia.org/resource/AMPL", "http://dbpedia.org/resource/ANUGA_Hydro", "http://dbpedia.org/resource/AOL_Active_Virus_Shield", "http://dbpedia.org/resource/AOL_Explorer", "http://dbpedia.org/resource/AOL_OpenRide", "http://dbpedia.org/resource/API_Sanity_Checker", "http://dbpedia.org/resource/ARToolKit", "http://dbpedia.org/resource/ASP.NET", "http://dbpedia.org/resource/ASP.NET_AJAX", "http://dbpedia.org/resource/ASP.NET_Core", "http://dbpedia.org/resource/ASP.NET_Dynamic_Data", "http://dbpedia.org/resource/ASP.NET_Razor", "http://dbpedia.org/resource/ASP.NET_Web_Forms", "http://dbpedia.org/resource/Nimble_Streamer", "http://dbpedia.org/resource/Nimbus_Note", "http://dbpedia.org/resource/NinJo", "http://dbpedia.org/resource/Ninja_(build_system)", "http://dbpedia.org/resource/Ninjam", "http://dbpedia.org/resource/Nirvana_(software)", "http://dbpedia.org/resource/Nitro_Pro", "http://dbpedia.org/resource/Node.js", "http://dbpedia.org/resource/NodeXL", "http://dbpedia.org/resource/Nokia_Lifeblog", "http://dbpedia.org/resource/Nokia_PC_Suite", "http://dbpedia.org/resource/Nokia_Suite", "http://dbpedia.org/resource/Nokogiri_(software)", "http://dbpedia.org/resource/Nomad.NET", "http://dbpedia.org/resource/NonVisual_Desktop_Access", "http://dbpedia.org/resource/Norton_AntiVirus", "http://dbpedia.org/resource/Norton_Security", "http://dbpedia.org/resource/Norton_SystemWorks", "http://dbpedia.org/resource/Norton_Utilities", "http://dbpedia.org/resource/Notam_Check", "http://dbpedia.org/resource/Notation_Composer", "http://dbpedia.org/resource/Notepad++", "http://dbpedia.org/resource/Nslookup", "http://dbpedia.org/resource/NuSMV", "http://dbpedia.org/resource/Nuke_(software)", "http://dbpedia.org/resource/OCaml", "http://dbpedia.org/resource/OE-Cake!", "http://dbpedia.org/resource/OFFSystem", "http://dbpedia.org/resource/OHRRPGCE", "http://dbpedia.org/resource/OMPL", "http://dbpedia.org/resource/OR-Tools", "http://dbpedia.org/resource/OVPsim", "http://dbpedia.org/resource/ObjectDock", "http://dbpedia.org/resource/Object_Desktop", "http://dbpedia.org/resource/Object_REXX", "http://dbpedia.org/resource/OctaDist", "http://dbpedia.org/resource/Odoo", "http://dbpedia.org/resource/Gordano_Messaging_Suite", "http://dbpedia.org/resource/Microsoft_Compiled_HTML_Help", "http://dbpedia.org/resource/Helicon_Ape", "http://dbpedia.org/resource/History_(command)", "http://dbpedia.org/resource/IMPRINT_(Improved_Performance_Research_Integration_Tool)", "http://dbpedia.org/resource/Internet_Connection_Sharing", "http://dbpedia.org/resource/Norton_Insight", "http://dbpedia.org/resource/IBM_Lotus_Approach", "http://dbpedia.org/resource/Leon_(software)", "http://dbpedia.org/resource/Lily_(software)", "http://dbpedia.org/resource/Q_(game_engine)", "http://dbpedia.org/resource/RAMP_Simulation_Software_for_Modelling_Reliability,_Availability_and_Maintainability", "http://dbpedia.org/resource/Rana_(software)", "http://dbpedia.org/resource/Remote_Desktop_Services", "http://dbpedia.org/resource/RenderWare", "http://dbpedia.org/resource/Rmdir", "http://dbpedia.org/resource/Tone_Rion", "http://dbpedia.org/resource/FrameForge_3D_Studio", "http://dbpedia.org/resource/WIN.COM", "http://dbpedia.org/resource/Program_Manager", "http://dbpedia.org/resource/SEEP2D", "http://dbpedia.org/resource/The_Unscrambler", "http://dbpedia.org/resource/WinCC", "http://dbpedia.org/resource/Rapid_PHP_Editor", "http://dbpedia.org/resource/StealthNet", "http://dbpedia.org/resource/VS-PLUS", "http://dbpedia.org/resource/Neural_Designer", "http://dbpedia.org/resource/Quirkos", "http://dbpedia.org/resource/RenderDoc", "http://dbpedia.org/resource/Sweet_Ann", "http://dbpedia.org/resource/Trados_Studio", "http://dbpedia.org/resource/Transparent_Language_Online", "http://dbpedia.org/resource/Citra_(emulator)", "http://dbpedia.org/resource/ClanLib", "http://dbpedia.org/resource/Clarion_(programming_language)", "http://dbpedia.org/resource/Claws_Mail", "http://dbpedia.org/resource/ClipBook_Viewer", "http://dbpedia.org/resource/ClipGrab", "http://dbpedia.org/resource/Clip_Studio_Paint", "http://dbpedia.org/resource/Cliqz", "http://dbpedia.org/resource/CloneCD", "http://dbpedia.org/resource/Clozure_CL", "http://dbpedia.org/resource/Clubdjpro", "http://dbpedia.org/resource/Clutter_(software)", "http://dbpedia.org/resource/Cobalt_(CAD_program)", "http://dbpedia.org/resource/Cobian_Backup", "http://dbpedia.org/resource/Coccinella_(software)", "http://dbpedia.org/resource/CodeCharge_Studio", "http://dbpedia.org/resource/CodeRush", "http://dbpedia.org/resource/Code_Co-op", "http://dbpedia.org/resource/CodedColor_PhotoStudio_Pro", "http://dbpedia.org/resource/Codelobster", "http://dbpedia.org/resource/Colectica", "http://dbpedia.org/resource/Collective_Knowledge_(software)", "http://dbpedia.org/resource/CombineZ", "http://dbpedia.org/resource/Combined_Community_Codec_Pack", "http://dbpedia.org/resource/Comeau_C/C++", "http://dbpedia.org/resource/Comet_Cursor", "http://dbpedia.org/resource/Comic_Seer", "http://dbpedia.org/resource/CommuniGate_Pro", "http://dbpedia.org/resource/Comodo_Dragon", "http://dbpedia.org/resource/Comodo_IceDragon", "http://dbpedia.org/resource/Comp_(command)", "http://dbpedia.org/resource/Compiere", "http://dbpedia.org/resource/CompleteFTP", "http://dbpedia.org/resource/ConEmu", "http://dbpedia.org/resource/ConceptDraw_DIAGRAM", "http://dbpedia.org/resource/ConceptDraw_MINDMAP", "http://dbpedia.org/resource/ConceptDraw_Office", "http://dbpedia.org/resource/ConceptDraw_Project", "http://dbpedia.org/resource/Concurrent_Versions_System", "http://dbpedia.org/resource/Confluence_(software)", "http://dbpedia.org/resource/ConnectWise_Control", "http://dbpedia.org/resource/ConnectedText", "http://dbpedia.org/resource/Connectix_Virtual_Game_Station", "http://dbpedia.org/resource/Construct_(game_engine)", "http://dbpedia.org/resource/Contao", "http://dbpedia.org/resource/Contig_(defragmentation_utility)", "http://dbpedia.org/resource/ContractExpress", "http://dbpedia.org/resource/Control_Panel_(Windows)", "http://dbpedia.org/resource/Convert_(command)", "http://dbpedia.org/resource/CoolSpeech", "http://dbpedia.org/resource/Cooliris_(plugin)", "http://dbpedia.org/resource/Coot_(software)", "http://dbpedia.org/resource/CopSSH", "http://dbpedia.org/resource/CopperCube", "http://dbpedia.org/resource/Alias_(command)", "http://dbpedia.org/resource/Alias_Eclipse", "http://dbpedia.org/resource/Auslogics_Disk_Defrag", "http://dbpedia.org/resource/AutoCAD_Architecture", "http://dbpedia.org/resource/AutoCollage_2008", "http://dbpedia.org/resource/AutoTURN", "http://dbpedia.org/resource/AutoTrack", "http://dbpedia.org/resource/Autodesk_Alias", "http://dbpedia.org/resource/Automate_Schedule", "http://dbpedia.org/resource/Avanna", "http://dbpedia.org/resource/Avast_SecureLine_VPN", "http://dbpedia.org/resource/AveDesk", "http://dbpedia.org/resource/Jokosher", "http://dbpedia.org/resource/Joplin_(software)", "http://dbpedia.org/resource/Jtest", "http://dbpedia.org/resource/JuK", "http://dbpedia.org/resource/Juice_(aggregator)", "http://dbpedia.org/resource/SapWin", "http://dbpedia.org/resource/Scala_(software)", "http://dbpedia.org/resource/Scan2CAD", "http://dbpedia.org/resource/Scanner_(software)", "http://dbpedia.org/resource/Scanner_Access_Now_Easy", "http://dbpedia.org/resource/School_Information_Management_System", "http://dbpedia.org/resource/SciDAVis", "http://dbpedia.org/resource/ScicosLab", "http://dbpedia.org/resource/Scikit-image", "http://dbpedia.org/resource/Scikit-learn", "http://dbpedia.org/resource/Scikit-multiflow", "http://dbpedia.org/resource/Scilab_Image_Processing", "http://dbpedia.org/resource/Scrapy", "http://dbpedia.org/resource/Scratch_Live", "http://dbpedia.org/resource/Screencam", "http://dbpedia.org/resource/Scribe_Mail", "http://dbpedia.org/resource/Scrivener_(software)", "http://dbpedia.org/resource/Sculptris", "http://dbpedia.org/resource/Scythe_Physics_Editor", "http://dbpedia.org/resource/SeaMonkey", "http://dbpedia.org/resource/SeaTools", "http://dbpedia.org/resource/Seamless3d", "http://dbpedia.org/resource/Secure_file_transfer_program", "http://dbpedia.org/resource/Seed7", "http://dbpedia.org/resource/Seesmic", "http://dbpedia.org/resource/Sense_(programming)", "http://dbpedia.org/resource/Seq24", "http://dbpedia.org/resource/SequenceL", "http://dbpedia.org/resource/F9_Financial_Reporting", "http://dbpedia.org/resource/FIDYST", "http://dbpedia.org/resource/FINE_MEP", "http://dbpedia.org/resource/FITS_Liberator", "http://dbpedia.org/resource/FLACS", "http://dbpedia.org/resource/FalconView", "http://dbpedia.org/resource/Fanurio", "http://dbpedia.org/resource/Fast_Duplicate_File_Finder", "http://dbpedia.org/resource/Gh0st_RAT", "http://dbpedia.org/resource/MathCast", "http://dbpedia.org/resource/Norton_Personal_Firewall", "http://dbpedia.org/resource/War_FTP_Daemon", "http://dbpedia.org/resource/Sentry_2020", "http://dbpedia.org/resource/TamoGraph_Site_Survey", "http://dbpedia.org/resource/RQDA", "http://dbpedia.org/resource/Volume_Logic", "http://dbpedia.org/resource/WinAPIOverride", "http://dbpedia.org/resource/KH_Coder", "http://dbpedia.org/resource/Mailtraq", "http://dbpedia.org/resource/ShowDocument", "http://dbpedia.org/resource/LIMDEP", "http://dbpedia.org/resource/QSvn", "http://dbpedia.org/resource/LiteStep", "http://dbpedia.org/resource/NuCalc", "http://dbpedia.org/resource/MapInfo_Professional", "http://dbpedia.org/resource/System_Center_Operations_Manager", "http://dbpedia.org/resource/Azure_DevOps_Server", "http://dbpedia.org/resource/B1_Free_Archiver", "http://dbpedia.org/resource/B4X", "http://dbpedia.org/resource/BAITSSS", "http://dbpedia.org/resource/BBC_BASIC", "http://dbpedia.org/resource/BGS_Groundhog_Desktop", "http://dbpedia.org/resource/BIDS_Helper", "http://dbpedia.org/resource/BLIS_(software)", "http://dbpedia.org/resource/BORGChat", "http://dbpedia.org/resource/BOSS_(molecular_mechanics)", "http://dbpedia.org/resource/Babel_(transcompiler)", "http://dbpedia.org/resource/Background_Intelligent_Transfer_Service", "http://dbpedia.org/resource/Balsamiq", "http://dbpedia.org/resource/Bandicam", "http://dbpedia.org/resource/Banshee_(media_player)", "http://dbpedia.org/resource/Baraha", "http://dbpedia.org/resource/Base_One_Foundation_Component_Library", "http://dbpedia.org/resource/Basic4android", "http://dbpedia.org/resource/Basic4ppc", "http://dbpedia.org/resource/BattlEye", "http://dbpedia.org/resource/Infer.NET", "http://dbpedia.org/resource/InfoZoom", "http://dbpedia.org/resource/Informix_Wingz", "http://dbpedia.org/resource/Inkscape", "http://dbpedia.org/resource/Inno_Setup", "http://dbpedia.org/resource/Inquisiq_R3", "http://dbpedia.org/resource/Instagram", "http://dbpedia.org/resource/InstallShield", "http://dbpedia.org/resource/Installatron", "http://dbpedia.org/resource/Installer_VISE", "http://dbpedia.org/resource/Insure++", "http://dbpedia.org/resource/Integra_Live", "http://dbpedia.org/resource/Integrated_Performance_Primitives", "http://dbpedia.org/resource/Intel_C++_Compiler", "http://dbpedia.org/resource/Intel_Fortran_Compiler", "http://dbpedia.org/resource/IntelliCAD", "http://dbpedia.org/resource/IntelliPoint", "http://dbpedia.org/resource/IntelliType", "http://dbpedia.org/resource/InterActual_Player", "http://dbpedia.org/resource/Interactive_C", "http://dbpedia.org/resource/Interix", "http://dbpedia.org/resource/Intorel", "http://dbpedia.org/resource/Intrexx", "http://dbpedia.org/resource/IrfanView", "http://dbpedia.org/resource/IronPython", "http://dbpedia.org/resource/IronRuby", "http://dbpedia.org/resource/IronScheme", "http://dbpedia.org/resource/Irrlicht_Engine", "http://dbpedia.org/resource/IsoBuster", "http://dbpedia.org/resource/J2K-Codec", "http://dbpedia.org/resource/JACK_Audio_Connection_Kit", "http://dbpedia.org/resource/JAWS_(screen_reader)", "http://dbpedia.org/resource/JCreator", "http://dbpedia.org/resource/JDownloader", "http://dbpedia.org/resource/JEB_decompiler", "http://dbpedia.org/resource/JED_(text_editor)", "http://dbpedia.org/resource/JMP_(statistical_software)", "http://dbpedia.org/resource/JMulTi", "http://dbpedia.org/resource/JOELib", "http://dbpedia.org/resource/JScript", "http://dbpedia.org/resource/JUMP_GIS", "http://dbpedia.org/resource/JWPce", "http://dbpedia.org/resource/J_(programming_language)", "http://dbpedia.org/resource/Mixcraft", "http://dbpedia.org/resource/Mkdir", "http://dbpedia.org/resource/Mlpy", "http://dbpedia.org/resource/Mobile_PhoneTools", "http://dbpedia.org/resource/Mobile_Robot_Programming_Toolkit", "http://dbpedia.org/resource/Mobiola", "http://dbpedia.org/resource/Mod4Win", "http://dbpedia.org/resource/Modelio", "http://dbpedia.org/resource/Moho_(software)", "http://dbpedia.org/resource/Mojiky\u014d", "http://dbpedia.org/resource/Molden", "http://dbpedia.org/resource/Molecular_Evolutionary_Genetics_Analysis", "http://dbpedia.org/resource/Molekel", "http://dbpedia.org/resource/Mondrian_(software)", "http://dbpedia.org/resource/MonoDevelop", "http://dbpedia.org/resource/Monotone_(software)", "http://dbpedia.org/resource/Morpheus_(software)", "http://dbpedia.org/resource/MountainsMap", "http://dbpedia.org/resource/MovAlyzeR", "http://dbpedia.org/resource/MoviePlus", "http://dbpedia.org/resource/Mozart_the_music_processor", "http://dbpedia.org/resource/Mpv_(media_player)", "http://dbpedia.org/resource/Ms2_(software)", "http://dbpedia.org/resource/MuCommander", "http://dbpedia.org/resource/MuPAD", "http://dbpedia.org/resource/MuPDF", "http://dbpedia.org/resource/Mullvad", "http://dbpedia.org/resource/Multi-Edit", "http://dbpedia.org/resource/MultiCharts", "http://dbpedia.org/resource/MultiEx_Commander", "http://dbpedia.org/resource/MultiOTP", "http://dbpedia.org/resource/Multi_Theft_Auto", "http://dbpedia.org/resource/Mumble_(software)", "http://dbpedia.org/resource/Mupen64Plus", "http://dbpedia.org/resource/Mus2", "http://dbpedia.org/resource/MusiCAD", "http://dbpedia.org/resource/MusicBrainz_Picard", "http://dbpedia.org/resource/MusicMaster_(software)", "http://dbpedia.org/resource/MusikCube", "http://dbpedia.org/resource/Musink", "http://dbpedia.org/resource/Muvee_Reveal", "http://dbpedia.org/resource/Muziic", "http://dbpedia.org/resource/MyPaint", "http://dbpedia.org/resource/MyPhoneExplorer", "http://dbpedia.org/resource/MySQL", "http://dbpedia.org/resource/MySQL_Federated", "http://dbpedia.org/resource/MyTuner_Radio", "http://dbpedia.org/resource/Myspace_IM", "http://dbpedia.org/resource/Mystic_BBS", "http://dbpedia.org/resource/NAMD", "http://dbpedia.org/resource/NANO_Antivirus", "http://dbpedia.org/resource/NASA's_Eyes", "http://dbpedia.org/resource/NDepend", "http://dbpedia.org/resource/NEVOD_DMB", "http://dbpedia.org/resource/NI_Ultiboard", "http://dbpedia.org/resource/NL5_Circuit_Simulator", "http://dbpedia.org/resource/NMath", "http://dbpedia.org/resource/NProtect_GameGuard", "http://dbpedia.org/resource/NTBackup", "http://dbpedia.org/resource/NTFSDOS", "http://dbpedia.org/resource/NTLDR", "http://dbpedia.org/resource/Nacsport_Video_Analysis_Software", "http://dbpedia.org/resource/CherryOS", "http://dbpedia.org/resource/Colligo_Contributor", "http://dbpedia.org/resource/Combustion_(software)", "http://dbpedia.org/resource/CommView", "http://dbpedia.org/resource/CubePort", "http://dbpedia.org/resource/Cul_(software)", "http://dbpedia.org/resource/CumFreq", "http://dbpedia.org/resource/Cyber_Diva", "http://dbpedia.org/resource/Toonz", "http://dbpedia.org/resource/TopStyle", "http://dbpedia.org/resource/Torque_(game_engine)", "http://dbpedia.org/resource/TortoiseCVS", "http://dbpedia.org/resource/TortoiseGit", "http://dbpedia.org/resource/TortoiseSVN", "http://dbpedia.org/resource/Total_Commander", "http://dbpedia.org/resource/Touch_(command)", "http://dbpedia.org/resource/Touch_Typist_Typing_Tutor", "http://dbpedia.org/resource/TracExplorer", "http://dbpedia.org/resource/Tracktion_Waveform", "http://dbpedia.org/resource/TradElect", "http://dbpedia.org/resource/Transana", "http://dbpedia.org/resource/TranslateCAD", "http://dbpedia.org/resource/Transmission_(BitTorrent_client)", "http://dbpedia.org/resource/Transterpreter", "http://dbpedia.org/resource/Tread_Marks", "http://dbpedia.org/resource/Trello", "http://dbpedia.org/resource/Trend_Micro_Internet_Security", "http://dbpedia.org/resource/Tribler", "http://dbpedia.org/resource/Tricentis_Tosca", "http://dbpedia.org/resource/Trident_(software)", "http://dbpedia.org/resource/TrueSpace", "http://dbpedia.org/resource/Tulip_(software)", "http://dbpedia.org/resource/TurboCASH", "http://dbpedia.org/resource/Turbo_Assembler", "http://dbpedia.org/resource/Turbo_C++", "http://dbpedia.org/resource/TuxGuitar", "http://dbpedia.org/resource/Tux_Paint", "http://dbpedia.org/resource/Tweak_UI", "http://dbpedia.org/resource/Ixi_software", "http://dbpedia.org/resource/Junctions_(software)", "http://dbpedia.org/resource/IBM_Spectrum_LSF", "http://dbpedia.org/resource/Kaito_(software)", "http://dbpedia.org/resource/Kepler_scientific_workflow_system", "http://dbpedia.org/resource/Kernel_Transaction_Manager", "http://dbpedia.org/resource/Samsung_Kies", "http://dbpedia.org/resource/NetBus", "http://dbpedia.org/resource/PP3", "http://dbpedia.org/resource/SeeU", "http://dbpedia.org/resource/ATTRIB", "http://dbpedia.org/resource/Abaqus", "http://dbpedia.org/resource/Ability_Office", "http://dbpedia.org/resource/AbsoluteTelnet", "http://dbpedia.org/resource/Access_Database_Engine", "http://dbpedia.org/resource/AccuRev_SCM", "http://dbpedia.org/resource/Acme_(text_editor)", "http://dbpedia.org/resource/Act!_LLC", "http://dbpedia.org/resource/ActivePresenter", "http://dbpedia.org/resource/ActiveX", "http://dbpedia.org/resource/Active_Worlds", "http://dbpedia.org/resource/Activprimary", "http://dbpedia.org/resource/AdaControl", "http://dbpedia.org/resource/Adaptive_Modeler", "http://dbpedia.org/resource/Adempiere", "http://dbpedia.org/resource/Adobe_Atmosphere", "http://dbpedia.org/resource/Adobe_Captivate", "http://dbpedia.org/resource/Adobe_Connect", "http://dbpedia.org/resource/Adobe_Digital_Editions", "http://dbpedia.org/resource/Adobe_Flash_Catalyst", "http://dbpedia.org/resource/Adobe_Flash_Media_Live_Encoder", "http://dbpedia.org/resource/Adobe_Flash_Player", "http://dbpedia.org/resource/Adobe_FreeHand", "http://dbpedia.org/resource/Adobe_LiveMotion", "http://dbpedia.org/resource/Adobe_Media_Server", "http://dbpedia.org/resource/Adobe_Premiere", "http://dbpedia.org/resource/Adobe_Presenter", "http://dbpedia.org/resource/Adobe_Scout", "http://dbpedia.org/resource/Adobe_Shockwave_Player", "http://dbpedia.org/resource/Adobe_Ultra", "http://dbpedia.org/resource/Adobe_Visual_Communicator", "http://dbpedia.org/resource/Advanced_Manufacturing_Software", "http://dbpedia.org/resource/Advanced_Resource_Connector", "http://dbpedia.org/resource/Advanced_Simulation_Library", "http://dbpedia.org/resource/Advanced_Systems_Analysis_Program", "http://dbpedia.org/resource/Advanced_Visualization_Studio", "http://dbpedia.org/resource/Adventure_Game_Studio", "http://dbpedia.org/resource/Affinity_Designer", "http://dbpedia.org/resource/Agros2D", "http://dbpedia.org/resource/BugsXLA", "http://dbpedia.org/resource/Buildout", "http://dbpedia.org/resource/Bullet_(software)", "http://dbpedia.org/resource/C++/WinRT", "http://dbpedia.org/resource/C1_CMS", "http://dbpedia.org/resource/C3D_Toolkit", "http://dbpedia.org/resource/CATIA", "http://dbpedia.org/resource/CCS64", "http://dbpedia.org/resource/CC_PDF_Converter", "http://dbpedia.org/resource/CDWinder", "http://dbpedia.org/resource/CD_Player_(Windows)", "http://dbpedia.org/resource/CDex", "http://dbpedia.org/resource/CDisplay", "http://dbpedia.org/resource/CLAN_program", "http://dbpedia.org/resource/CLR_Profiler", "http://dbpedia.org/resource/CODY_Assessment", "http://dbpedia.org/resource/CONN_(functional_connectivity_toolbox)", "http://dbpedia.org/resource/CPU-Z", "http://dbpedia.org/resource/CUPS", "http://dbpedia.org/resource/CVSNT", "http://dbpedia.org/resource/Cadabra_(computer_program)", "http://dbpedia.org/resource/Caffe_(software)", "http://dbpedia.org/resource/Cain_and_Abel_(software)", "http://dbpedia.org/resource/Cakewalk_(sequencer)", "http://dbpedia.org/resource/Cakewalk_Sonar", "http://dbpedia.org/resource/Cakewalk_by_BandLab", "http://dbpedia.org/resource/Calamus_(DTP)", "http://dbpedia.org/resource/Calculix", "http://dbpedia.org/resource/Calibre_(software)", "http://dbpedia.org/resource/Calligra", "http://dbpedia.org/resource/Calligra_Flow", "http://dbpedia.org/resource/Calligra_Plan", "http://dbpedia.org/resource/Calligra_Sheets", "http://dbpedia.org/resource/Calligra_Stage", "http://dbpedia.org/resource/Calligra_Words", "http://dbpedia.org/resource/CamStudio", "http://dbpedia.org/resource/Cambridge_Animation_Systems", "http://dbpedia.org/resource/Camfrog", "http://dbpedia.org/resource/Camtasia", "http://dbpedia.org/resource/Cd_(command)", "http://dbpedia.org/resource/Celestia", "http://dbpedia.org/resource/Cemu", "http://dbpedia.org/resource/Cerberus_FTP_Server", "http://dbpedia.org/resource/Ch_(computer_programming)", "http://dbpedia.org/resource/Chakra_(JScript_engine)", "http://dbpedia.org/resource/Chakra_(JavaScript_engine)", "http://dbpedia.org/resource/Chandler_(software)", "http://dbpedia.org/resource/Charles_Proxy", "http://dbpedia.org/resource/ChemDraw", "http://dbpedia.org/resource/ChessGenius", "http://dbpedia.org/resource/ChessV", "http://dbpedia.org/resource/Chess_Tiger", "http://dbpedia.org/resource/Chess_Titans", "http://dbpedia.org/resource/Chewing_(Input_Method)", "http://dbpedia.org/resource/Choice_(command)", "http://dbpedia.org/resource/Chrome_Remote_Desktop", "http://dbpedia.org/resource/Chromium_B.S.U.", "http://dbpedia.org/resource/Cinder_(programming_library)", "http://dbpedia.org/resource/Cinderella_(software)", "http://dbpedia.org/resource/CineAsset", "http://dbpedia.org/resource/CinePlayer", "http://dbpedia.org/resource/Cinema_4D", "http://dbpedia.org/resource/CintaNotes", "http://dbpedia.org/resource/CircuitLogix", "http://dbpedia.org/resource/Stimulsoft_Reports", "http://dbpedia.org/resource/Stockfish_(chess)", "http://dbpedia.org/resource/Stopping_and_Range_of_Ions_in_Matter", "http://dbpedia.org/resource/Stratagus", "http://dbpedia.org/resource/Strelka_(chess_engine)", "http://dbpedia.org/resource/Stride_(game_engine)", "http://dbpedia.org/resource/Strip_(Unix)", "http://dbpedia.org/resource/Studio_One_(software)", "http://dbpedia.org/resource/StuffIt", "http://dbpedia.org/resource/StuffIt_Expander", "http://dbpedia.org/resource/StyleCop", "http://dbpedia.org/resource/Style_Jukebox", "http://dbpedia.org/resource/Stylus_Studio", "http://dbpedia.org/resource/Sub7", "http://dbpedia.org/resource/SubRip", "http://dbpedia.org/resource/SubTile", "http://dbpedia.org/resource/SugarSync", "http://dbpedia.org/resource/SunVox", "http://dbpedia.org/resource/SuperMemo", "http://dbpedia.org/resource/Super_Flexible", "http://dbpedia.org/resource/Suricata_(software)", "http://dbpedia.org/resource/Surround_SCM", "http://dbpedia.org/resource/Swarm_(simulation)", "http://dbpedia.org/resource/Swift_3D", "http://dbpedia.org/resource/SwisTrack", "http://dbpedia.org/resource/Peltarion_Synapse", "http://dbpedia.org/resource/STAR_(software)", "http://dbpedia.org/resource/Start_(command)", "http://dbpedia.org/resource/Strata_3D", "http://dbpedia.org/resource/Symphony_(software)", "http://dbpedia.org/resource/System_Information_(Windows)", "http://dbpedia.org/resource/TSP_(econometrics_software)", "http://dbpedia.org/resource/Tangerine_(software)", "http://dbpedia.org/resource/Test_&_Performance_Tools_Platform", "http://dbpedia.org/resource/Text_Services_Framework", "http://dbpedia.org/resource/Wunderlist", "http://dbpedia.org/resource/SaltMod", "http://dbpedia.org/resource/Syncthing", "http://dbpedia.org/resource/Usenet_Explorer", "http://dbpedia.org/resource/HDF_Explorer", "http://dbpedia.org/resource/HLSW", "http://dbpedia.org/resource/Jv16_powertools", "http://dbpedia.org/resource/Accelerated_Math", "http://dbpedia.org/resource/Acronis_Files_Connect", "http://dbpedia.org/resource/Action_Center", "http://dbpedia.org/resource/ActivePresentation", "http://dbpedia.org/resource/Active_Desktop", "http://dbpedia.org/resource/Active_Template_Library", "http://dbpedia.org/resource/Capsa_(software)", "http://dbpedia.org/resource/Capture_One", "http://dbpedia.org/resource/Cardfile", "http://dbpedia.org/resource/CaseComplete", "http://dbpedia.org/resource/Hoard_memory_allocator", "http://dbpedia.org/resource/Holiline_Reminder", "http://dbpedia.org/resource/Hollywood_(programming_language)", "http://dbpedia.org/resource/Houdini_(chess)", "http://dbpedia.org/resource/Hugin_(software)", "http://dbpedia.org/resource/Hugo_(software)", "http://dbpedia.org/resource/BearShare", "http://dbpedia.org/resource/Beast_(Trojan_horse)", "http://dbpedia.org/resource/Beonex_Communicator", "http://dbpedia.org/resource/LAMMPS", "http://dbpedia.org/resource/LCD_Smartie", "http://dbpedia.org/resource/LDE(X)", "http://dbpedia.org/resource/LINA_(software)", "http://dbpedia.org/resource/LINQPad", "http://dbpedia.org/resource/LIONsolver", "http://dbpedia.org/resource/LISE++", "http://dbpedia.org/resource/LMMS", "http://dbpedia.org/resource/LONI_Pipeline", "http://dbpedia.org/resource/LS-DYNA", "http://dbpedia.org/resource/LView", "http://dbpedia.org/resource/LaTeXML", "http://dbpedia.org/resource/LabVIEW", "http://dbpedia.org/resource/Label_(command)", "http://dbpedia.org/resource/LambdaNative", "http://dbpedia.org/resource/Landscape_Express", "http://dbpedia.org/resource/Lansweeper", "http://dbpedia.org/resource/Lantern_(software)", "http://dbpedia.org/resource/LaplacesDemon", "http://dbpedia.org/resource/Lark_(software)", "http://dbpedia.org/resource/LeafChat", "http://dbpedia.org/resource/Eloquens_(software)", "http://dbpedia.org/resource/TYPE_(DOS_command)", "http://dbpedia.org/resource/Titan_(game_engine)", "http://dbpedia.org/resource/Title_(command)", "http://dbpedia.org/resource/Tonio_(software)", "http://dbpedia.org/resource/Tree_(command)", "http://dbpedia.org/resource/Gachapoid", "http://dbpedia.org/resource/Galaco", "http://dbpedia.org/resource/GameTap", "http://dbpedia.org/resource/Game_Editor", "http://dbpedia.org/resource/Garant", "http://dbpedia.org/resource/TOMVIEW", "http://dbpedia.org/resource/Hetman_Partition_Recovery", "http://dbpedia.org/resource/Heurist", "http://dbpedia.org/resource/Jedox", "http://dbpedia.org/resource/TetGen", "http://dbpedia.org/resource/TorChat", "http://dbpedia.org/resource/OpenPlay", "http://dbpedia.org/resource/PeakFit", "http://dbpedia.org/resource/TeX4ht", "http://dbpedia.org/resource/Windows_Messaging", "http://dbpedia.org/resource/KNIME", "http://dbpedia.org/resource/Microsoft_Mouse_and_Keyboard_Center", "http://dbpedia.org/resource/Mobiliti", "http://dbpedia.org/resource/Question_Writer", "http://dbpedia.org/resource/Regina_(program)", "http://dbpedia.org/resource/Semcat", "http://dbpedia.org/resource/TTM_57_SL", "http://dbpedia.org/resource/Micro_Focus_Application_Lifecycle_Management", "http://dbpedia.org/resource/Microsoft_Drive_Optimizer", "http://dbpedia.org/resource/Microsoft_PhotoDraw", "http://dbpedia.org/resource/Microsoft_Tips", "http://dbpedia.org/resource/RetroCode", "http://dbpedia.org/resource/ShareScope", "http://dbpedia.org/resource/Thomson_Reuters_Messenger", "http://dbpedia.org/resource/NCSIMUL", "http://dbpedia.org/resource/DocFetcher", "http://dbpedia.org/resource/DocPoint", "http://dbpedia.org/resource/Dolphin_(file_manager)", "http://dbpedia.org/resource/Dolphin_Smalltalk", "http://dbpedia.org/resource/Dooble", "http://dbpedia.org/resource/Double_Commander", "http://dbpedia.org/resource/Dpath", "http://dbpedia.org/resource/Dr.Web", "http://dbpedia.org/resource/DrGeo", "http://dbpedia.org/resource/Dr_Solomon's_Antivirus", "http://dbpedia.org/resource/Dragon_NaturallySpeaking", "http://dbpedia.org/resource/Drawing_Express", "http://dbpedia.org/resource/Drive_Letter_Access", "http://dbpedia.org/resource/Dropbox", "http://dbpedia.org/resource/Dryad_(programming)", "http://dbpedia.org/resource/Dymola", "http://dbpedia.org/resource/Dynamic_Languages_Toolkit", "http://dbpedia.org/resource/D\u00e9j\u00e0_Vu_(software)", "http://dbpedia.org/resource/E-aksharayan", "http://dbpedia.org/resource/E-mu_Emulator_X", "http://dbpedia.org/resource/EAGLE_(program)", "http://dbpedia.org/resource/CloudMe", "http://dbpedia.org/resource/CoWord", "http://dbpedia.org/resource/CodeBook", "http://dbpedia.org/resource/CodeWright", "http://dbpedia.org/resource/Simple_Protocol_for_Independent_Computing_Environments", "http://dbpedia.org/resource/Simple_and_Fast_Multimedia_Library", "http://dbpedia.org/resource/Simplenote", "http://dbpedia.org/resource/SimulationX", "http://dbpedia.org/resource/Simulation_Open_Framework_Architecture", "http://dbpedia.org/resource/Simulia_(company)", "http://dbpedia.org/resource/Simulink", "http://dbpedia.org/resource/Sirius_visualization_software", "http://dbpedia.org/resource/Site_Recorder", "http://dbpedia.org/resource/Sketchbook_(software)", "http://dbpedia.org/resource/SkyGrabber", "http://dbpedia.org/resource/Skyglobe", "http://dbpedia.org/resource/Skype_for_Business_Server", "http://dbpedia.org/resource/Slack_(software)", "http://dbpedia.org/resource/Sleep_(command)", "http://dbpedia.org/resource/Sleipnir_(web_browser)", "http://dbpedia.org/resource/Slic3r", "http://dbpedia.org/resource/SliderDock", "http://dbpedia.org/resource/SlimBrowser", "http://dbpedia.org/resource/SlipKnot_(web_browser)", "http://dbpedia.org/resource/Small_Device_C_Compiler", "http://dbpedia.org/resource/SmartDrive", "http://dbpedia.org/resource/SmartScore", "http://dbpedia.org/resource/Smuxi", "http://dbpedia.org/resource/Snagit", "http://dbpedia.org/resource/Snowdrop_(game_engine)", "http://dbpedia.org/resource/SoX", "http://dbpedia.org/resource/Soda_PDF", "http://dbpedia.org/resource/Sodipodi", "http://dbpedia.org/resource/SoftDent", "http://dbpedia.org/resource/SoftICE", "http://dbpedia.org/resource/SoftMaker_Presentations", "http://dbpedia.org/resource/SoftRAM", "http://dbpedia.org/resource/Software_Ideas_Modeler", "http://dbpedia.org/resource/Soldat_(video_game)", "http://dbpedia.org/resource/Solex_(software)", "http://dbpedia.org/resource/SolidWorks", "http://dbpedia.org/resource/Solid_Edge", "http://dbpedia.org/resource/Solid_PDF_Tools", "http://dbpedia.org/resource/SolveSpace", "http://dbpedia.org/resource/Sonique_(media_player)", "http://dbpedia.org/resource/Sony_Ziris", "http://dbpedia.org/resource/Sound_Forge", "http://dbpedia.org/resource/Source_Filmmaker", "http://dbpedia.org/resource/Source_Insight", "http://dbpedia.org/resource/Creative_Writer", "http://dbpedia.org/resource/Creature_House_Expression", "http://dbpedia.org/resource/Cross/CrossDJ", "http://dbpedia.org/resource/Notion_(productivity_software)", "http://dbpedia.org/resource/ORCA_(quantum_chemistry_program)", "http://dbpedia.org/resource/Oliver_(software)", "http://dbpedia.org/resource/Omnis_Studio", "http://dbpedia.org/resource/Picture_Motion_Browser", "http://dbpedia.org/resource/PowerBuilder", "http://dbpedia.org/resource/StrangeSearch", "http://dbpedia.org/resource/WebLOAD", "http://dbpedia.org/resource/Microsoft_Diagnostics", "http://dbpedia.org/resource/SEER-SEM", "http://dbpedia.org/resource/Ssh-keygen", "http://dbpedia.org/resource/TestPartner", "http://dbpedia.org/resource/ReadyBoost", "http://dbpedia.org/resource/SegReg", "http://dbpedia.org/resource/Windows_for_Pen_Computing", "http://dbpedia.org/resource/Microsoft_Picture_It!", "http://dbpedia.org/resource/SDL_Passolo", "http://dbpedia.org/resource/Synchronize_It", "http://dbpedia.org/resource/Iconv", "http://dbpedia.org/resource/Imaging_for_Windows", "http://dbpedia.org/resource/Smallworld", "http://dbpedia.org/resource/SpectraLayers", "http://dbpedia.org/resource/TilEm", "http://dbpedia.org/resource/Net_Nanny", "http://dbpedia.org/resource/NEi_Nastran", "http://dbpedia.org/resource/SimFiT", "http://dbpedia.org/resource/Mozilla_Skywriter", "http://dbpedia.org/resource/Utatane_Piko", "http://dbpedia.org/resource/VY1", "http://dbpedia.org/resource/VY2", "http://dbpedia.org/resource/Voice_Recorder_(Windows)", "http://dbpedia.org/resource/3D_GameStudio", "http://dbpedia.org/resource/3D_Wayfinder", "http://dbpedia.org/resource/3D_World_Atlas", "http://dbpedia.org/resource/4DOS", "http://dbpedia.org/resource/CoreAVC", "http://dbpedia.org/resource/Core_FTP", "http://dbpedia.org/resource/CorelDRAW", "http://dbpedia.org/resource/Corel_AfterShot_Pro", "http://dbpedia.org/resource/Corel_Painter", "http://dbpedia.org/resource/Corel_Painter_Essentials", "http://dbpedia.org/resource/Corel_Photo-Paint", "http://dbpedia.org/resource/Corel_VideoStudio", "http://dbpedia.org/resource/Cosm_(software)", "http://dbpedia.org/resource/CounterSpy_(software)", "http://dbpedia.org/resource/Courier_(email_client)", "http://dbpedia.org/resource/Cream_(software)", "http://dbpedia.org/resource/Creatio", "http://dbpedia.org/resource/Crimson_Editor", "http://dbpedia.org/resource/Critter_(chess)", "http://dbpedia.org/resource/Cross-platform_Audio_Creation_Tool", "http://dbpedia.org/resource/CrushFTP_Server", "http://dbpedia.org/resource/CryptoNote", "http://dbpedia.org/resource/CrysTBox", "http://dbpedia.org/resource/CrystalDiskMark", "http://dbpedia.org/resource/CrystalExplorer", "http://dbpedia.org/resource/Cubesat_Space_Protocol", "http://dbpedia.org/resource/Cura_(software)", "http://dbpedia.org/resource/CuteFTP", "http://dbpedia.org/resource/CutePDF", "http://dbpedia.org/resource/CwRsync", "http://dbpedia.org/resource/Cygwin", "http://dbpedia.org/resource/Cygwin/X", "http://dbpedia.org/resource/DADiSP", "http://dbpedia.org/resource/DBEdit", "http://dbpedia.org/resource/DC++", "http://dbpedia.org/resource/DECIPHER_(software)", "http://dbpedia.org/resource/DELMIA", "http://dbpedia.org/resource/DIANA_FEA", "http://dbpedia.org/resource/DOSKEY", "http://dbpedia.org/resource/DTrace", "http://dbpedia.org/resource/DVD43", "http://dbpedia.org/resource/DVD_Decrypter", "http://dbpedia.org/resource/DVD_Flick", "http://dbpedia.org/resource/DVD_Player_(Windows)", "http://dbpedia.org/resource/DVD_Shrink", "http://dbpedia.org/resource/DWSIM", "http://dbpedia.org/resource/D_(programming_language)", "http://dbpedia.org/resource/DaVinci_Resolve", "http://dbpedia.org/resource/Daemon_Tools", "http://dbpedia.org/resource/Goverlan_Systems_Management", "http://dbpedia.org/resource/GrADS", "http://dbpedia.org/resource/GrabIt", "http://dbpedia.org/resource/GrafX2", "http://dbpedia.org/resource/Graphviz", "http://dbpedia.org/resource/Green_Dam_Youth_Escort", "http://dbpedia.org/resource/Greenpois0n", "http://dbpedia.org/resource/Greenshot", "http://dbpedia.org/resource/Gregorio_(software)", "http://dbpedia.org/resource/Grindstone_(time-tracking_software)", "http://dbpedia.org/resource/Grok_(JPEG_2000)", "http://dbpedia.org/resource/Guitar_Pro", "http://dbpedia.org/resource/Guitar_Rig", "http://dbpedia.org/resource/HALion", "http://dbpedia.org/resource/HCL_Domino", "http://dbpedia.org/resource/HDR_PhotoStudio", "http://dbpedia.org/resource/HEAT_LANrev", "http://dbpedia.org/resource/Astrophotography", "http://dbpedia.org/resource/At_(command)", "http://dbpedia.org/resource/HeeksCAD", "http://dbpedia.org/resource/HeidiSQL", "http://dbpedia.org/resource/Helicon_Filter", "http://dbpedia.org/resource/Helicon_Focus", "http://dbpedia.org/resource/Helicon_Photo_Safe", "http://dbpedia.org/resource/HeliumV", "http://dbpedia.org/resource/HelpNDoc", "http://dbpedia.org/resource/HelpSmith", "http://dbpedia.org/resource/Help_&_Manual", "http://dbpedia.org/resource/Heritrix", "http://dbpedia.org/resource/Hermes_Project", "http://dbpedia.org/resource/HeuristicLab", "http://dbpedia.org/resource/HiAsm", "http://dbpedia.org/resource/HijackThis", "http://dbpedia.org/resource/MALPAS_Software_Static_Analysis_Toolset", "http://dbpedia.org/resource/MAXQDA", "http://dbpedia.org/resource/MB-Lab", "http://dbpedia.org/resource/MBN_Explorer", "http://dbpedia.org/resource/MBROLA", "http://dbpedia.org/resource/MDL_Chime", "http://dbpedia.org/resource/MDaemon", "http://dbpedia.org/resource/MDynaMix", "http://dbpedia.org/resource/MFEM", "http://dbpedia.org/resource/MIDletPascal", "http://dbpedia.org/resource/MKVToolNix", "http://dbpedia.org/resource/ML.NET", "http://dbpedia.org/resource/MLDesigner", "http://dbpedia.org/resource/MLDonkey", "http://dbpedia.org/resource/MLwiN", "http://dbpedia.org/resource/MODELLER", "http://dbpedia.org/resource/MPDS4", "http://dbpedia.org/resource/MPLAB", "http://dbpedia.org/resource/MS-DOS_Editor", "http://dbpedia.org/resource/MSCDEX", "http://dbpedia.org/resource/MSU_Lossless_Video_Codec", "http://dbpedia.org/resource/MUSCLE_(alignment_software)", "http://dbpedia.org/resource/Mac_Blu-ray_Player", "http://dbpedia.org/resource/MacroModel", "http://dbpedia.org/resource/Macro_Express", "http://dbpedia.org/resource/Macromedia_xRes", "http://dbpedia.org/resource/Macroscope_(methodology_suite)", "http://dbpedia.org/resource/MagicScore", "http://dbpedia.org/resource/Magic_Camera", "http://dbpedia.org/resource/Magnus_Choir", "http://dbpedia.org/resource/MailEnable", "http://dbpedia.org/resource/MailXaminer", "http://dbpedia.org/resource/Mailwasher", "http://dbpedia.org/resource/MakeHuman", "http://dbpedia.org/resource/Making_Waves_(software)", "http://dbpedia.org/resource/Maliit", "http://dbpedia.org/resource/Managed_DirectX", "http://dbpedia.org/resource/Managed_Extensibility_Framework", "http://dbpedia.org/resource/Manifold_System", "http://dbpedia.org/resource/Mantle_(API)", "http://dbpedia.org/resource/Brewmaxx", "http://dbpedia.org/resource/CCG_Profiles", "http://dbpedia.org/resource/CEITON", "http://dbpedia.org/resource/CLAM_(audio_software)", "http://dbpedia.org/resource/COPERT", "http://dbpedia.org/resource/CSPro", "http://dbpedia.org/resource/Cabri_Geometry", "http://dbpedia.org/resource/Caddie_(CAD_system)", "http://dbpedia.org/resource/Cadwork", "http://dbpedia.org/resource/Cadwork_Engineer", "http://dbpedia.org/resource/Calendar_(Windows)", "http://dbpedia.org/resource/Rhyme_Genie", "http://dbpedia.org/resource/Ricochet_(software)", "http://dbpedia.org/resource/Rillsoft_Project", "http://dbpedia.org/resource/RingCube_vDesk", "http://dbpedia.org/resource/RivaTuner", "http://dbpedia.org/resource/Rmetrics", "http://dbpedia.org/resource/RoboDK", "http://dbpedia.org/resource/RocketCake", "http://dbpedia.org/resource/Rocket_(web_framework)", "http://dbpedia.org/resource/Daina_(software)", "http://dbpedia.org/resource/Dhammin", "http://dbpedia.org/resource/DiamondTouch", "http://dbpedia.org/resource/Jeskola_Buzz", "http://dbpedia.org/resource/Flowgorithm", "http://dbpedia.org/resource/Forfiles", "http://dbpedia.org/resource/Fork_Particle", "http://dbpedia.org/resource/Microsoft_Dangerous_Creatures", "http://dbpedia.org/resource/PokerStove", "http://dbpedia.org/resource/PokerTracker", "http://dbpedia.org/resource/Quintessential_Player", "http://dbpedia.org/resource/Sally_Project", "http://dbpedia.org/resource/Illumination_Software_Creator", "http://dbpedia.org/resource/Power_Plus_Pro", "http://dbpedia.org/resource/ParaSurf", "http://dbpedia.org/resource/Quick_Objects", "http://dbpedia.org/resource/Vocaloid_(software)", "http://dbpedia.org/resource/WinEdt", "http://dbpedia.org/resource/LUSAS", "http://dbpedia.org/resource/MS_Antivirus_(malware)", "http://dbpedia.org/resource/WhenU_SaveNow", "http://dbpedia.org/resource/IBM_Lotus_Organizer", "http://dbpedia.org/resource/ICEM_Surf", "http://dbpedia.org/resource/IDA_Indoor_Climate_and_Energy", "http://dbpedia.org/resource/IMeet", "http://dbpedia.org/resource/IMesh", "http://dbpedia.org/resource/INTLAB", "http://dbpedia.org/resource/Kak_worm", "http://dbpedia.org/resource/Kaspersky_Anti-Virus", "http://dbpedia.org/resource/PicaJet", "http://dbpedia.org/resource/UTEXAS", "http://dbpedia.org/resource/WinX_DVD_Ripper_Platinum", "http://dbpedia.org/resource/Ex_Falso", "http://dbpedia.org/resource/Exaile", "http://dbpedia.org/resource/ExamDiff_Pro", "http://dbpedia.org/resource/Excalibur_BBS", "http://dbpedia.org/resource/Exe2bin", "http://dbpedia.org/resource/ExifTool", "http://dbpedia.org/resource/ExpanDrive", "http://dbpedia.org/resource/Expect", "http://dbpedia.org/resource/Express_Data_Path", "http://dbpedia.org/resource/Ext2Fsd", "http://dbpedia.org/resource/Extempore_(software)", "http://dbpedia.org/resource/Extensible_Computational_Chemistry_Environment", "http://dbpedia.org/resource/Extensible_Storage_Engine", "http://dbpedia.org/resource/Extreme_Loading_for_Structures", "http://dbpedia.org/resource/Extromatica_Network_Monitor", "http://dbpedia.org/resource/Ezycom", "http://dbpedia.org/resource/FAUST_(programming_language)", "http://dbpedia.org/resource/FEFLOW", "http://dbpedia.org/resource/FTP_Commander", "http://dbpedia.org/resource/FTP_Voyager", "http://dbpedia.org/resource/Factor_(programming_language)", "http://dbpedia.org/resource/Fairmat", "http://dbpedia.org/resource/Fairy-Max", "http://dbpedia.org/resource/Family.Show", "http://dbpedia.org/resource/Family_Historian", "http://dbpedia.org/resource/Family_Tree_Maker", "http://dbpedia.org/resource/Fantasy_Grounds", "http://dbpedia.org/resource/FarPoint_Spread", "http://dbpedia.org/resource/FastTrack_Schedule", "http://dbpedia.org/resource/Faustino_(platform)", "http://dbpedia.org/resource/Fdisk", "http://dbpedia.org/resource/FeedDemon", "http://dbpedia.org/resource/Feedreader_(Windows_Application)", "http://dbpedia.org/resource/Felgo", "http://dbpedia.org/resource/Femap", "http://dbpedia.org/resource/Fences_(software)", "http://dbpedia.org/resource/Feng_Office_Community_Edition", "http://dbpedia.org/resource/Fermat_(computer_algebra_system)", "http://dbpedia.org/resource/Fetion", "http://dbpedia.org/resource/Fightcade", "http://dbpedia.org/resource/Figma_(software)", "http://dbpedia.org/resource/FileZilla", "http://dbpedia.org/resource/File_Commander", "http://dbpedia.org/resource/File_Compare", "http://dbpedia.org/resource/Filzip", "http://dbpedia.org/resource/FinalBuilder", "http://dbpedia.org/resource/Finale_(scorewriter)", "http://dbpedia.org/resource/Find_(Windows)", "http://dbpedia.org/resource/Fine_Artist", "http://dbpedia.org/resource/Firefly_(computer_program)", "http://dbpedia.org/resource/Firefox_2", "http://dbpedia.org/resource/Firefox_3.0", "http://dbpedia.org/resource/Firefox_3.6", "http://dbpedia.org/resource/FlashGet", "http://dbpedia.org/resource/FlashPaper", "http://dbpedia.org/resource/FlatBuffers", "http://dbpedia.org/resource/FlexHex", "http://dbpedia.org/resource/FlexPro", "http://dbpedia.org/resource/Flexcom", "http://dbpedia.org/resource/Flood_Modeller", "http://dbpedia.org/resource/Flowcode", "http://dbpedia.org/resource/Fluctuat", "http://dbpedia.org/resource/Fluent_Design_System", "http://dbpedia.org/resource/FolderSize", "http://dbpedia.org/resource/Folding@home", "http://dbpedia.org/resource/Foldit", "http://dbpedia.org/resource/Fontmatrix", "http://dbpedia.org/resource/Bartok_(compiler)", "http://dbpedia.org/resource/Jigdo", "http://dbpedia.org/resource/Jitsi", "http://dbpedia.org/resource/Joget_Workflow", "http://dbpedia.org/resource/BisQue_(Bioimage_Analysis_and_Management_Platform)", "http://dbpedia.org/resource/Bit-Twist", "http://dbpedia.org/resource/Bitcasa", "http://dbpedia.org/resource/LeechFTP", "http://dbpedia.org/resource/Legacy_Family_Tree", "http://dbpedia.org/resource/LibLAS", "http://dbpedia.org/resource/LibRaw", "http://dbpedia.org/resource/LibSBML", "http://dbpedia.org/resource/Libav", "http://dbpedia.org/resource/LiberKey", "http://dbpedia.org/resource/Libffi", "http://dbpedia.org/resource/LibreLogo", "http://dbpedia.org/resource/Libwww", "http://dbpedia.org/resource/LifeLines", "http://dbpedia.org/resource/LightGBM", "http://dbpedia.org/resource/Light_(web_browser)", "http://dbpedia.org/resource/Lightning_Memory-Mapped_Database", "http://dbpedia.org/resource/Lightspark", "http://dbpedia.org/resource/Lightweight_Java_Game_Library", "http://dbpedia.org/resource/Linphone", "http://dbpedia.org/resource/Liquid_Rhythm", "http://dbpedia.org/resource/LispWorks", "http://dbpedia.org/resource/List_&_Label", "http://dbpedia.org/resource/Naum_(chess)", "http://dbpedia.org/resource/Navisworks", "http://dbpedia.org/resource/Neembuu_Uploader", "http://dbpedia.org/resource/NekoVM", "http://dbpedia.org/resource/NeoLoad", "http://dbpedia.org/resource/NeoPaint", "http://dbpedia.org/resource/NeoPlanet", "http://dbpedia.org/resource/Nero_Burning_ROM", "http://dbpedia.org/resource/Nestopia", "http://dbpedia.org/resource/NetCDF_Operators", "http://dbpedia.org/resource/NetCaptor", "http://dbpedia.org/resource/NetMiner", "http://dbpedia.org/resource/NetSupport_Manager", "http://dbpedia.org/resource/Net_(command)", "http://dbpedia.org/resource/Netop_Remote_Control", "http://dbpedia.org/resource/Netsh", "http://dbpedia.org/resource/Netstat", "http://dbpedia.org/resource/Nettalk_(IRC_client)", "http://dbpedia.org/resource/Netwide_Assembler", "http://dbpedia.org/resource/Neural_Network_Intelligence", "http://dbpedia.org/resource/NewWave", "http://dbpedia.org/resource/NewsBin_Pro", "http://dbpedia.org/resource/NewsLeecher", "http://dbpedia.org/resource/Nightingale_(software)", "http://dbpedia.org/resource/NihongoUp", "http://dbpedia.org/resource/Pax_(command)", "http://dbpedia.org/resource/Pcap", "http://dbpedia.org/resource/PearPC", "http://dbpedia.org/resource/PeerBlock", "http://dbpedia.org/resource/Pencil2D", "http://dbpedia.org/resource/Performance_Co-Pilot", "http://dbpedia.org/resource/Personal_Ancestral_File", "http://dbpedia.org/resource/Personal_Knowbase", "http://dbpedia.org/resource/Petrel_(reservoir_software)", "http://dbpedia.org/resource/Phoner", "http://dbpedia.org/resource/Phonon_(software)", "http://dbpedia.org/resource/Phoronix_Test_Suite", "http://dbpedia.org/resource/PhotoLine", "http://dbpedia.org/resource/PhotoModeler", "http://dbpedia.org/resource/PhotoPerfect", "http://dbpedia.org/resource/Photo_Mechanic", "http://dbpedia.org/resource/Photo_Ninja", "http://dbpedia.org/resource/Photopia_Optical_Design_Software", "http://dbpedia.org/resource/Php4delphi", "http://dbpedia.org/resource/PhysX", "http://dbpedia.org/resource/Phyz", "http://dbpedia.org/resource/PicMaster", "http://dbpedia.org/resource/PicPick", "http://dbpedia.org/resource/PicoScope_(software)", "http://dbpedia.org/resource/Picogen", "http://dbpedia.org/resource/Pro/DESKTOP", "http://dbpedia.org/resource/ProRealTime", "http://dbpedia.org/resource/Pro_Tools", "http://dbpedia.org/resource/ProbLog", "http://dbpedia.org/resource/ProcDump", "http://dbpedia.org/resource/ProjectWise", "http://dbpedia.org/resource/Project_Chrono", "http://dbpedia.org/resource/Project_Dogwaffle", "http://dbpedia.org/resource/Project_KickStart", "http://dbpedia.org/resource/Project_Looking_Glass", "http://dbpedia.org/resource/Project_Unreality", "http://dbpedia.org/resource/Promine", "http://dbpedia.org/resource/Proton_VPN", "http://dbpedia.org/resource/Proxomitron", "http://dbpedia.org/resource/Psi_(instant_messaging_client)", "http://dbpedia.org/resource/PuTTY", "http://dbpedia.org/resource/Puffin_Browser", "http://dbpedia.org/resource/Puma.NET", "http://dbpedia.org/resource/PunkBuster", "http://dbpedia.org/resource/Puppet_(software)", "http://dbpedia.org/resource/PyMC", "http://dbpedia.org/resource/PyMOL", "http://dbpedia.org/resource/PyScripter", "http://dbpedia.org/resource/PySynth", "http://dbpedia.org/resource/Pyjs", "http://dbpedia.org/resource/Python_Tools_for_Visual_Studio", "http://dbpedia.org/resource/Q&A_(Symantec)", "http://dbpedia.org/resource/QB64", "http://dbpedia.org/resource/QBittorrent", "http://dbpedia.org/resource/QBlade", "http://dbpedia.org/resource/QCAD", "http://dbpedia.org/resource/QDA_Miner", "http://dbpedia.org/resource/QDevelop", "http://dbpedia.org/resource/QF-Test", "http://dbpedia.org/resource/QVCS", "http://dbpedia.org/resource/Qalculate!", "http://dbpedia.org/resource/Qiqqa", "http://dbpedia.org/resource/Qmmp", "http://dbpedia.org/resource/Quake_Army_Knife", "http://dbpedia.org/resource/Quantitative_Discourse_Analysis_Package", "http://dbpedia.org/resource/Quantum_Moves", "http://dbpedia.org/resource/QuarkXPress", "http://dbpedia.org/resource/Quark_CopyDesk", "http://dbpedia.org/resource/Quassel_IRC", "http://dbpedia.org/resource/Quattro_Pro", "http://dbpedia.org/resource/QuickBooks", "http://dbpedia.org/resource/QuickC", "http://dbpedia.org/resource/QuickCheck", "http://dbpedia.org/resource/QuickPar", "http://dbpedia.org/resource/QuickPlay", "http://dbpedia.org/resource/Quick_View", "http://dbpedia.org/resource/Quickfield", "http://dbpedia.org/resource/Quiet_Internet_Pager", "http://dbpedia.org/resource/Quod_Libet_(software)", "http://dbpedia.org/resource/QuteMol", "http://dbpedia.org/resource/RCA_open-source_application", "http://dbpedia.org/resource/REFInd", "http://dbpedia.org/resource/REFIt", "http://dbpedia.org/resource/RETAS", "http://dbpedia.org/resource/RFEM", "http://dbpedia.org/resource/RJ_TextEd", "http://dbpedia.org/resource/RKWard", "http://dbpedia.org/resource/RK_Launcher", "http://dbpedia.org/resource/ROBODoc", "http://dbpedia.org/resource/ROOT", "http://dbpedia.org/resource/RSS_Guard", "http://dbpedia.org/resource/RT\u00c9_Player", "http://dbpedia.org/resource/R_Tools_for_Visual_Studio", "http://dbpedia.org/resource/RadPHP", "http://dbpedia.org/resource/Radare2", "http://dbpedia.org/resource/Radiance_(software)", "http://dbpedia.org/resource/RagTime_(software)", "http://dbpedia.org/resource/Rage_Maker", "http://dbpedia.org/resource/Ragel", "http://dbpedia.org/resource/ThinLinc", "http://dbpedia.org/resource/ThreadSafe", "http://dbpedia.org/resource/TiEmu", "http://dbpedia.org/resource/Tick_(software)", "http://dbpedia.org/resource/TightVNC", "http://dbpedia.org/resource/Timbuktu_(software)", "http://dbpedia.org/resource/Time_Matters", "http://dbpedia.org/resource/Timeout_(computing)", "http://dbpedia.org/resource/TinTin++", "http://dbpedia.org/resource/Tinker_(software)", "http://dbpedia.org/resource/Tiny_C_Compiler", "http://dbpedia.org/resource/Tixati", "http://dbpedia.org/resource/Tlen.pl", "http://dbpedia.org/resource/Tomahawk_(software)", "http://dbpedia.org/resource/Tomviz", "http://dbpedia.org/resource/WinBUGS", "http://dbpedia.org/resource/WinBuilder", "http://dbpedia.org/resource/WinDVD", "http://dbpedia.org/resource/WinDbg", "http://dbpedia.org/resource/WinDiff", "http://dbpedia.org/resource/WinDirStat", "http://dbpedia.org/resource/WinFIG", "http://dbpedia.org/resource/WinGate", "http://dbpedia.org/resource/WinHex", "http://dbpedia.org/resource/WinLibre", "http://dbpedia.org/resource/WinMX", "http://dbpedia.org/resource/WinMerge", "http://dbpedia.org/resource/WinPT", "http://dbpedia.org/resource/WinPenPack", "http://dbpedia.org/resource/WinRoll", "http://dbpedia.org/resource/WinSCP", "http://dbpedia.org/resource/WinShell", "http://dbpedia.org/resource/WinUSB", "http://dbpedia.org/resource/Windchill_(software)", "http://dbpedia.org/resource/Window-Eyes", "http://dbpedia.org/resource/WindowBase", "http://dbpedia.org/resource/WindowBlinds", "http://dbpedia.org/resource/Window_Clippings", "http://dbpedia.org/resource/Windows_Activation_Services", "http://dbpedia.org/resource/Windows_Anytime_Upgrade", "http://dbpedia.org/resource/Windows_Communication_Foundation", "http://dbpedia.org/resource/Windows_Driver_Frameworks", "http://dbpedia.org/resource/Windows_Driver_Kit", "http://dbpedia.org/resource/Windows_File_Manager", "http://dbpedia.org/resource/Windows_Forms", "http://dbpedia.org/resource/Windows_Hardware_Lab_Kit", "http://dbpedia.org/resource/Windows_Installer", "http://dbpedia.org/resource/Windows_Live_Call", "http://dbpedia.org/resource/Windows_Media_Encoder", "http://dbpedia.org/resource/Windows_Messenger", "http://dbpedia.org/resource/Windows_Mixed_Reality", "http://dbpedia.org/resource/Windows_Notepad", "http://dbpedia.org/resource/Windows_Preinstallation_Environment", "http://dbpedia.org/resource/Windows_Presentation_Foundation", "http://dbpedia.org/resource/Windows_Registry", "http://dbpedia.org/resource/Windows_Search", "http://dbpedia.org/resource/Windows_Services_for_UNIX", "http://dbpedia.org/resource/Windows_Template_Library", "http://dbpedia.org/resource/Windows_UI_Library", "http://dbpedia.org/resource/Windows_Workflow_Foundation", "http://dbpedia.org/resource/Windows_on_Windows", "http://dbpedia.org/resource/Windscribe", "http://dbpedia.org/resource/Wing_IDE", "http://dbpedia.org/resource/Winny", "http://dbpedia.org/resource/Winplot", "http://dbpedia.org/resource/Wintermute_Engine", "http://dbpedia.org/resource/Wire_(software)", "http://dbpedia.org/resource/WireframeSketcher", "http://dbpedia.org/resource/WoW64", "http://dbpedia.org/resource/WordQ+SpeakQ", "http://dbpedia.org/resource/WordSmith_(software)", "http://dbpedia.org/resource/WordStar", "http://dbpedia.org/resource/WriteOnline", "http://dbpedia.org/resource/Wubi_(software)", "http://dbpedia.org/resource/X-13ARIMA-SEATS", "http://dbpedia.org/resource/X-Win32", "http://dbpedia.org/resource/X2Go", "http://dbpedia.org/resource/XBLite", "http://dbpedia.org/resource/XB_Browser", "http://dbpedia.org/resource/XBoard", "http://dbpedia.org/resource/XCAT", "http://dbpedia.org/resource/XCOPY", "http://dbpedia.org/resource/XLfit", "http://dbpedia.org/resource/XLink_Kai", "http://dbpedia.org/resource/XMedia_Recode", "http://dbpedia.org/resource/XSplit", "http://dbpedia.org/resource/XTree", "http://dbpedia.org/resource/XUnit.net", "http://dbpedia.org/resource/XYplorer", "http://dbpedia.org/resource/Xbox_(app)", "http://dbpedia.org/resource/Xbox_Development_Kit", "http://dbpedia.org/resource/Xcas", "http://dbpedia.org/resource/Xdelta", "http://dbpedia.org/resource/Xenu's_Link_Sleuth", "http://dbpedia.org/resource/Xfire", "http://dbpedia.org/resource/XiRCON", "http://dbpedia.org/resource/Xilinx_ISE", "http://dbpedia.org/resource/Xilinx_Vivado", "http://dbpedia.org/resource/Xin_Hua_(software)", "http://dbpedia.org/resource/XtreemFS", "http://dbpedia.org/resource/XyWrite", "http://dbpedia.org/resource/YAP_(Prolog)", "http://dbpedia.org/resource/YASARA", "http://dbpedia.org/resource/Yabasic", "http://dbpedia.org/resource/Yandex_Disk", "http://dbpedia.org/resource/Yanhe_(software)", "http://dbpedia.org/resource/FreeFlyer", "http://dbpedia.org/resource/FreeTrack", "http://dbpedia.org/resource/Fukase", "http://dbpedia.org/resource/GB-PVR", "http://dbpedia.org/resource/GDK", "http://dbpedia.org/resource/GEUP", "http://dbpedia.org/resource/XMetaL", "http://dbpedia.org/resource/Xpress_Pro", "http://dbpedia.org/resource/Meetro", "http://dbpedia.org/resource/In-Step_BLUE", "http://dbpedia.org/resource/IntegraXor", "http://dbpedia.org/resource/Intergator", "http://dbpedia.org/resource/Real_Time_AudioSuite", "http://dbpedia.org/resource/SOCET_SET", "http://dbpedia.org/resource/SigmaPlot", "http://dbpedia.org/resource/Microsoft_Plus!", "http://dbpedia.org/resource/PhotoImpression", "http://dbpedia.org/resource/Objecteering", "http://dbpedia.org/resource/SortSite", "http://dbpedia.org/resource/User_State_Migration_Tool", "http://dbpedia.org/resource/Microsoft_Network_Monitor", "http://dbpedia.org/resource/Posadis", "http://dbpedia.org/resource/Qmake", "http://dbpedia.org/resource/UModel", "http://dbpedia.org/resource/ELAN_software", "http://dbpedia.org/resource/ELKI", "http://dbpedia.org/resource/EMMS_(media_player)", "http://dbpedia.org/resource/EMSO_simulator", "http://dbpedia.org/resource/EM_Client", "http://dbpedia.org/resource/EPANET", "http://dbpedia.org/resource/EPSXe", "http://dbpedia.org/resource/EPrompter", "http://dbpedia.org/resource/ER/Studio", "http://dbpedia.org/resource/ESET_NOD32", "http://dbpedia.org/resource/ESpeak", "http://dbpedia.org/resource/EXeLearning", "http://dbpedia.org/resource/Early_notation_typesetter", "http://dbpedia.org/resource/Earth3D", "http://dbpedia.org/resource/Earth_clock", "http://dbpedia.org/resource/EasyHDR", "http://dbpedia.org/resource/Easy_Java_Simulations", "http://dbpedia.org/resource/Ecco_Pro", "http://dbpedia.org/resource/Echo_(command)", "http://dbpedia.org/resource/Eclipse_(software)", "http://dbpedia.org/resource/Eclipse_Che", "http://dbpedia.org/resource/EcosimPro", "http://dbpedia.org/resource/EditDV", "http://dbpedia.org/resource/Edius", "http://dbpedia.org/resource/Electric_Image_Animation_System", "http://dbpedia.org/resource/Elicitus", "http://dbpedia.org/resource/Elmer_FEM_solver", "http://dbpedia.org/resource/Analyse-it", "http://dbpedia.org/resource/Jumpshare", "http://dbpedia.org/resource/Just_another_Gibbs_sampler", "http://dbpedia.org/resource/K-Meleon", "http://dbpedia.org/resource/KDevelop", "http://dbpedia.org/resource/KFRlib", "http://dbpedia.org/resource/KRISTAL_Audio_Engine", "http://dbpedia.org/resource/KVIrc", "http://dbpedia.org/resource/KWord", "http://dbpedia.org/resource/KXEN_Inc.", "http://dbpedia.org/resource/Kaillera", "http://dbpedia.org/resource/Kanboard", "http://dbpedia.org/resource/LoLiWin", "http://dbpedia.org/resource/Login_VSI", "http://dbpedia.org/resource/Loginventory", "http://dbpedia.org/resource/Lookeen", "http://dbpedia.org/resource/Lotus_1-2-3", "http://dbpedia.org/resource/Low_Orbit_Ion_Cannon", "http://dbpedia.org/resource/Lspci", "http://dbpedia.org/resource/Lumi_(software)", "http://dbpedia.org/resource/Luminance_HDR", "http://dbpedia.org/resource/Luo_Tianyi", "http://dbpedia.org/resource/Lzip", "http://dbpedia.org/resource/Business_Intelligence_Development_Studio", "http://dbpedia.org/resource/C.a.R.", "http://dbpedia.org/resource/CADKEY", "http://dbpedia.org/resource/CAMeL-View_TestRig", "http://dbpedia.org/resource/Office_Genuine_Advantage", "http://dbpedia.org/resource/OllyDbg", "http://dbpedia.org/resource/Oloneo_PhotoEngine", "http://dbpedia.org/resource/OmegaT", "http://dbpedia.org/resource/OmniPeek", "http://dbpedia.org/resource/Omnitracker", "http://dbpedia.org/resource/OneFuzz", "http://dbpedia.org/resource/Onepager_Pro", "http://dbpedia.org/resource/OnlineHPC", "http://dbpedia.org/resource/Onshape", "http://dbpedia.org/resource/OoVoo", "http://dbpedia.org/resource/Oolite_(video_game)", "http://dbpedia.org/resource/Open-Sankor\u00e9", "http://dbpedia.org/resource/OpenBLAS", "http://dbpedia.org/resource/OpenBazaar", "http://dbpedia.org/resource/OpenCD", "http://dbpedia.org/resource/OpenCanvas", "http://dbpedia.org/resource/OpenCards", "http://dbpedia.org/resource/OpenDisc", "http://dbpedia.org/resource/OpenEMR", "http://dbpedia.org/resource/OpenElement", "http://dbpedia.org/resource/OpenFL", "http://dbpedia.org/resource/OpenFX_(software)", "http://dbpedia.org/resource/OpenFrameworks", "http://dbpedia.org/resource/OpenHAB", "http://dbpedia.org/resource/OpenHospital", "http://dbpedia.org/resource/OpenJPEG", "http://dbpedia.org/resource/OpenLB", "http://dbpedia.org/resource/OpenMRS", "http://dbpedia.org/resource/OpenOMR", "http://dbpedia.org/resource/OpenOffice.org", "http://dbpedia.org/resource/OpenPuff", "http://dbpedia.org/resource/OpenRAVE", "http://dbpedia.org/resource/OpenRCT2", "http://dbpedia.org/resource/OpenSTA", "http://dbpedia.org/resource/OpenShot", "http://dbpedia.org/resource/Open_Babel", "http://dbpedia.org/resource/Open_Dental", "http://dbpedia.org/resource/Open_Neural_Network_Exchange", "http://dbpedia.org/resource/Open_Source_Routing_Machine", "http://dbpedia.org/resource/Open_Source_Software_CD", "http://dbpedia.org/resource/Opera_(web_browser)", "http://dbpedia.org/resource/Ophcrack", "http://dbpedia.org/resource/Opsi", "http://dbpedia.org/resource/OptimFROG", "http://dbpedia.org/resource/Oracle_Cloud", "http://dbpedia.org/resource/Orb_(software)", "http://dbpedia.org/resource/Orbit_Downloader", "http://dbpedia.org/resource/Orchard_Project", "http://dbpedia.org/resource/Origin_(data_analysis_software)", "http://dbpedia.org/resource/Orleans_(software_framework)", "http://dbpedia.org/resource/OutGuess", "http://dbpedia.org/resource/OutWit_Hub", "http://dbpedia.org/resource/Overture_(software)", "http://dbpedia.org/resource/Ovi_(Nokia)", "http://dbpedia.org/resource/CircuitMaker", "http://dbpedia.org/resource/Citrix_Virtual_Apps", "http://dbpedia.org/resource/Serif_PhotoPlus", "http://dbpedia.org/resource/Serif_products", "http://dbpedia.org/resource/Shapeshifter_(software)", "http://dbpedia.org/resource/Share_(command)", "http://dbpedia.org/resource/SharpDevelop", "http://dbpedia.org/resource/Shed_Skin", "http://dbpedia.org/resource/ShelXle", "http://dbpedia.org/resource/Shotcut", "http://dbpedia.org/resource/Shotty_(software)", "http://dbpedia.org/resource/Should_I_Remove_It%3F", "http://dbpedia.org/resource/Showsize", "http://dbpedia.org/resource/Shutdown_(computing)", "http://dbpedia.org/resource/Sibelius_(scorewriter)", "http://dbpedia.org/resource/Sidra_Intersection", "http://dbpedia.org/resource/SigmaStat", "http://dbpedia.org/resource/SignPlot", "http://dbpedia.org/resource/SignalR", "http://dbpedia.org/resource/SilhouetteFX", "http://dbpedia.org/resource/Silk_Performer", "http://dbpedia.org/resource/Silk_Test", "http://dbpedia.org/resource/Silkypix_Developer_Studio", "http://dbpedia.org/resource/Silo_(software)", "http://dbpedia.org/resource/Silverfrost_FTN95", "http://dbpedia.org/resource/Consultant_Plus", "http://dbpedia.org/resource/Coolfluid", "http://dbpedia.org/resource/Corel_Presentations", "http://dbpedia.org/resource/Soya3D", "http://dbpedia.org/resource/SpaceClaim", "http://dbpedia.org/resource/SpaceSniffer", "http://dbpedia.org/resource/Spec_Explorer", "http://dbpedia.org/resource/Speed_Dreams", "http://dbpedia.org/resource/Splashtop", "http://dbpedia.org/resource/Spring_Engine", "http://dbpedia.org/resource/SprutCAM", "http://dbpedia.org/resource/SpySubtract", "http://dbpedia.org/resource/SpywareBlaster", "http://dbpedia.org/resource/SquidNT", "http://dbpedia.org/resource/Squid_(software)", "http://dbpedia.org/resource/Stackless_Python", "http://dbpedia.org/resource/Staden_Package", "http://dbpedia.org/resource/StaffPad", "http://dbpedia.org/resource/Stan_(software)", "http://dbpedia.org/resource/StarLogo", "http://dbpedia.org/resource/StarUML", "http://dbpedia.org/resource/Starmad", "http://dbpedia.org/resource/StatXact", "http://dbpedia.org/resource/Stata", "http://dbpedia.org/resource/Statgraphics", "http://dbpedia.org/resource/StatsDirect", "http://dbpedia.org/resource/Steed_(FTP_client)", "http://dbpedia.org/resource/StegAlyzerAS", "http://dbpedia.org/resource/Steinberg_Cubase", "http://dbpedia.org/resource/Steinberg_Nuendo", "http://dbpedia.org/resource/Stella_(emulator)", "http://dbpedia.org/resource/Stellar_Data_Recovery_for_Windows", "http://dbpedia.org/resource/Stellarium_(software)", "http://dbpedia.org/resource/Sterling_(program)", "http://dbpedia.org/resource/MyColors", "http://dbpedia.org/resource/OxMetrics", "http://dbpedia.org/resource/STRAND7", "http://dbpedia.org/resource/Mp3DirectCut", "http://dbpedia.org/resource/Norton_Zone", "http://dbpedia.org/resource/Ox_(programming_language)", "http://dbpedia.org/resource/Zultrax", "http://dbpedia.org/resource/LinuxLive_USB_Creator", "http://dbpedia.org/resource/Unistat", "http://dbpedia.org/resource/Ray_Dream_Studio", "http://dbpedia.org/resource/Keykit", "http://dbpedia.org/resource/Keysight_VEE", "http://dbpedia.org/resource/System_Policy_Editor", "http://dbpedia.org/resource/TRANSYT-7F", "http://dbpedia.org/resource/WhiskerControl", "http://dbpedia.org/resource/Kokone", "http://dbpedia.org/resource/SetACL", "http://dbpedia.org/resource/Tasklist", "http://dbpedia.org/resource/Vopt", "http://dbpedia.org/resource/Raman_Tool_Set", "http://dbpedia.org/resource/Recovery_Toolbox", "http://dbpedia.org/resource/Bibble_(software)", "http://dbpedia.org/resource/Big_Brother_(software)", "http://dbpedia.org/resource/Bigloo", "http://dbpedia.org/resource/BinTube", "http://dbpedia.org/resource/Bindows", "http://dbpedia.org/resource/Bioconductor", "http://dbpedia.org/resource/BitLocker", "http://dbpedia.org/resource/Bitwig_Studio", "http://dbpedia.org/resource/BleachBit", "http://dbpedia.org/resource/Bleem!", "http://dbpedia.org/resource/Blender_(software)", "http://dbpedia.org/resource/BlindWrite", "http://dbpedia.org/resource/Blitz_BASIC", "http://dbpedia.org/resource/BlogBridge", "http://dbpedia.org/resource/Blu-code", "http://dbpedia.org/resource/BlueGriffon", "http://dbpedia.org/resource/BlueMSX", "http://dbpedia.org/resource/BlueMaxima's_Flashpoint", "http://dbpedia.org/resource/Blue_Frog", "http://dbpedia.org/resource/Bnetd", "http://dbpedia.org/resource/Bonjour_(software)", "http://dbpedia.org/resource/BonziBuddy", "http://dbpedia.org/resource/HxD", "http://dbpedia.org/resource/Hydrogen_(software)", "http://dbpedia.org/resource/HyperCam", "http://dbpedia.org/resource/I'm_InTouch", "http://dbpedia.org/resource/IA_(software)", "http://dbpedia.org/resource/IA_Writer", "http://dbpedia.org/resource/IBM_Lotus_SmartSuite", "http://dbpedia.org/resource/IBM_Lotus_Web_Content_Management", "http://dbpedia.org/resource/IBM_Lotus_Word_Pro", "http://dbpedia.org/resource/IBM_PCPG", "http://dbpedia.org/resource/IBM_RPG", "http://dbpedia.org/resource/IBM_Rational_Rose_XDE", "http://dbpedia.org/resource/IBM_TXSeries", "http://dbpedia.org/resource/IBM_ViaVoice", "http://dbpedia.org/resource/IBM_WebSphere_Application_Server", "http://dbpedia.org/resource/IBM_WebSphere_Service_Registry_and_Repository", "http://dbpedia.org/resource/IBM_cloud_computing", "http://dbpedia.org/resource/IDempiere", "http://dbpedia.org/resource/IE7Pro", "http://dbpedia.org/resource/IE_Tab", "http://dbpedia.org/resource/IFolder", "http://dbpedia.org/resource/IGOR_Pro", "http://dbpedia.org/resource/ILNumerics", "http://dbpedia.org/resource/ILWIS", "http://dbpedia.org/resource/IMOD_(software)", "http://dbpedia.org/resource/IObit_Malware_Fighter", "http://dbpedia.org/resource/IPOPT", "http://dbpedia.org/resource/IPVanish", "http://dbpedia.org/resource/IRAP_RMS_Suite", "http://dbpedia.org/resource/ISpring_Suite", "http://dbpedia.org/resource/IceChat", "http://dbpedia.org/resource/IceWarp_Mail_Server", "http://dbpedia.org/resource/IcedTea", "http://dbpedia.org/resource/Ichitaro_(word_processor)", "http://dbpedia.org/resource/IcoFX", "http://dbpedia.org/resource/IconBuilder", "http://dbpedia.org/resource/IdeaList", "http://dbpedia.org/resource/Imc_FAMOS", "http://dbpedia.org/resource/ImgBurn", "http://dbpedia.org/resource/Impressive_(software)", "http://dbpedia.org/resource/Impulse_(software)", "http://dbpedia.org/resource/Imputation_and_Variance_Estimation_Software", "http://dbpedia.org/resource/InPage", "http://dbpedia.org/resource/InVesalius", "http://dbpedia.org/resource/BackupHDDVD", "http://dbpedia.org/resource/Biblioscape", "http://dbpedia.org/resource/Big_Al_(software)", "http://dbpedia.org/resource/Kirix_Strata", "http://dbpedia.org/resource/Kith_and_Kin_Pro", "http://dbpedia.org/resource/Kodu_Game_Lab", "http://dbpedia.org/resource/Komodo_(chess)", "http://dbpedia.org/resource/Kontact", "http://dbpedia.org/resource/Kopete", "http://dbpedia.org/resource/KuGou", "http://dbpedia.org/resource/Kurso_de_Esperanto", "http://dbpedia.org/resource/LiveChat", "http://dbpedia.org/resource/Metigo", "http://dbpedia.org/resource/MiKTeX", "http://dbpedia.org/resource/Miarmy", "http://dbpedia.org/resource/Micro_Focus_Quality_Center", "http://dbpedia.org/resource/Micro_Focus_Unified_Functional_Testing", "http://dbpedia.org/resource/Micro_Saint_Sharp", "http://dbpedia.org/resource/Microsoft_Access", "http://dbpedia.org/resource/Microsoft_Agent", "http://dbpedia.org/resource/Microsoft_Analysis_Services", "http://dbpedia.org/resource/Microsoft_Automatic_Graph_Layout", "http://dbpedia.org/resource/Microsoft_Azure", "http://dbpedia.org/resource/Microsoft_Bookshelf", "http://dbpedia.org/resource/Microsoft_Cognitive_Toolkit", "http://dbpedia.org/resource/Microsoft_Comic_Chat", "http://dbpedia.org/resource/Microsoft_Customer_Care_Framework", "http://dbpedia.org/resource/Microsoft_Detours", "http://dbpedia.org/resource/Microsoft_Dynamics", "http://dbpedia.org/resource/Microsoft_Dynamics_365", "http://dbpedia.org/resource/Microsoft_Dynamics_365_Sales", "http://dbpedia.org/resource/Microsoft_Excel", "http://dbpedia.org/resource/Microsoft_Expression_Studio", "http://dbpedia.org/resource/Microsoft_Foundation_Class_Library", "http://dbpedia.org/resource/Microsoft_FreeCell", "http://dbpedia.org/resource/Microsoft_FrontPage", "http://dbpedia.org/resource/Microsoft_Hearts", "http://dbpedia.org/resource/Microsoft_Home", "http://dbpedia.org/resource/Microsoft_InterConnect", "http://dbpedia.org/resource/Microsoft_Mahjong", "http://dbpedia.org/resource/Microsoft_MapPoint", "http://dbpedia.org/resource/Microsoft_Musical_Instruments", "http://dbpedia.org/resource/Microsoft_NetMeeting", "http://dbpedia.org/resource/Microsoft_Office", "http://dbpedia.org/resource/Microsoft_Office_3.0", "http://dbpedia.org/resource/Microsoft_Office_Accounting", "http://dbpedia.org/resource/Microsoft_Office_Live", "http://dbpedia.org/resource/Microsoft_Office_PerformancePoint_Server", "http://dbpedia.org/resource/Microsoft_Office_Picture_Manager", "http://dbpedia.org/resource/Microsoft_OneNote", "http://dbpedia.org/resource/Microsoft_Outlook", "http://dbpedia.org/resource/Microsoft_POSIX_subsystem", "http://dbpedia.org/resource/Microsoft_Paint", "http://dbpedia.org/resource/Microsoft_Photo_Editor", "http://dbpedia.org/resource/Microsoft_Pinyin_IME", "http://dbpedia.org/resource/Microsoft_PowerPoint", "http://dbpedia.org/resource/Microsoft_Power_BI", "http://dbpedia.org/resource/Microsoft_Power_Platform", "http://dbpedia.org/resource/Microsoft_Publisher", "http://dbpedia.org/resource/Microsoft_Reader", "http://dbpedia.org/resource/Microsoft_SEAL", "http://dbpedia.org/resource/Microsoft_SQL_Server", "http://dbpedia.org/resource/Microsoft_Solitaire", "http://dbpedia.org/resource/Microsoft_Spider_Solitaire", "http://dbpedia.org/resource/Microsoft_Student", "http://dbpedia.org/resource/Microsoft_Visio", "http://dbpedia.org/resource/Microsoft_Visual_SourceSafe", "http://dbpedia.org/resource/Microsoft_Vizact", "http://dbpedia.org/resource/Microsoft_Works", "http://dbpedia.org/resource/Midori_(web_browser)", "http://dbpedia.org/resource/MikroSim", "http://dbpedia.org/resource/MikuMikuDance", "http://dbpedia.org/resource/Milestones_Professional", "http://dbpedia.org/resource/MilkDrop", "http://dbpedia.org/resource/Mimalloc", "http://dbpedia.org/resource/Mimer_SQL", "http://dbpedia.org/resource/Mimic_Simulation_Software", "http://dbpedia.org/resource/Mingw-w64", "http://dbpedia.org/resource/MiniPanzer_and_MegaPanzer", "http://dbpedia.org/resource/MiniTool_Partition_Wizard", "http://dbpedia.org/resource/Mirai_(software)", "http://dbpedia.org/resource/Miranda_IM", "http://dbpedia.org/resource/Oxygen_Project", "http://dbpedia.org/resource/P0f", "http://dbpedia.org/resource/PASS_Sample_Size_Software", "http://dbpedia.org/resource/PA_Server_Monitor", "http://dbpedia.org/resource/PC-Lint", "http://dbpedia.org/resource/PCSX-Reloaded", "http://dbpedia.org/resource/PCSX2", "http://dbpedia.org/resource/PC_Paintbrush", "http://dbpedia.org/resource/PCem", "http://dbpedia.org/resource/PDF24_Creator", "http://dbpedia.org/resource/PDFCreator", "http://dbpedia.org/resource/PDMS_(software)", "http://dbpedia.org/resource/PEBL_(software)", "http://dbpedia.org/resource/PIRCH_(IRC_client)", "http://dbpedia.org/resource/PLECS", "http://dbpedia.org/resource/PMView", "http://dbpedia.org/resource/PNGOUT", "http://dbpedia.org/resource/PPS.tv", "http://dbpedia.org/resource/PPSSPP", "http://dbpedia.org/resource/PQS_(software)", "http://dbpedia.org/resource/PS3_Media_Server", "http://dbpedia.org/resource/PSIM_Software", "http://dbpedia.org/resource/PSI_(computational_chemistry)", "http://dbpedia.org/resource/PSPP", "http://dbpedia.org/resource/PSPad", "http://dbpedia.org/resource/PTC_Creo_Elements/Pro", "http://dbpedia.org/resource/PTC_Creo_Elements/View", "http://dbpedia.org/resource/PVS-Studio", "http://dbpedia.org/resource/PabloDraw", "http://dbpedia.org/resource/Packard_Bell_Navigator", "http://dbpedia.org/resource/Paessler_PRTG", "http://dbpedia.org/resource/PageDefrag", "http://dbpedia.org/resource/Page_2_Stage", "http://dbpedia.org/resource/Paint_Tool_SAI", "http://dbpedia.org/resource/Palo_(OLAP_database)", "http://dbpedia.org/resource/Panda3D", "http://dbpedia.org/resource/Papagayo_(software)", "http://dbpedia.org/resource/ParaView", "http://dbpedia.org/resource/Parasoft_C/C++test", "http://dbpedia.org/resource/Parasoft_DTP", "http://dbpedia.org/resource/Parsec_(parser)", "http://dbpedia.org/resource/PartitionMagic", "http://dbpedia.org/resource/Pascal_Script", "http://dbpedia.org/resource/PathPing", "http://dbpedia.org/resource/Romeo_Model_Checker", "http://dbpedia.org/resource/RootsMagic", "http://dbpedia.org/resource/Rudder_(software)", "http://dbpedia.org/resource/RunScanner", "http://dbpedia.org/resource/Runas", "http://dbpedia.org/resource/Rybka", "http://dbpedia.org/resource/S-PLUS", "http://dbpedia.org/resource/SAAM_II", "http://dbpedia.org/resource/SAMSON", "http://dbpedia.org/resource/SAS_(software)", "http://dbpedia.org/resource/SAWStudio", "http://dbpedia.org/resource/SCORE_(software)", "http://dbpedia.org/resource/SDC_Verifier", "http://dbpedia.org/resource/SE-Explorer", "http://dbpedia.org/resource/SGS_Genesis", "http://dbpedia.org/resource/SHAZAM_(software)", "http://dbpedia.org/resource/SILK", "http://dbpedia.org/resource/SILVIA", "http://dbpedia.org/resource/SIMH", "http://dbpedia.org/resource/SIOD", "http://dbpedia.org/resource/SLEPc", "http://dbpedia.org/resource/SLIME", "http://dbpedia.org/resource/SLinCA@Home", "http://dbpedia.org/resource/Debug_(command)", "http://dbpedia.org/resource/Deep_Learning_Studio", "http://dbpedia.org/resource/DelPhi", "http://dbpedia.org/resource/DxDiag", "http://dbpedia.org/resource/DynaRoad", "http://dbpedia.org/resource/Dynamic_Photo_HDR", "http://dbpedia.org/resource/ESignal", "http://dbpedia.org/resource/EXMARaLDA", "http://dbpedia.org/resource/EZGenerator", "http://dbpedia.org/resource/EarthBrowser", "http://dbpedia.org/resource/Ecto_(software)", "http://dbpedia.org/resource/Eudora_(email_client)", "http://dbpedia.org/resource/Euphoria_(software)", "http://dbpedia.org/resource/Gepard_(game_engine)", "http://dbpedia.org/resource/NetObjects_Fusion", "http://dbpedia.org/resource/Unicom_Focal_Point", "http://dbpedia.org/resource/Gladinet", "http://dbpedia.org/resource/GnucDNA", "http://dbpedia.org/resource/GoldED", "http://dbpedia.org/resource/HP_Data_Protector", "http://dbpedia.org/resource/HP_WinRunner", "http://dbpedia.org/resource/Sysquake", "http://dbpedia.org/resource/TerraLib", "http://dbpedia.org/resource/WordStat", "http://dbpedia.org/resource/Jinitiator", "http://dbpedia.org/resource/T-FLEX_CAD", "http://dbpedia.org/resource/Tag\u00e8s", "http://dbpedia.org/resource/Vspeech", "http://dbpedia.org/resource/NetPoint", "http://dbpedia.org/resource/Yahoo!_Toolbar", "http://dbpedia.org/resource/OpenSC", "http://dbpedia.org/resource/NLOGIT", "http://dbpedia.org/resource/XSight", "http://dbpedia.org/resource/Stardock_Central", "http://dbpedia.org/resource/Vis5D", "http://dbpedia.org/resource/NVivo", "http://dbpedia.org/resource/ProStat", "http://dbpedia.org/resource/Turbo_Delphi", "http://dbpedia.org/resource/MultiTerm", "http://dbpedia.org/resource/SpyHunter_(software)", "http://dbpedia.org/resource/Tilt_Brush", "http://dbpedia.org/resource/Time_Doctor", "http://dbpedia.org/resource/Tohoku_Zunko", "http://dbpedia.org/resource/Yuezheng_Ling", "http://dbpedia.org/resource/Z-Maestro", "http://dbpedia.org/resource/Z88_FEM_software", "http://dbpedia.org/resource/ZAC_Browser", "http://dbpedia.org/resource/ZConvert", "http://dbpedia.org/resource/ZNC", "http://dbpedia.org/resource/ZOC_(software)", "http://dbpedia.org/resource/ZOLA_Project", "http://dbpedia.org/resource/ZPAQ", "http://dbpedia.org/resource/ZSNES", "http://dbpedia.org/resource/ZSoft_Uninstaller", "http://dbpedia.org/resource/ZTreeWin", "http://dbpedia.org/resource/Zappa_(chess)", "http://dbpedia.org/resource/Zerynth", "http://dbpedia.org/resource/Zipeg", "http://dbpedia.org/resource/Zmanda_Cloud_Backup", "http://dbpedia.org/resource/Zmodeler", "http://dbpedia.org/resource/Zona_(streaming_video_software)", "http://dbpedia.org/resource/ZoneAlarm", "http://dbpedia.org/resource/Zoner_Photo_Studio", "http://dbpedia.org/resource/ZynAddSubFX", "http://dbpedia.org/resource/Zynewave_Podium", "http://dbpedia.org/resource/NI_Multisim", "http://dbpedia.org/resource/Scholar's_Aid", "http://dbpedia.org/resource/Spire_(synthesizer)", "http://dbpedia.org/resource/XOFTspy_Portable_Anti-Spyware", "http://dbpedia.org/resource/Ipconfig", "http://dbpedia.org/resource/IruSoft", "http://dbpedia.org/resource/Oracle_iPlanet_Web_Proxy_Server", "http://dbpedia.org/resource/Visual3D_Game_Engine", "http://dbpedia.org/resource/NetBIOS_over_TCP/IP", "http://dbpedia.org/resource/Sysprep", "http://dbpedia.org/resource/SahysMod", "http://dbpedia.org/resource/Security_Vision", "http://dbpedia.org/resource/PhyreEngine", "http://dbpedia.org/resource/Practical_Scriptwriter", "http://dbpedia.org/resource/RapidQ", "http://dbpedia.org/resource/Prima_(software)", "http://dbpedia.org/resource/PrivadoVPN", "http://dbpedia.org/resource/Ptolemy_Project", "http://dbpedia.org/resource/SafeInCloud", "http://dbpedia.org/resource/The_Outliner_of_Giants", "http://dbpedia.org/resource/VisualSim_Architect", "http://dbpedia.org/resource/SigmaScan", "http://dbpedia.org/resource/RoboLogix", "http://dbpedia.org/resource/ROMeo_(process_optimizer)", "http://dbpedia.org/resource/Shadow_Copy", "http://dbpedia.org/resource/Windows_shell", "http://dbpedia.org/resource/Sonika_(software)", "http://dbpedia.org/resource/Sound_Credit", "http://dbpedia.org/resource/Trumpet_Winsock", "http://dbpedia.org/resource/Yohioloid", "http://dbpedia.org/resource/Loqu8", "http://dbpedia.org/resource/MACS3", "http://dbpedia.org/resource/McAfee_Change_Control", "http://dbpedia.org/resource/Megpoid", "http://dbpedia.org/resource/SitNGo_Wizard", "http://dbpedia.org/resource/Stardraw", "http://dbpedia.org/resource/Parallels_RAS", "http://dbpedia.org/resource/Paramics_Discovery", "http://dbpedia.org/resource/Vocaloid_5", "http://dbpedia.org/resource/Performance_Monitor", "http://dbpedia.org/resource/Windows_wait_cursor"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/creators> <http://dbpedia.org/resource/Jerry_Siegel> . }"}, "answers": ["http://dbpedia.org/resource/Alternative_versions_of_Superman", "http://dbpedia.org/resource/Bouncing_Boy", "http://dbpedia.org/resource/Computo_(character)", "http://dbpedia.org/resource/Delores_Winters", "http://dbpedia.org/resource/Dev-Em", "http://dbpedia.org/resource/Doctor_Occult", "http://dbpedia.org/resource/Spectre_(DC_Comics_character)", "http://dbpedia.org/resource/Sun_Boy", "http://dbpedia.org/resource/Gim_Allon", "http://dbpedia.org/resource/Mr._Muscles", "http://dbpedia.org/resource/Nature_Boy_(comics)", "http://dbpedia.org/resource/Plantman", "http://dbpedia.org/resource/Presence_(DC_Comics)", "http://dbpedia.org/resource/Pat_Dugan", "http://dbpedia.org/resource/Ultra_Boy", "http://dbpedia.org/resource/Brainiac_5", "http://dbpedia.org/resource/Invisible_Kid", "http://dbpedia.org/resource/Ultra-Humanite", "http://dbpedia.org/resource/Lara_(character)", "http://dbpedia.org/resource/Lena_Luthor", "http://dbpedia.org/resource/Lois_Lane", "http://dbpedia.org/resource/Lois_Lane_in_other_media", "http://dbpedia.org/resource/Lyla_Lerrol", "http://dbpedia.org/resource/Superman_and_Lois_Lane", "http://dbpedia.org/resource/Reep_Daggle", "http://dbpedia.org/resource/Robotman_(Robert_Crane)", "http://dbpedia.org/resource/Jimmy_Olsen", "http://dbpedia.org/resource/Science_Police", "http://dbpedia.org/resource/Phantom_Girl", "http://dbpedia.org/resource/Sylvester_Pemberton", "http://dbpedia.org/resource/Jim_Corrigan", "http://dbpedia.org/resource/Comet_(DC_Comics)", "http://dbpedia.org/resource/Jor-El", "http://dbpedia.org/resource/Superman", "http://dbpedia.org/resource/Superman_(comic_book)", "http://dbpedia.org/resource/Superboy_(Kal-El)", "http://dbpedia.org/resource/Superman_(Earth-One)", "http://dbpedia.org/resource/Superman_(Earth-Two)", "http://dbpedia.org/resource/Superwoman", "http://dbpedia.org/resource/Luornu_Durgo", "http://dbpedia.org/resource/Superman:_Deadly_Legacy", "http://dbpedia.org/resource/George_Taylor_(DC_Comics)", "http://dbpedia.org/resource/Mister_Mxyzptlk", "http://dbpedia.org/resource/Luma_Lynai", "http://dbpedia.org/resource/Jonathan_and_Martha_Kent", "http://dbpedia.org/resource/Matter-Eater_Lad", "http://dbpedia.org/resource/Lex_Luthor", "http://dbpedia.org/resource/Lex_Luthor_in_other_media", "http://dbpedia.org/resource/Funnyman_(comics)", "http://dbpedia.org/resource/Ms._Gsptlsnz", "http://dbpedia.org/resource/Superman_and_Wonder_Woman:_The_Hidden_Killer", "http://dbpedia.org/resource/Salu_Digby", "http://dbpedia.org/resource/Zeus_(DC_Comics)", "http://dbpedia.org/resource/Slam_Bradley"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/genre> <http://dbpedia.org/resource/Science_fiction> . ?x <http://dbpedia.org/ontology/material> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/floweringPlant> <http://dbpedia.org/resource/Plant> . ?uri <http://dbpedia.org/property/name> ?x . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/GANEFO> <http://dbpedia.org/property/hostCity> ?uri } "}, "answers": ["http://dbpedia.org/resource/Cambodia", "http://dbpedia.org/resource/Phnom_Penh", "Jakarta, Indonesia"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/language> <http://dbpedia.org/resource/Nebraska> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/EthnicGroup>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/predecessor> <http://dbpedia.org/resource/Desilu_Productions> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/locatedInArea> <http://dbpedia.org/resource/Urban_area> . ?x <http://dbpedia.org/property/athletics> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Christopher_Figuero> <http://dbpedia.org/ontology/occupation> ?uri . <http://dbpedia.org/resource/Cruce_a_Nado_Internacional> <http://dbpedia.org/property/residence> ?uri} "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Fergie_Sutherland> <http://dbpedia.org/property/race> ?uri } "}, "answers": ["http://dbpedia.org/resource/Hennessy_Gold_Cup_(Ireland)", "http://dbpedia.org/resource/Cheltenham_Gold_Cup", "http://dbpedia.org/resource/Clonmel_Oil_Chase", "http://dbpedia.org/resource/Nas_Na_Riogh_Novice_Chase", "http://dbpedia.org/resource/Queen_Mary_Stakes", "Falmouth Stakes"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/computingPlatform> <http://dbpedia.org/resource/Amiga> . ?x <http://dbpedia.org/property/genre> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Beat_'em_up", "http://dbpedia.org/resource/Sports_game", "http://dbpedia.org/resource/Sports_video_game", "http://dbpedia.org/resource/Racing_game", "http://dbpedia.org/resource/Shoot'em_up", "http://dbpedia.org/resource/Platform_game", "http://dbpedia.org/resource/Psychological_horror", "http://dbpedia.org/resource/Point-and-click_adventure_game", "http://dbpedia.org/resource/Action_game", "http://dbpedia.org/resource/Submarine_simulator", "http://dbpedia.org/resource/Scrolling_shooter", "http://dbpedia.org/resource/Combat_flight_simulator", "http://dbpedia.org/resource/Role-playing_video_game", "http://dbpedia.org/resource/Shoot_'em_up", "Sports simulation – pool", "Sports", "action/strategy", "http://dbpedia.org/resource/Computer_puzzle_game", "http://dbpedia.org/resource/Interactive_fiction", "http://dbpedia.org/resource/Puzzle_video_game", "http://dbpedia.org/resource/Simulation_game", "http://dbpedia.org/resource/Strategy_video_game", "http://dbpedia.org/resource/Real-time_strategy_game", "Computer simulation / Sports", "http://dbpedia.org/resource/Government_simulation_game", "http://dbpedia.org/resource/Adventure_game", "http://dbpedia.org/resource/Edutainment", "Simulation", "http://dbpedia.org/resource/Strategy_game", "http://dbpedia.org/resource/Real-time_strategy", "http://dbpedia.org/resource/City-building_game", "http://dbpedia.org/resource/Run-and-gun_shooter", "http://dbpedia.org/resource/Racing_video_game", "http://dbpedia.org/resource/Video_game_genre", "Comedy sports", "http://dbpedia.org/resource/Computer_wargame", "http://dbpedia.org/resource/Flight_simulator", "http://dbpedia.org/resource/Stealth-based_game", "http://dbpedia.org/resource/Role_playing_game", "http://dbpedia.org/resource/Fighting_game", "Racing", "http://dbpedia.org/resource/Scrolling", "http://dbpedia.org/resource/Tile-based_game", "http://dbpedia.org/resource/Puzzle_game", "http://dbpedia.org/resource/Run_and_gun_game", "http://dbpedia.org/resource/Tactical_role-playing_game", "Turn-based strategy", "http://dbpedia.org/resource/Combat_flight_simulation_game", "http://dbpedia.org/resource/Arcade_game", "http://dbpedia.org/resource/Chess", "http://dbpedia.org/resource/Simulation_video_game", "http://dbpedia.org/resource/Shooter_game", "http://dbpedia.org/resource/Stealth_game", "Wargame", "http://dbpedia.org/resource/Video_puzzle_game", "Music composition", "http://dbpedia.org/resource/Bitmap_graphics_editor", "http://dbpedia.org/resource/Business_simulation_game", "http://dbpedia.org/resource/Platformer", "http://dbpedia.org/resource/List_of_maze_video_games", "http://dbpedia.org/resource/Strategy", "http://dbpedia.org/resource/Graphic_adventure_game", "http://dbpedia.org/resource/Educational_game", "Strategy, board game", "http://dbpedia.org/resource/Run_and_gun_(video_game)", "http://dbpedia.org/resource/Action-adventure_game", "http://dbpedia.org/resource/Multidirectional_shooter", "http://dbpedia.org/resource/Action_games", "Adventure", "http://dbpedia.org/resource/Software_synthesizer", "http://dbpedia.org/resource/Turn-based_strategy", "http://dbpedia.org/resource/First-person_shooter", "http://dbpedia.org/resource/Fighting", "http://dbpedia.org/resource/Side-scrolling_shooter", "http://dbpedia.org/resource/Sim_racing", "http://dbpedia.org/resource/Game_engine", "Action", "http://dbpedia.org/resource/Role-playing_game", "http://dbpedia.org/resource/Dungeon_crawl", "http://dbpedia.org/resource/Hack_and_slash", "Puzzle", "4", "http://dbpedia.org/resource/Action_role-playing_game", "http://dbpedia.org/resource/Real-time_tactics", "http://dbpedia.org/resource/Fantasy", "http://dbpedia.org/resource/Wargame_(video_games)", "Fantasy", "http://dbpedia.org/resource/Roguelike", "http://dbpedia.org/resource/Fixed_shooter", "Train spotting simulator", "http://dbpedia.org/resource/Action-adventure_video_game", "Maze-shooter", "http://dbpedia.org/resource/Wargaming", "Action, Racing/Driving, Simulation", "http://dbpedia.org/resource/Platform_Game", "http://dbpedia.org/resource/Run-and-gun_game", "http://dbpedia.org/resource/Vehicle_simulation_game", "http://dbpedia.org/resource/Breakout_(video_game)", "http://dbpedia.org/resource/Block_kuzushi", "http://dbpedia.org/resource/Combat_flight_simulation", "http://dbpedia.org/resource/Maze_video_game", "http://dbpedia.org/resource/Sports", "Hack and slash", "http://dbpedia.org/resource/Pinball", "http://dbpedia.org/resource/Kart_racing_game", "http://dbpedia.org/resource/Rail_shooter", "http://dbpedia.org/resource/Light_gun_shooter", "http://dbpedia.org/resource/Shooting_game", "http://dbpedia.org/resource/Game_creation_system", "http://dbpedia.org/resource/Run_and_gun_video_game", "http://dbpedia.org/resource/Music_tracker", "http://dbpedia.org/resource/Scenery_generator", "http://dbpedia.org/resource/Space_combat_simulator", "http://dbpedia.org/resource/Platform_video_game", "Platform, shoot-em-up", "http://dbpedia.org/resource/Artillery_game", "http://dbpedia.org/resource/Driving_game", "http://dbpedia.org/resource/Fantasy_role-playing", "Educational", "http://dbpedia.org/resource/Vehicular_combat_game", "http://dbpedia.org/resource/Vampire_video_game", "http://dbpedia.org/resource/Action_video_game", "http://dbpedia.org/resource/Turn-based_strategy_game", "http://dbpedia.org/resource/4X", "http://dbpedia.org/resource/Side_scroller", "http://dbpedia.org/resource/Puzzle-platform_game", "http://dbpedia.org/resource/Educational_software", "http://dbpedia.org/resource/Construction_and_management_simulation_game", "http://dbpedia.org/resource/4x", "http://dbpedia.org/resource/Construction_and_management_simulation", "Pinball", "http://dbpedia.org/resource/Scrolling_Shooter", "http://dbpedia.org/resource/Web_browser", "http://dbpedia.org/resource/Adventure_Game", "http://dbpedia.org/resource/Board_game", "http://dbpedia.org/resource/Music_sequencer", "http://dbpedia.org/resource/Interactive_music", "http://dbpedia.org/resource/Wargame", "Game", "http://dbpedia.org/resource/Life_simulation_game", "http://dbpedia.org/resource/Action-adventure", "Role-playing", "First-person shooter", "http://dbpedia.org/resource/Third-person_shooter", "http://dbpedia.org/resource/Microsoft_BASIC", "Tile-based puzzle", "http://dbpedia.org/resource/Widget_toolkit", "http://dbpedia.org/resource/Window_manager", "http://dbpedia.org/resource/Computer_algebra_system", "http://dbpedia.org/resource/Breakout_clone", "http://dbpedia.org/resource/Game_Creation_System", "http://dbpedia.org/resource/Side-scrolling_video_game", "Vertical scrolling shooter", "Western", "http://dbpedia.org/resource/Vehicular_combat", "Action, platform", "Beat 'em up", "Vehicular combat", "Sports game", "http://dbpedia.org/resource/Action_role-playing_video_game", "Board game", "http://dbpedia.org/resource/Computer_chess", "Action, strategy", "Sports management", "http://dbpedia.org/resource/Light_synthesizer", "http://dbpedia.org/resource/Dungeon_crawler", "http://dbpedia.org/resource/Web_Browser", "http://dbpedia.org/resource/Trivia", "vehicular combat", "Sports simulation – snooker", "One or two player Platform game", "http://dbpedia.org/resource/Shoot-'em-up", "http://dbpedia.org/resource/Arcade_platform", "http://dbpedia.org/resource/Space_combat_simulation", "http://dbpedia.org/resource/Amateur_flight_simulator", "http://dbpedia.org/resource/Simulation", "http://dbpedia.org/resource/Snake_(video_game)", "2", "http://dbpedia.org/resource/Puzzle_computer_game", "http://dbpedia.org/resource/Tactical_shooter", "http://dbpedia.org/resource/Card_game", "http://dbpedia.org/resource/Horror_game", "http://dbpedia.org/resource/Beat_em_up", "Sports simulation", "http://dbpedia.org/resource/Adventure_video_game", "http://dbpedia.org/resource/Role-playing", "http://dbpedia.org/resource/Top_down_shooter", "http://dbpedia.org/resource/Educational_video_game", "http://dbpedia.org/resource/Interactive_movie", "Adventure game, partially Submarine simulator", "http://dbpedia.org/resource/Puzzle", "http://dbpedia.org/resource/Turn-based_tactics", "Filesystem handler", "Shoot 'em Up - Multi-scrolling", "http://dbpedia.org/resource/Resource_management", "Arcade/adventure", "Real-time strategy", "http://dbpedia.org/resource/List_of_vehicular_combat_games", "http://dbpedia.org/resource/Survival_game", "Strategy, music management", "http://dbpedia.org/resource/Computer_virus", "http://dbpedia.org/resource/Malware", "http://dbpedia.org/resource/Boot_block", "http://dbpedia.org/resource/Skiing", "http://dbpedia.org/resource/Winter_sports", "Real-time tactics", "Dungeon crawler", "http://dbpedia.org/resource/Arcade_adventure", "http://dbpedia.org/resource/Cinematic_platformer", "http://dbpedia.org/resource/Action_adventure_game", "http://dbpedia.org/resource/Role-playing_game_(video_games)", "http://dbpedia.org/resource/Grand_Theft_Auto_clone", "http://dbpedia.org/resource/Tracker_(music_software)", "http://dbpedia.org/resource/Space_flight_simulation_game", "Action RPG", "http://dbpedia.org/resource/File_manager", "Shooter", "http://dbpedia.org/resource/Text_Adventure", "http://dbpedia.org/resource/Graphic_adventure", "http://dbpedia.org/resource/Science_fiction", "http://dbpedia.org/resource/Space_trading_and_combat_simulator", "http://dbpedia.org/resource/Boot_sector", "http://dbpedia.org/resource/Programming_game", "http://dbpedia.org/resource/Hack-and-slash", "Platform", "http://dbpedia.org/resource/Mahjong_solitaire", "Platformer", "http://dbpedia.org/resource/Text_adventure", "http://dbpedia.org/resource/Space_flight_simulator", "http://dbpedia.org/resource/Single-player", "http://dbpedia.org/resource/Multiplayer_video_game", "http://dbpedia.org/resource/4X_game", "Strategy", "http://dbpedia.org/resource/Puzzle_video_games", "Run-and-gun shooter", "http://dbpedia.org/resource/Flight_simulation", "http://dbpedia.org/resource/Party_video_game", "http://dbpedia.org/resource/Computer_strategy_game", "http://dbpedia.org/resource/Social_simulation_game", "http://dbpedia.org/resource/Maze_game", "3", "http://dbpedia.org/resource/Non-game", "http://dbpedia.org/resource/Music_video_game", "http://dbpedia.org/resource/Desktop_publishing", "http://dbpedia.org/resource/Adventure_games", "http://dbpedia.org/resource/Amateur_flight_simulation", "Horror", "Various", "http://dbpedia.org/resource/Abstract_strategy_game", "Real-time strategy, RPG", "Stealth", "Action-adventure", "War game, strategy"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/producer> <http://dbpedia.org/resource/Phil_Collinson> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": ["http://dbpedia.org/resource/1933_Australia_rugby_union_tour_of_South_Africa_and_Rhodesia", "http://dbpedia.org/resource/1933_Home_Nations_Championship", "http://dbpedia.org/resource/1934_Home_Nations_Championship", "http://dbpedia.org/resource/1935_Home_Nations_Championship", "http://dbpedia.org/resource/1935_Series_(banknotes)", "http://dbpedia.org/resource/1936_British_Lions_tour_to_Argentina", "http://dbpedia.org/resource/1936_Home_Nations_Championship", "http://dbpedia.org/resource/1937_Home_Nations_Championship", "http://dbpedia.org/resource/1937_Series_(banknotes)", "http://dbpedia.org/resource/1938_All-Ireland_Senior_Hurling_Championship", "http://dbpedia.org/resource/1938_Detroit_Red_Wings\u2013Montreal_Canadiens_European_tour", "http://dbpedia.org/resource/1938_Home_Nations_Championship", "http://dbpedia.org/resource/1938_Stanley_Cup_Finals", "http://dbpedia.org/resource/1939_Amateur_World_Series", "http://dbpedia.org/resource/1939_Home_Nations_Championship", "http://dbpedia.org/resource/1940_Amateur_World_Series", "http://dbpedia.org/resource/1941_Amateur_World_Series", "http://dbpedia.org/resource/1944_World_Series", "http://dbpedia.org/resource/1947_Five_Nations_Championship", "http://dbpedia.org/resource/1948_Five_Nations_Championship", "http://dbpedia.org/resource/1948_Oxford-Cambridge_rugby_union_tour_of_Argentina", "http://dbpedia.org/resource/1949_Australia_rugby_union_tour_of_New_Zealand", "http://dbpedia.org/resource/1949_Five_Nations_Championship", "http://dbpedia.org/resource/1949_France_rugby_union_tour_of_Argentina", "http://dbpedia.org/resource/1950_Five_Nations_Championship", "http://dbpedia.org/resource/1950_World_Series", "http://dbpedia.org/resource/1951_East_Rift_Valley_earthquakes", "http://dbpedia.org/resource/1951_Five_Nations_Championship", "http://dbpedia.org/resource/1951_National_League_tie-breaker_series", "http://dbpedia.org/resource/1952_Australia_rugby_union_tour_of_New_Zealand", "http://dbpedia.org/resource/1952_Five_Nations_Championship", "http://dbpedia.org/resource/1952_Ireland_rugby_union_tour_of_South_America", "http://dbpedia.org/resource/1952_Washington,_D.C._UFO_incident", "http://dbpedia.org/resource/1953_Australia_rugby_union_tour_of_South_Africa_and_Rhodesia", "http://dbpedia.org/resource/1953_Five_Nations_Championship", "http://dbpedia.org/resource/1953_Lahore_riots", "http://dbpedia.org/resource/1953_Waco_tornado_outbreak", "http://dbpedia.org/resource/1954_Five_Nations_Championship", "http://dbpedia.org/resource/1954_France_rugby_union_tour_of_Argentina_and_Chile", "http://dbpedia.org/resource/1954_Series_(banknotes)", "http://dbpedia.org/resource/1954_Yangtze_River_floods", "http://dbpedia.org/resource/1955_Australia_rugby_union_tour_of_New_Zealand", "http://dbpedia.org/resource/1955_Five_Nations_Championship", "http://dbpedia.org/resource/1956_Five_Nations_Championship", "http://dbpedia.org/resource/1956_Oxford-Cambridge_rugby_union_tour_of_Argentina", "http://dbpedia.org/resource/1956_South_Africa_rugby_union_tour_of_Australia_and_New_Zealand", "http://dbpedia.org/resource/1957_Barbarians_tour_of_Canada", "http://dbpedia.org/resource/1957_Five_Nations_Championship", "http://dbpedia.org/resource/1957_Rebel_300", "http://dbpedia.org/resource/1958_Australia_rugby_union_tour_of_New_Zealand", "http://dbpedia.org/resource/1958_Five_Nations_Championship", "http://dbpedia.org/resource/1959_Five_Nations_Championship", "http://dbpedia.org/resource/1959_Junior_Springboks_tour_of_South_America", "http://dbpedia.org/resource/1959_National_League_tie-breaker_series", "http://dbpedia.org/resource/195_Lewis", "http://dbpedia.org/resource/1960_Copa_Libertadores_Finals", "http://dbpedia.org/resource/1960_Five_Nations_Championship", "http://dbpedia.org/resource/1960_France_rugby_union_tour_of_Argentina_and_Uruguay", "http://dbpedia.org/resource/1960_New_Zealand_rugby_union_tour_of_Australia_and_South_Africa", "http://dbpedia.org/resource/1961_Australia_rugby_union_tour_of_South_Africa", "http://dbpedia.org/resource/1961_Copa_Libertadores_Finals", "http://dbpedia.org/resource/1961_Five_Nations_Championship", "http://dbpedia.org/resource/1961_France_rugby_union_tour_of_New_Zealand_and_Australia", "http://dbpedia.org/resource/1962:_The_War_in_the_Hills", "http://dbpedia.org/resource/1962_Australia_rugby_union_tour_of_New_Zealand", "http://dbpedia.org/resource/1962_Copa_Libertadores_Finals", "http://dbpedia.org/resource/1962_Five_Nations_Championship", "http://dbpedia.org/resource/1962_National_League_tie-breaker_series", "http://dbpedia.org/resource/1962_Rangoon_University_protests", "http://dbpedia.org/resource/1963_Australia_rugby_union_tour_of_South_Africa", "http://dbpedia.org/resource/1963_Copa_Libertadores_Finals", "http://dbpedia.org/resource/1963_Five_Nations_Championship", "http://dbpedia.org/resource/1964_(film)", "http://dbpedia.org/resource/1964_Australia_rugby_union_tour_of_New_Zealand", "http://dbpedia.org/resource/1964_Brazilian_coup_d'\u00e9tat", "http://dbpedia.org/resource/1964_Fiji_rugby_union_tour_of_Europe_and_Canada", "http://dbpedia.org/resource/1964_Five_Nations_Championship", "http://dbpedia.org/resource/1964_Rosais_earthquake", "http://dbpedia.org/resource/1964_race_riots_in_Singapore", "http://dbpedia.org/resource/1965_Argentina_rugby_union_tour_of_Rhodesia_and_South_Africa", "http://dbpedia.org/resource/1965_Five_Nations_Championship", "http://dbpedia.org/resource/1965_Oxford-Cambridge_rugby_union_tour_of_Argentina", "http://dbpedia.org/resource/1965_South_Africa_rugby_union_tour_of_Australasia", "http://dbpedia.org/resource/1965_South_Africa_rugby_union_tour_of_Scotland_and_Ireland", "http://dbpedia.org/resource/1966_Five_Nations_Championship", "http://dbpedia.org/resource/1966_South_African_Gazelles_rugby_union_tour_in_Argentina", "http://dbpedia.org/resource/1966_anti-Igbo_pogrom", "http://dbpedia.org/resource/1967_Five_Nations_Championship", "http://dbpedia.org/resource/1967_France_rugby_union_tour_of_South_Africa", "http://dbpedia.org/resource/1967_Ireland_rugby_union_tour_of_Australia", "http://dbpedia.org/resource/1967_Stanley_Cup_Finals", "http://dbpedia.org/resource/1968_Australia_rugby_union_tour_of_British_Isles", "http://dbpedia.org/resource/1968_Five_Nations_Championship", "http://dbpedia.org/resource/1968_Pittsburgh_riots", "http://dbpedia.org/resource/1968_Stanley_Cup_Finals", "http://dbpedia.org/resource/1969_(TV_series)", "http://dbpedia.org/resource/1969_Australia_rugby_union_tour_of_South_Africa", "http://dbpedia.org/resource/1969_Five_Nations_Championship", "http://dbpedia.org/resource/1969_Scotland_rugby_union_tour_of_Argentina", "http://dbpedia.org/resource/1969_Stanley_Cup_Finals", "http://dbpedia.org/resource/1970_Five_Nations_Championship", "http://dbpedia.org/resource/1970_Ireland_rugby_union_tour_of_Argentina", "http://dbpedia.org/resource/1970_New_Zealand_rugby_union_tour_of_South_Africa", "http://dbpedia.org/resource/1971_Argentina_rugby_union_tour_of_South_Africa", "http://dbpedia.org/resource/1971_Asheville_300", "http://dbpedia.org/resource/1971_Australia_rugby_union_tour_of_France", "http://dbpedia.org/resource/1971_Dixie_500", "http://dbpedia.org/resource/1971_Five_Nations_Championship", "http://dbpedia.org/resource/1971_Georgia_500", "http://dbpedia.org/resource/1971_Kingsport_300", "http://dbpedia.org/resource/1971_May_Day_protests", "http://dbpedia.org/resource/1971_Nashville_420", "http://dbpedia.org/resource/1971_National_500", "http://dbpedia.org/resource/1971_National_League_Championship_Series", "http://dbpedia.org/resource/1971_Oxford-Cambridge_rugby_union_tour_of_Argentina", "http://dbpedia.org/resource/1971_Sandlapper_200", "http://dbpedia.org/resource/1971_Space_City_300", "http://dbpedia.org/resource/1971_Volunteer_500", "http://dbpedia.org/resource/1971_West_Virginia_500", "http://dbpedia.org/resource/1971_World_600", "http://dbpedia.org/resource/1971_World_Series_of_Poker", "http://dbpedia.org/resource/1972_American_500", "http://dbpedia.org/resource/1972_Australia_rugby_union_tour_of_New_Zealand_and_Fiji", "http://dbpedia.org/resource/1972_Carolina_500", "http://dbpedia.org/resource/1972_Five_Nations_Championship", "http://dbpedia.org/resource/1972_France_rugby_union_tour_of_Australia", "http://dbpedia.org/resource/1972_Miller_High_Life_500", "http://dbpedia.org/resource/1972_Old_Dominion_500", "http://dbpedia.org/resource/1972_South_African_Gazelles_rugby_union_tour_in_Argentina", "http://dbpedia.org/resource/1972_Texas_500", "http://dbpedia.org/resource/1972_Winston_500", "http://dbpedia.org/resource/1972_World_600", "http://dbpedia.org/resource/1972_World_Series_of_Poker", "http://dbpedia.org/resource/1973_Alamo_500", "http://dbpedia.org/resource/1973_American_500", "http://dbpedia.org/resource/1973_Argentina_rugby_union_tour_of_Ireland_and_Scotland", "http://dbpedia.org/resource/1973_Australia_rugby_union_tour_of_Europe", "http://dbpedia.org/resource/1973_Capital_City_500", "http://dbpedia.org/resource/1973_Dixie_500", "http://dbpedia.org/resource/1973_England_rugby_union_tour_of_Fiji_and_New_Zealand", "http://dbpedia.org/resource/1973_Five_Nations_Championship", "http://dbpedia.org/resource/1973_Gwyn_Staley_400", "http://dbpedia.org/resource/1973_Italy_rugby_union_tour_of_Rhodesia_and_South_Africa", "http://dbpedia.org/resource/1973_Japan_rugby_union_tour_of_Wales,_England_and_France", "http://dbpedia.org/resource/1973_National_500", "http://dbpedia.org/resource/1973_Richmond_500", "http://dbpedia.org/resource/1973_Romania_rugby_union_tour_of_Argentina", "http://dbpedia.org/resource/1973_Southern_500", "http://dbpedia.org/resource/1973_Tuborg_400", "http://dbpedia.org/resource/1973_World_600", "http://dbpedia.org/resource/1973_World_Series_of_Poker", "http://dbpedia.org/resource/1974_American_500", "http://dbpedia.org/resource/1974_Dixie_500", "http://dbpedia.org/resource/1974_Fiji_rugby_union_tour_of_New_Zealand", "http://dbpedia.org/resource/1974_Five_Nations_Championship", "http://dbpedia.org/resource/1974_France_rugby_union_tour_of_Brazil_and_Argentina", "http://dbpedia.org/resource/1974_Japan_rugby_union_tour_of_New_Zealand", "http://dbpedia.org/resource/1974_National_500", "http://dbpedia.org/resource/1974_National_League_Championship_Series", "http://dbpedia.org/resource/1974_New_Zealand_rugby_union_tour_of_Ireland,_Wales_and_England", "http://dbpedia.org/resource/1974_Southeastern_500", "http://dbpedia.org/resource/1974_Southern_500", "http://dbpedia.org/resource/1974_Winston_500", "http://dbpedia.org/resource/1974_World_Series_of_Poker", "http://dbpedia.org/resource/1975_Argentina_rugby_union_tour_of_France", "http://dbpedia.org/resource/1975_England_rugby_union_tour_of_Australia", "http://dbpedia.org/resource/1975_Five_Nations_Championship", "http://dbpedia.org/resource/1975_France_rugby_union_tour_of_South_Africa", "http://dbpedia.org/resource/1975_Japan_rugby_union_tour_of_Australia", "http://dbpedia.org/resource/1975_Los_Angeles_Times_500", "http://dbpedia.org/resource/1975_Music_City_USA_420", "http://dbpedia.org/resource/1975_National_500", "http://dbpedia.org/resource/1975_Scotland_rugby_union_tour_of_New_Zealand", "http://dbpedia.org/resource/1975_Spring_Offensive", "http://dbpedia.org/resource/1975_Wales_rugby_union_tour_of_the_Far_East", "http://dbpedia.org/resource/1975_Winston_Western_500", "http://dbpedia.org/resource/1975_World_600", "http://dbpedia.org/resource/1975_World_Series_of_Poker", "http://dbpedia.org/resource/1974_Australian_Rally_Championship", "http://dbpedia.org/resource/1974_Railway_Cup_Hurling_Championship", "http://dbpedia.org/resource/1974_Trans-AMA_motocross_series", "http://dbpedia.org/resource/1975_Australian_Rally_Championship", "http://dbpedia.org/resource/1975_PBA_First_Conference_Finals", "http://dbpedia.org/resource/1975_PBA_Second_Conference_Finals", "http://dbpedia.org/resource/1975_Romania_rugby_union_tour_of_New_Zealand", "http://dbpedia.org/resource/1976_Australian_Rally_Championship", "http://dbpedia.org/resource/1977_Australian_Rally_Championship", "http://dbpedia.org/resource/1977_Moscow_bombings", "http://dbpedia.org/resource/1977_PBA_Open_Conference_Finals", "http://dbpedia.org/resource/1978_Australian_Rally_Championship", "http://dbpedia.org/resource/1979_Australian_Rally_Championship", "http://dbpedia.org/resource/1979_Nepalese_student_protests", "http://dbpedia.org/resource/1979_PBA_All-Filipino_Conference_Finals", "http://dbpedia.org/resource/1980_Australian_Rally_Championship", "http://dbpedia.org/resource/1980_NBL_Finals", "http://dbpedia.org/resource/1980_Railway_Cup_Hurling_Championship", "http://dbpedia.org/resource/1981_Italy_rugby_union_tour_of_Australia", "http://dbpedia.org/resource/1981_NBL_Finals", "http://dbpedia.org/resource/1982_Australian_Rally_Championship", "http://dbpedia.org/resource/1982_NBL_Finals", "http://dbpedia.org/resource/1982_New_Zealand_M\u0101ori_rugby_union_tour_of_Wales_and_Spain", "http://dbpedia.org/resource/1983_Australian_Football_Championships", "http://dbpedia.org/resource/1983_Australian_Rally_Championship", "http://dbpedia.org/resource/1983_NBL_Finals", "http://dbpedia.org/resource/1984_Australian_Football_Championships", "http://dbpedia.org/resource/1984_Australian_Rally_Championship", "http://dbpedia.org/resource/1984_International_Rules_Series", "http://dbpedia.org/resource/1984_NBL_Finals", "http://dbpedia.org/resource/1985_Australian_Football_Championships", "http://dbpedia.org/resource/1985_Australian_Rally_Championship", "http://dbpedia.org/resource/1985_NBL_Finals", "http://dbpedia.org/resource/1985_Scotland_rugby_union_tour_of_North_America", "http://dbpedia.org/resource/1986_(Portuguese_TV_series)", "http://dbpedia.org/resource/1986_Australian_Football_Championships", "http://dbpedia.org/resource/1986_Damascus_bombings", "http://dbpedia.org/resource/1986_International_Rules_Series", "http://dbpedia.org/resource/1986_NBL_Finals", "http://dbpedia.org/resource/1987_Australian_Football_Championships", "http://dbpedia.org/resource/1987_International_Rules_Series", "http://dbpedia.org/resource/1987_NBL_Finals", "http://dbpedia.org/resource/1988_Canoe_Slalom_World_Cup", "http://dbpedia.org/resource/1988_Japan_Series", "http://dbpedia.org/resource/1988_Malaysian_constitutional_crisis", "http://dbpedia.org/resource/2010_LPGA_of_Korea_Tour", "http://dbpedia.org/resource/2010_Legends_Tour", "http://dbpedia.org/resource/2010_Nobel_Peace_Prize", "http://dbpedia.org/resource/2010_PSA_Super_Series", "http://dbpedia.org/resource/2010_Red_Bull_Air_Race_World_Championship", "http://dbpedia.org/resource/2010_Scream_Awards", "http://dbpedia.org/resource/2010_UCI_ProTour", "http://dbpedia.org/resource/2010_United_Kingdom_student_protests", "http://dbpedia.org/resource/2010_V8_Supercar_season", "http://dbpedia.org/resource/2010_WISPA_World_Series", "http://dbpedia.org/resource/2010_Western_Australian_storms", "http://dbpedia.org/resource/2010\u201311_ISU_Speed_Skating_World_Cup", "http://dbpedia.org/resource/2011_Australian_Rally_Championship", "http://dbpedia.org/resource/2011_BBC_Sports_Personality_of_the_Year_Award", "http://dbpedia.org/resource/2011_BSN_Finals", "http://dbpedia.org/resource/2011_Bohai_Bay_oil_spill", "http://dbpedia.org/resource/2011_Canoe_Slalom_World_Cup", "http://dbpedia.org/resource/2011_China_floods", "http://dbpedia.org/resource/2011_Durango_massacres", "http://dbpedia.org/resource/2011_FINA_Swimming_World_Cup", "http://dbpedia.org/resource/2011_ITU_Triathlon_World_Cup", "http://dbpedia.org/resource/2011_Kashgar_attacks", "http://dbpedia.org/resource/2011_Kohistan_floods", "http://dbpedia.org/resource/2011_Kurdish_protests_in_Iraq", "http://dbpedia.org/resource/2011_LPGA_Futures_Tour", "http://dbpedia.org/resource/2011_Lake_Champlain_and_Richelieu_River_floods", "http://dbpedia.org/resource/2011_Legends_Tour", "http://dbpedia.org/resource/2011_NASCAR_Stock_V6_Series", "http://dbpedia.org/resource/2011_New_Zealand_snowstorms", "http://dbpedia.org/resource/2011_Northern_Ireland_riots", "http://dbpedia.org/resource/2011_PSA_World_Series", "http://dbpedia.org/resource/2011_UK_public_sector_strikes", "http://dbpedia.org/resource/2011_WSA_World_Series", "http://dbpedia.org/resource/2011_Wollongong_floods", "http://dbpedia.org/resource/2011\u201312_ISU_Grand_Prix_of_Figure_Skating", "http://dbpedia.org/resource/2011\u201312_ISU_Speed_Skating_World_Cup", "http://dbpedia.org/resource/2011\u201312_Los_Angeles_arson_attacks", "http://dbpedia.org/resource/2011\u201312_NCAA_football_bowl_games", "http://dbpedia.org/resource/2012_Araucan\u00eda_wildfires", "http://dbpedia.org/resource/2012_BBC_Sports_Personality_of_the_Year_Award", "http://dbpedia.org/resource/2012_Bangkok_bombings", "http://dbpedia.org/resource/2012_Canoe_Slalom_World_Cup", "http://dbpedia.org/resource/2012_Cultural_Olympiad", "http://dbpedia.org/resource/2012_Dnipropetrovsk_explosions", "http://dbpedia.org/resource/2012_FINA_Swimming_World_Cup", "http://dbpedia.org/resource/2012_Great_Britain_and_Ireland_floods", "http://dbpedia.org/resource/2012_ITU_Triathlon_World_Cup", "http://dbpedia.org/resource/2012_Interprovincial_Hurling_Championship", "http://dbpedia.org/resource/2012_Legends_Tour", "http://dbpedia.org/resource/2012_May_Day_protests", "http://dbpedia.org/resource/2012_PSA_World_Series", "http://dbpedia.org/resource/2012_Sorta_Unofficial_New_Zealand_Film_Awards", "http://dbpedia.org/resource/2012_Southern_Thailand_bombings", "http://dbpedia.org/resource/2012_Symetra_Tour", "http://dbpedia.org/resource/2012_University_of_Pittsburgh_bomb_threats", "http://dbpedia.org/resource/2012_WSA_World_Series", "http://dbpedia.org/resource/2012\u201313_ISU_Grand_Prix_of_Figure_Skating", "http://dbpedia.org/resource/2012\u201313_ISU_Speed_Skating_World_Cup", "http://dbpedia.org/resource/2012\u201313_NCAA_football_bowl_games", "http://dbpedia.org/resource/2013_British_Champions_Series", "http://dbpedia.org/resource/2013_British_National_Track_Championships", "http://dbpedia.org/resource/2013_Canoe_Slalom_World_Cup", "http://dbpedia.org/resource/2013_Dominican_Republic\u2013Haiti_diplomatic_crisis", "http://dbpedia.org/resource/2013_FINA_Swimming_World_Cup", "http://dbpedia.org/resource/2013_Festival_of_World_Cups", "http://dbpedia.org/resource/2013_Legends_Tour", "http://dbpedia.org/resource/2013_May_Day_protests", "http://dbpedia.org/resource/2013_NBL_Canada_Finals", "http://dbpedia.org/resource/2013_National_League_Division_Series", "http://dbpedia.org/resource/2013_Nordic_storms", "http://dbpedia.org/resource/2013_PSA_World_Series", "http://dbpedia.org/resource/2013_Rialto_Channel_New_Zealand_Film_Awards", "http://dbpedia.org/resource/2013_Symetra_Tour", "http://dbpedia.org/resource/2013_UEFA_European_Under-21_Championship_qualification", "http://dbpedia.org/resource/2013_WSA_World_Series", "http://dbpedia.org/resource/2013_YouTube_Music_Awards", "http://dbpedia.org/resource/2013\u201314_ISU_Grand_Prix_of_Figure_Skating", "http://dbpedia.org/resource/2013\u201314_ISU_Speed_Skating_World_Cup", "http://dbpedia.org/resource/2013\u201314_NCAA_football_bowl_games", "http://dbpedia.org/resource/2014_American_League_Division_Series", "http://dbpedia.org/resource/2014_BBC_Music_Awards", "http://dbpedia.org/resource/2014_Ben_Gurion_Airport_flight_bans", "http://dbpedia.org/resource/2014_British_National_Track_Championships", "http://dbpedia.org/resource/2014_Canoe_Slalom_World_Cup", "http://dbpedia.org/resource/Alisto", "http://dbpedia.org/resource/Alitho_Saradaga", "http://dbpedia.org/resource/Alivaltiosihteeri_valvoo", "http://dbpedia.org/resource/Alive:_The_Final_Evolution", "http://dbpedia.org/resource/Alive_Day_Memories", "http://dbpedia.org/resource/Alive_and_Cooking", "http://dbpedia.org/resource/Alive_and_Kicking_(TV_series)", "http://dbpedia.org/resource/Alive_from_Off_Center", "http://dbpedia.org/resource/Aliyan_vs_Aliyan", "http://dbpedia.org/resource/Aliyans", "http://dbpedia.org/resource/All's_Fair", "http://dbpedia.org/resource/All'ultimo_minuto", "http://dbpedia.org/resource/All-American_Girl:_The_Mary_Kay_Letourneau_Story", "http://dbpedia.org/resource/All-American_Girl_(1994_TV_series)", "http://dbpedia.org/resource/All-American_Girl_(TV_series)", "http://dbpedia.org/resource/All-American_Muslim", "http://dbpedia.org/resource/All-Ireland_Intermediate_Hurling_Championship", "http://dbpedia.org/resource/All-Ireland_Senior_Football_Championship", "http://dbpedia.org/resource/All-Ireland_Senior_Hurling_Championship", "http://dbpedia.org/resource/All-New_Dennis_the_Menace", "http://dbpedia.org/resource/All-New_X-Men", "http://dbpedia.org/resource/All-Out_Sundays", "http://dbpedia.org/resource/All-Star_Blitz", "http://dbpedia.org/resource/All-Star_Cup", "http://dbpedia.org/resource/All-Star_K!", "http://dbpedia.org/resource/All-Star_Squares", "http://dbpedia.org/resource/All-Star_Thanksgiving", "http://dbpedia.org/resource/All-Star_Videoke", "http://dbpedia.org/resource/All_Aboard!_Rosie's_Family_Cruise", "http://dbpedia.org/resource/All_Aboard_(TV_series)", "http://dbpedia.org/resource/All_About_Adam_(TV_series)", "http://dbpedia.org/resource/All_About_Aubrey", "http://dbpedia.org/resource/All_About_Baby", "http://dbpedia.org/resource/All_About_Eve_(Philippine_TV_series)", "http://dbpedia.org/resource/All_About_Eve_(South_Korean_TV_series)", "http://dbpedia.org/resource/All_About_Faces", "http://dbpedia.org/resource/All_About_Me", "http://dbpedia.org/resource/All_About_My_Mom", "http://dbpedia.org/resource/All_About_My_Romance", "http://dbpedia.org/resource/All_About_Sex", "http://dbpedia.org/resource/All_About_Two", "http://dbpedia.org/resource/All_About_Us_(TV_series)", "http://dbpedia.org/resource/All_About_You_(TV_series)", "http://dbpedia.org/resource/All_About_the_Andersons", "http://dbpedia.org/resource/All_About_the_Washingtons", "http://dbpedia.org/resource/All_Along_the_Watchtower_(TV_series)", "http://dbpedia.org/resource/All_American:_Homecoming", "http://dbpedia.org/resource/All_American_(TV_series)", "http://dbpedia.org/resource/All_American_Handyman", "http://dbpedia.org/resource/All_Around_the_Circle", "http://dbpedia.org/resource/All_Aussie_Adventures", "http://dbpedia.org/resource/All_Clued_Up", "http://dbpedia.org/resource/All_Costs_Paid", "http://dbpedia.org/resource/All_Creatures_Great_and_Small_(1978_TV_series)", "http://dbpedia.org/resource/All_Creatures_Great_and_Small_(2020_TV_series)", "http://dbpedia.org/resource/All_Def_Comedy", "http://dbpedia.org/resource/All_Dogs_Go_to_Heaven:_The_Series", "http://dbpedia.org/resource/All_Esper_Dayo!_SP", "http://dbpedia.org/resource/All_For_One_Caribbean", "http://dbpedia.org/resource/All_Gas_No_Brakes", "http://dbpedia.org/resource/All_Gas_and_Gaiters", "http://dbpedia.org/resource/All_Good_Things_(TV_series)", "http://dbpedia.org/resource/All_Grown_Up!", "http://dbpedia.org/resource/All_Hail_King_Julien", "http://dbpedia.org/resource/All_In_(TV_series)", "http://dbpedia.org/resource/All_In_All_Alamelu", "http://dbpedia.org/resource/All_In_The_Best_Possible_Taste_with_Grayson_Perry", "http://dbpedia.org/resource/All_In_with_Chris_Hayes", "http://dbpedia.org/resource/All_India_Bakchod_Knockout", "http://dbpedia.org/resource/All_Is_Forgiven_(TV_series)", "http://dbpedia.org/resource/All_Is_Well_(TV_series)", "http://dbpedia.org/resource/All_Kinds_of_Everything_(game_show)", "http://dbpedia.org/resource/All_Men_Are_Brothers_(TV_series)", "http://dbpedia.org/resource/All_My_Children", "http://dbpedia.org/resource/All_My_Life_(TV_series)", "http://dbpedia.org/resource/All_My_Love_For_You", "http://dbpedia.org/resource/All_Night_(TV_series)", "http://dbpedia.org/resource/All_Night_Fuji", "http://dbpedia.org/resource/All_Night_Long_(TV_series)", "http://dbpedia.org/resource/All_Night_Nippon", "http://dbpedia.org/resource/All_Our_Saturdays", "http://dbpedia.org/resource/All_Out_for_Kangaroo_Valley", "http://dbpedia.org/resource/All_Out_of_Love_(TV_series)", "http://dbpedia.org/resource/All_Over_the_Place_(TV_programme)", "http://dbpedia.org/resource/All_Over_the_Workplace", "http://dbpedia.org/resource/All_Purpose_Cultural_Cat_Girl_Nuku_Nuku", "http://dbpedia.org/resource/All_Quiet_on_the_Preston_Front", "http://dbpedia.org/resource/All_Quiet_on_the_Western_Front_(1979_film)", "http://dbpedia.org/resource/All_Rise_(TV_series)", "http://dbpedia.org/resource/All_Rise_for_Julian_Clary", "http://dbpedia.org/resource/All_Round_to_Mrs._Brown's", "http://dbpedia.org/resource/All_Saints_(TV_series)", "http://dbpedia.org/resource/All_She_Ever_Wanted", "http://dbpedia.org/resource/All_Souls_(TV_series)", "http://dbpedia.org/resource/All_Star_Family_Feud", "http://dbpedia.org/resource/All_Star_Glam_Exam", "http://dbpedia.org/resource/All_Star_K!", "http://dbpedia.org/resource/All_Star_Mr_&_Mrs", "http://dbpedia.org/resource/All_Star_Secrets", "http://dbpedia.org/resource/All_Star_Shore", "http://dbpedia.org/resource/All_That", "http://dbpedia.org/resource/All_That_Cube", "http://dbpedia.org/resource/All_That_Glitters_(TV_series)", "http://dbpedia.org/resource/All_That_Is_Bitter_Is_Sweet", "http://dbpedia.org/resource/All_Things_Considered", "http://dbpedia.org/resource/All_Things_Considered_(BBC_radio_show)", "http://dbpedia.org/resource/All_Together_(professional_wrestling)", "http://dbpedia.org/resource/All_Together_Now_(1991_Australian_TV_series)", "http://dbpedia.org/resource/All_Together_Now_(2018_Australian_TV_series)", "http://dbpedia.org/resource/All_Together_Now_(British_TV_series)", "http://dbpedia.org/resource/All_Together_Now_(German_TV_series)", "http://dbpedia.org/resource/All_Together_Now_(Italian_TV_series)", "http://dbpedia.org/resource/All_Together_Now_(Philippine_TV_series)", "http://dbpedia.org/resource/All_Together_Now_Malaysia", "http://dbpedia.org/resource/All_Watched_Over_by_Machines_of_Loving_Grace_(TV_series)", "http://dbpedia.org/resource/All_Worked_Up", "http://dbpedia.org/resource/All_You've_Got", "http://dbpedia.org/resource/All_You_Need_Is_Love:_Meine_Schwiegertochter_ist_ein_Mann", "http://dbpedia.org/resource/All_You_Need_Is_Love:_The_Story_of_Popular_Music", "http://dbpedia.org/resource/All_at_No_20", "http://dbpedia.org/resource/All_at_Sea_(TV_series)", "http://dbpedia.org/resource/All_for_Kids", "http://dbpedia.org/resource/All_for_Love_(British_TV_series)", "http://dbpedia.org/resource/All_for_Love_(Colombian_TV_series)", "http://dbpedia.org/resource/All_for_Nothing%3F", "http://dbpedia.org/resource/All_for_One_(TV_series)", "http://dbpedia.org/resource/All_in_700", "http://dbpedia.org/resource/All_in_Good_Faith", "http://dbpedia.org/resource/All_in_a_Family", "http://dbpedia.org/resource/All_in_the_Best_Possible_Taste_with_Grayson_Perry", "http://dbpedia.org/resource/All_in_the_Family", "http://dbpedia.org/resource/All_in_the_Method", "http://dbpedia.org/resource/All_in_with_Cam_Newton", "http://dbpedia.org/resource/All_of_Me_(TV_series)", "http://dbpedia.org/resource/All_of_Us", "http://dbpedia.org/resource/All_of_Us_Are_Dead", "http://dbpedia.org/resource/All_or_Nothing:_Arsenal", "http://dbpedia.org/resource/All_or_Nothing:_Brazil_National_Team", "http://dbpedia.org/resource/All_or_Nothing:_Juventus", "http://dbpedia.org/resource/All_or_Nothing:_Manchester_City", "http://dbpedia.org/resource/All_or_Nothing:_Tottenham_Hotspur", "http://dbpedia.org/resource/All_or_Nothing_(game_show)", "http://dbpedia.org/resource/All_the_Green_Year", "http://dbpedia.org/resource/All_the_K-pop", "http://dbpedia.org/resource/All_the_Kind_Strangers", "http://dbpedia.org/resource/All_the_Prime_Minister's_Men", "http://dbpedia.org/resource/All_the_Queen's_Men_(TV_series)", "http://dbpedia.org/resource/All_the_Rivers_Run", "http://dbpedia.org/resource/All_the_Same..._or_Not", "http://dbpedia.org/resource/All_the_Sins", "http://dbpedia.org/resource/All_the_Small_Things_(TV_series)", "http://dbpedia.org/resource/All_the_Stations", "http://dbpedia.org/resource/All_the_Way..._A_Decade_of_Song_(TV_program)", "http://dbpedia.org/resource/All_the_Way_(TV_series)", "http://dbpedia.org/resource/All_the_Way_(film)", "http://dbpedia.org/resource/All_the_Way_from_Memphis_(radio_show)", "http://dbpedia.org/resource/All_the_Way_with_You", "http://dbpedia.org/resource/All_the_World_in_a_Design_School", "http://dbpedia.org/resource/Alla_mot_en", "http://dbpedia.org/resource/Allan_Quatermain", "http://dbpedia.org/resource/Alle_meine_Tiere", "http://dbpedia.org/resource/Allegiance_(TV_series)", "http://dbpedia.org/resource/Allegra's_Window", "http://dbpedia.org/resource/Allein_gegen_die_Zeit", "http://dbpedia.org/resource/Allen_Gregory", "http://dbpedia.org/resource/Allen_Ludden's_Gallery", "http://dbpedia.org/resource/Allen_v._Farrow", "http://dbpedia.org/resource/Allerud_VGS", "http://dbpedia.org/resource/Alles_Atze", "http://dbpedia.org/resource/Alles_Kan_Beter", "http://dbpedia.org/resource/Alles_au\u00dfer_Mord", "http://dbpedia.org/resource/Alles_in_Ordnung_\u2013_Mit_dem_Wahnsinn_auf_Streife", "http://dbpedia.org/resource/Alles_was_z\u00e4hlt", "http://dbpedia.org/resource/Alley_Cats_Strike", "http://dbpedia.org/resource/Allison_&_Lillia", "http://dbpedia.org/resource/Alliyambal", "http://dbpedia.org/resource/Allrams_h\u00f6jdarpaket", "http://dbpedia.org/resource/Allsang_p\u00e5_Grensen", "http://dbpedia.org/resource/Allsorts_(TV_series)", "http://dbpedia.org/resource/Alls\u00e5ng_p\u00e5_Skansen", "http://dbpedia.org/resource/Allt_f\u00f6r_Sverige", "http://dbpedia.org/resource/Ally_McBeal", "http://dbpedia.org/resource/Ally_McBeal_(season_4)", "http://dbpedia.org/resource/Ally_McBeal_(season_5)", "http://dbpedia.org/resource/All\u00e1_te_espero", "http://dbpedia.org/resource/All\u00ed_abajo", "http://dbpedia.org/resource/Alma's_Not_Normal", "http://dbpedia.org/resource/Alma's_Way", "http://dbpedia.org/resource/Alma_G\u00eamea", "http://dbpedia.org/resource/Alma_Matters:_Inside_the_IIT_Dream", "http://dbpedia.org/resource/Alma_Pirata", "http://dbpedia.org/resource/Alma_de_hierro", "http://dbpedia.org/resource/Alma_de_\u00e1ngel", "http://dbpedia.org/resource/Alma_e_Cora\u00e7\u00e3o", "http://dbpedia.org/resource/Alma_indomable", "http://dbpedia.org/resource/Alma_rebelde", "http://dbpedia.org/resource/Almanac_(American_TV_series)", "http://dbpedia.org/resource/Almanac_(Canadian_TV_series)", "http://dbpedia.org/resource/Almohad_reforms", "http://dbpedia.org/resource/Almost_Family", "http://dbpedia.org/resource/Almost_Genius", "http://dbpedia.org/resource/Almost_Grown_(TV_series)", "http://dbpedia.org/resource/Almost_Happy_(TV_series)", "http://dbpedia.org/resource/Almost_Heroes_(TV_series)", "http://dbpedia.org/resource/Almost_Human_(TV_series)", "http://dbpedia.org/resource/Almost_Live!", "http://dbpedia.org/resource/Almost_Naked_Animals", "http://dbpedia.org/resource/Almost_Never_(TV_series)", "http://dbpedia.org/resource/Almost_Paradise_(TV_series)", "http://dbpedia.org/resource/Almost_Perfect", "http://dbpedia.org/resource/Almost_Royal", "http://dbpedia.org/resource/Almost_a_Woman", "http://dbpedia.org/resource/Alo_Chhaya", "http://dbpedia.org/resource/Aloha_Festivals", "http://dbpedia.org/resource/Aloha_Paradise", "http://dbpedia.org/resource/Aloha_Vet", "http://dbpedia.org/resource/Alondra_(TV_series)", "http://dbpedia.org/resource/Alone_(TV_series)", "http://dbpedia.org/resource/Alone_Together_(TV_series)", "http://dbpedia.org/resource/Alone_in_Love", "http://dbpedia.org/resource/Alone_in_the_Dark", "http://dbpedia.org/resource/Alone_in_the_Wild", "http://dbpedia.org/resource/Along_the_Way_(TV_series)", "http://dbpedia.org/resource/Alosha_series", "http://dbpedia.org/resource/Alparslan:_B\u00fcy\u00fck_Sel\u00e7uklu", "http://dbpedia.org/resource/Alpha_Alpha", "http://dbpedia.org/resource/Alpha_Bravo_Charlie", "http://dbpedia.org/resource/Alpha_House", "http://dbpedia.org/resource/Alpha_Man:_The_Brotherhood_of_MLK", "http://dbpedia.org/resource/Alpha_Scorpio", "http://dbpedia.org/resource/Alphabet_Soup_(TV_series)", "http://dbpedia.org/resource/Alphabetical_(game_show)", "http://dbpedia.org/resource/Alphablocks", "http://dbpedia.org/resource/Alphas", "http://dbpedia.org/resource/Alpine_Space_Programme", "http://dbpedia.org/resource/Alright_Already_(TV_series)", "http://dbpedia.org/resource/Alt.news_26:46", "http://dbpedia.org/resource/Alt_for_Norge", "http://dbpedia.org/resource/Altar_(film)", "http://dbpedia.org/resource/Altar_of_Domitius_Ahenobarbus", "http://dbpedia.org/resource/Alter_Ego_(TV_series)", "http://dbpedia.org/resource/Altered_Carbon_(TV_series)", "http://dbpedia.org/resource/Alternate_Reality_(series)", "http://dbpedia.org/resource/Alternatino_with_Arturo_Castro", "http://dbpedia.org/resource/Alternative_3", "http://dbpedia.org/resource/Alternative_Nation", "http://dbpedia.org/resource/Alternatywy_4", "http://dbpedia.org/resource/Altes_Geld", "http://dbpedia.org/resource/Alto_Astral", "http://dbpedia.org/resource/Altogether_(TV_series)", "http://dbpedia.org/resource/Alvida", "http://dbpedia.org/resource/Alvin_Purple_(TV_series)", "http://dbpedia.org/resource/Alvin_and_the_Chipmunks_(1983_TV_series)", "http://dbpedia.org/resource/Alvin_and_the_Chipmunks_(2015_TV_series)", "http://dbpedia.org/resource/Alvinnn!!!_and_the_Chipmunks", "http://dbpedia.org/resource/Always_Afternoon", "http://dbpedia.org/resource/Always_Cantare", "http://dbpedia.org/resource/Always_Greener", "http://dbpedia.org/resource/Always_Jane", "http://dbpedia.org/resource/Always_Outnumbered", "http://dbpedia.org/resource/Always_Ready_(TV_series)", "http://dbpedia.org/resource/Always_Remember_I_Love_You", "http://dbpedia.org/resource/Always_a_Witch", "http://dbpedia.org/resource/Always_and_Ever", "http://dbpedia.org/resource/Always_and_Everyone", "http://dbpedia.org/resource/Always_on_the_Road", "http://dbpedia.org/resource/Alwin_Schockem\u00f6hle", "http://dbpedia.org/resource/Aly_&_AJ:_Sister_Act", "http://dbpedia.org/resource/Alyas_Robin_Hood", "http://dbpedia.org/resource/Alyna", "http://dbpedia.org/resource/Alyna_(TV_series)", "http://dbpedia.org/resource/Alys_(TV_series)", "http://dbpedia.org/resource/Alzira_(opera)", "http://dbpedia.org/resource/Al\u00e9m_da_Ilha", "http://dbpedia.org/resource/Al\u00e9m_da_Ilus\u00e3o", "http://dbpedia.org/resource/Al\u00e9m_do_Horizonte", "http://dbpedia.org/resource/Al\u00e9m_do_Tempo", "http://dbpedia.org/resource/Al\u00f3_Ciudadano", "http://dbpedia.org/resource/Al\u00f3_Presidente", "http://dbpedia.org/resource/Am,_Antes_del_Mediod\u00eda", "http://dbpedia.org/resource/Am_Dam_Des", "http://dbpedia.org/resource/Am_gr\u00fcnen_Strand_der_Spree", "http://dbpedia.org/resource/Amaan_Ramazan", "http://dbpedia.org/resource/Amachan", "http://dbpedia.org/resource/Amada_enemiga", "http://dbpedia.org/resource/Amadis_(Massenet)", "http://dbpedia.org/resource/Amagi-class_battlecruiser", "http://dbpedia.org/resource/Amagi_Brilliant_Park", "http://dbpedia.org/resource/Amahl_and_the_Night_Visitors", "http://dbpedia.org/resource/Amala_(TV_series)", "http://dbpedia.org/resource/Amalia_Batista", "http://dbpedia.org/resource/Amanah_dalam_Cinta", "http://dbpedia.org/resource/Amanat_(2017_TV_series)", "http://dbpedia.org/resource/Amanat_(2021_TV_series)", "http://dbpedia.org/resource/Amanat_(Indian_TV_series)", "http://dbpedia.org/resource/Amanda's", "http://dbpedia.org/resource/Amanda_(Chilean_TV_series)", "http://dbpedia.org/resource/Amanda_(TV_program)", "http://dbpedia.org/resource/Amanda_Fallon", "http://dbpedia.org/resource/Amanda_Knox:_Murder_on_Trial_in_Italy", "http://dbpedia.org/resource/Amanda_O", "http://dbpedia.org/resource/Amanda_Sabater", "http://dbpedia.org/resource/Amanda_and_the_Alien", "http://dbpedia.org/resource/Amanpour", "http://dbpedia.org/resource/Amanpour_&_Company", "http://dbpedia.org/resource/Amantes_(TV_series)", "http://dbpedia.org/resource/Amantes_de_luna_llena", "http://dbpedia.org/resource/Amantes_del_desierto", "http://dbpedia.org/resource/Amanza", "http://dbpedia.org/resource/Amar_Demais", "http://dbpedia.org/resource/Amar_Depois_de_Amar", "http://dbpedia.org/resource/Amar_a_morir_(TV_series)", "http://dbpedia.org/resource/Amar_de_nuevo_(TV_series)", "http://dbpedia.org/resource/Amar_despu\u00e9s_de_amar", "http://dbpedia.org/resource/Amar_en_tiempos_revueltos", "http://dbpedia.org/resource/Amar_es_para_siempre", "http://dbpedia.org/resource/Amar_fue_su_pecado", "http://dbpedia.org/resource/Amar_otra_vez", "http://dbpedia.org/resource/Amar_profundo", "http://dbpedia.org/resource/Amar_sin_l\u00edmites", "http://dbpedia.org/resource/Amar_y_temer", "http://dbpedia.org/resource/Amaras_a_tu_pr\u00f3jimo", "http://dbpedia.org/resource/Amaravati_ki_Kathayein", "http://dbpedia.org/resource/Amarres", "http://dbpedia.org/resource/Amarte_as\u00ed,_Frijolito", "http://dbpedia.org/resource/Amarte_es_mi_Pecado", "http://dbpedia.org/resource/Amas_de_casa_desesperadas_(American_TV_series)", "http://dbpedia.org/resource/Amas_de_casa_desesperadas_(Argentine_TV_series)", "http://dbpedia.org/resource/Amateur's_Guide_to_Love", "http://dbpedia.org/resource/Amateur_Boxing_Fight_Club", "http://dbpedia.org/resource/Amatsuki", "http://dbpedia.org/resource/Amaya_(TV_series)", "http://dbpedia.org/resource/Amazing_Adventures_of_a_Nobody", "http://dbpedia.org/resource/Amazing_Agent_Luna", "http://dbpedia.org/resource/Amazing_America_with_Sarah_Palin", "http://dbpedia.org/resource/Amazing_Animals", "http://dbpedia.org/resource/Amazing_Cooking_Kids", "http://dbpedia.org/resource/Amazing_Detective_Di_Renjie", "http://dbpedia.org/resource/Amazing_Detective_Di_Renjie_2", "http://dbpedia.org/resource/Amazing_Detective_Di_Renjie_3", "http://dbpedia.org/resource/Amazing_Earth", "http://dbpedia.org/resource/Amazing_Eats", "http://dbpedia.org/resource/Amazing_Grace_(American_TV_series)", "http://dbpedia.org/resource/Amazing_Grace_(Australian_TV_series)", "http://dbpedia.org/resource/Amazing_Greys", "http://dbpedia.org/resource/Amazing_Hotels:_Life_Beyond_the_Lobby", "http://dbpedia.org/resource/Amazing_Interiors", "http://dbpedia.org/resource/Amazing_Stories_(1985_TV_series)", "http://dbpedia.org/resource/Amazing_Stories_(2020_TV_series)", "http://dbpedia.org/resource/Amazing_Vacation_Homes", "http://dbpedia.org/resource/Amazing_Wedding_Cakes", "http://dbpedia.org/resource/Amazingness", "http://dbpedia.org/resource/Amazon_(1999_TV_series)", "http://dbpedia.org/resource/Amazon_(2008_TV_series)", "http://dbpedia.org/resource/Amazon_Kindle", "http://dbpedia.org/resource/Amazons_(1984_film)", "http://dbpedia.org/resource/Ambassadors_(TV_series)", "http://dbpedia.org/resource/Amber_(TV_series)", "http://dbpedia.org/resource/Amber_Brown_(TV_series)", "http://dbpedia.org/resource/Amber_Dhara", "http://dbpedia.org/resource/Ambici\u00f3n_(TV_series)", "http://dbpedia.org/resource/Ambition_(TV_series)", "http://dbpedia.org/resource/Ambitions_(TV_series)", "http://dbpedia.org/resource/Ambulance_(TV_programme)", "http://dbpedia.org/resource/Ambulance_Australia", "http://dbpedia.org/resource/Ambush_Makeover", "http://dbpedia.org/resource/Ambushed_(1998_film)", "http://dbpedia.org/resource/Amelia_(opera)", "http://dbpedia.org/resource/Amelia_Earhart:_The_Final_Flight", "http://dbpedia.org/resource/Amelia_Earhart_(film)", "http://dbpedia.org/resource/Amelia_Earhart_(miniseries)", "http://dbpedia.org/resource/Amen_(TV_series)", "http://dbpedia.org/resource/Amend:_The_Fight_for_America", "http://dbpedia.org/resource/America's_Ballroom_Challenge", "http://dbpedia.org/resource/America's_Best_Dance_Crew", "http://dbpedia.org/resource/America's_Big_Deal", "http://dbpedia.org/resource/America's_Book_of_Secrets", "http://dbpedia.org/resource/America's_Castles", "http://dbpedia.org/resource/America's_Court_with_Judge_Ross", "http://dbpedia.org/resource/America's_Dream", "http://dbpedia.org/resource/America's_Dumbest_Criminals", "http://dbpedia.org/resource/America's_Election_Headquarters", "http://dbpedia.org/resource/America's_Funniest_Home_Videos", "http://dbpedia.org/resource/America's_Funniest_Home_Videos:_Animal_Edition", "http://dbpedia.org/resource/America's_Funniest_People", "http://dbpedia.org/resource/America's_Game:_The_Super_Bowl_Champions", "http://dbpedia.org/resource/America's_Got_Talent", "http://dbpedia.org/resource/America's_Got_Talent:_Extreme", "http://dbpedia.org/resource/America's_Got_Talent:_The_Champions", "http://dbpedia.org/resource/America's_Great_Divide", "http://dbpedia.org/resource/America's_Heartland", "http://dbpedia.org/resource/America's_Medicated_Kids", "http://dbpedia.org/resource/America's_Morning_Headquarters", "http://dbpedia.org/resource/America's_Most_Dangerous_Pets", "http://dbpedia.org/resource/America's_Most_Hated_Family_in_Crisis", "http://dbpedia.org/resource/America's_Most_Musical_Family", "http://dbpedia.org/resource/America's_Most_Smartest_Model", "http://dbpedia.org/resource/America's_Most_Talented_Kid", "http://dbpedia.org/resource/America's_Most_Wanted", "http://dbpedia.org/resource/America's_News_Headquarters", "http://dbpedia.org/resource/America's_Newsroom", "http://dbpedia.org/resource/America's_Next_Great_Restaurant", "http://dbpedia.org/resource/America's_Next_Producer", "http://dbpedia.org/resource/America's_Next_Top_Model", "http://dbpedia.org/resource/America's_Prince:_The_John_F._Kennedy_Jr._Story", "http://dbpedia.org/resource/America's_Prom_Queen", "http://dbpedia.org/resource/America's_Supernanny", "http://dbpedia.org/resource/America's_Test_Kitchen", "http://dbpedia.org/resource/America's_Top_10", "http://dbpedia.org/resource/America's_Top_Dog", "http://dbpedia.org/resource/America's_Toughest_Jobs", "http://dbpedia.org/resource/America's_Town_Meeting_of_the_Air", "http://dbpedia.org/resource/America's_War_on_Abortion", "http://dbpedia.org/resource/America's_Worst_Driver", "http://dbpedia.org/resource/America:_A_Personal_History_of_the_United_States", "http://dbpedia.org/resource/America:_The_Story_of_Us", "http://dbpedia.org/resource/America_(2009_film)", "http://dbpedia.org/resource/America_(American_TV_series)", "http://dbpedia.org/resource/America_2-Night", "http://dbpedia.org/resource/America_2040", "http://dbpedia.org/resource/America_After_9/11", "http://dbpedia.org/resource/America_Alive!", "http://dbpedia.org/resource/America_Ammayi_(TV_series)", "http://dbpedia.org/resource/America_By_the_Numbers_with_Maria_Hinojosa:_Clarkston_Georgia", "http://dbpedia.org/resource/America_Divided", "http://dbpedia.org/resource/America_Goes_Bananaz", "http://dbpedia.org/resource/America_Live_with_Megyn_Kelly", "http://dbpedia.org/resource/America_Mappillai", "http://dbpedia.org/resource/America_Now", "http://dbpedia.org/resource/America_ReFramed", "http://dbpedia.org/resource/America_Reports", "http://dbpedia.org/resource/America_Says", "http://dbpedia.org/resource/America_This_Morning", "http://dbpedia.org/resource/America_Tonight", "http://dbpedia.org/resource/America_Undercover", "http://dbpedia.org/resource/America_Unearthed", "http://dbpedia.org/resource/America_in_Primetime", "http://dbpedia.org/resource/America_to_Me", "http://dbpedia.org/resource/American_Arts_Commemorative_Series_medallions", "http://dbpedia.org/resource/American_Auto", "http://dbpedia.org/resource/American_Bandstand", "http://dbpedia.org/resource/American_Beauty_Star", "http://dbpedia.org/resource/American_Body_Shop", "http://dbpedia.org/resource/American_Born_Chinese_(TV_series)", "http://dbpedia.org/resource/American_Candidate", "http://dbpedia.org/resource/American_Casino", "http://dbpedia.org/resource/American_Chess_Congress", "http://dbpedia.org/resource/American_Chopper", "http://dbpedia.org/resource/American_Chronicles", "http://dbpedia.org/resource/American_Country_Countdown", "http://dbpedia.org/resource/American_Crime_(TV_series)", "http://dbpedia.org/resource/American_Crime_Story", "http://dbpedia.org/resource/American_Dad!", "http://dbpedia.org/resource/American_Detective", "http://dbpedia.org/resource/American_Digger_(TV_series)", "http://dbpedia.org/resource/American_Dragon:_Jake_Long", "http://dbpedia.org/resource/American_Dream/American_Knightmare", "http://dbpedia.org/resource/American_Dream_(TV_series)", "http://dbpedia.org/resource/American_Dream_Builders", "http://dbpedia.org/resource/American_Dream_Derby", "http://dbpedia.org/resource/American_Dreamer_(TV_series)", "http://dbpedia.org/resource/American_Dreams", "http://dbpedia.org/resource/American_Eats", "http://dbpedia.org/resource/American_Experience", "http://dbpedia.org/resource/American_Family_(2002_TV_series)", "http://dbpedia.org/resource/American_Gangster:_Trap_Queens", "http://dbpedia.org/resource/American_Gangster_(TV_series)", "http://dbpedia.org/resource/American_Genius", "http://dbpedia.org/resource/American_Gigolo_(TV_series)", "http://dbpedia.org/resource/American_Gladiators_(1989_TV_series)", "http://dbpedia.org/resource/American_Gladiators_(2008_TV_series)", "http://dbpedia.org/resource/American_Gods_(TV_series)", "http://dbpedia.org/resource/American_Gothic_(1995_TV_series)", "http://dbpedia.org/resource/American_Gothic_(2016_TV_series)", "http://dbpedia.org/resource/American_Greed", "http://dbpedia.org/resource/American_Grit", "http://dbpedia.org/resource/American_Guns", "http://dbpedia.org/resource/American_Gypsies", "http://dbpedia.org/resource/American_Heiress", "http://dbpedia.org/resource/American_High_(TV_series)", "http://dbpedia.org/resource/American_Hoggers", "http://dbpedia.org/resource/American_Horror_Stories", "http://dbpedia.org/resource/American_Horror_Story", "http://dbpedia.org/resource/American_Hot_Rod", "http://dbpedia.org/resource/American_Housewife", "http://dbpedia.org/resource/American_Idol", "http://dbpedia.org/resource/American_Idol_Extra", "http://dbpedia.org/resource/American_Institute_of_Chemists_Gold_Medal", "http://dbpedia.org/resource/American_International_Toy_Fair", "http://dbpedia.org/resource/American_Inventor", "http://dbpedia.org/resource/American_Journal", "http://dbpedia.org/resource/American_Juniors", "http://dbpedia.org/resource/American_Justice", "http://dbpedia.org/resource/American_League_Championship_Series", "http://dbpedia.org/resource/American_Masters", "http://dbpedia.org/resource/American_Morning", "http://dbpedia.org/resource/American_Muscle_Car", "http://dbpedia.org/resource/American_Ninja_Challenge", "http://dbpedia.org/resource/American_Ninja_Warrior", "http://dbpedia.org/resource/American_Ninja_Warrior:_Ninja_vs._Ninja", "http://dbpedia.org/resource/American_Ninja_Warrior:_USA_vs._The_World", "http://dbpedia.org/resource/American_Ninja_Warrior_Junior", "http://dbpedia.org/resource/American_Odyssey", "http://dbpedia.org/resource/American_Pickers", "http://dbpedia.org/resource/American_Playboy:_The_Hugh_Hefner_Story", "http://dbpedia.org/resource/American_Playhouse", "http://dbpedia.org/resource/American_Presidents:_Life_Portraits", "http://dbpedia.org/resource/American_Princess_(2005_TV_series)", "http://dbpedia.org/resource/American_Princess_(2019_TV_series)", "http://dbpedia.org/resource/American_Refugee", "http://dbpedia.org/resource/American_Restoration", "http://dbpedia.org/resource/American_Ride_(TV_series)", "http://dbpedia.org/resource/American_Royal", "http://dbpedia.org/resource/American_Rust_(TV_series)", "http://dbpedia.org/resource/American_Song_Contest", "http://dbpedia.org/resource/American_Soul", "http://dbpedia.org/resource/American_Stuffers", "http://dbpedia.org/resource/American_Tongues", "http://dbpedia.org/resource/American_Top_40", "http://dbpedia.org/resource/American_Tragedy_(film)", "http://dbpedia.org/resource/American_Treasures", "http://dbpedia.org/resource/American_Trucker", "http://dbpedia.org/resource/American_Vandal", "http://dbpedia.org/resource/American_Weed", "http://dbpedia.org/resource/American_Whiskey_Bar", "http://dbpedia.org/resource/American_Woman_(TV_series)", "http://dbpedia.org/resource/American_Writers:_A_Journey_Through_History", "http://dbpedia.org/resource/Americana_(1992_TV_series)", "http://dbpedia.org/resource/Americana_(game_show)", "http://dbpedia.org/resource/Americana_(radio_series)", "http://dbpedia.org/resource/Americana_Unplugged", "http://dbpedia.org/resource/Amerika_(miniseries)", "http://dbpedia.org/resource/Ameryka_Express", "http://dbpedia.org/resource/Ametalk!", "http://dbpedia.org/resource/Amethyst,_Princess_of_Gemworld", "http://dbpedia.org/resource/Ami_Sirajer_Begum", "http://dbpedia.org/resource/Amica_(opera)", "http://dbpedia.org/resource/Amiche_mie", "http://dbpedia.org/resource/Amici_di_Maria_De_Filippi", "http://dbpedia.org/resource/Amico_mio", "http://dbpedia.org/resource/Amigas_&_Rivais", "http://dbpedia.org/resource/Amigas_y_rivales", "http://dbpedia.org/resource/Amigasa_J\u016bbei", "http://dbpedia.org/resource/Amigo_(game_show)", "http://dbpedia.org/resource/Amigo_and_Friends", "http://dbpedia.org/resource/Amigo_de_Aluguel", "http://dbpedia.org/resource/Amigos_x_siempre", "http://dbpedia.org/resource/Amilie,_or_the_Love_Test", "http://dbpedia.org/resource/Amish_Grace", "http://dbpedia.org/resource/Amish_Mafia", "http://dbpedia.org/resource/Amish_in_the_City", "http://dbpedia.org/resource/Amistades_peligrosas_(TV_series)", "http://dbpedia.org/resource/Amityville_4:_The_Evil_Escapes", "http://dbpedia.org/resource/Amleto", "http://dbpedia.org/resource/Amma_(TV_series)", "http://dbpedia.org/resource/Amma_Ke_Babu_Ki_Baby", "http://dbpedia.org/resource/Amma_Makal", "http://dbpedia.org/resource/Ammaji_Ki_Galli", "http://dbpedia.org/resource/Ammaku_Teliyani_Koilamma", "http://dbpedia.org/resource/Amman_(TV_series)", "http://dbpedia.org/resource/Ammayariyathe", "http://dbpedia.org/resource/Ammayi_Kaapuram", "http://dbpedia.org/resource/Ammuvinte_Amma", "http://dbpedia.org/resource/Amnesia_(TV_series)", "http://dbpedia.org/resource/Amnesia_(game_show)", "http://dbpedia.org/resource/Amnesia_(visual_novel)", "http://dbpedia.org/resource/Amo_(TV_series)", "http://dbpedia.org/resource/Among_Nonbelievers", "http://dbpedia.org/resource/Amongst_Men", "http://dbpedia.org/resource/Amor_Amor_(TV_series)", "http://dbpedia.org/resource/Amor_Comprado", "http://dbpedia.org/resource/Amor_Descarado", "http://dbpedia.org/resource/Amor_Eterno_Amor", "http://dbpedia.org/resource/Amor_Fati_(TV_series)", "http://dbpedia.org/resource/Amor_Maior", "http://dbpedia.org/resource/Amor_a_Ciegas", "http://dbpedia.org/resource/Amor_a_la_Catal\u00e1n", "http://dbpedia.org/resource/Amor_a_mil", "http://dbpedia.org/resource/Amor_a_palos", "http://dbpedia.org/resource/Amor_brav\u00edo", "http://dbpedia.org/resource/Amor_cautivo", "http://dbpedia.org/resource/Amor_com_Amor_Se_Paga", "http://dbpedia.org/resource/Amor_de_Abril", "http://dbpedia.org/resource/Amor_de_M\u00e3e", "http://dbpedia.org/resource/Amor_de_Perdi\u00e7\u00e3o_(TV_series)", "http://dbpedia.org/resource/Amor_de_Tarapaca", "http://dbpedia.org/resource/Amor_de_barrio", "http://dbpedia.org/resource/Amor_de_madre", "http://dbpedia.org/resource/Amor_de_nadie", "http://dbpedia.org/resource/Amor_del_bueno", "http://dbpedia.org/resource/Amor_dividido", "http://dbpedia.org/resource/Amor_e_Revolu\u00e7\u00e3o", "http://dbpedia.org/resource/Amor_e_Sexo", "http://dbpedia.org/resource/Amor_en_custodia_(Mexican_TV_series)", "http://dbpedia.org/resource/Amor_en_el_desierto", "http://dbpedia.org/resource/Amor_en_silencio", "http://dbpedia.org/resource/Amor_gitano_(TV_series)", "http://dbpedia.org/resource/Amor_m\u00edo_(Argentine_TV_series)", "http://dbpedia.org/resource/Amor_m\u00edo_(Mexican_TV_series)", "http://dbpedia.org/resource/Amor_m\u00edo_(Venezuelan_TV_series)", "http://dbpedia.org/resource/Amor_prohibido_(TV_series)", "http://dbpedia.org/resource/Amor_real", "http://dbpedia.org/resource/Amor_secreto_(TV_series)", "http://dbpedia.org/resource/Amor_sem_Igual", "http://dbpedia.org/resource/Amor_sin_fronteras", "http://dbpedia.org/resource/Amor_sin_maquillaje", "http://dbpedia.org/resource/Amor_sublime", "http://dbpedia.org/resource/Amor_y_orgullo", "http://dbpedia.org/resource/Amor_\u00e0_Vida", "http://dbpedia.org/resource/Amorcito_coraz\u00f3n", "http://dbpedia.org/resource/Amores,_querer_con_alevos\u00eda", "http://dbpedia.org/resource/Amores_Roubados", "http://dbpedia.org/resource/Amores_con_trampa", "http://dbpedia.org/resource/Amores_cruzados", "http://dbpedia.org/resource/Amores_de_fin_de_siglo", "http://dbpedia.org/resource/Amores_de_mercado_(2006_TV_series)", "http://dbpedia.org/resource/Amores_de_mercado_(Chilean_TV_series)", "http://dbpedia.org/resource/Amores_que_enga\u00f1an", "http://dbpedia.org/resource/Amores_verdaderos", "http://dbpedia.org/resource/Amos_(film)", "http://dbpedia.org/resource/Amos_(satellite)", "http://dbpedia.org/resource/Amour_et_P\u00e2tisserie", "http://dbpedia.org/resource/Amp_(TV_series)", "http://dbpedia.org/resource/Ampang_Medikal", "http://dbpedia.org/resource/Amphibia_(TV_series)", "http://dbpedia.org/resource/Amrit_Manthan", "http://dbpedia.org/resource/Amrutham_(TV_series)", "http://dbpedia.org/resource/Amrutham_Dhvitheeyam", "http://dbpedia.org/resource/Amser_Te", "http://dbpedia.org/resource/Amstrad_CPC", "http://dbpedia.org/resource/Amudha_Oru_Aacharyakuri", "http://dbpedia.org/resource/Amudhavum_Annalakshmiyum", "http://dbpedia.org/resource/Amy's_Choice_(Doctor_Who)", "http://dbpedia.org/resource/Amy,_la_ni\u00f1a_de_la_mochila_azul", "http://dbpedia.org/resource/Amy_&_Isabelle", "http://dbpedia.org/resource/Amy_(1984_film)", "http://dbpedia.org/resource/Amy_Fisher:_My_Story", "http://dbpedia.org/resource/Amy_Prentiss", "http://dbpedia.org/resource/Amy_Schumer:_Growing", "http://dbpedia.org/resource/Amy_Schumer:_Live_at_the_Apollo", "http://dbpedia.org/resource/Amy_Schumer:_The_Leather_Special", "http://dbpedia.org/resource/Amy_Schumer_Learns_to_Cook", "http://dbpedia.org/resource/Amy_Winehouse:_Back_to_Black", "http://dbpedia.org/resource/Am\u00e9rica_(Brazilian_TV_series)", "http://dbpedia.org/resource/An_Accidental_Soldier", "http://dbpedia.org/resource/An_Actor's_Life_For_Me", "http://dbpedia.org/resource/An_Adventure_in_Space_and_Time", "http://dbpedia.org/resource/An_African_City", "http://dbpedia.org/resource/An_Afternoon_with_SCTV", "http://dbpedia.org/resource/An_Age_of_Kings", "http://dbpedia.org/resource/An_American_Christmas_Carol", "http://dbpedia.org/resource/An_American_Daughter_(film)", "http://dbpedia.org/resource/An_American_Family", "http://dbpedia.org/resource/An_American_Girl:_Chrissa_Stands_Strong", "http://dbpedia.org/resource/An_American_Girl:_Saige_Paints_the_Sky", "http://dbpedia.org/resource/An_American_Portrait", "http://dbpedia.org/resource/An_American_Tragedy_(opera)", "http://dbpedia.org/resource/An_American_in_Canada", "http://dbpedia.org/resource/An_Audience_with...", "http://dbpedia.org/resource/An_Aussie_Goes_Barmy", "http://dbpedia.org/resource/An_Aussie_Goes_Bolly", "http://dbpedia.org/resource/An_Aussie_Goes_Calypso", "http://dbpedia.org/resource/An_Avonlea_Christmas", "http://dbpedia.org/resource/An_Awfully_Beastly_Business", "http://dbpedia.org/resource/An_Crisis", "http://dbpedia.org/resource/An_Early_Frost", "http://dbpedia.org/resource/An_Emmy_for_Megan", "http://dbpedia.org/resource/An_Enemy_of_the_People_(1958_film)", "http://dbpedia.org/resource/An_Englishman's_Castle", "http://dbpedia.org/resource/An_Englishman_Abroad", "http://dbpedia.org/resource/An_Equal_Playing_Field", "http://dbpedia.org/resource/An_Evening_with_Fred_Astaire", "http://dbpedia.org/resource/An_Evening_with_Kevin_Smith", "http://dbpedia.org/resource/An_Evening_with_Kevin_Smith_2:_Evening_Harder", "http://dbpedia.org/resource/An_Evening_with_Marlene_Dietrich", "http://dbpedia.org/resource/An_Evening_with_Raoul", "http://dbpedia.org/resource/An_Evening_with_the_Dixie_Chicks", "http://dbpedia.org/resource/An_Icelandic_Odyssey", "http://dbpedia.org/resource/An_Idiot_Abroad", "http://dbpedia.org/resource/An_Innocent_Love", "http://dbpedia.org/resource/An_Inspector_Calls_(2015_TV_film)", "http://dbpedia.org/resource/An_Inspector_Calls_(TV_series)", "http://dbpedia.org/resource/An_Island_Parish", "http://dbpedia.org/resource/An_Klondike", "http://dbpedia.org/resource/An_L\u00e0", "http://dbpedia.org/resource/An_Ocean_Apart", "http://dbpedia.org/resource/An_Ode_to_Life", "http://dbpedia.org/resource/An_Officer_and_a_Car_Salesman", "http://dbpedia.org/resource/An_Officer_and_a_Murderer", "http://dbpedia.org/resource/An_Old_Fashioned_Thanksgiving", "http://dbpedia.org/resource/An_Unexpected_Love", "http://dbpedia.org/resource/An_Unfinished_Affair", "http://dbpedia.org/resource/An_Ungentlemanly_Act", "http://dbpedia.org/resource/An_Unsuitable_Job_for_a_Woman_(TV_series)", "http://dbpedia.org/resource/Ana_(1984_TV_series)", "http://dbpedia.org/resource/Ana_(2004_TV_series)", "http://dbpedia.org/resource/Ana_(2020_TV_series)", "http://dbpedia.org/resource/Ana_del_aire", "http://dbpedia.org/resource/Anaa_(TV_series)", "http://dbpedia.org/resource/Anaana's_Tent", "http://dbpedia.org/resource/Anabel_(Brazilian_TV_series)", "http://dbpedia.org/resource/Anaconda_3:_Offspring", "http://dbpedia.org/resource/Anacondas:_Trail_of_Blood", "http://dbpedia.org/resource/Anacostia_(web_series)", "http://dbpedia.org/resource/Anaganaga", "http://dbpedia.org/resource/Anak_Jalanan", "http://dbpedia.org/resource/Anak_Langit", "http://dbpedia.org/resource/Anak_ni_Waray_vs._Anak_ni_Biday", "http://dbpedia.org/resource/Analog_(TV_series)", "http://dbpedia.org/resource/Analog_Trip", "http://dbpedia.org/resource/Anamika_(TV_series)", "http://dbpedia.org/resource/Anandham_(TV_series)", "http://dbpedia.org/resource/Anandibaa_Aur_Emily", "http://dbpedia.org/resource/Anansi_Boys_(TV_series)", "http://dbpedia.org/resource/Anantham_(web_series)", "http://dbpedia.org/resource/Anarky_(comic_book)", "http://dbpedia.org/resource/Anastasia:_The_Mystery_of_Anna", "http://dbpedia.org/resource/Anastasia_(TV_series)", "http://dbpedia.org/resource/Anast\u00e1cia,_a_Mulher_sem_Destino", "http://dbpedia.org/resource/Anatane:_Saving_the_Children_of_Okura", "http://dbpedia.org/resource/Anatole_(TV_series)", "http://dbpedia.org/resource/Anatomy_of_Crime", "http://dbpedia.org/resource/Anatomy_of_a_Disaster", "http://dbpedia.org/resource/Anatomy_of_a_Hate_Crime", "http://dbpedia.org/resource/Anatomy_of_a_Scandal", "http://dbpedia.org/resource/Anaya_Tumhari_Hui", "http://dbpedia.org/resource/Anbe_Sivam_(TV_series)", "http://dbpedia.org/resource/Anbe_Vaa_(2009_TV_series)", "http://dbpedia.org/resource/Anbe_Vaa_(2020_TV_series)", "http://dbpedia.org/resource/Anbudan_DD", "http://dbpedia.org/resource/Anbudan_Kushi", "http://dbpedia.org/resource/Anbulla_Ghilli", "http://dbpedia.org/resource/Ancestral_Temple_(TV_series)", "http://dbpedia.org/resource/Anchorage-class_dock_landing_ship", "http://dbpedia.org/resource/Anchorwoman_(TV_series)", "http://dbpedia.org/resource/Ancient_Aliens", "http://dbpedia.org/resource/Ancient_Discoveries", "http://dbpedia.org/resource/Ancient_Egyptians_(TV_series)", "http://dbpedia.org/resource/Ancient_Empires_(mobile_game)", "http://dbpedia.org/resource/Ancient_Inventions", "http://dbpedia.org/resource/Ancient_Kings", "http://dbpedia.org/resource/Ancient_Legends", "http://dbpedia.org/resource/Ancient_Macedonian_calendar", "http://dbpedia.org/resource/Ancient_Mysteries", "http://dbpedia.org/resource/Ancient_Rome:_The_Rise_and_Fall_of_an_Empire", "http://dbpedia.org/resource/Ancient_Warriors", "http://dbpedia.org/resource/Ancient_Warriors_(TV_series)", "http://dbpedia.org/resource/Ancient_X-Files", "http://dbpedia.org/resource/Anclados", "http://dbpedia.org/resource/And_Everything_Nice", "http://dbpedia.org/resource/And_Here_Comes_Bucknuckle", "http://dbpedia.org/resource/And_I_Love_You_So_(TV_series)", "http://dbpedia.org/resource/And_Just_Like_That...", "http://dbpedia.org/resource/And_Millions_Will_Die", "http://dbpedia.org/resource/And_No_One_Could_Save_Her", "http://dbpedia.org/resource/And_Starring_Pancho_Villa_as_Himself", "http://dbpedia.org/resource/And_Then_There_Was_One_(1994_film)", "http://dbpedia.org/resource/And_Then_There_Were_None_(TV_series)", "http://dbpedia.org/resource/And_Then_You_Die_(TV_series)", "http://dbpedia.org/resource/And_There's_More", "http://dbpedia.org/resource/And_They're_Off!", "http://dbpedia.org/resource/And_the_Band_Played_On_(film)", "http://dbpedia.org/resource/And_the_Winner_Is_Love", "http://dbpedia.org/resource/Anda_Pa'l_Car\u00e1", "http://dbpedia.org/resource/Andaaz-e-Sitam", "http://dbpedia.org/resource/Andal_Azhagar", "http://dbpedia.org/resource/Andando_nas_Nuvens", "http://dbpedia.org/resource/Andante_(TV_series)", "http://dbpedia.org/resource/Andar_ng_mga_Balita_(TV_program)", "http://dbpedia.org/resource/Andar_ng_mga_Balita_(radio)", "http://dbpedia.org/resource/Andarmahal", "http://dbpedia.org/resource/Andata_e_ritorno_(TV_series)", "http://dbpedia.org/resource/Anderland", "http://dbpedia.org/resource/Andersen_Monogatari_(TV_series)", "http://dbpedia.org/resource/Anderson_Cooper_360\u00b0", "http://dbpedia.org/resource/Anderson_Cooper_Full_Circle", "http://dbpedia.org/resource/Anderson_Live", "http://dbpedia.org/resource/Andersonville_(film)", "http://dbpedia.org/resource/Andes_to_Amazon", "http://dbpedia.org/resource/Andha_Pathu_Naatkal", "http://dbpedia.org/resource/Andhera_Ujala", "http://dbpedia.org/resource/Andi_Mack", "http://dbpedia.org/resource/Ando-Roid", "http://dbpedia.org/resource/Andor_(TV_series)", "http://dbpedia.org/resource/Andra_(TV_series)", "http://dbpedia.org/resource/Andra_Avenyn", "http://dbpedia.org/resource/Andre's_Mother", "http://dbpedia.org/resource/Andrea_Ch\u00e9nier", "http://dbpedia.org/resource/Andrea_Mitchell_Reports", "http://dbpedia.org/resource/Andrei_Sakharov_Freedom_Award", "http://dbpedia.org/resource/Andres_de_Saya", "http://dbpedia.org/resource/Andrew_Denton's_Interview", "http://dbpedia.org/resource/Andrew_Lost", "http://dbpedia.org/resource/Andrew_Marr's_History_of_Modern_Britain", "http://dbpedia.org/resource/Andrew_Marr's_History_of_the_World", "http://dbpedia.org/resource/Andrew_Marr's_The_Making_of_Modern_Britain", "http://dbpedia.org/resource/Andrew_Zimmern's_Bizarre_World", "http://dbpedia.org/resource/Andrija_i_An\u0111elka", "http://dbpedia.org/resource/Andrina_(film)", "http://dbpedia.org/resource/Andro_Melos", "http://dbpedia.org/resource/Android_Apocalypse", "http://dbpedia.org/resource/Android_Kikaider", "http://dbpedia.org/resource/Andromeda_(TV_series)", "http://dbpedia.org/resource/Andr\u00e9_the_Giant_(film)", "http://dbpedia.org/resource/Andr\u00e9s_L\u00f3pez_de_Noche", "http://dbpedia.org/resource/Andy's_Dinosaur_Adventures", "http://dbpedia.org/resource/Andy_Barker,_P.I.", "http://dbpedia.org/resource/Andy_Capp_(TV_series)", "http://dbpedia.org/resource/Andy_McNab's_Tour_of_Duty", "http://dbpedia.org/resource/Andy_Pandy", "http://dbpedia.org/resource/Andy_Pirki", "http://dbpedia.org/resource/Andy_Richter_Controls_the_Universe", "http://dbpedia.org/resource/Andy_Robson", "http://dbpedia.org/resource/Andy_Warhol's_Fifteen_Minutes", "http://dbpedia.org/resource/Andy_Warhol:_A_Documentary_Film", "http://dbpedia.org/resource/Adrenalina_Skateboard_Marathon", "http://dbpedia.org/resource/Adrian_der_Tulpendieb", "http://dbpedia.org/resource/Adrienne_Clarkson_Presents", "http://dbpedia.org/resource/Advance_Credit_Administration_Program", "http://dbpedia.org/resource/Advanced_Combat_Optical_Gunsight", "http://dbpedia.org/resource/Advanced_Dungeons_&_Dragons_Adventure_Gamebooks", "http://dbpedia.org/resource/Advances_in_Experimental_Medicine_and_Biology", "http://dbpedia.org/resource/Advances_in_Mass_Spectrometry", "http://dbpedia.org/resource/Advances_in_Public_Interest_Accounting", "http://dbpedia.org/resource/Advent_calendar", "http://dbpedia.org/resource/Adventist_Health_Studies", "http://dbpedia.org/resource/Adventure_Florida", "http://dbpedia.org/resource/Adventure_Path", "http://dbpedia.org/resource/Adventure_People", "http://dbpedia.org/resource/Adventure_in_Dairyland", "http://dbpedia.org/resource/Adventures_by_Morse", "http://dbpedia.org/resource/Adventures_in_Africa", "http://dbpedia.org/resource/Adventures_into_the_Unknown", "http://dbpedia.org/resource/Adventures_of_Captain_America", "http://dbpedia.org/resource/Adventures_of_Cow", "http://dbpedia.org/resource/Adventures_of_the_Sea_Hawk", "http://dbpedia.org/resource/Adversus_Judaeos", "http://dbpedia.org/resource/Ad\u00e8le_de_Ponthieu_(La_Borde_and_Berton)", "http://dbpedia.org/resource/Aerial_China", "http://dbpedia.org/resource/Aeroscope", "http://dbpedia.org/resource/Aesop_World", "http://dbpedia.org/resource/Aeterna_(TV_series)", "http://dbpedia.org/resource/Affair_of_the_Spanish_Marriages", "http://dbpedia.org/resource/Affari_tuoi", "http://dbpedia.org/resource/Afflictions:_Culture_&_Mental_Illness_in_Indonesia", "http://dbpedia.org/resource/African_American_Short_Films", "http://dbpedia.org/resource/African_Sources_for_African_History", "http://dbpedia.org/resource/Afro-Asian_Games", "http://dbpedia.org/resource/After_Hours_(1958_British_TV_series)", "http://dbpedia.org/resource/After_Hours_(2015_British_TV_series)", "http://dbpedia.org/resource/After_Nine", "http://dbpedia.org/resource/Agahi_Award", "http://dbpedia.org/resource/Against_the_Flow", "http://dbpedia.org/resource/Agamemnon_(opera)", "http://dbpedia.org/resource/Agatha_Christie_(video_game_series)", "http://dbpedia.org/resource/Age_of_Empires", "http://dbpedia.org/resource/Age_of_Mortals", "http://dbpedia.org/resource/Agenda_2000", "http://dbpedia.org/resource/Agenda_2010", "http://dbpedia.org/resource/Agent_13:_The_Midnight_Avenger", "http://dbpedia.org/resource/Agent_327", "http://dbpedia.org/resource/Agents_of_Law", "http://dbpedia.org/resource/Agfa_Clack", "http://dbpedia.org/resource/Agfa_Optima_1535_Sensor", "http://dbpedia.org/resource/Agfa_Optima_Flash_Sensor", "http://dbpedia.org/resource/Aldwych_farce", "http://dbpedia.org/resource/Aleksis_Kivi_(opera)", "http://dbpedia.org/resource/Aleppo_soap", "http://dbpedia.org/resource/Alesha's_Street_Dance_Stars", "http://dbpedia.org/resource/Alessandro_(opera)", "http://dbpedia.org/resource/Alex_+_Ada", "http://dbpedia.org/resource/Alex_Delaware", "http://dbpedia.org/resource/Alex_Kidd", "http://dbpedia.org/resource/Alex_McKnight_series", "http://dbpedia.org/resource/Alex_Rider", "http://dbpedia.org/resource/Alexandre_aux_Indes", "http://dbpedia.org/resource/Alexandre_de_Betak", "http://dbpedia.org/resource/Alexandre_et_Roxane", "http://dbpedia.org/resource/Alfa_Papa_Tango", "http://dbpedia.org/resource/Alfie_Atkins", "http://dbpedia.org/resource/Alfred_(Dvo\u0159\u00e1k)", "http://dbpedia.org/resource/Alfred_Kropp_series", "http://dbpedia.org/resource/Dallas:_J.R._Returns", "http://dbpedia.org/resource/Dallas:_The_Early_Years", "http://dbpedia.org/resource/Dallas:_War_of_the_Ewings", "http://dbpedia.org/resource/Dallas_&_Robo", "http://dbpedia.org/resource/Dallas_(1978_TV_series)", "http://dbpedia.org/resource/Dallas_(2012_TV_series)", "http://dbpedia.org/resource/Dallas_Car_Sharks", "http://dbpedia.org/resource/Dallas_Cowboys_Cheerleaders:_Making_the_Team", "http://dbpedia.org/resource/Dallas_Divas_&_Daughters", "http://dbpedia.org/resource/Dallas_Reunion:_The_Return_to_Southfork", "http://dbpedia.org/resource/Dallas_SWAT", "http://dbpedia.org/resource/Dalsa_Origin", "http://dbpedia.org/resource/Dalva", "http://dbpedia.org/resource/Dalva_e_Herivelto:_uma_Can\u00e7\u00e3o_de_Amor", "http://dbpedia.org/resource/Dalziel_and_Pascoe_(TV_series)", "http://dbpedia.org/resource/Dam_Dama_Dam", "http://dbpedia.org/resource/Dama_y_obrero_(American_TV_series)", "http://dbpedia.org/resource/Dama_y_obrero_(Chilean_TV_series)", "http://dbpedia.org/resource/Damage_Control_(TV_series)", "http://dbpedia.org/resource/Damages_(TV_series)", "http://dbpedia.org/resource/Damages_(season_5)", "http://dbpedia.org/resource/Damals_in_der_DDR", "http://dbpedia.org/resource/Damascenone", "http://dbpedia.org/resource/Damascone", "http://dbpedia.org/resource/Damayan", "http://dbpedia.org/resource/Damayanti_(web_series)", "http://dbpedia.org/resource/Dame_Chocolate", "http://dbpedia.org/resource/Dame_Edna's_Neighbourhood_Watch", "http://dbpedia.org/resource/Dame_na_Watashi_ni_Koishite_Kudasai", "http://dbpedia.org/resource/Dames_in_de_Dop", "http://dbpedia.org/resource/Dames_in_de_Dop_1", "http://dbpedia.org/resource/Dames_in_de_Dop_2", "http://dbpedia.org/resource/Damien_(TV_series)", "http://dbpedia.org/resource/Damilola,_Our_Loved_Boy", "http://dbpedia.org/resource/Damn_Yankees!_(1967_film)", "http://dbpedia.org/resource/Damnation_(TV_series)", "http://dbpedia.org/resource/Damned_(TV_series)", "http://dbpedia.org/resource/Damo_(TV_series)", "http://dbpedia.org/resource/Damon_(TV_series)", "http://dbpedia.org/resource/Damon_Runyon_Theater", "http://dbpedia.org/resource/Damon_and_Debbie", "http://dbpedia.org/resource/Damsa", "http://dbpedia.org/resource/DanSing_for_You", "http://dbpedia.org/resource/Dan_&_Becs", "http://dbpedia.org/resource/Dan_August", "http://dbpedia.org/resource/Dan_Dare:_Pilot_of_the_Future_(TV_series)", "http://dbpedia.org/resource/Dan_Deacon:_U.S.A.", "http://dbpedia.org/resource/Dan_Harding's_Wife", "http://dbpedia.org/resource/Dan_Raven", "http://dbpedia.org/resource/Dan_Vs.", "http://dbpedia.org/resource/Dan_and_Nick:_The_Wildebeest_Years", "http://dbpedia.org/resource/Dan_and_Phil", "http://dbpedia.org/resource/Dan_for_Mayor", "http://dbpedia.org/resource/Dana_White's_Contender_Series_Brazil", "http://dbpedia.org/resource/Dana_White's_Contender_Series_Season_1", "http://dbpedia.org/resource/Dana_White's_Contender_Series_Season_2", "http://dbpedia.org/resource/Dana_White's_Contender_Series_Season_3", "http://dbpedia.org/resource/Dana_White's_Contender_Series_Season_4", "http://dbpedia.org/resource/Dana_White's_Contender_Series_Season_5", "http://dbpedia.org/resource/Dana_White's_Contender_Series_Season_6", "http://dbpedia.org/resource/Dance!_La_Fuerza_del_Coraz\u00f3n", "http://dbpedia.org/resource/Dance-2-Nite", "http://dbpedia.org/resource/DanceLife", "http://dbpedia.org/resource/DanceX", "http://dbpedia.org/resource/Dance_'til_Dawn", "http://dbpedia.org/resource/Dance_360", "http://dbpedia.org/resource/Dance_Academy", "http://dbpedia.org/resource/Dance_Boss", "http://dbpedia.org/resource/Dance_Central_(series)", "http://dbpedia.org/resource/Dance_Champions", "http://dbpedia.org/resource/Dance_Dance_(TV_series)", "http://dbpedia.org/resource/Dance_Dance_Dance_(British_TV_series)", "http://dbpedia.org/resource/Dance_Deewane", "http://dbpedia.org/resource/Dance_Factory", "http://dbpedia.org/resource/Dance_Fever", "http://dbpedia.org/resource/Dance_Fever_(2003_TV_series)", "http://dbpedia.org/resource/Dance_India_Dance", "http://dbpedia.org/resource/Dance_Jodi_Dance", "http://dbpedia.org/resource/Dance_Kids", "http://dbpedia.org/resource/Dance_Machine", "http://dbpedia.org/resource/Dance_Moms", "http://dbpedia.org/resource/Dance_Moms:_Miami", "http://dbpedia.org/resource/Dance_Mums_with_Jennifer_Ellison", "http://dbpedia.org/resource/Dance_Party_USA", "http://dbpedia.org/resource/Dance_Plus", "http://dbpedia.org/resource/Dance_Premier_League", "http://dbpedia.org/resource/Dance_Revolution", "http://dbpedia.org/resource/Dance_Se_Puder", "http://dbpedia.org/resource/Dance_Showdown", "http://dbpedia.org/resource/Dance_Suomi", "http://dbpedia.org/resource/Dance_USA_Dance", "http://dbpedia.org/resource/Dance_War:_Bruno_vs._Carrie_Ann", "http://dbpedia.org/resource/Dance_Your_Ass_Off", "http://dbpedia.org/resource/Dance_of_the_Phoenix", "http://dbpedia.org/resource/Dance_of_the_Sky_Empire", "http://dbpedia.org/resource/Dance_on_Sunset", "http://dbpedia.org/resource/Dance_till_Tomorrow", "http://dbpedia.org/resource/Dance_with_Valentino", "http://dbpedia.org/resource/Dancee_Plus", "http://dbpedia.org/resource/Dancer's_Series:_Steps", "http://dbpedia.org/resource/Danchigai", "http://dbpedia.org/resource/Dancin'_Days_(1978_TV_series)", "http://dbpedia.org/resource/Dancin'_Days_(2012_TV_series)", "http://dbpedia.org/resource/Dancin'_to_the_Hits", "http://dbpedia.org/resource/Dancing_9", "http://dbpedia.org/resource/Dancing_Brasil", "http://dbpedia.org/resource/Dancing_Brasil_J\u00fanior", "http://dbpedia.org/resource/Dancing_Champion", "http://dbpedia.org/resource/Dancing_Daze", "http://dbpedia.org/resource/Dancing_Khilladies", "http://dbpedia.org/resource/Dancing_Queen_(American_TV_series)", "http://dbpedia.org/resource/Dancing_Queen_(Indian_TV_series)", "http://dbpedia.org/resource/Dancing_Stars_(Austrian_TV_series)", "http://dbpedia.org/resource/Dancing_Stars_(Bulgarian_TV_series)", "http://dbpedia.org/resource/Dancing_Storybook", "http://dbpedia.org/resource/Dancing_at_the_Harvest_Moon", "http://dbpedia.org/resource/Dancing_on_Ice", "http://dbpedia.org/resource/Dancing_on_Ice_(German_TV_series)", "http://dbpedia.org/resource/Dancing_on_Ice_(Greek_TV_series)", "http://dbpedia.org/resource/Dancing_on_Wheels", "http://dbpedia.org/resource/Dancing_on_the_Edge_(TV_series)", "http://dbpedia.org/resource/Dancing_with_Myself_(TV_series)", "http://dbpedia.org/resource/Dancing_with_the_Stars", "http://dbpedia.org/resource/Dancing_with_the_Stars:_Juniors", "http://dbpedia.org/resource/Dancing_with_the_Stars:_Taniec_z_gwiazdami", "http://dbpedia.org/resource/Dancing_with_the_Stars_(Albanian_TV_series)", "http://dbpedia.org/resource/Dancing_with_the_Stars_(American_TV_series)", "http://dbpedia.org/resource/Dancing_with_the_Stars_(Australian_TV_series)", "http://dbpedia.org/resource/Dancing_with_the_Stars_(Greek_TV_series)", "http://dbpedia.org/resource/Dancing_with_the_Stars_(Irish_TV_series)", "http://dbpedia.org/resource/Dancing_with_the_Stars_(New_Zealand_TV_series)", "http://dbpedia.org/resource/Dancing_with_the_Stars_(South_African_TV_series)", "http://dbpedia.org/resource/Dancing_with_the_Stars_(South_Korean_TV_series)", "http://dbpedia.org/resource/Dancing_with_the_Stars_(Thai_TV_series)", "http://dbpedia.org/resource/Dancing_with_the_Stars_Myanmar", "http://dbpedia.org/resource/Dancing_with_the_Stars_Nepal", "http://dbpedia.org/resource/Dancouga_\u2013_Super_Beast_Machine_God", "http://dbpedia.org/resource/Dandelion_Dead", "http://dbpedia.org/resource/Dandelion_Family", "http://dbpedia.org/resource/Dangaioh", "http://dbpedia.org/resource/Dangal_(TV_series)", "http://dbpedia.org/resource/Danganronpa", "http://dbpedia.org/resource/Danger_&_Eggs", "http://dbpedia.org/resource/Danger_(TV_series)", "http://dbpedia.org/resource/Danger_5", "http://dbpedia.org/resource/Danger_Bay", "http://dbpedia.org/resource/Danger_Beneath_the_Sea", "http://dbpedia.org/resource/Danger_Boy", "http://dbpedia.org/resource/Danger_Force", "http://dbpedia.org/resource/Danger_Island_(TV_series)", "http://dbpedia.org/resource/Danger_Island_(film)", "http://dbpedia.org/resource/Danger_Man", "http://dbpedia.org/resource/Danger_Mouse_(1981_TV_series)", "http://dbpedia.org/resource/Danger_Mouse_(2015_TV_series)", "http://dbpedia.org/resource/Danger_Rangers", "http://dbpedia.org/resource/Danger_Theatre", "http://dbpedia.org/resource/Danger_UXB", "http://dbpedia.org/resource/Dangerfield_(TV_series)", "http://dbpedia.org/resource/Dangerous_(TV_series)", "http://dbpedia.org/resource/Dangerous_(web_series)", "http://dbpedia.org/resource/Dangerous_Angels", "http://dbpedia.org/resource/Dangerous_Beauty_(TV_series)", "http://dbpedia.org/resource/Dangerous_Curves_(TV_series)", "http://dbpedia.org/resource/Dangerous_Drives", "http://dbpedia.org/resource/Dangerous_Edge:_A_Life_of_Graham_Greene", "http://dbpedia.org/resource/Dangerous_Flights", "http://dbpedia.org/resource/Dangerous_Game_(TV_series)", "http://dbpedia.org/resource/Dangerous_Games_(Armenian_TV_series)", "http://dbpedia.org/resource/Dangerous_Games_(TV_series)", "http://dbpedia.org/resource/Dangerous_Intentions", "http://dbpedia.org/resource/Dangerous_Lady", "http://dbpedia.org/resource/Dangerous_Liaisons_(TV_series)", "http://dbpedia.org/resource/Dangerous_Mind", "http://dbpedia.org/resource/Dangerous_Minds_(TV_series)", "http://dbpedia.org/resource/Dangerous_Passion", "http://dbpedia.org/resource/Dangerous_Woman_(South_Korean_TV_series)", "http://dbpedia.org/resource/Dangerous_Women_(American_TV_series)", "http://dbpedia.org/resource/Dangwa", "http://dbpedia.org/resource/Dani's_Castle", "http://dbpedia.org/resource/Dani's_House", "http://dbpedia.org/resource/Dani_Who%3F", "http://dbpedia.org/resource/Daniel's_Daughter", "http://dbpedia.org/resource/Daniel_Boone_(1964_TV_series)", "http://dbpedia.org/resource/Daniel_Deronda_(TV_series)", "http://dbpedia.org/resource/Daniel_Olin_(TV_program)", "http://dbpedia.org/resource/Daniel_Tiger's_Neighborhood", "http://dbpedia.org/resource/Daniela_(1976_TV_series)", "http://dbpedia.org/resource/Daniela_(2002_TV_series)", "http://dbpedia.org/resource/Danielle_Cable:_Eyewitness", "http://dbpedia.org/resource/Danielle_Steel's_'Palomino'", "http://dbpedia.org/resource/Danielle_Steel's_Star", "http://dbpedia.org/resource/Danmark_Har_Talent", "http://dbpedia.org/resource/Danmarks_N\u00e6ste_Topmodel", "http://dbpedia.org/resource/Danni_Lowinski", "http://dbpedia.org/resource/Danny_(TV_series)", "http://dbpedia.org/resource/Danny_(talk_show)", "http://dbpedia.org/resource/Danny_Detective_INC", "http://dbpedia.org/resource/Danny_Dyer's_Deadliest_Men", "http://dbpedia.org/resource/Danny_Phantom", "http://dbpedia.org/resource/Danny_Wen", "http://dbpedia.org/resource/Danny_and_the_Human_Zoo", "http://dbpedia.org/resource/Dans_Eder_misin%3F", "http://dbpedia.org/resource/Dansbandskampen", "http://dbpedia.org/resource/Danse_avec_les_stars", "http://dbpedia.org/resource/Dansefeber", "http://dbpedia.org/resource/Dansez_pentru_tine", "http://dbpedia.org/resource/Dante's_Cove", "http://dbpedia.org/resource/Dante's_Inferno_(1967_film)", "http://dbpedia.org/resource/Dante_(TV_series)", "http://dbpedia.org/resource/Danz_Showdown", "http://dbpedia.org/resource/Dan\u00e7a_dos_Famosos", "http://dbpedia.org/resource/Dapat_Alam_Mo!", "http://dbpedia.org/resource/Dapat_Ka_Bang_Mahalin%3F", "http://dbpedia.org/resource/Daphne_(2007_film)", "http://dbpedia.org/resource/Daphne_in_the_Brilliant_Blue", "http://dbpedia.org/resource/Daphnis_et_Alcimadure", "http://dbpedia.org/resource/Dapper_Laughs:_On_the_Pull", "http://dbpedia.org/resource/Dappledown_Farm", "http://dbpedia.org/resource/Dapur_Devina", "http://dbpedia.org/resource/Dar_Chashm-e_Baad", "http://dbpedia.org/resource/Dar_El_Bahdja", "http://dbpedia.org/resource/Dar_Si_Jaati_Hai_Sila", "http://dbpedia.org/resource/Dar_mar", "http://dbpedia.org/resource/Dara_O_Briain's_Go_8_Bit", "http://dbpedia.org/resource/Dara_\u00d3_Briain's_Science_Club", "http://dbpedia.org/resource/Dara_\u00d3_Briain:_School_of_Hard_Sums", "http://dbpedia.org/resource/Daraa_Governorate_clashes_(2011\u201313)", "http://dbpedia.org/resource/Daraar_(TV_series)", "http://dbpedia.org/resource/Darating_ang_Umaga", "http://dbpedia.org/resource/Daray_Daray_Naina", "http://dbpedia.org/resource/Darbadar_Tere_Liye", "http://dbpedia.org/resource/Darby_and_Joan_(TV_series)", "http://dbpedia.org/resource/Darcey_&_Stacey", "http://dbpedia.org/resource/Darcy's_Wild_Life", "http://dbpedia.org/resource/Dardanus_(Sacchini)", "http://dbpedia.org/resource/Dare_2_Dance", "http://dbpedia.org/resource/Dare_Me_(TV_series)", "http://dbpedia.org/resource/Dare_Stones", "http://dbpedia.org/resource/Dare_to_Dream:_The_Story_of_the_U.S._Women's_Soccer_Team", "http://dbpedia.org/resource/Daredevil:_End_of_Days", "http://dbpedia.org/resource/Daredevil_(TV_series)", "http://dbpedia.org/resource/Daredevil_(season_1)", "http://dbpedia.org/resource/Dareecha", "http://dbpedia.org/resource/Daria", "http://dbpedia.org/resource/Daridra_Lakshmiyaru", "http://dbpedia.org/resource/Daring_Women", "http://dbpedia.org/resource/Dark_(TV_series)", "http://dbpedia.org/resource/Dark_7_White", "http://dbpedia.org/resource/Dark_Ages_(TV_series)", "http://dbpedia.org/resource/Dark_Angel_(American_TV_series)", "http://dbpedia.org/resource/Dark_Angel_(British_TV_series)", "http://dbpedia.org/resource/Dark_Blue_(TV_series)", "http://dbpedia.org/resource/Dark_Blue_Kiss", "http://dbpedia.org/resource/Dark_Brown_(1963_film)", "http://dbpedia.org/resource/Dark_Days_in_Monkey_City", "http://dbpedia.org/resource/Dark_Desire_(TV_series)", "http://dbpedia.org/resource/Dark_Edge", "http://dbpedia.org/resource/Dark_Fantasy_(series)", "http://dbpedia.org/resource/Dark_Heart_(TV_series)", "http://dbpedia.org/resource/Dark_Hole", "http://dbpedia.org/resource/Dark_Holiday", "http://dbpedia.org/resource/Dark_Justice", "http://dbpedia.org/resource/Dark_Kingdom:_The_Dragon_King", "http://dbpedia.org/resource/Dark_Knight_(TV_series)", "http://dbpedia.org/resource/Dark_Mansions", "http://dbpedia.org/resource/Dark_Matter_(TV_series)", "http://dbpedia.org/resource/Dark_Matters:_Twisted_But_True", "http://dbpedia.org/resource/Dark_Mirror_(1984_film)", "http://dbpedia.org/resource/Dark_Money_(TV_series)", "http://dbpedia.org/resource/Dark_Net_(TV_series)", "http://dbpedia.org/resource/Dark_Night_of_the_Scarecrow", "http://dbpedia.org/resource/Dark_Oracle", "http://dbpedia.org/resource/Dark_Prince:_The_True_Story_of_Dracula", "http://dbpedia.org/resource/Dark_Realm", "http://dbpedia.org/resource/Dark_Relic", "http://dbpedia.org/resource/Dark_Season", "http://dbpedia.org/resource/Dark_Shadows", "http://dbpedia.org/resource/Dark_Shadows_(1991_TV_series)", "http://dbpedia.org/resource/Dark_Shadows_(2004_TV_pilot)", "http://dbpedia.org/resource/Dark_Side_of_the_90's", "http://dbpedia.org/resource/Dark_Side_of_the_Moon_(2002_film)", "http://dbpedia.org/resource/Dark_Side_of_the_Ring", "http://dbpedia.org/resource/Dark_Skies", "http://dbpedia.org/resource/Dark_Sunset", "http://dbpedia.org/resource/Dark_Tales", "http://dbpedia.org/resource/Dark_Tourist_(TV_series)", "http://dbpedia.org/resource/Dark_Towers", "http://dbpedia.org/resource/Dark_Under_the_Sun", "http://dbpedia.org/resource/Dark_Winds", "http://dbpedia.org/resource/Dark_of_Night", "http://dbpedia.org/resource/Darker_than_Black", "http://dbpedia.org/resource/Darknet_(TV_series)", "http://dbpedia.org/resource/Darkover_series", "http://dbpedia.org/resource/Darkroom_(TV_series)", "http://dbpedia.org/resource/Darkside_Blues", "http://dbpedia.org/resource/Darkstalkers", "http://dbpedia.org/resource/Darkstalkers_(TV_series)", "http://dbpedia.org/resource/Darkwing_Duck", "http://dbpedia.org/resource/Darling_Darling_(TV_series)", "http://dbpedia.org/resource/Darlings_of_the_Gods", "http://dbpedia.org/resource/Darna_(2005_TV_series)", "http://dbpedia.org/resource/Darna_(2009_TV_series)", "http://dbpedia.org/resource/Darna_(2022_TV_series)", "http://dbpedia.org/resource/Darndale:_The_Edge_of_Town", "http://dbpedia.org/resource/Darr_Khuda_Say", "http://dbpedia.org/resource/Darr_Sabko_Lagta_Hai", "http://dbpedia.org/resource/Darren_&_Brose_(TV_series)", "http://dbpedia.org/resource/Dartmoor_crosses", "http://dbpedia.org/resource/Das_Blaue_Palais", "http://dbpedia.org/resource/Das_Boot_(TV_series)", "http://dbpedia.org/resource/Das_Christ-Elflein", "http://dbpedia.org/resource/Das_Duo", "http://dbpedia.org/resource/Das_Erbe_der_Guldenburgs", "http://dbpedia.org/resource/Das_Geheimnis_meiner_Familie", "http://dbpedia.org/resource/Das_Haus_Anubis", "http://dbpedia.org/resource/Das_Haus_der_Krokodile", "http://dbpedia.org/resource/Das_Keyboard", "http://dbpedia.org/resource/Das_Kriminalmuseum", "http://dbpedia.org/resource/Das_Liebesverbot", "http://dbpedia.org/resource/Das_Nachtlager_in_Granada", "http://dbpedia.org/resource/Das_Nusch-Nuschi", "http://dbpedia.org/resource/Das_Phantom", "http://dbpedia.org/resource/Das_Rendezvous", "http://dbpedia.org/resource/Das_R\u00e4tsel_der_Sandbank", "http://dbpedia.org/resource/Das_Spielhaus", "http://dbpedia.org/resource/Das_Supertalent", "http://dbpedia.org/resource/Das_Traumschiff", "http://dbpedia.org/resource/Das_Wunder_der_Heliane", "http://dbpedia.org/resource/Das_aktuelle_sportstudio", "http://dbpedia.org/resource/Das_feuerrote_Spielmobil", "http://dbpedia.org/resource/Das_gro\u00dfe_Abenteuer_des_Kaspar_Schmeck", "http://dbpedia.org/resource/Das_kann_ja_heiter_werden", "http://dbpedia.org/resource/Das_unsichtbare_Visier", "http://dbpedia.org/resource/Das_verratene_Meer", "http://dbpedia.org/resource/Dasa_Purandara", "http://dbpedia.org/resource/Dasada_(TV_series)", "http://dbpedia.org/resource/Dash_&_Lily", "http://dbpedia.org/resource/Dash_Dolls", "http://dbpedia.org/resource/Dash_and_Lilly", "http://dbpedia.org/resource/Dasht_(TV_series)", "http://dbpedia.org/resource/Daskon", "http://dbpedia.org/resource/Dastaan-E-Mohabbat_Salim_Anarkali", "http://dbpedia.org/resource/Dastaan_(1995_TV_series)", "http://dbpedia.org/resource/Dastaan_(2010_TV_series)", "http://dbpedia.org/resource/Dastardly_and_Muttley_in_Their_Flying_Machines", "http://dbpedia.org/resource/Dastoor", "http://dbpedia.org/resource/DataGueule", "http://dbpedia.org/resource/Date_A_Live", "http://dbpedia.org/resource/Date_My_Dad", "http://dbpedia.org/resource/Date_My_Ex:_Jo_&_Slade", "http://dbpedia.org/resource/Date_My_Mom", "http://dbpedia.org/resource/Date_Night_(TV_series)", "http://dbpedia.org/resource/Date_with_the_Angels", "http://dbpedia.org/resource/Dateline_(Australian_TV_program)", "http://dbpedia.org/resource/Dateline_(TV_series)", "http://dbpedia.org/resource/Dateline_London", "http://dbpedia.org/resource/Dateline_NBC", "http://dbpedia.org/resource/Dateline_Philippines", "http://dbpedia.org/resource/Dateline_Scotland", "http://dbpedia.org/resource/Dates_(TV_series)", "http://dbpedia.org/resource/Dating_Aaj_Kal", "http://dbpedia.org/resource/Dating_Agency:_Cyrano", "http://dbpedia.org/resource/Dating_Alone", "http://dbpedia.org/resource/Dating_Around", "http://dbpedia.org/resource/Dating_Game_Killer_(film)", "http://dbpedia.org/resource/Dating_Naked", "http://dbpedia.org/resource/Dating_NoFilter", "http://dbpedia.org/resource/Dating_in_the_Dark_(American_TV_series)", "http://dbpedia.org/resource/Dating_in_the_Dark_(British_TV_series)", "http://dbpedia.org/resource/Dating_in_the_Dark_Australia", "http://dbpedia.org/resource/Dating_with_the_Parents", "http://dbpedia.org/resource/Dato'_Siti_Nurhaliza_Unplugged_2015", "http://dbpedia.org/resource/Datong\u2013Jining_Campaign", "http://dbpedia.org/resource/Datsun_510", "http://dbpedia.org/resource/Datsun_Sports", "http://dbpedia.org/resource/Daughter_from_Another_Mother", "http://dbpedia.org/resource/Daughter_of_Darkness_(1990_film)", "http://dbpedia.org/resource/Daughter_of_the_Mind", "http://dbpedia.org/resource/Daughters-in-Law", "http://dbpedia.org/resource/Daughters_(film)", "http://dbpedia.org/resource/Daughters_of_Destiny_(TV_series)", "http://dbpedia.org/resource/Daughters_of_the_Moon", "http://dbpedia.org/resource/Daung_Yin_Pyan_Bon_Nabay_Mhar_Sar_Yay_Loh_Htar_Chin_Dal", "http://dbpedia.org/resource/Davam_Ya_Tamam", "http://dbpedia.org/resource/Dave's_Old_Porn", "http://dbpedia.org/resource/Dave's_One_Night_Stand", "http://dbpedia.org/resource/Dave's_World", "http://dbpedia.org/resource/Dave,_Shelly,_and_Chainsaw", "http://dbpedia.org/resource/Dave_(TV_series)", "http://dbpedia.org/resource/Dave_Brubeck:_In_His_Own_Sweet_Way", "http://dbpedia.org/resource/Dave_Chappelle:_Killin'_Them_Softly", "http://dbpedia.org/resource/Dave_Chappelle:_The_Kennedy_Center_Mark_Twain_Prize_for_American_Humor", "http://dbpedia.org/resource/Dave_Gorman's_Important_Astrology_Experiment", "http://dbpedia.org/resource/Dave_Gorman:_Modern_Life_Is_Goodish", "http://dbpedia.org/resource/Dave_Matthews_Band_Caravan", "http://dbpedia.org/resource/Dave_in_the_Life", "http://dbpedia.org/resource/Dave_the_Barbarian", "http://dbpedia.org/resource/Davey_and_Goliath", "http://dbpedia.org/resource/David's_Mother", "http://dbpedia.org/resource/David_(1988_film)", "http://dbpedia.org/resource/David_(TV_series)", "http://dbpedia.org/resource/David_Attenborough's_Conquest_of_the_Skies_3D", "http://dbpedia.org/resource/David_Attenborough's_Life_Stories", "http://dbpedia.org/resource/David_Attenborough's_Natural_Curiosities", "http://dbpedia.org/resource/David_Attenborough's_Natural_History_Museum_Alive", "http://dbpedia.org/resource/David_Attenborough's_Rise_of_Animals:_Triumph_of_the_Vertebrates", "http://dbpedia.org/resource/David_Attenborough:_A_Life_on_Our_Planet", "http://dbpedia.org/resource/David_Beckham's_Soccer_USA", "http://dbpedia.org/resource/David_Broome", "http://dbpedia.org/resource/David_Cassidy:_Man_Undercover", "http://dbpedia.org/resource/David_Copperfield_(1956_TV_serial)", "http://dbpedia.org/resource/David_Copperfield_(1966_TV_serial)", "http://dbpedia.org/resource/David_Copperfield_(1986_TV_serial)", "http://dbpedia.org/resource/David_Copperfield_(1993_film)", "http://dbpedia.org/resource/David_Copperfield_(1999_film)", "http://dbpedia.org/resource/David_Copperfield_(2000_film)", "http://dbpedia.org/resource/David_Easter", "http://dbpedia.org/resource/David_Makes_Man", "http://dbpedia.org/resource/David_Tench_Tonight", "http://dbpedia.org/resource/David_Tutera's_Celebrations", "http://dbpedia.org/resource/Davina_(talk_show)", "http://dbpedia.org/resource/Davis_Rules", "http://dbpedia.org/resource/Davis_at_Large", "http://dbpedia.org/resource/Davy_Crockett_(miniseries)", "http://dbpedia.org/resource/Dawn:_Portrait_of_a_Teenage_Runaway", "http://dbpedia.org/resource/Dawn_Anna", "http://dbpedia.org/resource/Dawn_of_Humanity", "http://dbpedia.org/resource/Dawn_of_the_Croods", "http://dbpedia.org/resource/Dawson's_Creek", "http://dbpedia.org/resource/Dawson's_Weekly", "http://dbpedia.org/resource/Day-O_(film)", "http://dbpedia.org/resource/Day_&_Date", "http://dbpedia.org/resource/Day_5", "http://dbpedia.org/resource/Day_Break", "http://dbpedia.org/resource/Day_Break_Illusion", "http://dbpedia.org/resource/Day_Day_Up", "http://dbpedia.org/resource/Day_Off_(TV_program)", "http://dbpedia.org/resource/Day_One_(1989_film)", "http://dbpedia.org/resource/Day_One_(TV_series)", "http://dbpedia.org/resource/Day_One_(Torchwood)", "http://dbpedia.org/resource/Day_Planner", "http://dbpedia.org/resource/Day_To_Remember", "http://dbpedia.org/resource/Day_Zero:_The_Series", "http://dbpedia.org/resource/Day_and_Night_(TV_series)", "http://dbpedia.org/resource/Day_and_night_camera", "http://dbpedia.org/resource/Day_by_Day_(American_TV_series)", "http://dbpedia.org/resource/Day_in_Court", "http://dbpedia.org/resource/Day_in_Court_(TV_series)", "http://dbpedia.org/resource/Day_of_Decision", "http://dbpedia.org/resource/Day_of_Reckoning_(2016_film)", "http://dbpedia.org/resource/Day_of_the_Dead_(TV_series)", "http://dbpedia.org/resource/Day_of_the_Moon", "http://dbpedia.org/resource/Daya:_Chentheeyil_Chalicha_Kumkumapottu", "http://dbpedia.org/resource/Daybreak_(1993_film)", "http://dbpedia.org/resource/Daybreak_(2010_TV_programme)", "http://dbpedia.org/resource/Daybreak_(2019_TV_series)", "http://dbpedia.org/resource/Daybreak_(Philippine_TV_program)", "http://dbpedia.org/resource/Daybreak_Northern_Ireland", "http://dbpedia.org/resource/Daybreak_Scotland", "http://dbpedia.org/resource/Daydi_qizning_daftari", "http://dbpedia.org/resource/Daylight_Robbery_(TV_series)", "http://dbpedia.org/resource/Days_Like_These_(TV_series)", "http://dbpedia.org/resource/Days_That_Shook_the_World", "http://dbpedia.org/resource/Days_of_Hope", "http://dbpedia.org/resource/Days_of_Our_Lives", "http://dbpedia.org/resource/Days_of_Our_Lives:_Beyond_Salem", "http://dbpedia.org/resource/Daytime_Divas", "http://dbpedia.org/resource/Daytime_Emmy_Award", "http://dbpedia.org/resource/Daytona_Aircraft_D-200", "http://dbpedia.org/resource/DayxDay", "http://dbpedia.org/resource/Dazu_Rock_Carvings", "http://dbpedia.org/resource/DeMarcus_Family_Rules", "http://dbpedia.org/resource/DeSoto_Caverns", "http://dbpedia.org/resource/DeVanity", "http://dbpedia.org/resource/De_Biker_Boys", "http://dbpedia.org/resource/De_Club_van_Sinterklaas", "http://dbpedia.org/resource/De_Cock_Late_Night", "http://dbpedia.org/resource/De_Collega's", "http://dbpedia.org/resource/De_Corpo_e_Alma_(TV_series)", "http://dbpedia.org/resource/De_F\u00e9rias_com_o_Ex", "http://dbpedia.org/resource/De_F\u00e9rias_com_o_Ex:_Caribe", "http://dbpedia.org/resource/De_Ijazat", "http://dbpedia.org/resource/De_Ijazat_Jo_Tu", "http://dbpedia.org/resource/De_Jongens_tegen_de_Meisjes", "http://dbpedia.org/resource/De_Kist", "http://dbpedia.org/resource/De_Lama's", "http://dbpedia.org/resource/De_Luizenmoeder", "http://dbpedia.org/resource/De_Mol_(TV_series)", "http://dbpedia.org/resource/De_Pfaffs", "http://dbpedia.org/resource/De_Primera_Mano", "http://dbpedia.org/resource/De_Stille_Kracht_(TV_series)", "http://dbpedia.org/resource/De_Stratemakeropzeeshow", "http://dbpedia.org/resource/De_Verraders", "http://dbpedia.org/resource/De_Wereld_Draait_Door", "http://dbpedia.org/resource/De_Wereld_van_K3", "http://dbpedia.org/resource/De_bedenkers", "http://dbpedia.org/resource/De_brutas,_nada", "http://dbpedia.org/resource/De_drabbade", "http://dbpedia.org/resource/De_frente_al_sol", "http://dbpedia.org/resource/De_mujeres", "http://dbpedia.org/resource/De_oro_puro", "http://dbpedia.org/resource/De_pocas,_pocas_pulgas", "http://dbpedia.org/resource/De_pura_sangre", "http://dbpedia.org/resource/De_que_te_quiero,_te_quiero", "http://dbpedia.org/resource/De_todas_maneras_Rosa", "http://dbpedia.org/resource/De_t\u00fa_a_t\u00fa", "http://dbpedia.org/resource/De_viaje_con_los_Derbez", "http://dbpedia.org/resource/De_vuelta_al_barrio", "http://dbpedia.org/resource/Deacons_for_Defense_(film)", "http://dbpedia.org/resource/Dead_7", "http://dbpedia.org/resource/Dead_Ahead:_The_Exxon_Valdez_Disaster", "http://dbpedia.org/resource/Dead_Before_Dawn_(1993_film)", "http://dbpedia.org/resource/Dead_Boss", "http://dbpedia.org/resource/Dead_End:_Paranormal_Park", "http://dbpedia.org/resource/Dead_Famous_(TV_series)", "http://dbpedia.org/resource/Dead_Gorgeous", "http://dbpedia.org/resource/Dead_Grandma", "http://dbpedia.org/resource/Dead_Head_(TV_series)", "http://dbpedia.org/resource/Dead_Husbands", "http://dbpedia.org/resource/Dead_Island_(series)", "http://dbpedia.org/resource/Dead_Kansas", "http://dbpedia.org/resource/Dead_Lake_(TV_series)", "http://dbpedia.org/resource/Dead_Last", "http://dbpedia.org/resource/Dead_Like_Me", "http://dbpedia.org/resource/Dead_Lucky_(TV_series)", "http://dbpedia.org/resource/Dead_Man's_Folly_(film)", "http://dbpedia.org/resource/Dead_Man's_Gun", "http://dbpedia.org/resource/Dead_Man's_Island", "http://dbpedia.org/resource/Dead_Man's_Walk_(miniseries)", "http://dbpedia.org/resource/Dead_Man_Out", "http://dbpedia.org/resource/Dead_Man_Walking_(Torchwood)", "http://dbpedia.org/resource/Dead_Man_Walking_(opera)", "http://dbpedia.org/resource/Dead_Men_Running", "http://dbpedia.org/resource/Dead_Pixels", "http://dbpedia.org/resource/Dead_Reckoning_(1990_film)", "http://dbpedia.org/resource/Dead_Ringers_(series)", "http://dbpedia.org/resource/Dead_Rising", "http://dbpedia.org/resource/Dead_Set", "http://dbpedia.org/resource/Dead_Silence_(1997_film)", "http://dbpedia.org/resource/Dead_Solid_Perfect", "http://dbpedia.org/resource/Dead_Space_(series)", "http://dbpedia.org/resource/Dead_Still", "http://dbpedia.org/resource/Dead_Wrong_(TV_series)", "http://dbpedia.org/resource/Dead_and_Deader", "http://dbpedia.org/resource/Dead_at_21", "http://dbpedia.org/resource/Dead_in_a_Heartbeat", "http://dbpedia.org/resource/Dead_in_the_Water_(1991_film)", "http://dbpedia.org/resource/Dead_of_Night_(1977_film)", "http://dbpedia.org/resource/Dead_of_Night_(TV_series)", "http://dbpedia.org/resource/Dead_of_Night_(Torchwood)", "http://dbpedia.org/resource/Dead_of_Summer_(TV_series)", "http://dbpedia.org/resource/Dead_on_Target_(film)", "http://dbpedia.org/resource/Dead_to_Me_(TV_series)", "http://dbpedia.org/resource/Dead_to_Rights_(series)", "http://dbpedia.org/resource/Deadbeat_(TV_series)", "http://dbpedia.org/resource/Deadbolt_(film)", "http://dbpedia.org/resource/Deadliest_Catch", "http://dbpedia.org/resource/Deadliest_Catch:_Bloodline", "http://dbpedia.org/resource/Deadliest_Warrior", "http://dbpedia.org/resource/Deadline:_White_House", "http://dbpedia.org/resource/Deadline_(1995_TV_series)", "http://dbpedia.org/resource/Deadline_(2000_TV_series)", "http://dbpedia.org/resource/Deadline_(2007_TV_series)", "http://dbpedia.org/resource/Deadline_(2022_TV_series)", "http://dbpedia.org/resource/Deadline_Design_with_Shaynna_Blaze", "http://dbpedia.org/resource/Deadline_Gallipoli", "http://dbpedia.org/resource/Deadline_Midnight_(TV_series)", "http://dbpedia.org/resource/Deadline_to_Disaster", "http://dbpedia.org/resource/Deadly_Affairs", "http://dbpedia.org/resource/Deadly_Care", "http://dbpedia.org/resource/Deadly_Class_(TV_series)", "http://dbpedia.org/resource/Deadly_Desire", "http://dbpedia.org/resource/Deadly_Down_Under", "http://dbpedia.org/resource/Deadly_Force_(TV_series)", "http://dbpedia.org/resource/Deadly_Games_(TV_series)", "http://dbpedia.org/resource/Deadly_Intentions", "http://dbpedia.org/resource/Deadly_Intentions..._Again%3F", "http://dbpedia.org/resource/Deadly_Invasion:_The_Killer_Bee_Nightmare", "http://dbpedia.org/resource/Deadly_Lessons", "http://dbpedia.org/resource/Deadly_Love", "http://dbpedia.org/resource/Deadly_Messages", "http://dbpedia.org/resource/Deadly_Possessions", "http://dbpedia.org/resource/Deadly_Relations", "http://dbpedia.org/resource/Deadly_Secret", "http://dbpedia.org/resource/Deadly_Sins_(TV_series)", "http://dbpedia.org/resource/Deadly_Visions", "http://dbpedia.org/resource/Deadly_Voyage", "http://dbpedia.org/resource/Deadly_Whispers", "http://dbpedia.org/resource/Deadly_Women", "http://dbpedia.org/resource/Deadman's_Curve", "http://dbpedia.org/resource/Deadman_Wonderland", "http://dbpedia.org/resource/Deadpool_(TV_series)", "http://dbpedia.org/resource/Deadtime_Stories_(TV_series)", "http://dbpedia.org/resource/Deadwater_Fell", "http://dbpedia.org/resource/Deadwax", "http://dbpedia.org/resource/Deadwind", "http://dbpedia.org/resource/Deadwood:_The_Movie", "http://dbpedia.org/resource/Deadwood_(TV_series)", "http://dbpedia.org/resource/Deaf_U", "http://dbpedia.org/resource/Deafplanet", "http://dbpedia.org/resource/Deal_(Greek_game_show)", "http://dbpedia.org/resource/Deal_Or_No_Deal_Indonesia", "http://dbpedia.org/resource/Deal_Ya_No_Deal", "http://dbpedia.org/resource/Deal_or_No_Deal_(American_game_show)", "http://dbpedia.org/resource/Deal_or_No_Deal_(Arab_world)", "http://dbpedia.org/resource/Deal_or_No_Deal_(Australian_game_show)", "http://dbpedia.org/resource/Deal_or_No_Deal_(British_game_show)", "http://dbpedia.org/resource/Deal_or_No_Deal_(Iranian_game_show)", "http://dbpedia.org/resource/Deal_or_No_Deal_(Irish_game_show)", "http://dbpedia.org/resource/Deal_or_No_Deal_(Maltese_game_show)", "http://dbpedia.org/resource/Deal_or_No_Deal_(New_Zealand_game_show)", "http://dbpedia.org/resource/Deal_or_No_Deal_(Singaporean_game_show)", "http://dbpedia.org/resource/Deal_or_No_Deal_(Tunisian_game_show)", "http://dbpedia.org/resource/Deal_or_No_Deal_(U.S._game_show)", "http://dbpedia.org/resource/Deal_or_No_Deal_Canada", "http://dbpedia.org/resource/Deal_or_No_Deal_Malaysia_(English-language_game_show)", "http://dbpedia.org/resource/Deal_or_No_Deal_Malaysia_(Mandarin-language_game_show)", "http://dbpedia.org/resource/Deal_or_No_Deal_Nigeria", "http://dbpedia.org/resource/Deal_with_It_(TV_series)", "http://dbpedia.org/resource/Dealer's_Choice_(game_show)", "http://dbpedia.org/resource/Dealer_(TV_series)", "http://dbpedia.org/resource/Dealers_(TV_series)", "http://dbpedia.org/resource/Deals_on_Wheels", "http://dbpedia.org/resource/Dean_Edge", "http://dbpedia.org/resource/Dear,_Dear_Son-In-Law", "http://dbpedia.org/resource/Dear..._(TV_series)", "http://dbpedia.org/resource/Dear._M", "http://dbpedia.org/resource/Dear_Archimedes", "http://dbpedia.org/resource/Dear_Aunt_Agnes", "http://dbpedia.org/resource/Dear_Class_of_2020", "http://dbpedia.org/resource/Dear_Diary_(FM_Static_album)", "http://dbpedia.org/resource/Dear_Dumb_Diary_(film)", "http://dbpedia.org/resource/Dear_Edward_(TV_series)", "http://dbpedia.org/resource/Dear_Friend:_Bakasyonistas", "http://dbpedia.org/resource/Dear_Friend:_Karibal", "http://dbpedia.org/resource/Dear_Friend:_Kay_Tagal_Kitang_Hinintay", "http://dbpedia.org/resource/Dear_Friend:_Madrasta", "http://dbpedia.org/resource/Dear_Friend_(TV_series)", "http://dbpedia.org/resource/Dear_Genevieve", "http://dbpedia.org/resource/Dear_Green_Place", "http://dbpedia.org/resource/Dear_Heaven", "http://dbpedia.org/resource/Dear_John_(American_TV_series)", "http://dbpedia.org/resource/Dear_John_(British_TV_series)", "http://dbpedia.org/resource/Dear_Ladies", "http://dbpedia.org/resource/Dear_Mayang_Street", "http://dbpedia.org/resource/Dear_Mom,_Love_Cher", "http://dbpedia.org/resource/Dear_Mom_(TV_series)", "http://dbpedia.org/resource/Dear_Mother...Love_Albert", "http://dbpedia.org/resource/Dear_Mr._Gacy", "http://dbpedia.org/resource/Dear_My_Friends", "http://dbpedia.org/resource/Dear_My_Friends_(Chinese_TV_series)", "http://dbpedia.org/resource/Dear_My_Sister", "http://dbpedia.org/resource/Dear_Phoebe", "http://dbpedia.org/resource/Dear_Prudence_(2008_film)", "http://dbpedia.org/resource/Dear_Santa_(2011_film)", "http://dbpedia.org/resource/Dear_Sister", "http://dbpedia.org/resource/Dear_Uge", "http://dbpedia.org/resource/Dear_White_People_(TV_series)", "http://dbpedia.org/resource/Dear_X_Who_Doesn't_Love_Me", "http://dbpedia.org/resource/Dearest_Enemy_(TV_series)", "http://dbpedia.org/resource/Death's_Head_(series)", "http://dbpedia.org/resource/Death_By_Gossip_with_Wendy_Williams", "http://dbpedia.org/resource/Death_Car_on_the_Freeway", "http://dbpedia.org/resource/Death_Comes_to_Pemberley_(TV_series)", "http://dbpedia.org/resource/Death_Cruise", "http://dbpedia.org/resource/Death_Game_(1996_film)", "http://dbpedia.org/resource/Death_Has_a_Bad_Reputation", "http://dbpedia.org/resource/Death_Is_the_Only_Answer", "http://dbpedia.org/resource/Death_Note", "http://dbpedia.org/resource/Death_Note:_New_Generation", "http://dbpedia.org/resource/Death_Note_(2015_TV_series)", "http://dbpedia.org/resource/Death_Parade", "http://dbpedia.org/resource/Death_Race_(1973_film)", "http://dbpedia.org/resource/Death_Saved_My_Life", "http://dbpedia.org/resource/Death_Scream", "http://dbpedia.org/resource/Death_Sentence_(1974_film)", "http://dbpedia.org/resource/Death_Takes_a_Holiday_(1971_film)", "http://dbpedia.org/resource/Death_Train", "http://dbpedia.org/resource/Death_Unexplained", "http://dbpedia.org/resource/Death_Valley_(TV_series)", "http://dbpedia.org/resource/Death_Valley_Days", "http://dbpedia.org/resource/Death_Wish_(film_series)", "http://dbpedia.org/resource/Death_and_Nightingales_(TV_series)", "http://dbpedia.org/resource/Death_at_Love_House", "http://dbpedia.org/resource/Death_by_Magic", "http://dbpedia.org/resource/Death_in_Paradise_(TV_series)", "http://dbpedia.org/resource/Death_in_Small_Doses_(1995_film)", "http://dbpedia.org/resource/Death_in_Venice_(opera)", "http://dbpedia.org/resource/Death_of_Apartheid", "http://dbpedia.org/resource/Death_of_a_Centerfold", "http://dbpedia.org/resource/Death_of_a_Princess", "http://dbpedia.org/resource/Death_of_a_Prophet", "http://dbpedia.org/resource/Death_of_a_Salesman_(1966_American_film)", "http://dbpedia.org/resource/Death_of_a_Salesman_(1985_film)", "http://dbpedia.org/resource/Death_of_the_Doctor", "http://dbpedia.org/resource/Death_on_a_Factory_Farm", "http://dbpedia.org/resource/Death_or_Canada", "http://dbpedia.org/resource/Deathlands", "http://dbpedia.org/resource/Deathlands:_Homeward_Bound", "http://dbpedia.org/resource/Deathmoon", "http://dbpedia.org/resource/Deathstroke:_Knights_&_Dragons", "http://dbpedia.org/resource/Debatable_(game_show)", "http://dbpedia.org/resource/Debate_Night", "http://dbpedia.org/resource/Debate_Wars", "http://dbpedia.org/resource/Debate_on_traditional_and_simplified_Chinese_characters", "http://dbpedia.org/resource/Debate_with_Mare_at_Pare", "http://dbpedia.org/resource/Debi_Choudhurani", "http://dbpedia.org/resource/Debiera_haber_obispas", "http://dbpedia.org/resource/Debipaksha_(TV_series)", "http://dbpedia.org/resource/Deborah_(TV_series)", "http://dbpedia.org/resource/Deborah_Polaski", "http://dbpedia.org/resource/Debra!", "http://dbpedia.org/resource/Debris_(TV_series)", "http://dbpedia.org/resource/Debt_(game_show)", "http://dbpedia.org/resource/Decadence_(TV_series)", "http://dbpedia.org/resource/Decad\u00eancia", "http://dbpedia.org/resource/Deceit_(2000_miniseries)", "http://dbpedia.org/resource/Deceit_(2021_miniseries)", "http://dbpedia.org/resource/Deceived_by_Trust", "http://dbpedia.org/resource/December_2009_Lahore_attacks", "http://dbpedia.org/resource/December_Bride", "http://dbpedia.org/resource/December_Flower", "http://dbpedia.org/resource/December_Massacres_of_1950_in_the_Korean_War", "http://dbpedia.org/resource/Deception_(2004_film)", "http://dbpedia.org/resource/Deception_(2013_American_TV_series)", "http://dbpedia.org/resource/Deception_(2018_TV_series)", "http://dbpedia.org/resource/Deception_(Irish_TV_series)", "http://dbpedia.org/resource/Deception_(U.S._TV_series)", "http://dbpedia.org/resource/Deception_(Ugandan_TV_series)", "http://dbpedia.org/resource/Deceptions", "http://dbpedia.org/resource/Dechrau_Canu,_Dechrau_Canmol", "http://dbpedia.org/resource/Decimate_(game_show)", "http://dbpedia.org/resource/Decisiones", "http://dbpedia.org/resource/Decisiones_extremas", "http://dbpedia.org/resource/Decisions!_Decisions!", "http://dbpedia.org/resource/Deck_the_Halls_with_Wacky_Walls", "http://dbpedia.org/resource/Decker_(TV_series)", "http://dbpedia.org/resource/Declassified_(2004_TV_series)", "http://dbpedia.org/resource/Declassified_(2016_TV_series)", "http://dbpedia.org/resource/Decline_and_Fall_(TV_series)", "http://dbpedia.org/resource/Decoded_(Chinese_TV_series)", "http://dbpedia.org/resource/Decoding_COVID-19", "http://dbpedia.org/resource/Decoding_the_Past", "http://dbpedia.org/resource/Decoration_Day_(film)", "http://dbpedia.org/resource/Decoupled", "http://dbpedia.org/resource/Decoy_(TV_series)", "http://dbpedia.org/resource/Decreed_by_Fate", "http://dbpedia.org/resource/Deedan", "http://dbpedia.org/resource/Deemak", "http://dbpedia.org/resource/Deep_Dungeon", "http://dbpedia.org/resource/Deep_Family_Secrets", "http://dbpedia.org/resource/Deep_Garden", "http://dbpedia.org/resource/Deep_Jungle", "http://dbpedia.org/resource/Anupam_(supercomputer)", "http://dbpedia.org/resource/Any_Questions_(Australian_TV_series)", "http://dbpedia.org/resource/Anyone_for_Denis%3F_(video)", "http://dbpedia.org/resource/Anyuta", "http://dbpedia.org/resource/Anza_(missile)", "http://dbpedia.org/resource/Ao_no_F\u016bin", "http://dbpedia.org/resource/Aoi_House", "http://dbpedia.org/resource/Aoki_\u014ckami_to_Shiroki_Mejika", "http://dbpedia.org/resource/Aortic_arches", "http://dbpedia.org/resource/Aphrodite_IX", "http://dbpedia.org/resource/Api_Nodanna_Live", "http://dbpedia.org/resource/Apni_Khushian_Apne_Gham", "http://dbpedia.org/resource/Apno_Nepal_Apno_Gaurab", "http://dbpedia.org/resource/Apocalypse_(D\u00fcrer)", "http://dbpedia.org/resource/Apparel_Lesotho_Alliance_to_fight_AIDS", "http://dbpedia.org/resource/Appeal_for_Courage", "http://dbpedia.org/resource/Appenzell_Wars", "http://dbpedia.org/resource/Appetite_for_Democracy_(Tour)", "http://dbpedia.org/resource/Apple_Music_Festival", "http://dbpedia.org/resource/Apple_OneScanner", "http://dbpedia.org/resource/Appointment_with_Drama", "http://dbpedia.org/resource/Appointment_with_Fear_(radio)", "http://dbpedia.org/resource/Approach_and_Landing_Tests", "http://dbpedia.org/resource/Appusami", "http://dbpedia.org/resource/April_2010_Baghdad_bombings", "http://dbpedia.org/resource/April_Theses", "http://dbpedia.org/resource/Aquamid", "http://dbpedia.org/resource/Aquarius_(British_TV_series)", "http://dbpedia.org/resource/Arabic_Numeral_Series", "http://dbpedia.org/resource/Arag\u00f3n_Sat", "http://dbpedia.org/resource/Arak_gorges", "http://dbpedia.org/resource/Arash_(rocket)", "http://dbpedia.org/resource/Arbeidsvitaminen", "http://dbpedia.org/resource/Arch_Oboler's_Plays", "http://dbpedia.org/resource/Archaic_(comics)", "http://dbpedia.org/resource/Archie_(TV_series)", "http://dbpedia.org/resource/Archie_(comic_book)", "http://dbpedia.org/resource/Archie_Americana_Series", "http://dbpedia.org/resource/Archiv_des_Todes", "http://dbpedia.org/resource/Archos_Generation_4", "http://dbpedia.org/resource/Archos_Generation_5", "http://dbpedia.org/resource/Archos_Gmini_series", "http://dbpedia.org/resource/Archos_Jukebox_series", "http://dbpedia.org/resource/Archpriest_Controversy", "http://dbpedia.org/resource/Arclight_(novel)", "http://dbpedia.org/resource/Arco_Birthday_Party", "http://dbpedia.org/resource/Arctic_Boosh", "http://dbpedia.org/resource/Arctic_Equestrian_Games", "http://dbpedia.org/resource/Arctic_Thunder_Air_Show", "http://dbpedia.org/resource/Ardath_Hit_Parade", "http://dbpedia.org/resource/Arden_Shakespeare", "http://dbpedia.org/resource/Ardjachie_Stone", "http://dbpedia.org/resource/Are_You_My_Brother%3F", "http://dbpedia.org/resource/Area_51_(series)", "http://dbpedia.org/resource/Arenal_Hanging_Bridges", "http://dbpedia.org/resource/Argentina_Bicentennial", "http://dbpedia.org/resource/Argentine_military_trials_of_2009", "http://dbpedia.org/resource/Argument", "http://dbpedia.org/resource/Argumentation_and_Debate", "http://dbpedia.org/resource/Argus_C3", "http://dbpedia.org/resource/Ariane_(Mouret)", "http://dbpedia.org/resource/Ariane_(rocket_family)", "http://dbpedia.org/resource/Arianna_(Marcello)", "http://dbpedia.org/resource/Ariel_Award_for_Best_Actress", "http://dbpedia.org/resource/Arif'in_Hilesi", "http://dbpedia.org/resource/Arion_(Matho)", "http://dbpedia.org/resource/Aristotle_and_the_Gun", "http://dbpedia.org/resource/AM5-M2", "http://dbpedia.org/resource/APF_TV_Fun", "http://dbpedia.org/resource/ARCA_98.9", "http://dbpedia.org/resource/ARCA_Racing_Series", "http://dbpedia.org/resource/ASUS_Transformer", "http://dbpedia.org/resource/ATP_Masters_Series", "http://dbpedia.org/resource/ATP_World_Tour_250_series", "http://dbpedia.org/resource/ATP_World_Tour_Masters_1000", "http://dbpedia.org/resource/A_Casa_das_Sete_Mulheres_(TV_series)", "http://dbpedia.org/resource/A_Christmas_Calendar_(TV_special)", "http://dbpedia.org/resource/A_Coraz\u00f3n_Abierto_(Colombian_telenovela)", "http://dbpedia.org/resource/A_Coraz\u00f3n_Abierto_(Mexican_telenovela)", "http://dbpedia.org/resource/A_Current_Affair", "http://dbpedia.org/resource/A_Current_Affair_(U.S._TV_series)", "http://dbpedia.org/resource/A_Descant_for_Gossips", "http://dbpedia.org/resource/A_Escrava_Isaura_(2004_telenovela)", "http://dbpedia.org/resource/A_Good_Day_for_the_Wind_to_Blow", "http://dbpedia.org/resource/A_History_of_Scotland_(TV_series)", "http://dbpedia.org/resource/A_J_Wentworth,_BA", "http://dbpedia.org/resource/A_League_of_Their_Own_(TV_series)", "http://dbpedia.org/resource/A_League_of_Their_Own_(UK_game_show)", "http://dbpedia.org/resource/A_Muralha_(1968_telenovela)", "http://dbpedia.org/resource/A_New_Life_(1991_TV_series)", "http://dbpedia.org/resource/A_New_Life_(TV_series)", "http://dbpedia.org/resource/A_Place_in_the_Sun_(TV_series)", "http://dbpedia.org/resource/A_Sucessora_(telenovela)", "http://dbpedia.org/resource/A_Way_Out", "http://dbpedia.org/resource/A_calz\u00f3n_quitao", "http://dbpedia.org/resource/A_coraz\u00f3n_abierto_(telenovela)", "http://dbpedia.org/resource/A_flor_de_piel", "http://dbpedia.org/resource/Aadesh_Class_Fast_Patrol_Vessel", "http://dbpedia.org/resource/Boothby_Graffoe_In_No_Particular_Order", "http://dbpedia.org/resource/Border_Rico", "http://dbpedia.org/resource/Bordes_scene", "http://dbpedia.org/resource/Borestone_Mountain_Poetry_Awards", "http://dbpedia.org/resource/Boretronix", "http://dbpedia.org/resource/Born_(comics)", "http://dbpedia.org/resource/Born_Stylish", "http://dbpedia.org/resource/Born_Talking:_A_Personal_Inquiry_into_Language", "http://dbpedia.org/resource/Born_the_Hard_Way", "http://dbpedia.org/resource/Born_to_Spy", "http://dbpedia.org/resource/Bosnia_and_Herzegovina_football_league_system", "http://dbpedia.org/resource/Boss_DR-220", "http://dbpedia.org/resource/Boston_Ideal_Opera_Company", "http://dbpedia.org/resource/Boston_Women's_Heritage_Trail", "http://dbpedia.org/resource/Boswellic_acid", "http://dbpedia.org/resource/Botanica_(series)", "http://dbpedia.org/resource/Bottle_Fairy", "http://dbpedia.org/resource/Bound_for_Glory_(TV_series)", "http://dbpedia.org/resource/Boundless_(Canadian_TV_series)", "http://dbpedia.org/resource/Bouquet_of_Barbed_Wire", "http://dbpedia.org/resource/Bourassa_(automobile)", "http://dbpedia.org/resource/Bourbon_Kid", "http://dbpedia.org/resource/Bourne_(novel_series)", "http://dbpedia.org/resource/Bowl_Challenge_Cup", "http://dbpedia.org/resource/Bowling_Green_Studies_in_Applied_Philosophy", "http://dbpedia.org/resource/Bowling_King", "http://dbpedia.org/resource/Bowraville_murders", "http://dbpedia.org/resource/Boy_Soldier_Series", "http://dbpedia.org/resource/Boy_at_War", "http://dbpedia.org/resource/Boyarina_Morozova_(opera)", "http://dbpedia.org/resource/Boyfriend_(manga)", "http://dbpedia.org/resource/Boys'_Ranch", "http://dbpedia.org/resource/Brace_for_Impact", "http://dbpedia.org/resource/Asgaard_(Mexican_TV_series)", "http://dbpedia.org/resource/Ash,_Kip_and_Luttsy", "http://dbpedia.org/resource/Ashes_to_Ashes_(TV_series)", "http://dbpedia.org/resource/Asian_Australian", "http://dbpedia.org/resource/Asian_Sevens_Series", "http://dbpedia.org/resource/Asmara_(soap_opera)", "http://dbpedia.org/resource/Assault_Suits_series", "http://dbpedia.org/resource/Assyrians_in_the_United_Kingdom", "http://dbpedia.org/resource/Asturian_people", "http://dbpedia.org/resource/Asylum_(BBC_TV_series)", "http://dbpedia.org/resource/Asylum_(Maximum)", "http://dbpedia.org/resource/At_Home_With_Love", "http://dbpedia.org/resource/At_the_Movies_(1982\u201390_TV_series)", "http://dbpedia.org/resource/At_the_Movies_(Australian_TV_series)", "http://dbpedia.org/resource/At_the_Movies_(U.S._TV_series)", "http://dbpedia.org/resource/Atat\u00fcrk's_Reforms", "http://dbpedia.org/resource/Atelier_(series)", "http://dbpedia.org/resource/Carolina_Maneuvers", "http://dbpedia.org/resource/Caroline_Overdrive", "http://dbpedia.org/resource/Carolyn_Gardner", "http://dbpedia.org/resource/Carousel_(comics)", "http://dbpedia.org/resource/Carpinteria_Tar_Pits", "http://dbpedia.org/resource/Carry_On_Christmas_Specials", "http://dbpedia.org/resource/Carryy_on_Shekhar", "http://dbpedia.org/resource/Cars_(painting)", "http://dbpedia.org/resource/Cartas_Chilenas", "http://dbpedia.org/resource/Carter_bonds", "http://dbpedia.org/resource/Cartoon_KAT-TUN", "http://dbpedia.org/resource/Cartoonists_Remember_9/11", "http://dbpedia.org/resource/Carus_Lectures", "http://dbpedia.org/resource/Carus_Mathematical_Monographs", "http://dbpedia.org/resource/Casa_Club_Magazine", "http://dbpedia.org/resource/Casa_de_Vecindad_(TV_series)", "http://dbpedia.org/resource/Casa_de_las_Am\u00e9ricas_Prize", "http://dbpedia.org/resource/Casanova's_Homecoming", "http://dbpedia.org/resource/Casanova_sin_Amor", "http://dbpedia.org/resource/Casca_(series)", "http://dbpedia.org/resource/Cascade_effect_(ecology)", "http://dbpedia.org/resource/Cascina_Vianello", "http://dbpedia.org/resource/Case_Closed_discography", "http://dbpedia.org/resource/Cashcows", "http://dbpedia.org/resource/Casio_9850_series", "http://dbpedia.org/resource/Casio_9860_series", "http://dbpedia.org/resource/Casio_Databank", "http://dbpedia.org/resource/Casio_G'zOne", "http://dbpedia.org/resource/Casos_e_Acasos", "http://dbpedia.org/resource/Casper_and_the_Spectrals", "http://dbpedia.org/resource/Cassandre_(opera)", "http://dbpedia.org/resource/Cassell's_National_Library", "http://dbpedia.org/resource/Caster_Chronicles", "http://dbpedia.org/resource/Castizo", "http://dbpedia.org/resource/Castle_&_Castle", "http://dbpedia.org/resource/Castle_Perilous_(series)", "http://dbpedia.org/resource/Castle_series_stamps", "http://dbpedia.org/resource/Cat's_cradle", "http://dbpedia.org/resource/Cat_Royal", "http://dbpedia.org/resource/Cat_Street_(manga)", "http://dbpedia.org/resource/Cat_the_Cat", "http://dbpedia.org/resource/Catacombs_of_London", "http://dbpedia.org/resource/Catalogues_of_Fundamental_Stars", "http://dbpedia.org/resource/Catalyst_Conference", "http://dbpedia.org/resource/Community_Dateline", "http://dbpedia.org/resource/Community_Development_Council", "http://dbpedia.org/resource/Community_Innovation_Survey", "http://dbpedia.org/resource/Communitybuilders", "http://dbpedia.org/resource/Companions_Quartet", "http://dbpedia.org/resource/Comparison_of_American_and_British_English", "http://dbpedia.org/resource/Compilation_of_Final_Fantasy_VII", "http://dbpedia.org/resource/Complete_Collection_of_Russian_Chronicles", "http://dbpedia.org/resource/Compliance_requirements", "http://dbpedia.org/resource/Composer's_Voice_Concert_Series", "http://dbpedia.org/resource/Compound_refractive_lens", "http://dbpedia.org/resource/Computer-assisted_proof", "http://dbpedia.org/resource/Computer_Stew", "http://dbpedia.org/resource/Computer_Warrior", "http://dbpedia.org/resource/Computer_Warriors", "http://dbpedia.org/resource/Comrades_(TV_series)", "http://dbpedia.org/resource/Con_alma_de_tango", "http://dbpedia.org/resource/Conan_(books)", "http://dbpedia.org/resource/Conan_the_Adventurer_(comics)", "http://dbpedia.org/resource/Conan_the_Barbarian", "http://dbpedia.org/resource/Conceptions_of_Library_and_Information_Science", "http://dbpedia.org/resource/Concert_Spirituel", "http://dbpedia.org/resource/Concerts_of_Antient_Music", "http://dbpedia.org/resource/Concierto_de_almas_(TV_series)", "http://dbpedia.org/resource/Conclave_of_Shadows", "http://dbpedia.org/resource/Concord_School_of_Philosophy", "http://dbpedia.org/resource/Concrete_(comics)", "http://dbpedia.org/resource/Concrete_Series", "http://dbpedia.org/resource/Condesa_por_amor", "http://dbpedia.org/resource/Conditional_proof", "http://dbpedia.org/resource/Condor_Trilogy", "http://dbpedia.org/resource/Conductors_Without_Borders", "http://dbpedia.org/resource/Cones_Series", "http://dbpedia.org/resource/Conexpo-Con/Agg", "http://dbpedia.org/resource/Confederate_Military_History", "http://dbpedia.org/resource/Confederate_States_Army_revival", "http://dbpedia.org/resource/Confessions_of_a_Matchmaker", "http://dbpedia.org/resource/Confessions_of_a_Sociopathic_Social_Climber", "http://dbpedia.org/resource/Conflict_(series)", "http://dbpedia.org/resource/Confluence_Project", "http://dbpedia.org/resource/Conker_(series)", "http://dbpedia.org/resource/Connect_With_English", "http://dbpedia.org/resource/Connection_Machine", "http://dbpedia.org/resource/Connors\u2013McEnroe_rivalry", "http://dbpedia.org/resource/Conqueror_(novel_series)", "http://dbpedia.org/resource/Conquerors'", "http://dbpedia.org/resource/Conquest_of_America_(miniseries)", "http://dbpedia.org/resource/Constantijn_Huygens_Prize", "http://dbpedia.org/resource/Constantinian_bronzes", "http://dbpedia.org/resource/Constellations_(Mir\u00f3)", "http://dbpedia.org/resource/Dell_PERC", "http://dbpedia.org/resource/Delta_Wave", "http://dbpedia.org/resource/Delta_Works", "http://dbpedia.org/resource/Deltec_Cozmo", "http://dbpedia.org/resource/Deltora_Quest_1", "http://dbpedia.org/resource/Deltora_Quest_2", "http://dbpedia.org/resource/Deltora_Quest_3", "http://dbpedia.org/resource/Delusional_Downtown_Divas", "http://dbpedia.org/resource/Demetan_Croaker,_The_Boy_Frog", "http://dbpedia.org/resource/Demetrio_(1773)", "http://dbpedia.org/resource/Demetrio_(1779)", "http://dbpedia.org/resource/Demo_(comics)", "http://dbpedia.org/resource/Democracy_promotion", "http://dbpedia.org/resource/Democratic_National_Convention", "http://dbpedia.org/resource/Demographics_of_Guatemala", "http://dbpedia.org/resource/Demographics_of_Malaysia", "http://dbpedia.org/resource/Demolition_(TV_series)", "http://dbpedia.org/resource/Demon_Princes", "http://dbpedia.org/resource/Den_of_Shadows", "http://dbpedia.org/resource/Den_rette_for_Tor", "http://dbpedia.org/resource/Dene", "http://dbpedia.org/resource/Deng_Xiaoping_Theory", "http://dbpedia.org/resource/Dengeki_Taish\u014d", "http://dbpedia.org/resource/Denney_Kitfox", "http://dbpedia.org/resource/Dennis_Beaches", "http://dbpedia.org/resource/Dentyne", "http://dbpedia.org/resource/Deportations_of_Hungarians_to_the_Czech_lands", "http://dbpedia.org/resource/Deportations_of_the_Ingrian_Finns", "http://dbpedia.org/resource/Dept._Heaven", "http://dbpedia.org/resource/Deputy_Seraph", "http://dbpedia.org/resource/Der_Androj\u00e4ger", "http://dbpedia.org/resource/Der_Bergdoktor_(1992_TV_series)", "http://dbpedia.org/resource/Der_Bulle_von_T\u00f6lz", "http://dbpedia.org/resource/Der_Dativ_ist_dem_Genitiv_sein_Tod", "http://dbpedia.org/resource/Der_Dicke_und_der_Belgier", "http://dbpedia.org/resource/Der_Ermittler", "http://dbpedia.org/resource/Der_Eugen", "http://dbpedia.org/resource/Der_Evangelimann", "http://dbpedia.org/resource/Der_Fall_von_nebenan", "http://dbpedia.org/resource/Der_Fuchs", "http://dbpedia.org/resource/Der_F\u00fcrst_und_das_M\u00e4dchen", "http://dbpedia.org/resource/Der_Goggolori", "http://dbpedia.org/resource/Der_Golem_(opera)", "http://dbpedia.org/resource/Der_Havelkaiser", "http://dbpedia.org/resource/Der_Heiland_auf_dem_Eiland", "http://dbpedia.org/resource/Der_Kapit\u00e4n_(TV_series)", "http://dbpedia.org/resource/Der_Kirschgarten", "http://dbpedia.org/resource/Der_Kommissar_und_das_Meer", "http://dbpedia.org/resource/Der_Kuhreigen", "http://dbpedia.org/resource/Der_K\u00f6nig", "http://dbpedia.org/resource/Der_Mann_ohne_Schatten", "http://dbpedia.org/resource/Der_Millionenerbe", "http://dbpedia.org/resource/Der_Pfundskerl", "http://dbpedia.org/resource/Der_Prins_mu\u00df_her", "http://dbpedia.org/resource/Der_Prinz_von_Pumpelonien", "http://dbpedia.org/resource/Der_Rattenf\u00e4nger_von_Hameln", "http://dbpedia.org/resource/Der_Schatz_im_Niemandsland", "http://dbpedia.org/resource/Der_Schmied_von_Ruhla", "http://dbpedia.org/resource/Der_Schwammerlk\u00f6nig", "http://dbpedia.org/resource/Der_Sonne_entgegen", "http://dbpedia.org/resource/Der_Sturm_(opera)", "http://dbpedia.org/resource/Der_Tod_ist_kein_Beinbruch", "http://dbpedia.org/resource/Der_Vampyr_(Lindpaintner)", "http://dbpedia.org/resource/Der_Widersp\u00e4nstigen_Z\u00e4hmung", "http://dbpedia.org/resource/Der_Winzerk\u00f6nig", "http://dbpedia.org/resource/Der_flie\u00dfende_Fels", "http://dbpedia.org/resource/Der_ganz_normale_Wahnsinn", "http://dbpedia.org/resource/Der_kleine_Doktor", "http://dbpedia.org/resource/Der_kleine_Mann", "http://dbpedia.org/resource/Der_kleine_M\u00f6nch", "http://dbpedia.org/resource/Der_wilde_G\u00e4rtner", "http://dbpedia.org/resource/Derby_Catacombs", "http://dbpedia.org/resource/Derbyshire_Dales_National_Nature_Reserve", "http://dbpedia.org/resource/Deryni_novels", "http://dbpedia.org/resource/Desafio_Internacional_das_Estrelas", "http://dbpedia.org/resource/Descendant_subgroup", "http://dbpedia.org/resource/Descending_tetrachord", "http://dbpedia.org/resource/Description_de_l'\u00c9gypte", "http://dbpedia.org/resource/Desert_War_(miniseries)", "http://dbpedia.org/resource/Desi_DNA", "http://dbpedia.org/resource/Design_Manual_for_Roads_and_Bridges", "http://dbpedia.org/resource/Design_Miami", "http://dbpedia.org/resource/Design_for_logistics", "http://dbpedia.org/resource/Designed_to_Sell", "http://dbpedia.org/resource/Designer_People", "http://dbpedia.org/resource/Designers'_Challenge", "http://dbpedia.org/resource/Designing_for_the_Sexes", "http://dbpedia.org/resource/Designs_of_the_Time", "http://dbpedia.org/resource/Desolation_Jones", "http://dbpedia.org/resource/Desperate_Houses!", "http://dbpedia.org/resource/Desporto_2", "http://dbpedia.org/resource/Destiny's_Children", "http://dbpedia.org/resource/Destiny_by_Love", "http://dbpedia.org/resource/Destroyermen", "http://dbpedia.org/resource/Desus_vs._Mero", "http://dbpedia.org/resource/Det_b\u00e4sta_fr\u00e5n_Idol", "http://dbpedia.org/resource/Det_femte_v\u00e4derstrecket", "http://dbpedia.org/resource/Detective_Erlendur_series", "http://dbpedia.org/resource/Detective_Quiz", "http://dbpedia.org/resource/Detroit_Autorama", "http://dbpedia.org/resource/Detroit_Industry_Murals", "http://dbpedia.org/resource/Deus_(TV_series)", "http://dbpedia.org/resource/Deutsch_Klasse", "http://dbpedia.org/resource/Developing_Unconventional_Gas", "http://dbpedia.org/resource/Deverry_Cycle", "http://dbpedia.org/resource/Devil's_Jumps,_Churt", "http://dbpedia.org/resource/Devon_Horse_Show", "http://dbpedia.org/resource/Dewey\u2013Stassen_debate", "http://dbpedia.org/resource/Dey's_Arena", "http://dbpedia.org/resource/Uruguayan_Civil_War", "http://dbpedia.org/resource/Urusei_Yatsura", "http://dbpedia.org/resource/Us,_ours_and_yours_(TV_series)", "http://dbpedia.org/resource/Us_&_Them", "http://dbpedia.org/resource/Us_(1991_film)", "http://dbpedia.org/resource/Us_(British_TV_series)", "http://dbpedia.org/resource/Us_Girls", "http://dbpedia.org/resource/Us_Girls_(TV_program)", "http://dbpedia.org/resource/Us_and_Them_(Australian_TV_series)", "http://dbpedia.org/resource/Usapang_Business", "http://dbpedia.org/resource/Usapang_Real_Life", "http://dbpedia.org/resource/Usapang_Real_Love", "http://dbpedia.org/resource/Usavich", "http://dbpedia.org/resource/Ushijima_the_Loan_Shark", "http://dbpedia.org/resource/Ushnas_Prize", "http://dbpedia.org/resource/Usogui", "http://dbpedia.org/resource/Usop_Sontorian", "http://dbpedia.org/resource/Usotsuki_Paradox", "http://dbpedia.org/resource/Usta_usta", "http://dbpedia.org/resource/Ustani_Jee", "http://dbpedia.org/resource/Utacon", "http://dbpedia.org/resource/Ute_Wars", "http://dbpedia.org/resource/Uth_Records", "http://dbpedia.org/resource/Uthiripookkal_(TV_series)", "http://dbpedia.org/resource/Uti_v\u00e5r_hage_(TV_series)", "http://dbpedia.org/resource/Utilizator", "http://dbpedia.org/resource/Utisak_nedelje", "http://dbpedia.org/resource/Utopia_(2013_film)", "http://dbpedia.org/resource/Utopia_(2014_American_TV_series)", "http://dbpedia.org/resource/Utopia_(2020_TV_series)", "http://dbpedia.org/resource/Utopia_(Australian_TV_series)", "http://dbpedia.org/resource/Utopia_(British_TV_series)", "http://dbpedia.org/resource/Utopia_(Doctor_Who)", "http://dbpedia.org/resource/Utopia_Falls", "http://dbpedia.org/resource/Uttai_Tawee", "http://dbpedia.org/resource/Uttaran", "http://dbpedia.org/resource/Uttarayana_(TV_series)", "http://dbpedia.org/resource/Uuden_Musiikin_Kilpailu", "http://dbpedia.org/resource/Uutisvuoto", "http://dbpedia.org/resource/Uwe_Schulten-Baumer", "http://dbpedia.org/resource/Uyajola_9/9", "http://dbpedia.org/resource/Uyan\u0131\u015f:_B\u00fcy\u00fck_Sel\u00e7uklu", "http://dbpedia.org/resource/Uyire_(TV_series)", "http://dbpedia.org/resource/Uyirmei", "http://dbpedia.org/resource/Uzalo", "http://dbpedia.org/resource/Uzumaki", "http://dbpedia.org/resource/V-1_(TV_series)", "http://dbpedia.org/resource/V-Focus", "http://dbpedia.org/resource/V.I.P._(American_TV_series)", "http://dbpedia.org/resource/V.I.P._(talk_show)", "http://dbpedia.org/resource/V8Star_Series", "http://dbpedia.org/resource/V8Xtra", "http://dbpedia.org/resource/VAX_7000/10000", "http://dbpedia.org/resource/VCal", "http://dbpedia.org/resource/VDNKh_(Russia)", "http://dbpedia.org/resource/VD_Blues", "http://dbpedia.org/resource/VH1's_Legends", "http://dbpedia.org/resource/VH1:_I_Love_series", "http://dbpedia.org/resource/VH1_Family_Reunion:_Love_&_Hip_Hop_Edition", "http://dbpedia.org/resource/VH1_ILL-ustrated", "http://dbpedia.org/resource/VH1_Live!", "http://dbpedia.org/resource/VH1_Storytellers", "http://dbpedia.org/resource/VH1_Top_20_Video_Countdown", "http://dbpedia.org/resource/VIC_(TV_series)", "http://dbpedia.org/resource/VIP_(South_Korean_TV_series)", "http://dbpedia.org/resource/VIP_Brother", "http://dbpedia.org/resource/VIP_Dance", "http://dbpedia.org/resource/VIP_Television", "http://dbpedia.org/resource/VMV-class_patrol_boat", "http://dbpedia.org/resource/VOMO:_Vote_or_Miss_Out", "http://dbpedia.org/resource/VR.5", "http://dbpedia.org/resource/VRT_NWS_Journaal", "http://dbpedia.org/resource/VR_Class_Sk1", "http://dbpedia.org/resource/VR_Troopers", "http://dbpedia.org/resource/VTM_Nieuws", "http://dbpedia.org/resource/V_(1983_miniseries)", "http://dbpedia.org/resource/V_(1984_TV_series)", "http://dbpedia.org/resource/V_(2009_TV_series)", "http://dbpedia.org/resource/V_Day_(film)", "http://dbpedia.org/resource/V_Entertainment", "http://dbpedia.org/resource/V_Graham_Norton", "http://dbpedia.org/resource/V_Love", "http://dbpedia.org/resource/V_The_Final_Battle", "http://dbpedia.org/resource/V_The_Serial", "http://dbpedia.org/resource/V_Wars", "http://dbpedia.org/resource/Va-Bank", "http://dbpedia.org/resource/Vacancy_in_Vaughan_Street", "http://dbpedia.org/resource/Vacation_Playhouse", "http://dbpedia.org/resource/Vacationland_(comedy_show)", "http://dbpedia.org/resource/Vaccination_Act", "http://dbpedia.org/resource/Vaccination_schedule", "http://dbpedia.org/resource/Vacuuming_Completely_Nude_in_Paradise", "http://dbpedia.org/resource/Vade_Retro", "http://dbpedia.org/resource/Vadham", "http://dbpedia.org/resource/Vadinamma", "http://dbpedia.org/resource/Vagabond_(TV_series)", "http://dbpedia.org/resource/Vagabond_(manga)", "http://dbpedia.org/resource/Vagrant_Queen", "http://dbpedia.org/resource/Vaguthu_Faaithu_Nuvanees", "http://dbpedia.org/resource/Vahum", "http://dbpedia.org/resource/Vai_Anitta", "http://dbpedia.org/resource/Vaidehi_(2006_TV_series)", "http://dbpedia.org/resource/Vaidehi_(2013_TV_series)", "http://dbpedia.org/resource/Vaidhegi_Kaathirundhaal", "http://dbpedia.org/resource/Vain_el\u00e4m\u00e4\u00e4", "http://dbpedia.org/resource/Vairoalhi_Ahves_Sirrun", "http://dbpedia.org/resource/Vaisoori", "http://dbpedia.org/resource/Vakinuvaan_Bunefaa_Vaudheh_Nuvanhey%3F", "http://dbpedia.org/resource/Vakivumuge_Kurin", "http://dbpedia.org/resource/Val_De_La_O_Show", "http://dbpedia.org/resource/Val_Falvey,_TD", "http://dbpedia.org/resource/Val_Lewton:_The_Man_in_the_Shadows", "http://dbpedia.org/resource/Val_Meets_The_VIPs", "http://dbpedia.org/resource/Valdemar_Poulsen_Gold_Medal", "http://dbpedia.org/resource/Vale_Tudo_(TV_series)", "http://dbpedia.org/resource/Vale_todo", "http://dbpedia.org/resource/Valemont", "http://dbpedia.org/resource/Valentina_(1989_TV_series)", "http://dbpedia.org/resource/Valentina_(1993_TV_series)", "http://dbpedia.org/resource/Valentine's_Day_(TV_series)", "http://dbpedia.org/resource/Valentine_(TV_series)", "http://dbpedia.org/resource/Valentino_el_argentino", "http://dbpedia.org/resource/Valeria_(1966_TV_series)", "http://dbpedia.org/resource/Valeria_(2009_TV_series)", "http://dbpedia.org/resource/Valeria_(2020_TV_series)", "http://dbpedia.org/resource/Valeria_medico_legale", "http://dbpedia.org/resource/Valeria_y_Maximiliano", "http://dbpedia.org/resource/Valerie's_Home_Cooking", "http://dbpedia.org/resource/Valiant_Lady", "http://dbpedia.org/resource/Valiente_(1992_TV_series)", "http://dbpedia.org/resource/Valiente_(2012_TV_series)", "http://dbpedia.org/resource/Valientes", "http://dbpedia.org/resource/Valisar_Trilogy", "http://dbpedia.org/resource/Vali\u00f3_la_pena_(TV_series)", "http://dbpedia.org/resource/Valkyrie_Profile_(series)", "http://dbpedia.org/resource/Valkyrien", "http://dbpedia.org/resource/Vallamai_Tharayo_(TV_series)", "http://dbpedia.org/resource/Valle_de_los_Ingenios", "http://dbpedia.org/resource/Valley_Forge_(film)", "http://dbpedia.org/resource/Valley_of_Tears_(TV_series)", "http://dbpedia.org/resource/Valley_of_the_Boom", "http://dbpedia.org/resource/Valley_of_the_Dinosaurs", "http://dbpedia.org/resource/Valley_of_the_Dolls_(TV_series)", "http://dbpedia.org/resource/Valley_of_the_T._rex", "http://dbpedia.org/resource/Valley_of_the_Wolves:_Homeland", "http://dbpedia.org/resource/Valley_of_the_Wolves_(TV_series)", "http://dbpedia.org/resource/Valli_(TV_series)", "http://dbpedia.org/resource/Valli_Thirumanam_(TV_series)", "http://dbpedia.org/resource/Valli_di_Comacchio", "http://dbpedia.org/resource/Valois_Tapestries", "http://dbpedia.org/resource/Valor_(TV_series)", "http://dbpedia.org/resource/Valor_da_Vida", "http://dbpedia.org/resource/Valores_(TV_program)", "http://dbpedia.org/resource/Valt_the_Wonder_Deer", "http://dbpedia.org/resource/Valvrave_the_Liberator", "http://dbpedia.org/resource/Val\u00f3_Vil\u00e1g", "http://dbpedia.org/resource/Vamo_Arriba", "http://dbpedia.org/resource/Vamos_Juan", "http://dbpedia.org/resource/Vamos_juntos", "http://dbpedia.org/resource/Vamp_(TV_series)", "http://dbpedia.org/resource/Vampire_(1979_film)", "http://dbpedia.org/resource/Vampire_Academy_(TV_series)", "http://dbpedia.org/resource/Vampire_Bats_(film)", "http://dbpedia.org/resource/Vampire_Beach", "http://dbpedia.org/resource/Vampire_Cheerleaders", "http://dbpedia.org/resource/Vampire_Earth", "http://dbpedia.org/resource/Vampire_Expert", "http://dbpedia.org/resource/Vampire_Heaven", "http://dbpedia.org/resource/Vampire_High", "http://dbpedia.org/resource/Vampire_Hunter_D", "http://dbpedia.org/resource/Vampire_Idol", "http://dbpedia.org/resource/Vampire_Knight", "http://dbpedia.org/resource/Vampire_Plagues_series", "http://dbpedia.org/resource/Vampire_Princess_Miyu", "http://dbpedia.org/resource/Vampire_Prosecutor", "http://dbpedia.org/resource/Vampire_ang_Daddy_Ko", "http://dbpedia.org/resource/Vampires_(TV_series)", "http://dbpedia.org/resource/Vampires_Rock", "http://dbpedia.org/resource/Vampirina", "http://dbpedia.org/resource/Vamsam_(TV_series)", "http://dbpedia.org/resource/Van-Pires", "http://dbpedia.org/resource/Van_Dyke_and_Company", "http://dbpedia.org/resource/Van_Gogh_(Kodall\u0131_opera)", "http://dbpedia.org/resource/Van_Helsing_(TV_series)", "http://dbpedia.org/resource/Van_der_Valk", "http://dbpedia.org/resource/Vanakkam_Tamizha", "http://dbpedia.org/resource/Vanambadi_(TV_series)", "http://dbpedia.org/resource/Vanathai_Pola_(TV_series)", "http://dbpedia.org/resource/Vanderpump_Dogs", "http://dbpedia.org/resource/Vanderpump_Rules", "http://dbpedia.org/resource/Vanderpump_Rules:_Jax_And_Brittany_Take_Kentucky", "http://dbpedia.org/resource/Vanderpump_Rules_After_Show", "http://dbpedia.org/resource/Vandhal_Sridevi", "http://dbpedia.org/resource/Vandread", "http://dbpedia.org/resource/Vanessa_(British_TV_series)", "http://dbpedia.org/resource/Vanessa_(Mexican_TV_series)", "http://dbpedia.org/resource/Vanessa_(opera)", "http://dbpedia.org/resource/Vanguard_(TV_series)", "http://dbpedia.org/resource/Vanhojen_tanssit", "http://dbpedia.org/resource/Vani_Rani_(TV_series)", "http://dbpedia.org/resource/Vanished_(1995_film)", "http://dbpedia.org/resource/Vanished_(TV_series)", "http://dbpedia.org/resource/Vanishing_Son", "http://dbpedia.org/resource/Vanities_(TV_program)", "http://dbpedia.org/resource/Vanity_Fair_(1956_TV_series)", "http://dbpedia.org/resource/Vanity_Fair_(1967_TV_serial)", "http://dbpedia.org/resource/Vanity_Fair_(1978_TV_series)", "http://dbpedia.org/resource/Vanity_Fair_(1987_TV_serial)", "http://dbpedia.org/resource/Vanity_Fair_(1998_TV_serial)", "http://dbpedia.org/resource/Vanity_Fair_(2018_TV_series)", "http://dbpedia.org/resource/Vanity_Lair", "http://dbpedia.org/resource/Var_m\u0131s\u0131n%3F_Yok_musun%3F", "http://dbpedia.org/resource/Variable_Geo_(anime)", "http://dbpedia.org/resource/Variety_Bandbox", "http://dbpedia.org/resource/Variety_Big_Brother", "http://dbpedia.org/resource/Variety_Studio:_Actors_on_Actors", "http://dbpedia.org/resource/Variety_in_Sepia", "http://dbpedia.org/resource/Varnappakittu_(TV_series)", "http://dbpedia.org/resource/Varney_&_Co.", "http://dbpedia.org/resource/Vartmaan", "http://dbpedia.org/resource/Varuhuset", "http://dbpedia.org/resource/Vary_Peri", "http://dbpedia.org/resource/Vas_o_No_Vas_(American_game_show)", "http://dbpedia.org/resource/Vasili's_Garden", "http://dbpedia.org/resource/Vasl_(TV_series)", "http://dbpedia.org/resource/Vassalord", "http://dbpedia.org/resource/Vatan\u0131m_Sensin", "http://dbpedia.org/resource/Vater_Seidl_und_sein_Sohn", "http://dbpedia.org/resource/Vatre_ivanjske", "http://dbpedia.org/resource/Vatta's_War", "http://dbpedia.org/resource/Vaudhey_Mee", "http://dbpedia.org/resource/Vaya_semanita", "http://dbpedia.org/resource/Vecinos", "http://dbpedia.org/resource/Vecinos_(Colombian_TV_series)", "http://dbpedia.org/resource/Vectorman", "http://dbpedia.org/resource/Ved_du_hvem_du_er%3F", "http://dbpedia.org/resource/Veep", "http://dbpedia.org/resource/Veer_Shivaji", "http://dbpedia.org/resource/Vega_4_(TV_series)", "http://dbpedia.org/resource/Vegas_(1978_TV_series)", "http://dbpedia.org/resource/Vegas_(2012_TV_series)", "http://dbpedia.org/resource/Vegas_Rat_Rods", "http://dbpedia.org/resource/Vegas_Revolution", "http://dbpedia.org/resource/Vegetable_Soup_(TV_series)", "http://dbpedia.org/resource/Vegfer\u00f0", "http://dbpedia.org/resource/VeggieTales", "http://dbpedia.org/resource/VeggieTales_in_the_City", "http://dbpedia.org/resource/VeggieTales_in_the_House", "http://dbpedia.org/resource/Veiled_Ambition", "http://dbpedia.org/resource/Veintea\u00f1ero_a_los_40", "http://dbpedia.org/resource/Velasco-class_cruiser", "http://dbpedia.org/resource/Velho_Chico", "http://dbpedia.org/resource/Vella_Raja", "http://dbpedia.org/resource/Vellai_Thamarai", "http://dbpedia.org/resource/Vellai_Yaanai", "http://dbpedia.org/resource/Velo_Sound_Station", "http://dbpedia.org/resource/Velo_de_novia", "http://dbpedia.org/resource/Velo_de_novia_(1971_TV_series)", "http://dbpedia.org/resource/Velorama_(film)", "http://dbpedia.org/resource/Velshi_(TV_program)", "http://dbpedia.org/resource/Velunachi", "http://dbpedia.org/resource/Velvet_(TV_series)", "http://dbpedia.org/resource/Velvet_(film)", "http://dbpedia.org/resource/Velvet_Colecci\u00f3n", "http://dbpedia.org/resource/Velvet_Soup", "http://dbpedia.org/resource/Velveteen_&_Mandala", "http://dbpedia.org/resource/Vem_tror_du_att_du_\u00e4r%3F", "http://dbpedia.org/resource/Vem_vet_mest%3F", "http://dbpedia.org/resource/Vem_vill_bli_miljon\u00e4r%3F", "http://dbpedia.org/resource/Ven_conmigo_(TV_series)", "http://dbpedia.org/resource/Vencer_el_desamor", "http://dbpedia.org/resource/Vencer_el_miedo", "http://dbpedia.org/resource/Vencer_el_pasado", "http://dbpedia.org/resource/Vencer_la_ausencia", "http://dbpedia.org/resource/Vendetta:_Secrets_of_a_Mafia_Bride", "http://dbpedia.org/resource/Vendetta:_Truth,_Lies_and_The_Mafia", "http://dbpedia.org/resource/Vendetta_(1999_film)", "http://dbpedia.org/resource/Vendetta_(Armenian_TV_series)", "http://dbpedia.org/resource/Veneno_(TV_series)", "http://dbpedia.org/resource/Venga_Juan", "http://dbpedia.org/resource/Venga_la_alegr\u00eda", "http://dbpedia.org/resource/Venganza_(TV_series)", "http://dbpedia.org/resource/Vengeance_Unlimited", "http://dbpedia.org/resource/Venice:_The_Series", "http://dbpedia.org/resource/Venice_24/7", "http://dbpedia.org/resource/Venice_Medical", "http://dbpedia.org/resource/Venom_(comic_book)", "http://dbpedia.org/resource/Vent_(radio_series)", "http://dbpedia.org/resource/Ventdelpl\u00e0", "http://dbpedia.org/resource/Vento_di_ponente_(TV_series)", "http://dbpedia.org/resource/Venus_5", "http://dbpedia.org/resource/Venus_Capriccio", "http://dbpedia.org/resource/Venus_Observed", "http://dbpedia.org/resource/Venus_Versus_Virus", "http://dbpedia.org/resource/Venus_Wars", "http://dbpedia.org/resource/Venus_und_Adonis", "http://dbpedia.org/resource/Veo_c\u00f3mo_cantas", "http://dbpedia.org/resource/Vera_(TV_series)", "http://dbpedia.org/resource/Vera_of_Las_Vegas", "http://dbpedia.org/resource/Vera_sto_Dexi", "http://dbpedia.org/resource/Verano_azul", "http://dbpedia.org/resource/Verano_de_amor", "http://dbpedia.org/resource/Verano_del_'98", "http://dbpedia.org/resource/Verbotene_Liebe", "http://dbpedia.org/resource/Verbum_nobile", "http://dbpedia.org/resource/Verdad_oculta", "http://dbpedia.org/resource/Verdades_Secretas", "http://dbpedia.org/resource/Verdades_Secretas_(telenovela)", "http://dbpedia.org/resource/Verdades_ocultas", "http://dbpedia.org/resource/Verdeja", "http://dbpedia.org/resource/Verdict_(TV_series)", "http://dbpedia.org/resource/Vereda_Tropical", "http://dbpedia.org/resource/Verg\u00fcenza_(TV_series)", "http://dbpedia.org/resource/Verg\u00fcenza_Ajena:_Made_in_Spain", "http://dbpedia.org/resource/Verissimo_(TV_series)", "http://dbpedia.org/resource/Veritas:_The_Quest", "http://dbpedia.org/resource/Verliebt_in_Berlin", "http://dbpedia.org/resource/Vermilion_Lakes", "http://dbpedia.org/resource/Vermilion_Pleasure_Night", "http://dbpedia.org/resource/Verminators", "http://dbpedia.org/resource/Vermont_Mozart_Festival", "http://dbpedia.org/resource/Verna:_USO_Girl", "http://dbpedia.org/resource/Veronica's_Closet", "http://dbpedia.org/resource/Veronica_Clare", "http://dbpedia.org/resource/Veronica_Mars", "http://dbpedia.org/resource/Verr\u00fcckt_nach_Clara", "http://dbpedia.org/resource/Versailles_(TV_series)", "http://dbpedia.org/resource/Versatile_Varieties", "http://dbpedia.org/resource/Verschollen", "http://dbpedia.org/resource/Versus_Debates", "http://dbpedia.org/resource/Vertige_(TV_series)", "http://dbpedia.org/resource/Very_Big_Very_Soon", "http://dbpedia.org/resource/Very_British_Problems", "http://dbpedia.org/resource/Very_Cavallari", "http://dbpedia.org/resource/Very_Important_People", "http://dbpedia.org/resource/Very_Mary-Kate", "http://dbpedia.org/resource/Very_Small_Business_(TV_series)", "http://dbpedia.org/resource/Ver\u00e3o_90", "http://dbpedia.org/resource/Ver\u00f3nica_(TV_series)", "http://dbpedia.org/resource/Vespertinas", "http://dbpedia.org/resource/Vesti_(VGTRK)", "http://dbpedia.org/resource/Vetri_(season_2)", "http://dbpedia.org/resource/Vetri_(season_3)", "http://dbpedia.org/resource/Vets_in_Practice", "http://dbpedia.org/resource/Vettai:_Pledged_to_Hunt", "http://dbpedia.org/resource/Vettai:_The_Force", "http://dbpedia.org/resource/Vettai_(TV_series)", "http://dbpedia.org/resource/Vetterli_rifle", "http://dbpedia.org/resource/Vexed", "http://dbpedia.org/resource/Ve\u010de_sa_Ivanom_Ivanovi\u0107em", "http://dbpedia.org/resource/Vi_hade_i_alla_fall_tur_med_v\u00e4dret", "http://dbpedia.org/resource/Vi_p\u00e5_Saltkr\u00e5kan", "http://dbpedia.org/resource/Via_Zanardi_33", "http://dbpedia.org/resource/Vibe_(talk_show)", "http://dbpedia.org/resource/Vic_Reeves'_House_Arrest", "http://dbpedia.org/resource/Vic_Reeves_Big_Night_Out", "http://dbpedia.org/resource/Vic_the_Viking", "http://dbpedia.org/resource/Vice_(TV_series)", "http://dbpedia.org/resource/Vice_News_Tonight", "http://dbpedia.org/resource/Vice_Principals", "http://dbpedia.org/resource/Vicini_di_casa", "http://dbpedia.org/resource/Vicious_(American_TV_series)", "http://dbpedia.org/resource/Vicious_(TV_series)", "http://dbpedia.org/resource/Vicious_Circle_(1999_film)", "http://dbpedia.org/resource/Vickers-Carden-Loyd_Light_Amphibious_Tank", "http://dbpedia.org/resource/Vickers_MBT", "http://dbpedia.org/resource/Vicki!", "http://dbpedia.org/resource/Vicky_&_Vetaal", "http://dbpedia.org/resource/Vicky_Ki_Taxi", "http://dbpedia.org/resource/Vicky_the_Viking", "http://dbpedia.org/resource/Victim_(web_series)", "http://dbpedia.org/resource/Victim_Number_8", "http://dbpedia.org/resource/Victim_of_Love_(1991_film)", "http://dbpedia.org/resource/Victims_(film)", "http://dbpedia.org/resource/Victims_for_Victims:_The_Theresa_Saldana_Story", "http://dbpedia.org/resource/Victor/Victoria_(1995_film)", "http://dbpedia.org/resource/Victor_&_Hugo:_Bunglers_in_Crime", "http://dbpedia.org/resource/Victor_&_Maria", "http://dbpedia.org/resource/Victor_(2008_film)", "http://dbpedia.org/resource/Victor_Magtanggol", "http://dbpedia.org/resource/Victor_and_Valentino", "http://dbpedia.org/resource/Victoria's_Secret_Fashion_Show", "http://dbpedia.org/resource/Victoria's_Secret_Fashion_Show_2002", "http://dbpedia.org/resource/Victoria's_Secret_Fashion_Show_2003", "http://dbpedia.org/resource/Victoria's_Secret_Fashion_Show_2005", "http://dbpedia.org/resource/Victoria's_Secret_Fashion_Show_2006", "http://dbpedia.org/resource/Victoria's_Secret_Fashion_Show_2010", "http://dbpedia.org/resource/Victoria's_Secret_Fashion_Show_2013", "http://dbpedia.org/resource/Victoria's_Secret_Fashion_Show_2014", "http://dbpedia.org/resource/Victoria's_Secret_Fashion_Show_2015", "http://dbpedia.org/resource/Victoria's_Secret_Swim_Special", "http://dbpedia.org/resource/Victoria_&_Albert_(TV_serial)", "http://dbpedia.org/resource/Victoria_(2007_TV_series)", "http://dbpedia.org/resource/Victoria_(British_TV_series)", "http://dbpedia.org/resource/Victoria_(Mexican_TV_series)", "http://dbpedia.org/resource/Victoria_(miniseries)", "http://dbpedia.org/resource/Victoria_Arches", "http://dbpedia.org/resource/Victoria_Beckham:_Coming_to_America", "http://dbpedia.org/resource/Victoria_Cross_Heroes", "http://dbpedia.org/resource/Victoria_Derbyshire_(TV_programme)", "http://dbpedia.org/resource/Victoria_International_College", "http://dbpedia.org/resource/Victoria_Regina_(film)", "http://dbpedia.org/resource/Victoria_Wood's_All_Day_Breakfast", "http://dbpedia.org/resource/Victoria_Wood's_Mid_Life_Christmas", "http://dbpedia.org/resource/Victoria_Wood:_As_Seen_on_TV", "http://dbpedia.org/resource/Victoria_Wood_(1989_TV_series)", "http://dbpedia.org/resource/Victoria_Wood_As_Seen_On_TV", "http://dbpedia.org/resource/Victoria_Wood_with_All_the_Trimmings", "http://dbpedia.org/resource/Victorian_Farm", "http://dbpedia.org/resource/Victorian_Pharmacy", "http://dbpedia.org/resource/Victorinos", "http://dbpedia.org/resource/Victorious", "http://dbpedia.org/resource/Victory_Tests", "http://dbpedia.org/resource/Victory_at_Entebbe", "http://dbpedia.org/resource/Victory_at_Sea", "http://dbpedia.org/resource/Victory_of_the_Daleks", "http://dbpedia.org/resource/Vida_(TV_series)", "http://dbpedia.org/resource/Vida_por_vida", "http://dbpedia.org/resource/Vida_robada_(1961_TV_series)", "http://dbpedia.org/resource/Vida_robada_(1991_TV_series)", "http://dbpedia.org/resource/Vidago_Palace_(TV_series)", "http://dbpedia.org/resource/Vidas_Cruzadas_(web_series)", "http://dbpedia.org/resource/Vidas_Cruzadas_(webnovela)", "http://dbpedia.org/resource/Vidas_Opostas", "http://dbpedia.org/resource/Vidas_Opostas_(TV_series)", "http://dbpedia.org/resource/Vidas_cruzadas_(1963_TV_series)", "http://dbpedia.org/resource/Vidas_em_Jogo", "http://dbpedia.org/resource/Vidas_robadas", "http://dbpedia.org/resource/Vidas_robadas_(Mexican_TV_series)", "http://dbpedia.org/resource/Vidathu_Sirippu", "http://dbpedia.org/resource/Vidbir", "http://dbpedia.org/resource/VideoGaiden", "http://dbpedia.org/resource/Video_&_Arcade_Top_10", "http://dbpedia.org/resource/Video_Game_High_School", "http://dbpedia.org/resource/Video_Games_Live", "http://dbpedia.org/resource/Video_Girl_Ai", "http://dbpedia.org/resource/Video_Gospel", "http://dbpedia.org/resource/Video_Hits_(Australian_TV_series)", "http://dbpedia.org/resource/Video_Hits_(Canadian_TV_series)", "http://dbpedia.org/resource/Video_Jukebox_(TV_series)", "http://dbpedia.org/resource/Video_Justice", "http://dbpedia.org/resource/Video_Mods", "http://dbpedia.org/resource/Video_Music_Box", "http://dbpedia.org/resource/Video_Power", "http://dbpedia.org/resource/Video_Soul", "http://dbpedia.org/resource/Video_Star", "http://dbpedia.org/resource/Video_Village", "http://dbpedia.org/resource/Video_Voyeur", "http://dbpedia.org/resource/Video_Warrior_Laserion", "http://dbpedia.org/resource/Video_loco_(Chilean_TV_program)", "http://dbpedia.org/resource/Video_on_Trial", "http://dbpedia.org/resource/Videocheck", "http://dbpedia.org/resource/Videogame_Nation_(TV_programme)", "http://dbpedia.org/resource/Videomatch", "http://dbpedia.org/resource/Videopolis_(TV_series)", "http://dbpedia.org/resource/Videos_After_Dark", "http://dbpedia.org/resource/Vidhi_(TV_series)", "http://dbpedia.org/resource/Vidhya_No.1", "http://dbpedia.org/resource/Vidiot", "http://dbpedia.org/resource/Vidrohi_(TV_series)", "http://dbpedia.org/resource/Vidya_(TV_series)", "http://dbpedia.org/resource/Vieni_via_con_me", "http://dbpedia.org/resource/Vienna_Blood_(TV_series)", "http://dbpedia.org/resource/Vier_Frauen_und_ein_Todesfall", "http://dbpedia.org/resource/Vier_gegen_Z", "http://dbpedia.org/resource/Vier_gegen_die_Bank_(1976_film)", "http://dbpedia.org/resource/Viernes_de_F\u00fatbol", "http://dbpedia.org/resource/Viestur_Kairish", "http://dbpedia.org/resource/Vietnam's_Got_Talent", "http://dbpedia.org/resource/Vietnam's_Next_Top_Model", "http://dbpedia.org/resource/Vietnam:_A_Television_History", "http://dbpedia.org/resource/Vietnam:_The_Ten_Thousand_Day_War", "http://dbpedia.org/resource/Vietnam_(miniseries)", "http://dbpedia.org/resource/Vietnam_Idol", "http://dbpedia.org/resource/Vietnam_Rose", "http://dbpedia.org/resource/Vietnam_in_HD", "http://dbpedia.org/resource/Viewpoint_(Australian_TV_program)", "http://dbpedia.org/resource/Viewpoint_(British_TV_series)", "http://dbpedia.org/resource/Viewpoint_(Canadian_TV_program)", "http://dbpedia.org/resource/Viewpoint_(Philippine_TV_program)", "http://dbpedia.org/resource/Viewpoint_(talk_show)", "http://dbpedia.org/resource/Vighnaharta_Ganesh", "http://dbpedia.org/resource/Vigil_(TV_series)", "http://dbpedia.org/resource/Vigilante_Force_(TV_series)", "http://dbpedia.org/resource/Vijay_(TV_series)", "http://dbpedia.org/resource/Vijay_Chithiram", "http://dbpedia.org/resource/Vijay_Kaaviya_Neram", "http://dbpedia.org/resource/Vijay_Stars_Kondattam", "http://dbpedia.org/resource/Vijf_tegen_Vijf", "http://dbpedia.org/resource/Viking:_The_Ultimate_Obstacle_Course", "http://dbpedia.org/resource/Vikings:_Valhalla", "http://dbpedia.org/resource/Vikings_(2012_TV_series)", "http://dbpedia.org/resource/Vikings_(TV_documentary_series)", "http://dbpedia.org/resource/Vikings_(TV_series)", "http://dbpedia.org/resource/Vikings_(season_1)", "http://dbpedia.org/resource/Vikki_RPM", "http://dbpedia.org/resource/Vikram_Aur_Betaal", "http://dbpedia.org/resource/Vikram_Betaal_Ki_Rahasya_Gatha", "http://dbpedia.org/resource/Vila_Madalena_(TV_series)", "http://dbpedia.org/resource/Vila_S\u00e9samo", "http://dbpedia.org/resource/Vilakku_Vacha_Nerathula", "http://dbpedia.org/resource/Vilangu_(web_series)", "http://dbpedia.org/resource/Vild_med_dans", "http://dbpedia.org/resource/Villa_Arzilla", "http://dbpedia.org/resource/Villa_Dulce", "http://dbpedia.org/resource/Villa_Para\u00edso", "http://dbpedia.org/resource/Villa_Quintana", "http://dbpedia.org/resource/Villa_Quintana_(2013_TV_series)", "http://dbpedia.org/resource/Villa_To_Village", "http://dbpedia.org/resource/Village_Barn", "http://dbpedia.org/resource/Village_Hall_(TV_series)", "http://dbpedia.org/resource/Village_Survival,_the_Eight", "http://dbpedia.org/resource/Village_Vets_Australia", "http://dbpedia.org/resource/Village_Wooing_(1962_film)", "http://dbpedia.org/resource/Village_of_the_Damned:_Welcome_to_Dryden", "http://dbpedia.org/resource/Village_of_the_Missing", "http://dbpedia.org/resource/Villainous_(TV_series)", "http://dbpedia.org/resource/Villains_(TV_series)", "http://dbpedia.org/resource/Ville_vesten", "http://dbpedia.org/resource/Vilma_(Philippine_TV_program)", "http://dbpedia.org/resource/Vina_Vidai_Vettai", "http://dbpedia.org/resource/Vina_Vidai_Vettai_Juniors", "http://dbpedia.org/resource/Vina_Vidai_Vettai_Juniors_(season_2)", "http://dbpedia.org/resource/Vince_Lombardi_Trophy", "http://dbpedia.org/resource/Vince_and_Kath", "http://dbpedia.org/resource/Vincent_(TV_series)", "http://dbpedia.org/resource/Vincent_(opera)", "http://dbpedia.org/resource/Vincent_and_the_Doctor", "http://dbpedia.org/resource/Vincenzo_(TV_series)", "http://dbpedia.org/resource/Vinicius_para_Crian\u00e7as_-_Arca_de_No\u00e9", "http://dbpedia.org/resource/Vinko_Coce", "http://dbpedia.org/resource/Vinland_Saga_(manga)", "http://dbpedia.org/resource/Vinnaithaandi_Varuvaayaa_(TV_series)", "http://dbpedia.org/resource/Vinnie_&_Bobby", "http://dbpedia.org/resource/Vino_el_amor", "http://dbpedia.org/resource/Vinyl_(TV_series)", "http://dbpedia.org/resource/Viola_(opera)", "http://dbpedia.org/resource/Violanta", "http://dbpedia.org/resource/Violeta_Violeta", "http://dbpedia.org/resource/Violetta_(TV_series)", "http://dbpedia.org/resource/Violine", "http://dbpedia.org/resource/Viper's_Creed", "http://dbpedia.org/resource/Viper_(TV_series)", "http://dbpedia.org/resource/Vipers_(film)", "http://dbpedia.org/resource/Vipul-class_barge", "http://dbpedia.org/resource/Viraasat_(2006_TV_series)", "http://dbpedia.org/resource/Viral_(web_series)", "http://dbpedia.org/resource/Viral_Scandal", "http://dbpedia.org/resource/Viral_Tap", "http://dbpedia.org/resource/Virals", "http://dbpedia.org/resource/Virasaat_(2002_TV_series)", "http://dbpedia.org/resource/Virgin_1_Presents....", "http://dbpedia.org/resource/Virgin_Ambient_series", "http://dbpedia.org/resource/Virgin_Bhasskar", "http://dbpedia.org/resource/Virgin_Bhasskar_2", "http://dbpedia.org/resource/Virgin_Fleet", "http://dbpedia.org/resource/Virgin_Media_News", "http://dbpedia.org/resource/Virgin_Media_News_at_5.30", "http://dbpedia.org/resource/Virgin_Media_News_at_8.00", "http://dbpedia.org/resource/Virgin_River_(TV_series)", "http://dbpedia.org/resource/Virgin_Territory_(TV_series)", "http://dbpedia.org/resource/Virgin_of_the_Secret_Service", "http://dbpedia.org/resource/Virginia,_la_monaca_di_Monza", "http://dbpedia.org/resource/Virginia-class_cruiser", "http://dbpedia.org/resource/Virginia_(Montero)", "http://dbpedia.org/resource/Virginia_Conventions", "http://dbpedia.org/resource/Virginia_Resolves", "http://dbpedia.org/resource/Virginia_Slave_Codes_of_1705", "http://dbpedia.org/resource/Virginie", "http://dbpedia.org/resource/Virrudh", "http://dbpedia.org/resource/Virtua_Fighter", "http://dbpedia.org/resource/Virtual_Hero", "http://dbpedia.org/resource/Virtual_Murder_(TV_series)", "http://dbpedia.org/resource/Virtual_Obsession", "http://dbpedia.org/resource/Virtual_Seduction", "http://dbpedia.org/resource/Virtuality_(film)", "http://dbpedia.org/resource/Virtually_Famous", "http://dbpedia.org/resource/Virtues_of_Harmony", "http://dbpedia.org/resource/Virtues_of_Harmony_II", "http://dbpedia.org/resource/Virus_(1995_film)", "http://dbpedia.org/resource/Vis_Unda_20000%3F", "http://dbpedia.org/resource/Vis_a_vis:_El_Oasis", "http://dbpedia.org/resource/Visaal", "http://dbpedia.org/resource/Vish_(TV_series)", "http://dbpedia.org/resource/Vish_Ya_Amrit:_Sitara", "http://dbpedia.org/resource/Vishkanya_Ek_Anokhi_Prem_Kahani", "http://dbpedia.org/resource/Vishnu_Puran_(TV_series)", "http://dbpedia.org/resource/Vishwamitra_(TV_series)", "http://dbpedia.org/resource/Visible:_Out_on_Television", "http://dbpedia.org/resource/Visible_Vote_'08:_A_Presidential_Forum", "http://dbpedia.org/resource/Vision_On", "http://dbpedia.org/resource/Visionaries:_Knights_of_the_Magical_Light", "http://dbpedia.org/resource/Visionaries:_Small_Solutions_to_Enormously_Large_Problems", "http://dbpedia.org/resource/Visionary:_The_Video_Singles", "http://dbpedia.org/resource/Visions_(TV_series)", "http://dbpedia.org/resource/Visions_fugitives", "http://dbpedia.org/resource/Visions_of_Murder", "http://dbpedia.org/resource/Visions_of_Passion", "http://dbpedia.org/resource/Visions_of_the_Future", "http://dbpedia.org/resource/Visit_with_the_Armed_Forces", "http://dbpedia.org/resource/Visiting_Tutor", "http://dbpedia.org/resource/Vita_l\u00f6gner", "http://dbpedia.org/resource/Vital_Signs_(TV_series)", "http://dbpedia.org/resource/Vitamin_(TV_series)", "http://dbpedia.org/resource/Vitamin_Club", "http://dbpedia.org/resource/Vitimbi", "http://dbpedia.org/resource/Vitthal_Teedi", "http://dbpedia.org/resource/Vittorio_Orlandi", "http://dbpedia.org/resource/Vit\u00f3ria_(2014_TV_series)", "http://dbpedia.org/resource/ViuTV_News", "http://dbpedia.org/resource/Viudas_e_hijos_del_Rock_&_Roll", "http://dbpedia.org/resource/Viva_Cabaret", "http://dbpedia.org/resource/Viva_La_Bam", "http://dbpedia.org/resource/Viva_Laughlin", "http://dbpedia.org/resource/Viva_Le_Famille", "http://dbpedia.org/resource/Viva_Pi\u00f1ata", "http://dbpedia.org/resource/Viva_Pi\u00f1ata_(TV_series)", "http://dbpedia.org/resource/Viva_S_Club", "http://dbpedia.org/resource/Viva_Valdez", "http://dbpedia.org/resource/Viva_Variety", "http://dbpedia.org/resource/Viva_Vietnam:_A_White_Trash_Adventure_Tour", "http://dbpedia.org/resource/Viva_el_lunes", "http://dbpedia.org/resource/Viva_la_Bands", "http://dbpedia.org/resource/Viva_la_Diva_(Darcey_Bussell_and_Katherine_Jenkins)", "http://dbpedia.org/resource/Viva_la_Ma\u00f1ana", "http://dbpedia.org/resource/Viva_la_Pepa", "http://dbpedia.org/resource/Vive_la_colo_!", "http://dbpedia.org/resource/Viver_a_Vida", "http://dbpedia.org/resource/Vivere_(TV_series)", "http://dbpedia.org/resource/Viviana_(TV_series)", "http://dbpedia.org/resource/Vividred_Operation", "http://dbpedia.org/resource/Vivimos_en_una_estrella", "http://dbpedia.org/resource/Vivir_a_destiempo", "http://dbpedia.org/resource/Vivir_enamorada", "http://dbpedia.org/resource/Vivir_para_amar", "http://dbpedia.org/resource/Vivir_un_poco", "http://dbpedia.org/resource/Vivo_Por_Elena", "http://dbpedia.org/resource/Vixen_(web_series)", "http://dbpedia.org/resource/Vixens", "http://dbpedia.org/resource/Viza_za_budu\u0107nost", "http://dbpedia.org/resource/Vi\u0146as_melo_lab\u0101k", "http://dbpedia.org/resource/Vlaamse_Hollywood_Vrouwen", "http://dbpedia.org/resource/Vlad_Taltos", "http://dbpedia.org/resource/Vlora_War", "http://dbpedia.org/resource/Vober_Hat", "http://dbpedia.org/resource/Vocal_Play", "http://dbpedia.org/resource/Vocal_War:_God's_Voice", "http://dbpedia.org/resource/Vocal_warm_up", "http://dbpedia.org/resource/Vocea_Rom\u00e2niei", "http://dbpedia.org/resource/Vocea_Rom\u00e2niei_Junior", "http://dbpedia.org/resource/Voces_en_Funci\u00f3n", "http://dbpedia.org/resource/Voc\u00ea_Decide", "http://dbpedia.org/resource/Vodafone_M.I.C", "http://dbpedia.org/resource/Voetbal_Inside", "http://dbpedia.org/resource/Voglia_di_Volare", "http://dbpedia.org/resource/Voglia_di_vivere", "http://dbpedia.org/resource/Voice:_110_Emergency_Control_Room", "http://dbpedia.org/resource/Voice_(TV_series)", "http://dbpedia.org/resource/Voice_Over_Man", "http://dbpedia.org/resource/Voice_of_Prophecy", "http://dbpedia.org/resource/Voice_of_Punjab", "http://dbpedia.org/resource/Voice_or_Noise", "http://dbpedia.org/resource/Voice_\u2013_Danmarks_st\u00f8rste_stemme", "http://dbpedia.org/resource/Voicelugger", "http://dbpedia.org/resource/Voices_Within:_The_Lives_of_Truddi_Chase", "http://dbpedia.org/resource/Voices_of_Fire_(TV_series)", "http://dbpedia.org/resource/Voices_of_Our_Future", "http://dbpedia.org/resource/Voir_(TV_series)", "http://dbpedia.org/resource/Volcano:_Fire_on_the_Mountain", "http://dbpedia.org/resource/Volcano_House", "http://dbpedia.org/resource/Volcano_Live", "http://dbpedia.org/resource/Volcano_and_Ryukyu_Islands_campaign", "http://dbpedia.org/resource/Volkswagen_Scirocco_R-Cup", "http://dbpedia.org/resource/Volleyball_Lover", "http://dbpedia.org/resource/Volo_di_notte", "http://dbpedia.org/resource/Volta_(TV_series)", "http://dbpedia.org/resource/Voltea_pa'_que_te_enamores", "http://dbpedia.org/resource/Voltea_pa'_que_te_enamores_(2014_TV_series)", "http://dbpedia.org/resource/Voltes_V:_Legacy", "http://dbpedia.org/resource/Voltron", "http://dbpedia.org/resource/Voltron:_Fleet_of_Doom", "http://dbpedia.org/resource/Voltron:_Legendary_Defender", "http://dbpedia.org/resource/Voltron:_The_Third_Dimension", "http://dbpedia.org/resource/Voltron_(TV_series)", "http://dbpedia.org/resource/Voltron_Force", "http://dbpedia.org/resource/Volume_One_(TV_series)", "http://dbpedia.org/resource/Volume_Up_(radio_show)", "http://dbpedia.org/resource/Volver_a_Empezar_(TV_series)", "http://dbpedia.org/resource/Volver_a_amar", "http://dbpedia.org/resource/Volver_a_vivir_(TV_series)", "http://dbpedia.org/resource/Volvo_Brage", "http://dbpedia.org/resource/Volvo_F85", "http://dbpedia.org/resource/Volvo_F88", "http://dbpedia.org/resource/Volvo_Snabbe", "http://dbpedia.org/resource/Von_heute_auf_morgen", "http://dbpedia.org/resource/Voodoo_Dollz", "http://dbpedia.org/resource/Voodoo_Moon", "http://dbpedia.org/resource/Vor-Tech:_Undercover_Conversion_Squad", "http://dbpedia.org/resource/Voronin's_Family", "http://dbpedia.org/resource/Vota_Juan", "http://dbpedia.org/resource/Vote_Match", "http://dbpedia.org/resource/Votre_Faust", "http://dbpedia.org/resource/Vourate_Geitonoi", "http://dbpedia.org/resource/Vox_Populi_(SBS_Current_Affairs_program)", "http://dbpedia.org/resource/Voyage_(1993_film)", "http://dbpedia.org/resource/Voyage_Trekkers", "http://dbpedia.org/resource/Voyage_of_Terror", "http://dbpedia.org/resource/Voyage_of_Terror:_The_Achille_Lauro_Affair", "http://dbpedia.org/resource/Voyage_of_the_Damned_(Doctor_Who)", "http://dbpedia.org/resource/Voyage_of_the_Space_Bubble", "http://dbpedia.org/resource/Voyage_to_the_Bottom_of_the_Sea_(TV_series)", "http://dbpedia.org/resource/Voyagers!", "http://dbpedia.org/resource/Vrati\u0107e_se_rode", "http://dbpedia.org/resource/Vremya", "http://dbpedia.org/resource/VriendenLoterij_Miljonairs", "http://dbpedia.org/resource/Vroom_Vroom_(TV_series)", "http://dbpedia.org/resource/Vru\u0107_vetar", "http://dbpedia.org/resource/Vs._(game_show)", "http://dbpedia.org/resource/Vua_ti\u1ebfng_Vi\u1ec7t", "http://dbpedia.org/resource/Vuelo_secreto", "http://dbpedia.org/resource/Vuelta_a_Mallorca", "http://dbpedia.org/resource/Vuelve_temprano", "http://dbpedia.org/resource/Vuelve_temprano_(Mexican_TV_series)", "http://dbpedia.org/resource/Vuk_Karad\u017ei\u0107_(TV_series)", "http://dbpedia.org/resource/Vurgun_(web_series)", "http://dbpedia.org/resource/Vuslat", "http://dbpedia.org/resource/Vu\u00e9lveme_a_querer_(TV_series)", "http://dbpedia.org/resource/Vzglyad_(Russian_TV_program)", "http://dbpedia.org/resource/V\u00e1lgame_Dios", "http://dbpedia.org/resource/V\u00e4gen_till_Gyllenbl\u00e5!", "http://dbpedia.org/resource/V\u00e4nner_och_fiender", "http://dbpedia.org/resource/V\u00e4rsta_spr\u00e5ket", "http://dbpedia.org/resource/V\u00e4ter_und_S\u00f6hne_\u2013_Eine_deutsche_Trag\u00f6die", "http://dbpedia.org/resource/V\u00e5g_og_vinn", "http://dbpedia.org/resource/V\u00e5r_tid_\u00e4r_nu", "http://dbpedia.org/resource/V\u00e9nus_et_Adonis", "http://dbpedia.org/resource/V\u00e9ro", "http://dbpedia.org/resource/V\u00e9rtigo_(TV_series)", "http://dbpedia.org/resource/V\u00e9u_de_Noiva", "http://dbpedia.org/resource/V\u00edctor_C\u00e1mara", "http://dbpedia.org/resource/V\u00edctor_Ros", "http://dbpedia.org/resource/V\u00eddeo_Show", "http://dbpedia.org/resource/V\u011b\u0159\u00ed\u0161_si%3F", "http://dbpedia.org/resource/W*A*L*T*E*R", "http://dbpedia.org/resource/W.E.B.", "http://dbpedia.org/resource/W.I.T.C.H._(TV_series)", "http://dbpedia.org/resource/W/_Bob_&_David", "http://dbpedia.org/resource/W00tstock", "http://dbpedia.org/resource/W1A_(TV_series)", "http://dbpedia.org/resource/W5_(TV_program)", "http://dbpedia.org/resource/WAGS_(TV_series)", "http://dbpedia.org/resource/WAGS_Atlanta", "http://dbpedia.org/resource/WAGS_Miami", "http://dbpedia.org/resource/WAG_Nation", "http://dbpedia.org/resource/WAGs_Boutique", "http://dbpedia.org/resource/WCG_Ultimate_Gamer", "http://dbpedia.org/resource/WCW_All_Nighter", "http://dbpedia.org/resource/WCW_Main_Event", "http://dbpedia.org/resource/WCW_Monday_Nitro", "http://dbpedia.org/resource/WCW_Power_Hour", "http://dbpedia.org/resource/WCW_Prime", "http://dbpedia.org/resource/WCW_Pro", "http://dbpedia.org/resource/WCW_Saturday_Night", "http://dbpedia.org/resource/WCW_Thunder", "http://dbpedia.org/resource/WCW_WorldWide", "http://dbpedia.org/resource/WDAZ-TV", "http://dbpedia.org/resource/WDIO-DT", "http://dbpedia.org/resource/WGN_Morning_News", "http://dbpedia.org/resource/WHIH_Newsfront", "http://dbpedia.org/resource/WHO_Radio_Wise_Guys", "http://dbpedia.org/resource/WIGS_(web_channel)", "http://dbpedia.org/resource/WIOU_(TV_series)", "http://dbpedia.org/resource/WITS_Academy", "http://dbpedia.org/resource/WKLL", "http://dbpedia.org/resource/WKRP_in_Cincinnati", "http://dbpedia.org/resource/WMAC_Masters", "http://dbpedia.org/resource/WMRA_World_Cup", "http://dbpedia.org/resource/WNBA_on_ABC", "http://dbpedia.org/resource/WNBA_on_ESPN", "http://dbpedia.org/resource/WNBA_on_Lifetime", "http://dbpedia.org/resource/WNBA_on_NBC", "http://dbpedia.org/resource/WNBA_on_Oxygen", "http://dbpedia.org/resource/WOMEN!", "http://dbpedia.org/resource/WOW!_(TV_series)", "http://dbpedia.org/resource/WOW:_The_CatholicTV_Challenge", "http://dbpedia.org/resource/WPC_56", "http://dbpedia.org/resource/WQMU", "http://dbpedia.org/resource/WTA_125K_series", "http://dbpedia.org/resource/WWE's_Most_Wanted_Treasures", "http://dbpedia.org/resource/WWE_205_Live", "http://dbpedia.org/resource/WWE_2K", "http://dbpedia.org/resource/WWE_Afterburn", "http://dbpedia.org/resource/WWE_Backstage", "http://dbpedia.org/resource/WWE_Bottom_Line", "http://dbpedia.org/resource/WWE_Confidential", "http://dbpedia.org/resource/WWE_Diva_Search", "http://dbpedia.org/resource/WWE_ECW", "http://dbpedia.org/resource/WWE_Experience", "http://dbpedia.org/resource/WWE_Free_for_All", "http://dbpedia.org/resource/WWE_Heat", "http://dbpedia.org/resource/WWE_Legends'_House", "http://dbpedia.org/resource/WWE_Legends_of_Wrestling", "http://dbpedia.org/resource/WWE_Madison_Square_Garden_Classics", "http://dbpedia.org/resource/WWE_Main_Event", "http://dbpedia.org/resource/WWE_Mixed_Match_Challenge", "http://dbpedia.org/resource/WWE_NXT", "http://dbpedia.org/resource/WWE_NXT_(TV_series)", "http://dbpedia.org/resource/WWE_NXT_Level_Up", "http://dbpedia.org/resource/WWE_Raw", "http://dbpedia.org/resource/WWE_Rivals", "http://dbpedia.org/resource/WWE_Saturday_Morning_Slam", "http://dbpedia.org/resource/WWE_Slam_City", "http://dbpedia.org/resource/WWE_SmackDown", "http://dbpedia.org/resource/WWE_Superstars", "http://dbpedia.org/resource/WWE_Tagged_Classics", "http://dbpedia.org/resource/WWE_Tough_Enough", "http://dbpedia.org/resource/WWE_Tribute_to_the_Troops", "http://dbpedia.org/resource/WWE_Velocity", "http://dbpedia.org/resource/WWE_Vintage", "http://dbpedia.org/resource/WWE_Wal3ooha", "http://dbpedia.org/resource/WWE_Workout_Series", "http://dbpedia.org/resource/WWE_Worlds_Collide_(series)", "http://dbpedia.org/resource/WWF_All_American_Wrestling", "http://dbpedia.org/resource/WWF_Championship_Wrestling", "http://dbpedia.org/resource/WWF_Hasbro_action_figures", "http://dbpedia.org/resource/WWF_Jakked/Metal", "http://dbpedia.org/resource/WWF_LiveWire", "http://dbpedia.org/resource/WWF_Mania", "http://dbpedia.org/resource/WWF_Prime_Time_Wrestling", "http://dbpedia.org/resource/WWF_Shotgun_Saturday_Night", "http://dbpedia.org/resource/WWF_Superstars_of_Wrestling", "http://dbpedia.org/resource/WWF_The_Main_Event", "http://dbpedia.org/resource/WWF_Wrestling_Challenge", "http://dbpedia.org/resource/WWF_on_MSG_Network", "http://dbpedia.org/resource/WWII_in_HD", "http://dbpedia.org/resource/WXSX-CA", "http://dbpedia.org/resource/WYSIWYG_(TV_series)", "http://dbpedia.org/resource/W_(TV_series)", "http://dbpedia.org/resource/W_Juliet", "http://dbpedia.org/resource/W_roli_g\u0142\u00f3wnej...", "http://dbpedia.org/resource/Wa$ted!_(American_TV_series)", "http://dbpedia.org/resource/Wa$ted!_(New_Zealand_TV_series)", "http://dbpedia.org/resource/Waada_(TV_series)", "http://dbpedia.org/resource/Waar_Parriwar", "http://dbpedia.org/resource/Waaris_(1999_TV_series)", "http://dbpedia.org/resource/Waaris_(2008_TV_series)", "http://dbpedia.org/resource/Waaris_(2008_Zee_TV_series)", "http://dbpedia.org/resource/Waaris_(2016_TV_series)", "http://dbpedia.org/resource/Wacaday", "http://dbpedia.org/resource/Wachamakulit", "http://dbpedia.org/resource/Wacko_(TV_series)", "http://dbpedia.org/resource/Wacky_Races_(1968_TV_series)", "http://dbpedia.org/resource/Wacky_Races_(2017_TV_series)", "http://dbpedia.org/resource/Waco:_Madman_or_Messiah", "http://dbpedia.org/resource/Waco_(miniseries)", "http://dbpedia.org/resource/Waco_Custom_Cabin_series", "http://dbpedia.org/resource/Waco_people", "http://dbpedia.org/resource/Wafa_(TV_series)", "http://dbpedia.org/resource/Waffle_(game_show)", "http://dbpedia.org/resource/Waffle_the_Wonder_Dog", "http://dbpedia.org/resource/Waffles_+_Mochi", "http://dbpedia.org/resource/Wag_Kukurap", "http://dbpedia.org/resource/Wagan_Land", "http://dbpedia.org/resource/Wagas", "http://dbpedia.org/resource/Wagaya_no_Rekishi", "http://dbpedia.org/resource/Wagle_Ki_Duniya", "http://dbpedia.org/resource/Wagle_Ki_Duniya_\u2013_Nayi_Peedhi_Naye_Kissey", "http://dbpedia.org/resource/Wagner_(film)", "http://dbpedia.org/resource/Wagon_Train", "http://dbpedia.org/resource/Wah!_Wah!_Kya_Baat_Hai!", "http://dbpedia.org/resource/Wah_Bhai_Wah_(TV_series)", "http://dbpedia.org/resource/Wah_Janaab", "http://dbpedia.org/resource/Wahlburgers", "http://dbpedia.org/resource/Wahlburgers_(TV_series)", "http://dbpedia.org/resource/Wahlgrens_v\u00e4rld", "http://dbpedia.org/resource/Waikiki_(film)", "http://dbpedia.org/resource/Wainwrights_On_The_Air", "http://dbpedia.org/resource/Waissman", "http://dbpedia.org/resource/Wait,_My_Youth", "http://dbpedia.org/resource/Wait_Till_Your_Father_Gets_Home", "http://dbpedia.org/resource/Wait_till_Your_Mother_Gets_Home!", "http://dbpedia.org/resource/Waiting_for_God_(TV_series)", "http://dbpedia.org/resource/Waiting_for_the_Barbarians_(opera)", "http://dbpedia.org/resource/Waiting_in_the_Summer", "http://dbpedia.org/resource/Wajh_al-Qamar", "http://dbpedia.org/resource/Waka_&_Tammy:_What_The_Flocka", "http://dbpedia.org/resource/Wakaba_Girl", "http://dbpedia.org/resource/Wakakozake", "http://dbpedia.org/resource/Wake,_Rattle,_and_Roll", "http://dbpedia.org/resource/Wake_Me_When_the_War_Is_Over", "http://dbpedia.org/resource/Wake_Up!_WA", "http://dbpedia.org/resource/Wake_Up_(TV_program)", "http://dbpedia.org/resource/Wake_Up_(TV_series)", "http://dbpedia.org/resource/Wake_Up_2", "http://dbpedia.org/resource/Wake_Up_Call_(2002_TV_program)", "http://dbpedia.org/resource/Wake_Up_Call_(2014_TV_series)", "http://dbpedia.org/resource/Wake_Up_Call_(TV_series)", "http://dbpedia.org/resource/Wake_Up_Ladies:_The_Series", "http://dbpedia.org/resource/Wake_Up_Ladies:_Very_Complicated", "http://dbpedia.org/resource/Wake_Up_with_Al", "http://dbpedia.org/resource/Wake_in_Fright_(miniseries)", "http://dbpedia.org/resource/Wakefield_(TV_series)", "http://dbpedia.org/resource/Wakey_Wakey_Campers", "http://dbpedia.org/resource/Wakfu_(TV_series)", "http://dbpedia.org/resource/Waking_the_Dead_(TV_series)", "http://dbpedia.org/resource/Wako_Wako", "http://dbpedia.org/resource/Waktu_Rehat", "http://dbpedia.org/resource/Waku_Waku_Volley", "http://dbpedia.org/resource/Wakusei_Robo_Danguard_Ace", "http://dbpedia.org/resource/Walang_Hanggan_(2003_TV_series)", "http://dbpedia.org/resource/Walang_Hanggan_(2012_TV_series)", "http://dbpedia.org/resource/Walang_Hanggang_Paalam", "http://dbpedia.org/resource/Walang_Iwanan", "http://dbpedia.org/resource/Walang_Iwanan_(TV_series)", "http://dbpedia.org/resource/Walang_Kapalit", "http://dbpedia.org/resource/Walang_Tulugan_with_the_Master_Showman", "http://dbpedia.org/resource/Walchensee-class_tanker", "http://dbpedia.org/resource/Waldheimat_(TV_series)", "http://dbpedia.org/resource/Wales_This_Week", "http://dbpedia.org/resource/Wales_Today", "http://dbpedia.org/resource/Wales_at_Six", "http://dbpedia.org/resource/Walk_cycle", "http://dbpedia.org/resource/Walk_on_the_Wild_Side_(TV_series)", "http://dbpedia.org/resource/Walk_the_Line_(TV_series)", "http://dbpedia.org/resource/Walk_the_Prank", "http://dbpedia.org/resource/Walker,_Texas_Ranger", "http://dbpedia.org/resource/Walker,_Texas_Ranger:_Trial_by_Fire", "http://dbpedia.org/resource/Walker:_Independence", "http://dbpedia.org/resource/Walker_(TV_series)", "http://dbpedia.org/resource/Walking_Britain's_Lost_Railways", "http://dbpedia.org/resource/Walking_Forward", "http://dbpedia.org/resource/Walking_Tall_(TV_series)", "http://dbpedia.org/resource/Walking_in_Circles", "http://dbpedia.org/resource/Walking_in_the_Kingdom", "http://dbpedia.org/resource/Walking_with...", "http://dbpedia.org/resource/Walking_with_Beasts", "http://dbpedia.org/resource/Walking_with_Cavemen", "http://dbpedia.org/resource/Walking_with_Dinosaurs", "http://dbpedia.org/resource/Walking_with_Monsters", "http://dbpedia.org/resource/Walkman_DD_Series", "http://dbpedia.org/resource/Walks_Around_Britain_(TV_series)", "http://dbpedia.org/resource/Wall_Street_Week", "http://dbpedia.org/resource/Wall_of_Chefs", "http://dbpedia.org/resource/Wall_of_Fame_(game_show)", "http://dbpedia.org/resource/Wallace_&_Gromit's_Musical_Marvels", "http://dbpedia.org/resource/Wallace_and_Gromit", "http://dbpedia.org/resource/Wallace_and_Gromit's_Cracking_Contraptions", "http://dbpedia.org/resource/Wallace_and_Gromit's_World_of_Invention", "http://dbpedia.org/resource/Wallander_(British_TV_series)", "http://dbpedia.org/resource/Wallander_(Swedish_TV_series)", "http://dbpedia.org/resource/Wallenberg:_A_Hero's_Story", "http://dbpedia.org/resource/Wallflowers_(web_series)", "http://dbpedia.org/resource/Walliams_&_Friend", "http://dbpedia.org/resource/Walls_of_Constantinople", "http://dbpedia.org/resource/Walls_of_Dubrovnik", "http://dbpedia.org/resource/Walls_of_Nicosia", "http://dbpedia.org/resource/Walls_of_Ston", "http://dbpedia.org/resource/Wally_Gator", "http://dbpedia.org/resource/Wallykazam!", "http://dbpedia.org/resource/Walt:_The_Man_Behind_the_Myth", "http://dbpedia.org/resource/Walt_Disney's_Mickey_Mouse", "http://dbpedia.org/resource/Walt_Disney_(film)", "http://dbpedia.org/resource/Walt_Disney_anthology_television_series", "http://dbpedia.org/resource/Walter_&_Emily", "http://dbpedia.org/resource/Walter_(1982_film)", "http://dbpedia.org/resource/Walter_(2014_film)", "http://dbpedia.org/resource/Walter_Melon_(TV_series)", "http://dbpedia.org/resource/Walter_and_Tandoori", "http://dbpedia.org/resource/Walulis_(web_series)", "http://dbpedia.org/resource/Walulis_sieht_fern", "http://dbpedia.org/resource/Wan-chun", "http://dbpedia.org/resource/Wan_Jai_Gub_Nai_Jom_Ying", "http://dbpedia.org/resource/WandaVision", "http://dbpedia.org/resource/Wanda_Does_It", "http://dbpedia.org/resource/Wanda_at_Large", "http://dbpedia.org/resource/Wander_Over_Yonder", "http://dbpedia.org/resource/Wandering_Son", "http://dbpedia.org/resource/Wanderings_of_Sanmao", "http://dbpedia.org/resource/Wanderlust_(2006_film)", "http://dbpedia.org/resource/Wanderlust_(British_TV_series)", "http://dbpedia.org/resource/Wanderlust_(Irish_TV_series)", "http://dbpedia.org/resource/Wanderly_Wagon", "http://dbpedia.org/resource/Wandjina!", "http://dbpedia.org/resource/Wang's_Family", "http://dbpedia.org/resource/Wangan_Midnight", "http://dbpedia.org/resource/Wanna-Ben", "http://dbpedia.org/resource/Wanna_Be_a_VJ", "http://dbpedia.org/resource/Wanna_Bet%3F", "http://dbpedia.org/resource/Wanna_Come_In%3F", "http://dbpedia.org/resource/Wannabe_(TV_series)", "http://dbpedia.org/resource/Wannabe_Ryan", "http://dbpedia.org/resource/Wansapanataym", "http://dbpedia.org/resource/Want_a_Taste%3F", "http://dbpedia.org/resource/Wanted_(2005_TV_series)", "http://dbpedia.org/resource/Wanted_(2013_TV_program)", "http://dbpedia.org/resource/Wanted_(2016_Australian_TV_series)", "http://dbpedia.org/resource/Wanted_(2016_TV_series)", "http://dbpedia.org/resource/Wanted_(South_Korean_TV_series)", "http://dbpedia.org/resource/Wanted_(TV_series)", "http://dbpedia.org/resource/Wanted_(TV_show)", "http://dbpedia.org/resource/Wanted_(game_show)", "http://dbpedia.org/resource/Wanted_Dead_or_Alive_(TV_series)", "http://dbpedia.org/resource/Wanted_Down_Under", "http://dbpedia.org/resource/Wapta_Glacier", "http://dbpedia.org/resource/Waqt_Batayega_Kaun_Apna_Kaun_Paraya", "http://dbpedia.org/resource/War_&_Peace_(2016_TV_series)", "http://dbpedia.org/resource/War_Art_with_Eddie_Redmayne", "http://dbpedia.org/resource/War_Between_the_Provinces", "http://dbpedia.org/resource/War_Brides_(1980_film)", "http://dbpedia.org/resource/War_Feels_Like_War", "http://dbpedia.org/resource/War_Stories_(comics)", "http://dbpedia.org/resource/War_Stories_with_Oliver_North", "http://dbpedia.org/resource/War_Walks", "http://dbpedia.org/resource/War_Wolves", "http://dbpedia.org/resource/War_and_Beauty", "http://dbpedia.org/resource/War_and_Destiny", "http://dbpedia.org/resource/War_and_Peace_(1972_TV_series)", "http://dbpedia.org/resource/War_and_Peace_(2007_miniseries)", "http://dbpedia.org/resource/War_and_Peace_(opera)", "http://dbpedia.org/resource/War_and_Remembrance_(miniseries)", "http://dbpedia.org/resource/War_in_Peace", "http://dbpedia.org/resource/War_of_Currents", "http://dbpedia.org/resource/War_of_Money", "http://dbpedia.org/resource/War_of_the_Century", "http://dbpedia.org/resource/War_of_the_Cities", "http://dbpedia.org/resource/War_of_the_Flemish_Succession", "http://dbpedia.org/resource/War_of_the_Genders", "http://dbpedia.org/resource/War_of_the_Limburg_Succession", "http://dbpedia.org/resource/War_of_the_Worlds_(1988_TV_series)", "http://dbpedia.org/resource/War_of_the_Worlds_(2019_TV_series)", "http://dbpedia.org/resource/War_of_the_Worlds_2:_The_Next_Wave", "http://dbpedia.org/resource/War_on_Waste", "http://dbpedia.org/resource/Waratte_Iitomo!", "http://dbpedia.org/resource/Warau_Inu", "http://dbpedia.org/resource/Warau_Michael", "http://dbpedia.org/resource/Warbirds_over_Wanaka", "http://dbpedia.org/resource/Warden_of_Red_Rock", "http://dbpedia.org/resource/Warehouse_13", "http://dbpedia.org/resource/Warehouse_13_(season_5)", "http://dbpedia.org/resource/Warhammer_40,000", "http://dbpedia.org/resource/Warhammer_Fantasy_(setting)", "http://dbpedia.org/resource/Wario_(franchise)", "http://dbpedia.org/resource/Waris_(serial)", "http://dbpedia.org/resource/Warm_Springs_(film)", "http://dbpedia.org/resource/Warm_and_Cozy", "http://dbpedia.org/resource/Warner_Archive_Collection", "http://dbpedia.org/resource/Warner_Bros._Presents", "http://dbpedia.org/resource/Warning:_Parental_Advisory", "http://dbpedia.org/resource/Warotenka", "http://dbpedia.org/resource/Warp_10:_Influences,_Classics,_Remixes", "http://dbpedia.org/resource/Warped!", "http://dbpedia.org/resource/Warped_Roadies", "http://dbpedia.org/resource/Warren_(TV_series)", "http://dbpedia.org/resource/Warren_Beatty:_Mister_Hollywood", "http://dbpedia.org/resource/Warren_United", "http://dbpedia.org/resource/Warren_the_Ape", "http://dbpedia.org/resource/Warrior_(TV_series)", "http://dbpedia.org/resource/Warrior_(miniseries)", "http://dbpedia.org/resource/Warrior_Baek_Dong-soo", "http://dbpedia.org/resource/Warrior_Challenge", "http://dbpedia.org/resource/Warrior_Nun_(TV_series)", "http://dbpedia.org/resource/Warrior_Queen", "http://dbpedia.org/resource/Warrior_of_Love_Rainbowman", "http://dbpedia.org/resource/Warrior_tracked_armoured_vehicle", "http://dbpedia.org/resource/Warriors_(1999_TV_series)", "http://dbpedia.org/resource/Warriors_(2009_TV_series)", "http://dbpedia.org/resource/Warriors_in_Transit", "http://dbpedia.org/resource/Warriors_of_Kudlak", "http://dbpedia.org/resource/Warriors_of_the_Yang_Clan", "http://dbpedia.org/resource/Wars_in_Lombardy", "http://dbpedia.org/resource/Wars_of_Bribery", "http://dbpedia.org/resource/Wars_of_In-Laws_II", "http://dbpedia.org/resource/Wars_of_In-laws", "http://dbpedia.org/resource/Wars_of_Li\u00e8ge", "http://dbpedia.org/resource/Wars_of_the_Delian_League", "http://dbpedia.org/resource/Wars_of_the_Diadochi", "http://dbpedia.org/resource/Wars_of_the_Roses", "http://dbpedia.org/resource/Warsaw_Shore", "http://dbpedia.org/resource/Warship_(1973_TV_series)", "http://dbpedia.org/resource/Warship_(2010_TV_series)", "http://dbpedia.org/resource/Wartime_Farm", "http://dbpedia.org/resource/Was_It_Love%3F", "http://dbpedia.org/resource/Was_It_Something_I_Said%3F_(panel_show)", "http://dbpedia.org/resource/Was_Justice_Denied%3F", "http://dbpedia.org/resource/Wasabi_Mon_Amour", "http://dbpedia.org/resource/Washington:_Behind_Closed_Doors", "http://dbpedia.org/resource/Washington_(miniseries)", "http://dbpedia.org/resource/Washington_Bridge_(Providence,_Rhode_Island)", "http://dbpedia.org/resource/Washington_Exclusive", "http://dbpedia.org/resource/Washington_Heights_(TV_series)", "http://dbpedia.org/resource/Washington_Journal", "http://dbpedia.org/resource/Washington_Report_(TV_series)", "http://dbpedia.org/resource/Washington_Watch_with_Roland_Martin", "http://dbpedia.org/resource/Washington_Week", "http://dbpedia.org/resource/Wasted_(British_TV_series)", "http://dbpedia.org/resource/Wasteland_(American_TV_series)", "http://dbpedia.org/resource/Wasteland_(Czech_TV_series)", "http://dbpedia.org/resource/Wata_Rauma", "http://dbpedia.org/resource/Wataha", "http://dbpedia.org/resource/Wataru_Seken_wa_Oni_Bakari", "http://dbpedia.org/resource/Watashi_no_Aozora", "http://dbpedia.org/resource/Watashi_wa_Shadow", "http://dbpedia.org/resource/Watatatow", "http://dbpedia.org/resource/Watch_Mr._Wizard", "http://dbpedia.org/resource/Watch_My_Chops", "http://dbpedia.org/resource/Watch_Over_Me", "http://dbpedia.org/resource/Watch_This_Space", "http://dbpedia.org/resource/Watch_What_Happens_Live_with_Andy_Cohen", "http://dbpedia.org/resource/Watch_Your_Mouth_(TV_series)", "http://dbpedia.org/resource/Watch_the_Sound_with_Mark_Ronson", "http://dbpedia.org/resource/Watch_with_Mother", "http://dbpedia.org/resource/Watchdog_(TV_programme)", "http://dbpedia.org/resource/Watchdog_(TV_series)", "http://dbpedia.org/resource/Watchdog_Test_House", "http://dbpedia.org/resource/Watcher_(TV_series)", "http://dbpedia.org/resource/Watching_(TV_series)", "http://dbpedia.org/resource/Watching_Ellie", "http://dbpedia.org/resource/Watchmen", "http://dbpedia.org/resource/Watchmen:_Motion_Comic", "http://dbpedia.org/resource/Watchmen:_The_End_Is_Nigh", "http://dbpedia.org/resource/Watchmen_(TV_series)", "http://dbpedia.org/resource/Water_(2006_film)", "http://dbpedia.org/resource/Water_Boys_(TV_series)", "http://dbpedia.org/resource/Water_Boys_2", "http://dbpedia.org/resource/Water_Boys_2005_Natsu", "http://dbpedia.org/resource/Water_Boyy:_The_Series", "http://dbpedia.org/resource/Water_Lilies_(Monet_series)", "http://dbpedia.org/resource/Water_Police_(Australian_TV_series)", "http://dbpedia.org/resource/Water_Polo_Yankees", "http://dbpedia.org/resource/Water_Rats_(TV_series)", "http://dbpedia.org/resource/Water_Under_the_Bridge_(miniseries)", "http://dbpedia.org/resource/Water_on_the_Table", "http://dbpedia.org/resource/Watercolour_Challenge", "http://dbpedia.org/resource/Waterfront_(miniseries)", "http://dbpedia.org/resource/Waterfront_Beat", "http://dbpedia.org/resource/Watergate_(TV_series)", "http://dbpedia.org/resource/Disney_Live", "http://dbpedia.org/resource/Disneymania_(series)", "http://dbpedia.org/resource/Disperatamente_Giulia", "http://dbpedia.org/resource/Display_list", "http://dbpedia.org/resource/Disposable_camera", "http://dbpedia.org/resource/Disputation_of_Barcelona", "http://dbpedia.org/resource/Distinguished_Service_to_Music_Medal", "http://dbpedia.org/resource/Dita_(TV_series)", "http://dbpedia.org/resource/Ditmar_Award", "http://dbpedia.org/resource/Dittsche", "http://dbpedia.org/resource/Diva_Las_Vegas", "http://dbpedia.org/resource/Diva_Starz", "http://dbpedia.org/resource/Dive_(TV_series)", "http://dbpedia.org/resource/Diver_Dan", "http://dbpedia.org/resource/Diversitas", "http://dbpedia.org/resource/Divide_Peaks", "http://dbpedia.org/resource/Divine_Canine", "http://dbpedia.org/resource/Divine_Right:_The_Adventures_of_Max_Faraday", "http://dbpedia.org/resource/Dixie_Series", "http://dbpedia.org/resource/Dizzy_(series)", "http://dbpedia.org/resource/Di\u00e1rio_da_Lexa", "http://dbpedia.org/resource/DjangoFest", "http://dbpedia.org/resource/Djinn_(comics)", "http://dbpedia.org/resource/Dmitry_Donskoy_(opera)", "http://dbpedia.org/resource/Dnepropetrovsk_Sputnik", "http://dbpedia.org/resource/Do_Go_On", "http://dbpedia.org/resource/Doberman_Deka", "http://dbpedia.org/resource/Dobol_A_sa_Dobol_B", "http://dbpedia.org/resource/Dobrynya_Nikitich_(opera)", "http://dbpedia.org/resource/Dobr\u00e1_\u010dtvr\u0165", "http://dbpedia.org/resource/Doc_Corkle", "http://dbpedia.org/resource/Doc_Potts", "http://dbpedia.org/resource/Doc_Savage", "http://dbpedia.org/resource/Doc_Zone", "http://dbpedia.org/resource/Dock_Walloper", "http://dbpedia.org/resource/Doctor*Ology", "http://dbpedia.org/resource/Doctor,_Doctor_(talk_show)", "http://dbpedia.org/resource/Doctor_Puppet", "http://dbpedia.org/resource/Doctor_Strange:_The_Oath", "http://dbpedia.org/resource/Doctor_Tomorrow", "http://dbpedia.org/resource/Doctor_Who:_The_Commentaries", "http://dbpedia.org/resource/Doctor_Who_Files", "http://dbpedia.org/resource/Doctor_Who_exhibitions", "http://dbpedia.org/resource/Doctors_to_Be", "http://dbpedia.org/resource/Doctors_to_Be:_20_Years_On", "http://dbpedia.org/resource/Doctrine_of_Labyrinths", "http://dbpedia.org/resource/Document_(TV_series)", "http://dbpedia.org/resource/Dog_Days_(opera)", "http://dbpedia.org/resource/Dog_Falls,_Glen_Affric", "http://dbpedia.org/resource/Dog_Star_Man", "http://dbpedia.org/resource/Dog_Tales", "http://dbpedia.org/resource/Dogs_of_War_(comics)", "http://dbpedia.org/resource/Dogwitch", "http://dbpedia.org/resource/Dogwoman", "http://dbpedia.org/resource/Doki_Doki_Penguin_Land", "http://dbpedia.org/resource/Dokkiri_Doctor", "http://dbpedia.org/resource/Doktor_Martin_(Czech_TV_series)", "http://dbpedia.org/resource/Doktor_Mugg", "http://dbpedia.org/resource/Doktor_Sleepless", "http://dbpedia.org/resource/Dolby_noise-reduction_system", "http://dbpedia.org/resource/Dolce_Vita_&_Co", "http://dbpedia.org/resource/Dolina_sunca", "http://dbpedia.org/resource/Dolores_Hernandez_Lecture_Series", "http://dbpedia.org/resource/Dolphin_Juice", "http://dbpedia.org/resource/Dom-2", "http://dbpedia.org/resource/California_Water_Wars", "http://dbpedia.org/resource/Call_911", "http://dbpedia.org/resource/Call_My_Bluff_(U.S._game_show)", "http://dbpedia.org/resource/Calypso_(telenovela)", "http://dbpedia.org/resource/Cambio_de_piel_(telenovela)", "http://dbpedia.org/resource/Cambodian_Campaign", "http://dbpedia.org/resource/Camila_(telenovela)", "http://dbpedia.org/resource/Camp_Orange_(UK_&_Ireland)", "http://dbpedia.org/resource/Campaign_at_the_Eastern_Foothills_of_Funiu_Mountain", "http://dbpedia.org/resource/Campbell_Brothers", "http://dbpedia.org/resource/Campbell_Brown_(TV_series)", "http://dbpedia.org/resource/Campeonato_Brasileiro_de_Turismo", "http://dbpedia.org/resource/Campeones_de_la_vida_(Mexican_telenovela)", "http://dbpedia.org/resource/Campion_(TV_series)", "http://dbpedia.org/resource/Can_We_Love%3F", "http://dbpedia.org/resource/Fervaal", "http://dbpedia.org/resource/Festspiel_Baden-Baden", "http://dbpedia.org/resource/Festum_Ovorum", "http://dbpedia.org/resource/Feuerdrachen", "http://dbpedia.org/resource/Fevey", "http://dbpedia.org/resource/Fiat-Abarth_750", "http://dbpedia.org/resource/Fiat_B.R.", "http://dbpedia.org/resource/Fibber_McGee_and_Molly", "http://dbpedia.org/resource/Field_camera", "http://dbpedia.org/resource/Fieracavalli", "http://dbpedia.org/resource/Fierrabras_(opera)", "http://dbpedia.org/resource/Fifth_series_of_the_new_Taiwan_dollar_banknote", "http://dbpedia.org/resource/Figaro_Gets_a_Divorce", "http://dbpedia.org/resource/Fight_Science", "http://dbpedia.org/resource/Fight_for_Fame", "http://dbpedia.org/resource/Fight_for_Tomorrow", "http://dbpedia.org/resource/Fighter's_History", "http://dbpedia.org/resource/Fighting_Beauty_Wulong", "http://dbpedia.org/resource/Fighting_Fantasy", "http://dbpedia.org/resource/File_on_4", "http://dbpedia.org/resource/FilmXtra_Uncut", "http://dbpedia.org/resource/Film_Noir_Classic_Collection", "http://dbpedia.org/resource/Film_Superlist", "http://dbpedia.org/resource/Film_chain", "http://dbpedia.org/resource/Filmfare_Award_for_Best_Director", "http://dbpedia.org/resource/Filmfare_Award_for_Best_Female_Debut", "http://dbpedia.org/resource/Filmo", "http://dbpedia.org/resource/Filum_terminale", "http://dbpedia.org/resource/Final_Crisis:_Legion_of_3_Worlds", "http://dbpedia.org/resource/Financial_roadshows", "http://dbpedia.org/resource/Finding_8", "http://dbpedia.org/resource/Finding_the_Fallen", "http://dbpedia.org/resource/FinePix_IS_Pro", "http://dbpedia.org/resource/FinePix_S1_Pro", "http://dbpedia.org/resource/FinePix_S2_Pro", "http://dbpedia.org/resource/FinePix_S3_Pro", "http://dbpedia.org/resource/FinePix_S5_Pro", "http://dbpedia.org/resource/FinePix_S9500", "http://dbpedia.org/resource/Fine_Prints_of_the_Year", "http://dbpedia.org/resource/Finkleman's_45s", "http://dbpedia.org/resource/Finnish_Touring_Car_Championship", "http://dbpedia.org/resource/Finnish_football_league_system", "http://dbpedia.org/resource/Finnish\u2013Novgorodian_wars", "http://dbpedia.org/resource/Fire_Brats", "http://dbpedia.org/resource/Fire_Crackers", "http://dbpedia.org/resource/Firekeeper_Saga", "http://dbpedia.org/resource/Fireproofing", "http://dbpedia.org/resource/Firland", "http://dbpedia.org/resource/First_Appearances", "http://dbpedia.org/resource/First_Fandom_Hall_of_Fame_award", "http://dbpedia.org/resource/Harold_Shea", "http://dbpedia.org/resource/International_Sim\u00f3n_Bol\u00edvar_Prize", "http://dbpedia.org/resource/Jersey_Shore_Shark_Attack", "http://dbpedia.org/resource/King_Sejong_the_Great_(TV_series)", "http://dbpedia.org/resource/Legends_of_Skyfall", "http://dbpedia.org/resource/Lonely_Planet_Six_Degrees", "http://dbpedia.org/resource/MLB:_The_Show", "http://dbpedia.org/resource/MLB_Slugfest", "http://dbpedia.org/resource/Maryland_Sheep_and_Wool_Festival", "http://dbpedia.org/resource/Meg_and_Seron", "http://dbpedia.org/resource/NBA_Showtime", "http://dbpedia.org/resource/Original_songs_in_Smash", "http://dbpedia.org/resource/SABC_Special_Assignment", "http://dbpedia.org/resource/SDS_Sigma_series", "http://dbpedia.org/resource/SEETAL", "http://dbpedia.org/resource/SPHERES", "http://dbpedia.org/resource/Sahasa_Simha_Comics_Series", "http://dbpedia.org/resource/Sal\u00f3n_Internacional_del_Autom\u00f3vil_M\u00e9xico", "http://dbpedia.org/resource/Scholastic_Scrimmage", "http://dbpedia.org/resource/Scourge_of_the_Underworld", "http://dbpedia.org/resource/Scream_of_the_Shalka", "http://dbpedia.org/resource/Screen_Tests", "http://dbpedia.org/resource/Screener", "http://dbpedia.org/resource/Scripted_sequence", "http://dbpedia.org/resource/Scud", "http://dbpedia.org/resource/Scylla_(Gatti)", "http://dbpedia.org/resource/Sea_Hawks_(TV_series)", "http://dbpedia.org/resource/Sea_Stories_(TV_series)", "http://dbpedia.org/resource/Search_Engine_(radio_show)", "http://dbpedia.org/resource/Seaview_(TV_series)", "http://dbpedia.org/resource/Seaview_SVII", "http://dbpedia.org/resource/Second_Chance_(musical)", "http://dbpedia.org/resource/Second_Encirclement_Campaign_against_Jiangxi_Soviet", "http://dbpedia.org/resource/Secret_Agent_(video_game)", "http://dbpedia.org/resource/Secret_History_(TV_series)", "http://dbpedia.org/resource/Secret_History_(book_series)", "http://dbpedia.org/resource/Secret_Origins", "http://dbpedia.org/resource/Secret_Warriors", "http://dbpedia.org/resource/Seducci\u00f3n_(telenovela)", "http://dbpedia.org/resource/Seekers_(novel_series)", "http://dbpedia.org/resource/Selknam_people", "http://dbpedia.org/resource/Semele_(Eccles)", "http://dbpedia.org/resource/Semitic_people", "http://dbpedia.org/resource/Sensei_(First_Comics)", "http://dbpedia.org/resource/Sensible_Soccer", "http://dbpedia.org/resource/Sensitive_Skin_(UK_TV_series)", "http://dbpedia.org/resource/Sentinel_(comic_book)", "http://dbpedia.org/resource/September_Song_(TV_series)", "http://dbpedia.org/resource/Septimus_Heap", "http://dbpedia.org/resource/Sequence_(filmmaking)", "http://dbpedia.org/resource/Sequence_(medicine)", "http://dbpedia.org/resource/Serendipity_(book_series)", "http://dbpedia.org/resource/Service_(motor_vehicle)", "http://dbpedia.org/resource/Seven_Dreams:_A_Book_of_North_American_Landscapes", "http://dbpedia.org/resource/Seven_Sisters,_Sussex", "http://dbpedia.org/resource/Seventh_Avenue_(miniseries)", "http://dbpedia.org/resource/Sex_Ed:_The_Series", "http://dbpedia.org/resource/Se\u00f1ora_(telenovela)", "http://dbpedia.org/resource/Shades_(TV_series)", "http://dbpedia.org/resource/Shades_series", "http://dbpedia.org/resource/Shadows_(anthology)", "http://dbpedia.org/resource/Shaggy_Dog_Story_(TV)", "http://dbpedia.org/resource/Shah_Ismayil_(opera)", "http://dbpedia.org/resource/Shalako", "http://dbpedia.org/resource/Shari_Flanzer", "http://dbpedia.org/resource/Shark:_Mind_of_a_Demon", "http://dbpedia.org/resource/Shark_Bay_(TV_series)", "http://dbpedia.org/resource/Sharpe_(novel_series)", "http://dbpedia.org/resource/Sherlock_Holmes_(1931_film_series)", "http://dbpedia.org/resource/Shimoda_Conference", "http://dbpedia.org/resource/Shinobi_(series)", "http://dbpedia.org/resource/Shivers_(novel_series)", "http://dbpedia.org/resource/Shock_(musical)", "http://dbpedia.org/resource/Shock_Treatment_(TV_series)", "http://dbpedia.org/resource/Shocker_(paintball_marker)", "http://dbpedia.org/resource/Shopaholic_(TV_series)", "http://dbpedia.org/resource/Shopaholic_(novels)", "http://dbpedia.org/resource/Showdown_(game)", "http://dbpedia.org/resource/Showtime_(Croatian_TV_series)", "http://dbpedia.org/resource/Shrapnel_(Radical_Comics)", "http://dbpedia.org/resource/Shuffle_(game_show)", "http://dbpedia.org/resource/SiS_(TV_series)", "http://dbpedia.org/resource/Siegfried_Lorenz", "http://dbpedia.org/resource/Siffleur_Falls", "http://dbpedia.org/resource/Silent_Hill_(comics)", "http://dbpedia.org/resource/Silo_(series)", "http://dbpedia.org/resource/Silverwing_(series)", "http://dbpedia.org/resource/Simba", "http://dbpedia.org/resource/Simplemente_Mar\u00eda_(1969_telenovela)", "http://dbpedia.org/resource/Simplemente_Mar\u00eda_(1989_telenovela)", "http://dbpedia.org/resource/Simplemente_Mar\u00eda_(2015_telenovela)", "http://dbpedia.org/resource/Simplemente_Mar\u00eda_(Venezuelan_telenovela)", "http://dbpedia.org/resource/Singles_(miniseries)", "http://dbpedia.org/resource/Sinister_Dexter", "http://dbpedia.org/resource/Sirena_(telenovela)", "http://dbpedia.org/resource/Siuslaw_people", "http://dbpedia.org/resource/Siva_(rebreather)", "http://dbpedia.org/resource/Skin_(British_TV_programme)", "http://dbpedia.org/resource/Skippers_(TV_programme)", "http://dbpedia.org/resource/Skylanders", "http://dbpedia.org/resource/Skylark_(series)", "http://dbpedia.org/resource/Skylight_Music_Theatre", "http://dbpedia.org/resource/Slavey_people", "http://dbpedia.org/resource/Sled_Storm", "http://dbpedia.org/resource/Sleeper_(comics)", "http://dbpedia.org/resource/Sleeping_Dogs_(TV_series)", "http://dbpedia.org/resource/Sleeping_Dogs_Lie_(1998_film)", "http://dbpedia.org/resource/Slide_show", "http://dbpedia.org/resource/Sloan_Fellowship", "http://dbpedia.org/resource/Slocum_(westerns)", "http://dbpedia.org/resource/Small_Change_trilogy", "http://dbpedia.org/resource/Smena_(camera)", "http://dbpedia.org/resource/Smith's_Bank", "http://dbpedia.org/resource/Smoking_Gun_-_Minkan_Kas\u014dken_Ch\u014dsa'in_Nagareda_Midori", "http://dbpedia.org/resource/Smothers_Brothers", "http://dbpedia.org/resource/Snapshots_(TV_series)", "http://dbpedia.org/resource/Sniper_(film_series)", "http://dbpedia.org/resource/Snotties_(TV_series)", "http://dbpedia.org/resource/Snowfall_Trilogy", "http://dbpedia.org/resource/So_Dark_(TV_series)", "http://dbpedia.org/resource/So_It_Goes_(TV_series)", "http://dbpedia.org/resource/Social_system", "http://dbpedia.org/resource/Soda_(TV_series)", "http://dbpedia.org/resource/Soda_(comics)", "http://dbpedia.org/resource/Software", "http://dbpedia.org/resource/Soil_(manga)", "http://dbpedia.org/resource/Sojourn_(comics)", "http://dbpedia.org/resource/Solo_(DC_Comics)", "http://dbpedia.org/resource/Solus_(comics)", "http://dbpedia.org/resource/Something_Stupid", "http://dbpedia.org/resource/Sons_and_Lovers_(1981_TV_serial)", "http://dbpedia.org/resource/Sony_Entertainment_Television", "http://dbpedia.org/resource/Soo_(puppet)", "http://dbpedia.org/resource/Soon_(musical)", "http://dbpedia.org/resource/Sooty", "http://dbpedia.org/resource/Sophie's_Choice_(opera)", "http://dbpedia.org/resource/Sophie_(book_series)", "http://dbpedia.org/resource/Sound_Advice", "http://dbpedia.org/resource/Sound_of_Colors", "http://dbpedia.org/resource/Soundings_(radio_drama)", "http://dbpedia.org/resource/Soundtrack_'08", "http://dbpedia.org/resource/Southern_Cross_Ten", "http://dbpedia.org/resource/Southern_Discomfort_(Fabian_Society_pamphlets)", "http://dbpedia.org/resource/Space_Adventures_(comics)", "http://dbpedia.org/resource/Space_Battleship_Yamato_2199", "http://dbpedia.org/resource/Space_Museum_(comics)", "http://dbpedia.org/resource/Space_Shots_(trading_cards)", "http://dbpedia.org/resource/Spartacus_Trial", "http://dbpedia.org/resource/Spartan_race", "http://dbpedia.org/resource/Spawn:_Godslayer", "http://dbpedia.org/resource/Speak_&_Spell_(toy)", "http://dbpedia.org/resource/Special_Forces_(comics)", "http://dbpedia.org/resource/Special_Power_Excursion_Reactor_Test_Program", "http://dbpedia.org/resource/Specialty_show", "http://dbpedia.org/resource/Spectra_(installation)", "http://dbpedia.org/resource/Spectrum_(radio_program)", "http://dbpedia.org/resource/Speedball_(video_game)", "http://dbpedia.org/resource/Spelling_Bee_(game_show)", "http://dbpedia.org/resource/Spetsnaz_(miniseries)", "http://dbpedia.org/resource/Spheres_(TV_series)", "http://dbpedia.org/resource/Spitfire_(New_Universe)", "http://dbpedia.org/resource/Splash!_(UK_TV_series)", "http://dbpedia.org/resource/Splatter_Theatre", "http://dbpedia.org/resource/Split_Personality_(game_show)", "http://dbpedia.org/resource/Sponge_(TV_series)", "http://dbpedia.org/resource/Sports_Racer_Series", "http://dbpedia.org/resource/Sports_Tonight_Live", "http://dbpedia.org/resource/Sportsworld_(Canada)", "http://dbpedia.org/resource/Spotlight_(BBC_Northern_Ireland_TV_programme)", "http://dbpedia.org/resource/Sprawl_trilogy", "http://dbpedia.org/resource/Sprint_Cup_Series", "http://dbpedia.org/resource/Sprite_(manga)", "http://dbpedia.org/resource/Spruce_Run_(Delaware_County,_Ohio)", "http://dbpedia.org/resource/Sputnik_(TV_programme)", "http://dbpedia.org/resource/SpyBoy", "http://dbpedia.org/resource/Spy_(2004_TV_series)", "http://dbpedia.org/resource/Square_One_(game_show)", "http://dbpedia.org/resource/St._Clare's_(series)", "http://dbpedia.org/resource/Statens_offentliga_utredningar", "http://dbpedia.org/resource/Super_Sidekicks", "http://dbpedia.org/resource/Tareq_wa_Shireen", "http://dbpedia.org/resource/The_Amazing_Spider-Man", "http://dbpedia.org/resource/The_Florida_SpringFest", "http://dbpedia.org/resource/The_Legend_of_Snow_White", "http://dbpedia.org/resource/The_Sea_of_Fertility", "http://dbpedia.org/resource/The_Secret_City_Adventures", "http://dbpedia.org/resource/The_Secret_Garden_(opera)", "http://dbpedia.org/resource/The_Secret_Seven_(Frank_Richards)", "http://dbpedia.org/resource/The_Seems", "http://dbpedia.org/resource/The_Selector", "http://dbpedia.org/resource/The_Seven_Ages_of_Man_(painting_series)", "http://dbpedia.org/resource/The_Sex_Education_Show", "http://dbpedia.org/resource/The_Siege_of_Belgrade", "http://dbpedia.org/resource/The_Siege_of_Rhodes", "http://dbpedia.org/resource/The_Silent_Service_(TV_series)", "http://dbpedia.org/resource/The_Slot_(TV_series)", "http://dbpedia.org/resource/The_Smurfs_(comics)", "http://dbpedia.org/resource/The_Smurfs_merchandising", "http://dbpedia.org/resource/The_Smurfs_music", "http://dbpedia.org/resource/The_Snow_Queen_(opera)", "http://dbpedia.org/resource/The_Social_(Canadian_TV_series)", "http://dbpedia.org/resource/The_Softwire", "http://dbpedia.org/resource/The_Son_of_a_Gunn_Show", "http://dbpedia.org/resource/The_Spire_(comics)", "http://dbpedia.org/resource/Tom_Slick_(TV_series)", "http://dbpedia.org/resource/United_Slovenia", "http://dbpedia.org/resource/Venom:_Separation_Anxiety", "http://dbpedia.org/resource/Web_series", "http://dbpedia.org/resource/Wikipedia_Seigenthaler_biography_incident", "http://dbpedia.org/resource/Gdleen", "http://dbpedia.org/resource/Gear_Fighter_Dendoh", "http://dbpedia.org/resource/Geek_Code", "http://dbpedia.org/resource/Geekfest", "http://dbpedia.org/resource/Geld.Macht.Liebe", "http://dbpedia.org/resource/Geliebte_Schwestern", "http://dbpedia.org/resource/Gem_Twist", "http://dbpedia.org/resource/Gemini_Awards", "http://dbpedia.org/resource/Gemini_Blood", "http://dbpedia.org/resource/Gen12", "http://dbpedia.org/resource/General_Electric_Summer_Originals", "http://dbpedia.org/resource/General_Foods_25th_Anniversary_Show:_A_Salute_to_Rodgers_and_Hammerstein", "http://dbpedia.org/resource/General_Motors_Motorama", "http://dbpedia.org/resource/Genes_to_Cognition_Project", "http://dbpedia.org/resource/Genesis_Survivor_Gaiarth", "http://dbpedia.org/resource/Geneva_Motor_Show", "http://dbpedia.org/resource/Genitrix_(opera)", "http://dbpedia.org/resource/Genji_Ts\u016bshin_Agedama", "http://dbpedia.org/resource/Genji_monogatari_(opera)", "http://dbpedia.org/resource/Genka_calendar", "http://dbpedia.org/resource/Genoese_colonies", "http://dbpedia.org/resource/Genoese_towers_in_Corsica", "http://dbpedia.org/resource/Genuine_Ken", "http://dbpedia.org/resource/Geoff_and_Judy", "http://dbpedia.org/resource/Geoglyphs_of_Chug-Chug", "http://dbpedia.org/resource/Georg_B\u00fcchner_Prize", "http://dbpedia.org/resource/Charlie_Brown's_All-Stars", "http://dbpedia.org/resource/Chatsbury_bushfire", "http://dbpedia.org/resource/Checkmate_(TV_series)", "http://dbpedia.org/resource/Chef_To_Go", "http://dbpedia.org/resource/Chefs", "http://dbpedia.org/resource/Chen\u2013Chiang_summit", "http://dbpedia.org/resource/Cher_(2008\u20132011_residency_show)", "http://dbpedia.org/resource/Cheshire_County_Show", "http://dbpedia.org/resource/Child_Genius_(TV_Series)", "http://dbpedia.org/resource/Chiller_Theatre_(New_York)", "http://dbpedia.org/resource/Chilula_people", "http://dbpedia.org/resource/China's_Next_Top_Model_(cycle_1)", "http://dbpedia.org/resource/China's_Next_Top_Model_(cycle_2)", "http://dbpedia.org/resource/Chinese_Music_Radio_Awards", "http://dbpedia.org/resource/Chipe_Libre", "http://dbpedia.org/resource/Chiquititas_(2013_telenovela)", "http://dbpedia.org/resource/Chiquititas_(Portugal)", "http://dbpedia.org/resource/Chispita_(telenovela)", "http://dbpedia.org/resource/Chit-Chat_(TV_series)", "http://dbpedia.org/resource/Chithiram_Pesuthadi_(TV_series)", "http://dbpedia.org/resource/Hayom_Yom", "http://dbpedia.org/resource/Hazardous_Inflight_Weather_Advisory_Service", "http://dbpedia.org/resource/Hazel_(comics)", "http://dbpedia.org/resource/Ha\u014d_Taikei_Ry\u016b_Knight", "http://dbpedia.org/resource/He_Shoots,_He_Scores", "http://dbpedia.org/resource/Health_Security_Express", "http://dbpedia.org/resource/Health_in_Latvia", "http://dbpedia.org/resource/Health_stamp", "http://dbpedia.org/resource/Hear_Word!", "http://dbpedia.org/resource/Hearst_Metrotone_News", "http://dbpedia.org/resource/HeartQuest", "http://dbpedia.org/resource/Heart_North_Wales_Coast", "http://dbpedia.org/resource/Heart_of_the_Dragon_(TV_series)", "http://dbpedia.org/resource/Heart_of_the_Matter_(TV_series)", "http://dbpedia.org/resource/Heartbeat_Love", "http://dbpedia.org/resource/Heartbreak_High_(2022_TV_series)", "http://dbpedia.org/resource/Heat_wave_of_1995_derecho_series", "http://dbpedia.org/resource/Heaven's_Will_(manga)", "http://dbpedia.org/resource/Heavenly_Court", "http://dbpedia.org/resource/Heavenly_In-Laws", "http://dbpedia.org/resource/Heavens_Cafe", "http://dbpedia.org/resource/Heavy_Metal_L-Gaim", "http://dbpedia.org/resource/Heavyweight_Champ", "http://dbpedia.org/resource/Heddiw", "http://dbpedia.org/resource/Height_Modernization", "http://dbpedia.org/resource/Heisman_Trophy", "http://dbpedia.org/resource/Helden_der_Kreisklasse", "http://dbpedia.org/resource/Cucumber_(TV_series)", "http://dbpedia.org/resource/Cuidado_con_el_\u00e1ngel_(1959_telenovela)", "http://dbpedia.org/resource/Cumbres_Borrascosas_(1964_telenovela)", "http://dbpedia.org/resource/Cumbres_Borrascosas_(1976_telenovela)", "http://dbpedia.org/resource/Cumbres_Borrascosas_(1979_telenovela)", "http://dbpedia.org/resource/Cuts", "http://dbpedia.org/resource/Cyrus-class_post_ship", "http://dbpedia.org/resource/Animals_Do_the_Funniest_Things", "http://dbpedia.org/resource/EX-treme_Dating", "http://dbpedia.org/resource/Ghostwriter_(TV_series)", "http://dbpedia.org/resource/Gofrette_(book_series)", "http://dbpedia.org/resource/Hit_List_TV", "http://dbpedia.org/resource/Hit_n_Run_Tour_(Kiss_tour)", "http://dbpedia.org/resource/Hollywood_Zombies", "http://dbpedia.org/resource/In_Verrem", "http://dbpedia.org/resource/International_Conference_on_Computer_and_Information_Technology", "http://dbpedia.org/resource/International_Conference_on_Systems_Engineering", "http://dbpedia.org/resource/Jericho_Season_3:_Civil_War", "http://dbpedia.org/resource/John_Scott_Medal", "http://dbpedia.org/resource/Junior_MasterChef_Thailand", "http://dbpedia.org/resource/La_Soir\u00e9e", "http://dbpedia.org/resource/Le_Panorama", "http://dbpedia.org/resource/Le_Pays", "http://dbpedia.org/resource/Lloyd_Hopkins_Trilogy", "http://dbpedia.org/resource/Marvel_Collectors'_Item_Classics", "http://dbpedia.org/resource/Mastropiero_que_nunca", "http://dbpedia.org/resource/My_Australian_Story", "http://dbpedia.org/resource/National_Curriculum_assessment", "http://dbpedia.org/resource/Olympus_E-30", "http://dbpedia.org/resource/PLASA_Show", "http://dbpedia.org/resource/Pass_the_Buck_(U.S._game_show)", "http://dbpedia.org/resource/Personal_Appearance_Theater", "http://dbpedia.org/resource/Pro_Athl\u00e9_Tour", "http://dbpedia.org/resource/Scotty_Iseri", "http://dbpedia.org/resource/Smash_Cuts", "http://dbpedia.org/resource/Snopes_trilogy", "http://dbpedia.org/resource/Southampton_Boat_Show", "http://dbpedia.org/resource/Tales_to_Astonish", "http://dbpedia.org/resource/Taxi_Driver_(TV_series)", "http://dbpedia.org/resource/Tessa_\u2013_Leben_f\u00fcr_die_Liebe", "http://dbpedia.org/resource/The_10_Percenters", "http://dbpedia.org/resource/The_Country_House_Revealed", "http://dbpedia.org/resource/The_Folks_on_the_Hill", "http://dbpedia.org/resource/The_Fosters_(1976_TV_series)", "http://dbpedia.org/resource/The_Gunpowder_Plot:_Exploding_The_Legend", "http://dbpedia.org/resource/The_Moment_of_Truth_(UK_game_show)", "http://dbpedia.org/resource/The_Railroad_Hour", "http://dbpedia.org/resource/The_Reality_of_Speed", "http://dbpedia.org/resource/The_Scott_and_Gary_Show", "http://dbpedia.org/resource/The_Worthing_series", "http://dbpedia.org/resource/Vackor_az_els\u0151_b\u00e9ben", "http://dbpedia.org/resource/Vampire_Ang_Daddy_Ko", "http://dbpedia.org/resource/W5_(TV_series)", "http://dbpedia.org/resource/Wish_You_Were_Here_(TV_series)", "http://dbpedia.org/resource/Yara_(telenovela)", "http://dbpedia.org/resource/Animal_Cops:_Houston", "http://dbpedia.org/resource/Crossroads_(comics)", "http://dbpedia.org/resource/Edge_of_the_Spider-Verse", "http://dbpedia.org/resource/Five_Nights_at_Freddy's_(series)", "http://dbpedia.org/resource/Fox_Sports_Central_Asia", "http://dbpedia.org/resource/G_Force_(TV_series)", "http://dbpedia.org/resource/Hawaii_Five-0_(season_1)", "http://dbpedia.org/resource/Hey,_Hey,_It's_Saturday!_(United_Kingdom)", "http://dbpedia.org/resource/Inset_day", "http://dbpedia.org/resource/Jaankhilavan_Jasoos", "http://dbpedia.org/resource/Japanese_in_Mangaland", "http://dbpedia.org/resource/Jeremy_Hardy_Speaks_to_the_Nation", "http://dbpedia.org/resource/Koecher\u2013Maass_series", "http://dbpedia.org/resource/Kondoa_Irangi_Rock_Paintings", "http://dbpedia.org/resource/Lion_comics", "http://dbpedia.org/resource/Little_Parents,_Big_Charlie", "http://dbpedia.org/resource/Luscombe_8", "http://dbpedia.org/resource/Marvel_Super-Heroes_(comics)", "http://dbpedia.org/resource/Mas_Vale_Tarde", "http://dbpedia.org/resource/Michael_Holigan's_Your_New_House", "http://dbpedia.org/resource/Monsieur_Beaucaire_(opera)", "http://dbpedia.org/resource/MusicVR", "http://dbpedia.org/resource/Music_to_See_(1957_TV_series)", "http://dbpedia.org/resource/N\u00e9vtelen_h\u0151s\u00f6k", "http://dbpedia.org/resource/Olympus_PEN_E-PL7", "http://dbpedia.org/resource/One_Way_Ticket_(2012_sitcom)", "http://dbpedia.org/resource/Phantom_Cam", "http://dbpedia.org/resource/Reisekamera", "http://dbpedia.org/resource/R\u00e9tromobile", "http://dbpedia.org/resource/San_Francisco_Flower_&_Garden_Show", "http://dbpedia.org/resource/Spider-Man:_With_Great_Power", "http://dbpedia.org/resource/Stourport_Ring", "http://dbpedia.org/resource/Strictly_Breaks", "http://dbpedia.org/resource/Tele_Cine_Awards", "http://dbpedia.org/resource/Terminator_2:_Infinity", "http://dbpedia.org/resource/The_DemonWars_Saga", "http://dbpedia.org/resource/The_Rosales_Saga", "http://dbpedia.org/resource/Time_Crisis_(series)", "http://dbpedia.org/resource/Union_Calendar", "http://dbpedia.org/resource/Without_Breasts_There_Is_No_Paradise", "http://dbpedia.org/resource/Young_Heroes_in_Love", "http://dbpedia.org/resource/Hujum", "http://dbpedia.org/resource/Hulk:_Gray", "http://dbpedia.org/resource/Hum_Award_for_Best_Actor", "http://dbpedia.org/resource/Human,_All_Too_Human_(TV_series)", "http://dbpedia.org/resource/Human_Edge", "http://dbpedia.org/resource/Human_Kindness_Day", "http://dbpedia.org/resource/Human_Prey", "http://dbpedia.org/resource/Humble_&_Fred", "http://dbpedia.org/resource/Hume\u2013Adams_dialogue", "http://dbpedia.org/resource/Humpbacks:_From_Fire_to_Ice", "http://dbpedia.org/resource/Humrahi", "http://dbpedia.org/resource/Hungarian_Folk_Tales", "http://dbpedia.org/resource/Hungarian_basketball_league_system", "http://dbpedia.org/resource/Hungarian_handball_league_system", "http://dbpedia.org/resource/Hungarian_water_polo_league_system", "http://dbpedia.org/resource/Hunslet_Mill", "http://dbpedia.org/resource/Hunters_Brooke_arson", "http://dbpedia.org/resource/Hunting_for_Bambi", "http://dbpedia.org/resource/Hunyadi_L\u00e1szl\u00f3_(opera)", "http://dbpedia.org/resource/Hush,_Hush_(series)", "http://dbpedia.org/resource/Hutchinson_Novella", "http://dbpedia.org/resource/Hutsell_Computer_War_Games", "http://dbpedia.org/resource/Hydrogen_Jukebox", "http://dbpedia.org/resource/Hydrothermal_vents_and_seamounts_of_the_Azores", "http://dbpedia.org/resource/Hyper-Actives", "http://dbpedia.org/resource/American_Xplorer", "http://dbpedia.org/resource/Barmageddon", "http://dbpedia.org/resource/Contemporary_Psychoanalytic_Studies", "http://dbpedia.org/resource/Coraz\u00f3n_salvaje_(2009_telenovela)", "http://dbpedia.org/resource/Cybersurfers", "http://dbpedia.org/resource/Database_Console_Commands_(Transact-SQL)", "http://dbpedia.org/resource/Ender's_Game_(series)", "http://dbpedia.org/resource/Foreign_Relations_Series", "http://dbpedia.org/resource/Guadalupe_(telenovela)", "http://dbpedia.org/resource/Gutierritos_(1966_telenovela)", "http://dbpedia.org/resource/Hawaii_Five-0_(season_3)", "http://dbpedia.org/resource/Independent_People_(television)", "http://dbpedia.org/resource/John_W._Campbell_Memorial_Award_for_Best_Science_Fiction_Novel", "http://dbpedia.org/resource/Kerberos_Panzer_J\u00e4ger", "http://dbpedia.org/resource/Knallerfrauen", "http://dbpedia.org/resource/Koa'e_Fault_Zone", "http://dbpedia.org/resource/Kodak_Pixpro_S-1", "http://dbpedia.org/resource/Maggie:_It's_Me", "http://dbpedia.org/resource/Make_Bradford_British", "http://dbpedia.org/resource/Man_vs._Beast", "http://dbpedia.org/resource/Manoram-class_ferry", "http://dbpedia.org/resource/Maths_Mansion", "http://dbpedia.org/resource/Melbourne_Arts_Precinct", "http://dbpedia.org/resource/Mildred_Keith", "http://dbpedia.org/resource/Monk_(CITV)", "http://dbpedia.org/resource/Montyon_Prizes", "http://dbpedia.org/resource/Morrison_Hills", "http://dbpedia.org/resource/Motiv_Liebe", "http://dbpedia.org/resource/Mozart_und_Meisel", "http://dbpedia.org/resource/Mr._Mystic", "http://dbpedia.org/resource/Mundos_opuestos_(telenovela)", "http://dbpedia.org/resource/Music_at_Plush", "http://dbpedia.org/resource/Music_from_Eighteenth-Century_Prague", "http://dbpedia.org/resource/NABC_Player_of_the_Year", "http://dbpedia.org/resource/NFL_Fever_(series)", "http://dbpedia.org/resource/NFL_Full_Contact", "http://dbpedia.org/resource/Napol\u00e9on_(miniseries)", "http://dbpedia.org/resource/Next_Top_Model_(Greece)", "http://dbpedia.org/resource/Nieuport-Delage_Sesquiplan", "http://dbpedia.org/resource/Norge_1:50000", "http://dbpedia.org/resource/Operation_Priha", "http://dbpedia.org/resource/Operation_T\u00e2n", "http://dbpedia.org/resource/Oretachi_Geasen_Zoku_Sono", "http://dbpedia.org/resource/Ottoman\u2013Hotaki_War_(1722\u201327)", "http://dbpedia.org/resource/Oxford_Fashion_Week", "http://dbpedia.org/resource/Panasonic_Lumix_DMC-FZ38", "http://dbpedia.org/resource/Pasi\u00f3n_(telenovela)", "http://dbpedia.org/resource/Pentax_Q7", "http://dbpedia.org/resource/Penthouse_(telenovela)", "http://dbpedia.org/resource/Phantom_Agents", "http://dbpedia.org/resource/Philosophy_in_90_Minutes_series", "http://dbpedia.org/resource/Players_Tour_Championship_2014/2015", "http://dbpedia.org/resource/Pretty_Deadly", "http://dbpedia.org/resource/Professor_Kitzel", "http://dbpedia.org/resource/Pulse_(TV_series)", "http://dbpedia.org/resource/Ripley's_Bureau_of_Investigation", "http://dbpedia.org/resource/Roman\u2013Etruscan_Wars", "http://dbpedia.org/resource/Salyut_programme", "http://dbpedia.org/resource/Saturday_Showcase", "http://dbpedia.org/resource/Screen_Songs", "http://dbpedia.org/resource/Sega_Mega_Drive_Classic_Collection", "http://dbpedia.org/resource/Sexi_Mong", "http://dbpedia.org/resource/Sherlock_Holmes_(puppetry)", "http://dbpedia.org/resource/Skinny_Bitch_Fitness", "http://dbpedia.org/resource/Spooksville", "http://dbpedia.org/resource/Spotlight_(1975_TV_series)", "http://dbpedia.org/resource/Stairway_to_Stardom", "http://dbpedia.org/resource/Star_Cairns", "http://dbpedia.org/resource/Star_Wars:_Jedi_Apprentice", "http://dbpedia.org/resource/Summer_Nights_(concert_tour)", "http://dbpedia.org/resource/Synopses_of_the_British_Fauna", "http://dbpedia.org/resource/Taboo-Tattoo", "http://dbpedia.org/resource/Television_Newsreel", "http://dbpedia.org/resource/The_3rd_Hospital", "http://dbpedia.org/resource/The_Apprentice_(UK_series_seven)", "http://dbpedia.org/resource/The_Astronut_Show", "http://dbpedia.org/resource/The_Beach_Crew", "http://dbpedia.org/resource/The_Brig_Society", "http://dbpedia.org/resource/The_Chase_(U.S._game_show)", "http://dbpedia.org/resource/The_Electrification_of_the_Soviet_Union", "http://dbpedia.org/resource/The_Golden_Touch_of_Frankie_Carle", "http://dbpedia.org/resource/The_Helga_Pictures", "http://dbpedia.org/resource/The_Hot_Breakfast", "http://dbpedia.org/resource/The_Indian_Picture_Opera", "http://dbpedia.org/resource/The_Magickers", "http://dbpedia.org/resource/The_National_Trust_(TV_series)", "http://dbpedia.org/resource/The_Paul_Lynde_Halloween_Special", "http://dbpedia.org/resource/The_Ran_Quadruplets", "http://dbpedia.org/resource/The_Scarlet_Letter_(opera)", "http://dbpedia.org/resource/The_Short_Oxford_History_of_the_Modern_World", "http://dbpedia.org/resource/The_Superior_Foes_of_Spider-Man", "http://dbpedia.org/resource/The_Unsellables_(TV_series)", "http://dbpedia.org/resource/The_Wanderer_(1994_TV_series)", "http://dbpedia.org/resource/The_Wicked_Years", "http://dbpedia.org/resource/The_Widower_(film)", "http://dbpedia.org/resource/The_World_About_Us", "http://dbpedia.org/resource/Toophan", "http://dbpedia.org/resource/Treasure_Hunter", "http://dbpedia.org/resource/Tutinama", "http://dbpedia.org/resource/Ultimate_Comics:_Iron_Man", "http://dbpedia.org/resource/Uncanny_X-Force", "http://dbpedia.org/resource/Variety_Tonight", "http://dbpedia.org/resource/Vater_wider_Willen", "http://dbpedia.org/resource/Vermillion_(Helix)", "http://dbpedia.org/resource/Von_Null_auf_42", "http://dbpedia.org/resource/WNBL_Grand_Final", "http://dbpedia.org/resource/Wanneroo_wetlands", "http://dbpedia.org/resource/Weird_Wars", "http://dbpedia.org/resource/Where_the_Heart_Is_(US_TV_series)", "http://dbpedia.org/resource/Wings_Over_the_World_tour", "http://dbpedia.org/resource/X-Men:_The_198", "http://dbpedia.org/resource/Eagle_series", "http://dbpedia.org/resource/Earth_Defense_Force_(series)", "http://dbpedia.org/resource/Earthsea_(book_series)", "http://dbpedia.org/resource/Dutch_Supercar_Challenge", "http://dbpedia.org/resource/E3_(disambiguation)", "http://dbpedia.org/resource/EOWS", "http://dbpedia.org/resource/ESPN2_College_Football_Friday_Primetime", "http://dbpedia.org/resource/Jasoosi_Dunya", "http://dbpedia.org/resource/Jat_reservation_agitation", "http://dbpedia.org/resource/Jazz_Casual", "http://dbpedia.org/resource/Jazz_Inspired", "http://dbpedia.org/resource/Jazz_Meets_Folk", "http://dbpedia.org/resource/Jazz_Profiles", "http://dbpedia.org/resource/Jazzmatazz", "http://dbpedia.org/resource/Jenny_Sparks:_The_Secret_History_of_the_Authority", "http://dbpedia.org/resource/Jepht\u00e9", "http://dbpedia.org/resource/Jerry_Cornelius", "http://dbpedia.org/resource/Jerry_on_the_Job", "http://dbpedia.org/resource/Jersey_International_Air_Display", "http://dbpedia.org/resource/ATTO_dyes", "http://dbpedia.org/resource/CrankyGeeks", "http://dbpedia.org/resource/Dragon_Ball_Z:_The_Legacy_of_Goku_(series)", "http://dbpedia.org/resource/Erica_Enders-Stevens", "http://dbpedia.org/resource/Kiah_&_Tara_Jean", "http://dbpedia.org/resource/MTV_Force_India_The_Fast_and_The_Gorgeous", "http://dbpedia.org/resource/Marcador_Internacional", "http://dbpedia.org/resource/Norman_Ormal", "http://dbpedia.org/resource/Ontopic", "http://dbpedia.org/resource/Our_House_(UKTV_Style)", "http://dbpedia.org/resource/PBA_on_Sports5", "http://dbpedia.org/resource/Paraquat_murders", "http://dbpedia.org/resource/Ram_Milaayi_Jodi", "http://dbpedia.org/resource/Schnell_ermittelt", "http://dbpedia.org/resource/Split_Ends_(UK_TV_series)", "http://dbpedia.org/resource/Tamer_Wa_Shaw'eyyah", "http://dbpedia.org/resource/The_Amazing_Mr._Malone", "http://dbpedia.org/resource/The_Flying_Dogtor", "http://dbpedia.org/resource/The_Frontier_(TV_series)", "http://dbpedia.org/resource/The_Story_of_Modern_Science", "http://dbpedia.org/resource/The_Unexplained_(2011_TV_series)", "http://dbpedia.org/resource/The_Worst_of_Hollywood", "http://dbpedia.org/resource/Thor_Steingraber", "http://dbpedia.org/resource/Three_Commentaries_on_the_Spring_and_Autumn_Annals", "http://dbpedia.org/resource/Travel_Sick", "http://dbpedia.org/resource/Trucks_and_Tractor_Power", "http://dbpedia.org/resource/Airline_staff_travel", "http://dbpedia.org/resource/Banjul_Cops", "http://dbpedia.org/resource/Bridge_Builder", "http://dbpedia.org/resource/DAG_(TV_series)", "http://dbpedia.org/resource/Eurofest_2007", "http://dbpedia.org/resource/Garage_Matches", "http://dbpedia.org/resource/HYDROSOL", "http://dbpedia.org/resource/I.N.V.U.", "http://dbpedia.org/resource/Judie_Byrd's_Kitchen", "http://dbpedia.org/resource/Jul_i_T\u00f8yengata", "http://dbpedia.org/resource/King_of_the_Royal_Mounted", "http://dbpedia.org/resource/Les_Femmes_en_Blanc", "http://dbpedia.org/resource/Les_plaisirs_de_Versailles", "http://dbpedia.org/resource/Lizzie_The_Lizard", "http://dbpedia.org/resource/Los_disparates", "http://dbpedia.org/resource/Love_Celeb", "http://dbpedia.org/resource/Marina_(telenovela)", "http://dbpedia.org/resource/Mickey_Mouse_and_Friends_(TV_series)", "http://dbpedia.org/resource/Modest-class_barge", "http://dbpedia.org/resource/Myth-o-Mania", "http://dbpedia.org/resource/NOOMA", "http://dbpedia.org/resource/Neptune_Presents", "http://dbpedia.org/resource/Nikon_Coolpix_7900", "http://dbpedia.org/resource/Noche_de_Gala", "http://dbpedia.org/resource/Open_Door_(BBC_TV)", "http://dbpedia.org/resource/Out_of_the_Fog_(TV_series)", "http://dbpedia.org/resource/Outriders", "http://dbpedia.org/resource/Paddington_(1975_TV_series)", "http://dbpedia.org/resource/Pals_For_Life", "http://dbpedia.org/resource/Proceedings_of_the_British_Academy", "http://dbpedia.org/resource/Project_Gotham_Racing_(series)", "http://dbpedia.org/resource/Psychedelic_States", "http://dbpedia.org/resource/RS_Integrator", "http://dbpedia.org/resource/Rajshree-class_inshore_patrol_vessel", "http://dbpedia.org/resource/Richard_Edgar", "http://dbpedia.org/resource/Sex_and_Shopping", "http://dbpedia.org/resource/Slinky_Malinki", "http://dbpedia.org/resource/Slinky_Malinki_Open_The_Door", "http://dbpedia.org/resource/Sportsline_(Sky_News)", "http://dbpedia.org/resource/Steel_Monsters", "http://dbpedia.org/resource/Story_of_the_Nations_series", "http://dbpedia.org/resource/Strat_Plus", "http://dbpedia.org/resource/Super_Kwentuhan", "http://dbpedia.org/resource/Taien_calendar", "http://dbpedia.org/resource/Telstra_Business_Awards", "http://dbpedia.org/resource/The_Allan_Stewart_Tapes", "http://dbpedia.org/resource/The_Brave_Fighter_of_Legend_Da-Garn", "http://dbpedia.org/resource/The_Calendar_of_Nature", "http://dbpedia.org/resource/The_Catholic_Hour_(TV_series)", "http://dbpedia.org/resource/The_Den_(Ireland)", "http://dbpedia.org/resource/The_Hungry_Detective", "http://dbpedia.org/resource/The_Mentor_Philosophers", "http://dbpedia.org/resource/The_Miracle_of_Bali", "http://dbpedia.org/resource/The_Pat_Kenny_Show", "http://dbpedia.org/resource/The_Queendom_of_Sol", "http://dbpedia.org/resource/The_Sierra_Jensen_Series", "http://dbpedia.org/resource/The_Silent_Ones_(comics)", "http://dbpedia.org/resource/The_Sword_of_Truth", "http://dbpedia.org/resource/The_Tommy_Hanlon_Show", "http://dbpedia.org/resource/The_Wright_Taste", "http://dbpedia.org/resource/This_Is_Your_Life_(UK_TV_series)", "http://dbpedia.org/resource/Th\u00e9\u00e2tre_Optique", "http://dbpedia.org/resource/Tonight_(TVNZ_television_programme)", "http://dbpedia.org/resource/United_States_naval_gunfire_support_debate", "http://dbpedia.org/resource/Valeria_(telenovela)", "http://dbpedia.org/resource/Venom:_Lethal_Protector", "http://dbpedia.org/resource/Wakakusa_no_Charlotte", "http://dbpedia.org/resource/Waverley_Novels", "http://dbpedia.org/resource/Weekend_Escapes_with_Warwick_Davis", "http://dbpedia.org/resource/Wil_&_Lehmo", "http://dbpedia.org/resource/Wyoming_Marathon", "http://dbpedia.org/resource/Xuanming_calendar", "http://dbpedia.org/resource/Zaregoto_Series", "http://dbpedia.org/resource/Escobar,_el_Patr\u00f3n_del_Mal", "http://dbpedia.org/resource/Esmeralda_(Brazilian_telenovela)", "http://dbpedia.org/resource/Espejismo_(telenovela)", "http://dbpedia.org/resource/Estafa_de_amor_(1968_telenovela)", "http://dbpedia.org/resource/Esther_(opera)", "http://dbpedia.org/resource/Action_Movie_Kid", "http://dbpedia.org/resource/Coliseum_Mineral,_Fossil,_Gem,_and_Jewelry_Show", "http://dbpedia.org/resource/Dog_&_Cat_Training_with_Joel_Silverman", "http://dbpedia.org/resource/Eastside_Hockey_Manager_series", "http://dbpedia.org/resource/Forever_(U.S._TV_series)", "http://dbpedia.org/resource/Full_Color_Football:_The_History_of_the_American_Football_League", "http://dbpedia.org/resource/Give_Us_This_Day_(Australian_TV_series)", "http://dbpedia.org/resource/Good_Morning,_Internet!", "http://dbpedia.org/resource/ICC_Africa_Under-19_Championships", "http://dbpedia.org/resource/In_Person_(TV_series)", "http://dbpedia.org/resource/Jinnah\u2013Mountbatten_Talks", "http://dbpedia.org/resource/June_Field", "http://dbpedia.org/resource/Keep_It_in_the_Family_(U.S._game_show)", "http://dbpedia.org/resource/La_mujer_prohibida_(1991_telenovela)", "http://dbpedia.org/resource/La_vie_secr\u00e8te_des_jeunes", "http://dbpedia.org/resource/Le_Club_des_100_Watts", "http://dbpedia.org/resource/Le_lac_des_f\u00e9es", "http://dbpedia.org/resource/Lent_Bumps_2015", "http://dbpedia.org/resource/Lepa_Brena_Live_at_Dom_sindikata", "http://dbpedia.org/resource/List_of_The_Middle_characters", "http://dbpedia.org/resource/Liverpool_Boat_Show", "http://dbpedia.org/resource/Lunar_Orbiter_program", "http://dbpedia.org/resource/Magic_Pickle", "http://dbpedia.org/resource/Manhattan_Connection", "http://dbpedia.org/resource/Marketplace_(Irish_TV_series)", "http://dbpedia.org/resource/Mati_O_Manush", "http://dbpedia.org/resource/Matri_Shree_Media_Award", "http://dbpedia.org/resource/Mi_amor_por_ti", "http://dbpedia.org/resource/Mike's_On", "http://dbpedia.org/resource/Milano-Roma", "http://dbpedia.org/resource/Mr._Interesting's_Guide_to_the_Continental_United_States", "http://dbpedia.org/resource/Mr._and_Mrs._Spider-Man", "http://dbpedia.org/resource/My_Destiny_(TV_series)", "http://dbpedia.org/resource/My_Dysfunctional_Family", "http://dbpedia.org/resource/M\u00e1s_all\u00e1_de_la_muerte", "http://dbpedia.org/resource/Neva_Enfilade_of_the_Winter_Palace", "http://dbpedia.org/resource/Ninja_Spirit_(video_series)", "http://dbpedia.org/resource/Nit\u00e9tis", "http://dbpedia.org/resource/OMAP", "http://dbpedia.org/resource/Off_to_See_the_Wizard", "http://dbpedia.org/resource/On_the_Fringe", "http://dbpedia.org/resource/Opera_Theatre_of_Lucca", "http://dbpedia.org/resource/Operation_Liberate_Men", "http://dbpedia.org/resource/Otoriyose_\u014cji_Iida_Yoshimi", "http://dbpedia.org/resource/Parent_Rescue", "http://dbpedia.org/resource/Pentax_*ist_DL", "http://dbpedia.org/resource/Periods.", "http://dbpedia.org/resource/Petrotrin_oil_spill", "http://dbpedia.org/resource/Phoenix14news", "http://dbpedia.org/resource/Planes_That_Never_Flew", "http://dbpedia.org/resource/Popstars_(UK_TV_series)", "http://dbpedia.org/resource/Power_Play_(Canadian_political_affairs_series)", "http://dbpedia.org/resource/Prime_Time_Sports", "http://dbpedia.org/resource/Product_pipeline", "http://dbpedia.org/resource/Property_Shop", "http://dbpedia.org/resource/Pupu_Tupuna", "http://dbpedia.org/resource/Russian_Dolls_(U.S._TV_series)", "http://dbpedia.org/resource/SOKO_Rhein-Main", "http://dbpedia.org/resource/Santa_Paws", "http://dbpedia.org/resource/Shadow_Hearts_(series)", "http://dbpedia.org/resource/Spell_Cast", "http://dbpedia.org/resource/SunPCi", "http://dbpedia.org/resource/Sunday_Football_(AFL)", "http://dbpedia.org/resource/Sunday_Suspense", "http://dbpedia.org/resource/Surprise_Sur_Prise", "http://dbpedia.org/resource/S\u00e1bado_Al_Mediod\u00eda", "http://dbpedia.org/resource/TVNZ_Teletext", "http://dbpedia.org/resource/TV_Patrol_Caraga", "http://dbpedia.org/resource/The_Bounty_Hunter_Wars", "http://dbpedia.org/resource/The_Catholic_Guy", "http://dbpedia.org/resource/The_Dark_Tower:_Battle_of_Jericho_Hill", "http://dbpedia.org/resource/The_Holdfast_Chronicles", "http://dbpedia.org/resource/The_Little_Revue", "http://dbpedia.org/resource/The_Parade_of_States", "http://dbpedia.org/resource/The_Shock_of_the_New", "http://dbpedia.org/resource/The_Snow_Queen_(anime)", "http://dbpedia.org/resource/The_Trek_Life", "http://dbpedia.org/resource/The_Vinyl_Cafe", "http://dbpedia.org/resource/The_Who_Tour_1965", "http://dbpedia.org/resource/Theory_of_Lie_groups", "http://dbpedia.org/resource/Think_Fast_(game_show)", "http://dbpedia.org/resource/Tuborg_GreenFest", "http://dbpedia.org/resource/Ultimate_Motorhead_Show", "http://dbpedia.org/resource/Un_si\u00e8cle_d'\u00e9crivains", "http://dbpedia.org/resource/Uncensored_from_Texas_Death_Row", "http://dbpedia.org/resource/Vanessa_(TV_series)", "http://dbpedia.org/resource/Veep_(TV_series)", "http://dbpedia.org/resource/We_Are_the_Eighties", "http://dbpedia.org/resource/Wiley_Bad_Science_Series", "http://dbpedia.org/resource/Wrestling_Spirit", "http://dbpedia.org/resource/YU_retROCKspektiva", "http://dbpedia.org/resource/Seoul_Motor_Show", "http://dbpedia.org/resource/June_2008_tornado_outbreak_sequence", "http://dbpedia.org/resource/J\u016bs\u014d_Kik\u014d_Dancouga_Nova", "http://dbpedia.org/resource/Kin'iro_no_Corda:_The_After_School_Etude", "http://dbpedia.org/resource/Kumikyoku_Nico_Nico_Douga", "http://dbpedia.org/resource/Legends_of_Hockey", "http://dbpedia.org/resource/Les_plus_grands_Belges", "http://dbpedia.org/resource/Men's_Fashion_Insider", "http://dbpedia.org/resource/Mistresses_(UK_TV_series)", "http://dbpedia.org/resource/Nokia_5200", "http://dbpedia.org/resource/Northern_Moravia_witch_trials", "http://dbpedia.org/resource/Oblivious_(U.S._game_show)", "http://dbpedia.org/resource/Piatigorsky_Cup", "http://dbpedia.org/resource/Sunday_Night_at_10", "http://dbpedia.org/resource/The_Space_Ship_Under_the_Apple_Tree", "http://dbpedia.org/resource/The_World_in_Action", "http://dbpedia.org/resource/24K_(radio_show)", "http://dbpedia.org/resource/Appointment_with_Adventure", "http://dbpedia.org/resource/Expedici\u00f3n_Robinson", "http://dbpedia.org/resource/F\u00eate_Galante_(opera)", "http://dbpedia.org/resource/Glamour_Solos", "http://dbpedia.org/resource/Greensleeves_Rhythm_Album", "http://dbpedia.org/resource/High_Score_Girl", "http://dbpedia.org/resource/ISpy", "http://dbpedia.org/resource/Kinder,_Kinder", "http://dbpedia.org/resource/La_caverne", "http://dbpedia.org/resource/Le_crescendo", "http://dbpedia.org/resource/Leica_X_Vario", "http://dbpedia.org/resource/Life_in_Progress", "http://dbpedia.org/resource/Louisville_sewer_explosions", "http://dbpedia.org/resource/MTV_World_Stage_Live_in_Malaysia", "http://dbpedia.org/resource/Main_Julian_England", "http://dbpedia.org/resource/Malta_Convoys", "http://dbpedia.org/resource/Man_Booker_International_Prize", "http://dbpedia.org/resource/Mart\u00edn_Rivas_(telenovela)", "http://dbpedia.org/resource/Meet_the_Stans", "http://dbpedia.org/resource/Mumbai_Confidential", "http://dbpedia.org/resource/Nebula_Award_for_Best_Short_Story", "http://dbpedia.org/resource/Official_National_Lampoon_Bicentennial_Calendar_1976", "http://dbpedia.org/resource/Olympus_mju", "http://dbpedia.org/resource/On_Your_Behalf", "http://dbpedia.org/resource/Oxford_Chemistry_Primers", "http://dbpedia.org/resource/P3_Dokument\u00e4r", "http://dbpedia.org/resource/PTV_Global", "http://dbpedia.org/resource/Peavey_ValveKing", "http://dbpedia.org/resource/Peter_Steiners_Theaterstadl", "http://dbpedia.org/resource/Piano_Lesson_(TV_series)", "http://dbpedia.org/resource/Priest's_Spell_Compendium", "http://dbpedia.org/resource/Proleptic_calendar", "http://dbpedia.org/resource/Rawdatu_'s-safa", "http://dbpedia.org/resource/Red_Bull_Music_Academy", "http://dbpedia.org/resource/Red_Guards_on_Honghu_Lake", "http://dbpedia.org/resource/Red_White_&_New", "http://dbpedia.org/resource/Robertson_Cup_Championship_Tournament", "http://dbpedia.org/resource/Rote_Bergsteiger_(TV_series)", "http://dbpedia.org/resource/Sail_Indonesia", "http://dbpedia.org/resource/Scaly_Adventures", "http://dbpedia.org/resource/Scania_F-series", "http://dbpedia.org/resource/Sesquicentenary_Celebrations_Series", "http://dbpedia.org/resource/Shane_(UK_TV_series)", "http://dbpedia.org/resource/Shirley_Abicair_in_Australia", "http://dbpedia.org/resource/Solaris_Urbino_10", "http://dbpedia.org/resource/Sony_Cyber-shot_DSC-RX100_IV", "http://dbpedia.org/resource/Sprite_(soft_drink)", "http://dbpedia.org/resource/Super_thermal_power_station", "http://dbpedia.org/resource/Swing_Easy_(TV_series)", "http://dbpedia.org/resource/Sylvain_et_Sylvette", "http://dbpedia.org/resource/The_Best_of_the_Post", "http://dbpedia.org/resource/The_Disney_Collection:_The_Best-Loved_Songs_from_Disney_Motion_Pictures,_Television,_and_Theme_Parks", "http://dbpedia.org/resource/The_Essentials_(TCM)", "http://dbpedia.org/resource/The_Likeaballs", "http://dbpedia.org/resource/The_Magic_School_Bus_(book_series)", "http://dbpedia.org/resource/The_Mike_Bullard_Show", "http://dbpedia.org/resource/The_New_Heroes", "http://dbpedia.org/resource/The_Pattern_of_Marriage", "http://dbpedia.org/resource/The_Star_and_the_Story", "http://dbpedia.org/resource/The_Towers_of_Bois-Maury", "http://dbpedia.org/resource/The_Wild_Soccer_Bunch", "http://dbpedia.org/resource/This_is_Your_Laugh", "http://dbpedia.org/resource/Top_Guns", "http://dbpedia.org/resource/Tsubu_Doll", "http://dbpedia.org/resource/Ultra_Marines", "http://dbpedia.org/resource/Una_mujer_(1965_telenovela)", "http://dbpedia.org/resource/Unterwegs_nach_Atlantis_(TV_series)", "http://dbpedia.org/resource/Video_Smash_Hits", "http://dbpedia.org/resource/Walter_Sutcliffe", "http://dbpedia.org/resource/Western_Holiday", "http://dbpedia.org/resource/Your_Life_in_Their_Hands", "http://dbpedia.org/resource/\u00c1gua_Viva_(telenovela)", "http://dbpedia.org/resource/2_Minute_Drill", "http://dbpedia.org/resource/America's_Money_Class_with_Suze_Orman", "http://dbpedia.org/resource/America_\u014cdan_Ultra_Quiz", "http://dbpedia.org/resource/Animal_Cops:_South_Africa", "http://dbpedia.org/resource/Associated_Shades", "http://dbpedia.org/resource/Cool_Zone", "http://dbpedia.org/resource/Die_Didi-Show", "http://dbpedia.org/resource/Fish_(U.S._TV_series)", "http://dbpedia.org/resource/Fons_and_Porter's_Love_of_Quilting", "http://dbpedia.org/resource/Friday_Island_(TV_show)", "http://dbpedia.org/resource/Give_Us_This_Day_(TV_show)", "http://dbpedia.org/resource/Grandpa_Read's_Quiet_Time_Tales", "http://dbpedia.org/resource/Happiness_(TV_series)", "http://dbpedia.org/resource/Hollywood_or_Bust_(TV_series)", "http://dbpedia.org/resource/House_Calendar", "http://dbpedia.org/resource/Japan_Academy_Prize_for_Outstanding_Performance_by_an_Actor_in_a_Leading_Role", "http://dbpedia.org/resource/Kaiki_Renai_Sakusen", "http://dbpedia.org/resource/King_of_Vegas", "http://dbpedia.org/resource/Kodak_EasyShare_DX6490", "http://dbpedia.org/resource/Korean_DMZ_Conflict_(1966\u201369)", "http://dbpedia.org/resource/La_Femme_Nikita:_Music_from_the_Television_Series", "http://dbpedia.org/resource/Larry_King_Now", "http://dbpedia.org/resource/Legacy_of_the_Drow", "http://dbpedia.org/resource/Legionnaires_3", "http://dbpedia.org/resource/Leica_M4", "http://dbpedia.org/resource/Licence_to_Grill", "http://dbpedia.org/resource/Local_Edition", "http://dbpedia.org/resource/Locus_Award_for_Best_Short_Story", "http://dbpedia.org/resource/Man-seated:_arms_in_adoration_(hieroglyph)", "http://dbpedia.org/resource/Manu_Rere", "http://dbpedia.org/resource/Marian_Engel_Award", "http://dbpedia.org/resource/Marie_de'_Medici_cycle", "http://dbpedia.org/resource/Marvel_Super_Hero_Squad", "http://dbpedia.org/resource/Mastigont_system", "http://dbpedia.org/resource/Meet_McGraw", "http://dbpedia.org/resource/Mike,_der_Taschengeldexperte", "http://dbpedia.org/resource/Mitsudomoe_(manga)", "http://dbpedia.org/resource/Mountain_Dew_Vertical_Challenge", "http://dbpedia.org/resource/Mr._Personality", "http://dbpedia.org/resource/Mutiny_Acts", "http://dbpedia.org/resource/NATO_targets", "http://dbpedia.org/resource/NForce_700", "http://dbpedia.org/resource/Naniwa_Kin'y\u016bd\u014d", "http://dbpedia.org/resource/Nathans_Circus", "http://dbpedia.org/resource/Neo_Pornographia", "http://dbpedia.org/resource/Noises,_Sounds_&_Sweet_Airs", "http://dbpedia.org/resource/Noticiero_Cript\u00f3n", "http://dbpedia.org/resource/On-ride_camera", "http://dbpedia.org/resource/On_the_Real", "http://dbpedia.org/resource/One_Night_Stand_(U.S._TV_series)", "http://dbpedia.org/resource/Pilot_&_Huxley", "http://dbpedia.org/resource/Piltdown,_East_Sussex", "http://dbpedia.org/resource/Pressure_Cooker_(game_show)", "http://dbpedia.org/resource/Provincial_Geographies_of_India", "http://dbpedia.org/resource/Reina_de_corazones_(American_telenovela)", "http://dbpedia.org/resource/Rikki_and_Me", "http://dbpedia.org/resource/Roshan_Sitara", "http://dbpedia.org/resource/Rough_Crossing_(TV_series)", "http://dbpedia.org/resource/Rugrats_Pre-School_Daze", "http://dbpedia.org/resource/Running_Man_(TV_series)", "http://dbpedia.org/resource/SD_Gundam_G_Generation", "http://dbpedia.org/resource/Sandymount_Strand", "http://dbpedia.org/resource/SevenMeters", "http://dbpedia.org/resource/Shell's_Wonderful_World_of_Golf", "http://dbpedia.org/resource/Sony_A5000", "http://dbpedia.org/resource/South_Sinai_regional_development_programme", "http://dbpedia.org/resource/Sports_Today", "http://dbpedia.org/resource/Spotlight_(2008_TV_series)", "http://dbpedia.org/resource/Strip_Poker_(game_show)", "http://dbpedia.org/resource/Sunny_Days_and_Nights", "http://dbpedia.org/resource/Sword_and_Sorceress_series", "http://dbpedia.org/resource/TEXUS", "http://dbpedia.org/resource/TV_Hell", "http://dbpedia.org/resource/TV_Patrol_Pampanga", "http://dbpedia.org/resource/Thai_lunar_calendar", "http://dbpedia.org/resource/Thanks_of_Congress", "http://dbpedia.org/resource/That'll_Be_the_Day_(musical)", "http://dbpedia.org/resource/That's_My_Desire_(TV_series)", "http://dbpedia.org/resource/The_American_Revolution_(miniseries)", "http://dbpedia.org/resource/The_Ballad_of_Canal", "http://dbpedia.org/resource/The_Black_Man's_Land_Trilogy", "http://dbpedia.org/resource/The_Dark_Tower:_The_Little_Sisters_of_Eluria", "http://dbpedia.org/resource/The_Golden_Show", "http://dbpedia.org/resource/The_Mole_(U.S._TV_series)", "http://dbpedia.org/resource/The_Morbegs", "http://dbpedia.org/resource/The_Sadhu", "http://dbpedia.org/resource/Th\u00e9s\u00e9e_(Gossec)", "http://dbpedia.org/resource/Tin_Goyenda", "http://dbpedia.org/resource/Tombs_of_Malta", "http://dbpedia.org/resource/Tonda_Couple", "http://dbpedia.org/resource/Tonight_(TV_programme)", "http://dbpedia.org/resource/Ultimate_Power", "http://dbpedia.org/resource/Un_caso_di_coscienza_(TV_series)", "http://dbpedia.org/resource/Weltflug.tv_\u2013_The_Gyrocopter_World_Tour", "http://dbpedia.org/resource/Wildfire_(TV_series)", "http://dbpedia.org/resource/Worldwide_Soccer:_Euro_Edition", "http://dbpedia.org/resource/X-Men_Unlimited", "http://dbpedia.org/resource/Yele_Sambat", "http://dbpedia.org/resource/Yuri_Seijin_Naoko-san", "http://dbpedia.org/resource/\u010cty\u0159l\u00edstek", "http://dbpedia.org/resource/Kunicon", "http://dbpedia.org/resource/Kupetzky_(TV_series)", "http://dbpedia.org/resource/Kvarteret_Skatan", "http://dbpedia.org/resource/L'Affaire_Labricole", "http://dbpedia.org/resource/L'ambassadrice", "http://dbpedia.org/resource/L'amor_coniugale", "http://dbpedia.org/resource/L'heureux_malgr\u00e9_lui", "http://dbpedia.org/resource/L'incoronazione_di_Poppea", "http://dbpedia.org/resource/L'oriflamme_(opera)", "http://dbpedia.org/resource/L'\u00c9cole_des_fans", "http://dbpedia.org/resource/L'\u00c9l\u00e8ve_Ducobu", "http://dbpedia.org/resource/L'\u00c9tat_de_Grace", "http://dbpedia.org/resource/L'\u00c9t\u00e9_indien_(TV_program)", "http://dbpedia.org/resource/After_the_Attack", "http://dbpedia.org/resource/Bagong_Umaga,_Bagong_Balita", "http://dbpedia.org/resource/CLICK_Barkada_Hunt", "http://dbpedia.org/resource/David_Haye_versus", "http://dbpedia.org/resource/E-Branch_Trilogy", "http://dbpedia.org/resource/Family_Beef", "http://dbpedia.org/resource/Grand_Slam_(1990_TV_series)", "http://dbpedia.org/resource/Grand_Slam_(U.S._game_show)", "http://dbpedia.org/resource/Greg_Anderson_(dragster_driver)", "http://dbpedia.org/resource/Horrible_Histories:_Nottingham", "http://dbpedia.org/resource/It's_a_Wise_Child", "http://dbpedia.org/resource/Jock_Jams", "http://dbpedia.org/resource/Jonah_(miniseries)", "http://dbpedia.org/resource/Kerala_State_Film_Award", "http://dbpedia.org/resource/Kick-Ass_2_(comics)", "http://dbpedia.org/resource/La_mujer_de_Judas_(Mexican_telenovela)", "http://dbpedia.org/resource/Legacy_of_the_May_Revolution", "http://dbpedia.org/resource/Lent_Bumps_2005", "http://dbpedia.org/resource/Live_by_Request", "http://dbpedia.org/resource/Los_Horcones_massacre", "http://dbpedia.org/resource/Low_Carbon_Building_Programme", "http://dbpedia.org/resource/Lucy_of_the_Southern_Rainbow", "http://dbpedia.org/resource/MTV_Video_Music_Award_for_Best_Art_Direction", "http://dbpedia.org/resource/Machos_(telenovela)", "http://dbpedia.org/resource/Magdalena_(telenovela)", "http://dbpedia.org/resource/Making_Miracles", "http://dbpedia.org/resource/Mandingo_Massacre", "http://dbpedia.org/resource/Martin_Shaw:_Aviators", "http://dbpedia.org/resource/Masters_of_Survival", "http://dbpedia.org/resource/Medita\u00e7\u00e3o_(prose)", "http://dbpedia.org/resource/Meri_Saheli_Meri_Humjoli", "http://dbpedia.org/resource/Michael_Bentine's_Potty_Time", "http://dbpedia.org/resource/Misterbnb", "http://dbpedia.org/resource/Modern_Pentathlon_World_Cup", "http://dbpedia.org/resource/Moral_Essays", "http://dbpedia.org/resource/Morning_Star_(Philippine_TV_show)", "http://dbpedia.org/resource/Music_of_the_Front_Mission_series", "http://dbpedia.org/resource/NForce_500", "http://dbpedia.org/resource/NHL_FaceOff", "http://dbpedia.org/resource/Nass_Mlah_City_2", "http://dbpedia.org/resource/Near_Death_(comics)", "http://dbpedia.org/resource/Night_Court_U.S.A.", "http://dbpedia.org/resource/Nikolai_Dante", "http://dbpedia.org/resource/Noticieros_56", "http://dbpedia.org/resource/Nzebi_languages", "http://dbpedia.org/resource/Official_DC_Index", "http://dbpedia.org/resource/Official_History_of_Australia_in_the_War_of_1914\u20131918", "http://dbpedia.org/resource/Open_de_Nice_C\u00f4te_d'Azur", "http://dbpedia.org/resource/Outside_Source", "http://dbpedia.org/resource/PUC19", "http://dbpedia.org/resource/Paddington_Bear_(1989_TV_series)", "http://dbpedia.org/resource/Panasonic_Lumix_DMC-LZ30", "http://dbpedia.org/resource/Pay_Off_Your_Mortgage_in_Two_Years", "http://dbpedia.org/resource/Pop,_Songs_&_Death", "http://dbpedia.org/resource/Princess_Fragrant", "http://dbpedia.org/resource/Proware_Epica_(RAID_series)", "http://dbpedia.org/resource/Q_&_Q", "http://dbpedia.org/resource/Quantum_and_Woody", "http://dbpedia.org/resource/Quirpa_de_Tres_Mujeres", "http://dbpedia.org/resource/Rabbit_Bites", "http://dbpedia.org/resource/Richard_Ng_six_star_gau_gau_zan", "http://dbpedia.org/resource/Rio_Del_Mar_(1999_TV_series)", "http://dbpedia.org/resource/Roland_CUBE", "http://dbpedia.org/resource/Rolleicord", "http://dbpedia.org/resource/Root_beer", "http://dbpedia.org/resource/Royal_Lancashire_Show", "http://dbpedia.org/resource/Seven_Second_Delay", "http://dbpedia.org/resource/Shaman's_Tears", "http://dbpedia.org/resource/Sicilian_Film_Festival", "http://dbpedia.org/resource/Six_Degrees", "http://dbpedia.org/resource/Sony_Handycam_NEX-VG10", "http://dbpedia.org/resource/Sony_Vaio_FW_series", "http://dbpedia.org/resource/Spaceware_Sky_Vision_II", "http://dbpedia.org/resource/Spirit_Bay", "http://dbpedia.org/resource/Sports_Tonight_(Ireland)", "http://dbpedia.org/resource/Spy_High", "http://dbpedia.org/resource/Star_Knows_My_Heart", "http://dbpedia.org/resource/Suffolk_Show", "http://dbpedia.org/resource/Super_Agent", "http://dbpedia.org/resource/Survivor_(TV_series)", "http://dbpedia.org/resource/Survivor_Live", "http://dbpedia.org/resource/Takio", "http://dbpedia.org/resource/Tales_of_the_Zombie", "http://dbpedia.org/resource/Tektronix_4050", "http://dbpedia.org/resource/The_ALTdot_COMedy_Lounge", "http://dbpedia.org/resource/The_AWA_Review", "http://dbpedia.org/resource/The_Addams_Family_(1992_animated_series)", "http://dbpedia.org/resource/The_Annual_World's_Best_SF", "http://dbpedia.org/resource/The_Back_Series", "http://dbpedia.org/resource/The_Best_American_Short_Stories", "http://dbpedia.org/resource/The_Big_Show_(with_Manic_Mike)", "http://dbpedia.org/resource/The_Blue_Octavo_Notebooks", "http://dbpedia.org/resource/The_Cartoon_History_of_the_Universe", "http://dbpedia.org/resource/The_Edge_with_Jake_Sasseville", "http://dbpedia.org/resource/The_Inheritance_Trilogy_(N.K._Jemisin)", "http://dbpedia.org/resource/The_Last_Rune", "http://dbpedia.org/resource/The_Last_Word_(TV_series)", "http://dbpedia.org/resource/The_Office_(UK_TV_series)", "http://dbpedia.org/resource/The_Sleeze_Brothers", "http://dbpedia.org/resource/The_Social_Seminar", "http://dbpedia.org/resource/The_Tribute_Show", "http://dbpedia.org/resource/The_Voice_Kids_(Greek_TV_series)", "http://dbpedia.org/resource/Timeless_Gift", "http://dbpedia.org/resource/Tiny_Titans", "http://dbpedia.org/resource/Top_Up_TV_Promotional_Channel", "http://dbpedia.org/resource/Victoria_and_Shane_Grow_Their_Own", "http://dbpedia.org/resource/Wales_on_the_Menu", "http://dbpedia.org/resource/Wide_World_of_Sports_(U.S._TV_series)", "http://dbpedia.org/resource/Wolf_Cub_Village", "http://dbpedia.org/resource/Women_Can_Do_It", "http://dbpedia.org/resource/Young_India_Fellowship", "http://dbpedia.org/resource/Young_Seven", "http://dbpedia.org/resource/Above_the_Line_(TV_series)", "http://dbpedia.org/resource/Animal_Cops:_Miami", "http://dbpedia.org/resource/Athu_Ithu_Ethu", "http://dbpedia.org/resource/Burke_(series)", "http://dbpedia.org/resource/Children's_Hospital_(2010_TV_series)", "http://dbpedia.org/resource/Digital_Arts_and_Culture", "http://dbpedia.org/resource/Express_Yourself_(TV_series)", "http://dbpedia.org/resource/GMA_Flash_Report", "http://dbpedia.org/resource/GMT_(TV_series)", "http://dbpedia.org/resource/Gin-Ryu", "http://dbpedia.org/resource/Golf_at_Altitude", "http://dbpedia.org/resource/Googoosh_Comeback_Tour", "http://dbpedia.org/resource/Grand_Theft_Auto_(series)", "http://dbpedia.org/resource/Hacked_(TV_series)", "http://dbpedia.org/resource/Hawaii_Five-O_(season_7)", "http://dbpedia.org/resource/Hollywood's_Top_Ten", "http://dbpedia.org/resource/House_Rules_(Australia_TV_series)", "http://dbpedia.org/resource/Immoral_Study", "http://dbpedia.org/resource/It_Takes_Two_(sitcom)", "http://dbpedia.org/resource/James_May's_Things_You_Need_To_Know", "http://dbpedia.org/resource/Jammin'", "http://dbpedia.org/resource/Keep_It_in_the_Family_(UK_game_show)", "http://dbpedia.org/resource/Kick-Ass_(film_series)", "http://dbpedia.org/resource/La_Intrusa_(Venezuelan_telenovela)", "http://dbpedia.org/resource/La_vestale", "http://dbpedia.org/resource/Lands_of_Lore_series", "http://dbpedia.org/resource/Legend_of_Chu_and_Han", "http://dbpedia.org/resource/Les_Anges_de_la_t\u00e9l\u00e9r\u00e9alit\u00e9", "http://dbpedia.org/resource/Lifepak", "http://dbpedia.org/resource/Love_Phones", "http://dbpedia.org/resource/M6_mine", "http://dbpedia.org/resource/Mari-chan", "http://dbpedia.org/resource/Marina_(Philippine_TV_series)", "http://dbpedia.org/resource/Melbourne_International_Flower_and_Garden_Show", "http://dbpedia.org/resource/Menus_for_Moderns", "http://dbpedia.org/resource/Mikhail_Kruglov", "http://dbpedia.org/resource/Mind_Fusion", "http://dbpedia.org/resource/Monster_Rancher", "http://dbpedia.org/resource/Munay-ki", "http://dbpedia.org/resource/Mustansiriya_University_bombings", "http://dbpedia.org/resource/Nabedache", "http://dbpedia.org/resource/No_Kitchen_Required", "http://dbpedia.org/resource/Nora_(telenovela)", "http://dbpedia.org/resource/Oi_Aparadektoi", "http://dbpedia.org/resource/Olympus_Camedia_C-700_Ultra_Zoom", "http://dbpedia.org/resource/Orson_Welles'_Great_Mysteries", "http://dbpedia.org/resource/Palibhasa_Sikat", "http://dbpedia.org/resource/Pass_the_Buck_(1998_UK_game_show)", "http://dbpedia.org/resource/Pehmed_ja_karvased", "http://dbpedia.org/resource/Pornstar_Acad\u00e9mie", "http://dbpedia.org/resource/Postal_(video_game_series)", "http://dbpedia.org/resource/Protagonistas_de_la_Fama", "http://dbpedia.org/resource/Raymondskill_Falls", "http://dbpedia.org/resource/Relaciones_geogr\u00e1ficas", "http://dbpedia.org/resource/Remembering_Bo", "http://dbpedia.org/resource/Republican_Party_presidential_debates,_2012", "http://dbpedia.org/resource/Rockgol", "http://dbpedia.org/resource/Rolls-Royce_RB282", "http://dbpedia.org/resource/Ronin_(DC_Comics)", "http://dbpedia.org/resource/Rosyjska_Ruletka", "http://dbpedia.org/resource/Safety_life_cycle", "http://dbpedia.org/resource/Scarlet_Spider_(comic_book)", "http://dbpedia.org/resource/Sony_NW-A800", "http://dbpedia.org/resource/Spycatcher_(TV_series)", "http://dbpedia.org/resource/Stadt,_Land,_Mord!", "http://dbpedia.org/resource/Sugar_Creek_Gang", "http://dbpedia.org/resource/Syncretistic_controversy", "http://dbpedia.org/resource/TITV_Everest_2007", "http://dbpedia.org/resource/TelSell", "http://dbpedia.org/resource/Thanaweya_Amma", "http://dbpedia.org/resource/The_Bird_That_Drinks_Blood", "http://dbpedia.org/resource/The_Book_of_the_New_Sun", "http://dbpedia.org/resource/The_Butterflies_of_Zagorsk", "http://dbpedia.org/resource/The_Curious_House_Guest", "http://dbpedia.org/resource/The_Dingilliad", "http://dbpedia.org/resource/The_Flip_(TV_Show)", "http://dbpedia.org/resource/The_Gisele_MacKenzie_Show", "http://dbpedia.org/resource/The_New_Annotated_Sherlock_Holmes", "http://dbpedia.org/resource/The_Race_Race", "http://dbpedia.org/resource/The_Smoke_House", "http://dbpedia.org/resource/The_Sons_of_Hercules", "http://dbpedia.org/resource/The_Spud_Goodman_Show", "http://dbpedia.org/resource/Tom_and_Jerry_Spotlight_Collection", "http://dbpedia.org/resource/Tomica_Hero_Series", "http://dbpedia.org/resource/True_Grime:_Crime_Scene_Clean_Up", "http://dbpedia.org/resource/Un_Paso_Adelante_(TV_series)", "http://dbpedia.org/resource/United_States_Road_Racing_Championship", "http://dbpedia.org/resource/Used_Car_Roadshow", "http://dbpedia.org/resource/WWE_Heroes", "http://dbpedia.org/resource/Wacky_Packages", "http://dbpedia.org/resource/Walt_Disney's_Funny_Factory", "http://dbpedia.org/resource/Welcome_Aboard_(NBC_TV_series)", "http://dbpedia.org/resource/Welsh_football_league_system", "http://dbpedia.org/resource/Zee_Gaurav_Puraskar", "http://dbpedia.org/resource/Lent_Bumps_2002", "http://dbpedia.org/resource/Lent_Bumps_2003", "http://dbpedia.org/resource/Lent_Bumps_2007", "http://dbpedia.org/resource/Lent_Bumps_2010", "http://dbpedia.org/resource/Lent_Bumps_2011", "http://dbpedia.org/resource/Lent_Bumps_2014", "http://dbpedia.org/resource/Lent_Bumps_2016", "http://dbpedia.org/resource/Les_Chemins_invisibles", "http://dbpedia.org/resource/Les_Coulisses_du_pouvoir", "http://dbpedia.org/resource/Les_Dingodossiers", "http://dbpedia.org/resource/Les_Habits_Noirs", "http://dbpedia.org/resource/Les_Pintades", "http://dbpedia.org/resource/Les_Poup\u00e9es_de_Paris", "http://dbpedia.org/resource/Les_amazones", "http://dbpedia.org/resource/Les_ann\u00e9es_lyc\u00e9e", "http://dbpedia.org/resource/Les_pieds_dans_le_plat", "http://dbpedia.org/resource/Les_sibarites", "http://dbpedia.org/resource/Les_troqueurs", "http://dbpedia.org/resource/Let's_Design", "http://dbpedia.org/resource/Let's_Do_Coffee", "http://dbpedia.org/resource/Let's_Go_Square_Dancing", "http://dbpedia.org/resource/Let's_Play_Reporter", "http://dbpedia.org/resource/Letters_of_Centinel", "http://dbpedia.org/resource/Letters_to_a_Philosophical_Unbeliever", "http://dbpedia.org/resource/Leviathan:_Political_Cabaret", "http://dbpedia.org/resource/Levyraati", "http://dbpedia.org/resource/Lewis_&_Clark:_Great_Journey_West", "http://dbpedia.org/resource/Lharn_Poo_Koo_E-Joo", "http://dbpedia.org/resource/Liaison_(TV_series)", "http://dbpedia.org/resource/Fireside_Theater", "http://dbpedia.org/resource/First_Dates_(Australia)", "http://dbpedia.org/resource/First_Dates_(Ireland)", "http://dbpedia.org/resource/First_North_Americans_(novels)", "http://dbpedia.org/resource/Flagship_Program", "http://dbpedia.org/resource/Man_bijt_hond", "http://dbpedia.org/resource/Manchester_Medieval_Studies", "http://dbpedia.org/resource/Mandeans", "http://dbpedia.org/resource/Maryland_(2022_film)", "http://dbpedia.org/resource/Guardians_of_Time_Trilogy", "http://dbpedia.org/resource/Grimm_(TV_Series)", "http://dbpedia.org/resource/Outback_ER", "http://dbpedia.org/resource/Oxford_Historical_Monographs", "http://dbpedia.org/resource/Paddle_Pop_Adventures", "http://dbpedia.org/resource/Panasonic_Lumix_DMC-GX8", "http://dbpedia.org/resource/Panpaka_Pants", "http://dbpedia.org/resource/Paper_Port_(TV_series)", "http://dbpedia.org/resource/Mindrocker_(series)", "http://dbpedia.org/resource/Mirko_and_Slavko", "http://dbpedia.org/resource/Pobre_millonaria", "http://dbpedia.org/resource/Post_Mart", "http://dbpedia.org/resource/Studio_86", "http://dbpedia.org/resource/Studio_Kafka", "http://dbpedia.org/resource/Subsequent_Nuremberg_trials", "http://dbpedia.org/resource/Sudu_Andagena_Kalu_Awidin", "http://dbpedia.org/resource/Sunagawa_Struggle", "http://dbpedia.org/resource/Suzakinishi_the_Animation", "http://dbpedia.org/resource/Svenska_nyheter", "http://dbpedia.org/resource/Tezaur_folcloric", "http://dbpedia.org/resource/The_Angel,_the_Devil_and_I", "http://dbpedia.org/resource/The_Case_Died_with_Her", "http://dbpedia.org/resource/The_Chinese_Road", "http://dbpedia.org/resource/The_Crusades,_An_Arab_Perspective", "http://dbpedia.org/resource/The_Dagger_and_the_Coin", "http://dbpedia.org/resource/The_Diana_Dors_Show", "http://dbpedia.org/resource/The_Diplomat_(TV_series)", "http://dbpedia.org/resource/The_Flying_Doctor_(TV_series)", "http://dbpedia.org/resource/The_Girl_from_the_Well", "http://dbpedia.org/resource/Panizzi_Lectures", "http://dbpedia.org/resource/Parking_Mad", "http://dbpedia.org/resource/Parliament_Hill_Rehabilitation", "http://dbpedia.org/resource/Women's_Tales", "http://dbpedia.org/resource/Women_in_German_history_series", "http://dbpedia.org/resource/Woobinda,_Animal_Doctor", "http://dbpedia.org/resource/World_Perspectives", "http://dbpedia.org/resource/World_Solar_Challenge_2013", "http://dbpedia.org/resource/Worlds_Beyond_(TV_series)", "http://dbpedia.org/resource/Wuthering_Heights_(1978_TV_serial)", "http://dbpedia.org/resource/Xochicuicatl_cuecuechtli", "http://dbpedia.org/resource/Planetary_Pebbles_(series)", "http://dbpedia.org/resource/Platonic_(TV_series)", "http://dbpedia.org/resource/Playbox_(1955_TV_series)", "http://dbpedia.org/resource/Players_Tour_Championship_2015/2016", "http://dbpedia.org/resource/Players_of_the_Faithful", "http://dbpedia.org/resource/Poori_(teledrama)", "http://dbpedia.org/resource/Karuk_people", "http://dbpedia.org/resource/Kaska_people", "http://dbpedia.org/resource/Sachi_Baat_SK_Niazi_k_Sath", "http://dbpedia.org/resource/SafeCare_(programme)", "http://dbpedia.org/resource/Sano_Ichiro", "http://dbpedia.org/resource/Sapporo_Super_Clear", "http://dbpedia.org/resource/Iraqi_Jews", "http://dbpedia.org/resource/Naagin_(TV_series)", "http://dbpedia.org/resource/Name_days_in_France", "http://dbpedia.org/resource/Agnes_Sorel_(opera)", "http://dbpedia.org/resource/Agni_(opera)", "http://dbpedia.org/resource/Agro_(puppet)", "http://dbpedia.org/resource/Ai_no_Gakko_Cuore_Monogatari", "http://dbpedia.org/resource/Aino_(opera)", "http://dbpedia.org/resource/Air-defense_experiments", "http://dbpedia.org/resource/Air_(comics)", "http://dbpedia.org/resource/Air_Creation_Fun", "http://dbpedia.org/resource/Air_Traffic_Controller_(video_game)", "http://dbpedia.org/resource/Airborne_Climax", "http://dbpedia.org/resource/Airborne_Fun", "http://dbpedia.org/resource/Airborne_Sting", "http://dbpedia.org/resource/Airport_Homes_race_riots", "http://dbpedia.org/resource/Airs_above_the_ground", "http://dbpedia.org/resource/Aisa_Karay_Ga_Toh_Maray_Ga", "http://dbpedia.org/resource/Alan_Moore's_Yuggoth_Cultures_and_Other_Growths", "http://dbpedia.org/resource/Alan_Parker_(radio_show)", "http://dbpedia.org/resource/Alara_(fairy)", "http://dbpedia.org/resource/Alarm_in_den_Bergen", "http://dbpedia.org/resource/Alasdair_Fotheringham", "http://dbpedia.org/resource/Alaska_Daily", "http://dbpedia.org/resource/Alban_(opera)", "http://dbpedia.org/resource/Albany_Fish_Traps", "http://dbpedia.org/resource/Albedo_Anthropomorphics", "http://dbpedia.org/resource/Albert_Einstein_World_Award_of_Science", "http://dbpedia.org/resource/Albert_Leon_Whiteman_Memorial_Prize", "http://dbpedia.org/resource/Albert_Pendarvis", "http://dbpedia.org/resource/Albion_(comics)", "http://dbpedia.org/resource/Albion_and_Albanius", "http://dbpedia.org/resource/Alcine", "http://dbpedia.org/resource/Aldebaran_(comics)", "http://dbpedia.org/resource/2014_Albanian_demonstrations_in_Macedonia", "http://dbpedia.org/resource/2014_Indian_Super_League_finals", "http://dbpedia.org/resource/2014\u201315_Nicaraguan_protests", "http://dbpedia.org/resource/Deep_Red_(1994_film)", "http://dbpedia.org/resource/Deep_Rooted_Tree", "http://dbpedia.org/resource/Deep_Sea_Detectives", "http://dbpedia.org/resource/Deep_Shock", "http://dbpedia.org/resource/Deep_South_Paranormal", "http://dbpedia.org/resource/Deep_State_(TV_series)", "http://dbpedia.org/resource/Deep_Time_History", "http://dbpedia.org/resource/Deep_Water_(2019_series)", "http://dbpedia.org/resource/Deep_Water_(TV_series)", "http://dbpedia.org/resource/Deep_in_My_Heart_(1999_film)", "http://dbpedia.org/resource/Deep_in_the_Realm_of_Conscience", "http://dbpedia.org/resource/Deeparadhana", "http://dbpedia.org/resource/Deer_Hunter_(series)", "http://dbpedia.org/resource/Deer_Squad", "http://dbpedia.org/resource/Deewana_(TV_series)", "http://dbpedia.org/resource/Deewangi", "http://dbpedia.org/resource/Deewar-e-Shab", "http://dbpedia.org/resource/Deewar_(TV_series)", "http://dbpedia.org/resource/Def_Comedy_Jam", "http://dbpedia.org/resource/Def_Poetry_Jam", "http://dbpedia.org/resource/Defectors_(game_show)", "http://dbpedia.org/resource/Defend_Your_Castle", "http://dbpedia.org/resource/Defenders_of_the_Earth", "http://dbpedia.org/resource/Defending_Jacob_(miniseries)", "http://dbpedia.org/resource/Defending_the_Guilty", "http://dbpedia.org/resource/Defiance_(TV_series)", "http://dbpedia.org/resource/Defiance_(season_3)", "http://dbpedia.org/resource/Definitely_Neighbors", "http://dbpedia.org/resource/Definition_(game_show)", "http://dbpedia.org/resource/Defunctland", "http://dbpedia.org/resource/Defying_Gravity_(TV_series)", "http://dbpedia.org/resource/Defying_the_Nazis:_The_Sharps'_War", "http://dbpedia.org/resource/Degrassi:_Next_Class", "http://dbpedia.org/resource/Degrassi:_The_Next_Generation", "http://dbpedia.org/resource/Degrassi:_The_Next_Generation_(season_1)", "http://dbpedia.org/resource/Degrassi:_The_Next_Generation_(season_3)", "http://dbpedia.org/resource/Degrassi:_The_Next_Generation_(season_4)", "http://dbpedia.org/resource/Degrassi:_The_Next_Generation_(season_5)", "http://dbpedia.org/resource/Degrassi:_The_Next_Generation_(season_6)", "http://dbpedia.org/resource/Degrassi:_The_Next_Generation_(season_8)", "http://dbpedia.org/resource/Degrassi:_The_Next_Generation_(season_9)", "http://dbpedia.org/resource/Degrassi_(season_10)", "http://dbpedia.org/resource/Degrassi_Goes_Hollywood", "http://dbpedia.org/resource/Degrassi_High", "http://dbpedia.org/resource/Degrassi_Junior_High", "http://dbpedia.org/resource/Degrassi_Takes_Manhattan", "http://dbpedia.org/resource/Degrassi_Talks", "http://dbpedia.org/resource/Dehleez_(1981_TV_series)", "http://dbpedia.org/resource/Dehleez_(2009_TV_series)", "http://dbpedia.org/resource/Deion's_Family_Playbook", "http://dbpedia.org/resource/Deion_&_Pilar:_Prime_Time_Love", "http://dbpedia.org/resource/Deivam_Thandha_Veedu", "http://dbpedia.org/resource/Deivam_Thantha_Poove", "http://dbpedia.org/resource/Deivamagal", "http://dbpedia.org/resource/Deja_Vu_(TV_series)", "http://dbpedia.org/resource/Deja_Vu_Tour", "http://dbpedia.org/resource/Dejavu_di_Kinabalu", "http://dbpedia.org/resource/Dej\u00e9monos_de_Vargas", "http://dbpedia.org/resource/Dej\u00e9monos_de_vainas", "http://dbpedia.org/resource/Deka_Kurokawa_Suzuki", "http://dbpedia.org/resource/Dekh_Bhai_Dekh", "http://dbpedia.org/resource/Dekha_Ek_Khwaab", "http://dbpedia.org/resource/Dekho_Chaand_Aaya", "http://dbpedia.org/resource/Dekho_Magar_Pyaar_Se", "http://dbpedia.org/resource/Del_Monte_Kitchenomics", "http://dbpedia.org/resource/Del_Tierro", "http://dbpedia.org/resource/Del_altar_a_la_tumba", "http://dbpedia.org/resource/Delayed_Justice", "http://dbpedia.org/resource/Delet_Haksamim", "http://dbpedia.org/resource/Delete_(miniseries)", "http://dbpedia.org/resource/Delfy_and_His_Friends", "http://dbpedia.org/resource/Delhi_Crime", "http://dbpedia.org/resource/Delicacies_Destiny", "http://dbpedia.org/resource/Delicious_(TV_series)", "http://dbpedia.org/resource/Delicious_Gakuin", "http://dbpedia.org/resource/Delicious_Miss_Brown", "http://dbpedia.org/resource/Delicious_Proposal", "http://dbpedia.org/resource/Delicious_Rendezvous", "http://dbpedia.org/resource/Deliciousness_(TV_series)", "http://dbpedia.org/resource/Delilah:_The_Mysterious_Case_of_Delilah_Ambrose", "http://dbpedia.org/resource/Delilah_&_Julius", "http://dbpedia.org/resource/Delilah_(American_TV_series)", "http://dbpedia.org/resource/Delilah_(Canadian_TV_series)", "http://dbpedia.org/resource/Deliver_Me_(TV_series)", "http://dbpedia.org/resource/Deliver_Us_from_Evil_(1973_film)", "http://dbpedia.org/resource/Deliverance_Creek", "http://dbpedia.org/resource/Delivery_(web_series)", "http://dbpedia.org/resource/Dellaventura", "http://dbpedia.org/resource/Delocated", "http://dbpedia.org/resource/Delph_Locks", "http://dbpedia.org/resource/Delta_(American_TV_series)", "http://dbpedia.org/resource/Delta_(Australian_TV_series)", "http://dbpedia.org/resource/Delta_County,_U.S.A.", "http://dbpedia.org/resource/Delta_House", "http://dbpedia.org/resource/Delta_State_(TV_series)", "http://dbpedia.org/resource/Deltora_Quest_(series)", "http://dbpedia.org/resource/Deluxe_Paint", "http://dbpedia.org/resource/Delvecchio_(TV_series)", "http://dbpedia.org/resource/Dem_T\u00e4ter_auf_der_Spur", "http://dbpedia.org/resource/Demain_Pr\u00e9sident", "http://dbpedia.org/resource/Demente_(TV_series)", "http://dbpedia.org/resource/Demente_criminal", "http://dbpedia.org/resource/Demetri_Martin._Person.", "http://dbpedia.org/resource/Demi-Gods_and_Semi-Devils_(1982_TV_series)", "http://dbpedia.org/resource/Demi-Gods_and_Semi-Devils_(1997_TV_series)", "http://dbpedia.org/resource/Demi-Gods_and_Semi-Devils_(2003_TV_series)", "http://dbpedia.org/resource/Demi_Lovato:_Dancing_with_the_Devil", "http://dbpedia.org/resource/Demi_Lovato:_Stay_Strong", "http://dbpedia.org/resource/Demob_(TV_series)", "http://dbpedia.org/resource/Democratic_Party_(Yugoslavia)", "http://dbpedia.org/resource/Demofoonte_(Myslive\u010dek)_(1769)", "http://dbpedia.org/resource/Demofoonte_(Myslive\u010dek)_(1775)", "http://dbpedia.org/resource/Demographics_of_Argentina", "http://dbpedia.org/resource/Demographics_of_Colombia", "http://dbpedia.org/resource/Demographics_of_Greenland", "http://dbpedia.org/resource/Demographics_of_Paraguay", "http://dbpedia.org/resource/Demolition_Man_(TV_series)", "http://dbpedia.org/resource/DemonTech_series", "http://dbpedia.org/resource/Demon_Beast_Invasion", "http://dbpedia.org/resource/Demon_Fighter_Kocho", "http://dbpedia.org/resource/Demon_From_Afar", "http://dbpedia.org/resource/Demon_King_Daimao", "http://dbpedia.org/resource/Demon_Lord_Dante", "http://dbpedia.org/resource/Demonbane", "http://dbpedia.org/resource/Demons_(TV_series)", "http://dbpedia.org/resource/Demonstrations_in_Physics", "http://dbpedia.org/resource/Dempsey_(film)", "http://dbpedia.org/resource/Dempsey_and_Makepeace", "http://dbpedia.org/resource/Den_11._time", "http://dbpedia.org/resource/Den_Brother", "http://dbpedia.org/resource/Den_Kongelige_G\u00e6st", "http://dbpedia.org/resource/Den_t\u00e4nkande_brevb\u00e4raren", "http://dbpedia.org/resource/Den_vilda_bebin", "http://dbpedia.org/resource/Deng_Xiaoping_at_History's_Crossroads", "http://dbpedia.org/resource/Dengeki_G's_Radio", "http://dbpedia.org/resource/Dengeki_Sentai_Changeman", "http://dbpedia.org/resource/Denise_(TV_program)", "http://dbpedia.org/resource/Denise_Richards:_It's_Complicated", "http://dbpedia.org/resource/Denji_Sentai_Megaranger", "http://dbpedia.org/resource/Denjin_Zaborger", "http://dbpedia.org/resource/Denkigai_no_Honya-san", "http://dbpedia.org/resource/Dennis_&_Gnasher:_Unleashed!", "http://dbpedia.org/resource/Dennis_Miller_Live", "http://dbpedia.org/resource/Dennis_and_Gnasher_(1996_TV_series)", "http://dbpedia.org/resource/Dennis_the_Menace_(1959_TV_series)", "http://dbpedia.org/resource/Dennis_the_Menace_(1986_TV_series)", "http://dbpedia.org/resource/Dennis_the_Menace_(1987_film)", "http://dbpedia.org/resource/Dennis_the_Menace_and_Gnasher_(2009_TV_series)", "http://dbpedia.org/resource/Dennou_Keisatsu_Cybercop", "http://dbpedia.org/resource/Denny's_Sho", "http://dbpedia.org/resource/Denn\u014d_Coil", "http://dbpedia.org/resource/Denpa_teki_na_Kanojo", "http://dbpedia.org/resource/Dense_(film)", "http://dbpedia.org/resource/Densha_Otoko_(TV_series)", "http://dbpedia.org/resource/Denshi_Sentai_Denjiman", "http://dbpedia.org/resource/Denver,_the_Last_Dinosaur", "http://dbpedia.org/resource/Deon_Cole's_Black_Box", "http://dbpedia.org/resource/Department_S_(TV_series)", "http://dbpedia.org/resource/Departure_(TV_series)", "http://dbpedia.org/resource/Departures_(TV_series)", "http://dbpedia.org/resource/Depi_Evratesil", "http://dbpedia.org/resource/Depoe_Bay_Bridge", "http://dbpedia.org/resource/Depois_do_Adeus", "http://dbpedia.org/resource/Depositary_(film)", "http://dbpedia.org/resource/Deputy_(TV_series)", "http://dbpedia.org/resource/Deputy_Dawg", "http://dbpedia.org/resource/Der_Barbier_von_Bagdad", "http://dbpedia.org/resource/Der_Bastian", "http://dbpedia.org/resource/Der_Bergdoktor_(2008_TV_series)", "http://dbpedia.org/resource/Der_Clown", "http://dbpedia.org/resource/Der_Club_(talk_show)", "http://dbpedia.org/resource/Der_Corregidor", "http://dbpedia.org/resource/Der_Dicke", "http://dbpedia.org/resource/Der_Diktator", "http://dbpedia.org/resource/Der_Fahnder", "http://dbpedia.org/resource/Der_Forellenhof", "http://dbpedia.org/resource/Der_Hausgeist", "http://dbpedia.org/resource/Der_Jasager", "http://dbpedia.org/resource/Der_J\u00fcngste_Tag", "http://dbpedia.org/resource/Der_Kaiser_von_Atlantis", "http://dbpedia.org/resource/Der_Kaiser_von_Schexing", "http://dbpedia.org/resource/Der_Kommissar_(TV_series)", "http://dbpedia.org/resource/Der_Kom\u00f6dienstadel", "http://dbpedia.org/resource/Der_Kriminalist", "http://dbpedia.org/resource/Der_Kurier_der_Kaiserin", "http://dbpedia.org/resource/Der_K\u00f6nig_Kandaules", "http://dbpedia.org/resource/Der_Landarzt", "http://dbpedia.org/resource/Der_Lehrer", "http://dbpedia.org/resource/Der_Leihopa", "http://dbpedia.org/resource/Der_Millionenbauer", "http://dbpedia.org/resource/Der_Mond", "http://dbpedia.org/resource/Der_Nachtkurier_meldet\u2026", "http://dbpedia.org/resource/Der_Pass", "http://dbpedia.org/resource/Der_Penny-Markt_auf_der_Reeperbahn", "http://dbpedia.org/resource/Der_Prinz_von_Homburg_(opera)", "http://dbpedia.org/resource/Der_Protagonist", "http://dbpedia.org/resource/Der_Rauchfangkehrer", "http://dbpedia.org/resource/Der_Revisor", "http://dbpedia.org/resource/Der_Roland_von_Berlin_(opera)", "http://dbpedia.org/resource/Der_Schatzgr\u00e4ber", "http://dbpedia.org/resource/Der_Schw\u00e4chste_fliegt!", "http://dbpedia.org/resource/Der_Spatz_vom_Wallrafplatz", "http://dbpedia.org/resource/Der_Staatsanwalt_hat_das_Wort", "http://dbpedia.org/resource/Der_Templer_und_die_J\u00fcdin", "http://dbpedia.org/resource/Der_Traumg\u00f6rge", "http://dbpedia.org/resource/Der_Trompeter_von_S\u00e4kkingen", "http://dbpedia.org/resource/Der_Vampyr", "http://dbpedia.org/resource/Der_Waffenschmied", "http://dbpedia.org/resource/Der_Wald", "http://dbpedia.org/resource/Der_Zwerg", "http://dbpedia.org/resource/Der_ferne_Klang", "http://dbpedia.org/resource/Der_geduldige_Socrates", "http://dbpedia.org/resource/Der_junge_Lord", "http://dbpedia.org/resource/Der_kleine_Ritter_Trenk", "http://dbpedia.org/resource/Der_kleine_Vampir_\u2013_Neue_Abenteuer", "http://dbpedia.org/resource/Der_letzte_Bulle", "http://dbpedia.org/resource/Der_letzte_Zeuge", "http://dbpedia.org/resource/Der_neumodische_Liebhaber_Damon", "http://dbpedia.org/resource/Der_schwarze_Kanal", "http://dbpedia.org/resource/Derana_Dream_Star", "http://dbpedia.org/resource/Derby_Day_(light_opera)", "http://dbpedia.org/resource/Derby_Stallion", "http://dbpedia.org/resource/Derek_(TV_series)", "http://dbpedia.org/resource/Derek_Acorah's_Ghost_Towns", "http://dbpedia.org/resource/Derek_and_Simon", "http://dbpedia.org/resource/Derren_Brown:_The_Events", "http://dbpedia.org/resource/Derrick_(TV_series)", "http://dbpedia.org/resource/Derry_Girls", "http://dbpedia.org/resource/Des_(TV_series)", "http://dbpedia.org/resource/Des_Mein_Niklla_Hoga_Chand", "http://dbpedia.org/resource/Des_O'Connor_Tonight", "http://dbpedia.org/resource/Des_chiffres_et_des_lettres", "http://dbpedia.org/resource/Des_racines_et_des_ailes", "http://dbpedia.org/resource/Desafio_de_Estrellas", "http://dbpedia.org/resource/Desaf\u00edo:_La_Gran_Batalla", "http://dbpedia.org/resource/Desaf\u00edo_(TV_series)", "http://dbpedia.org/resource/Desaparecida", "http://dbpedia.org/resource/Desaparecidos_(Spanish_TV_series)", "http://dbpedia.org/resource/Desaparecidos_(TV_series)", "http://dbpedia.org/resource/Desayunos_informales", "http://dbpedia.org/resource/Descendants:_School_of_Secrets", "http://dbpedia.org/resource/Descendants:_Wicked_World", "http://dbpedia.org/resource/Descendants_(2015_film)", "http://dbpedia.org/resource/Descendants_2", "http://dbpedia.org/resource/Descendants_3", "http://dbpedia.org/resource/Descendants_of_Darkness", "http://dbpedia.org/resource/Descendants_of_the_Sun", "http://dbpedia.org/resource/Descendants_of_the_Sun:_The_Philippine_Adaptation", "http://dbpedia.org/resource/Descending_Angel", "http://dbpedia.org/resource/Descontrol_(TV_series)", "http://dbpedia.org/resource/Descubierta-class_corvette", "http://dbpedia.org/resource/Desde_Gayola", "http://dbpedia.org/resource/Desejo_Proibido", "http://dbpedia.org/resource/Desejos_de_Mulher", "http://dbpedia.org/resource/Desencuentro_(1964_TV_series)", "http://dbpedia.org/resource/Desencuentro_(1997_TV_series)", "http://dbpedia.org/resource/Desert_Car_Kings", "http://dbpedia.org/resource/Desert_Coral", "http://dbpedia.org/resource/Desert_Island_Discs", "http://dbpedia.org/resource/Desert_Punk", "http://dbpedia.org/resource/Desert_Rose_(TV_series)", "http://dbpedia.org/resource/Desert_of_Fire", "http://dbpedia.org/resource/Deserving_Design", "http://dbpedia.org/resource/Desh_Ki_Beti_Nandini", "http://dbpedia.org/resource/Desher_Maati", "http://dbpedia.org/resource/Desi_Explorers", "http://dbpedia.org/resource/Desi_Rascals", "http://dbpedia.org/resource/DesignAge", "http://dbpedia.org/resource/Design_1047_battlecruiser", "http://dbpedia.org/resource/Design_Indaba", "http://dbpedia.org/resource/Design_Rivals", "http://dbpedia.org/resource/Design_Squad", "http://dbpedia.org/resource/Design_U", "http://dbpedia.org/resource/Design_on_a_Dime", "http://dbpedia.org/resource/Designated_Survivor:_60_Days", "http://dbpedia.org/resource/Designated_Survivor_(TV_series)", "http://dbpedia.org/resource/Designer_Guys", "http://dbpedia.org/resource/Designer_Superstar_Challenge", "http://dbpedia.org/resource/Designerspirene", "http://dbpedia.org/resource/Designing_Spaces", "http://dbpedia.org/resource/Designing_Women", "http://dbpedia.org/resource/Desire_(TV_series)", "http://dbpedia.org/resource/Desmond's", "http://dbpedia.org/resource/Desmond_and_the_Channel_9-Pins", "http://dbpedia.org/resource/Desolation_Canyon_(film)", "http://dbpedia.org/resource/Despatch_Box", "http://dbpedia.org/resource/Despedida_de_Solteiro", "http://dbpedia.org/resource/Despedida_de_Solteros", "http://dbpedia.org/resource/Despera", "http://dbpedia.org/resource/Desperados_(TV_series)", "http://dbpedia.org/resource/Desperate_Choices:_To_Save_My_Child", "http://dbpedia.org/resource/Desperate_Housewives", "http://dbpedia.org/resource/Desperate_Housewives_(season_1)", "http://dbpedia.org/resource/Desperate_Housewives_(season_2)", "http://dbpedia.org/resource/Desperate_Housewives_(season_3)", "http://dbpedia.org/resource/Desperate_Housewives_(season_4)", "http://dbpedia.org/resource/Desperate_Housewives_(season_5)", "http://dbpedia.org/resource/Desperate_Housewives_(season_6)", "http://dbpedia.org/resource/Desperate_Housewives_(season_7)", "http://dbpedia.org/resource/Desperate_Housewives_(season_8)", "http://dbpedia.org/resource/Desperate_Housewives_Africa", "http://dbpedia.org/resource/Desperate_Justice", "http://dbpedia.org/resource/Desperate_Lives", "http://dbpedia.org/resource/Desperate_Rescue:_The_Cathy_Mahone_Story", "http://dbpedia.org/resource/Desperate_Romantics", "http://dbpedia.org/resource/Desperate_Scousewives", "http://dbpedia.org/resource/Desperate_for_Love", "http://dbpedia.org/resource/Desperately_Seeking_Santa", "http://dbpedia.org/resource/Desperately_Seeking_Something", "http://dbpedia.org/resource/Despertar_contigo", "http://dbpedia.org/resource/Dessert_First_with_Anne_Thornton", "http://dbpedia.org/resource/Dessert_Games", "http://dbpedia.org/resource/Destan_(TV_series)", "http://dbpedia.org/resource/Deste_Tous", "http://dbpedia.org/resource/Destilando_Amor", "http://dbpedia.org/resource/Destination:_Imagination", "http://dbpedia.org/resource/Destination_Fear", "http://dbpedia.org/resource/Destination_Fear_(2019_TV_series)", "http://dbpedia.org/resource/Destination_Tennis", "http://dbpedia.org/resource/Destination_Truth", "http://dbpedia.org/resource/Destined_to_Love_You", "http://dbpedia.org/resource/Destined_to_be_Yours", "http://dbpedia.org/resource/Destino_(1963_TV_series)", "http://dbpedia.org/resource/Destino_(2013_Mexican_TV_series)", "http://dbpedia.org/resource/Destino_(Brazilian_TV_series)", "http://dbpedia.org/resource/Destino_(Mexican_TV_series)", "http://dbpedia.org/resource/Destino_Imortal", "http://dbpedia.org/resource/Destino_de_Mujer", "http://dbpedia.org/resource/Destino_la_gloria", "http://dbpedia.org/resource/Destinos", "http://dbpedia.org/resource/Destiny_(Jan\u00e1\u010dek)", "http://dbpedia.org/resource/Destiny_Ridge", "http://dbpedia.org/resource/Destiny_Rose", "http://dbpedia.org/resource/Destiny_in_Her_Hands", "http://dbpedia.org/resource/Destroy_Build_Destroy", "http://dbpedia.org/resource/Destroyed_in_Seconds", "http://dbpedia.org/resource/Destry_(TV_series)", "http://dbpedia.org/resource/Desus_&_Mero_(2016_TV_series)", "http://dbpedia.org/resource/Desus_&_Mero_(2019_TV_series)", "http://dbpedia.org/resource/Det_R\u00f8de_Kapel", "http://dbpedia.org/resource/Det_blir_jul_p\u00e5_M\u00f6lleg\u00e5rden", "http://dbpedia.org/resource/Det_kommer_mera", "http://dbpedia.org/resource/Det_sjungande_tr\u00e4det_(opera)", "http://dbpedia.org/resource/Detective's_Wife", "http://dbpedia.org/resource/Detective_Chinatown_(web_series)", "http://dbpedia.org/resource/Detective_Didi", "http://dbpedia.org/resource/Detective_Investigation_Files", "http://dbpedia.org/resource/Detective_Investigation_Files_II", "http://dbpedia.org/resource/Detective_Investigation_Files_III", "http://dbpedia.org/resource/Detective_Investigation_Files_IV", "http://dbpedia.org/resource/Detective_Investigation_Files_Series", "http://dbpedia.org/resource/Detective_Novice", "http://dbpedia.org/resource/Detective_School", "http://dbpedia.org/resource/Detective_School_Q", "http://dbpedia.org/resource/Detective_in_the_House", "http://dbpedia.org/resource/Detectives_in_Trouble", "http://dbpedia.org/resource/Detectorists", "http://dbpedia.org/resource/Detektivb\u00fcro_Roth", "http://dbpedia.org/resource/Detention:_The_Siege_at_Johnson_High", "http://dbpedia.org/resource/Detention_(American_TV_series)", "http://dbpedia.org/resource/Detention_(Taiwanese_TV_series)", "http://dbpedia.org/resource/Detentionaire", "http://dbpedia.org/resource/Detonator_Orgun", "http://dbpedia.org/resource/Detroit_1-8-7", "http://dbpedia.org/resource/Detroit_Diesel_Series_149", "http://dbpedia.org/resource/Detroit_Diesel_Series_71", "http://dbpedia.org/resource/Detroit_Metal_City", "http://dbpedia.org/resource/Detroiters_(TV_series)", "http://dbpedia.org/resource/Detr\u00e1s_del_muro", "http://dbpedia.org/resource/Deudas", "http://dbpedia.org/resource/Deus_Salve_o_Rei", "http://dbpedia.org/resource/Deus_Vitae", "http://dbpedia.org/resource/Deutsch-les-Landes", "http://dbpedia.org/resource/Deutsche_Bank_Prize_in_Financial_Economics", "http://dbpedia.org/resource/Deutsche_Tourenwagen_Masters", "http://dbpedia.org/resource/Deutsche_Tourenwagen_Meisterschaft", "http://dbpedia.org/resource/Deutscher_Filmpreis", "http://dbpedia.org/resource/Deutscher_Jugendliteraturpreis", "http://dbpedia.org/resource/Deutschland-class_cruiser", "http://dbpedia.org/resource/Deutschland_83", "http://dbpedia.org/resource/Deutschland_86", "http://dbpedia.org/resource/Deutschland_89", "http://dbpedia.org/resource/Deutschland_sucht_den_Superstar", "http://dbpedia.org/resource/Deutschlands_MeisterKoch", "http://dbpedia.org/resource/Dev_(TV_series)", "http://dbpedia.org/resource/Dev_DD", "http://dbpedia.org/resource/Deva_Shree_Ganesha", "http://dbpedia.org/resource/Devanshi_(TV_series)", "http://dbpedia.org/resource/Devashard", "http://dbpedia.org/resource/Devathai_(2013_TV_series)", "http://dbpedia.org/resource/Devathaiyai_Kanden_(TV_series)", "http://dbpedia.org/resource/Devi_(TV_series)", "http://dbpedia.org/resource/Devi_Adi_Parashakti", "http://dbpedia.org/resource/Device_Forts", "http://dbpedia.org/resource/Devil's_Advocate_(TV_series)", "http://dbpedia.org/resource/Devil's_Diary", "http://dbpedia.org/resource/Devil's_Disciples", "http://dbpedia.org/resource/Devil's_Dust", "http://dbpedia.org/resource/Devil's_Playground_(TV_series)", "http://dbpedia.org/resource/Devil_(TV_series)", "http://dbpedia.org/resource/Devil_Beside_You", "http://dbpedia.org/resource/Devil_Dog:_The_Hound_of_Hell", "http://dbpedia.org/resource/Devil_Hunter_Yohko", "http://dbpedia.org/resource/Devil_Lady", "http://dbpedia.org/resource/Devil_May_Care_(TV_series)", "http://dbpedia.org/resource/Devil_May_Cry", "http://dbpedia.org/resource/Devil_May_Cry:_The_Animated_Series", "http://dbpedia.org/resource/Devil_May_Cry_3_(manga)", "http://dbpedia.org/resource/Devil_Sister", "http://dbpedia.org/resource/Devil_Survivor_2:_The_Animation", "http://dbpedia.org/resource/Devil_in_Ohio", "http://dbpedia.org/resource/Devilish_Charm", "http://dbpedia.org/resource/Devils_(TV_series)", "http://dbpedia.org/resource/Devils_and_Realist", "http://dbpedia.org/resource/Devilsdorp", "http://dbpedia.org/resource/Devious_Maids", "http://dbpedia.org/resource/Devlin_(TV_series)", "http://dbpedia.org/resource/Devlok_with_Devdutt_Pattanaik", "http://dbpedia.org/resource/Devmanus", "http://dbpedia.org/resource/Devon_County_Show", "http://dbpedia.org/resource/Devon_Ke_Dev...Mahadev", "http://dbpedia.org/resource/Devotion_(TV_series)", "http://dbpedia.org/resource/Devs", "http://dbpedia.org/resource/Devyani_(TV_series)", "http://dbpedia.org/resource/Dewa_(TV_series)", "http://dbpedia.org/resource/Deweni_Inima", "http://dbpedia.org/resource/Dex_Hamilton:_Alien_Entomologist", "http://dbpedia.org/resource/Dexter's_Laboratory", "http://dbpedia.org/resource/Dexter's_Laboratory:_Ego_Trip", "http://dbpedia.org/resource/Dexter:_New_Blood", "http://dbpedia.org/resource/Dexter_(TV_series)", "http://dbpedia.org/resource/Dhaani_(serial)", "http://dbpedia.org/resource/Dhadkan_(TV_series)", "http://dbpedia.org/resource/Dhadkan_Zindaggi_Kii", "http://dbpedia.org/resource/Dhani_Tackles_the_Globe", "http://dbpedia.org/resource/Dharaka", "http://dbpedia.org/resource/Dharam_Veer_(TV_series)", "http://dbpedia.org/resource/Dharampatni", "http://dbpedia.org/resource/Dharifulhu", "http://dbpedia.org/resource/Dharkan_(TV_series)", "http://dbpedia.org/resource/Dharm_Yoddha_Garud", "http://dbpedia.org/resource/Dharma_&_Greg", "http://dbpedia.org/resource/Dharmakshetra", "http://dbpedia.org/resource/Dharmayutham", "http://dbpedia.org/resource/Dharti_Ka_Veer_Yodha_Prithviraj_Chauhan", "http://dbpedia.org/resource/Dhathuputhri", "http://dbpedia.org/resource/Dhee_(TV_show)", "http://dbpedia.org/resource/Dhee_Ultimate_Dance_Show", "http://dbpedia.org/resource/Dheewanaa_Hiyy", "http://dbpedia.org/resource/Dhhai_Kilo_Prem", "http://dbpedia.org/resource/Dhimal", "http://dbpedia.org/resource/Dhimaner_Dinkaal", "http://dbpedia.org/resource/Dhindora", "http://dbpedia.org/resource/Dhirumeh_Nethas", "http://dbpedia.org/resource/Dhoadhi", "http://dbpedia.org/resource/Dhoapatta", "http://dbpedia.org/resource/Dhol_Bajnay_Laga", "http://dbpedia.org/resource/Dholkichya_Talavar", "http://dbpedia.org/resource/Dhoom_Machaao_Dhoom", "http://dbpedia.org/resource/Dhoondh_Legi_Manzil_Humein", "http://dbpedia.org/resource/Dhoop_Ki_Deewar", "http://dbpedia.org/resource/Dhoop_Kinare", "http://dbpedia.org/resource/Dhoop_Mein_Thandi_Chaav...Maa", "http://dbpedia.org/resource/Dhrubatara", "http://dbpedia.org/resource/Dhulokona", "http://dbpedia.org/resource/Dhund_(TV_series)", "http://dbpedia.org/resource/Dhuwan", "http://dbpedia.org/resource/Di-Gata_Defenders", "http://dbpedia.org/resource/DiResta", "http://dbpedia.org/resource/Di_Ba't_Ikaw", "http://dbpedia.org/resource/Di_Mana_Melani", "http://dbpedia.org/resource/Di_Na_Muli", "http://dbpedia.org/resource/Diablero", "http://dbpedia.org/resource/Diablo_Guardi\u00e1n", "http://dbpedia.org/resource/Diabolical_Women", "http://dbpedia.org/resource/Diabolik_(TV_series)", "http://dbpedia.org/resource/Diagnosis:_Murder", "http://dbpedia.org/resource/Diagnosis:_Murder_(season_1)", "http://dbpedia.org/resource/Diagnosis:_Murder_(season_2)", "http://dbpedia.org/resource/Diagnosis:_Murder_(season_4)", "http://dbpedia.org/resource/Diagnosis:_Murder_(season_6)", "http://dbpedia.org/resource/Diagnosis:_Unknown", "http://dbpedia.org/resource/Diagnosis_(American_TV_series)", "http://dbpedia.org/resource/Diagnosis_(Polish_TV_series)", "http://dbpedia.org/resource/Diagnosis_X", "http://dbpedia.org/resource/Dial_100_(TV_series)", "http://dbpedia.org/resource/Dial_Hot_Line", "http://dbpedia.org/resource/Dial_MTV", "http://dbpedia.org/resource/Dial_M_(British_TV_series)", "http://dbpedia.org/resource/Dial_M_(Philippine_TV_program)", "http://dbpedia.org/resource/Dialogues_of_the_Carmelites", "http://dbpedia.org/resource/Diamantendetektiv_Dick_Donald", "http://dbpedia.org/resource/Diammonium_phosphate", "http://dbpedia.org/resource/Diamond_Geezer", "http://dbpedia.org/resource/Diamond_Girl_(film)", "http://dbpedia.org/resource/Diamond_Lover", "http://dbpedia.org/resource/Diamonds_(British_TV_series)", "http://dbpedia.org/resource/Diamonds_(Canadian_TV_series)", "http://dbpedia.org/resource/Diamonds_(TV_series)", "http://dbpedia.org/resource/Diana,_7_Days", "http://dbpedia.org/resource/Diana,_Our_Mother:_Her_Life_and_Legacy", "http://dbpedia.org/resource/Diana:_A_Tribute_to_the_People's_Princess", "http://dbpedia.org/resource/Diana:_Her_True_Story", "http://dbpedia.org/resource/Diana_(American_TV_series)", "http://dbpedia.org/resource/Diana_(British_TV_series)", "http://dbpedia.org/resource/Diana_(camera)", "http://dbpedia.org/resource/Diana_Carolina", "http://dbpedia.org/resource/Diana_Mini_Camera", "http://dbpedia.org/resource/Diana_and_I", "http://dbpedia.org/resource/Diana_von_Solange", "http://dbpedia.org/resource/Dianne_(TV_series)", "http://dbpedia.org/resource/Diarios_de_la_cuarentena", "http://dbpedia.org/resource/Diary_(American_TV_series)", "http://dbpedia.org/resource/Diary_(Maldivian_TV_series)", "http://dbpedia.org/resource/Diary_of_a_Bad_Man", "http://dbpedia.org/resource/Diary_of_a_Future_President", "http://dbpedia.org/resource/Diary_of_a_Gigolo", "http://dbpedia.org/resource/Diary_of_a_Night_Watchman", "http://dbpedia.org/resource/Diary_of_a_Prosecutor", "http://dbpedia.org/resource/Diary_of_a_Wimpy_Kid_(film_series)", "http://dbpedia.org/resource/Diary_of_a_Young_Comic", "http://dbpedia.org/resource/Diary_of_an_Uber_Driver", "http://dbpedia.org/resource/Dice:_Undisputed", "http://dbpedia.org/resource/Dice_(TV_series)", "http://dbpedia.org/resource/Dice_(miniseries)", "http://dbpedia.org/resource/Dicey_Business", "http://dbpedia.org/resource/Dicha_robada", "http://dbpedia.org/resource/Dick_&_Dom_in_da_Bungalow", "http://dbpedia.org/resource/Dick_Cavett_Meets_ABBA", "http://dbpedia.org/resource/Dick_Clark's_New_Year's_Rockin'_Eve", "http://dbpedia.org/resource/Dick_Clark's_World_of_Talent", "http://dbpedia.org/resource/Dick_Figures", "http://dbpedia.org/resource/Dick_Powell's_Zane_Grey_Theatre", "http://dbpedia.org/resource/Dick_Spanner,_P.I.", "http://dbpedia.org/resource/Dick_Tracy_(TV_series)", "http://dbpedia.org/resource/Dick_Turpin_(TV_series)", "http://dbpedia.org/resource/Dick_and_Dom's_Funny_Business", "http://dbpedia.org/resource/Dick_and_Dom_in_da_Bungalow", "http://dbpedia.org/resource/Dickens_(TV_series)", "http://dbpedia.org/resource/Dickens_in_America", "http://dbpedia.org/resource/Dickensian_(TV_series)", "http://dbpedia.org/resource/Dickin_Medal", "http://dbpedia.org/resource/Dickinson's_Real_Deal", "http://dbpedia.org/resource/Dickinson_(TV_series)", "http://dbpedia.org/resource/Dicktown_(TV_series)", "http://dbpedia.org/resource/Dicte_(TV_series)", "http://dbpedia.org/resource/Did_We_Really_Love%3F", "http://dbpedia.org/resource/Did_You_See...%3F", "http://dbpedia.org/resource/Diddy_Movies", "http://dbpedia.org/resource/Diddy_TV", "http://dbpedia.org/resource/Didi_&_Ditto", "http://dbpedia.org/resource/Didi_No._1", "http://dbpedia.org/resource/Didi_and_B.", "http://dbpedia.org/resource/Didn't_They_Do_Well", "http://dbpedia.org/resource/Didone_abbandonata_(Albinoni)", "http://dbpedia.org/resource/Didone_abbandonata_(Sarro)", "http://dbpedia.org/resource/Die_4_da", "http://dbpedia.org/resource/Die_Abenteuer_des_braven_Soldaten_Schwejk", "http://dbpedia.org/resource/Die_Aff\u00e4re_Semmeling", "http://dbpedia.org/resource/Die_Alpensaga", "http://dbpedia.org/resource/Die_Bambus-B\u00e4ren-Bande", "http://dbpedia.org/resource/Die_Bergwacht", "http://dbpedia.org/resource/Die_Bienen_\u2013_T\u00f6dliche_Bedrohung", "http://dbpedia.org/resource/Die_B\u00fcrgschaft_(opera)", "http://dbpedia.org/resource/Die_Camper", "http://dbpedia.org/resource/Die_Chance_deines_Lebens", "http://dbpedia.org/resource/Die_Chefin", "http://dbpedia.org/resource/Die_Cleveren", "http://dbpedia.org/resource/Die_Deutschen", "http://dbpedia.org/resource/Die_Dreisten_Drei", "http://dbpedia.org/resource/Die_Fallers_\u2013_Die_SWR_Schwarzwaldserie", "http://dbpedia.org/resource/Die_Familienanw\u00e4ltin", "http://dbpedia.org/resource/Die_Fastnachtsbeichte_(opera)", "http://dbpedia.org/resource/Die_Feen", "http://dbpedia.org/resource/Die_Firma_Hesselbach", "http://dbpedia.org/resource/Die_Gezeichneten", "http://dbpedia.org/resource/Die_Gipfelzipfler", "http://dbpedia.org/resource/Die_Hamletmaschine_(opera)", "http://dbpedia.org/resource/Die_Harald_Schmidt_Show", "http://dbpedia.org/resource/Die_Harmonie_der_Welt", "http://dbpedia.org/resource/Die_Hausmeisterin", "http://dbpedia.org/resource/Die_Hesselbachs", "http://dbpedia.org/resource/Die_Kinder", "http://dbpedia.org/resource/Die_Kinder_vom_Alstertal", "http://dbpedia.org/resource/Die_Knickerbocker-Bande", "http://dbpedia.org/resource/Die_Knoff-Hoff-Show", "http://dbpedia.org/resource/Die_Kommissarin", "http://dbpedia.org/resource/Die_K\u00f6nigin_von_Saba", "http://dbpedia.org/resource/Die_Liebe_der_Danae", "http://dbpedia.org/resource/Die_Lottosieger", "http://dbpedia.org/resource/Die_Ludolfs_\u2013_4_Br\u00fcder_auf'm_Schrottplatz", "http://dbpedia.org/resource/Die_Manns_\u2013_Ein_Jahrhundertroman", "http://dbpedia.org/resource/Die_Model_WG_(Austrian_TV_series)", "http://dbpedia.org/resource/Die_Model_WG_(German_TV_series)", "http://dbpedia.org/resource/Die_Muminfamilie", "http://dbpedia.org/resource/Die_Nibelungen", "http://dbpedia.org/resource/Die_Oliver_Pocher_Show", "http://dbpedia.org/resource/Die_Pfefferk\u00f6rner", "http://dbpedia.org/resource/Die_Pilgerin", "http://dbpedia.org/resource/Die_ProSieben_M\u00e4rchenstunde", "http://dbpedia.org/resource/Die_Rettungsflieger", "http://dbpedia.org/resource/Die_Rosen_von_Dublin", "http://dbpedia.org/resource/Die_Rosenheim-Cops", "http://dbpedia.org/resource/Die_Rote_Meile", "http://dbpedia.org/resource/Die_R\u00e4uber_(opera)", "http://dbpedia.org/resource/Die_Sendung_mit_dem_Elefanten", "http://dbpedia.org/resource/Die_Sendung_mit_der_Maus", "http://dbpedia.org/resource/Die_Soldaten", "http://dbpedia.org/resource/Die_Stunde_der_Offiziere", "http://dbpedia.org/resource/Die_Unverbesserlichen", "http://dbpedia.org/resource/Die_Wache", "http://dbpedia.org/resource/Die_Wochenshow", "http://dbpedia.org/resource/Die_W\u00f6lfe", "http://dbpedia.org/resource/Die_drei_Pintos", "http://dbpedia.org/resource/Die_gro\u00dfen_Kriminalf\u00e4lle", "http://dbpedia.org/resource/Die_rote_Kapelle", "http://dbpedia.org/resource/Die_schwarze_Maske", "http://dbpedia.org/resource/Die_tote_Stadt", "http://dbpedia.org/resource/Die_t\u00f6dlichen_W\u00fcnsche", "http://dbpedia.org/resource/Diego_and_Glot", "http://dbpedia.org/resource/Dienstag_aus_Licht", "http://dbpedia.org/resource/Dieppe_(film)", "http://dbpedia.org/resource/Diese_Drombuschs", "http://dbpedia.org/resource/Diese_Kaminskis", "http://dbpedia.org/resource/Diesel_Brothers", "http://dbpedia.org/resource/Dieselr\u00e5ttor_&_sj\u00f6mansm\u00f6ss", "http://dbpedia.org/resource/DietTribe", "http://dbpedia.org/resource/Dieter:_Der_Film", "http://dbpedia.org/resource/Dietland_(TV_series)", "http://dbpedia.org/resource/Diff'rent_Strokes", "http://dbpedia.org/resource/Difference_of_Opinion", "http://dbpedia.org/resource/Different_Dreams", "http://dbpedia.org/resource/Different_Kind_of_Woman", "http://dbpedia.org/resource/Difficult_People", "http://dbpedia.org/resource/Dig_(TV_series)", "http://dbpedia.org/resource/Dig_Deeper:_The_Disappearance_of_Birgit_Meier", "http://dbpedia.org/resource/Dig_Your_Roots", "http://dbpedia.org/resource/Digby_Dragon", "http://dbpedia.org/resource/Digest_Writer", "http://dbpedia.org/resource/Diggers_(TV_series)", "http://dbpedia.org/resource/Diggiloo", "http://dbpedia.org/resource/Digging_for_Britain", "http://dbpedia.org/resource/Digging_for_the_Truth", "http://dbpedia.org/resource/Diggstown_(TV_series)", "http://dbpedia.org/resource/Digimon_Adventure", "http://dbpedia.org/resource/Digimon_Adventure_02", "http://dbpedia.org/resource/Digimon_Data_Squad", "http://dbpedia.org/resource/Digimon_Frontier", "http://dbpedia.org/resource/Digimon_Fusion", "http://dbpedia.org/resource/Digimon_Fusion_(season_1)", "http://dbpedia.org/resource/Digimon_Tamers", "http://dbpedia.org/resource/Digital_LG_Quiz", "http://dbpedia.org/resource/Digital_Tour", "http://dbpedia.org/resource/Dignity_(TV_series)", "http://dbpedia.org/resource/Dikhawa", "http://dbpedia.org/resource/Dil,_Diya,_Dehleez_(TV_series)", "http://dbpedia.org/resource/Dil-e-Beqarar", "http://dbpedia.org/resource/Dil-e-Bereham", "http://dbpedia.org/resource/Dil-e-Gumshuda", "http://dbpedia.org/resource/Dil-e-Jaanam_(2017_TV_series)", "http://dbpedia.org/resource/Dil-e-Momin", "http://dbpedia.org/resource/Dil-e-Muztar", "http://dbpedia.org/resource/Dil-e-Nadaan_(TV_series)", "http://dbpedia.org/resource/Dil-e-Veeran", "http://dbpedia.org/resource/Dil_Awaiz", "http://dbpedia.org/resource/Dil_Awaiz_(2022_TV_series)", "http://dbpedia.org/resource/Dil_Banjaara", "http://dbpedia.org/resource/Dil_Bekaraar", "http://dbpedia.org/resource/Dil_Deke_Dekho_(TV_series)", "http://dbpedia.org/resource/Dil_Dhoondta_Hai", "http://dbpedia.org/resource/Dil_Diyan_Gallan", "http://dbpedia.org/resource/Dil_Dosti_Dance", "http://dbpedia.org/resource/Dil_Dosti_Dobara", "http://dbpedia.org/resource/Dil_Dosti_Duniyadari", "http://dbpedia.org/resource/Dil_Hai_Chota_Sa_Choti_Si_Asha", "http://dbpedia.org/resource/Dil_Hai_Hindustani", "http://dbpedia.org/resource/Dil_Hi_Toh_Hai", "http://dbpedia.org/resource/Dil_Ishq", "http://dbpedia.org/resource/Dil_Jaise_Dhadke..._Dhadakne_Do", "http://dbpedia.org/resource/Dil_Jeetegi_Desi_Girl", "http://dbpedia.org/resource/Dil_Ka_Kia_Rung_Karun", "http://dbpedia.org/resource/Dil_Ki_Baatein_Dil_Hi_Jaane", "http://dbpedia.org/resource/Dil_Ki_Nazar_Se_Khoobsurat", "http://dbpedia.org/resource/Dil_Kiya_Karay", "http://dbpedia.org/resource/Dil_Lagi", "http://dbpedia.org/resource/Dil_Mom_Ka_Diya", "http://dbpedia.org/resource/Dil_Muhallay_Ki_Haveli", "http://dbpedia.org/resource/Dil_Na_Umeed_To_Nahi", "http://dbpedia.org/resource/Dil_Nawaz", "http://dbpedia.org/resource/Dil_Ruba", "http://dbpedia.org/resource/Dil_Sambhal_Jaa_Zara", "http://dbpedia.org/resource/Dil_Se_Di_Dua..._Saubhagyavati_Bhava%3F", "http://dbpedia.org/resource/Dil_Se_Dil_Tak", "http://dbpedia.org/resource/Dil_Se_Diya_Vachan", "http://dbpedia.org/resource/Dil_Tanha_Tanha", "http://dbpedia.org/resource/Dil_Tera_Hogaya", "http://dbpedia.org/resource/Dil_Tere_Naam", "http://dbpedia.org/resource/Dil_Toh_Happy_Hai_Ji", "http://dbpedia.org/resource/Dil_Yeh_Ziddi_Hai", "http://dbpedia.org/resource/Dilara_(TV_series)", "http://dbpedia.org/resource/Dilbert", "http://dbpedia.org/resource/Dilbert_(TV_series)", "http://dbpedia.org/resource/Dilfareb", "http://dbpedia.org/resource/Dill_Mill_Gayye", "http://dbpedia.org/resource/Dilli_Wali_Thakur_Gurls", "http://dbpedia.org/resource/Dillinger_(1991_film)", "http://dbpedia.org/resource/Dilya_Ghari_Tu_Sukhi_Raha", "http://dbpedia.org/resource/Dim_Dam_Dom", "http://dbpedia.org/resource/Dime_Qui\u00e9n_Soy:_Mistress_of_War", "http://dbpedia.org/resource/Dimension_20", "http://dbpedia.org/resource/Dimension_404", "http://dbpedia.org/resource/Dimension_W", "http://dbpedia.org/resource/Dimethoxyamphetamine", "http://dbpedia.org/resource/Dimitri_(Jonci\u00e8res)", "http://dbpedia.org/resource/Dimitrij", "http://dbpedia.org/resource/Dinah!", "http://dbpedia.org/resource/Diners,_Drive-Ins_and_Dives", "http://dbpedia.org/resource/Ding_Dong_School", "http://dbpedia.org/resource/Dinhing_Dapita_Sadya", "http://dbpedia.org/resource/Dining_Downunder", "http://dbpedia.org/resource/Dink,_the_Little_Dinosaur", "http://dbpedia.org/resource/Dinky_Dog", "http://dbpedia.org/resource/Dinner:_Impossible", "http://dbpedia.org/resource/Dinner_Date", "http://dbpedia.org/resource/Dinner_Date_(American_TV_series)", "http://dbpedia.org/resource/Dinner_Mate", "http://dbpedia.org/resource/Dinner_and_a_Movie", "http://dbpedia.org/resource/Dinner_at_Eight_(1989_film)", "http://dbpedia.org/resource/Dinner_at_Tiffani's", "http://dbpedia.org/resource/Dinner_for_Five", "http://dbpedia.org/resource/Dinner_with_Dani", "http://dbpedia.org/resource/Dinner_with_Don", "http://dbpedia.org/resource/Dinner_with_Friends_(film)", "http://dbpedia.org/resource/Dinner_with_Friends_with_Brett_Gelman_and_Friends", "http://dbpedia.org/resource/Dinner_with_a_Vampire", "http://dbpedia.org/resource/Dinner_with_the_Band", "http://dbpedia.org/resource/Dinner_with_the_Family", "http://dbpedia.org/resource/Dinnerladies", "http://dbpedia.org/resource/Dinnerladies_(TV_series)", "http://dbpedia.org/resource/Dino-Riders", "http://dbpedia.org/resource/Dino:_Stay_Out!", "http://dbpedia.org/resource/Dino:_The_Great_Egg-Scape", "http://dbpedia.org/resource/DinoSquad", "http://dbpedia.org/resource/Dino_Babies", "http://dbpedia.org/resource/Dino_Dan", "http://dbpedia.org/resource/Dino_Dana", "http://dbpedia.org/resource/Dino_Girl_Gauko", "http://dbpedia.org/resource/Dino_Ki_Dulhaniya", "http://dbpedia.org/resource/Dino_Ranch", "http://dbpedia.org/resource/Dinocroc_vs._Supergator", "http://dbpedia.org/resource/Dinofroz", "http://dbpedia.org/resource/Dinosapien", "http://dbpedia.org/resource/Dinosaucers", "http://dbpedia.org/resource/Dinosaur!", "http://dbpedia.org/resource/Dinosaur_Baby_Holy_Heroes", "http://dbpedia.org/resource/Dinosaur_Britain", "http://dbpedia.org/resource/Dinosaur_Corps_Koseidon", "http://dbpedia.org/resource/Dinosaur_Planet_(TV_series)", "http://dbpedia.org/resource/Dinosaur_Revolution", "http://dbpedia.org/resource/Dinosaur_Train", "http://dbpedia.org/resource/Dinosaur_Wars_(film)", "http://dbpedia.org/resource/Dinosaurs,_Myths_and_Monsters", "http://dbpedia.org/resource/Dinosaurs:_The_Final_Day_with_David_Attenborough", "http://dbpedia.org/resource/Dinosaurs_(TV_series)", "http://dbpedia.org/resource/Dinoshark", "http://dbpedia.org/resource/Dinotopia_(TV_series)", "http://dbpedia.org/resource/Dinotopia_(miniseries)", "http://dbpedia.org/resource/Dinotrux", "http://dbpedia.org/resource/Dio_vede_e_provvede", "http://dbpedia.org/resource/Diomedes,_el_cacique_de_la_junta", "http://dbpedia.org/resource/Dip_(TV_series)", "http://dbpedia.org/resource/Dipdap", "http://dbpedia.org/resource/Diplodos", "http://dbpedia.org/resource/Diplomatic_Immunity_(Canadian_TV_series)", "http://dbpedia.org/resource/Diplomatic_Immunity_(New_Zealand_TV_series)", "http://dbpedia.org/resource/Diplomatic_Passport_(TV_series)", "http://dbpedia.org/resource/Dips_(TV_series)", "http://dbpedia.org/resource/Directions_in_Music", "http://dbpedia.org/resource/Directo_USA", "http://dbpedia.org/resource/Directors_Commentary", "http://dbpedia.org/resource/Direito_de_Amar", "http://dbpedia.org/resource/Diretta_Stadio", "http://dbpedia.org/resource/Dirili\u015f:_Ertu\u011frul", "http://dbpedia.org/resource/Dirk_Gently's_Holistic_Detective_Agency_(TV_series)", "http://dbpedia.org/resource/Dirk_Gently_(TV_series)", "http://dbpedia.org/resource/Dirt_(TV_series)", "http://dbpedia.org/resource/Dirt_Game", "http://dbpedia.org/resource/Dirtgirlworld", "http://dbpedia.org/resource/Dirty_Dancing:_The_Time_of_Your_Life", "http://dbpedia.org/resource/Dirty_Dancing_(1988_TV_series)", "http://dbpedia.org/resource/Dirty_Dancing_(2006_TV_series)", "http://dbpedia.org/resource/Dirty_Dancing_(2017_film)", "http://dbpedia.org/resource/Dirty_Dancing_(reality_TV_series)", "http://dbpedia.org/resource/Dirty_Filthy_Love", "http://dbpedia.org/resource/Dirty_Harry_(film_series)", "http://dbpedia.org/resource/Dirty_Jobs", "http://dbpedia.org/resource/Dirty_Jobs_(Australian_TV_series)", "http://dbpedia.org/resource/Dirty_John_(TV_series)", "http://dbpedia.org/resource/Dirty_Laundry_Live", "http://dbpedia.org/resource/Dirty_Linen_(Philippine_TV_Series)", "http://dbpedia.org/resource/Dirty_Money:_The_Story_of_the_Criminal_Assets_Bureau", "http://dbpedia.org/resource/Dirty_Money_(2011_TV_series)", "http://dbpedia.org/resource/Dirty_Money_(2018_TV_series)", "http://dbpedia.org/resource/Dirty_Money_(game_show)", "http://dbpedia.org/resource/Dirty_Pair", "http://dbpedia.org/resource/Dirty_Pictures", "http://dbpedia.org/resource/Dirty_Rotten_Cheater", "http://dbpedia.org/resource/Dirty_Sally", "http://dbpedia.org/resource/Dirty_Sanchez_(TV_series)", "http://dbpedia.org/resource/Dirty_Sexy_Funny", "http://dbpedia.org/resource/Dirty_Sexy_Money", "http://dbpedia.org/resource/Dirty_Sexy_Things", "http://dbpedia.org/resource/Dirty_Soap", "http://dbpedia.org/resource/Dirty_War_(film)", "http://dbpedia.org/resource/Dirty_Work_(TV_series)", "http://dbpedia.org/resource/Disappearance_(2002_film)", "http://dbpedia.org/resource/Disappeared_(TV_program)", "http://dbpedia.org/resource/Disappearing_Acts", "http://dbpedia.org/resource/Disappearing_London", "http://dbpedia.org/resource/Disappearing_World_(TV_series)", "http://dbpedia.org/resource/Disaster_DIY", "http://dbpedia.org/resource/Disaster_Date", "http://dbpedia.org/resource/Disaster_Masters", "http://dbpedia.org/resource/Disaster_Zone:_Volcano_in_New_York", "http://dbpedia.org/resource/Disaster_at_Silo_7", "http://dbpedia.org/resource/Disaster_on_the_Coastliner", "http://dbpedia.org/resource/Disband_(TV_series)", "http://dbpedia.org/resource/Disclaimer_(TV_series)", "http://dbpedia.org/resource/Disclosed", "http://dbpedia.org/resource/Disco_2_(TV_series)", "http://dbpedia.org/resource/Disco_Beaver_from_Outer_Space", "http://dbpedia.org/resource/Discorama", "http://dbpedia.org/resource/Discoring", "http://dbpedia.org/resource/Discover_Tasmania", "http://dbpedia.org/resource/Discoveries_(TV_series)", "http://dbpedia.org/resource/Discovering_the_Bible", "http://dbpedia.org/resource/Discovery_(American_TV_series)", "http://dbpedia.org/resource/Discovery_(Canadian_TV_series)", "http://dbpedia.org/resource/Discovery_Atlas", "http://dbpedia.org/resource/Discovery_of_Love", "http://dbpedia.org/resource/Discworld", "http://dbpedia.org/resource/Disenchantment_(TV_series)", "http://dbpedia.org/resource/Dise\u00f1ando_tu_amor", "http://dbpedia.org/resource/Disgaea", "http://dbpedia.org/resource/Dish!", "http://dbpedia.org/resource/Dish_Nation", "http://dbpedia.org/resource/Dishayen", "http://dbpedia.org/resource/Disinformation_(TV_series)", "http://dbpedia.org/resource/Disjointed", "http://dbpedia.org/resource/Dismal_Lakes", "http://dbpedia.org/resource/Disney's_Activity_Center", "http://dbpedia.org/resource/Disney's_Aladdin:_A_Musical_Spectacular", "http://dbpedia.org/resource/Disney's_Animated_Storybook", "http://dbpedia.org/resource/Disney's_Fairy_Tale_Weddings", "http://dbpedia.org/resource/Disney's_Freaky_Friday_(1995_film)", "http://dbpedia.org/resource/Disney's_Friends_for_Change", "http://dbpedia.org/resource/Disney's_Friends_for_Change_Games", "http://dbpedia.org/resource/Disney's_House_of_Mouse", "http://dbpedia.org/resource/Disney_Channel_(UK_and_Ireland)", "http://dbpedia.org/resource/Disney_Channel_Games", "http://dbpedia.org/resource/Disney_Channel_in_Concert", "http://dbpedia.org/resource/Disney_Club", "http://dbpedia.org/resource/Disney_Fam_Jam", "http://dbpedia.org/resource/Disney_Family_Album", "http://dbpedia.org/resource/Disney_Parks_Christmas_Day_Parade", "http://dbpedia.org/resource/Disney_Q_Family_Mastermind", "http://dbpedia.org/resource/Disney_Sing-Along_Songs", "http://dbpedia.org/resource/Disney_Theatrical_Group", "http://dbpedia.org/resource/Disney_Think_Fast", "http://dbpedia.org/resource/Disney_Time", "http://dbpedia.org/resource/Disney_anthology_television_series", "http://dbpedia.org/resource/Disney_on_Ice", "http://dbpedia.org/resource/Disokkupati", "http://dbpedia.org/resource/Dispatches_(TV_programme)", "http://dbpedia.org/resource/Dispatches_from_Elsewhere", "http://dbpedia.org/resource/Dispatches_from_a_Field_Hospital", "http://dbpedia.org/resource/Disraeli_(TV_serial)", "http://dbpedia.org/resource/Disrupt_&_Dismantle", "http://dbpedia.org/resource/Disrupt_with_Karen_Finney", "http://dbpedia.org/resource/Dissenters'_March", "http://dbpedia.org/resource/Distant_Shores_(British_TV_series)", "http://dbpedia.org/resource/Distinguished_Canadians", "http://dbpedia.org/resource/Distorted_(TV_series)", "http://dbpedia.org/resource/Distraction_(game_show)", "http://dbpedia.org/resource/Distretto_di_Polizia", "http://dbpedia.org/resource/Dit_was_het_nieuws", "http://dbpedia.org/resource/Ditha_Sab", "http://dbpedia.org/resource/Ditte_&_Louise", "http://dbpedia.org/resource/Diva_(2010_TV_series)", "http://dbpedia.org/resource/Divas_Hit_the_Road", "http://dbpedia.org/resource/Divas_in_Distress", "http://dbpedia.org/resource/Dive_Club", "http://dbpedia.org/resource/Divergence_Eve", "http://dbpedia.org/resource/Divergent_trilogy", "http://dbpedia.org/resource/Diverted", "http://dbpedia.org/resource/Divided_(American_game_show)", "http://dbpedia.org/resource/Divided_(British_game_show)", "http://dbpedia.org/resource/Divided_(Indian_game_show)", "http://dbpedia.org/resource/Divina,_est\u00e1_en_tu_coraz\u00f3n", "http://dbpedia.org/resource/Divine_Design", "http://dbpedia.org/resource/Divine_Melody", "http://dbpedia.org/resource/Divine_Retribution_(TV_series)", "http://dbpedia.org/resource/Division_4", "http://dbpedia.org/resource/Divisional_Public_School_and_College", "http://dbpedia.org/resource/Divithura_(teledrama)", "http://dbpedia.org/resource/Divorce_(TV_series)", "http://dbpedia.org/resource/Divorce_Court", "http://dbpedia.org/resource/Divorce_Court_(Australian_TV_series)", "http://dbpedia.org/resource/Divorce_His,_Divorce_Hers", "http://dbpedia.org/resource/Divorce_Lawyer_in_Love", "http://dbpedia.org/resource/Divorce_Wars:_A_Love_Story", "http://dbpedia.org/resource/Divorciadas", "http://dbpedia.org/resource/Divya_Drishti", "http://dbpedia.org/resource/Dixi_(TV_series)", "http://dbpedia.org/resource/Dixieland_Jazz_(TV_series)", "http://dbpedia.org/resource/Dixon_of_Dock_Green", "http://dbpedia.org/resource/Diya_Aur_Baati_Hum", "http://dbpedia.org/resource/Diyala_campaign", "http://dbpedia.org/resource/Diyar-e-Dil", "http://dbpedia.org/resource/Diyos_at_Bayan", "http://dbpedia.org/resource/Diz_Iz_It!", "http://dbpedia.org/resource/Dizengoff_Prize", "http://dbpedia.org/resource/Dizzy_Heights_(TV_series)", "http://dbpedia.org/resource/Django_(TV_series)", "http://dbpedia.org/resource/Djemai_Family", "http://dbpedia.org/resource/Djibril_\u2013_The_Devil_Angel", "http://dbpedia.org/resource/Djihad_(film)", "http://dbpedia.org/resource/Dnevnik_HRT", "http://dbpedia.org/resource/Dnevnik_MRT", "http://dbpedia.org/resource/Do-ol_Ah-in_Going_All_Directions", "http://dbpedia.org/resource/DoDo,_The_Kid_from_Outer_Space", "http://dbpedia.org/resource/DoReMi_Market", "http://dbpedia.org/resource/Do_Bol", "http://dbpedia.org/resource/Do_Dil_Bandhe_Ek_Dori_Se", "http://dbpedia.org/resource/Do_Dil_Ek_Jaan", "http://dbpedia.org/resource/Do_Do_Sol_Sol_La_La_Sol", "http://dbpedia.org/resource/Do_Hanson_Ka_Jodaa", "http://dbpedia.org/resource/Do_It_(TV_series)", "http://dbpedia.org/resource/Do_It_for_Yourself", "http://dbpedia.org/resource/Do_Lafzon_Ki_Kahani_(TV_series)", "http://dbpedia.org/resource/Do_No_Harm_(TV_series)", "http://dbpedia.org/resource/Do_Not_Adjust_Your_Set", "http://dbpedia.org/resource/Do_Not_Disturb_(TV_series)", "http://dbpedia.org/resource/Do_Not_Fold,_Spindle_or_Mutilate", "http://dbpedia.org/resource/Do_Not_Go_Gentle_Into_That_Good_Night_(film)", "http://dbpedia.org/resource/Do_Over", "http://dbpedia.org/resource/Do_Qadam_Door_Thay", "http://dbpedia.org/resource/Do_S_Deka", "http://dbpedia.org/resource/Do_Saal_Ki_Aurat", "http://dbpedia.org/resource/Do_Saheliyaan..._Kismat_Ki_Kathputaliyaan", "http://dbpedia.org/resource/Abaza_(TV_show)", "http://dbpedia.org/resource/Abele_(Alfieri)", "http://dbpedia.org/resource/Abigail_(telenovela)", "http://dbpedia.org/resource/Abro_(TV_serial)", "http://dbpedia.org/resource/Abr\u00e1zame_muy_fuerte", "http://dbpedia.org/resource/Absolute_Power_(comedy)", "http://dbpedia.org/resource/Absolutely_(sketch_show)", "http://dbpedia.org/resource/Sturmgesch\u00fctz", "http://dbpedia.org/resource/Tailhook_scandal", "http://dbpedia.org/resource/The_Chaser_APEC_pranks", "http://dbpedia.org/resource/The_Disasters_of_War", "http://dbpedia.org/resource/The_Rose_of_Persia", "http://dbpedia.org/resource/There_is_No_Natural_Religion", "http://dbpedia.org/resource/Thirty-six_Views_of_Mount_Fuji_(Hiroshige)", "http://dbpedia.org/resource/Uno_(card_game)", "http://dbpedia.org/resource/WDR_Computerclub", "http://dbpedia.org/resource/Winter_Line", "http://dbpedia.org/resource/ABS-CBN_International_Report", "http://dbpedia.org/resource/Agora_Trilogy", "http://dbpedia.org/resource/Fantastic_Four:_1234", "http://dbpedia.org/resource/Fedora_AOS", "http://dbpedia.org/resource/GEC_4000_series", "http://dbpedia.org/resource/Hot_Air_Balloon_(rock_opera)", "http://dbpedia.org/resource/I'm_Alright_Now", "http://dbpedia.org/resource/IBM_3590", "http://dbpedia.org/resource/July_1979_Madrid_bombings", "http://dbpedia.org/resource/Kimber_Aegis", "http://dbpedia.org/resource/Kodak_DCS_400_series", "http://dbpedia.org/resource/La_Academia_(Paraguay)", "http://dbpedia.org/resource/La_Academia_USA", "http://dbpedia.org/resource/List_of_American_Idol_finalists", "http://dbpedia.org/resource/Marvel_1602", "http://dbpedia.org/resource/Marvel_1985", "http://dbpedia.org/resource/Mitsubishi_Fuso_Aero_Bus", "http://dbpedia.org/resource/Nokia_6600_slide", "http://dbpedia.org/resource/Pretty_Little_Liars_(TV_series)", "http://dbpedia.org/resource/Psychomotor_agitation", "http://dbpedia.org/resource/Quasar_2000", "http://dbpedia.org/resource/Radeon_HD_7000_Series", "http://dbpedia.org/resource/Rickenbacker_300_Series", "http://dbpedia.org/resource/Roderick_Alleyn", "http://dbpedia.org/resource/Scottish_Agricultural_Revolution", "http://dbpedia.org/resource/See_America_First", "http://dbpedia.org/resource/Sega_All-Stars_(series)", "http://dbpedia.org/resource/September_2010_Lahore_bombings", "http://dbpedia.org/resource/Sophia_Aliberti", "http://dbpedia.org/resource/Sound_BlasterAxx", "http://dbpedia.org/resource/Swallows_and_Amazons_series", "http://dbpedia.org/resource/The_180", "http://dbpedia.org/resource/The_A-List_(2007_TV_series)", "http://dbpedia.org/resource/The_A-List_(novel_series)", "http://dbpedia.org/resource/The_Africans_(radio_program)", "http://dbpedia.org/resource/The_Amazing_Joy_Buzzards", "http://dbpedia.org/resource/The_Amory_Wars", "http://dbpedia.org/resource/The_Amtrak_Wars", "http://dbpedia.org/resource/The_Chronicles_of_Amber", "http://dbpedia.org/resource/The_Stand:_American_Nightmares", "http://dbpedia.org/resource/Trial_of_the_193", "http://dbpedia.org/resource/Type_625_research_vessel", "http://dbpedia.org/resource/UFC_All_Access", "http://dbpedia.org/resource/UNESCO_Albert_Einstein_medal", "http://dbpedia.org/resource/VH1:_All_Access", "http://dbpedia.org/resource/Animal_X_(TV_series)", "http://dbpedia.org/resource/Arthurian_legend", "http://dbpedia.org/resource/Back_in_the_Day_(TV_series)", "http://dbpedia.org/resource/Bakole_people", "http://dbpedia.org/resource/Gbandi", "http://dbpedia.org/resource/Genesis_of_Aquarion_(OVA)", "http://dbpedia.org/resource/Hellblazer_Special:_Bad_Blood", "http://dbpedia.org/resource/Juno_and_Avos_(opera)", "http://dbpedia.org/resource/Le_roi_Arthus", "http://dbpedia.org/resource/List_of_Arrow_characters", "http://dbpedia.org/resource/Memory_Bank_(UK_game_show)", "http://dbpedia.org/resource/Operation_AntiSec", "http://dbpedia.org/resource/Oswald_Bastable", "http://dbpedia.org/resource/Ralphi_\u2013_Der_Schlaub\u00e4r_aus_der_Augsburger_Puppenkiste", "http://dbpedia.org/resource/Seagate_Barracuda", "http://dbpedia.org/resource/The_Apple_Tree", "http://dbpedia.org/resource/The_Appleyards", "http://dbpedia.org/resource/The_Archers", "http://dbpedia.org/resource/The_Archives_of_Anthropos", "http://dbpedia.org/resource/The_Associates_(U.S._TV_series)", "http://dbpedia.org/resource/The_Avatar_Series", "http://dbpedia.org/resource/The_Babysitter_(novel_series)", "http://dbpedia.org/resource/The_Bachelor_(Israeli_TV_series)", "http://dbpedia.org/resource/The_Ballantyne_Novels", "http://dbpedia.org/resource/The_Baroness_(novels)", "http://dbpedia.org/resource/The_Beatles_Anthology", "http://dbpedia.org/resource/The_Big_Gay_Sketch_Show", "http://dbpedia.org/resource/The_Rob,_Arnie,_and_Dawn_Show", "http://dbpedia.org/resource/Walt_Disney_Presents:_Annette", "http://dbpedia.org/resource/Green_Lantern:_Mosaic", "http://dbpedia.org/resource/Inspector_Nardone", "http://dbpedia.org/resource/La_morte_d'Orfeo", "http://dbpedia.org/resource/Lake_Miwok", "http://dbpedia.org/resource/Mi_amor_frente_al_pasado", "http://dbpedia.org/resource/Mia's_Big_Adventure_Collection", "http://dbpedia.org/resource/Michael_Bennett_(book_series)", "http://dbpedia.org/resource/Michael_Moorcock's_Multiverse", "http://dbpedia.org/resource/Micheline", "http://dbpedia.org/resource/Mickey_McGuire_(film_series)", "http://dbpedia.org/resource/Mickey_Mouse_(comic_book)", "http://dbpedia.org/resource/Midnight_Club", "http://dbpedia.org/resource/Midnighters_trilogy", "http://dbpedia.org/resource/Midweek_(BBC_Radio_4)", "http://dbpedia.org/resource/Mighty_Max_(toyline)", "http://dbpedia.org/resource/Milady_3000", "http://dbpedia.org/resource/Milagros_(telenovela)", "http://dbpedia.org/resource/Milenko_Nedelkovski_Show", "http://dbpedia.org/resource/Milgram_experiment", "http://dbpedia.org/resource/Mille_(TV_series)", "http://dbpedia.org/resource/Millennium:_Tribal_Wisdom_and_the_Modern_World", "http://dbpedia.org/resource/Millennium_(video_game_series)", "http://dbpedia.org/resource/Millennium_Technology_Prize", "http://dbpedia.org/resource/Milton_(cartoon)", "http://dbpedia.org/resource/Mimmi_(book_series)", "http://dbpedia.org/resource/MindTrap", "http://dbpedia.org/resource/Minh_Nguyen", "http://dbpedia.org/resource/Minidoka_Project", "http://dbpedia.org/resource/Misaeng_(TV_series)", "http://dbpedia.org/resource/Miss_Julie_(Alwyn_opera)", "http://dbpedia.org/resource/Miss_Julie_(Rorem_opera)", "http://dbpedia.org/resource/Miss_Prissy", "http://dbpedia.org/resource/Mit_Leib_und_Seele_(TV_series)", "http://dbpedia.org/resource/Mixed_Doubles_(play)", "http://dbpedia.org/resource/Mo's_Mischief", "http://dbpedia.org/resource/Mock_&_Sweet", "http://dbpedia.org/resource/Mock_Turtles_(opera)", "http://dbpedia.org/resource/Model_F_keyboard", "http://dbpedia.org/resource/Model_Wife", "http://dbpedia.org/resource/Modesty_Blaise", "http://dbpedia.org/resource/Moment_in_Peking_(2014_TV_series)", "http://dbpedia.org/resource/Mona_(opera)", "http://dbpedia.org/resource/Monarch:_The_Big_Bear_of_Tallac", "http://dbpedia.org/resource/Mond_Mond_Mond", "http://dbpedia.org/resource/Monday_demonstrations_in_East_Germany", "http://dbpedia.org/resource/Monkey_Business_(TV_series)", "http://dbpedia.org/resource/Monkey_Magic_(British_TV_series)", "http://dbpedia.org/resource/Mono_tribe", "http://dbpedia.org/resource/Montauk_Project", "http://dbpedia.org/resource/Monte_Carlo_(radio_programme)", "http://dbpedia.org/resource/Montmorency_series", "http://dbpedia.org/resource/Moomins", "http://dbpedia.org/resource/Moon_River_(TV_series)", "http://dbpedia.org/resource/Mooney_(radio_programme)", "http://dbpedia.org/resource/Mordant's_Need", "http://dbpedia.org/resource/More_or_Less_(radio_programme)", "http://dbpedia.org/resource/Morgen_schon", "http://dbpedia.org/resource/Morgen_und_Abend", "http://dbpedia.org/resource/Morning_Call_(CNBC)", "http://dbpedia.org/resource/Morning_Star_(TV_series)", "http://dbpedia.org/resource/Mortdecai", "http://dbpedia.org/resource/Moses_(1968)", "http://dbpedia.org/resource/Most_Haunted:_Midsummer_Murders", "http://dbpedia.org/resource/Mother_and_Child_Scheme", "http://dbpedia.org/resource/MotoGP", "http://dbpedia.org/resource/Motoring_(TV_series)", "http://dbpedia.org/resource/Mountain_Meadows_massacre", "http://dbpedia.org/resource/Moving_Pictures_(TV_series)", "http://dbpedia.org/resource/Mozu", "http://dbpedia.org/resource/Mr._President_(radio_series)", "http://dbpedia.org/resource/Mrityunjay_(TV_series)", "http://dbpedia.org/resource/Ms._Tree", "http://dbpedia.org/resource/Much_Ado_About_Nothing_(opera)", "http://dbpedia.org/resource/Muddy_River_(Massachusetts)", "http://dbpedia.org/resource/Muirhead_Library_of_Philosophy", "http://dbpedia.org/resource/Mulk_(TV_series)", "http://dbpedia.org/resource/Multiverse_(Michael_Moorcock)", "http://dbpedia.org/resource/Munk's_Roll", "http://dbpedia.org/resource/Muppet_Babies", "http://dbpedia.org/resource/Murnaghan_(programme)", "http://dbpedia.org/resource/Music_Machine_(album_series)", "http://dbpedia.org/resource/Music_of_the_United_States_of_America_(publications)", "http://dbpedia.org/resource/Mutant_(role-playing_game)", "http://dbpedia.org/resource/Mutio_Scevola", "http://dbpedia.org/resource/Muttley", "http://dbpedia.org/resource/My_Baby_(series)", "http://dbpedia.org/resource/My_Fair_Lady_(1958_TV_series)", "http://dbpedia.org/resource/My_Generation_(game_show)", "http://dbpedia.org/resource/My_Girlfriend_(TV_series)", "http://dbpedia.org/resource/My_Music_(radio)", "http://dbpedia.org/resource/My_Sister_and_I_(TV_series)", "http://dbpedia.org/resource/My_Story_(Scholastic_New_Zealand)", "http://dbpedia.org/resource/My_Story_(Scholastic_UK)", "http://dbpedia.org/resource/My_Struggle_(Knausg\u00e5rd_novels)", "http://dbpedia.org/resource/Mykyta_the_Fox", "http://dbpedia.org/resource/Mylene_Flare_Jenius", "http://dbpedia.org/resource/Mystery_Files", "http://dbpedia.org/resource/Mystery_Files_(British_TV_series)", "http://dbpedia.org/resource/Mystery_House_(radio_drama)", "http://dbpedia.org/resource/Mystery_Mansion_(board_game)", "http://dbpedia.org/resource/Mystic_Comics", "http://dbpedia.org/resource/Mystique_(Blackpool_Pleasure_Beach)", "http://dbpedia.org/resource/Myst\u00e8re_(Cirque_du_Soleil)", "http://dbpedia.org/resource/MythAdventures", "http://dbpedia.org/resource/Mythos_(Marvel_Comics)", "http://dbpedia.org/resource/Mythos_(film)", "http://dbpedia.org/resource/Mythos_Island", "http://dbpedia.org/resource/M\u00e9duse_(opera)", "http://dbpedia.org/resource/NHL_Hitz", "http://dbpedia.org/resource/Naanal", "http://dbpedia.org/resource/Nabulsi_soap", "http://dbpedia.org/resource/Nacho_(telenovela)", "http://dbpedia.org/resource/Nanako_SOS", "http://dbpedia.org/resource/Nanami-chan", "http://dbpedia.org/resource/Nancy_Drew", "http://dbpedia.org/resource/Nanosatellite_Launch_System", "http://dbpedia.org/resource/Nanta_(show)", "http://dbpedia.org/resource/Nargiz_(opera)", "http://dbpedia.org/resource/Nashorn,_Zebra_&_Co.", "http://dbpedia.org/resource/Natacha_(comics)", "http://dbpedia.org/resource/Nathan_Hills", "http://dbpedia.org/resource/Nation_Lakes", "http://dbpedia.org/resource/National_Comics_(series)", "http://dbpedia.org/resource/National_Design_Awards", "http://dbpedia.org/resource/National_Finance_Commission_Award", "http://dbpedia.org/resource/National_Lampoon_Lemmings", "http://dbpedia.org/resource/National_Learning_Network", "http://dbpedia.org/resource/National_Medal_of_Arts", "http://dbpedia.org/resource/National_Youth_Service_(Zimbabwe)", "http://dbpedia.org/resource/Natoma_(opera)", "http://dbpedia.org/resource/Nature_(radio_programme)", "http://dbpedia.org/resource/Nehi", "http://dbpedia.org/resource/New_Deal_for_Communities", "http://dbpedia.org/resource/New_Series_Adventures_(Doctor_Who)", "http://dbpedia.org/resource/New_Star_Soccer", "http://dbpedia.org/resource/Newspapers_in_Education", "http://dbpedia.org/resource/Ninja_High_School", "http://dbpedia.org/resource/Nobody_Likes_Onions", "http://dbpedia.org/resource/North_American_Challenge_Skate", "http://dbpedia.org/resource/North_American_Poker_Tour", "http://dbpedia.org/resource/Not_for_Tourists", "http://dbpedia.org/resource/Novell_Embedded_Systems_Technology", "http://dbpedia.org/resource/Rats_of_NIMH", "http://dbpedia.org/resource/Rocky_and_Mugsy", "http://dbpedia.org/resource/Samsung_NX_series", "http://dbpedia.org/resource/Shevchenko_National_Prize", "http://dbpedia.org/resource/Show_Me_the_Monet", "http://dbpedia.org/resource/Sock_Monkey", "http://dbpedia.org/resource/Strikeforce:_Morituri", "http://dbpedia.org/resource/TAG_Heuer_Monaco", "http://dbpedia.org/resource/The_'Nam", "http://dbpedia.org/resource/The_Bob_Monkhouse_Hour", "http://dbpedia.org/resource/The_Bob_Monkhouse_Show", "http://dbpedia.org/resource/The_Great_Moghuls_(film)", "http://dbpedia.org/resource/The_Mikado", "http://dbpedia.org/resource/The_Mitford_Years", "http://dbpedia.org/resource/The_Money_Machine", "http://dbpedia.org/resource/The_Monkey_King's_Daughter", "http://dbpedia.org/resource/The_Morgaine_Stories", "http://dbpedia.org/resource/The_Morland_Dynasty", "http://dbpedia.org/resource/The_Movement_(comics)", "http://dbpedia.org/resource/The_Murchison_Murders", "http://dbpedia.org/resource/The_Music_Box_(TV_series)", "http://dbpedia.org/resource/The_National_Lampoon_Radio_Hour", "http://dbpedia.org/resource/Uppo-Nalle", "http://dbpedia.org/resource/Virgin_Missing_Adventures", "http://dbpedia.org/resource/Virgin_New_Adventures", "http://dbpedia.org/resource/Yamaha_Motif", "http://dbpedia.org/resource/Fujifilm_XF1", "http://dbpedia.org/resource/Grandes_\u00e9tudes_de_Paganini", "http://dbpedia.org/resource/Guitar_Xpress", "http://dbpedia.org/resource/ITN_World_News", "http://dbpedia.org/resource/ITTF_World_Tour", "http://dbpedia.org/resource/Kapitan_\u017bbik", "http://dbpedia.org/resource/Moose_and_Zee", "http://dbpedia.org/resource/Nissan_Z-car", "http://dbpedia.org/resource/Olympus_XA", "http://dbpedia.org/resource/Qinetiq_Zephyr", "http://dbpedia.org/resource/Sharp_Wizard", "http://dbpedia.org/resource/Star_Wars:_X-wing_(book_series)", "http://dbpedia.org/resource/The_Willow_Pattern", "http://dbpedia.org/resource/The_Winchesters", "http://dbpedia.org/resource/The_Wishing_Well_(film)", "http://dbpedia.org/resource/The_Witchfinder_(TV_series)", "http://dbpedia.org/resource/The_Witching", "http://dbpedia.org/resource/The_Wizard_Knight", "http://dbpedia.org/resource/The_X_Factor_(U.S._TV_series)", "http://dbpedia.org/resource/Two-Face:_Year_One", "http://dbpedia.org/resource/Verschoten_&_Zoon", "http://dbpedia.org/resource/WOW_series", "http://dbpedia.org/resource/Wake_Up_with_Whoopi", "http://dbpedia.org/resource/Whittington_(opera)", "http://dbpedia.org/resource/Who_Gets_the_Dog%3F_(2007_film)", "http://dbpedia.org/resource/Wicked_(novel_series)", "http://dbpedia.org/resource/Wide_Wide_World", "http://dbpedia.org/resource/Wignacourt_towers", "http://dbpedia.org/resource/Wild_Decembers_(TV_series)", "http://dbpedia.org/resource/Wildbach", "http://dbpedia.org/resource/Wildbach_(TV_series)", "http://dbpedia.org/resource/Wilding_series", "http://dbpedia.org/resource/Wildsiderz", "http://dbpedia.org/resource/Wilks_Memorial_Award", "http://dbpedia.org/resource/Will_Work_for_Food_(TV_series)", "http://dbpedia.org/resource/William_Ratcliff_(Cui)", "http://dbpedia.org/resource/Windmill_(TV_series)", "http://dbpedia.org/resource/Wingfield_Series", "http://dbpedia.org/resource/Winifred_Lawson", "http://dbpedia.org/resource/Winky_Dink_and_You", "http://dbpedia.org/resource/Winning_Streak", "http://dbpedia.org/resource/Winston_Science_Fiction", "http://dbpedia.org/resource/Wisdom_(TV_series)", "http://dbpedia.org/resource/Witness:_Five_Plays_from_the_Gospel_of_Luke", "http://dbpedia.org/resource/Women's_Murder_Club_(novel_series)", "http://dbpedia.org/resource/Women's_Viewpoint", "http://dbpedia.org/resource/Wonderful_World_(TV_series)", "http://dbpedia.org/resource/Wonderstruck", "http://dbpedia.org/resource/Word_of_Mouth_(radio_programme)", "http://dbpedia.org/resource/Words_and_Music_(TV_series)", "http://dbpedia.org/resource/Wordsmith_(TV_series)", "http://dbpedia.org/resource/World_War_One_(TV_series)", "http://dbpedia.org/resource/World_Without_End_(comics)", "http://dbpedia.org/resource/Worms_(series)", "http://dbpedia.org/resource/Wormwood:_Gentleman_Corpse", "http://dbpedia.org/resource/Worst-Case_Scenario_(TV_series)", "http://dbpedia.org/resource/Would_You_Believe_(TV_series)", "http://dbpedia.org/resource/Wrecked_(UK_TV_series)", "http://dbpedia.org/resource/Wrinkles_(radio_series)", "http://dbpedia.org/resource/Write_On_(TV_series)", "http://dbpedia.org/resource/X-Change_(series)", "http://dbpedia.org/resource/X-Men:_Children_of_the_Atom_(comics)", "http://dbpedia.org/resource/X-Men_(comic_book)", "http://dbpedia.org/resource/XDCAM", "http://dbpedia.org/resource/XIII_(comics)", "http://dbpedia.org/resource/XXXenophile", "http://dbpedia.org/resource/X_(game_series)", "http://dbpedia.org/resource/X_Marks_the_Spot_(game_show)", "http://dbpedia.org/resource/Xanadu_Houses", "http://dbpedia.org/resource/Xombie_(comics)", "http://dbpedia.org/resource/Xpress_(TV_series)", "http://dbpedia.org/resource/Yacht_Rock", "http://dbpedia.org/resource/Yamaska_(TV_series)", "http://dbpedia.org/resource/Yasha_(manga)", "http://dbpedia.org/resource/Yellow_Dog_(Variety)", "http://dbpedia.org/resource/Yerukala_people", "http://dbpedia.org/resource/Yiddishkeit_(TV_series)", "http://dbpedia.org/resource/Yogi_Bear", "http://dbpedia.org/resource/Yoshimune_(anime)", "http://dbpedia.org/resource/Young_Reporters_for_the_Environment", "http://dbpedia.org/resource/Young_Sherlock_Holmes_(books)", "http://dbpedia.org/resource/Ys_(anime)", "http://dbpedia.org/resource/Yuri_(satellite)", "http://dbpedia.org/resource/ZAKA", "http://dbpedia.org/resource/ZMD:_Zombies_of_Mass_Destruction_(comics)", "http://dbpedia.org/resource/Z_series_space_suits", "http://dbpedia.org/resource/Zahra's_Blue_Eyes", "http://dbpedia.org/resource/Zap_Comix", "http://dbpedia.org/resource/Zappas_Olympics", "http://dbpedia.org/resource/Zarya_(opera)", "http://dbpedia.org/resource/Ze_(manga)", "http://dbpedia.org/resource/Zeit_genug", "http://dbpedia.org/resource/Zembla_(TV_series)", "http://dbpedia.org/resource/Zero_One_(TV_series)", "http://dbpedia.org/resource/Zero_to_Hero", "http://dbpedia.org/resource/Zig_et_Puce", "http://dbpedia.org/resource/Zigor", "http://dbpedia.org/resource/Zillion_(anime)", "http://dbpedia.org/resource/Ziyuan_(satellite)", "http://dbpedia.org/resource/Ziz_Gorges", "http://dbpedia.org/resource/Zodiac-films", "http://dbpedia.org/resource/Zonder_Ernst", "http://dbpedia.org/resource/Zoot_Suit_Riots", "http://dbpedia.org/resource/Zumba_Fitness_Dance_Party", "http://dbpedia.org/resource/\u00c1gueda_(telenovela)", "http://dbpedia.org/resource/\u00c9n\u00e9e_et_Lavinie_(Collasse)", "http://dbpedia.org/resource/\u00c9n\u00e9e_et_Lavinie_(Dauvergne)", "http://dbpedia.org/resource/\u00c9xitos_y_Recuerdos", "http://dbpedia.org/resource/Hamburger\u2013Hamilton_stages", "http://dbpedia.org/resource/Hamilton_Invaders", "http://dbpedia.org/resource/Hamilton_Town_Belt", "http://dbpedia.org/resource/Hammerin'_Harry", "http://dbpedia.org/resource/Hammering_Man", "http://dbpedia.org/resource/Hampshire_Book_Awards", "http://dbpedia.org/resource/Hamster_Vice", "http://dbpedia.org/resource/Hana_Yori_mo_Hana_no_Gotoku", "http://dbpedia.org/resource/Hana_to_Ry\u016b", "http://dbpedia.org/resource/Hanada_Sh\u014dnen_Shi", "http://dbpedia.org/resource/Hand_of_Hope", "http://dbpedia.org/resource/Handbook_of_North_American_Indians", "http://dbpedia.org/resource/Handbook_of_South_American_Indians", "http://dbpedia.org/resource/Handbook_of_the_Natural_Region_Divisions_of_Germany", "http://dbpedia.org/resource/Hanjuku-Joshi", "http://dbpedia.org/resource/Hank_Zipzer", "http://dbpedia.org/resource/Hanna_\u2013_Folge_deinem_Herzen", "http://dbpedia.org/resource/Hannibal_Lecter_(franchise)", "http://dbpedia.org/resource/Asi_es_la_Vida", "http://dbpedia.org/resource/Ford_Saturday_Night_Football", "http://dbpedia.org/resource/Herreavdelingen", "http://dbpedia.org/resource/Italian_Formula_4_Championship", "http://dbpedia.org/resource/Karl_Formes", "http://dbpedia.org/resource/La_Dolce_Vita_(TV_series)", "http://dbpedia.org/resource/Ladyland", "http://dbpedia.org/resource/Lee_and_Herring_(radio_series)", "http://dbpedia.org/resource/Lettres_provinciales", "http://dbpedia.org/resource/Magical_Hat", "http://dbpedia.org/resource/Matthew's_Best_Hit_TV", "http://dbpedia.org/resource/Olympics_Triplecast", "http://dbpedia.org/resource/Pastel_Yumi,_the_Magic_Idol", "http://dbpedia.org/resource/Primetime_Emmy_Award_for_Outstanding_Main_Title_Theme_Music", "http://dbpedia.org/resource/TV3_News", "http://dbpedia.org/resource/Taungurong", "http://dbpedia.org/resource/The_Faerie_Wars_Chronicles", "http://dbpedia.org/resource/The_Riftwar_Legacy", "http://dbpedia.org/resource/Video_magazine", "http://dbpedia.org/resource/WWE_Insurrextion", "http://dbpedia.org/resource/Weekend_Breakfast_(radio_show)", "http://dbpedia.org/resource/Wyoming_Democratic_caucuses,_2008", "http://dbpedia.org/resource/Big_Top_Ballet", "http://dbpedia.org/resource/CS1", "http://dbpedia.org/resource/Canon_XC10", "http://dbpedia.org/resource/Clever_(TV_series)", "http://dbpedia.org/resource/Do\u00f1a_B\u00e1rbara_(2008_telenovela)", "http://dbpedia.org/resource/Falling_for_Innocence", "http://dbpedia.org/resource/Fast_Money_(CNBC)", "http://dbpedia.org/resource/Franklin_6_series", "http://dbpedia.org/resource/Great_Barrier_Reef_(TV_series)", "http://dbpedia.org/resource/IBM_Electric_typewriter", "http://dbpedia.org/resource/India's_Great_Driving_Challenge", "http://dbpedia.org/resource/International_Motorsports_Hall_of_Fame_200", "http://dbpedia.org/resource/Intersection_for_the_Arts_Literary_Series", "http://dbpedia.org/resource/Jake_&_Blake", "http://dbpedia.org/resource/Kare_Baka", "http://dbpedia.org/resource/Kassai_and_Leuk", "http://dbpedia.org/resource/La_parodia", "http://dbpedia.org/resource/La_reine_Fiammette", "http://dbpedia.org/resource/Lacy's_Caves", "http://dbpedia.org/resource/Las_noticias_del_gui\u00f1ol", "http://dbpedia.org/resource/Le_Fric_Show", "http://dbpedia.org/resource/Let's_Eat_at_Home!", "http://dbpedia.org/resource/Lo_Sconosciuto", "http://dbpedia.org/resource/Luke_Nguyen's_Vietnam", "http://dbpedia.org/resource/Lupo_Alberto", "http://dbpedia.org/resource/Maggie_(1981_TV_series)", "http://dbpedia.org/resource/Maggie_(TV_series)", "http://dbpedia.org/resource/Mammals_of_Africa", "http://dbpedia.org/resource/Masterplots", "http://dbpedia.org/resource/Mental_Engineering", "http://dbpedia.org/resource/Motorola_Razr3", "http://dbpedia.org/resource/Mr._Brown_Coffee", "http://dbpedia.org/resource/My_Plaything", "http://dbpedia.org/resource/NBA_Sunday_Showcase_on_ABC", "http://dbpedia.org/resource/Nebula_Award_for_Best_Novel", "http://dbpedia.org/resource/New_Mermaids", "http://dbpedia.org/resource/New_York_State_Summer_School_of_the_Arts", "http://dbpedia.org/resource/Neynava_truck", "http://dbpedia.org/resource/Nickelodeon_UK_Kids'_Choice_Awards", "http://dbpedia.org/resource/Night_of_the_Proms", "http://dbpedia.org/resource/Nikon_Coolpix_P510", "http://dbpedia.org/resource/Ohio_Bicentennial", "http://dbpedia.org/resource/One_Hundred_Thousand_Bad_Jokes", "http://dbpedia.org/resource/Pennyland_project", "http://dbpedia.org/resource/Pentax_Q10", "http://dbpedia.org/resource/Pizarre", "http://dbpedia.org/resource/Providence_(TV_series)", "http://dbpedia.org/resource/Prudence_&_Caution", "http://dbpedia.org/resource/Radharc", "http://dbpedia.org/resource/Radio_Belgique", "http://dbpedia.org/resource/Ragged_Isle", "http://dbpedia.org/resource/Ravioli_(TV_series)", "http://dbpedia.org/resource/Robots_and_Avatars", "http://dbpedia.org/resource/Samt_und_Seide", "http://dbpedia.org/resource/Scarlett_Hill", "http://dbpedia.org/resource/Schulz_&_Schulz", "http://dbpedia.org/resource/Six_Characters_in_Search_of_an_Author_(opera)", "http://dbpedia.org/resource/Star_Radio_Network", "http://dbpedia.org/resource/Stiamo_bene_insieme", "http://dbpedia.org/resource/Super_Bowl_at_XL", "http://dbpedia.org/resource/Superdance_South_Africa_(TV_series)", "http://dbpedia.org/resource/Tales_of_the_Moonlight_Cutter", "http://dbpedia.org/resource/Teachings_of_Presidents_of_the_Church", "http://dbpedia.org/resource/Television's_Greatest_Hits", "http://dbpedia.org/resource/The_Accounts_of_Jingkang", "http://dbpedia.org/resource/The_Cavanaughs_(web_series)", "http://dbpedia.org/resource/The_Gift_(TV_series)", "http://dbpedia.org/resource/The_Second_Stage_Turbine_Blade_(comics)", "http://dbpedia.org/resource/The_Sensational_Spider-Man_(vol._2)", "http://dbpedia.org/resource/The_Tiara_Club", "http://dbpedia.org/resource/The_World_of_Beachcomber", "http://dbpedia.org/resource/Theban\u2013Spartan_War", "http://dbpedia.org/resource/Thuggee_and_Dacoity_Suppression_Acts,_1836\u20131848", "http://dbpedia.org/resource/Toda_Mujer", "http://dbpedia.org/resource/Tom_Clancy's_Net_Force_Explorers:_Shadow_of_Honor", "http://dbpedia.org/resource/Tom_Clancy's_Net_Force_Explorers:_The_Ultimate_Escape", "http://dbpedia.org/resource/Trimline_telephone", "http://dbpedia.org/resource/Tuubi", "http://dbpedia.org/resource/Two_Boys", "http://dbpedia.org/resource/Type_079_landing_ship_medium", "http://dbpedia.org/resource/Ujan_Ganger_Naiya", "http://dbpedia.org/resource/Ultraman_vs._Kamen_Rider", "http://dbpedia.org/resource/Unbeatables", "http://dbpedia.org/resource/Washington_Report_(DuMont_TV_series)", "http://dbpedia.org/resource/Wincon", "http://dbpedia.org/resource/World_Tamil_Conference", "http://dbpedia.org/resource/X\u00e1_L\u1ee3i_Pagoda_raids", "http://dbpedia.org/resource/Yalova_Peninsula_massacres_(1920\u201321)", "http://dbpedia.org/resource/Young_Doctor_Malone", "http://dbpedia.org/resource/History_of_the_Rugby_League_Conference", "http://dbpedia.org/resource/History_of_the_Squamish_people", "http://dbpedia.org/resource/History_wars", "http://dbpedia.org/resource/Hit_30", "http://dbpedia.org/resource/Hitchgathering", "http://dbpedia.org/resource/Hitler's_Bodyguard_(TV_series)", "http://dbpedia.org/resource/Hiyokoi", "http://dbpedia.org/resource/HoHoCon", "http://dbpedia.org/resource/Hobbes\u2013Wallis_controversy", "http://dbpedia.org/resource/Hockey_Central", "http://dbpedia.org/resource/Hodgepodge_Lodge", "http://dbpedia.org/resource/Hoffmann_kiln", "http://dbpedia.org/resource/Hoffnung_Music_Festival", "http://dbpedia.org/resource/Hog's_Back_Falls", "http://dbpedia.org/resource/Hogarth_Living_Poets", "http://dbpedia.org/resource/Hokum_&_Hex", "http://dbpedia.org/resource/Hold_the_Dream", "http://dbpedia.org/resource/Hole_cam", "http://dbpedia.org/resource/Holiday_Film_Festival", "http://dbpedia.org/resource/Holiday_Hit_Squad", "http://dbpedia.org/resource/Holiday_Showcase", "http://dbpedia.org/resource/Holiday_on_Ice", "http://dbpedia.org/resource/Holidays_at_Home", "http://dbpedia.org/resource/Holidays_in_the_Danger_Zone", "http://dbpedia.org/resource/Holly_the_Ghost", "http://dbpedia.org/resource/Hollywood's_Comedy_Nights", "http://dbpedia.org/resource/Hollywood_Love_Story", "http://dbpedia.org/resource/Hollywood_Star_Playhouse", "http://dbpedia.org/resource/Hollywood_Superstars", "http://dbpedia.org/resource/Hollywood_Trials", "http://dbpedia.org/resource/Holmegaard_bow", "http://dbpedia.org/resource/Holy_Avenger", "http://dbpedia.org/resource/Home_Things", "http://dbpedia.org/resource/Home_University_Library_of_Modern_Knowledge", "http://dbpedia.org/resource/Home_and_Away:_Romances", "http://dbpedia.org/resource/Home_and_Away:_Weddings", "http://dbpedia.org/resource/Homecoming_Scotland_2009", "http://dbpedia.org/resource/Homicide:_Second_Shift", "http://dbpedia.org/resource/Homofonia", "http://dbpedia.org/resource/Honda_CM_series", "http://dbpedia.org/resource/Honda_Challenge", "http://dbpedia.org/resource/Honda_NR", "http://dbpedia.org/resource/Honest_Doubt", "http://dbpedia.org/resource/Honey,_We're_Killing_the_Kids", "http://dbpedia.org/resource/Emperatriz_(1990_telenovela)", "http://dbpedia.org/resource/En_busca_del_para\u00edso_(1982_telenovela)", "http://dbpedia.org/resource/Encadenados_(1969_telenovela)", "http://dbpedia.org/resource/Encadenados_(telenovela)", "http://dbpedia.org/resource/Encirclement_Campaign_against_Hunan\u2013Jiangxi_Soviet", "http://dbpedia.org/resource/Encounter_(1960_TV_series)", "http://dbpedia.org/resource/Encounter_(TV_series)", "http://dbpedia.org/resource/Encrucijada_(telenovela)", "http://dbpedia.org/resource/Endemic_birds_of_Japan", "http://dbpedia.org/resource/Endemic_birds_of_New_Caledonia", "http://dbpedia.org/resource/Endemic_birds_of_eastern_North_America", "http://dbpedia.org/resource/Endemic_birds_of_the_Himalayas", "http://dbpedia.org/resource/Endemic_birds_of_western_North_America", "http://dbpedia.org/resource/Ender's_Game_series", "http://dbpedia.org/resource/Emcee_Africa", "http://dbpedia.org/resource/Emergency_(series)", "http://dbpedia.org/resource/Emilia_(telenovela)", "http://dbpedia.org/resource/Internet_Killed_Television", "http://dbpedia.org/resource/Nikon_S4", "http://dbpedia.org/resource/No_Manches", "http://dbpedia.org/resource/R\u00f6da_tr\u00e5den", "http://dbpedia.org/resource/Star_Awards_2005", "http://dbpedia.org/resource/Wish_Ko_Lang", "http://dbpedia.org/resource/Balita_Ngayon", "http://dbpedia.org/resource/Color_Me_a_Rainbow", "http://dbpedia.org/resource/Eurolaul", "http://dbpedia.org/resource/Fun_&_Fortune", "http://dbpedia.org/resource/Gabriela_(telenovela)", "http://dbpedia.org/resource/Generations_(U.S._TV_series)", "http://dbpedia.org/resource/Get_a_Life_(TV_series)", "http://dbpedia.org/resource/God_of_War_(series)", "http://dbpedia.org/resource/History_of_Saturday_Night_Live_(1975\u201380)", "http://dbpedia.org/resource/Homefront_(U.S._TV_series)", "http://dbpedia.org/resource/Iffet", "http://dbpedia.org/resource/Jet_Set_Radio_(series)", "http://dbpedia.org/resource/Kapag_nasa_Katwiran,_Ipaglaban_Mo!", "http://dbpedia.org/resource/Kiss_of_Rose_Princess", "http://dbpedia.org/resource/Konkan_Maratha", "http://dbpedia.org/resource/Leonardo_(TV_series)", "http://dbpedia.org/resource/Mach_a_\u0160ebestov\u00e1", "http://dbpedia.org/resource/Mainly_for_Women", "http://dbpedia.org/resource/Marie_(TV_series)", "http://dbpedia.org/resource/Marvel_Knights_4", "http://dbpedia.org/resource/MeeBOX", "http://dbpedia.org/resource/Mistborn_series", "http://dbpedia.org/resource/Moody's_Manual", "http://dbpedia.org/resource/Moses_(documentary)", "http://dbpedia.org/resource/Music_to_See_(1970s_TV_series)", "http://dbpedia.org/resource/My_Inner_Beast", "http://dbpedia.org/resource/Myst_(series)", "http://dbpedia.org/resource/NZ_on_Screen", "http://dbpedia.org/resource/Nang_Talung", "http://dbpedia.org/resource/National_Lampoon's_Class_of_'86", "http://dbpedia.org/resource/Next_Caller", "http://dbpedia.org/resource/Nowhere_Men", "http://dbpedia.org/resource/On_the_Job_(TV_series)", "http://dbpedia.org/resource/On_the_Record_(BBC_TV_series)", "http://dbpedia.org/resource/Pentax_PC35AF", "http://dbpedia.org/resource/Phish_in_Hampton", "http://dbpedia.org/resource/Phosphorus_halide", "http://dbpedia.org/resource/Pobre_Ni\u00f1a_Rica", "http://dbpedia.org/resource/Questione_Ladina", "http://dbpedia.org/resource/Results_Service", "http://dbpedia.org/resource/Revolution_618_(TV_Talk_show)", "http://dbpedia.org/resource/Risk_Takers", "http://dbpedia.org/resource/Rogue_Angel", "http://dbpedia.org/resource/Rubbery_Figures", "http://dbpedia.org/resource/Samsung_NX1", "http://dbpedia.org/resource/Savage_Sword_of_Conan", "http://dbpedia.org/resource/Showdown_with_Larry_Elder", "http://dbpedia.org/resource/Sin_Cities", "http://dbpedia.org/resource/Somaliland_Campaign", "http://dbpedia.org/resource/Star_Awards_2004", "http://dbpedia.org/resource/Sun_Belt_Conference_Men's_Basketball_Player_of_the_Year", "http://dbpedia.org/resource/Sunshine_Millions", "http://dbpedia.org/resource/Surge_Events", "http://dbpedia.org/resource/TASB_(psychedelics)", "http://dbpedia.org/resource/THPB_UAV", "http://dbpedia.org/resource/Talk2", "http://dbpedia.org/resource/Target_Luna", "http://dbpedia.org/resource/Tarim_mummies", "http://dbpedia.org/resource/Tatayet", "http://dbpedia.org/resource/Tatta_Hitotsu_no_Koi", "http://dbpedia.org/resource/Tellos", "http://dbpedia.org/resource/Telos_Doctor_Who_novellas", "http://dbpedia.org/resource/The_21_Conspiracy", "http://dbpedia.org/resource/The_Addams_Family_(1973_animated_series)", "http://dbpedia.org/resource/The_Artist's_Cottage_project", "http://dbpedia.org/resource/The_Benefactor", "http://dbpedia.org/resource/The_Bold_and_the_Beautiful_secondary_characters", "http://dbpedia.org/resource/The_Chronicles_of_Prydain", "http://dbpedia.org/resource/The_Colm_and_Lucy_Show", "http://dbpedia.org/resource/The_Cops_(TV_series)", "http://dbpedia.org/resource/The_Countess", "http://dbpedia.org/resource/The_Dark_Abode", "http://dbpedia.org/resource/The_Day_the_Music_Died_(radio)", "http://dbpedia.org/resource/The_Exclusives_(TV_show)", "http://dbpedia.org/resource/The_Firebringer_Trilogy", "http://dbpedia.org/resource/The_Good_Night_Chicago_Show", "http://dbpedia.org/resource/The_Intimates", "http://dbpedia.org/resource/The_Jimmy_Parkinson_Show", "http://dbpedia.org/resource/The_Mole_(UK_TV_series)", "http://dbpedia.org/resource/The_No._1_Ladies'_Detective_Agency", "http://dbpedia.org/resource/The_Return_of_the_Condor_Heroes_(Taiwanese_TV_series)", "http://dbpedia.org/resource/The_River_Flows_Eastwards", "http://dbpedia.org/resource/The_Robot_Johnson_Show", "http://dbpedia.org/resource/The_Royal_Diaries", "http://dbpedia.org/resource/The_Seven_Fabulous_Wonders", "http://dbpedia.org/resource/The_Ultimates_2", "http://dbpedia.org/resource/The_Un-Credible_Shrinking_Man", "http://dbpedia.org/resource/They_Go_On", "http://dbpedia.org/resource/This_I_Believe_(TV_series)", "http://dbpedia.org/resource/This_Is_That", "http://dbpedia.org/resource/Tierarzt_Dr._Engel", "http://dbpedia.org/resource/Today_(Irish_TV_series)", "http://dbpedia.org/resource/Tom-Tom_and_Nana", "http://dbpedia.org/resource/T\u00e9l\u00e8phe", "http://dbpedia.org/resource/Ultra_Quiz", "http://dbpedia.org/resource/Valeria_(1966_telenovela)", "http://dbpedia.org/resource/Vietnam:_The_Camera_at_War", "http://dbpedia.org/resource/West_Coast_Live", "http://dbpedia.org/resource/Westside_(TV_series)", "http://dbpedia.org/resource/Winning_Lines_(U.S._game_show)", "http://dbpedia.org/resource/Zaporizhian_March_(music)", "http://dbpedia.org/resource/Zoorama", "http://dbpedia.org/resource/Marvel_Superheroes:_What_the--%3F!", "http://dbpedia.org/resource/George_of_the_Jungle_(Season_2)", "http://dbpedia.org/resource/German_Mexican", "http://dbpedia.org/resource/Those_Who_Kill_(U.S._TV_series)", "http://dbpedia.org/resource/Medieval_World_Series", "http://dbpedia.org/resource/Meet_the_Izzards", "http://dbpedia.org/resource/Rivers_of_New_South_Wales", "http://dbpedia.org/resource/Not_Love_Alone", "http://dbpedia.org/resource/The_Twilight_Children", "http://dbpedia.org/resource/The_Tyrant_King", "http://dbpedia.org/resource/The_Way_It_Is_(radio_programme)", "http://dbpedia.org/resource/The_Wingfeather_Saga", "http://dbpedia.org/resource/Theatre_Date", "http://dbpedia.org/resource/This_Is_Your_Right", "http://dbpedia.org/resource/Thou_Shalt_Not_Kill_(TV_series)", "http://dbpedia.org/resource/Integration_tv", "http://dbpedia.org/resource/Jamaican_Canadian", "http://dbpedia.org/resource/Jamaicans_of_African_ancestry", "http://dbpedia.org/resource/James_Bond_in_film", "http://dbpedia.org/resource/Chambers_(series)__30_minutes__1", "http://dbpedia.org/resource/Sapphire_Films__UK-tv-prog-stub__1", "http://dbpedia.org/resource/Sarah_the_Teen_Princess__Sarah_the_Teen_Princess__1", "http://dbpedia.org/resource/Saturday_Night's_Main_Event__Saturday_Night's_Main_Event__1", "http://dbpedia.org/resource/Saturday_Primetime__Saturday_Primetime__1", "http://dbpedia.org/resource/Saved_by_the_Bell__Saved_by_the_Bell__1", "http://dbpedia.org/resource/Saving_Emily__Saving_Emily__1", "http://dbpedia.org/resource/Saving_Milly__Saving_Milly__1", "http://dbpedia.org/resource/Say_It_with_Music_(1957_TV_series)__Say_It_with_Music__1", "http://dbpedia.org/resource/School_Wars:_Hero__School_Wars__1", "http://dbpedia.org/resource/Scream_Street_(TV_series)__Scream_Street__1", "http://dbpedia.org/resource/Seachd_L\u00e0__Seachd_L\u00e0__1", "http://dbpedia.org/resource/Second_Sight_(Midsomer_Murders)__UK-tv-prog-stub__1", "http://dbpedia.org/resource/Spartan_Race_(TV_series)", "http://dbpedia.org/resource/Spatterjay", "http://dbpedia.org/resource/UNHhhh__Trixie_and_Katya_Save_the_World__1", "http://dbpedia.org/resource/USA_Today__:_The_Television_Show__1", "http://dbpedia.org/resource/VBirds__1", "http://dbpedia.org/resource/VBirds__:_Perfect__1", "http://dbpedia.org/resource/Val_Meets_The_VIPs__In_The_Limelight_With_Lesley__1", "http://dbpedia.org/resource/Vibe_Australia__Move_it_Mob_Style__1", "http://dbpedia.org/resource/Vickers_Wellington_LN514__Wellington_Bomber__1", "http://dbpedia.org/resource/Ukrainian_Brazilian", "http://dbpedia.org/resource/Ukrainian_diaspora_in_the_United_Kingdom", "http://dbpedia.org/resource/Ultra_Rich_Asian_Girls", "http://dbpedia.org/resource/Underground_(2016_TV_series)", "http://dbpedia.org/resource/Untitled_Film_Stills_(photograph_series)", "http://dbpedia.org/resource/Ute_Tribe", "http://dbpedia.org/resource/Uthiri_Pookal_(TV_series)", "http://dbpedia.org/resource/Uw_Oykangand_people", "http://dbpedia.org/resource/Uzboi-Landon-Morava_(ULM)", "http://dbpedia.org/resource/Vaidehi_(Tamil_TV_series)", "http://dbpedia.org/resource/Skins_(TV_series)", "http://dbpedia.org/resource/Wess'Har_Series", "http://dbpedia.org/resource/Hamshenis", "http://dbpedia.org/resource/Creek_people", "http://dbpedia.org/resource/Arab_British", "http://dbpedia.org/resource/British_Iranian", "http://dbpedia.org/resource/Lebanese_British", "http://dbpedia.org/resource/World's_Worst_Driver", "http://dbpedia.org/resource/List_of_Command_&_Conquer_factions", "http://dbpedia.org/resource/Gelivable_Sunday", "http://dbpedia.org/resource/Lachlan_Fox", "http://dbpedia.org/resource/Mabi", "http://dbpedia.org/resource/Mundhanai_Mudichu_(2010_TV_series)", "http://dbpedia.org/resource/Sisterhood_of_the_Travelling_Pants", "http://dbpedia.org/resource/Unnamed_Planet", "http://dbpedia.org/resource/Fear_Factor:_Khatron_Ke_Khiladi_(season_7)", "http://dbpedia.org/resource/List_of_Top_20_Countdown:_Most_Shocking_episodes", "http://dbpedia.org/resource/Rome:_Rise_and_fall_of_an_empire", "http://dbpedia.org/resource/The_Flintstones_(film_series)", "http://dbpedia.org/resource/Ai_to_Makoto", "http://dbpedia.org/resource/Aida", "http://dbpedia.org/resource/Aifric", "http://dbpedia.org/resource/Aik_Aur_Munafiq", "http://dbpedia.org/resource/Aik_Aur_Sitam_Hai", "http://dbpedia.org/resource/Aik_Din_Geo_Kay_Sath", "http://dbpedia.org/resource/Aik_Din_Geo_Ke_Saath", "http://dbpedia.org/resource/Aik_Hai_Nigar", "http://dbpedia.org/resource/Aik_Larki_Aam_Si", "http://dbpedia.org/resource/Aik_Nayee_Cinderella", "http://dbpedia.org/resource/Aik_Pal", "http://dbpedia.org/resource/Aik_Sitam_Aur", "http://dbpedia.org/resource/Aik_Thi_Misaal", "http://dbpedia.org/resource/Aik_Thi_Rania", "http://dbpedia.org/resource/Aika_R-16:_Virgin_Mission", "http://dbpedia.org/resource/Aikatsu_Planet!", "http://dbpedia.org/resource/Aikotoba_wa_Y\u016bki", "http://dbpedia.org/resource/Aikurushii", "http://dbpedia.org/resource/Aim_High_(TV_series)", "http://dbpedia.org/resource/Aim_in_Life", "http://dbpedia.org/resource/Aiman_(TV_program)", "http://dbpedia.org/resource/Ain't_Misbehavin'_(TV_series)", "http://dbpedia.org/resource/Ain't_That_America", "http://dbpedia.org/resource/Ain't_That_America_(TV_series)", "http://dbpedia.org/resource/Ainadamar", "http://dbpedia.org/resource/Ainak_Wala_Jin", "http://dbpedia.org/resource/Ainori", "http://dbpedia.org/resource/Ainsi_soient-ils", "http://dbpedia.org/resource/Aion_(manga)", "http://dbpedia.org/resource/Air_&_Sea_Show", "http://dbpedia.org/resource/Air_Aces", "http://dbpedia.org/resource/Air_America_(TV_series)", "http://dbpedia.org/resource/Air_City", "http://dbpedia.org/resource/Air_Creation_GT", "http://dbpedia.org/resource/Air_Force_One_Is_Down", "http://dbpedia.org/resource/Air_Guitar_in_Oulu", "http://dbpedia.org/resource/Air_Hostess_(TV_series)", "http://dbpedia.org/resource/Air_Power_(TV_series)", "http://dbpedia.org/resource/Air_Time_'57", "http://dbpedia.org/resource/Air_Ways", "http://dbpedia.org/resource/Airborne_XT", "http://dbpedia.org/resource/Airbus_A320neo_family", "http://dbpedia.org/resource/Aircraft_Apprentice_Scheme", "http://dbpedia.org/resource/Airforce_(TV_series)", "http://dbpedia.org/resource/Airline_(1982_TV_series)", "http://dbpedia.org/resource/Airline_(1998_TV_series)", "http://dbpedia.org/resource/Airline_(American_TV_series)", "http://dbpedia.org/resource/Airlines_(Indian_TV_series)", "http://dbpedia.org/resource/Airmageddon", "http://dbpedia.org/resource/Airplane_Repo", "http://dbpedia.org/resource/Airplay40", "http://dbpedia.org/resource/Airport_(TV_series)", "http://dbpedia.org/resource/Airport_24/7:_Miami", "http://dbpedia.org/resource/Airport_Core_Programme", "http://dbpedia.org/resource/Airport_Live", "http://dbpedia.org/resource/Airshow_(TV_series)", "http://dbpedia.org/resource/Airwaves_(TV_series)", "http://dbpedia.org/resource/Airwolf", "http://dbpedia.org/resource/Aisa_Des_Hai_Mera_(TV_series)", "http://dbpedia.org/resource/Aisay_Nahi_Chalay_Ga", "http://dbpedia.org/resource/Aise_Karo_Naa_Vidaa", "http://dbpedia.org/resource/Aiseki_Shokud\u014d", "http://dbpedia.org/resource/Aisha_(TV_series)", "http://dbpedia.org/resource/Aishiteiru_to_Itte_Kure", "http://dbpedia.org/resource/Aishiteru:_Kaiy\u014d", "http://dbpedia.org/resource/Aisi_Deewangi_Dekhi_Nahi_Kahi", "http://dbpedia.org/resource/Aisi_Hai_Tanhai", "http://dbpedia.org/resource/Aisyah_Putri_The_Series:_Jilbab_In_Love", "http://dbpedia.org/resource/Aitebaar", "http://dbpedia.org/resource/Aiura", "http://dbpedia.org/resource/Aizliegtais_pa\u0146\u0113miens", "http://dbpedia.org/resource/Aja_Aja_Tayo!", "http://dbpedia.org/resource/Ajax,_dit_is_mijn_club", "http://dbpedia.org/resource/Ajaxjournaal", "http://dbpedia.org/resource/Ajeeb_(TV_series)", "http://dbpedia.org/resource/Ajeeb_Daastaan_Hai_Ye", "http://dbpedia.org/resource/Aji_Sunte_Ho", "http://dbpedia.org/resource/Ajithana_Sahasagalu", "http://dbpedia.org/resource/Ajnabi", "http://dbpedia.org/resource/Ajnabi_Lage_Zindagi", "http://dbpedia.org/resource/Ajooni", "http://dbpedia.org/resource/Ajunahi_Barsaat_Aahe", "http://dbpedia.org/resource/Ajyal", "http://dbpedia.org/resource/Akademi_Fantasi_Indosiar", "http://dbpedia.org/resource/Akademi_Fantasia", "http://dbpedia.org/resource/Akai_Meiro", "http://dbpedia.org/resource/Akash_Vaani", "http://dbpedia.org/resource/Akashadoothu_(TV_series)", "http://dbpedia.org/resource/Akasya_Dura\u011f\u0131", "http://dbpedia.org/resource/Akatsuki-iro_no_Senpuku_Majo", "http://dbpedia.org/resource/Akatsuki_(TV_series)", "http://dbpedia.org/resource/Akazukin_Chacha", "http://dbpedia.org/resource/Akbar_Birbal_Remixed", "http://dbpedia.org/resource/Akbar_Ka_Bal_Birbal", "http://dbpedia.org/resource/Akbari_Asghari", "http://dbpedia.org/resource/Akeli_(TV_series)", "http://dbpedia.org/resource/Aker_Peaks", "http://dbpedia.org/resource/Akhnaten_(opera)", "http://dbpedia.org/resource/Akhri_Barish", "http://dbpedia.org/resource/Aki_Sora", "http://dbpedia.org/resource/Akin_Pa_Rin_ang_Bukas", "http://dbpedia.org/resource/Akira_(manga)", "http://dbpedia.org/resource/Akira_Toriyama's_Manga_Theater", "http://dbpedia.org/resource/Akis_(TV_series)", "http://dbpedia.org/resource/Akka_(TV_series)", "http://dbpedia.org/resource/Akka_Chellelu_(TV_series)", "http://dbpedia.org/resource/Akka_Mogudu", "http://dbpedia.org/resource/Akkad_Bakkad_Bambey_Bo", "http://dbpedia.org/resource/Akkamma_Stalinum_Pathrose_Gandhiyum", "http://dbpedia.org/resource/Akkara_Kazhchakal", "http://dbpedia.org/resource/Ako_Ang_Simula", "http://dbpedia.org/resource/Ako_si_Kim_Samsoon", "http://dbpedia.org/resource/Akoon_Aw_La", "http://dbpedia.org/resource/Aks_(TV_series)", "http://dbpedia.org/resource/Aksharathettu_(TV_series)", "http://dbpedia.org/resource/Aksyon_(TV_program)", "http://dbpedia.org/resource/Aksyon_Bisaya", "http://dbpedia.org/resource/Aksyon_Dabaw", "http://dbpedia.org/resource/Aksyon_JournalisMO", "http://dbpedia.org/resource/Akte_Gr\u00fcninger", "http://dbpedia.org/resource/Aktenzeichen_XY_\u2026_ungel\u00f6st", "http://dbpedia.org/resource/Aktenzeichen_XY\u2026_ungel\u00f6st", "http://dbpedia.org/resource/Aktuelle_Kamera", "http://dbpedia.org/resource/Aktuellt", "http://dbpedia.org/resource/Aku_Titipkan_Cinta", "http://dbpedia.org/resource/Akuma-kun", "http://dbpedia.org/resource/Akumaizer_3", "http://dbpedia.org/resource/Akumetsu", "http://dbpedia.org/resource/Akumu-chan", "http://dbpedia.org/resource/Akumy\u014d", "http://dbpedia.org/resource/Ak\u014d_R\u014dshi_(1964_TV_series)", "http://dbpedia.org/resource/Ak\u014d_R\u014dshi_(1979_TV_series)", "http://dbpedia.org/resource/Al-Ababeed", "http://dbpedia.org/resource/Al-Gama'a", "http://dbpedia.org/resource/Al-Taghreba_al-Falastenya", "http://dbpedia.org/resource/AlRawabi_School_for_Girls", "http://dbpedia.org/resource/Al_Bernameg", "http://dbpedia.org/resource/Al_Cappuccino", "http://dbpedia.org/resource/Al_Hayba", "http://dbpedia.org/resource/Al_Jazeera_America_News", "http://dbpedia.org/resource/Al_Jazeera_Investigates", "http://dbpedia.org/resource/Al_Murray's_Compete_for_the_Meat", "http://dbpedia.org/resource/Al_Murray's_Great_British_Pub_Quiz", "http://dbpedia.org/resource/Al_Murray's_Happy_Hour", "http://dbpedia.org/resource/Al_Murray's_Multiple_Personality_Disorder", "http://dbpedia.org/resource/Al_Oeming_\u2013_Man_of_the_North", "http://dbpedia.org/resource/Al_Paradise", "http://dbpedia.org/resource/Al_Punto", "http://dbpedia.org/resource/Al_Qahera_Al_Youm", "http://dbpedia.org/resource/Al_Ramsay_Shield", "http://dbpedia.org/resource/Al_Rojo_Vivo_(2002_TV_program)", "http://dbpedia.org/resource/Al_TV", "http://dbpedia.org/resource/Al_Yazmal\u0131m", "http://dbpedia.org/resource/Al_borde_del_deseo", "http://dbpedia.org/resource/Al_di_l\u00e0_del_lago", "http://dbpedia.org/resource/Al_diablo_con_los_guapos", "http://dbpedia.org/resource/Al_filo_de_la_muerte", "http://dbpedia.org/resource/Al_final_del_arco_iris", "http://dbpedia.org/resource/Al_fondo_hay_sitio", "http://dbpedia.org/resource/Al_gran_sole_carico_d'amore", "http://dbpedia.org/resource/Al_otro_lado_(2005_film)", "http://dbpedia.org/resource/Al_otro_lado_del_muro", "http://dbpedia.org/resource/Al_ritmo_de_tu_coraz\u00f3n", "http://dbpedia.org/resource/Al_rojo_vivo_(1980_TV_series)", "http://dbpedia.org/resource/Al_salir_de_clase", "http://dbpedia.org/resource/Ala_Al_Hilwa_Wa_Al_Morra", "http://dbpedia.org/resource/Alabang_Girls", "http://dbpedia.org/resource/Alabaster_(manga)", "http://dbpedia.org/resource/Aladdin_(1958_film)", "http://dbpedia.org/resource/Aladdin_(Indian_TV_series)", "http://dbpedia.org/resource/Aladdin_(animated_TV_series)", "http://dbpedia.org/resource/Aladdin_\u2013_Naam_Toh_Suna_Hoga", "http://dbpedia.org/resource/Aladin_&_Alakadam", "http://dbpedia.org/resource/Alagang_Kapatid", "http://dbpedia.org/resource/Alahor_in_Granata", "http://dbpedia.org/resource/Alaigal_(TV_series)", "http://dbpedia.org/resource/Alaipayuthey_(TV_series)", "http://dbpedia.org/resource/Alakdana", "http://dbpedia.org/resource/Alam_Simsim", "http://dbpedia.org/resource/Alamat_(TV_program)", "http://dbpedia.org/resource/Alan_Carr's_Celebrity_Ding_Dong", "http://dbpedia.org/resource/Alan_Carr's_Epic_Gameshow", "http://dbpedia.org/resource/Alan_Carr's_Happy_Hour", "http://dbpedia.org/resource/Alan_Carr's_Specstacular", "http://dbpedia.org/resource/Alan_Carr:_Chatty_Man", "http://dbpedia.org/resource/Alan_Davies:_As_Yet_Untitled", "http://dbpedia.org/resource/Alan_Davies_Apr\u00e8s-Ski", "http://dbpedia.org/resource/Alan_Jones_Live", "http://dbpedia.org/resource/Alan_Partridge:_Welcome_to_the_Places_of_My_Life", "http://dbpedia.org/resource/Alang-Alang_(TV_series)", "http://dbpedia.org/resource/Alans", "http://dbpedia.org/resource/Alarm_f\u00fcr_Cobra_11_\u2013_Die_Autobahnpolizei", "http://dbpedia.org/resource/Alas_Dose_sa_Trese", "http://dbpedia.org/resource/Alas_Smith_and_Jones", "http://dbpedia.org/resource/Alaska:_The_Last_Frontier", "http://dbpedia.org/resource/Alaska_Off-Road_Warriors", "http://dbpedia.org/resource/Alaska_State_Troopers_(TV_series)", "http://dbpedia.org/resource/Alaska_Wing_Men", "http://dbpedia.org/resource/Alaska_y_Mario", "http://dbpedia.org/resource/Alaskan_Bush_People", "http://dbpedia.org/resource/Alaskan_Killer_Bigfoot", "http://dbpedia.org/resource/Alaskan_Women_Looking_for_Love", "http://dbpedia.org/resource/Alaxmi_Ka_Super_Parivaar", "http://dbpedia.org/resource/Alba_(TV_series)", "http://dbpedia.org/resource/Alba_Marina", "http://dbpedia.org/resource/Alba_Roversi", "http://dbpedia.org/resource/Albanian_passport", "http://dbpedia.org/resource/Albanians_Got_Talent", "http://dbpedia.org/resource/Albasheer_Show", "http://dbpedia.org/resource/Albert's_Place", "http://dbpedia.org/resource/Albert_&_Herbert", "http://dbpedia.org/resource/Albert_(1985_film)", "http://dbpedia.org/resource/Albert_(2016_film)", "http://dbpedia.org/resource/Albert_Says..._Nature_Knows_Best", "http://dbpedia.org/resource/Albert_and_Me", "http://dbpedia.org/resource/Albert_and_Victoria", "http://dbpedia.org/resource/Albert_the_Fifth_Musketeer", "http://dbpedia.org/resource/Albertano_contra_los_mostros", "http://dbpedia.org/resource/Alberto_Agnesi", "http://dbpedia.org/resource/Albie_(TV_series)", "http://dbpedia.org/resource/Albion_Market", "http://dbpedia.org/resource/Alborada_(TV_series)", "http://dbpedia.org/resource/Album_of_History", "http://dbpedia.org/resource/Alcanzar_una_estrella", "http://dbpedia.org/resource/Alcanzar_una_estrella_II", "http://dbpedia.org/resource/Alcatraz:_The_Whole_Shocking_Story", "http://dbpedia.org/resource/Alcatraz_(TV_series)", "http://dbpedia.org/resource/Alceste_(Schweitzer)", "http://dbpedia.org/resource/Alchemy_of_Souls", "http://dbpedia.org/resource/Alcoa_Premiere", "http://dbpedia.org/resource/Alcoa_Presents:_One_Step_Beyond", "http://dbpedia.org/resource/Alcoa_Theatre", "http://dbpedia.org/resource/Alcock_and_Gander", "http://dbpedia.org/resource/Alcyone_(opera)", "http://dbpedia.org/resource/Alderamin_on_the_Sky", "http://dbpedia.org/resource/Aldermen's_wars", "http://dbpedia.org/resource/Aldnoah.Zero", "http://dbpedia.org/resource/AleX", "http://dbpedia.org/resource/Alec_Mapa:_Baby_Daddy", "http://dbpedia.org/resource/Alegrijes_y_Rebujos", "http://dbpedia.org/resource/Alegr\u00edas_De_Mediod\u00eda", "http://dbpedia.org/resource/Alejandra_(TV_series)", "http://dbpedia.org/resource/Alejo_&_Valentina", "http://dbpedia.org/resource/Alessandro_Cattelan:_One_Simple_Question", "http://dbpedia.org/resource/Alessandro_Severo", "http://dbpedia.org/resource/Alessandro_Stradella_(opera)", "http://dbpedia.org/resource/Alev_Alev_(TV_series)", "http://dbpedia.org/resource/Alex,_Inc.", "http://dbpedia.org/resource/Alex_&_Amie", "http://dbpedia.org/resource/Alex_&_Co.", "http://dbpedia.org/resource/Alex_Cross_(novel_series)", "http://dbpedia.org/resource/Alex_Haley's_Queen", "http://dbpedia.org/resource/Alex_Polizzi:_Chefs_on_Trial", "http://dbpedia.org/resource/Alex_Polizzi:_The_Fixer", "http://dbpedia.org/resource/Alex_Rider_(TV_series)", "http://dbpedia.org/resource/Alex_Wagner_Tonight", "http://dbpedia.org/resource/Alex_Wheatle_(film)", "http://dbpedia.org/resource/Alex_Witt_Reports", "http://dbpedia.org/resource/Alex_in_Wonderland_(TV_series)", "http://dbpedia.org/resource/Alexa_&_Katie", "http://dbpedia.org/resource/Alexander:_The_Other_Side_of_Dawn", "http://dbpedia.org/resource/Alexander_Armstrong's_Big_Ask", "http://dbpedia.org/resource/Alexander_Davydov_(singer)", "http://dbpedia.org/resource/Alexander_Zwo", "http://dbpedia.org/resource/Alexander_the_Great_(miniseries)", "http://dbpedia.org/resource/Alexander_the_Greatest", "http://dbpedia.org/resource/Alexandre_bis", "http://dbpedia.org/resource/Alexei_Sayle's_Merry-Go-Round", "http://dbpedia.org/resource/Alexei_Sayle's_Stuff", "http://dbpedia.org/resource/Alfa_Romeo_Disco_Volante", "http://dbpedia.org/resource/Alfonso_Bonzo", "http://dbpedia.org/resource/Alfonso_XII-class_cruiser", "http://dbpedia.org/resource/Alfonso_und_Estrella", "http://dbpedia.org/resource/Alfred_Chicken", "http://dbpedia.org/resource/Alfred_Hitchcock_Presents", "http://dbpedia.org/resource/Alfred_Hitchcock_Presents_(1985_TV_series)", "http://dbpedia.org/resource/Alfred_I._duPont\u2013Columbia_University_Award", "http://dbpedia.org/resource/Alfred_J._Kwak", "http://dbpedia.org/resource/Alfresco_(TV_series)", "http://dbpedia.org/resource/Algeria,_History_and_Civilization", "http://dbpedia.org/resource/Alguien_que_me_quiera", "http://dbpedia.org/resource/Alguien_te_mira_(American_TV_series)", "http://dbpedia.org/resource/Alguna_Pregunta_M\u00e9s%3F", "http://dbpedia.org/resource/Alguna_vez_tendremos_alas", "http://dbpedia.org/resource/Alhola", "http://dbpedia.org/resource/Ali:_An_American_Hero", "http://dbpedia.org/resource/Ali_Baba:_Dastaan-E-Kabul", "http://dbpedia.org/resource/Ali_Ki_Ammi", "http://dbpedia.org/resource/Ali_Velshi_on_Target", "http://dbpedia.org/resource/Aliados", "http://dbpedia.org/resource/Alias_(TV_series)", "http://dbpedia.org/resource/Alias_(season_3)", "http://dbpedia.org/resource/Alias_(season_4)", "http://dbpedia.org/resource/Alias_(season_5)", "http://dbpedia.org/resource/Alias_Grace_(miniseries)", "http://dbpedia.org/resource/Alias_Smith_and_Jones", "http://dbpedia.org/resource/Alias_the_Jester", "http://dbpedia.org/resource/Alice's_Wonderland_Bakery", "http://dbpedia.org/resource/Alice,_I_Think_(TV_series)", "http://dbpedia.org/resource/Alice_(American_TV_series)", "http://dbpedia.org/resource/Alice_(Brazilian_TV_series)", "http://dbpedia.org/resource/Alice_(South_Korean_TV_series)", "http://dbpedia.org/resource/Alice_(miniseries)", "http://dbpedia.org/resource/Alice_Bungisngis_and_Her_Wonder_Walis", "http://dbpedia.org/resource/Alice_Comedies", "http://dbpedia.org/resource/Alice_in_Borderland", "http://dbpedia.org/resource/Alice_in_Borderland_(TV_series)", "http://dbpedia.org/resource/Alice_in_Murderland_(manga)", "http://dbpedia.org/resource/Alice_in_Wonderland_(1983_film)", "http://dbpedia.org/resource/Alice_in_Wonderland_(1985_film)", "http://dbpedia.org/resource/Alice_in_Wonderland_(1999_film)", "http://dbpedia.org/resource/Alice_in_Wonderland_or_What's_a_Nice_Kid_like_You_Doing_in_a_Place_like_This%3F", "http://dbpedia.org/resource/Alice_on_Deadlines", "http://dbpedia.org/resource/Alice_series", "http://dbpedia.org/resource/Alice_through_the_Looking_Glass_(1998_film)", "http://dbpedia.org/resource/Alice_to_Nowhere", "http://dbpedia.org/resource/Alice_\u2013_A_Fight_For_Life", "http://dbpedia.org/resource/Alicia_en_el_pa\u00eds_de_las_maravillas", "http://dbpedia.org/resource/Alien:_Isolation_\u2013_The_Digital_Series", "http://dbpedia.org/resource/Alien_(Armenian_TV_series)", "http://dbpedia.org/resource/Alien_(franchise)", "http://dbpedia.org/resource/Alien_Abduction:_Incident_in_Lake_County", "http://dbpedia.org/resource/Alien_Apocalypse", "http://dbpedia.org/resource/Alien_Arsenal", "http://dbpedia.org/resource/Alien_Avengers", "http://dbpedia.org/resource/Alien_Breed_(series)", "http://dbpedia.org/resource/Alien_Dawn", "http://dbpedia.org/resource/Alien_Encounters_(TV_series)", "http://dbpedia.org/resource/Alien_Express", "http://dbpedia.org/resource/Alien_Investigations", "http://dbpedia.org/resource/Alien_Lockdown", "http://dbpedia.org/resource/Alien_Mom,_Alien_Dad", "http://dbpedia.org/resource/Alien_Nation:_Body_and_Soul", "http://dbpedia.org/resource/Alien_Nation:_Dark_Horizon", "http://dbpedia.org/resource/Alien_Nation:_Millennium", "http://dbpedia.org/resource/Alien_Nation:_The_Enemy_Within", "http://dbpedia.org/resource/Alien_Nation:_The_Udara_Legacy", "http://dbpedia.org/resource/Alien_Nation_(TV_series)", "http://dbpedia.org/resource/Alien_News_Desk", "http://dbpedia.org/resource/Alien_Opponent", "http://dbpedia.org/resource/Alien_Planet", "http://dbpedia.org/resource/Alien_Racers", "http://dbpedia.org/resource/Alien_Siege", "http://dbpedia.org/resource/Alien_TV", "http://dbpedia.org/resource/Alien_Worlds_(TV_series)", "http://dbpedia.org/resource/Alien_vs._Predator_(franchise)", "http://dbpedia.org/resource/Alienated_(TV_series)", "http://dbpedia.org/resource/Alienators:_Evolution_Continues", "http://dbpedia.org/resource/Aliens_in_America", "http://dbpedia.org/resource/Aliens_in_the_Family", "http://dbpedia.org/resource/Aliens_of_London", "http://dbpedia.org/resource/Alif_(TV_series)", "http://dbpedia.org/resource/Alif_Allah_Aur_Insaan", "http://dbpedia.org/resource/Alif_Laila", "http://dbpedia.org/resource/Alif_Laila_(2020_TV_series)", "http://dbpedia.org/resource/Alif_Noon", "http://dbpedia.org/resource/Alina,_regina_di_Golconda", "http://dbpedia.org/resource/Alisa_(TV_series)", "http://dbpedia.org/resource/Alisa_Knows_What_to_Do!", "http://dbpedia.org/resource/2099:_World_of_Tomorrow", "http://dbpedia.org/resource/20_September_Samarra_attack", "http://dbpedia.org/resource/20_Years_of_Hell", "http://dbpedia.org/resource/20th_Anniversary_Series", "http://dbpedia.org/resource/21_Beacon_Street", "http://dbpedia.org/resource/21c_(TV_series)", "http://dbpedia.org/resource/21st_GLAAD_Media_Awards", "http://dbpedia.org/resource/21st_Precinct", "http://dbpedia.org/resource/22_December_2013_South_Thailand_bombings", "http://dbpedia.org/resource/22nd_GLAAD_Media_Awards", "http://dbpedia.org/resource/Arriba,_Arriba!", "http://dbpedia.org/resource/Arriba_Argentinos", "http://dbpedia.org/resource/Arriba_gente", "http://dbpedia.org/resource/Arrighetto", "http://dbpedia.org/resource/Arriva_Cristina", "http://dbpedia.org/resource/Arrivano_i_Rossi", "http://dbpedia.org/resource/Arrow_(TV_series)", "http://dbpedia.org/resource/Arrows_(TV_series)", "http://dbpedia.org/resource/Arrowverse", "http://dbpedia.org/resource/Arroz_con_leche_(TV_series)", "http://dbpedia.org/resource/Arsenal_Military_Academy", "http://dbpedia.org/resource/Arsenic_&_Old_Lace", "http://dbpedia.org/resource/Arsenio_(TV_series)", "http://dbpedia.org/resource/Arslaan", "http://dbpedia.org/resource/Ars\u00e8ne_Lupin_(TV_series)", "http://dbpedia.org/resource/Art_Angel", "http://dbpedia.org/resource/Art_Attack", "http://dbpedia.org/resource/Art_Bell's_Dark_Matter", "http://dbpedia.org/resource/Art_Jam", "http://dbpedia.org/resource/Art_Mann_Presents", "http://dbpedia.org/resource/Art_Ninja", "http://dbpedia.org/resource/Art_in_Action_(TV_series)", "http://dbpedia.org/resource/Art_of_Persia_(TV_series)", "http://dbpedia.org/resource/Art_of_Spain_(TV_series)", "http://dbpedia.org/resource/Artaxerxes_(opera)", "http://dbpedia.org/resource/Arthdal_Chronicles", "http://dbpedia.org/resource/Arthrogram", "http://dbpedia.org/resource/Arthur!_and_the_Square_Knights_of_the_Round_Table", "http://dbpedia.org/resource/Arthur's_Treasured_Volumes", "http://dbpedia.org/resource/Arthur_&_George_(TV_series)", "http://dbpedia.org/resource/Arthur_(TV_series)", "http://dbpedia.org/resource/Arthur_C._Clarke's_Mysterious_Universe", "http://dbpedia.org/resource/Arthur_C._Clarke's_Mysterious_World", "http://dbpedia.org/resource/Arthur_C._Clarke's_World_of_Strange_Powers", "http://dbpedia.org/resource/Arthur_Godfrey_and_His_Friends", "http://dbpedia.org/resource/Arthur_of_the_Britons", "http://dbpedia.org/resource/Articulate_(TV_series)", "http://dbpedia.org/resource/Artificial_Beauty", "http://dbpedia.org/resource/Artificial_Breathing", "http://dbpedia.org/resource/Artificial_City", "http://dbpedia.org/resource/Artikulo_247", "http://dbpedia.org/resource/Artist_of_the_Year", "http://dbpedia.org/resource/Artista_Academy", "http://dbpedia.org/resource/Artistic_Differences", "http://dbpedia.org/resource/Artists_(radio_series)", "http://dbpedia.org/resource/Artit_Ching_Duang", "http://dbpedia.org/resource/Artois-class_frigate", "http://dbpedia.org/resource/Arts_'73", "http://dbpedia.org/resource/Artstar", "http://dbpedia.org/resource/Arturo_&_Kiwi", "http://dbpedia.org/resource/Artzooka!", "http://dbpedia.org/resource/Aruanas", "http://dbpedia.org/resource/Arundhathi_(TV_series)", "http://dbpedia.org/resource/Arundhati_(2011_TV_series)", "http://dbpedia.org/resource/Arundhati_(2016_TV_series)", "http://dbpedia.org/resource/Aruvi_(TV_series)", "http://dbpedia.org/resource/Arvire_et_\u00c9v\u00e9lina", "http://dbpedia.org/resource/Arya", "http://dbpedia.org/resource/Aryamaan_\u2013_Brahmaand_Ka_Yodha", "http://dbpedia.org/resource/Aryana_(TV_series)", "http://dbpedia.org/resource/Arzoo_Hai_Tu", "http://dbpedia.org/resource/As_Aventuras_de_Gui_&_Estopa", "http://dbpedia.org/resource/As_Aventuras_de_Poliana", "http://dbpedia.org/resource/As_Brasileiras", "http://dbpedia.org/resource/As_Cariocas", "http://dbpedia.org/resource/As_Far_as_My_Feet_Will_Carry_Me_(TV_series)", "http://dbpedia.org/resource/As_Filhas_da_M\u00e3e", "http://dbpedia.org/resource/As_Five", "http://dbpedia.org/resource/As_Good_Cooks_Go", "http://dbpedia.org/resource/As_Good_as_Dead_(1995_film)", "http://dbpedia.org/resource/As_I'm_Suffering_From_Kadhal", "http://dbpedia.org/resource/As_If_(American_TV_series)", "http://dbpedia.org/resource/As_If_(British_TV_series)", "http://dbpedia.org/resource/As_Is_(film)", "http://dbpedia.org/resource/As_It_Happens", "http://dbpedia.org/resource/As_Schools_Match_Wits", "http://dbpedia.org/resource/As_Seen_on_TV_(game_show)", "http://dbpedia.org/resource/As_Summers_Die", "http://dbpedia.org/resource/As_Sure_as_Fate", "http://dbpedia.org/resource/As_Time_Goes_By_(TV_series)", "http://dbpedia.org/resource/As_Told_by_Ginger", "http://dbpedia.org/resource/As_We_See_It", "http://dbpedia.org/resource/As_You_Like_It_(TV_series)", "http://dbpedia.org/resource/As_for_Me_and_My_House_(TV_series)", "http://dbpedia.org/resource/As_the_Bell_Rings_(American_TV_series)", "http://dbpedia.org/resource/As_the_Bell_Rings_(Australian_TV_series)", "http://dbpedia.org/resource/As_the_Bell_Rings_(British_TV_series)", "http://dbpedia.org/resource/As_the_Bell_Rings_(Chinese_TV_series)", "http://dbpedia.org/resource/As_the_Bell_Rings_(Japanese_TV_series)", "http://dbpedia.org/resource/As_the_Bell_Rings_(Russian_TV_series)", "http://dbpedia.org/resource/As_the_Bell_Rings_(Singaporean_TV_series)", "http://dbpedia.org/resource/As_the_Bell_Rings_(Taiwanese_TV_series)", "http://dbpedia.org/resource/As_the_Cookie_Crumbles", "http://dbpedia.org/resource/As_the_World_Turns", "http://dbpedia.org/resource/Asa_ga_Kita", "http://dbpedia.org/resource/Asaichi", "http://dbpedia.org/resource/Asambhav_(TV_series)", "http://dbpedia.org/resource/Asar_Talo_Lahat_Panalo!", "http://dbpedia.org/resource/Asatha_Povathu_Yaaru%3F", "http://dbpedia.org/resource/Asawa_Ko,_Karibal_Ko", "http://dbpedia.org/resource/Asayan", "http://dbpedia.org/resource/Ascanio", "http://dbpedia.org/resource/Ascanio_in_Alba", "http://dbpedia.org/resource/Ascension_(miniseries)", "http://dbpedia.org/resource/Aseerzadi", "http://dbpedia.org/resource/Asemane_shab", "http://dbpedia.org/resource/Asenso_Pinoy", "http://dbpedia.org/resource/Asfur", "http://dbpedia.org/resource/Asgaard_(game_show)", "http://dbpedia.org/resource/Ash_Wednesday_bushfires", "http://dbpedia.org/resource/Ash_vs_Evil_Dead", "http://dbpedia.org/resource/Ashenden_(TV_series)", "http://dbpedia.org/resource/Ashes_of_Love_(TV_series)", "http://dbpedia.org/resource/Ashes_to_Ashes_(British_TV_series)", "http://dbpedia.org/resource/Ashford_Caves", "http://dbpedia.org/resource/Ashita,_Mama_ga_Inai", "http://dbpedia.org/resource/Ashita_Ga_Arusa_(TV_series)", "http://dbpedia.org/resource/Ashiyana", "http://dbpedia.org/resource/Ashk_(TV_series)", "http://dbpedia.org/resource/Ashlee_+_Evan_(TV_series)", "http://dbpedia.org/resource/Ashley_Banjo's_Secret_Street_Crew", "http://dbpedia.org/resource/Ashokan_Edicts_in_Delhi", "http://dbpedia.org/resource/Ashura_no_Gotoku_(TV_series)", "http://dbpedia.org/resource/Asi_(TV_series)", "http://dbpedia.org/resource/Asia's_Got_Talent", "http://dbpedia.org/resource/Asia's_Next_Top_Model", "http://dbpedia.org/resource/Asia-Pacific_Rally_Championship", "http://dbpedia.org/resource/Asia_Bagus", "http://dbpedia.org/resource/Asia_Business_Report", "http://dbpedia.org/resource/Asia_Market_Week", "http://dbpedia.org/resource/Asia_Market_Wrap", "http://dbpedia.org/resource/Asia_Pacific_Poker_Tour", "http://dbpedia.org/resource/Asia_Pacific_Screen_Awards", "http://dbpedia.org/resource/Asia_Squawk_Box", "http://dbpedia.org/resource/Asia_Today", "http://dbpedia.org/resource/Asia_Uncut", "http://dbpedia.org/resource/Asian_Formula_Three_Championship", "http://dbpedia.org/resource/Asian_Idol", "http://dbpedia.org/resource/Asian_Le_Mans_Series", "http://dbpedia.org/resource/Asian_Magazine", "http://dbpedia.org/resource/Asian_Provocateur", "http://dbpedia.org/resource/Asian_Treasures", "http://dbpedia.org/resource/Asian_Wave", "http://dbpedia.org/resource/Asintado", "http://dbpedia.org/resource/Asisten_Rumah_Tangga", "http://dbpedia.org/resource/Ask_Aida", "http://dbpedia.org/resource/Ask_Aspel", "http://dbpedia.org/resource/Ask_Harriet", "http://dbpedia.org/resource/Ask_Max", "http://dbpedia.org/resource/Ask_My_Mom", "http://dbpedia.org/resource/Ask_No_Questions", "http://dbpedia.org/resource/Ask_Rhod_Gilbert", "http://dbpedia.org/resource/Ask_a_Silly_Answer", "http://dbpedia.org/resource/Ask_a_silly_Answer", "http://dbpedia.org/resource/Ask_the_Doctor", "http://dbpedia.org/resource/Ask_the_Family", "http://dbpedia.org/resource/Ask_the_Leyland_Brothers", "http://dbpedia.org/resource/Ask_the_Stars", "http://dbpedia.org/resource/Ask_the_StoryBots", "http://dbpedia.org/resource/Askold's_Grave_(opera)", "http://dbpedia.org/resource/Asla_Vazge\u00e7mem", "http://dbpedia.org/resource/Asmal\u0131_Konak", "http://dbpedia.org/resource/Asmara_(TV_series)", "http://dbpedia.org/resource/Asmaradana", "http://dbpedia.org/resource/Aso_ni_San_Roque", "http://dbpedia.org/resource/Asphalt_(series)", "http://dbpedia.org/resource/Asphalt_Man", "http://dbpedia.org/resource/Aspirants_(web_series)", "http://dbpedia.org/resource/Aspirin_(TV_series)", "http://dbpedia.org/resource/Assassin's_Creed_Chronicles", "http://dbpedia.org/resource/Assassination_Classroom", "http://dbpedia.org/resource/Assassinator_Jing_Ke", "http://dbpedia.org/resource/Assassinio_nella_cattedrale", "http://dbpedia.org/resource/Assault!_Human!!", "http://dbpedia.org/resource/Assault_at_West_Point:_The_Court-Martial_of_Johnson_Whittaker", "http://dbpedia.org/resource/Assault_on_the_Wayne", "http://dbpedia.org/resource/Assaulted_Nuts_(TV_series)", "http://dbpedia.org/resource/Assemble_Insert", "http://dbpedia.org/resource/Assembly_(TV_series)", "http://dbpedia.org/resource/Assignment:_Underwater", "http://dbpedia.org/resource/Assignment_(TV_program)", "http://dbpedia.org/resource/Assignment_Vienna", "http://dbpedia.org/resource/Associates_Triangular_Series_in_West_Indies_in_2006\u201307", "http://dbpedia.org/resource/Assorted_Gems", "http://dbpedia.org/resource/Assume_the_Position_with_Mr._Wuhl", "http://dbpedia.org/resource/Assy_McGee", "http://dbpedia.org/resource/Ass\u00e9dio", "http://dbpedia.org/resource/Astaghfaar", "http://dbpedia.org/resource/Asteroid_(film)", "http://dbpedia.org/resource/Asteroid_Terrestrial-impact_Last_Alert_System", "http://dbpedia.org/resource/Astey_Ladies", "http://dbpedia.org/resource/Astigs", "http://dbpedia.org/resource/Astitva...Ek_Prem_Kahani", "http://dbpedia.org/resource/Aston_Martin_Vantage_(2005)", "http://dbpedia.org/resource/Astonishia_Story", "http://dbpedia.org/resource/Astor_Showcase", "http://dbpedia.org/resource/Astra_Force", "http://dbpedia.org/resource/Astral_Project_(manga)", "http://dbpedia.org/resource/Astrid_and_Lilly_Save_the_World", "http://dbpedia.org/resource/Astrid_in_Wonderland", "http://dbpedia.org/resource/Astro_Boy", "http://dbpedia.org/resource/Astro_Boy_(1963_TV_series)", "http://dbpedia.org/resource/Astro_Farm", "http://dbpedia.org/resource/Astro_Plan", "http://dbpedia.org/resource/Astro_Ria", "http://dbpedia.org/resource/Astroblast!", "http://dbpedia.org/resource/Astroganger", "http://dbpedia.org/resource/Astronarium", "http://dbpedia.org/resource/Astronauts_(TV_series)", "http://dbpedia.org/resource/Astronomy_Club:_The_Sketch_Show", "http://dbpedia.org/resource/Astronomy_Today", "http://dbpedia.org/resource/Asu_no_Hikari_o_Tsukame", "http://dbpedia.org/resource/Asur_(web_series)", "http://dbpedia.org/resource/Asura_Cryin'", "http://dbpedia.org/resource/Asus_Fonepad", "http://dbpedia.org/resource/Asus_VivoTab", "http://dbpedia.org/resource/Asus_ZenFone", "http://dbpedia.org/resource/Aswamedham", "http://dbpedia.org/resource/Aswat_(TV_program)", "http://dbpedia.org/resource/Asylum_(2015_TV_series)", "http://dbpedia.org/resource/As\u00ed_en_el_barrio_como_en_el_cielo", "http://dbpedia.org/resource/As\u00ed_se_baila", "http://dbpedia.org/resource/As\u00ed_son_ellas", "http://dbpedia.org/resource/At_Ease_(TV_series)", "http://dbpedia.org/resource/At_Eighteen", "http://dbpedia.org/resource/At_Home_Ka_Dito", "http://dbpedia.org/resource/At_Home_With_Julia", "http://dbpedia.org/resource/At_Home_with_Amy_Sedaris", "http://dbpedia.org/resource/At_Home_with_Billie_Burke", "http://dbpedia.org/resource/At_Home_with_GMA_Regional_TV", "http://dbpedia.org/resource/At_Home_with_John_Newmark", "http://dbpedia.org/resource/At_Home_with_Julia", "http://dbpedia.org/resource/At_Home_with_Love", "http://dbpedia.org/resource/At_Home_with_the_Braithwaites", "http://dbpedia.org/resource/At_Home_with_the_Eubanks", "http://dbpedia.org/resource/At_Home_with_the_Noonans", "http://dbpedia.org/resource/At_Home_with_the_Webbers", "http://dbpedia.org/resource/At_Last_the_1948_Show", "http://dbpedia.org/resource/At_Mother's_Request", "http://dbpedia.org/resource/At_Point_Blank_(TV_series)", "http://dbpedia.org/resource/At_Risk_(2010_film)", "http://dbpedia.org/resource/At_Seven_on_7", "http://dbpedia.org/resource/At_Your_Service-Star_Power", "http://dbpedia.org/resource/At_Your_Service_(TV_series)", "http://dbpedia.org/resource/At_a_Distance,_Spring_Is_Green", "http://dbpedia.org/resource/At_the_Dolphin_Bay", "http://dbpedia.org/resource/At_the_End_of_My_Leash", "http://dbpedia.org/resource/At_the_Hotel", "http://dbpedia.org/resource/At_the_Movies_(1982_TV_program)", "http://dbpedia.org/resource/At_the_Movies_(1986_TV_program)", "http://dbpedia.org/resource/At_the_Movies_(Australian_TV_program)", "http://dbpedia.org/resource/At_the_Threshold_of_an_Era", "http://dbpedia.org/resource/Atamania", "http://dbpedia.org/resource/Atamasthana", "http://dbpedia.org/resource/Atari_8-bit_family", "http://dbpedia.org/resource/Atari_Flashback", "http://dbpedia.org/resource/Ataru_(TV_series)", "http://dbpedia.org/resource/Atashinchi_no_Danshi", "http://dbpedia.org/resource/Ate_ng_Ate_Ko", "http://dbpedia.org/resource/Atelier_Fontana_-_Le_sorelle_della_moda", "http://dbpedia.org/resource/Atenaide_(Vivaldi)", "http://dbpedia.org/resource/Athabasca_System_Hydroelectric_Stations", "http://dbpedia.org/resource/Atheism:_A_Rough_History_of_Disbelief", "http://dbpedia.org/resource/Athena:_Goddess_of_War", "http://dbpedia.org/resource/Athina-Thessaloniki", "http://dbpedia.org/resource/Athipookal", "http://dbpedia.org/resource/Athiyaayam", "http://dbpedia.org/resource/Athmasakhi", "http://dbpedia.org/resource/Atholl-class_corvette", "http://dbpedia.org/resource/Ating_Alamin", "http://dbpedia.org/resource/Atlanta_(TV_series)", "http://dbpedia.org/resource/Atlanta_Exes", "http://dbpedia.org/resource/Atlantic:_The_Wildest_Ocean_on_Earth", "http://dbpedia.org/resource/Atlantic_Championship", "http://dbpedia.org/resource/Atlantic_Crossing_(TV_series)", "http://dbpedia.org/resource/Atlantic_Summer", "http://dbpedia.org/resource/Atlantic_campaign_of_1806", "http://dbpedia.org/resource/Atlantic_campaign_of_May_1794", "http://dbpedia.org/resource/Atlantika", "http://dbpedia.org/resource/Atlantis_(2011_film)", "http://dbpedia.org/resource/Atlantis_(TV_series)", "http://dbpedia.org/resource/Atlantis_High", "http://dbpedia.org/resource/Atletico_Partick", "http://dbpedia.org/resource/Atl\u00e1ntida_(opera)", "http://dbpedia.org/resource/Atmen_gibt_das_Leben", "http://dbpedia.org/resource/Atmospheres_(TV_series)", "http://dbpedia.org/resource/Atom_Ant", "http://dbpedia.org/resource/Atom_Squad", "http://dbpedia.org/resource/Atom_TV", "http://dbpedia.org/resource/Atomic_Betty", "http://dbpedia.org/resource/Atomic_Dog_(film)", "http://dbpedia.org/resource/Atomic_Puppet", "http://dbpedia.org/resource/Atomic_Train", "http://dbpedia.org/resource/Atomic_Twister", "http://dbpedia.org/resource/Ator", "http://dbpedia.org/resource/Atormentada", "http://dbpedia.org/resource/Atracci\u00f3n_x4", "http://dbpedia.org/resource/Atrapa_los_Millones", "http://dbpedia.org/resource/Atrapada_(1991_TV_series)", "http://dbpedia.org/resource/Atrapada_(2018_TV_series)", "http://dbpedia.org/resource/Atrevidos", "http://dbpedia.org/resource/Atr\u00e9vete", "http://dbpedia.org/resource/Atr\u00e9vete_a_olvidarme", "http://dbpedia.org/resource/Atr\u00e9vete_a_so\u00f1ar", "http://dbpedia.org/resource/Atsuhime_(TV_series)", "http://dbpedia.org/resource/Attachments_(TV_series)", "http://dbpedia.org/resource/Attack_of_the_50_Ft._Woman_(1993_film)", "http://dbpedia.org/resource/Attack_of_the_5_Ft._2_In._Women", "http://dbpedia.org/resource/Attack_of_the_Graske", "http://dbpedia.org/resource/Attack_of_the_Killer_Tomatoes_(TV_series)", "http://dbpedia.org/resource/Attack_of_the_Sabretooth", "http://dbpedia.org/resource/Attack_of_the_Show!", "http://dbpedia.org/resource/Attack_on_Fear", "http://dbpedia.org/resource/Attack_on_Terror:_The_FBI_vs._the_Ku_Klux_Klan", "http://dbpedia.org/resource/Attack_on_Titan:_Before_the_Fall", "http://dbpedia.org/resource/Attack_on_Titan:_Counter_Rockets", "http://dbpedia.org/resource/Attack_on_Titan:_Junior_High", "http://dbpedia.org/resource/Attack_on_Tomorrow", "http://dbpedia.org/resource/Attacks_from_the_Future:_Rinoplasticos", "http://dbpedia.org/resource/Attagirl_(TV_series)", "http://dbpedia.org/resource/Attenborough:_60_Years_in_the_Wild", "http://dbpedia.org/resource/Attenborough_in_Paradise", "http://dbpedia.org/resource/Attention,_Love!", "http://dbpedia.org/resource/Attention_Scum", "http://dbpedia.org/resource/Attic_Gold", "http://dbpedia.org/resource/Attica_(1980_film)", "http://dbpedia.org/resource/Attila_(miniseries)", "http://dbpedia.org/resource/Attila_(opera)", "http://dbpedia.org/resource/Attitude_Pictures_Ltd", "http://dbpedia.org/resource/Attitudes_(talk_show)", "http://dbpedia.org/resource/Atunda_Ayenda", "http://dbpedia.org/resource/Atypical", "http://dbpedia.org/resource/At\u00ednale_Al_Precio", "http://dbpedia.org/resource/At\u00f3mico", "http://dbpedia.org/resource/At\u00f3mico_(television_program)", "http://dbpedia.org/resource/Au_Pair_(film)", "http://dbpedia.org/resource/Au_Pair_3:_Adventure_in_Paradise", "http://dbpedia.org/resource/Au_Pair_II", "http://dbpedia.org/resource/Au_nom_de_la_loi", "http://dbpedia.org/resource/Aubrey_and_Gus", "http://dbpedia.org/resource/Auction_Hunters", "http://dbpedia.org/resource/Auction_Kings", "http://dbpedia.org/resource/Auction_Room", "http://dbpedia.org/resource/Auction_Squad", "http://dbpedia.org/resource/Audience_Award_for_Most_Popular_Show", "http://dbpedia.org/resource/Audio-Files", "http://dbpedia.org/resource/Audrina", "http://dbpedia.org/resource/Audubon_Wildlife_Theatre", "http://dbpedia.org/resource/Auf_Achse_(TV_series)", "http://dbpedia.org/resource/Auf_Wiedersehen,_Pet", "http://dbpedia.org/resource/Auf_Wiedersehen_My_Pet", "http://dbpedia.org/resource/Augie_Doggie_and_Doggie_Daddy", "http://dbpedia.org/resource/August_14_(TV_series)", "http://dbpedia.org/resource/August_1991_(film)", "http://dbpedia.org/resource/August_2015_Egypt_bombings", "http://dbpedia.org/resource/Augustine:_The_Decline_of_the_Roman_Empire", "http://dbpedia.org/resource/Auld_Ones", "http://dbpedia.org/resource/Aunn_Zara", "http://dbpedia.org/resource/Aunque_mal_paguen", "http://dbpedia.org/resource/Aunque_me_Cueste_la_Vida", "http://dbpedia.org/resource/Auntie's_Bloomers", "http://dbpedia.org/resource/Auntie_Boss!", "http://dbpedia.org/resource/Aunty_Donna's_Big_Ol'_House_of_Fun", "http://dbpedia.org/resource/Aur_Pyaar_Ho_Gaya_(TV_series)", "http://dbpedia.org/resource/Aura_Battler_Dunbine", "http://dbpedia.org/resource/Aurealis_Award_for_best_children's_fiction_(told_primarily_through_words)", "http://dbpedia.org/resource/Aurealis_Award_for_best_horror_novel", "http://dbpedia.org/resource/Aurealis_Award_for_best_illustrated_book_or_graphic_novel", "http://dbpedia.org/resource/Aurelia_(TV_series)", "http://dbpedia.org/resource/Aurelia_(telenovela)", "http://dbpedia.org/resource/Aurora_(1984_film)", "http://dbpedia.org/resource/Aurora_(TV_series)", "http://dbpedia.org/resource/Auschwitz:_The_Nazis_and_'The_Final_Solution'", "http://dbpedia.org/resource/Aussie_Barbecue_Heroes", "http://dbpedia.org/resource/Aussie_Gold", "http://dbpedia.org/resource/Aussie_Gold_Hunters", "http://dbpedia.org/resource/Aussie_Ladette_to_Lady", "http://dbpedia.org/resource/Aussie_Lobster_Men", "http://dbpedia.org/resource/Aussie_Pickers", "http://dbpedia.org/resource/Aussie_Queer_Eye_for_the_Straight_Guy", "http://dbpedia.org/resource/Austin_&_Ally", "http://dbpedia.org/resource/Austin_City_Limits", "http://dbpedia.org/resource/Austin_Mahone_Takeover", "http://dbpedia.org/resource/Austin_Powers_(film_series)", "http://dbpedia.org/resource/Austin_Powers_series", "http://dbpedia.org/resource/Austin_Princess", "http://dbpedia.org/resource/Austin_Stories", "http://dbpedia.org/resource/Australasian_New_Car_Assessment_Program", "http://dbpedia.org/resource/Australia's_Amateur_Hour", "http://dbpedia.org/resource/Australia's_Best_Backyards", "http://dbpedia.org/resource/Australia's_Brainiest", "http://dbpedia.org/resource/Australia's_Cheapest_Weddings", "http://dbpedia.org/resource/Australia's_Funniest_Home_Videos", "http://dbpedia.org/resource/Australia's_Got_Talent", "http://dbpedia.org/resource/Australia's_Got_Talent:_Challengers_&_Champions", "http://dbpedia.org/resource/Australia's_Got_Talent_(season_3)", "http://dbpedia.org/resource/Australia's_Got_Talent_(season_4)", "http://dbpedia.org/resource/Australia's_Got_Talent_(season_5)", "http://dbpedia.org/resource/Australia's_Got_Talent_(season_6)", "http://dbpedia.org/resource/Australia's_Got_Talent_(season_7)", "http://dbpedia.org/resource/Australia's_Got_Talent_(season_8)", "http://dbpedia.org/resource/Australia's_Greatest_Athlete", "http://dbpedia.org/resource/Australia's_Most_Wanted", "http://dbpedia.org/resource/Australia's_Naughtiest_Home_Videos", "http://dbpedia.org/resource/Australia's_Next_Top_Model", "http://dbpedia.org/resource/Australia's_Perfect_Couple", "http://dbpedia.org/resource/Australia's_Sexiest_Tradie", "http://dbpedia.org/resource/Australia:_The_Story_of_Us", "http://dbpedia.org/resource/Australia_This_Week", "http://dbpedia.org/resource/Australia_Unites:_Reach_Out_to_Asia", "http://dbpedia.org/resource/Australia_Unlimited", "http://dbpedia.org/resource/Australia_Versus", "http://dbpedia.org/resource/Australia_Wide", "http://dbpedia.org/resource/Australia_You're_Standing_In_It", "http://dbpedia.org/resource/Australian_Families_of_Crime", "http://dbpedia.org/resource/Australian_GT_Championship", "http://dbpedia.org/resource/Australian_Gangster", "http://dbpedia.org/resource/Australian_Idol", "http://dbpedia.org/resource/Australian_International_Airshow", "http://dbpedia.org/resource/Australian_Ninja_Warrior", "http://dbpedia.org/resource/Australian_Playhouse", "http://dbpedia.org/resource/Australian_Plays", "http://dbpedia.org/resource/Australian_Princess", "http://dbpedia.org/resource/Australian_Rally_Championship", "http://dbpedia.org/resource/Australian_Spartan", "http://dbpedia.org/resource/Australian_Story", "http://dbpedia.org/resource/Australian_Survivor", "http://dbpedia.org/resource/Australian_Survivor_(season_3)", "http://dbpedia.org/resource/Australian_Walkabout", "http://dbpedia.org/resource/Australian_diaspora", "http://dbpedia.org/resource/Australian_frontier_wars", "http://dbpedia.org/resource/Austria's_Next_Topmodel", "http://dbpedia.org/resource/Austroasiatic_languages", "http://dbpedia.org/resource/Author_Meets_the_Critics", "http://dbpedia.org/resource/Autism_Is_a_World", "http://dbpedia.org/resource/Auto-B-Good", "http://dbpedia.org/resource/AutoMan", "http://dbpedia.org/resource/Auto_Mobil_International", "http://dbpedia.org/resource/Auto_Shankar_(web_series)", "http://dbpedia.org/resource/Auto_Trader_(TV_series)", "http://dbpedia.org/resource/Autoline_Detroit", "http://dbpedia.org/resource/Automan", "http://dbpedia.org/resource/Automaniac", "http://dbpedia.org/resource/Automatic_Terminal_Information_Service", "http://dbpedia.org/resource/Auton_(film_series)", "http://dbpedia.org/resource/Autonomies", "http://dbpedia.org/resource/Autopsy:_The_Last_Hours_of...", "http://dbpedia.org/resource/Autumn's_Concerto", "http://dbpedia.org/resource/Autumn_Affair", "http://dbpedia.org/resource/Autumn_Offensive_of_1947_in_Northeast_China", "http://dbpedia.org/resource/Autumn_Shower", "http://dbpedia.org/resource/Autumn_in_My_Heart", "http://dbpedia.org/resource/Auwers_synthesis", "http://dbpedia.org/resource/Aux_fronti\u00e8res_du_possible", "http://dbpedia.org/resource/Avaghachi_Sansar", "http://dbpedia.org/resource/Avahteriya", "http://dbpedia.org/resource/Aval_(TV_series)", "http://dbpedia.org/resource/Aval_Appadithan_(TV_series)", "http://dbpedia.org/resource/Avalanche_(1994_film)", "http://dbpedia.org/resource/Avalanche_Alley", "http://dbpedia.org/resource/Avalanche_Sharks", "http://dbpedia.org/resource/Avalon_High_(film)", "http://dbpedia.org/resource/Avalum_Naanum", "http://dbpedia.org/resource/Avanti!_Avanti!", "http://dbpedia.org/resource/Avanti_un_altro!", "http://dbpedia.org/resource/Avatar:_The_Last_Airbender", "http://dbpedia.org/resource/Avatar:_The_Last_Airbender_(season_1)", "http://dbpedia.org/resource/Avatar:_The_Last_Airbender_(season_3)", "http://dbpedia.org/resource/Avatar:_The_Last_Airbender_(upcoming_TV_series)", "http://dbpedia.org/resource/Avataro_Sentai_Donbrothers", "http://dbpedia.org/resource/Ave_F\u00e9nix_(TV_series)", "http://dbpedia.org/resource/Avec_un_grand_A", "http://dbpedia.org/resource/Avenger_(film)", "http://dbpedia.org/resource/Avenger_Penguins", "http://dbpedia.org/resource/Avengers_Assemble_(TV_series)", "http://dbpedia.org/resource/Avengers_Social_Club", "http://dbpedia.org/resource/Avenging_Angel_(2007_film)", "http://dbpedia.org/resource/Avenida_Brasil_(TV_series)", "http://dbpedia.org/resource/Avenida_Per\u00fa", "http://dbpedia.org/resource/Aventura_(TV_series)", "http://dbpedia.org/resource/Aventuras_en_el_tiempo", "http://dbpedia.org/resource/Avenue_5", "http://dbpedia.org/resource/Average_Joe_(TV_series)", "http://dbpedia.org/resource/Avernum", "http://dbpedia.org/resource/Aviation_Nation", "http://dbpedia.org/resource/Avon_Voices", "http://dbpedia.org/resource/Avro_Avian", "http://dbpedia.org/resource/Avrodh:_The_Siege_Within", "http://dbpedia.org/resource/Avrodh:_The_Siege_Within_2", "http://dbpedia.org/resource/Avrupa_Yakas\u0131", "http://dbpedia.org/resource/Awadhi_people", "http://dbpedia.org/resource/Awaiting_Kirin", "http://dbpedia.org/resource/Awake:_The_Million_Dollar_Game", "http://dbpedia.org/resource/Awake_(TV_series)", "http://dbpedia.org/resource/Awaken_(TV_series)", "http://dbpedia.org/resource/Awantura_o_kas\u0119", "http://dbpedia.org/resource/Away_(TV_series)", "http://dbpedia.org/resource/Awaz_-_Dil_Se_Dil_Tak", "http://dbpedia.org/resource/Awdat_Asoid", "http://dbpedia.org/resource/Awesome_Adventures", "http://dbpedia.org/resource/Awesome_Magical_Tales", "http://dbpedia.org/resource/AwesomenessTV_(TV_series)", "http://dbpedia.org/resource/Awfully_Lawful", "http://dbpedia.org/resource/Awkwafina_Is_Nora_from_Queens", "http://dbpedia.org/resource/Awkward_(TV_series)", "http://dbpedia.org/resource/Awkward_Black_Girl", "http://dbpedia.org/resource/Ax_Men", "http://dbpedia.org/resource/Axe_Cop_(TV_series)", "http://dbpedia.org/resource/Axis_&_Allies", "http://dbpedia.org/resource/Ay_Mar\u00eda_qu\u00e9_punter\u00eda", "http://dbpedia.org/resource/Ayakashi:_Samurai_Horror_Tales", "http://dbpedia.org/resource/Ayane's_High_Kick", "http://dbpedia.org/resource/Aye_Mere_Humsafar", "http://dbpedia.org/resource/Aye_Musht-e-Khaak", "http://dbpedia.org/resource/Aye_Zindagi_(TV_series)", "http://dbpedia.org/resource/Ayesha_(TV_series)", "http://dbpedia.org/resource/Ayodhya_dispute", "http://dbpedia.org/resource/Ayomoy", "http://dbpedia.org/resource/Ayr\u0131l\u0131k", "http://dbpedia.org/resource/Ayuready%3F", "http://dbpedia.org/resource/Ayushmaan", "http://dbpedia.org/resource/Ayushman_Bhava_(TV_series)", "http://dbpedia.org/resource/Ayutha_Ezhuthu_(TV_series)", "http://dbpedia.org/resource/Azar_Ki_Ayegi_Baraat", "http://dbpedia.org/resource/Azeroth_Choppers", "http://dbpedia.org/resource/Azhagi_(TV_series)", "http://dbpedia.org/resource/Azhagiya_Tamil_Magal", "http://dbpedia.org/resource/Azhagiya_Thamizh_Magal", "http://dbpedia.org/resource/Azhagu_(TV_series)", "http://dbpedia.org/resource/Azhdar_Show", "http://dbpedia.org/resource/Azmaish", "http://dbpedia.org/resource/1997_Ireland_rugby_union_tour", "http://dbpedia.org/resource/1997_Wales_rugby_union_tour", "http://dbpedia.org/resource/1998_Australia_rugby_union_tour", "http://dbpedia.org/resource/1998_Wales_rugby_union_tour", "http://dbpedia.org/resource/1999_United_States_rugby_union_tour", "http://dbpedia.org/resource/1N58xx_schottky_diodes", "http://dbpedia.org/resource/1_For_3", "http://dbpedia.org/resource/1_vs._100_(U.S._game_show)", "http://dbpedia.org/resource/1_vs._100_(UK_game_show)", "http://dbpedia.org/resource/1st_iHeartRadio_Music_Awards", "http://dbpedia.org/resource/20/20_(Canadian_TV_series)", "http://dbpedia.org/resource/20/20_(New_Zealand)", "http://dbpedia.org/resource/20/20_(U.S._TV_series)", "http://dbpedia.org/resource/2000_Cochabamba_protests", "http://dbpedia.org/resource/2000_Italy_rugby_union_tour", "http://dbpedia.org/resource/Battle_of_Klyastitsy", "http://dbpedia.org/resource/Battle_of_Komaki_and_Nagakute", "http://dbpedia.org/resource/Battle_of_Krasnoi", "http://dbpedia.org/resource/Battle_of_Kunlun_Pass", "http://dbpedia.org/resource/Battle_of_Lum\u00eb", "http://dbpedia.org/resource/Battle_of_Marietta", "http://dbpedia.org/resource/Battle_of_Mogadishu_(November_2007)", "http://dbpedia.org/resource/Battle_of_Monte_Cassino", "http://dbpedia.org/resource/Battle_of_Monte_Grappa", "http://dbpedia.org/resource/Battle_of_Moscow_(1612)", "http://dbpedia.org/resource/Battle_of_Mount_Tambu", "http://dbpedia.org/resource/Battle_of_Mouscron", "http://dbpedia.org/resource/Battle_of_Mubo", "http://dbpedia.org/resource/Battle_of_M\u00f6ckern", "http://dbpedia.org/resource/Battle_of_Nauplia_(1822)", "http://dbpedia.org/resource/Battle_of_Noonday_Creek", "http://dbpedia.org/resource/Battle_of_Norwalk", "http://dbpedia.org/resource/Battle_of_Okinawa", "http://dbpedia.org/resource/Battle_of_Ormoc_Bay", "http://dbpedia.org/resource/Battle_of_Pasong_Tamo", "http://dbpedia.org/resource/Battle_of_Pliska", "http://dbpedia.org/resource/Battle_of_Pokoku_and_Irrawaddy_River_operations", "http://dbpedia.org/resource/Battle_of_Radzymin_(1944)", "http://dbpedia.org/resource/Battle_of_Route_Bismarck", "http://dbpedia.org/resource/Battle_of_R\u00f8denes", "http://dbpedia.org/resource/Battle_of_Santa_Clara", "http://dbpedia.org/resource/Battle_of_Shangcai", "http://dbpedia.org/resource/Battle_of_Sittimungulum", "http://dbpedia.org/resource/Battle_of_Tang'erli", "http://dbpedia.org/resource/Battle_of_Tangtou\u2013Guocun", "http://dbpedia.org/resource/Battle_of_Tongues", "http://dbpedia.org/resource/Battle_of_Trebeshina", "http://dbpedia.org/resource/Battle_of_Two_Flowers", "http://dbpedia.org/resource/Battle_of_Ulm", "http://dbpedia.org/resource/Battle_of_Unsan", "http://dbpedia.org/resource/Battle_of_Verri\u00e8res_Ridge", "http://dbpedia.org/resource/Battle_of_Vy\u0161ehrad", "http://dbpedia.org/resource/Battle_of_Wawon", "http://dbpedia.org/resource/Battle_of_the_Ages", "http://dbpedia.org/resource/Battle_of_the_Barracks", "http://dbpedia.org/resource/Battle_of_the_Black_River", "http://dbpedia.org/resource/Battle_of_the_Blades", "http://dbpedia.org/resource/Battle_of_the_Brains_(British_game_show)", "http://dbpedia.org/resource/Battle_of_the_Brains_(Philippine_game_show)", "http://dbpedia.org/resource/Battle_of_the_Chefs:_Harare", "http://dbpedia.org/resource/Battle_of_the_Choirs", "http://dbpedia.org/resource/Battle_of_the_Ex_Besties", "http://dbpedia.org/resource/Battle_of_the_Frontiers", "http://dbpedia.org/resource/Battle_of_the_Network_Reality_Stars", "http://dbpedia.org/resource/Battle_of_the_Network_Stars", "http://dbpedia.org/resource/Battle_of_the_Planets", "http://dbpedia.org/resource/Battle_of_the_Supercars", "http://dbpedia.org/resource/Battle_of_\u0141om\u017ca_(1939)", "http://dbpedia.org/resource/Battledogs", "http://dbpedia.org/resource/Battlefield_(American_TV_series)", "http://dbpedia.org/resource/Battlefield_Britain", "http://dbpedia.org/resource/Battlefield_Detectives", "http://dbpedia.org/resource/Battlefield_Network", "http://dbpedia.org/resource/Battlefish", "http://dbpedia.org/resource/Battlefronts", "http://dbpedia.org/resource/Battleground_(TV_program)", "http://dbpedia.org/resource/Battleground_(TV_series)", "http://dbpedia.org/resource/Battleground_Earth", "http://dbpedia.org/resource/Battles_BC", "http://dbpedia.org/resource/Battles_of_La_Naval_de_Manila", "http://dbpedia.org/resource/Battles_of_Latrun_(1948)", "http://dbpedia.org/resource/Battles_of_Negba", "http://dbpedia.org/resource/Battles_of_Rzhev", "http://dbpedia.org/resource/Battles_of_Viminacium", "http://dbpedia.org/resource/Battles_of_the_Isonzo", "http://dbpedia.org/resource/Battlestar_Galactica", "http://dbpedia.org/resource/Battlestar_Galactica:_Blood_&_Chrome", "http://dbpedia.org/resource/Battlestar_Galactica:_Razor", "http://dbpedia.org/resource/Battlestar_Galactica:_Razor_Flashbacks", "http://dbpedia.org/resource/Battlestar_Galactica:_The_Face_of_the_Enemy", "http://dbpedia.org/resource/Battlestar_Galactica:_The_Plan", "http://dbpedia.org/resource/Battlestar_Galactica:_The_Resistance", "http://dbpedia.org/resource/Battlestar_Galactica_(1978_TV_series)", "http://dbpedia.org/resource/Battlestar_Galactica_(2004_TV_series)", "http://dbpedia.org/resource/Battlestar_Galactica_(miniseries)", "http://dbpedia.org/resource/Battlestars_(game_show)", "http://dbpedia.org/resource/Battletoads", "http://dbpedia.org/resource/Batwoman_(TV_series)", "http://dbpedia.org/resource/Bawal_Na_Game_Show", "http://dbpedia.org/resource/Bawal_ang_Pasaway_kay_Mareng_Winnie", "http://dbpedia.org/resource/Bawang_Merah_Bawang_Putih_(TV_series)", "http://dbpedia.org/resource/Bawara_Dil", "http://dbpedia.org/resource/Baxter_(TV_series)", "http://dbpedia.org/resource/Bay_Aib", "http://dbpedia.org/resource/Bay_Bridge_Series", "http://dbpedia.org/resource/Bay_City_Blues", "http://dbpedia.org/resource/Bay_Dardi", "http://dbpedia.org/resource/Bay_Khudi", "http://dbpedia.org/resource/Bay_Qasoor", "http://dbpedia.org/resource/Bay_State_(TV_series)", "http://dbpedia.org/resource/Bay_\u00d6nder", "http://dbpedia.org/resource/Bayan_Ko_(TV_series)", "http://dbpedia.org/resource/Bayani_(TV_series)", "http://dbpedia.org/resource/Bayly_(talk_show)", "http://dbpedia.org/resource/Baymax!", "http://dbpedia.org/resource/Bayou_Romance", "http://dbpedia.org/resource/Bayside_Shakedown", "http://dbpedia.org/resource/Bayttaab_Dil_Kee_Tamanna_Hai", "http://dbpedia.org/resource/Bayu_Cinta_Luna", "http://dbpedia.org/resource/Baywatch", "http://dbpedia.org/resource/Baywatch:_Hawaiian_Wedding", "http://dbpedia.org/resource/Baywatch_Nights", "http://dbpedia.org/resource/Baz's_Culture_Clash", "http://dbpedia.org/resource/Bazm_E_Tariq_Aziz", "http://dbpedia.org/resource/BeTipul", "http://dbpedia.org/resource/Be_Aitbaar", "http://dbpedia.org/resource/Be_Careful_with_My_Heart", "http://dbpedia.org/resource/Be_Cool,_Scooby-Doo!", "http://dbpedia.org/resource/Be_Happy_(TV_series)", "http://dbpedia.org/resource/Be_Home_for_Dinner", "http://dbpedia.org/resource/Be_Inteha", "http://dbpedia.org/resource/Be_Melodramatic", "http://dbpedia.org/resource/Be_My_Baby_(web_series)", "http://dbpedia.org/resource/Be_My_Dream_Family", "http://dbpedia.org/resource/Be_My_Guest_(Australian_TV_series)", "http://dbpedia.org/resource/Be_My_Guest_(talk_show)", "http://dbpedia.org/resource/Be_My_Lady", "http://dbpedia.org/resource/Be_My_Princess", "http://dbpedia.org/resource/Be_My_Valentine,_Charlie_Brown", "http://dbpedia.org/resource/Be_Our_Guest_(TV_series)", "http://dbpedia.org/resource/Be_Positive", "http://dbpedia.org/resource/Be_Real_with_JR_Digs", "http://dbpedia.org/resource/Be_Rehem", "http://dbpedia.org/resource/Be_Strong,_Geum-soon!", "http://dbpedia.org/resource/Be_Winner", "http://dbpedia.org/resource/Be_the_Boss", "http://dbpedia.org/resource/Be_the_Creature", "http://dbpedia.org/resource/Be_with_You_(TV_series)", "http://dbpedia.org/resource/Beach.Ball.Babes", "http://dbpedia.org/resource/Beach_Bites_with_Katie_Lee", "http://dbpedia.org/resource/Beach_Bros", "http://dbpedia.org/resource/Beach_Clash", "http://dbpedia.org/resource/Beach_Cops", "http://dbpedia.org/resource/Beach_Girls_(American_TV_series)", "http://dbpedia.org/resource/Beach_Girls_(Indian_TV_series)", "http://dbpedia.org/resource/Beach_Heat:_Miami", "http://dbpedia.org/resource/Beach_Patrol", "http://dbpedia.org/resource/Beach_Patrol_(film)", "http://dbpedia.org/resource/Beached_Az", "http://dbpedia.org/resource/Beaches_(2017_film)", "http://dbpedia.org/resource/Beacon_23", "http://dbpedia.org/resource/Beacon_Hill_(TV_series)", "http://dbpedia.org/resource/Beacon_Hill_(web_series)", "http://dbpedia.org/resource/Beaconsfield_(film)", "http://dbpedia.org/resource/Beadle's_About", "http://dbpedia.org/resource/Beagle:_In_Darwin's_wake", "http://dbpedia.org/resource/Beakman's_World", "http://dbpedia.org/resource/Beany_and_Cecil", "http://dbpedia.org/resource/Bear_Behaving_Badly", "http://dbpedia.org/resource/Bear_Grylls:_Face_the_Wild", "http://dbpedia.org/resource/Bear_Grylls:_Mission_Survive", "http://dbpedia.org/resource/Bear_Whisperer", "http://dbpedia.org/resource/Bear_in_the_Big_Blue_House", "http://dbpedia.org/resource/Bearcats!", "http://dbpedia.org/resource/Bearing_Witness", "http://dbpedia.org/resource/Beast_(TV_series)", "http://dbpedia.org/resource/Beast_Hunter", "http://dbpedia.org/resource/Beast_King_GoLion", "http://dbpedia.org/resource/Beast_Legends", "http://dbpedia.org/resource/Beast_Machines:_Transformers", "http://dbpedia.org/resource/Beast_Wars:_Transformers", "http://dbpedia.org/resource/Beast_Wars_(IDW_Publishing)", "http://dbpedia.org/resource/Beastly_Boyz", "http://dbpedia.org/resource/Beastmaster_(TV_series)", "http://dbpedia.org/resource/Beastmaster_III:_The_Eye_of_Braxus", "http://dbpedia.org/resource/Beasts_(TV_series)", "http://dbpedia.org/resource/Beasts_of_Asia_(TV_series)", "http://dbpedia.org/resource/Beat-Club", "http://dbpedia.org/resource/Beat_(TV_series)", "http://dbpedia.org/resource/Beat_Angel_Escalayer", "http://dbpedia.org/resource/Beat_Bobby_Flay", "http://dbpedia.org/resource/Beat_Bugs", "http://dbpedia.org/resource/Beat_Konducta", "http://dbpedia.org/resource/Beat_Shazam", "http://dbpedia.org/resource/Beat_TV", "http://dbpedia.org/resource/Beat_The_Blondes", "http://dbpedia.org/resource/Beat_The_Genius", "http://dbpedia.org/resource/Beat_of_the_City", "http://dbpedia.org/resource/Beat_the_Boss", "http://dbpedia.org/resource/Beat_the_Brain", "http://dbpedia.org/resource/Beat_the_Chef", "http://dbpedia.org/resource/Beat_the_Chefs", "http://dbpedia.org/resource/Beat_the_Clock", "http://dbpedia.org/resource/Beat_the_Crusher", "http://dbpedia.org/resource/Beat_the_Geeks", "http://dbpedia.org/resource/Beat_the_House", "http://dbpedia.org/resource/Beat_the_Odds", "http://dbpedia.org/resource/Beat_the_Star", "http://dbpedia.org/resource/Beat_the_Star_(Australian_game_show)", "http://dbpedia.org/resource/Beat_the_Teacher", "http://dbpedia.org/resource/Beating_Again", "http://dbpedia.org/resource/Beating_Heart_(TV_series)", "http://dbpedia.org/resource/Beatmania_IIDX", "http://dbpedia.org/resource/Beatrice_di_Tenda", "http://dbpedia.org/resource/Beatrix_Cenci", "http://dbpedia.org/resource/Beau_Brummell:_This_Charming_Man", "http://dbpedia.org/resource/Beau_Geste_(TV_series)", "http://dbpedia.org/resource/Beautiful_&_Twisted", "http://dbpedia.org/resource/Beautiful_Bones:_Sakurako's_Investigation", "http://dbpedia.org/resource/Beautiful_Connection", "http://dbpedia.org/resource/Beautiful_Cooking", "http://dbpedia.org/resource/Beautiful_Daughters", "http://dbpedia.org/resource/Beautiful_Days_(TV_series)", "http://dbpedia.org/resource/Beautiful_Girl_(film)", "http://dbpedia.org/resource/Beautiful_Gong_Shim", "http://dbpedia.org/resource/Beautiful_Illusions", "http://dbpedia.org/resource/Beautiful_Justice", "http://dbpedia.org/resource/Beautiful_Life_(Chinese_TV_series)", "http://dbpedia.org/resource/Beautiful_Life_(Japanese_TV_series)", "http://dbpedia.org/resource/Beautiful_Love,_Wonderful_Life", "http://dbpedia.org/resource/Beautiful_Minds_(TV_programme)", "http://dbpedia.org/resource/Beautiful_People_(American_TV_series)", "http://dbpedia.org/resource/Beautiful_People_(British_TV_series)", "http://dbpedia.org/resource/Beautiful_Rain", "http://dbpedia.org/resource/Beautiful_Secret", "http://dbpedia.org/resource/Beautiful_Strangers_(TV_series)", "http://dbpedia.org/resource/Beautiful_Trio", "http://dbpedia.org/resource/Beautiful_Wilhelmine", "http://dbpedia.org/resource/Beautiful_Wives_Club", "http://dbpedia.org/resource/Beautiful_World_(TV_series)", "http://dbpedia.org/resource/Beautiful_Young_Minds", "http://dbpedia.org/resource/Beauty's_Rival_in_Palace", "http://dbpedia.org/resource/Beauty_&_the_Beast_(2012_TV_series)", "http://dbpedia.org/resource/Beauty_&_the_Briefcase", "http://dbpedia.org/resource/Beauty_Knows_No_Pain", "http://dbpedia.org/resource/Beauty_Pop", "http://dbpedia.org/resource/Beauty_Queen_(TV_series)", "http://dbpedia.org/resource/Beauty_Queen_of_Jerusalem_(TV_show)", "http://dbpedia.org/resource/Beauty_School_Cop_Outs", "http://dbpedia.org/resource/Beauty_World_(TV_series)", "http://dbpedia.org/resource/Beauty_and_the_Baker", "http://dbpedia.org/resource/Beauty_and_the_Beast:_Ugly_Face_of_Prejudice", "http://dbpedia.org/resource/Beauty_and_the_Beast_(1976_TV_film)", "http://dbpedia.org/resource/Beauty_and_the_Beast_(1987_TV_series)", "http://dbpedia.org/resource/Beauty_and_the_Beast_(talk_show)", "http://dbpedia.org/resource/Beauty_and_the_Boss_(TV_series)", "http://dbpedia.org/resource/Beauty_and_the_Geek", "http://dbpedia.org/resource/Beauty_and_the_Geek_(British_TV_series)", "http://dbpedia.org/resource/Beauty_and_the_Geek_Australia", "http://dbpedia.org/resource/Beauty_at_War", "http://dbpedia.org/resource/Beauty_is_My_Business", "http://dbpedia.org/resource/Beaver_Falls_(TV_series)", "http://dbpedia.org/resource/Beavis_and_Butt-Head", "http://dbpedia.org/resource/Bebaak_(2021)", "http://dbpedia.org/resource/Bebaakee", "http://dbpedia.org/resource/Bebasi", "http://dbpedia.org/resource/Bebe_and_Me", "http://dbpedia.org/resource/Beb\u00ea_a_Bordo", "http://dbpedia.org/resource/Because_I_Said_So_(TV_series)", "http://dbpedia.org/resource/Because_This_Is_My_First_Life", "http://dbpedia.org/resource/Because_This_Is_My_First_Twenty", "http://dbpedia.org/resource/Because_of_You_(TV_series)", "http://dbpedia.org/resource/Becca's_Bunch", "http://dbpedia.org/resource/Bechari_Mehrunnisa", "http://dbpedia.org/resource/Bechari_Qudsia", "http://dbpedia.org/resource/Beck:_The_Eye_of_the_Storm", "http://dbpedia.org/resource/Beck_(British_TV_series)", "http://dbpedia.org/resource/Beck_(Swedish_TV_series)", "http://dbpedia.org/resource/Beck_(film)", "http://dbpedia.org/resource/Beck_(manga)", "http://dbpedia.org/resource/Beck_is_Back!", "http://dbpedia.org/resource/Beck_\u2013_Annonsmannen", "http://dbpedia.org/resource/Beck_\u2013_Enslingen", "http://dbpedia.org/resource/Beck_\u2013_H\u00e4mndens_pris", "http://dbpedia.org/resource/Beck_\u2013_Kartellen", "http://dbpedia.org/resource/Beck_\u2013_Levande_begravd", "http://dbpedia.org/resource/Beck_\u2013_Mannen_med_ikonerna", "http://dbpedia.org/resource/Beck_\u2013_Mannen_utan_ansikte", "http://dbpedia.org/resource/Beck_\u2013_Monstret", "http://dbpedia.org/resource/Beck_\u2013_Ok\u00e4nd_avs\u00e4ndare", "http://dbpedia.org/resource/Beck_\u2013_Pensionat_P\u00e4rlan", "http://dbpedia.org/resource/Beck_\u2013_Pojken_i_glaskulan", "http://dbpedia.org/resource/Beck_\u2013_Sista_vittnet", "http://dbpedia.org/resource/Beck_\u2013_Sp\u00e5r_i_m\u00f6rker", "http://dbpedia.org/resource/Beck_\u2013_The_Money_Man", "http://dbpedia.org/resource/Beck_\u2013_Vita_n\u00e4tter", "http://dbpedia.org/resource/Beck_\u2013_\u00d6ga_f\u00f6r_\u00f6ga", "http://dbpedia.org/resource/Becker_(TV_series)", "http://dbpedia.org/resource/Beckinfield", "http://dbpedia.org/resource/Beckman_Young_Investigators_Award", "http://dbpedia.org/resource/Becky's_Back", "http://dbpedia.org/resource/Becky_and_Barnaby_Bear", "http://dbpedia.org/resource/Becoming_A_Popstar", "http://dbpedia.org/resource/Becoming_Dick", "http://dbpedia.org/resource/Becoming_Elizabeth", "http://dbpedia.org/resource/Becoming_Human", "http://dbpedia.org/resource/Becoming_Mike_Nichols", "http://dbpedia.org/resource/Becoming_Us", "http://dbpedia.org/resource/Becoming_Warren_Buffett", "http://dbpedia.org/resource/Becoming_Witch", "http://dbpedia.org/resource/Becoming_You", "http://dbpedia.org/resource/Becoming_a_Billionaire", "http://dbpedia.org/resource/BedHead", "http://dbpedia.org/resource/Bed_Stories_(TV_series)", "http://dbpedia.org/resource/Bed_of_Roses_(TV_series)", "http://dbpedia.org/resource/Bedardi_Saiyaan", "http://dbpedia.org/resource/Bede_BD-5", "http://dbpedia.org/resource/Beder_Meye_Jyotsna_(TV_series)", "http://dbpedia.org/resource/Bedford_QL", "http://dbpedia.org/resource/Bedlam_(2011_TV_series)", "http://dbpedia.org/resource/Bedlam_(2013_TV_series)", "http://dbpedia.org/resource/Bedre_skilt_end_aldrig", "http://dbpedia.org/resource/Bedsitcom", "http://dbpedia.org/resource/Bedtime_(TV_series)", "http://dbpedia.org/resource/Bee_and_PuppyCat", "http://dbpedia.org/resource/Beecham_House", "http://dbpedia.org/resource/Beechgrove_(TV_series)", "http://dbpedia.org/resource/Beef:_The_Series", "http://dbpedia.org/resource/Beef_House", "http://dbpedia.org/resource/Beehive_(TV_series)", "http://dbpedia.org/resource/Beelzebub_(manga)", "http://dbpedia.org/resource/Beend_Banoongaa_Ghodi_Chadhunga", "http://dbpedia.org/resource/Beerland", "http://dbpedia.org/resource/Beet_the_Vandel_Buster", "http://dbpedia.org/resource/Beethoven's_Last_Night", "http://dbpedia.org/resource/Beethoven_(TV_series)", "http://dbpedia.org/resource/Beethoven_Lives_Upstairs", "http://dbpedia.org/resource/Beethoven_Virus", "http://dbpedia.org/resource/Beetlejuice_(TV_series)", "http://dbpedia.org/resource/Beezie_Madden", "http://dbpedia.org/resource/Before_30", "http://dbpedia.org/resource/Before_They_Were_Stars", "http://dbpedia.org/resource/Before_We_Get_Married", "http://dbpedia.org/resource/Before_We_Ruled_the_Earth", "http://dbpedia.org/resource/Before_You_Say_I_Do", "http://dbpedia.org/resource/Before_the_Game", "http://dbpedia.org/resource/Before_the_Impact", "http://dbpedia.org/resource/Before_the_League", "http://dbpedia.org/resource/Beforeigners", "http://dbpedia.org/resource/Beg,_Borrow_&_Deal", "http://dbpedia.org/resource/Beggar_My_Neighbour_(TV_series)", "http://dbpedia.org/resource/Beggars_and_Choosers_(TV_series)", "http://dbpedia.org/resource/Begin_A_Game", "http://dbpedia.org/resource/Begin_Again_(TV_series)", "http://dbpedia.org/resource/Begram_ivories", "http://dbpedia.org/resource/Begusarai_(TV_series)", "http://dbpedia.org/resource/Beh_Bote_Nga", "http://dbpedia.org/resource/Behadd", "http://dbpedia.org/resource/Beharbari_Outpost", "http://dbpedia.org/resource/Behave_Yourself!_(TV_series)", "http://dbpedia.org/resource/Behaving_Badly_(TV_serial)", "http://dbpedia.org/resource/Behemoth_(2011_film)", "http://dbpedia.org/resource/Behenein", "http://dbpedia.org/resource/Behind_Closed_Doors_(1958_TV_series)", "http://dbpedia.org/resource/Behind_Closed_Doors_(1996_TV_series)", "http://dbpedia.org/resource/Behind_Closed_Doors_(2003_film)", "http://dbpedia.org/resource/Behind_Her_Eyes_(TV_series)", "http://dbpedia.org/resource/Behind_Mansion_Walls", "http://dbpedia.org/resource/Behind_Silk_Curtains", "http://dbpedia.org/resource/Behind_Your_Smile", "http://dbpedia.org/resource/Behind_the_Attraction", "http://dbpedia.org/resource/Behind_the_Bash", "http://dbpedia.org/resource/Behind_the_Camera:_The_Unauthorized_Story_of_Charlie's_Angels", "http://dbpedia.org/resource/Behind_the_Candelabra", "http://dbpedia.org/resource/Behind_the_Legend", "http://dbpedia.org/resource/Behind_the_Mask_(TV_series)", "http://dbpedia.org/resource/Behind_the_Music", "http://dbpedia.org/resource/Behind_the_News", "http://dbpedia.org/resource/Behind_the_Scenes_(American_TV_series)", "http://dbpedia.org/resource/Behind_the_Scenes_(SPACE_TV_series)", "http://dbpedia.org/resource/Behind_the_Screen_(TV_series)", "http://dbpedia.org/resource/Behind_the_Wall:_Bubba_Wallace", "http://dbpedia.org/resource/Behind_the_Water", "http://dbpedia.org/resource/Behind_the_White_Tower", "http://dbpedia.org/resource/Behkawa", "http://dbpedia.org/resource/Behula_(TV_series)", "http://dbpedia.org/resource/Behzat_\u00c7._Bir_Ankara_Polisiyesi", "http://dbpedia.org/resource/Beija_Sapo", "http://dbpedia.org/resource/Beijing_Love_Story_(TV_series)", "http://dbpedia.org/resource/Being..._N-Dubz", "http://dbpedia.org/resource/Being:_Liverpool", "http://dbpedia.org/resource/Being_Bobby_Brown", "http://dbpedia.org/resource/Being_Eileen", "http://dbpedia.org/resource/Being_Erica", "http://dbpedia.org/resource/Being_Eve", "http://dbpedia.org/resource/Being_Human_(British_TV_series)", "http://dbpedia.org/resource/Being_Human_(North_American_TV_series)", "http://dbpedia.org/resource/Being_Human_(North_American_season_1)", "http://dbpedia.org/resource/Being_Human_(North_American_season_2)", "http://dbpedia.org/resource/Being_Human_(North_American_season_3)", "http://dbpedia.org/resource/Being_Human_(North_American_season_4)", "http://dbpedia.org/resource/Being_Human_novels", "http://dbpedia.org/resource/Being_Ian", "http://dbpedia.org/resource/Being_Jewish_in_France", "http://dbpedia.org/resource/Being_Lara_Bingle", "http://dbpedia.org/resource/Being_Mary_Jane", "http://dbpedia.org/resource/Being_Mick", "http://dbpedia.org/resource/Being_Victor", "http://dbpedia.org/resource/Beintehaa", "http://dbpedia.org/resource/Beki_Boxer", "http://dbpedia.org/resource/Bel-Air_(TV_series)", "http://dbpedia.org/resource/BelAZ_75600", "http://dbpedia.org/resource/Bel_Ami_(South_Korean_TV_series)", "http://dbpedia.org/resource/Bela,_a_Feia", "http://dbpedia.org/resource/Bela_Rahma", "http://dbpedia.org/resource/Belan_Wali_Bahu", "http://dbpedia.org/resource/Belapur_Ki_Dayan", "http://dbpedia.org/resource/Belaventura", "http://dbpedia.org/resource/Beleza_Pura", "http://dbpedia.org/resource/Belfagor", "http://dbpedia.org/resource/Belfer_(TV_series)", "http://dbpedia.org/resource/Belfry_Witches", "http://dbpedia.org/resource/Belgium's_Got_Talent_(Wallonia)", "http://dbpedia.org/resource/Belgium's_Got_Talent_(Walloon_TV_series)", "http://dbpedia.org/resource/Belgrade\u2013Pristina_negotiations", "http://dbpedia.org/resource/Belgravia_(TV_series)", "http://dbpedia.org/resource/Belief_(TV_series)", "http://dbpedia.org/resource/Believe_(TV_series)", "http://dbpedia.org/resource/Believe_Me:_The_Abduction_of_Lisa_McVey", "http://dbpedia.org/resource/Believe_Nothing", "http://dbpedia.org/resource/Belize_Barrier_Reef", "http://dbpedia.org/resource/Belkin_Wemo", "http://dbpedia.org/resource/Bella_Block", "http://dbpedia.org/resource/Bella_Germania", "http://dbpedia.org/resource/Bella_Mafia", "http://dbpedia.org/resource/Bella_and_the_Bulldogs", "http://dbpedia.org/resource/Bella_calamidades", "http://dbpedia.org/resource/Bellamy's_Backyard_Safari", "http://dbpedia.org/resource/Bellamy's_People", "http://dbpedia.org/resource/Bellamy_(TV_series)", "http://dbpedia.org/resource/Bellanca_Viking", "http://dbpedia.org/resource/Bellator_Fighting_Championships:_Season_One", "http://dbpedia.org/resource/Bellator_MMA:_Season_Eight", "http://dbpedia.org/resource/Bellator_MMA_in_2015", "http://dbpedia.org/resource/Bellbird_(TV_series)", "http://dbpedia.org/resource/Belle's", "http://dbpedia.org/resource/Belle,_Sebastian_and_the_Horses", "http://dbpedia.org/resource/Belle_Collective", "http://dbpedia.org/resource/Belle_and_Sebastian_(1965_TV_series)", "http://dbpedia.org/resource/Belle_and_Sebastian_(2017_TV_series)", "http://dbpedia.org/resource/Bellerbys_College", "http://dbpedia.org/resource/Bellevue_(TV_series)", "http://dbpedia.org/resource/Bellezas_Indomables", "http://dbpedia.org/resource/Bellum_Batonianum", "http://dbpedia.org/resource/Bell\u00edsima", "http://dbpedia.org/resource/Belmonte_(TV_series)", "http://dbpedia.org/resource/Belonging_(TV_series)", "http://dbpedia.org/resource/Below_Deck", "http://dbpedia.org/resource/Below_Deck_Down_Under", "http://dbpedia.org/resource/Below_Deck_Mediterranean", "http://dbpedia.org/resource/Below_Deck_Sailing_Yacht", "http://dbpedia.org/resource/Below_the_Lion_Rock", "http://dbpedia.org/resource/Below_the_Surface_(Danish_TV_series)", "http://dbpedia.org/resource/Belphegor,_or_Phantom_of_the_Louvre_(1965_miniseries)", "http://dbpedia.org/resource/Belt_Parkway", "http://dbpedia.org/resource/Beltway_Series", "http://dbpedia.org/resource/Bel\u00edssima", "http://dbpedia.org/resource/Bem-Vindos_a_Beirais", "http://dbpedia.org/resource/Bem_me_Quer", "http://dbpedia.org/resource/Ben's_Menu", "http://dbpedia.org/resource/Ben's_Mill", "http://dbpedia.org/resource/Ben-Gurion_-Jabotinsky_Agreements_(London_Agreements)", "http://dbpedia.org/resource/Ben-To", "http://dbpedia.org/resource/Ben_&_Holly's_Little_Kingdom", "http://dbpedia.org/resource/Ben_10", "http://dbpedia.org/resource/Ben_10:_Alien_Force", "http://dbpedia.org/resource/Ben_10:_Destroy_All_Aliens", "http://dbpedia.org/resource/Ben_10:_Omniverse", "http://dbpedia.org/resource/Ben_10:_Ultimate_Alien", "http://dbpedia.org/resource/Ben_10:_Ultimate_Challenge", "http://dbpedia.org/resource/Ben_10_(2005_TV_series)", "http://dbpedia.org/resource/Ben_10_(2016_TV_series)", "http://dbpedia.org/resource/Ben_10_Versus_the_Universe:_The_Movie", "http://dbpedia.org/resource/Ben_Casey", "http://dbpedia.org/resource/Ben_Elton:_The_Man_from_Auntie", "http://dbpedia.org/resource/Ben_Elton_Live_from_Planet_Earth", "http://dbpedia.org/resource/Ben_Fogle:_New_Lives_in_the_Wild", "http://dbpedia.org/resource/Ben_Hall_(TV_series)", "http://dbpedia.org/resource/Ben_Hur_(miniseries)", "http://dbpedia.org/resource/Ben_Jerrod", "http://dbpedia.org/resource/Ben_Onu_\u00c7ok_Sevdim", "http://dbpedia.org/resource/Ben_Phillips_Blows_Up", "http://dbpedia.org/resource/Ben_Sorensen's_Real_Country", "http://dbpedia.org/resource/Ben_X_Jim", "http://dbpedia.org/resource/Ben_and_Kate", "http://dbpedia.org/resource/Ben_et_Thomas", "http://dbpedia.org/resource/Benaam_(TV_series)", "http://dbpedia.org/resource/Benched_(TV_series)", "http://dbpedia.org/resource/Benchmark_(game_show)", "http://dbpedia.org/resource/Benders_(TV_series)", "http://dbpedia.org/resource/Bendita_mentira", "http://dbpedia.org/resource/Bene_Bou", "http://dbpedia.org/resource/Beneath_The_Lies_-_The_Series", "http://dbpedia.org/resource/Beneath_the_Lies_\u2013_The_Series", "http://dbpedia.org/resource/Benedict_Arnold:_A_Question_of_Honor", "http://dbpedia.org/resource/Benefis", "http://dbpedia.org/resource/Benefit_Busters", "http://dbpedia.org/resource/Benefits_Street", "http://dbpedia.org/resource/Benelli_Sei", "http://dbpedia.org/resource/Benelux'_Next_Top_Model", "http://dbpedia.org/resource/Bene\u0161_decrees", "http://dbpedia.org/resource/Bengaluru_Benne_Dose", "http://dbpedia.org/resource/Benidorm_(Belgian_TV_series)", "http://dbpedia.org/resource/Benidorm_(British_TV_series)", "http://dbpedia.org/resource/Benidorm_Bastards", "http://dbpedia.org/resource/Benidorm_Fest", "http://dbpedia.org/resource/Benim_Hala_Umudum_Var", "http://dbpedia.org/resource/Benito_(film)", "http://dbpedia.org/resource/Benjamin_Franklin_(film)", "http://dbpedia.org/resource/Benjamin_Franklin_(miniseries)", "http://dbpedia.org/resource/Benji's_Very_Own_Christmas_Story", "http://dbpedia.org/resource/Benji,_Zax_&_the_Alien_Prince", "http://dbpedia.org/resource/Benner_&_Benner", "http://dbpedia.org/resource/Bennington_(radio_show)", "http://dbpedia.org/resource/Benson_(TV_series)", "http://dbpedia.org/resource/Bent_(TV_series)", "http://dbpedia.org/resource/Bentley_R_Type", "http://dbpedia.org/resource/Benza_English", "http://dbpedia.org/resource/Beovizija", "http://dbpedia.org/resource/Beowulf:_Return_to_the_Shieldlands", "http://dbpedia.org/resource/Bepanah_Pyaar", "http://dbpedia.org/resource/Bepannah", "http://dbpedia.org/resource/Beppinsan", "http://dbpedia.org/resource/Berdeen_Falls", "http://dbpedia.org/resource/Bereft_(film)", "http://dbpedia.org/resource/Beretta_70", "http://dbpedia.org/resource/Beretta_90two", "http://dbpedia.org/resource/Beretta_92", "http://dbpedia.org/resource/Beretta_Model_38", "http://dbpedia.org/resource/Bergerac_(TV_series)", "http://dbpedia.org/resource/Bering_Sea_Beast", "http://dbpedia.org/resource/Bering_Sea_Gold", "http://dbpedia.org/resource/Berkeley_Square_(TV_series)", "http://dbpedia.org/resource/Berks_(TV_series)", "http://dbpedia.org/resource/Berlin,_Berlin", "http://dbpedia.org/resource/Berlin-class_replenishment_ship", "http://dbpedia.org/resource/Berlin_(TV_series)", "http://dbpedia.org/resource/Berlin_Station_(TV_series)", "http://dbpedia.org/resource/Bermuda_Tentacles", "http://dbpedia.org/resource/Berm\u00fadez_(TV_series)", "http://dbpedia.org/resource/Bernard's_Watch", "http://dbpedia.org/resource/Bernard_(TV_series)", "http://dbpedia.org/resource/Bernard_and_the_Genie", "http://dbpedia.org/resource/Bernardo_Alves", "http://dbpedia.org/resource/Bernds_Hexe", "http://dbpedia.org/resource/Bernhard,_schavuit_van_Oranje", "http://dbpedia.org/resource/Bernice_Summerfield", "http://dbpedia.org/resource/Berrenger's", "http://dbpedia.org/resource/Berry_Bees_(TV_series)", "http://dbpedia.org/resource/Berry_and_Dolly", "http://dbpedia.org/resource/Bersama_Meraih_Mimpi", "http://dbpedia.org/resource/Berserk_(manga)", "http://dbpedia.org/resource/Bert's_Family_Feud", "http://dbpedia.org/resource/Bert_(TV_series)", "http://dbpedia.org/resource/Bert_D'Angelo/Superstar", "http://dbpedia.org/resource/Bert_and_Dickie", "http://dbpedia.org/resource/Bert_and_Ernie's_Great_Adventures", "http://dbpedia.org/resource/Bert_the_Conqueror", "http://dbpedia.org/resource/Bertha_(TV_series)", "http://dbpedia.org/resource/Bertie_(TV_series)", "http://dbpedia.org/resource/Bertrand_(film)", "http://dbpedia.org/resource/Berukhi", "http://dbpedia.org/resource/Beryl's_Lot", "http://dbpedia.org/resource/Besharam_(TV_series)", "http://dbpedia.org/resource/Bessie_(film)", "http://dbpedia.org/resource/Best!_Movies!_Ever!", "http://dbpedia.org/resource/Best.Worst.Weekend.Ever.", "http://dbpedia.org/resource/Best:_His_Mother's_Son", "http://dbpedia.org/resource/Best_Baker_in_America", "http://dbpedia.org/resource/Best_Bet", "http://dbpedia.org/resource/Best_Bits_(Australian_TV_series)", "http://dbpedia.org/resource/Best_Bits_(New_Zealand_TV_series)", "http://dbpedia.org/resource/Best_Chicken", "http://dbpedia.org/resource/Best_Ed", "http://dbpedia.org/resource/Best_Friend's_Date", "http://dbpedia.org/resource/Best_Friends_Forever%3F", "http://dbpedia.org/resource/Best_Friends_Forever_(American_TV_series)", "http://dbpedia.org/resource/Best_Friends_Forever_(Indonesian_TV_series)", "http://dbpedia.org/resource/Best_Friends_Whenever", "http://dbpedia.org/resource/Best_Funeral_Ever", "http://dbpedia.org/resource/Best_Hits_Kayosai", "http://dbpedia.org/resource/Best_Home_Cook", "http://dbpedia.org/resource/Best_Ink", "http://dbpedia.org/resource/Best_Leftovers_Ever!", "http://dbpedia.org/resource/Best_New_Restaurant", "http://dbpedia.org/resource/Best_Player", "http://dbpedia.org/resource/Best_Recipes_Ever", "http://dbpedia.org/resource/Best_Selling_Secrets", "http://dbpedia.org/resource/Best_Shot_(TV_series)", "http://dbpedia.org/resource/Best_Student_Council", "http://dbpedia.org/resource/Best_Time", "http://dbpedia.org/resource/Best_Time_Ever_with_Neil_Patrick_Harris", "http://dbpedia.org/resource/Best_Week_Ever", "http://dbpedia.org/resource/Best_of_2Pac", "http://dbpedia.org/resource/Best_of_British_(TV_series)", "http://dbpedia.org/resource/Best_of_Enemies_(TV_series)", "http://dbpedia.org/resource/Best_of_Friends", "http://dbpedia.org/resource/Best_of_I_Love_the...", "http://dbpedia.org/resource/Best_of_Luck_Nikki", "http://dbpedia.org/resource/Best_of_World_Championship_Wrestling", "http://dbpedia.org/resource/Best_of_the_West", "http://dbpedia.org/resource/Best_of_the_Worst_(TV_program)", "http://dbpedia.org/resource/Best_of_the_Worst_(game_show)", "http://dbpedia.org/resource/Bestsellers_(web_series)", "http://dbpedia.org/resource/Bet_ng_Bayan", "http://dbpedia.org/resource/Bet_on_Your_Baby", "http://dbpedia.org/resource/Beta_Hi_Chahiye", "http://dbpedia.org/resource/Betaal", "http://dbpedia.org/resource/Betaal_Pachisi_(TV_series)", "http://dbpedia.org/resource/Betas", "http://dbpedia.org/resource/Bethenny_&_Fredrik", "http://dbpedia.org/resource/Bethenny_(talk_show)", "http://dbpedia.org/resource/Bethenny_Ever_After", "http://dbpedia.org/resource/Bethpage_Air_Show", "http://dbpedia.org/resource/Beti_(TV_series)", "http://dbpedia.org/resource/Beti_Jaisi", "http://dbpedia.org/resource/Betiyaan_Apni_Yaa_Paraaya_Dhan", "http://dbpedia.org/resource/Beto_Rockfeller", "http://dbpedia.org/resource/Betoch", "http://dbpedia.org/resource/Betrayal_(1974_film)", "http://dbpedia.org/resource/Betrayal_(1978_film)", "http://dbpedia.org/resource/Betrayal_(TV_series)", "http://dbpedia.org/resource/Betrayer_(film)", "http://dbpedia.org/resource/Betsy's_Kindergarten_Adventures", "http://dbpedia.org/resource/Betsy-Tacy", "http://dbpedia.org/resource/Bette_(TV_series)", "http://dbpedia.org/resource/Better_(talk_show)", "http://dbpedia.org/resource/Better_Call_Saul", "http://dbpedia.org/resource/Better_Days_(TV_series)", "http://dbpedia.org/resource/Better_Halves_(TV_series)", "http://dbpedia.org/resource/Better_Homes", "http://dbpedia.org/resource/Better_Homes_and_Gardens_(TV_program)", "http://dbpedia.org/resource/Better_Late_Than_Never_(1979_film)", "http://dbpedia.org/resource/Better_Late_Than_Never_(TV_series)", "http://dbpedia.org/resource/Better_Living_TV_Theater", "http://dbpedia.org/resource/Better_Man_(2016_TV_series)", "http://dbpedia.org/resource/Better_Man_(miniseries)", "http://dbpedia.org/resource/Better_Off_Ted", "http://dbpedia.org/resource/Better_Things_(TV_series)", "http://dbpedia.org/resource/Better_Tomorrow_(TV_series)", "http://dbpedia.org/resource/Better_than_Us", "http://dbpedia.org/resource/Better_with_You", "http://dbpedia.org/resource/Betterman_(TV_series)", "http://dbpedia.org/resource/Bettina_S.", "http://dbpedia.org/resource/Betty's_Bunch", "http://dbpedia.org/resource/Betty_&_Coretta", "http://dbpedia.org/resource/Betty_(TV_series)", "http://dbpedia.org/resource/Betty_Toons", "http://dbpedia.org/resource/Betty_White's_Off_Their_Rockers", "http://dbpedia.org/resource/Betty_en_NY", "http://dbpedia.org/resource/Bettys_Diagnose", "http://dbpedia.org/resource/Betul_ke_bohong%3F", "http://dbpedia.org/resource/Between_(TV_series)", "http://dbpedia.org/resource/Between_Brothers", "http://dbpedia.org/resource/Between_Friends_(1983_film)", "http://dbpedia.org/resource/Between_Love_&_Desire", "http://dbpedia.org/resource/Between_Love_and_Hate_(1993_film)", "http://dbpedia.org/resource/Between_Two_Ferns_with_Zach_Galifianakis", "http://dbpedia.org/resource/Between_Two_Women_(1986_film)", "http://dbpedia.org/resource/Between_Two_Worlds_(TV_series)", "http://dbpedia.org/resource/Between_the_Covers_(TV_programme)", "http://dbpedia.org/resource/Between_the_Lines_(TV_series)", "http://dbpedia.org/resource/Between_the_Lines_(game_show)", "http://dbpedia.org/resource/Between_the_Lions", "http://dbpedia.org/resource/Between_the_Sheets_(TV_series)", "http://dbpedia.org/resource/Beugr\u00f3", "http://dbpedia.org/resource/Beulah_(series)", "http://dbpedia.org/resource/Beulah_Land_(miniseries)", "http://dbpedia.org/resource/Beverly's_Full_House", "http://dbpedia.org/resource/Beverly_Hills,_90210", "http://dbpedia.org/resource/Beverly_Hills,_90210_(season_10)", "http://dbpedia.org/resource/Beverly_Hills,_90210_(season_9)", "http://dbpedia.org/resource/Beverly_Hills_Bordello", "http://dbpedia.org/resource/Beverly_Hills_Buntz", "http://dbpedia.org/resource/Beverly_Hills_Chihuahua_(film_series)", "http://dbpedia.org/resource/Beverly_Hills_Fabulous", "http://dbpedia.org/resource/Beverly_Hills_Family_Robinson", "http://dbpedia.org/resource/Beverly_Hills_Madam", "http://dbpedia.org/resource/Beverly_Hills_Nannies", "http://dbpedia.org/resource/Beverly_Hills_Pawn", "http://dbpedia.org/resource/Beverly_Hills_Teens", "http://dbpedia.org/resource/Beverly_Hills_Vet", "http://dbpedia.org/resource/Bewafa_(TV_series)", "http://dbpedia.org/resource/Bewafaa_sii_Wafaa", "http://dbpedia.org/resource/Beware_of_Dog_(TV_series)", "http://dbpedia.org/resource/Beware_the_Batman", "http://dbpedia.org/resource/Bewegte_M\u00e4nner", "http://dbpedia.org/resource/Bewitched", "http://dbpedia.org/resource/BeyWarriors:_BeyRaiderz", "http://dbpedia.org/resource/BeyWarriors:_Cyborg", "http://dbpedia.org/resource/BeyWheelz", "http://dbpedia.org/resource/Beyblade", "http://dbpedia.org/resource/Beyhadh", "http://dbpedia.org/resource/Beyhadh_2", "http://dbpedia.org/resource/Beyonc\u00e9:_Lemonade", "http://dbpedia.org/resource/Beyond_(American_TV_series)", "http://dbpedia.org/resource/Beyond_(Canadian_TV_series)", "http://dbpedia.org/resource/Beyond_(Singaporean_TV_series)", "http://dbpedia.org/resource/Beyond_Belief:_Fact_or_Fiction", "http://dbpedia.org/resource/Beyond_Betrayal", "http://dbpedia.org/resource/Beyond_Evil_(TV_series)", "http://dbpedia.org/resource/Beyond_Fear_(film)", "http://dbpedia.org/resource/Beyond_Geek", "http://dbpedia.org/resource/Beyond_Human_(TV_series)", "http://dbpedia.org/resource/Beyond_Invention", "http://dbpedia.org/resource/Beyond_My_Touch", "http://dbpedia.org/resource/Beyond_Our_Control", "http://dbpedia.org/resource/Beyond_Our_Ken", "http://dbpedia.org/resource/Beyond_Reality_(TV_series)", "http://dbpedia.org/resource/Beyond_Reason_(TV_series)", "http://dbpedia.org/resource/Beyond_River_Cottage", "http://dbpedia.org/resource/Beyond_Scared_Straight", "http://dbpedia.org/resource/Beyond_Survival", "http://dbpedia.org/resource/Beyond_Tomorrow_(TV_series)", "http://dbpedia.org/resource/Beyond_Vaudeville", "http://dbpedia.org/resource/Beyond_Westworld", "http://dbpedia.org/resource/Beyond_Words_(TV_series)", "http://dbpedia.org/resource/Beyond_a_Joke_(2009_TV_series)", "http://dbpedia.org/resource/Beyond_the_Axis_of_Truth", "http://dbpedia.org/resource/Beyond_the_Beyond_(manga)", "http://dbpedia.org/resource/Beyond_the_Blackboard", "http://dbpedia.org/resource/Beyond_the_Boundary", "http://dbpedia.org/resource/Beyond_the_Break", "http://dbpedia.org/resource/Beyond_the_Clouds_(TV_series)", "http://dbpedia.org/resource/Beyond_the_Darklands_(Australian_TV_series)", "http://dbpedia.org/resource/Beyond_the_Darklands_(New_Zealand_TV_series)", "http://dbpedia.org/resource/Beyond_the_Edge_(TV_series)", "http://dbpedia.org/resource/Beyond_the_Glory", "http://dbpedia.org/resource/Beyond_the_Prairie:_The_True_Story_of_Laura_Ingalls_Wilder", "http://dbpedia.org/resource/Beyond_the_Rainbow_(TV_series)", "http://dbpedia.org/resource/Beyond_the_Realm_of_Conscience", "http://dbpedia.org/resource/Beyond_the_Tank", "http://dbpedia.org/resource/Beyond_the_Walls_(TV_series)", "http://dbpedia.org/resource/Beyond_the_aXis_of_Truth_II", "http://dbpedia.org/resource/Bh_Se_Bhade", "http://dbpedia.org/resource/Bhaag_Bakool_Bhaag", "http://dbpedia.org/resource/Bhaag_Beanie_Bhaag", "http://dbpedia.org/resource/Bhaage_Re_Mann", "http://dbpedia.org/resource/Bhaago_KK_Aaya", "http://dbpedia.org/resource/Bhabhi_(TV_series)", "http://dbpedia.org/resource/Bhabiji_Ghar_Par_Hain!", "http://dbpedia.org/resource/Bhadra_(2019_TV_series)", "http://dbpedia.org/resource/Bhadragol", "http://dbpedia.org/resource/Bhaggolokkhi", "http://dbpedia.org/resource/Bhagonwali-Baante_Apni_Taqdeer", "http://dbpedia.org/resource/Bhagya_Lakshmi", "http://dbpedia.org/resource/Bhagyadevatha_(TV_series)", "http://dbpedia.org/resource/Bhagyajathakam_(TV_series)", "http://dbpedia.org/resource/Bhagyalaxmi", "http://dbpedia.org/resource/Bhagyarekha_(TV_series)", "http://dbpedia.org/resource/Bhagyavidhaata", "http://dbpedia.org/resource/Bhai_(TV_series)", "http://dbpedia.org/resource/Bhai_Bhaiya_Aur_Brother", "http://dbpedia.org/resource/Bhairavi_Aavigalukku_Priyamanaval", "http://dbpedia.org/resource/Bhakharwadi_(TV_series)", "http://dbpedia.org/resource/Bhakter_Bhogobaan_Shri_Krishna", "http://dbpedia.org/resource/Bhakton_Ki_Bhakti_Mein_Shakti", "http://dbpedia.org/resource/Bhalobasha_Bhalobasha", "http://dbpedia.org/resource/Bhama_Vijayam", "http://dbpedia.org/resource/Bhanumotir_Khel", "http://dbpedia.org/resource/Bhanwar_(TV_series)", "http://dbpedia.org/resource/Bharaas", "http://dbpedia.org/resource/Bharaghar", "http://dbpedia.org/resource/Bharam", "http://dbpedia.org/resource/Bharat_Ek_Khoj", "http://dbpedia.org/resource/Bharat_Ka_Veer_Putra_\u2013_Maharana_Pratap", "http://dbpedia.org/resource/Bharat_Ki_Shaan:_Singing_Star", "http://dbpedia.org/resource/Bharat_ki_Chhap", "http://dbpedia.org/resource/Bharathi_Kannamma_(2014_TV_series)", "http://dbpedia.org/resource/Bharathi_Kannamma_(2019_TV_series)", "http://dbpedia.org/resource/Bharati-class_interceptor_boat", "http://dbpedia.org/resource/Bharatidasan_Colony", "http://dbpedia.org/resource/Bharatvarsh_(TV_series)", "http://dbpedia.org/resource/Bharosa_Pyar_Tera", "http://dbpedia.org/resource/Bharya_(TV_series)", "http://dbpedia.org/resource/Bhasha", "http://dbpedia.org/resource/Bhaskar_Bharti", "http://dbpedia.org/resource/Bhaukaal_(web_series)", "http://dbpedia.org/resource/Bhavani_(TV_series)", "http://dbpedia.org/resource/Bheja_Fry_(film_series)", "http://dbpedia.org/resource/Bhim-class_tugboat", "http://dbpedia.org/resource/Bhima_Jewels_Comedy_Festival", "http://dbpedia.org/resource/Bholi_Bano", "http://dbpedia.org/resource/Bhoojo_to_Jeeto", "http://dbpedia.org/resource/Bhook_(TV_series)", "http://dbpedia.org/resource/Bhool", "http://dbpedia.org/resource/Bhool_(2014_TV_series)", "http://dbpedia.org/resource/Bhool_(2019_TV_series)", "http://dbpedia.org/resource/Bhoomikanya", "http://dbpedia.org/resource/Bhoot_Aaya", "http://dbpedia.org/resource/Bhootu", "http://dbpedia.org/resource/Bhootwala_Serial", "http://dbpedia.org/resource/Bhram_(web_series)", "http://dbpedia.org/resource/Bhramanam", "http://dbpedia.org/resource/Bia_(TV_series)", "http://dbpedia.org/resource/Aix-en-Provence_possessions", "http://dbpedia.org/resource/Ajankohtainen_kakkonen", "http://dbpedia.org/resource/Ajoneuvos", "http://dbpedia.org/resource/Akane-chan", "http://dbpedia.org/resource/Akiko_(comic_book)", "http://dbpedia.org/resource/Akkaa_p\u00e4\u00e4lle", "http://dbpedia.org/resource/Akuma_na_Eros", "http://dbpedia.org/resource/Al-Quds_TV", "http://dbpedia.org/resource/Al-Rawi", "http://dbpedia.org/resource/Al-Yamamah_arms_deal", "http://dbpedia.org/resource/Al_Maktab_Raqam_19", "http://dbpedia.org/resource/Al_Mouaallima_Wal_Oustaz_(The_teacher_and_the_professor)", "http://dbpedia.org/resource/Al_Murray's_Road_to_Berlin", "http://dbpedia.org/resource/Alabama_Claims", "http://dbpedia.org/resource/Alaca_H\u00f6y\u00fck_bronze_standards", "http://dbpedia.org/resource/Alan's_Big_One", "http://dbpedia.org/resource/Alan_Hamel's_Comedy_Bag", "http://dbpedia.org/resource/Football_on_5", "http://dbpedia.org/resource/Footballer_Wants_a_Wife", "http://dbpedia.org/resource/Footballers'_Wives", "http://dbpedia.org/resource/Footballers'_Wives:_Extra_Time", "http://dbpedia.org/resource/Footballism", "http://dbpedia.org/resource/Footprints_in_the_Sand_(TV_series)", "http://dbpedia.org/resource/Footsteps_(film)", "http://dbpedia.org/resource/Footy_Classified", "http://dbpedia.org/resource/For-Profit_Online_University", "http://dbpedia.org/resource/For_&_Against", "http://dbpedia.org/resource/For_All_Mankind_(TV_series)", "http://dbpedia.org/resource/For_All_Time", "http://dbpedia.org/resource/For_Better_or_Worse_(1959_TV_series)", "http://dbpedia.org/resource/For_Better_or_Worse_(2011_TV_series)", "http://dbpedia.org/resource/For_Dummies", "http://dbpedia.org/resource/For_Hope", "http://dbpedia.org/resource/For_Life_(TV_series)", "http://dbpedia.org/resource/For_Love_or_Country:_The_Arturo_Sandoval_Story", "http://dbpedia.org/resource/For_Love_or_Money_(2013_TV_series)", "http://dbpedia.org/resource/For_Love_or_Money_(American_TV_series)", "http://dbpedia.org/resource/For_Love_or_Money_(Australian_TV_program)", "http://dbpedia.org/resource/For_Love_or_Money_(Australian_TV_series)", "http://dbpedia.org/resource/For_Love_or_Money_(Philippine_TV_series)", "http://dbpedia.org/resource/For_Love_or_Money_(game_show)", "http://dbpedia.org/resource/For_M", "http://dbpedia.org/resource/For_Maddie_with_Love", "http://dbpedia.org/resource/For_My_Daughter's_Honor", "http://dbpedia.org/resource/For_One_Night", "http://dbpedia.org/resource/For_One_Night_Only_(Irish_TV_series)", "http://dbpedia.org/resource/For_One_Night_Only_(TV_series)", "http://dbpedia.org/resource/For_Peete's_Sake", "http://dbpedia.org/resource/For_Richer,_for_Poorer_(film)", "http://dbpedia.org/resource/For_Richer...For_Poorer", "http://dbpedia.org/resource/For_Us_the_Living:_The_Medgar_Evers_Story", "http://dbpedia.org/resource/For_What_It's_Worth_(game_show)", "http://dbpedia.org/resource/For_Whom_the_Bell_Tolls_(TV_series)", "http://dbpedia.org/resource/For_Your_Love_(TV_series)", "http://dbpedia.org/resource/For_the_First_Time_in_Forever:_A_Frozen_Sing-Along_Celebration", "http://dbpedia.org/resource/For_the_Last_Time", "http://dbpedia.org/resource/For_the_Love_of_Ada", "http://dbpedia.org/resource/For_the_Love_of_Cars", "http://dbpedia.org/resource/For_the_Love_of_Nancy", "http://dbpedia.org/resource/For_the_Love_of_Ray_J", "http://dbpedia.org/resource/For_the_Love_of_Ray_J_(season_1)", "http://dbpedia.org/resource/For_the_Love_of_Ray_J_(season_2)", "http://dbpedia.org/resource/For_the_People_(1965_TV_series)", "http://dbpedia.org/resource/For_the_People_(2002_TV_series)", "http://dbpedia.org/resource/For_the_People_(2018_TV_series)", "http://dbpedia.org/resource/For_the_Record_(Canadian_TV_series)", "http://dbpedia.org/resource/For_the_Record_with_Greta", "http://dbpedia.org/resource/For_the_Rest_of_His_Life", "http://dbpedia.org/resource/For_the_Rest_of_Your_Life", "http://dbpedia.org/resource/For_the_Term_of_His_Natural_Life_(miniseries)", "http://dbpedia.org/resource/Forbidden_(1984_film)", "http://dbpedia.org/resource/Forbidden_Iran", "http://dbpedia.org/resource/Forbidden_Love_(1982_film)", "http://dbpedia.org/resource/Forbidden_Love_(2004_TV_series)", "http://dbpedia.org/resource/Forbidden_Love_(web_series)", "http://dbpedia.org/resource/Forbidden_Nights", "http://dbpedia.org/resource/Forbidden_Science", "http://dbpedia.org/resource/Force_Five", "http://dbpedia.org/resource/Force_Motors_Trax", "http://dbpedia.org/resource/Forces_of_Nature_(TV_series)", "http://dbpedia.org/resource/Ford:_The_Man_and_the_Machine", "http://dbpedia.org/resource/Ford_Cologne_V6_engine", "http://dbpedia.org/resource/Ford_Credit_125", "http://dbpedia.org/resource/Ford_Festival", "http://dbpedia.org/resource/Ford_Nation", "http://dbpedia.org/resource/Ford_Star_Jubilee", "http://dbpedia.org/resource/Forecast_Earth", "http://dbpedia.org/resource/Forecasting_Love_and_Weather", "http://dbpedia.org/resource/Foreign_Affairs_(1964_TV_series)", "http://dbpedia.org/resource/Foreign_Affairs_(1966_TV_series)", "http://dbpedia.org/resource/Foreign_Body_(web_series)", "http://dbpedia.org/resource/Foreign_Correspondent_(TV_series)", "http://dbpedia.org/resource/Foreign_Exchange_(1970_film)", "http://dbpedia.org/resource/Foreign_Exchange_(Australian_TV_series)", "http://dbpedia.org/resource/Foreign_Exchange_(CNBC_World_TV_program)", "http://dbpedia.org/resource/Foreign_Exchange_(PBS_TV_program)", "http://dbpedia.org/resource/Foreign_Exchange_(TV_series)", "http://dbpedia.org/resource/Foreign_Intrigue", "http://dbpedia.org/resource/Foreign_Objects_(TV_series)", "http://dbpedia.org/resource/Forensic_Factor", "http://dbpedia.org/resource/Forensic_Files", "http://dbpedia.org/resource/Forensic_Files_(season_1)", "http://dbpedia.org/resource/Forensic_Files_(season_10)", "http://dbpedia.org/resource/Forensic_Files_(season_11)", "http://dbpedia.org/resource/Forensic_Files_(season_12)", "http://dbpedia.org/resource/Forensic_Files_(season_14)", "http://dbpedia.org/resource/Forensic_Files_(season_2)", "http://dbpedia.org/resource/Forensic_Files_(season_3)", "http://dbpedia.org/resource/Forensic_Files_(season_4)", "http://dbpedia.org/resource/Forensic_Files_(season_5)", "http://dbpedia.org/resource/Forensic_Files_(season_6)", "http://dbpedia.org/resource/Forensic_Files_(season_7)", "http://dbpedia.org/resource/Forensic_Files_(season_8)", "http://dbpedia.org/resource/Forensic_Files_(season_9)", "http://dbpedia.org/resource/Forensic_Files_II", "http://dbpedia.org/resource/Forensic_Heroes", "http://dbpedia.org/resource/Forensic_Heroes_II", "http://dbpedia.org/resource/Forensic_Heroes_III", "http://dbpedia.org/resource/Forensic_Heroes_IV", "http://dbpedia.org/resource/Forensic_Investigators", "http://dbpedia.org/resource/Forest_(TV_series)", "http://dbpedia.org/resource/Forest_Friends", "http://dbpedia.org/resource/Forest_Hills_Drive:_Homecoming", "http://dbpedia.org/resource/Forest_of_the_Dead", "http://dbpedia.org/resource/Forever_(1978_film)", "http://dbpedia.org/resource/Forever_(2014_TV_series)", "http://dbpedia.org/resource/Forever_(2018_TV_series)", "http://dbpedia.org/resource/Forever_(Dutch_TV_series)", "http://dbpedia.org/resource/Forever_(Philippine_TV_series)", "http://dbpedia.org/resource/Forever_Eden", "http://dbpedia.org/resource/Forever_Green", "http://dbpedia.org/resource/Forever_Knight", "http://dbpedia.org/resource/Forever_Love_(1998_film)", "http://dbpedia.org/resource/Forever_Mandalay", "http://dbpedia.org/resource/Forever_Summer:_Hamptons", "http://dbpedia.org/resource/Forever_Young_(2014_TV_series)", "http://dbpedia.org/resource/Forever_Young_(American_TV_series)", "http://dbpedia.org/resource/Forever_Young_(TV_series)", "http://dbpedia.org/resource/Forever_and_Ever_(TV_series)", "http://dbpedia.org/resource/Forever_in_My_Heart", "http://dbpedia.org/resource/Forevermore_(TV_series)", "http://dbpedia.org/resource/Forged_in_Fire", "http://dbpedia.org/resource/Forged_in_Fire_(TV_series)", "http://dbpedia.org/resource/Forget_Me_Not_(TV_series)", "http://dbpedia.org/resource/Forget_Me_Not_Farm", "http://dbpedia.org/resource/Forget_You_Remember_Love", "http://dbpedia.org/resource/Forget_and_Forgive", "http://dbpedia.org/resource/Forgive_Me_(TV_series)", "http://dbpedia.org/resource/Forgive_or_Forget", "http://dbpedia.org/resource/Forgotten_(2012_film)", "http://dbpedia.org/resource/Forgotten_(TV_series)", "http://dbpedia.org/resource/Forgotten_Four:_The_Integration_of_Pro_Football", "http://dbpedia.org/resource/Forgotten_Sins", "http://dbpedia.org/resource/Forgotten_Weapons", "http://dbpedia.org/resource/Forky_Asks_a_Question", "http://dbpedia.org/resource/Formal_Wars", "http://dbpedia.org/resource/Formula_1:_Drive_to_Survive", "http://dbpedia.org/resource/Formula_1_Debrief", "http://dbpedia.org/resource/Formula_1_Decade", "http://dbpedia.org/resource/Formula_3_Euro_Series", "http://dbpedia.org/resource/Formula_3_Sudamericana", "http://dbpedia.org/resource/Formula_Crane_45", "http://dbpedia.org/resource/Formula_D", "http://dbpedia.org/resource/Formula_E", "http://dbpedia.org/resource/Formula_Masters_China", "http://dbpedia.org/resource/Formula_One_Decade", "http://dbpedia.org/resource/Formula_One_coverage_on_ITV", "http://dbpedia.org/resource/Formula_Volkswagen_Germany", "http://dbpedia.org/resource/Fort_Boyard:_Ultimate_Challenge", "http://dbpedia.org/resource/Fort_Boyard_(game_show)", "http://dbpedia.org/resource/Fort_Laramie_(radio)", "http://dbpedia.org/resource/Fort_Moultrie", "http://dbpedia.org/resource/Fortean_TV", "http://dbpedia.org/resource/Fortier_(TV_series)", "http://dbpedia.org/resource/Fortifications_of_Birgu", "http://dbpedia.org/resource/Fortifications_of_Chania", "http://dbpedia.org/resource/Fortifications_of_Famagusta", "http://dbpedia.org/resource/Fortifications_of_Heraklion", "http://dbpedia.org/resource/Fortifications_of_Mdina", "http://dbpedia.org/resource/Fortifications_of_Messina", "http://dbpedia.org/resource/Fortifications_of_Senglea", "http://dbpedia.org/resource/Fortifications_of_Valletta", "http://dbpedia.org/resource/Fortitude_(TV_series)", "http://dbpedia.org/resource/Fortress_Wall_of_Seoul", "http://dbpedia.org/resource/Fortuna_(TV_series)", "http://dbpedia.org/resource/Fortunata_y_Jacinta_(TV_series)", "http://dbpedia.org/resource/Fortunate_Son_(TV_series)", "http://dbpedia.org/resource/Fortune:_Million_Pound_Giveaway", "http://dbpedia.org/resource/Fortune_Dane", "http://dbpedia.org/resource/Fortune_Hunter_(TV_series)", "http://dbpedia.org/resource/Fortune_Street", "http://dbpedia.org/resource/Fortunes_of_War_(TV_series)", "http://dbpedia.org/resource/Fortycoats_&_Co.", "http://dbpedia.org/resource/Fortysomething_(TV_series)", "http://dbpedia.org/resource/Forza_(series)", "http://dbpedia.org/resource/For\u00e7a-Tarefa", "http://dbpedia.org/resource/For\u00e7a_de_um_Desejo", "http://dbpedia.org/resource/Fos_Sto_Tounel", "http://dbpedia.org/resource/Fosse/Verdon", "http://dbpedia.org/resource/Fossil_Detectives", "http://dbpedia.org/resource/Foster's_Home_for_Imaginary_Friends", "http://dbpedia.org/resource/Foster_and_Laurie", "http://dbpedia.org/resource/Foul_Play_(TV_series)", "http://dbpedia.org/resource/Foundation_(TV_series)", "http://dbpedia.org/resource/Foundation_Series", "http://dbpedia.org/resource/Foundation_of_the_Kingdom", "http://dbpedia.org/resource/Foundation_series", "http://dbpedia.org/resource/Founding_Emperor_of_Ming_Dynasty", "http://dbpedia.org/resource/Four_(TV_series)", "http://dbpedia.org/resource/Four_Brothers_(mountain_range)", "http://dbpedia.org/resource/Four_Corners_(American_TV_series)", "http://dbpedia.org/resource/Four_Corners_(Australian_TV_program)", "http://dbpedia.org/resource/Four_Days_in_July", "http://dbpedia.org/resource/Four_Days_in_October", "http://dbpedia.org/resource/Four_Directions_(TV_series)", "http://dbpedia.org/resource/Four_Eyes!", "http://dbpedia.org/resource/Four_Eyes_and_Six_Guns", "http://dbpedia.org/resource/Four_Falls_of_Buffalo", "http://dbpedia.org/resource/Four_Feather_Falls", "http://dbpedia.org/resource/Four_Freedoms_(Norman_Rockwell)", "http://dbpedia.org/resource/Four_Hours_at_the_Capitol", "http://dbpedia.org/resource/Four_Hours_in_My_Lai", "http://dbpedia.org/resource/Four_Kings", "http://dbpedia.org/resource/Four_Ladies_(TV_series)", "http://dbpedia.org/resource/Four_Live_(Irish_TV_programme)", "http://dbpedia.org/resource/Four_Live_(New_Zealand_TV_programme)", "http://dbpedia.org/resource/Four_Lives", "http://dbpedia.org/resource/Four_More_Shots_Please!", "http://dbpedia.org/resource/Four_Rooms_(TV_series)", "http://dbpedia.org/resource/Four_Seasons_in_Havana", "http://dbpedia.org/resource/Four_Sisters", "http://dbpedia.org/resource/Four_Star_Playhouse", "http://dbpedia.org/resource/Four_Star_Revue", "http://dbpedia.org/resource/Four_Tank-Men_and_a_Dog", "http://dbpedia.org/resource/Four_Times_of_the_Day", "http://dbpedia.org/resource/Four_Times_of_the_Day_(Joseph_Vernet)", "http://dbpedia.org/resource/Four_Weddings", "http://dbpedia.org/resource/Four_Weddings_(Australian_TV_series)", "http://dbpedia.org/resource/Four_Weddings_and_a_Funeral_(miniseries)", "http://dbpedia.org/resource/Four_in_a_Bed", "http://dbpedia.org/resource/Four_in_a_Bed_(series_6)", "http://dbpedia.org/resource/Four_in_the_Morning_(TV_series)", "http://dbpedia.org/resource/Four_of_a_Kind_(TV_series)", "http://dbpedia.org/resource/Four_on_the_Floor_(American_TV_program)", "http://dbpedia.org/resource/Four_on_the_Floor_(Canadian_TV_series)", "http://dbpedia.org/resource/Four_to_the_Floor_(TV_series)", "http://dbpedia.org/resource/Fourplay_(web_series)", "http://dbpedia.org/resource/Foursome_(2006_TV_series)", "http://dbpedia.org/resource/Foursome_(2016_TV_series)", "http://dbpedia.org/resource/Foursome_(TV_series)", "http://dbpedia.org/resource/Fourteen_Locks", "http://dbpedia.org/resource/Fourways_Farm", "http://dbpedia.org/resource/Fox's_Peter_Pan_&_the_Pirates", "http://dbpedia.org/resource/Fox_&_Friends", "http://dbpedia.org/resource/Fox_&_Friends_First", "http://dbpedia.org/resource/Fox_(TV_series)", "http://dbpedia.org/resource/Fox_College_Football", "http://dbpedia.org/resource/Fox_College_Hoops", "http://dbpedia.org/resource/Fox_Football_Fone-in", "http://dbpedia.org/resource/Fox_Major_League_Baseball", "http://dbpedia.org/resource/Fox_NASCAR", "http://dbpedia.org/resource/Fox_NFL", "http://dbpedia.org/resource/Fox_NFL_Kickoff", "http://dbpedia.org/resource/Fox_NFL_Sunday", "http://dbpedia.org/resource/Fox_New_Year's_Eve_specials", "http://dbpedia.org/resource/Fox_News_@_Night", "http://dbpedia.org/resource/Fox_News_Live", "http://dbpedia.org/resource/Fox_News_Specialists", "http://dbpedia.org/resource/Fox_News_Sunday", "http://dbpedia.org/resource/Fox_News_Update", "http://dbpedia.org/resource/Fox_News_Watch", "http://dbpedia.org/resource/Fox_Online", "http://dbpedia.org/resource/Fox_Report", "http://dbpedia.org/resource/Fox_Soccer_Report", "http://dbpedia.org/resource/Fox_Spirit_Matchmaker", "http://dbpedia.org/resource/Fox_Sports_FC", "http://dbpedia.org/resource/Fox_Sports_Live", "http://dbpedia.org/resource/Fox_UFC", "http://dbpedia.org/resource/Fox_Volant_of_the_Snowy_Mountain_(2006_TV_series)", "http://dbpedia.org/resource/Fox_Wars_(TV_programme)", "http://dbpedia.org/resource/Foxfire_(1987_film)", "http://dbpedia.org/resource/Foxhunter", "http://dbpedia.org/resource/Foxy_Fables", "http://dbpedia.org/resource/Foxy_Lady_(TV_series)", "http://dbpedia.org/resource/Foyle's_War", "http://dbpedia.org/resource/Fra_Gherardo", "http://dbpedia.org/resource/Fractured_Flickers", "http://dbpedia.org/resource/Frafra_people", "http://dbpedia.org/resource/Fraggle_Rock", "http://dbpedia.org/resource/Fraggle_Rock:_Back_to_the_Rock", "http://dbpedia.org/resource/Fraggle_Rock:_The_Animated_Series", "http://dbpedia.org/resource/Fragments_(Torchwood)", "http://dbpedia.org/resource/Fraidy_Cat_(TV_series)", "http://dbpedia.org/resource/Framed!_A_Sicilian_Murder_Mystery", "http://dbpedia.org/resource/Framed_(1990_film)", "http://dbpedia.org/resource/Framed_(American_TV_program)", "http://dbpedia.org/resource/Framed_(TV_series)", "http://dbpedia.org/resource/Framing_Britney_Spears", "http://dbpedia.org/resource/Frammenti", "http://dbpedia.org/resource/Frammenti_(TV_series)", "http://dbpedia.org/resource/France_Five", "http://dbpedia.org/resource/Frances_Farmer_Presents", "http://dbpedia.org/resource/Francesco's_Italy:_Top_to_Toe", "http://dbpedia.org/resource/Francie_and_Josie", "http://dbpedia.org/resource/Francis_Albert_Sinatra_Does_His_Thing", "http://dbpedia.org/resource/Francis_Brennan's_Grand_Tour", "http://dbpedia.org/resource/Francis_Storm_Investigates", "http://dbpedia.org/resource/Francisco,_El_Jesuita", "http://dbpedia.org/resource/Francisco_el_Matem\u00e1tico", "http://dbpedia.org/resource/Francisco_el_Matem\u00e1tico:_Clase_2017", "http://dbpedia.org/resource/Franco-Turkish_War", "http://dbpedia.org/resource/Frank's_Place", "http://dbpedia.org/resource/Frank_Herbert's_Children_of_Dune", "http://dbpedia.org/resource/Frank_Herbert's_Dune", "http://dbpedia.org/resource/Frank_Leaves_for_the_Orient", "http://dbpedia.org/resource/Frank_Pappa_Show", "http://dbpedia.org/resource/Frank_Sinatra:_A_Man_and_His_Music", "http://dbpedia.org/resource/Frank_Skinner's_Opinionated", "http://dbpedia.org/resource/Frank_Stewart_Gospel_Hour", "http://dbpedia.org/resource/Frank_Stubbs_Promotes", "http://dbpedia.org/resource/Frank_TV", "http://dbpedia.org/resource/Frank_Wesson_Rifles", "http://dbpedia.org/resource/Frank_and_Francesca", "http://dbpedia.org/resource/Frank_of_Ireland", "http://dbpedia.org/resource/Frank_the_Entertainer_in_a_Basement_Affair", "http://dbpedia.org/resource/Franke_Sloothaak", "http://dbpedia.org/resource/Frankelda's_Book_of_Spooks", "http://dbpedia.org/resource/Franken_Fran", "http://dbpedia.org/resource/Frankenstein's_Aunt", "http://dbpedia.org/resource/Frankenstein's_Wedding", "http://dbpedia.org/resource/Frankenstein,_MD", "http://dbpedia.org/resource/Frankenstein:_The_True_Story", "http://dbpedia.org/resource/Frankenstein_(1973_film)", "http://dbpedia.org/resource/Frankenstein_(1992_film)", "http://dbpedia.org/resource/Frankenstein_(2004_film)", "http://dbpedia.org/resource/Frankenstein_(2007_film)", "http://dbpedia.org/resource/Frankenstein_(miniseries)", "http://dbpedia.org/resource/Frankenstein_Jr._and_The_Impossibles", "http://dbpedia.org/resource/Frankfurt_Documents", "http://dbpedia.org/resource/Frankie's_House_(TV_series)", "http://dbpedia.org/resource/Frankie_&_Neffe", "http://dbpedia.org/resource/Frankie_(TV_series)", "http://dbpedia.org/resource/Frankie_Boyle's_New_World_Order", "http://dbpedia.org/resource/Frankie_Boyle's_Tour_of_Scotland", "http://dbpedia.org/resource/Frankie_Boyle's_Tramadol_Nights", "http://dbpedia.org/resource/Frankie_Drake_Mysteries", "http://dbpedia.org/resource/Frankie_Edgar_vs._Gray_Maynard", "http://dbpedia.org/resource/Franklin_&_Bash", "http://dbpedia.org/resource/Franklin_(TV_series)", "http://dbpedia.org/resource/Franklin_(miniseries)", "http://dbpedia.org/resource/Franklin_O-335", "http://dbpedia.org/resource/Franklin_and_Friends", "http://dbpedia.org/resource/Frankly_Howerd", "http://dbpedia.org/resource/Frannie's_Turn", "http://dbpedia.org/resource/Franny's_Feet", "http://dbpedia.org/resource/Franny_K._Stein", "http://dbpedia.org/resource/Fran\u00e7oise_Durocher,_Waitress", "http://dbpedia.org/resource/Fraochy_Bay", "http://dbpedia.org/resource/Frasier", "http://dbpedia.org/resource/Frasier_(season_9)", "http://dbpedia.org/resource/Frat_House", "http://dbpedia.org/resource/Fratelli_Benvenuti", "http://dbpedia.org/resource/Fraternity_Life", "http://dbpedia.org/resource/Frau_Margot", "http://dbpedia.org/resource/Fraud_(TV_series)", "http://dbpedia.org/resource/Fraud_Squad_TV", "http://dbpedia.org/resource/Frauentausch", "http://dbpedia.org/resource/Frayed_(TV_series)", "http://dbpedia.org/resource/Freak_(web_series)", "http://dbpedia.org/resource/Freak_Out_(TV_series)", "http://dbpedia.org/resource/Freak_Show_(TV_series)", "http://dbpedia.org/resource/Freakazoid!", "http://dbpedia.org/resource/Freakish_(TV_series)", "http://dbpedia.org/resource/Freaknik:_The_Musical", "http://dbpedia.org/resource/Freakonomics_Radio", "http://dbpedia.org/resource/Freaks_(manga)", "http://dbpedia.org/resource/Freaks_and_Geeks", "http://dbpedia.org/resource/Freakshow_(TV_series)", "http://dbpedia.org/resource/Freaktown", "http://dbpedia.org/resource/FreakyLinks", "http://dbpedia.org/resource/Freaky_(TV_series)", "http://dbpedia.org/resource/Freaky_Eaters_(American_TV_program)", "http://dbpedia.org/resource/Freaky_Eaters_(British_TV_programme)", "http://dbpedia.org/resource/Freaky_Friday_(2018_film)", "http://dbpedia.org/resource/Freaky_Stories", "http://dbpedia.org/resource/Fred's_Head", "http://dbpedia.org/resource/Fred:_The_Movie", "http://dbpedia.org/resource/Fred:_The_Show", "http://dbpedia.org/resource/Fred_3:_Camp_Fred", "http://dbpedia.org/resource/Fred_Flintstone_and_Friends", "http://dbpedia.org/resource/Fred_Penner's_Place", "http://dbpedia.org/resource/Fred_and_Barney_Meet_The_Thing", "http://dbpedia.org/resource/Fred_and_Barney_Meet_the_Shmoo", "http://dbpedia.org/resource/Fred_and_Barney_Meet_the_Thing", "http://dbpedia.org/resource/Fredag_hela_veckan", "http://dbpedia.org/resource/Fredd_Bear's_Breakfast-A-Go-Go", "http://dbpedia.org/resource/Freddi_Fish", "http://dbpedia.org/resource/Freddie", "http://dbpedia.org/resource/Freddie_(TV_series)", "http://dbpedia.org/resource/Freddie_Mercury:_The_Great_Pretender", "http://dbpedia.org/resource/Freddie_the_Freeloader's_Christmas_Dinner", "http://dbpedia.org/resource/Freddy's_Nightmares", "http://dbpedia.org/resource/Frederick_Armory", "http://dbpedia.org/resource/Frederick_Douglass_(Ulysses_Kay_opera)", "http://dbpedia.org/resource/Frederick_Forsyth_Presents", "http://dbpedia.org/resource/FreeRayshawn", "http://dbpedia.org/resource/Free_Agents", "http://dbpedia.org/resource/Free_Agents_(American_TV_series)", "http://dbpedia.org/resource/Free_Collars_Kingdom", "http://dbpedia.org/resource/Free_Country_(TV_series)", "http://dbpedia.org/resource/Free_European_Song_Contest", "http://dbpedia.org/resource/Free_Meek", "http://dbpedia.org/resource/Free_Radio", "http://dbpedia.org/resource/Free_Radio_(TV_series)", "http://dbpedia.org/resource/Free_Rein", "http://dbpedia.org/resource/Free_Ride_(TV_series)", "http://dbpedia.org/resource/Free_Sh!t_Men", "http://dbpedia.org/resource/Free_Spirit_(TV_series)", "http://dbpedia.org/resource/Free_State\u2013Basotho_Wars", "http://dbpedia.org/resource/Free_Stuff", "http://dbpedia.org/resource/Free_The_Army_tour", "http://dbpedia.org/resource/Free_Willy_(TV_series)", "http://dbpedia.org/resource/Free_Willy_(film_series)", "http://dbpedia.org/resource/Free_for_All_(TV_series)", "http://dbpedia.org/resource/Freebie_and_the_Bean_(TV_series)", "http://dbpedia.org/resource/Freedom_(1981_film)", "http://dbpedia.org/resource/Freedom_(TV_series)", "http://dbpedia.org/resource/Freedom_Fighter,_Lee_Hoe-young", "http://dbpedia.org/resource/Freedom_Fighters:_The_Ray", "http://dbpedia.org/resource/Freedom_Machines", "http://dbpedia.org/resource/Freedom_Road", "http://dbpedia.org/resource/Freedom_Song_(film)", "http://dbpedia.org/resource/Freedom_Watch_with_Judge_Napolitano", "http://dbpedia.org/resource/Freefonix", "http://dbpedia.org/resource/Freej", "http://dbpedia.org/resource/Freelancers_(TV_series)", "http://dbpedia.org/resource/Freeman's_Mind", "http://dbpedia.org/resource/Freeman_(TV_pilot)", "http://dbpedia.org/resource/Freeter,_Ie_wo_Kau", "http://dbpedia.org/resource/Freetime_(TV_series)", "http://dbpedia.org/resource/Freeway_Face-Off", "http://dbpedia.org/resource/Freeway_Warrior", "http://dbpedia.org/resource/Freewheelers", "http://dbpedia.org/resource/Freeze_(TV_series)", "http://dbpedia.org/resource/Freeze_Frame_(1992_film)", "http://dbpedia.org/resource/Freeze_Out_(game_show)", "http://dbpedia.org/resource/Freeze_the_Fear_with_Wim_Hof", "http://dbpedia.org/resource/Freezerburns", "http://dbpedia.org/resource/French_600_Series_submarines", "http://dbpedia.org/resource/French_F4_Championship", "http://dbpedia.org/resource/French_Fields", "http://dbpedia.org/resource/French_Food_at_Home", "http://dbpedia.org/resource/French_Republican_Calendar", "http://dbpedia.org/resource/French_Revolutionary_Wars", "http://dbpedia.org/resource/French_Silk_(film)", "http://dbpedia.org/resource/French_and_Saunders", "http://dbpedia.org/resource/French_diaspora", "http://dbpedia.org/resource/French_for_Love", "http://dbpedia.org/resource/French_in_Action", "http://dbpedia.org/resource/Frenemies:_Loyalty_Turned_Lethal", "http://dbpedia.org/resource/Frenemies_(film)", "http://dbpedia.org/resource/Frequency_(TV_series)", "http://dbpedia.org/resource/Fresh,_Fried_and_Crispy", "http://dbpedia.org/resource/Fresh_Air", "http://dbpedia.org/resource/Fresh_Beat_Band_of_Spies", "http://dbpedia.org/resource/Fresh_Fields", "http://dbpedia.org/resource/Fresh_Gear", "http://dbpedia.org/resource/Fresh_Meat_(TV_series)", "http://dbpedia.org/resource/Fresh_Off_the_Boat", "http://dbpedia.org/resource/Fresh_Water_(film)", "http://dbpedia.org/resource/Fresh_with_the_Australian_Women's_Weekly", "http://dbpedia.org/resource/Freshers_(British_TV_series)", "http://dbpedia.org/resource/Freshers_(Indian_TV_series)", "http://dbpedia.org/resource/Freshers_(TV_series)", "http://dbpedia.org/resource/Freshly_Squeezed", "http://dbpedia.org/resource/Freshman_Dorm", "http://dbpedia.org/resource/Freshman_Father", "http://dbpedia.org/resource/Freshwater_Blue", "http://dbpedia.org/resource/Fresno_(miniseries)", "http://dbpedia.org/resource/Freud_(TV_series)", "http://dbpedia.org/resource/Freunde_(TV_series)", "http://dbpedia.org/resource/Frida,_en_trotj\u00e4narinna", "http://dbpedia.org/resource/Friday_Download", "http://dbpedia.org/resource/Friday_Island_(TV_series)", "http://dbpedia.org/resource/Friday_Joy_Package", "http://dbpedia.org/resource/Friday_Live", "http://dbpedia.org/resource/Friday_Night!_with_Ralph_Benmergui", "http://dbpedia.org/resource/Friday_Night,_Saturday_Morning", "http://dbpedia.org/resource/Friday_Night_Baseball", "http://dbpedia.org/resource/Friday_Night_Dinner", "http://dbpedia.org/resource/Friday_Night_Football_(AFL)", "http://dbpedia.org/resource/Friday_Night_Football_(NRL)", "http://dbpedia.org/resource/Friday_Night_Footy", "http://dbpedia.org/resource/Friday_Night_Games", "http://dbpedia.org/resource/Friday_Night_Lights_(TV_series)", "http://dbpedia.org/resource/Friday_Night_Lights_(season_3)", "http://dbpedia.org/resource/Friday_Night_Lights_(season_5)", "http://dbpedia.org/resource/Friday_Night_Lights_Out", "http://dbpedia.org/resource/Friday_Night_Tykes", "http://dbpedia.org/resource/Friday_Night_Videos", "http://dbpedia.org/resource/Friday_Night_with_Jonathan_Ross", "http://dbpedia.org/resource/Friday_on_My_Mind_(miniseries)", "http://dbpedia.org/resource/Friday_the_13th:_The_Series", "http://dbpedia.org/resource/Fridays_(TV_series)", "http://dbpedia.org/resource/Fridge_Wars", "http://dbpedia.org/resource/Fried_(2015_TV_series)", "http://dbpedia.org/resource/Friedenstag", "http://dbpedia.org/resource/Friend,_Our_Legend", "http://dbpedia.org/resource/Friend.ship_with_Krist-Singto", "http://dbpedia.org/resource/Friend_Club", "http://dbpedia.org/resource/Friend_Zone_(TV_series)", "http://dbpedia.org/resource/Friend_Zone_2:_Dangerous_Area", "http://dbpedia.org/resource/Friend_or_Foe%3F_(game_show)", "http://dbpedia.org/resource/Friendly_Driver", "http://dbpedia.org/resource/Friendly_Fire_(1979_film)", "http://dbpedia.org/resource/Friendly_Fire_(TV_series)", "http://dbpedia.org/resource/Friendly_Fire_(event)", "http://dbpedia.org/resource/Friendly_Neighborhood_Spider-Man", "http://dbpedia.org/resource/Friendly_Persuasion_(1975_film)", "http://dbpedia.org/resource/Friends", "http://dbpedia.org/resource/Friends:_Conditions_Apply", "http://dbpedia.org/resource/Friends:_The_Reunion", "http://dbpedia.org/resource/Friends_&_Enemies", "http://dbpedia.org/resource/Friends_'Til_the_End", "http://dbpedia.org/resource/Friends_(1979_TV_series)", "http://dbpedia.org/resource/Friends_(2002_TV_series)", "http://dbpedia.org/resource/Friends_(2021_TV_program)", "http://dbpedia.org/resource/Friends_(Polish_TV_series)", "http://dbpedia.org/resource/Friends_(season_1)", "http://dbpedia.org/resource/Friends_(season_10)", "http://dbpedia.org/resource/Friends_(season_2)", "http://dbpedia.org/resource/Friends_(season_3)", "http://dbpedia.org/resource/Friends_(season_4)", "http://dbpedia.org/resource/Friends_(season_5)", "http://dbpedia.org/resource/Friends_(season_6)", "http://dbpedia.org/resource/Friends_(season_7)", "http://dbpedia.org/resource/Friends_(season_8)", "http://dbpedia.org/resource/Friends_(season_9)", "http://dbpedia.org/resource/Friends_After_3.11", "http://dbpedia.org/resource/Friends_Again_(TV_series)", "http://dbpedia.org/resource/Friends_Forever_(TV_series)", "http://dbpedia.org/resource/Friends_Like_These", "http://dbpedia.org/resource/Friends_and_Crocodiles", "http://dbpedia.org/resource/Friends_and_Heroes", "http://dbpedia.org/resource/Friends_and_Lovers_(TV_series)", "http://dbpedia.org/resource/Friends_from_College", "http://dbpedia.org/resource/Friends_of_God:_A_Road_Trip_with_Alexandra_Pelosi", "http://dbpedia.org/resource/Friends_of_the_People", "http://dbpedia.org/resource/Friends_to_Lovers%3F", "http://dbpedia.org/resource/Friends_with_Benefits_(TV_series)", "http://dbpedia.org/resource/Friends_with_Better_Lives", "http://dbpedia.org/resource/Friendzone_(TV_series)", "http://dbpedia.org/resource/Fries_with_That%3F", "http://dbpedia.org/resource/Frikjent", "http://dbpedia.org/resource/Fringe_(TV_series)", "http://dbpedia.org/resource/Frisky_Dingo", "http://dbpedia.org/resource/Fritz:_The_Walter_Mondale_Story", "http://dbpedia.org/resource/Frock_Me", "http://dbpedia.org/resource/Frog_&_Friends", "http://dbpedia.org/resource/Frog_(film)", "http://dbpedia.org/resource/Frog_Baseball", "http://dbpedia.org/resource/From_(TV_series)", "http://dbpedia.org/resource/From_All_of_Us_to_All_of_You", "http://dbpedia.org/resource/From_Beijing_to_Moscow", "http://dbpedia.org/resource/From_C_to_C:_Chinese_Canadian_Stories_of_Migration", "http://dbpedia.org/resource/From_Chao_Phraya_to_Irrawaddy", "http://dbpedia.org/resource/From_Cradle_to_Stage_(TV_series)", "http://dbpedia.org/resource/From_Darkness", "http://dbpedia.org/resource/From_Dusk_till_Dawn:_The_Series", "http://dbpedia.org/resource/From_G's_to_Gents", "http://dbpedia.org/resource/From_Hand_to_Art", "http://dbpedia.org/resource/From_Here_on_OUT", "http://dbpedia.org/resource/From_Here_to_Eternity_(miniseries)", "http://dbpedia.org/resource/From_Kobe", "http://dbpedia.org/resource/From_Now_On,_Showtime!", "http://dbpedia.org/resource/From_Out_of_the_Rain", "http://dbpedia.org/resource/From_Raxacoricofallapatorius_with_Love", "http://dbpedia.org/resource/From_Scratch_(TV_series)", "http://dbpedia.org/resource/From_Six_to_Ten", "http://dbpedia.org/resource/From_Star_Wars_to_Jedi:_The_Making_of_a_Saga", "http://dbpedia.org/resource/From_There_to_Here", "http://dbpedia.org/resource/From_These_Roots", "http://dbpedia.org/resource/From_a_Bird's_Eye_View", "http://dbpedia.org/resource/From_the_Basement", "http://dbpedia.org/resource/From_the_Earth_to_the_Moon_(miniseries)", "http://dbpedia.org/resource/From_the_Ground_Up_with_Debbie_Travis", "http://dbpedia.org/resource/From_the_Heart_(TV_campaign)", "http://dbpedia.org/resource/From_the_House_of_the_Dead", "http://dbpedia.org/resource/From_the_Mixed-Up_Files_of_Mrs._Basil_E._Frankweiler_(1995_film)", "http://dbpedia.org/resource/From_the_Vault_(Magic:_The_Gathering)", "http://dbpedia.org/resource/Fromage", "http://dbpedia.org/resource/Front_Page_Challenge", "http://dbpedia.org/resource/Front_Page_Detective", "http://dbpedia.org/resource/Front_Row_(TV_program)", "http://dbpedia.org/resource/Front_Row_Center", "http://dbpedia.org/resource/Front_Street_Block", "http://dbpedia.org/resource/Front_and_Center", "http://dbpedia.org/resource/Front_and_Centre", "http://dbpedia.org/resource/Frontier_(2016_TV_series)", "http://dbpedia.org/resource/Frontier_Circus", "http://dbpedia.org/resource/Frontier_Doctor", "http://dbpedia.org/resource/Frontier_Gentleman", "http://dbpedia.org/resource/Frontier_House", "http://dbpedia.org/resource/Frontier_Justice_(TV_series)", "http://dbpedia.org/resource/Frontier_Series", "http://dbpedia.org/resource/Frontier_Theatre", "http://dbpedia.org/resource/Frontiers_(1996_TV_series)", "http://dbpedia.org/resource/Frontline_(American_TV_program)", "http://dbpedia.org/resource/Frontline_(Australian_TV_series)", "http://dbpedia.org/resource/Frontline_Pilipinas", "http://dbpedia.org/resource/Frontotemporal_dementia", "http://dbpedia.org/resource/Frontpage:_Ulat_ni_Mel_Tiangco", "http://dbpedia.org/resource/Frontpage_(TV_series)", "http://dbpedia.org/resource/Frosty's_Winter_Wonderland", "http://dbpedia.org/resource/Frosty_Returns", "http://dbpedia.org/resource/Frosty_the_Snowman_(TV_special)", "http://dbpedia.org/resource/Frozen_(franchise)", "http://dbpedia.org/resource/Frozen_Planet", "http://dbpedia.org/resource/Frozen_Stupid", "http://dbpedia.org/resource/Frozen_in_Love", "http://dbpedia.org/resource/Fruits_Basket", "http://dbpedia.org/resource/Fruity_Pie", "http://dbpedia.org/resource/Fry's_Planet_Word", "http://dbpedia.org/resource/Frying", "http://dbpedia.org/resource/Fr\u00e5ga_Lund", "http://dbpedia.org/resource/Fr\u00e9ttir", "http://dbpedia.org/resource/Fr\u00f6ken_Frimans_krig", "http://dbpedia.org/resource/Fu@K_I_Love_U", "http://dbpedia.org/resource/Fu_Bai_Fu_(TV_series)", "http://dbpedia.org/resource/Fuan_no_Tane", "http://dbpedia.org/resource/Fubar_Age_of_Computer", "http://dbpedia.org/resource/Fuck,_That's_Delicious", "http://dbpedia.org/resource/Fuck_Me_I'm_Famous", "http://dbpedia.org/resource/Fudge_(TV_series)", "http://dbpedia.org/resource/Fud\u00eancio_e_Seus_Amigos", "http://dbpedia.org/resource/Fuego_ardiente", "http://dbpedia.org/resource/Fuego_en_la_sangre_(TV_series)", "http://dbpedia.org/resource/Fuel_protests_in_the_United_Kingdom", "http://dbpedia.org/resource/Fugazi_Live_Series", "http://dbpedia.org/resource/Fugget_About_It", "http://dbpedia.org/resource/Fugitiva", "http://dbpedia.org/resource/Fugitive_Strike_Force", "http://dbpedia.org/resource/Fugitivos", "http://dbpedia.org/resource/Fugo_Keiji", "http://dbpedia.org/resource/Fugueuse", "http://dbpedia.org/resource/Fuji_GX680", "http://dbpedia.org/resource/Fujifilm_FinePix_HS10", "http://dbpedia.org/resource/Fujifilm_FinePix_S1800", "http://dbpedia.org/resource/Fujifilm_X-E2", "http://dbpedia.org/resource/Fujifilm_X-M1", "http://dbpedia.org/resource/Fujifilm_X-Pro1", "http://dbpedia.org/resource/Fujifilm_X-Pro2", "http://dbpedia.org/resource/Fujifilm_X-S1", "http://dbpedia.org/resource/Fujifilm_X-T1", "http://dbpedia.org/resource/Fujifilm_X-T10", "http://dbpedia.org/resource/Fujifilm_X70", "http://dbpedia.org/resource/Fujimi_Orchestra", "http://dbpedia.org/resource/Fujoshi_Rumi", "http://dbpedia.org/resource/Fukkashi", "http://dbpedia.org/resource/Fukuoka_Prize", "http://dbpedia.org/resource/Fukushima_Daiichi_nuclear_disaster_(Unit_1_Reactor)", "http://dbpedia.org/resource/Fukushima_Daiichi_nuclear_disaster_(Unit_2_Reactor)", "http://dbpedia.org/resource/Fukushima_Daiichi_nuclear_disaster_(Unit_3_Reactor)", "http://dbpedia.org/resource/Fukushima_Daiichi_nuclear_disaster_casualties", "http://dbpedia.org/resource/Ful_Haus", "http://dbpedia.org/resource/Fuldamobil", "http://dbpedia.org/resource/Full-Court_Miracle", "http://dbpedia.org/resource/Full_Body_Massage", "http://dbpedia.org/resource/Full_Circle_(1960_TV_series)", "http://dbpedia.org/resource/Full_Circle_(2013_TV_series)", "http://dbpedia.org/resource/Full_Circle_(TV_series)", "http://dbpedia.org/resource/Full_Circle_with_Michael_Palin", "http://dbpedia.org/resource/Full_Eclipse", "http://dbpedia.org/resource/Full_English_(TV_series)", "http://dbpedia.org/resource/Full_Force_Nature", "http://dbpedia.org/resource/Full_Frontal_(Australian_TV_series)", "http://dbpedia.org/resource/Full_Frontal_Fashion", "http://dbpedia.org/resource/Full_Frontal_with_Samantha_Bee", "http://dbpedia.org/resource/Full_Frys", "http://dbpedia.org/resource/Full_House", "http://dbpedia.org/resource/Full_House_(Armenian_TV_series)", "http://dbpedia.org/resource/Full_House_(British_TV_series)", "http://dbpedia.org/resource/Full_House_(Philippine_TV_series)", "http://dbpedia.org/resource/Full_House_(South_Korean_TV_series)", "http://dbpedia.org/resource/Full_House_(manhwa)", "http://dbpedia.org/resource/Full_House_(season_8)", "http://dbpedia.org/resource/Full_House_Take_2", "http://dbpedia.org/resource/Full_House_Tonight", "http://dbpedia.org/resource/Full_Measure_with_Sharyl_Attkisson", "http://dbpedia.org/resource/Full_Metal_Challenge", "http://dbpedia.org/resource/Full_Metal_Jousting", "http://dbpedia.org/resource/Full_Moon_Over_Miami", "http://dbpedia.org/resource/Full_Out", "http://dbpedia.org/resource/Full_Stretch", "http://dbpedia.org/resource/Full_Swing_(TV_series)", "http://dbpedia.org/resource/Full_Swing_(game_show)", "http://dbpedia.org/resource/Full_Tension", "http://dbpedia.org/resource/Full_Throttle_Girl", "http://dbpedia.org/resource/Full_Throttle_Saloon", "http://dbpedia.org/resource/Fuller_House_(TV_series)", "http://dbpedia.org/resource/Fullmetal_Alchemist", "http://dbpedia.org/resource/Fully_Booked", "http://dbpedia.org/resource/Fully_Integrated_Robotised_Engine", "http://dbpedia.org/resource/Fun_Factory_(TV_series)", "http://dbpedia.org/resource/Fun_Farm", "http://dbpedia.org/resource/Fun_House_(American_game_show)", "http://dbpedia.org/resource/Fun_House_(British_game_show)", "http://dbpedia.org/resource/Fun_Khana", "http://dbpedia.org/resource/Fun_School", "http://dbpedia.org/resource/Fun_Song_Factory", "http://dbpedia.org/resource/Fun_Time_(TV_program)", "http://dbpedia.org/resource/Fun_Time_(TV_series)", "http://dbpedia.org/resource/Fun_at_the_Funeral_Parlour", "http://dbpedia.org/resource/Fun_with_Charades", "http://dbpedia.org/resource/Fun_with_Frith", "http://dbpedia.org/resource/Funday_PawPet_Show", "http://dbpedia.org/resource/Funding_Together", "http://dbpedia.org/resource/Funhit_Mein_Jaari", "http://dbpedia.org/resource/Funjabbi_Chak_De", "http://dbpedia.org/resource/Funk_Flex_Full_Throttle", "http://dbpedia.org/resource/Funkstreife_Isar_12", "http://dbpedia.org/resource/Funky_Cops", "http://dbpedia.org/resource/Funky_Squad", "http://dbpedia.org/resource/Funky_Valley", "http://dbpedia.org/resource/Funland_(TV_series)", "http://dbpedia.org/resource/Funnel_Web", "http://dbpedia.org/resource/Funniest_Wins", "http://dbpedia.org/resource/Funny_Business_(TV_series)", "http://dbpedia.org/resource/Funny_Farm_(TV_series)", "http://dbpedia.org/resource/Funny_Farm_(play)", "http://dbpedia.org/resource/Funny_Girls_(TV_series)", "http://dbpedia.org/resource/Funny_Ka,_Pare_Ko", "http://dbpedia.org/resource/Funny_Man_(TV_series)", "http://dbpedia.org/resource/Funny_Nights_with_Pearle_Maaney", "http://dbpedia.org/resource/Funny_Pets", "http://dbpedia.org/resource/Funny_You_Should_Ask_(1968_game_show)", "http://dbpedia.org/resource/Funny_You_Should_Ask_(2017_game_show)", "http://dbpedia.org/resource/Funny_or_Die_Presents", "http://dbpedia.org/resource/Funny_or_Die_Presents:_America's_Next_Weatherman", "http://dbpedia.org/resource/Funnybones", "http://dbpedia.org/resource/Funtastic_Quiz", "http://dbpedia.org/resource/Fuori_corso", "http://dbpedia.org/resource/Fuoriclasse", "http://dbpedia.org/resource/Fur_&_Feather", "http://dbpedia.org/resource/Fur_TV", "http://dbpedia.org/resource/Furaana_Dheynan", "http://dbpedia.org/resource/Furo_MTV", "http://dbpedia.org/resource/Furongian", "http://dbpedia.org/resource/Further_Adventures_of_Lucky_Jim", "http://dbpedia.org/resource/Furuhata_Ninzabur\u014d", "http://dbpedia.org/resource/Fury_(American_TV_series)", "http://dbpedia.org/resource/Fury_(Russian_TV_series)", "http://dbpedia.org/resource/Fury_in_Petticoats", "http://dbpedia.org/resource/Furze_World_Wonders", "http://dbpedia.org/resource/Fushigi_Y\u00fbgi", "http://dbpedia.org/resource/Futaba-kun_Change!", "http://dbpedia.org/resource/Futakoi_Alternative", "http://dbpedia.org/resource/Futbolilits", "http://dbpedia.org/resource/Futmalls", "http://dbpedia.org/resource/Futurama", "http://dbpedia.org/resource/Futurama_(season_5)", "http://dbpedia.org/resource/Future-Worm!", "http://dbpedia.org/resource/Future_Boy_Conan", "http://dbpedia.org/resource/Future_Cop_(TV_series)", "http://dbpedia.org/resource/Future_Diary", "http://dbpedia.org/resource/Future_Fantastic", "http://dbpedia.org/resource/Future_GPX_Cyber_Formula", "http://dbpedia.org/resource/Future_GPX_Cyber_Formula_SIN", "http://dbpedia.org/resource/Future_Lovers_(manga)", "http://dbpedia.org/resource/Future_Man_(TV_series)", "http://dbpedia.org/resource/Future_Shock_(TV_series)", "http://dbpedia.org/resource/Future_Stars", "http://dbpedia.org/resource/Future_Weapons", "http://dbpedia.org/resource/Futuresport", "http://dbpedia.org/resource/Futz!", "http://dbpedia.org/resource/Fuun_Lion-Maru", "http://dbpedia.org/resource/Fuzzbucket", "http://dbpedia.org/resource/Fu\u00dfballtrainer_Wulff", "http://dbpedia.org/resource/F\u00e1brica_de_sue\u00f1os", "http://dbpedia.org/resource/F\u00e1ilte_Towers", "http://dbpedia.org/resource/F\u00e9lix_(TV_series)", "http://dbpedia.org/resource/F\u00edsica_o_Qu\u00edmica", "http://dbpedia.org/resource/F\u00edsica_o_Qu\u00edmica:_El_reencuentro", "http://dbpedia.org/resource/F\u00f3rmula_Truck", "http://dbpedia.org/resource/F\u00f3stbr\u00e6\u00f0ur", "http://dbpedia.org/resource/F\u00f6rsta_K\u00e4rleken", "http://dbpedia.org/resource/F\u00f8rstegangstjenesten", "http://dbpedia.org/resource/F\u00fatbol_Picante", "http://dbpedia.org/resource/F\u00fcr_alle_F\u00e4lle_Stefanie", "http://dbpedia.org/resource/F\u0131r\u0131ldak_Ailesi", "http://dbpedia.org/resource/F\u016bma_no_Kojir\u014d", "http://dbpedia.org/resource/F\u016brin_Kazan_(TV_series)", "http://dbpedia.org/resource/G-Force:_Guardians_of_Space", "http://dbpedia.org/resource/G-Men_'75", "http://dbpedia.org/resource/G-On_Riders", "http://dbpedia.org/resource/G-Saviour", "http://dbpedia.org/resource/G-Spot_(TV_series)", "http://dbpedia.org/resource/G-Star", "http://dbpedia.org/resource/G-Taste", "http://dbpedia.org/resource/G-mik", "http://dbpedia.org/resource/G.B.H._(TV_series)", "http://dbpedia.org/resource/G.D.O.D._(Get_Dough_or_Die)", "http://dbpedia.org/resource/G.I._Joe:_A_Real_American_Hero_(1983_TV_series)", "http://dbpedia.org/resource/G.I._Joe:_A_Real_American_Hero_(1989_TV_series)", "http://dbpedia.org/resource/G.I._Joe:_Renegades", "http://dbpedia.org/resource/G.I._Joe:_Resolute", "http://dbpedia.org/resource/G.I._Joe_(film_series)", "http://dbpedia.org/resource/G.I._Joe_Extreme", "http://dbpedia.org/resource/G.P.", "http://dbpedia.org/resource/G.R.I.N.D._Get_Ready_It's_a_New_Day", "http://dbpedia.org/resource/G4's_Training_Camp", "http://dbpedia.org/resource/G4_Underground", "http://dbpedia.org/resource/G4tv.com_(TV_series)", "http://dbpedia.org/resource/GAA..._(TV_programme)", "http://dbpedia.org/resource/GAA_Beo", "http://dbpedia.org/resource/GAZ_Sobol", "http://dbpedia.org/resource/GA_Geijutsuka_Art_Design_Class", "http://dbpedia.org/resource/GB_Class_1", "http://dbpedia.org/resource/GB_Class_2", "http://dbpedia.org/resource/GCB_(TV_series)", "http://dbpedia.org/resource/GE_Genesis", "http://dbpedia.org/resource/GE_True", "http://dbpedia.org/resource/GE_\u2013_Good_Ending", "http://dbpedia.org/resource/GG_Bond", "http://dbpedia.org/resource/GIAT_30", "http://dbpedia.org/resource/GJ_Club", "http://dbpedia.org/resource/GLAAD_Media_Award", "http://dbpedia.org/resource/GLOW_(TV_series)", "http://dbpedia.org/resource/GMA3:_What_You_Need_To_Know", "http://dbpedia.org/resource/GMA_Balita", "http://dbpedia.org/resource/GMA_Headline_News", "http://dbpedia.org/resource/GMA_Network_News", "http://dbpedia.org/resource/GMA_News_Digest", "http://dbpedia.org/resource/GMA_News_Live", "http://dbpedia.org/resource/GMA_Regional_TV_Early_Edition", "http://dbpedia.org/resource/GMA_Regional_TV_Live!", "http://dbpedia.org/resource/GMA_Saturday/Sunday_Report", "http://dbpedia.org/resource/GMA_Supershow", "http://dbpedia.org/resource/GMA_Weekend_Report", "http://dbpedia.org/resource/GMTV", "http://dbpedia.org/resource/GMTV_News_(South)", "http://dbpedia.org/resource/GMT_(TV_programme)", "http://dbpedia.org/resource/GMT_(programme)", "http://dbpedia.org/resource/GM_TDH-4801_&_TDM-4801", "http://dbpedia.org/resource/GM_chassis", "http://dbpedia.org/resource/GP2_Asia_Series", "http://dbpedia.org/resource/GSG_9_\u2013_Ihr_Einsatz_ist_ihr_Leben", "http://dbpedia.org/resource/GSN_Live", "http://dbpedia.org/resource/GSN_Radio", "http://dbpedia.org/resource/GTK_(TV_series)", "http://dbpedia.org/resource/GT_Asia_Series", "http://dbpedia.org/resource/GT_Road_(TV_series)", "http://dbpedia.org/resource/GWR_1813_Class", "http://dbpedia.org/resource/GWR_2602_Class", "http://dbpedia.org/resource/GWR_360_Class", "http://dbpedia.org/resource/GWR_3700_Class", "http://dbpedia.org/resource/GWR_439_Class", "http://dbpedia.org/resource/GWR_455_Class", "http://dbpedia.org/resource/GWR_927_Class", "http://dbpedia.org/resource/G_Diaries", "http://dbpedia.org/resource/G_Hall_Thu", "http://dbpedia.org/resource/G_String_Divas", "http://dbpedia.org/resource/G_vs_E", "http://dbpedia.org/resource/Gaalivaana", "http://dbpedia.org/resource/Gaaner_Oparey", "http://dbpedia.org/resource/Gaano_Kadalas_ang_Minsan_(TV_series)", "http://dbpedia.org/resource/Gaatchora", "http://dbpedia.org/resource/Gabbar_Poonchwala", "http://dbpedia.org/resource/Gabby's_Dollhouse", "http://dbpedia.org/resource/Gabby_Duran_&_the_Unsittables", "http://dbpedia.org/resource/Gabriel's_Fire", "http://dbpedia.org/resource/Gabriel_Iglesias_Presents_Stand_Up_Revolution", "http://dbpedia.org/resource/Gabriel_y_Gabriela", "http://dbpedia.org/resource/Gabriela,_giros_del_destino", "http://dbpedia.org/resource/Gabriela_(1964_TV_series)", "http://dbpedia.org/resource/Gabriela_(1975_TV_series)", "http://dbpedia.org/resource/Gabriela_(2012_TV_series)", "http://dbpedia.org/resource/Gabrielle_(talk_show)", "http://dbpedia.org/resource/Gaby's_Xtraordinary_Files", "http://dbpedia.org/resource/Gachkouto", "http://dbpedia.org/resource/Gad_Guard", "http://dbpedia.org/resource/Gadget_&_the_Gadgetinis", "http://dbpedia.org/resource/Gadget_Boy_&_Heather", "http://dbpedia.org/resource/Gadget_Geeks", "http://dbpedia.org/resource/Gadget_Man", "http://dbpedia.org/resource/Gadgetman", "http://dbpedia.org/resource/Gaelic_calendar", "http://dbpedia.org/resource/Gag_Concert", "http://dbpedia.org/resource/Gag_Factor", "http://dbpedia.org/resource/Gagambino", "http://dbpedia.org/resource/Gaia_Symphony", "http://dbpedia.org/resource/Gaiji_Keisatsu", "http://dbpedia.org/resource/Gaiking", "http://dbpedia.org/resource/Gaj-class_tugboat", "http://dbpedia.org/resource/Gajab_Desh_Ki_Ajab_Kahaniyaan", "http://dbpedia.org/resource/Gaju_Bhai", "http://dbpedia.org/resource/Gakk\u014d_ja_Oshierarenai!", "http://dbpedia.org/resource/Gakk\u014d_no_Kaidan_(2015_TV_series)", "http://dbpedia.org/resource/Gakk\u014d_no_Kaidan_(novel_series)", "http://dbpedia.org/resource/Gakuen_Alice", "http://dbpedia.org/resource/Gakuen_Polizi", "http://dbpedia.org/resource/Gal_Circle", "http://dbpedia.org/resource/Gala_c\u01b0\u1eddi", "http://dbpedia.org/resource/Galactic_Empire_(series)", "http://dbpedia.org/resource/Galactic_Gale_Baxingar", "http://dbpedia.org/resource/Galactic_Whirlwind_Sasuraiger", "http://dbpedia.org/resource/Galactica_1980", "http://dbpedia.org/resource/Galacticast", "http://dbpedia.org/resource/Galactik_Football", "http://dbpedia.org/resource/Galapagos:_Beyond_Darwin", "http://dbpedia.org/resource/Galapagos_(1955_film)", "http://dbpedia.org/resource/Galapagos_3D", "http://dbpedia.org/resource/Galavant", "http://dbpedia.org/resource/Galaxy_Boy_Troop", "http://dbpedia.org/resource/Galaxy_Cyclone_Braiger", "http://dbpedia.org/resource/Galaxy_Fr\u00e4ulein_Yuna", "http://dbpedia.org/resource/Galaxy_Goof-Ups", "http://dbpedia.org/resource/Galaxy_High_School", "http://dbpedia.org/resource/Galaxy_Star", "http://dbpedia.org/resource/Galaxy_of_Fear", "http://dbpedia.org/resource/Galema:_Anak_ni_Zuma", "http://dbpedia.org/resource/Galette_des_rois", "http://dbpedia.org/resource/Galidor:_Defenders_of_the_Outer_Dimension", "http://dbpedia.org/resource/Galilei_Donna", "http://dbpedia.org/resource/Galileo_(German_TV_series)", "http://dbpedia.org/resource/Galileo_(Japanese_TV_series)", "http://dbpedia.org/resource/Galileo_Galilei_(opera)", "http://dbpedia.org/resource/Galis", "http://dbpedia.org/resource/Gallantry_(opera)", "http://dbpedia.org/resource/Gallery_(TV_series)", "http://dbpedia.org/resource/Gallery_Girls", "http://dbpedia.org/resource/Galli_Galli_Sim_Sim", "http://dbpedia.org/resource/Gallic_Wars", "http://dbpedia.org/resource/Gallipoli_(miniseries)", "http://dbpedia.org/resource/Galloping_Galaxies!", "http://dbpedia.org/resource/Gallowglass_(TV_series)", "http://dbpedia.org/resource/Galtar_and_the_Golden_Lance", "http://dbpedia.org/resource/Galti_Se_Mis-Tech", "http://dbpedia.org/resource/Gal\u00e1pagos_(2006_TV_series)", "http://dbpedia.org/resource/Gamane_Yaa", "http://dbpedia.org/resource/Gamaran", "http://dbpedia.org/resource/Gambit_(British_game_show)", "http://dbpedia.org/resource/Gambit_(game_show)", "http://dbpedia.org/resource/Gamble_on_Love", "http://dbpedia.org/resource/Game,_Set_and_Match", "http://dbpedia.org/resource/Game2:_Winter", "http://dbpedia.org/resource/Game60", "http://dbpedia.org/resource/GameCenter_CX", "http://dbpedia.org/resource/GameFace", "http://dbpedia.org/resource/GameTrailers_TV_with_Geoff_Keighley", "http://dbpedia.org/resource/Game_'N_Go", "http://dbpedia.org/resource/Game_Change_(film)", "http://dbpedia.org/resource/Game_Developers_Choice_Awards", "http://dbpedia.org/resource/Game_Grumps", "http://dbpedia.org/resource/Game_Ka_Na_Ba%3F", "http://dbpedia.org/resource/Game_Makers", "http://dbpedia.org/resource/Game_Night_(web_series)", "http://dbpedia.org/resource/Game_On!_(2020_game_show)", "http://dbpedia.org/resource/Game_On:_A_Comedy_Crossover_Event", "http://dbpedia.org/resource/Game_On_(2002_game_show)", "http://dbpedia.org/resource/Game_On_(British_TV_series)", "http://dbpedia.org/resource/Game_On_(Canadian_TV_series)", "http://dbpedia.org/resource/Game_Over_(TV_series)", "http://dbpedia.org/resource/Game_Plan_(TV_series)", "http://dbpedia.org/resource/Game_Prattana", "http://dbpedia.org/resource/Game_Rai_Game_Rak", "http://dbpedia.org/resource/Game_Shakers", "http://dbpedia.org/resource/Game_Show_Yoo_Hee_Nak_Rak", "http://dbpedia.org/resource/Game_Show_in_My_Head", "http://dbpedia.org/resource/Game_for_a_Laugh", "http://dbpedia.org/resource/Game_ng_Bayan", "http://dbpedia.org/resource/Game_of_Arms", "http://dbpedia.org/resource/Game_of_Bros", "http://dbpedia.org/resource/Game_of_Clones", "http://dbpedia.org/resource/Game_of_Crowns", "http://dbpedia.org/resource/Game_of_Games", "http://dbpedia.org/resource/Game_of_Games_Suomi", "http://dbpedia.org/resource/Game_of_Homes", "http://dbpedia.org/resource/Game_of_Hunting", "http://dbpedia.org/resource/Game_of_Outlaws", "http://dbpedia.org/resource/Game_of_Silence_(American_TV_series)", "http://dbpedia.org/resource/Game_of_Talents", "http://dbpedia.org/resource/Game_of_Thrones", "http://dbpedia.org/resource/Game_of_Thrones_(season_2)", "http://dbpedia.org/resource/Gameboys", "http://dbpedia.org/resource/Gamebros", "http://dbpedia.org/resource/Gamekings", "http://dbpedia.org/resource/Gamepad_(TV_series)", "http://dbpedia.org/resource/Gameplay_of_The_Elder_Scrolls_series", "http://dbpedia.org/resource/Gamer's_Guide_to_Pretty_Much_Everything", "http://dbpedia.org/resource/Gamer.tv", "http://dbpedia.org/resource/GamesMaster", "http://dbpedia.org/resource/Games_Night", "http://dbpedia.org/resource/Games_People_Play_(1980_TV_series)", "http://dbpedia.org/resource/Games_People_Play_(2019_TV_series)", "http://dbpedia.org/resource/Games_Uplate_Live", "http://dbpedia.org/resource/Games_World", "http://dbpedia.org/resource/Gameshow_Marathon_(American_TV_series)", "http://dbpedia.org/resource/Gameshow_Marathon_(British_game_show)", "http://dbpedia.org/resource/Gamezville", "http://dbpedia.org/resource/Gamify_(TV_series)", "http://dbpedia.org/resource/Gaming_Show_(In_My_Parents'_Garage)", "http://dbpedia.org/resource/Gaming_Wall_Street", "http://dbpedia.org/resource/Gamini_(web_series)", "http://dbpedia.org/resource/Gamma_(miniseries)", "http://dbpedia.org/resource/Gamsung_Camping", "http://dbpedia.org/resource/Ganbare!!_Robocon", "http://dbpedia.org/resource/Ganbaron", "http://dbpedia.org/resource/Ganbatte_Ikimasshoi", "http://dbpedia.org/resource/Gandang_Gabi,_Vice!", "http://dbpedia.org/resource/Gandh_Phulancha_Gela_Sangun", "http://dbpedia.org/resource/Gandii_Baat", "http://dbpedia.org/resource/Gando_(TV_series)", "http://dbpedia.org/resource/Gand\u00eda_Shore", "http://dbpedia.org/resource/Gang_Related_(TV_series)", "http://dbpedia.org/resource/Gang_Starz", "http://dbpedia.org/resource/Ganga_(TV_series)", "http://dbpedia.org/resource/Ganga_Kii_Dheej", "http://dbpedia.org/resource/Ganga_Yamuna_Saraswati", "http://dbpedia.org/resource/Gangaa", "http://dbpedia.org/resource/Gangaram_(TV_series)", "http://dbpedia.org/resource/Ganges_(TV_series)", "http://dbpedia.org/resource/Gangland_(TV_series)", "http://dbpedia.org/resource/Gangland_Undercover", "http://dbpedia.org/resource/Ganglands", "http://dbpedia.org/resource/Gangnam_Beauty", "http://dbpedia.org/resource/Gangnam_Scandal", "http://dbpedia.org/resource/Gangs_of_Filmistaan", "http://dbpedia.org/resource/Gangs_of_Haseepur", "http://dbpedia.org/resource/Gangs_of_London_(TV_series)", "http://dbpedia.org/resource/Gangs_of_Oz", "http://dbpedia.org/resource/Gangsta_Granny_(film)", "http://dbpedia.org/resource/Gangstars", "http://dbpedia.org/resource/Gangster_(film_series)", "http://dbpedia.org/resource/Gangsters:_America's_Most_Evil", "http://dbpedia.org/resource/Gangsters_(TV_series)", "http://dbpedia.org/resource/Ganjina", "http://dbpedia.org/resource/Gank_Your_Heart_(TV_series)", "http://dbpedia.org/resource/Gankutsuou:_The_Count_of_Monte_Cristo", "http://dbpedia.org/resource/Ganti_(2005_TV_series)", "http://dbpedia.org/resource/Gantz", "http://dbpedia.org/resource/Gantz_(film)", "http://dbpedia.org/resource/Ganyan_Kita_Kamahal", "http://dbpedia.org/resource/Ganz_UV", "http://dbpedia.org/resource/Gap-dong", "http://dbpedia.org/resource/Gap_Year_(TV_series)", "http://dbpedia.org/resource/Garage_Club", "http://dbpedia.org/resource/Garage_Gold", "http://dbpedia.org/resource/Garage_Sale_Mystery", "http://dbpedia.org/resource/Garbage_Pail_Kids_(TV_series)", "http://dbpedia.org/resource/GardenSMART", "http://dbpedia.org/resource/Gardeners'_World", "http://dbpedia.org/resource/Gardening_Australia", "http://dbpedia.org/resource/Gardening_by_the_Yard", "http://dbpedia.org/resource/Gardening_for_Kids_with_Madi", "http://dbpedia.org/resource/Garfield's_Babes_and_Bullets", "http://dbpedia.org/resource/Garfield's_Feline_Fantasies", "http://dbpedia.org/resource/Garfield's_Halloween_Adventure", "http://dbpedia.org/resource/Garfield's_Thanksgiving", "http://dbpedia.org/resource/Garfield_Goes_Hollywood", "http://dbpedia.org/resource/Garfield_Goose_and_Friends", "http://dbpedia.org/resource/Garfield_Originals", "http://dbpedia.org/resource/Garfield_and_Friends", "http://dbpedia.org/resource/Garfield_in_Paradise", "http://dbpedia.org/resource/Garfield_in_the_Rough", "http://dbpedia.org/resource/Garfield_merchandise", "http://dbpedia.org/resource/Garfield_on_the_Town", "http://dbpedia.org/resource/Garfield_television_specials", "http://dbpedia.org/resource/Garfunkel_and_Oates_(TV_series)", "http://dbpedia.org/resource/Gargantia_on_the_Verdurous_Planet", "http://dbpedia.org/resource/Gargoyles_(TV_film)", "http://dbpedia.org/resource/Gargoyles_(TV_series)", "http://dbpedia.org/resource/Gariahater_Ganglords", "http://dbpedia.org/resource/Garnock_Way", "http://dbpedia.org/resource/Garo:_Makai_Retsuden", "http://dbpedia.org/resource/Garo:_Makai_Senki", "http://dbpedia.org/resource/Garo:_Makai_no_Hana", "http://dbpedia.org/resource/Garo:_The_Animation", "http://dbpedia.org/resource/Garo:_Yami_o_Terasu_Mono", "http://dbpedia.org/resource/Garo_(TV_series)", "http://dbpedia.org/resource/Garo_Special:_Beast_of_the_Demon_Night", "http://dbpedia.org/resource/Garrison's_Gorillas", "http://dbpedia.org/resource/Garrow's_Law", "http://dbpedia.org/resource/Garry_Halliday", "http://dbpedia.org/resource/Garth:_Live_at_Notre_Dame", "http://dbpedia.org/resource/Garth_Marenghi's_Darkplace", "http://dbpedia.org/resource/Garth_at_Wynn", "http://dbpedia.org/resource/Garvan\u2013Olin_Medal", "http://dbpedia.org/resource/Gary:_Tank_Commander", "http://dbpedia.org/resource/Gary_&_Mike", "http://dbpedia.org/resource/Gary_Busey:_Pet_Judge", "http://dbpedia.org/resource/Gary_Larson's_Tales_from_the_Far_Side", "http://dbpedia.org/resource/Gary_Spetze's_Painting_Wild_Places", "http://dbpedia.org/resource/Gary_Unmarried", "http://dbpedia.org/resource/Gary_Wright_(racing_driver)", "http://dbpedia.org/resource/Gary_and_His_Demons", "http://dbpedia.org/resource/Gary_the_Rat", "http://dbpedia.org/resource/Garz\u00f3n_vive", "http://dbpedia.org/resource/Gar\u014dden", "http://dbpedia.org/resource/Gasaraki", "http://dbpedia.org/resource/Gaslight_(1958_film)", "http://dbpedia.org/resource/Gaslit_(TV_series)", "http://dbpedia.org/resource/Gasoleros", "http://dbpedia.org/resource/Gaspard_and_Lisa_(TV_series)", "http://dbpedia.org/resource/Gata_Salvaje", "http://dbpedia.org/resource/Gatchaman_Crowds", "http://dbpedia.org/resource/Gate_(novel_series)", "http://dbpedia.org/resource/Gate_7", "http://dbpedia.org/resource/Gate_Keepers_21", "http://dbpedia.org/resource/Gatekeepers_(game_show)", "http://dbpedia.org/resource/Gates_(TV_series)", "http://dbpedia.org/resource/Gatha_Navnathanchi", "http://dbpedia.org/resource/Gathbandhan", "http://dbpedia.org/resource/Gattimela", "http://dbpedia.org/resource/Gattu_Battu", "http://dbpedia.org/resource/Gauguin_the_Savage", "http://dbpedia.org/resource/Gaunt's_Ghosts", "http://dbpedia.org/resource/Gav_Ha'Uma", "http://dbpedia.org/resource/Gavilan_(TV_series)", "http://dbpedia.org/resource/Gavilanes_(TV_series)", "http://dbpedia.org/resource/Gavin_&_Stacey", "http://dbpedia.org/resource/Gavin_Crawford's_Wild_West", "http://dbpedia.org/resource/Gawain_(opera)", "http://dbpedia.org/resource/Gawayn", "http://dbpedia.org/resource/Gay_Army", "http://dbpedia.org/resource/Gay_Life_(TV_series)", "http://dbpedia.org/resource/Gay_Meets_Girl", "http://dbpedia.org/resource/Gay_Mountain", "http://dbpedia.org/resource/Gay_News_and_Views", "http://dbpedia.org/resource/Gay_Republicans", "http://dbpedia.org/resource/Gay_USA", "http://dbpedia.org/resource/Gay_Weddings", "http://dbpedia.org/resource/Gay_for_Play_Game_Show_Starring_RuPaul", "http://dbpedia.org/resource/Gaya_Sa_Pelikula", "http://dbpedia.org/resource/Gayathri_(TV_series)", "http://dbpedia.org/resource/Gaybo's_Grumpy_Men", "http://dbpedia.org/resource/Gaybo_Laughs_Back", "http://dbpedia.org/resource/Gaycation_(TV_series)", "http://dbpedia.org/resource/Gayme_Show", "http://dbpedia.org/resource/Gaytime_TV", "http://dbpedia.org/resource/Gazette_(TV_series)", "http://dbpedia.org/resource/Gbanga", "http://dbpedia.org/resource/Gdgd_Fairies", "http://dbpedia.org/resource/GeTai_Challenge", "http://dbpedia.org/resource/Geantra\u00ed", "http://dbpedia.org/resource/Gears_and_Tears", "http://dbpedia.org/resource/Gears_of_War", "http://dbpedia.org/resource/Gece_G\u00fcnd\u00fcz", "http://dbpedia.org/resource/Gecko's_Garage", "http://dbpedia.org/resource/Geek_Charming", "http://dbpedia.org/resource/Geeking_Out", "http://dbpedia.org/resource/Geet_Dholi", "http://dbpedia.org/resource/Geet_\u2013_Hui_Sabse_Parayi", "http://dbpedia.org/resource/Geetha_(TV_series)", "http://dbpedia.org/resource/Geethanjali_(TV_series)", "http://dbpedia.org/resource/Gegen_den_Wind", "http://dbpedia.org/resource/Gehaktdag", "http://dbpedia.org/resource/Geharha:_The_Dark_and_Long_Haired_Monster", "http://dbpedia.org/resource/Gehraiyaan_(web_series)", "http://dbpedia.org/resource/Geiger\u2013Marsden_experiment", "http://dbpedia.org/resource/Gekiganger_III", "http://dbpedia.org/resource/Gekisou_Sentai_Carranger", "http://dbpedia.org/resource/Gelathi", "http://dbpedia.org/resource/Gellunu_Furaana", "http://dbpedia.org/resource/Gemilang_(TV_series)", "http://dbpedia.org/resource/Gemini_Division", "http://dbpedia.org/resource/Gemini_Home_Entertainment", "http://dbpedia.org/resource/Gemini_Knives", "http://dbpedia.org/resource/Gemini_Man_(TV_series)", "http://dbpedia.org/resource/Gemma_Collins:_Diva", "http://dbpedia.org/resource/Gemma_Collins:_Self-Harm_&_Me", "http://dbpedia.org/resource/Gems_(TV_series)", "http://dbpedia.org/resource/Gen:Lock", "http://dbpedia.org/resource/Gen_V", "http://dbpedia.org/resource/Gene_Autry's_Melody_Ranch", "http://dbpedia.org/resource/Gene_Simmons_Family_Jewels", "http://dbpedia.org/resource/Genealogy_Roadshow_(American_TV_series)", "http://dbpedia.org/resource/Geneforge_(series)", "http://dbpedia.org/resource/General's_Lady", "http://dbpedia.org/resource/General_Electric_Theater", "http://dbpedia.org/resource/General_Hospital", "http://dbpedia.org/resource/General_Hospital:_Night_Shift", "http://dbpedia.org/resource/General_Hospital:_Twist_of_Fate", "http://dbpedia.org/resource/General_Hospital_(British_TV_series)", "http://dbpedia.org/resource/General_Intercessions", "http://dbpedia.org/resource/General_Motors_50th_Anniversary_Show", "http://dbpedia.org/resource/General_Motors_60\u00b0_V6_engine", "http://dbpedia.org/resource/General_Motors_Theatre", "http://dbpedia.org/resource/General_Roman_Calendar", "http://dbpedia.org/resource/General_Rouge_no_Gaisen", "http://dbpedia.org/resource/General_and_I", "http://dbpedia.org/resource/Generalized_hypergeometric_function", "http://dbpedia.org/resource/Generation_(Canadian_TV_program)", "http://dbpedia.org/resource/Generation_(TV_series)", "http://dbpedia.org/resource/Generation_Cross", "http://dbpedia.org/resource/Generation_Cryo", "http://dbpedia.org/resource/Generation_Drag", "http://dbpedia.org/resource/Generation_Gap_(TV_series)", "http://dbpedia.org/resource/Generation_Gap_(game_show)", "http://dbpedia.org/resource/Generation_Gifted", "http://dbpedia.org/resource/Generation_Jets", "http://dbpedia.org/resource/Generation_Kill_(miniseries)", "http://dbpedia.org/resource/Generation_O!", "http://dbpedia.org/resource/Generation_War", "http://dbpedia.org/resource/Generation_X_(film)", "http://dbpedia.org/resource/Generations:_The_Legacy", "http://dbpedia.org/resource/Generations_(American_TV_series)", "http://dbpedia.org/resource/Generations_(South_African_TV_series)", "http://dbpedia.org/resource/Generator_Gawl", "http://dbpedia.org/resource/Generator_Rex", "http://dbpedia.org/resource/Genes_(game_show)", "http://dbpedia.org/resource/Genes_(season_2)", "http://dbpedia.org/resource/Geneshaft", "http://dbpedia.org/resource/Genesis:_The_Creation_and_the_Flood", "http://dbpedia.org/resource/Genesis_(TV_series)", "http://dbpedia.org/resource/Genesis_Climber_MOSPEADA", "http://dbpedia.org/resource/Genesis_II_(film)", "http://dbpedia.org/resource/Genesis_of_Aquarion", "http://dbpedia.org/resource/Genetics_Society_of_America_Medal", "http://dbpedia.org/resource/Genghis_Khan_(2004_TV_series)", "http://dbpedia.org/resource/Genghis_Khan_(ATV_TV_series)", "http://dbpedia.org/resource/Genghis_Khan_(TVB_TV_series)", "http://dbpedia.org/resource/Genghis_Khan_(TV_programme)", "http://dbpedia.org/resource/Genie_in_the_House", "http://dbpedia.org/resource/Genista_Caves", "http://dbpedia.org/resource/Genius_(1999_film)", "http://dbpedia.org/resource/Genius_(American_TV_series)", "http://dbpedia.org/resource/Genius_(British_TV_series)", "http://dbpedia.org/resource/Genius_(TV_series)", "http://dbpedia.org/resource/Genius_(radio_series)", "http://dbpedia.org/resource/Genius_Junior", "http://dbpedia.org/resource/Genius_of_Britain", "http://dbpedia.org/resource/Geni\u015f_Aile", "http://dbpedia.org/resource/Genkaku_Picasso", "http://dbpedia.org/resource/Genoa_International_Boat_Show", "http://dbpedia.org/resource/Genocyber", "http://dbpedia.org/resource/Genseishin_Justirisers", "http://dbpedia.org/resource/Genshiken", "http://dbpedia.org/resource/Gens\u014d_Suikogaiden", "http://dbpedia.org/resource/Gente_(magazine)", "http://dbpedia.org/resource/Gente_bien_(TV_series)", "http://dbpedia.org/resource/Gente_de_Primera", "http://dbpedia.org/resource/Gente_di_mare_(TV_series)", "http://dbpedia.org/resource/Gente_sin_historia", "http://dbpedia.org/resource/Gentefied", "http://dbpedia.org/resource/Gentleman_Jack_(TV_series)", "http://dbpedia.org/resource/Gentleman_Thief_(2001_film)", "http://dbpedia.org/resource/Gentlemen_and_Players_(TV_series)", "http://dbpedia.org/resource/Geo_Cartoon", "http://dbpedia.org/resource/Geobreeders", "http://dbpedia.org/resource/Geoff_Lloyd_with_Annabel_Port", "http://dbpedia.org/resource/Geographers_on_Film", "http://dbpedia.org/resource/Geographically_Speaking", "http://dbpedia.org/resource/Geometry_Wars", "http://dbpedia.org/resource/Geordie_Racer", "http://dbpedia.org/resource/Geordie_Shore", "http://dbpedia.org/resource/Geordie_Shore_OGs", "http://dbpedia.org/resource/George_&_Alana", "http://dbpedia.org/resource/George_&_Paul", "http://dbpedia.org/resource/George_&_Tammy", "http://dbpedia.org/resource/George_(1972_TV_series)", "http://dbpedia.org/resource/George_(1993_TV_series)", "http://dbpedia.org/resource/George_Burns_Comedy_Week", "http://dbpedia.org/resource/George_Carlin's_American_Dream", "http://dbpedia.org/resource/George_Carlin_at_USC", "http://dbpedia.org/resource/George_Clarke's_Amazing_Spaces", "http://dbpedia.org/resource/George_H.W._Bush_(film)", "http://dbpedia.org/resource/George_Lopez_(TV_series)", "http://dbpedia.org/resource/George_Negus_Tonight", "http://dbpedia.org/resource/George_Orwell:_A_Life_in_Pictures", "http://dbpedia.org/resource/George_S._Patton's_speech_to_the_Third_Army", "http://dbpedia.org/resource/George_Shrinks", "http://dbpedia.org/resource/George_Stroumboulopoulos_Tonight", "http://dbpedia.org/resource/George_W._Beadle_Award", "http://dbpedia.org/resource/George_W._Bush_(film)", "http://dbpedia.org/resource/George_Wallace_(film)", "http://dbpedia.org/resource/George_Washington_(miniseries)", "http://dbpedia.org/resource/George_Washington_II:_The_Forging_of_a_Nation", "http://dbpedia.org/resource/George_and_Cecil", "http://dbpedia.org/resource/George_and_Leo", "http://dbpedia.org/resource/George_and_Martha", "http://dbpedia.org/resource/George_and_Mildred", "http://dbpedia.org/resource/George_and_the_Dragon_(TV_series)", "http://dbpedia.org/resource/George_of_the_Jungle", "http://dbpedia.org/resource/George_of_the_Jungle_(2007_TV_series)", "http://dbpedia.org/resource/Georgetown_University_Forum", "http://dbpedia.org/resource/Georgia's_Got_Talent", "http://dbpedia.org/resource/Georgia_O'Keeffe_(film)", "http://dbpedia.org/resource/Geostar", "http://dbpedia.org/resource/HGTV_Design_Star_All_Stars", "http://dbpedia.org/resource/HGTV_Star", "http://dbpedia.org/resource/HIStory_(web_series)", "http://dbpedia.org/resource/HIT_(TV_series)", "http://dbpedia.org/resource/HJ-10", "http://dbpedia.org/resource/HMS_Paradise", "http://dbpedia.org/resource/HM_Coastal_Motor_Boat_4", "http://dbpedia.org/resource/HP:_To_the_Highest_Level_Na!", "http://dbpedia.org/resource/HPI_(TV_series)", "http://dbpedia.org/resource/HP_Integrity_Servers", "http://dbpedia.org/resource/HP_Pavilion_TX1000_Series_Tablet_PC", "http://dbpedia.org/resource/HP_Pavilion_dv2000", "http://dbpedia.org/resource/HP_Pavilion_dv9700t", "http://dbpedia.org/resource/HP_TouchSmart", "http://dbpedia.org/resource/HS2000", "http://dbpedia.org/resource/HSH_Class_01", "http://dbpedia.org/resource/HSH_Class_T211.0", "http://dbpedia.org/resource/HTC_One_series", "http://dbpedia.org/resource/HUD_(TV_program)", "http://dbpedia.org/resource/H_(TV_series)", "http://dbpedia.org/resource/Ha'Nephilim", "http://dbpedia.org/resource/Ha-Chaim_Ze_Lo_Hacol", "http://dbpedia.org/resource/Ha-Chatzer_(TV_series)", "http://dbpedia.org/resource/Ha-Comedy_Store", "http://dbpedia.org/resource/Ha-Yeladim_Mi'Givat_Napoleon", "http://dbpedia.org/resource/HaBigbagim", "http://dbpedia.org/resource/HaDavar_HaGadol_HaBa", "http://dbpedia.org/resource/HaDugmaniot", "http://dbpedia.org/resource/HaMerotz_LaMillion", "http://dbpedia.org/resource/HaMerotz_LaMillion_1", "http://dbpedia.org/resource/HaMerotz_LaMillion_2", "http://dbpedia.org/resource/HaMerotz_LaMillion_3", "http://dbpedia.org/resource/HaMerotz_LaMillion_4", "http://dbpedia.org/resource/HaMis'ada_HaGdola", "http://dbpedia.org/resource/HaMisrad", "http://dbpedia.org/resource/HaPijamot", "http://dbpedia.org/resource/HaShir_Shelanu", "http://dbpedia.org/resource/HaShminiya", "http://dbpedia.org/resource/Ha_Ha_Hayop", "http://dbpedia.org/resource/Ha_llegado_una_intrusa", "http://dbpedia.org/resource/Haara_Dil", "http://dbpedia.org/resource/Haara_Kotiya", "http://dbpedia.org/resource/Haas_Das_se_Nuuskas", "http://dbpedia.org/resource/Haasaa", "http://dbpedia.org/resource/Haasil_(Indian_TV_series)", "http://dbpedia.org/resource/Haasil_(Pakistani_TV_series)", "http://dbpedia.org/resource/Habang_Kapiling_Ka", "http://dbpedia.org/resource/Habang_May_Buhay", "http://dbpedia.org/resource/Hablamos_Espa\u00f1ol", "http://dbpedia.org/resource/Hache_(TV_series)", "http://dbpedia.org/resource/Hacio", "http://dbpedia.org/resource/Hack_(TV_series)", "http://dbpedia.org/resource/Hack_My_Life", "http://dbpedia.org/resource/Hacka_Doll", "http://dbpedia.org/resource/Hacker's_Olympic_Rundown", "http://dbpedia.org/resource/Hacker_Time", "http://dbpedia.org/resource/Hacking_Democracy", "http://dbpedia.org/resource/Hacks_(TV_series)", "http://dbpedia.org/resource/Hadleigh_(TV_series)", "http://dbpedia.org/resource/Hadley!", "http://dbpedia.org/resource/Hadrian_(TV_programme)", "http://dbpedia.org/resource/Hadrian_(opera)", "http://dbpedia.org/resource/Haechi_(TV_series)", "http://dbpedia.org/resource/Hafenpolizei", "http://dbpedia.org/resource/Haft_Khan_(game_show)", "http://dbpedia.org/resource/Haft_Sang_(TV_series)", "http://dbpedia.org/resource/Haftarah", "http://dbpedia.org/resource/Hagen_(TV_series)", "http://dbpedia.org/resource/Haggard_(TV_series)", "http://dbpedia.org/resource/Haggis_Baggis", "http://dbpedia.org/resource/Haguregumo", "http://dbpedia.org/resource/Hahamakin_ang_Lahat", "http://dbpedia.org/resource/Hahamishia_Hakamerit", "http://dbpedia.org/resource/Haibane_Renmei", "http://dbpedia.org/resource/Hail_to_the_Chief_(TV_series)", "http://dbpedia.org/resource/Hailey_Dean_Mysteries", "http://dbpedia.org/resource/Hainan_Adventure_with_Nigel_Marven", "http://dbpedia.org/resource/Hainan_Kopi_Tales", "http://dbpedia.org/resource/Hair_(TV_series)", "http://dbpedia.org/resource/Hair_Battle_Spectacular", "http://dbpedia.org/resource/Hairspray:_The_School_Musical", "http://dbpedia.org/resource/Hairspray_Live!", "http://dbpedia.org/resource/Hairy_Bikers:_Route_66", "http://dbpedia.org/resource/Hairy_Bikers_(American_TV_series)", "http://dbpedia.org/resource/Hairy_Dan", "http://dbpedia.org/resource/Hairy_Jeremy", "http://dbpedia.org/resource/Haiti:_Where_Did_the_Money_Go", "http://dbpedia.org/resource/Haiwaan_:_The_Monster", "http://dbpedia.org/resource/Haiwan_(TV_series)", "http://dbpedia.org/resource/Haize_Hegoa_type_patrol_boat", "http://dbpedia.org/resource/Haja_Cora\u00e7\u00e3o", "http://dbpedia.org/resource/Hajime_no_Ippo", "http://dbpedia.org/resource/Haka_Life", "http://dbpedia.org/resource/Hakka_Hakki", "http://dbpedia.org/resource/Hakkenden:_Eight_Dogs_of_the_East", "http://dbpedia.org/resource/Hakuba_no_\u014cji-sama", "http://dbpedia.org/resource/Hakui_no_Namida", "http://dbpedia.org/resource/Hal_Lashwood's_Alabama_Jubilee", "http://dbpedia.org/resource/Hala_Khorshid", "http://dbpedia.org/resource/Halal-TV", "http://dbpedia.org/resource/Halal_Gurls", "http://dbpedia.org/resource/Halcyon_(TV_series)", "http://dbpedia.org/resource/Hale_and_Pace", "http://dbpedia.org/resource/Half-Life:_Full_Life_Consequences", "http://dbpedia.org/resource/Half-Life_(series)", "http://dbpedia.org/resource/Half-Moon_Friends", "http://dbpedia.org/resource/Half-Opened_Windows", "http://dbpedia.org/resource/Half_&_Half", "http://dbpedia.org/resource/Half_Cut_Tea", "http://dbpedia.org/resource/Half_Marriage_(TV_series)", "http://dbpedia.org/resource/Half_Moon_Investigations_(TV_series)", "http://dbpedia.org/resource/Half_Nelson_(TV_series)", "http://dbpedia.org/resource/Half_a_World_Away_(miniseries)", "http://dbpedia.org/resource/Halfway_Home_(TV_series)", "http://dbpedia.org/resource/Halfworlds", "http://dbpedia.org/resource/Halifax:_Retribution", "http://dbpedia.org/resource/Halifax_f.p.", "http://dbpedia.org/resource/Halik_(TV_series)", "http://dbpedia.org/resource/Halik_sa_Apoy", "http://dbpedia.org/resource/Halita", "http://dbpedia.org/resource/Halka", "http://dbpedia.org/resource/Halka_Na_Lo", "http://dbpedia.org/resource/Hall's_Pictorial_Weekly", "http://dbpedia.org/resource/Hallelujah!_(TV_series)", "http://dbpedia.org/resource/Hallmark_Channel_(Scandilux)", "http://dbpedia.org/resource/Hallmark_Hall_of_Fame", "http://dbpedia.org/resource/Hallo,_Onkel_Doc!", "http://dbpedia.org/resource/Hallo_K3_(TV_series)", "http://dbpedia.org/resource/Hallo_Spencer", "http://dbpedia.org/resource/Hallo_aus_Berlin", "http://dbpedia.org/resource/Halloween_Baking_Championship", "http://dbpedia.org/resource/Halloween_Is_Grinch_Night", "http://dbpedia.org/resource/Halloween_Wars", "http://dbpedia.org/resource/Halloween_solar_storms,_2003", "http://dbpedia.org/resource/Halloween_with_the_New_Addams_Family", "http://dbpedia.org/resource/Halloweentown_(film)", "http://dbpedia.org/resource/Halloweentown_High", "http://dbpedia.org/resource/Halloweentown_II:_Kalabar's_Revenge", "http://dbpedia.org/resource/Halo_(TV_series)", "http://dbpedia.org/resource/Halo_4:_Forward_Unto_Dawn", "http://dbpedia.org/resource/Halston_(miniseries)", "http://dbpedia.org/resource/Halt_and_Catch_Fire_(TV_series)", "http://dbpedia.org/resource/Haluatko_miljon\u00e4\u00e4riksi%3F", "http://dbpedia.org/resource/Halv_\u00e5tta_hos_mig", "http://dbpedia.org/resource/Halvseint", "http://dbpedia.org/resource/Ham_on_the_Street", "http://dbpedia.org/resource/Hama_Ekani_Kalaayahtakai", "http://dbpedia.org/resource/Hama_Governorate_clashes_(2011\u201312)", "http://dbpedia.org/resource/Hamaar_Sautan_Hamaar_Saheli", "http://dbpedia.org/resource/Hamaari_Beti_Raaj_Karegi", "http://dbpedia.org/resource/Hamari_Bahu_Silk", "http://dbpedia.org/resource/Hamari_Betiyoon_Ka_Vivaah", "http://dbpedia.org/resource/Hamari_Devrani", "http://dbpedia.org/resource/Hamari_Sister_Didi", "http://dbpedia.org/resource/Hamari_Wali_Good_News", "http://dbpedia.org/resource/Hamblen_Block", "http://dbpedia.org/resource/Hamburg_Ravensbr\u00fcck_trials", "http://dbpedia.org/resource/Hamburg_Transit", "http://dbpedia.org/resource/Hamdiu_&_Shyhretja", "http://dbpedia.org/resource/Hamelen_(TV_series)", "http://dbpedia.org/resource/Hamilton's_Pharmacopeia", "http://dbpedia.org/resource/Hamilton's_Quest", "http://dbpedia.org/resource/Hamilton_Farm_Petroglyphs", "http://dbpedia.org/resource/Hamish_&_Andy_(radio_show)", "http://dbpedia.org/resource/Hamish_Macbeth_(TV_series)", "http://dbpedia.org/resource/Hamish_and_Andy's_Gap_Year", "http://dbpedia.org/resource/Hamish_and_Andy's_\u201cPerfect\u201d_Holiday", "http://dbpedia.org/resource/Hamlet._XXI_Century", "http://dbpedia.org/resource/Hamlet_(1959_film)", "http://dbpedia.org/resource/Hamlet_(2009_film)", "http://dbpedia.org/resource/Hammer_House_of_Horror", "http://dbpedia.org/resource/Hammer_House_of_Mystery_and_Suspense", "http://dbpedia.org/resource/Hammer_of_the_Gods_(2009_film)", "http://dbpedia.org/resource/Hammerhead:_Shark_Frenzy", "http://dbpedia.org/resource/Hammerman", "http://dbpedia.org/resource/Hammertime", "http://dbpedia.org/resource/Hamon_ng_Kalikasan", "http://dbpedia.org/resource/Hampton_Court_(TV_series)", "http://dbpedia.org/resource/Hampton_Court_Palace_Flower_Show", "http://dbpedia.org/resource/Hamro_Team", "http://dbpedia.org/resource/Hamster_&_Gretel", "http://dbpedia.org/resource/Han_Liu_Bang", "http://dbpedia.org/resource/Hana-Kimi", "http://dbpedia.org/resource/Hana-Kimi_(TV_series)", "http://dbpedia.org/resource/Hana_Moyu", "http://dbpedia.org/resource/Hana_Yori_Dango_(TV_series)", "http://dbpedia.org/resource/Hana_Yori_Dango_Returns", "http://dbpedia.org/resource/Hana_no_Ran", "http://dbpedia.org/resource/Hana_no_Sh\u014dgai", "http://dbpedia.org/resource/Hana_no_Zubora-Meshi", "http://dbpedia.org/resource/Hana_to_Akuma", "http://dbpedia.org/resource/Hanaa_(web_series)", "http://dbpedia.org/resource/Hanako_to_Anne", "http://dbpedia.org/resource/Hanamaru_Kindergarten", "http://dbpedia.org/resource/Hanappe_Bazooka", "http://dbpedia.org/resource/Hanasakeru_Seish\u014dnen", "http://dbpedia.org/resource/Hanasaku_Iroha", "http://dbpedia.org/resource/Hanaukyo_Maid_Team", "http://dbpedia.org/resource/Hanayamata", "http://dbpedia.org/resource/Hanazakari_no_Kimitachi_e", "http://dbpedia.org/resource/Hanazakari_no_Kimitachi_e_(2011_TV_series)", "http://dbpedia.org/resource/Hanazakarino_Kimitachihe", "http://dbpedia.org/resource/Hanazuki:_Full_of_Treasures", "http://dbpedia.org/resource/Hanbun,_Aoi", "http://dbpedia.org/resource/Hanbun_no_Tsuki_ga_Noboru_Sora", "http://dbpedia.org/resource/Hancock_(1963_TV_series)", "http://dbpedia.org/resource/Hancock_and_Joan", "http://dbpedia.org/resource/Hand_In_Hand_(Singaporean_TV_series)", "http://dbpedia.org/resource/Hand_Maid_May", "http://dbpedia.org/resource/Hand_aufs_Herz", "http://dbpedia.org/resource/Hand_in_Hand:_A_Benefit_for_Hurricane_Relief", "http://dbpedia.org/resource/Hand_in_Hand_(Singaporean_TV_series)", "http://dbpedia.org/resource/Hand_of_God_(TV_series)", "http://dbpedia.org/resource/Handa_Cup", "http://dbpedia.org/resource/Handcrafted_America", "http://dbpedia.org/resource/Handel's_Last_Chance", "http://dbpedia.org/resource/Hands_(TV_series)", "http://dbpedia.org/resource/Hands_of_Murder", "http://dbpedia.org/resource/Hands_of_a_Murderer", "http://dbpedia.org/resource/Handsome_Boys_of_the_20th_Century", "http://dbpedia.org/resource/Handsome_Siblings_(TV_series)", "http://dbpedia.org/resource/Handsome_Tigers", "http://dbpedia.org/resource/Handu_pumpulla", "http://dbpedia.org/resource/Handy_Manny", "http://dbpedia.org/resource/Handyman_(TV_series)", "http://dbpedia.org/resource/Handyman_Superstar_Challenge", "http://dbpedia.org/resource/Hanekonma", "http://dbpedia.org/resource/Hanep_Buhay", "http://dbpedia.org/resource/Hang_Time_(TV_series)", "http://dbpedia.org/resource/Hang_Ups_(TV_series)", "http://dbpedia.org/resource/Hangar_17", "http://dbpedia.org/resource/Hangar_1:_The_UFO_Files", "http://dbpedia.org/resource/Hanggang_Kailan_(TV_series)", "http://dbpedia.org/resource/Hanggang_Makita_Kang_Muli", "http://dbpedia.org/resource/Hanggang_Saan", "http://dbpedia.org/resource/Hanggang_sa_Dulo_ng_Buhay_Ko", "http://dbpedia.org/resource/Hangin'_In", "http://dbpedia.org/resource/Hangin'_with_Mr._Cooper", "http://dbpedia.org/resource/Hanging_In", "http://dbpedia.org/resource/Hanging_With", "http://dbpedia.org/resource/Hanging_by_a_Thread_(1979_film)", "http://dbpedia.org/resource/Hanging_with_Hector", "http://dbpedia.org/resource/Hangman's_Graveyard", "http://dbpedia.org/resource/Hangman_Comics", "http://dbpedia.org/resource/Hangor_S-131", "http://dbpedia.org/resource/Hangout_with_Yoo", "http://dbpedia.org/resource/Hania_(TV_series)", "http://dbpedia.org/resource/Hanjuku_Hero", "http://dbpedia.org/resource/Hank_(1965_TV_series)", "http://dbpedia.org/resource/Hank_(2009_TV_series)", "http://dbpedia.org/resource/Hank_Parker's_Outdoor_Magazine", "http://dbpedia.org/resource/Hank_Zipzer's_Christmas_Catastrophe", "http://dbpedia.org/resource/Hank_Zipzer_(TV_series)", "http://dbpedia.org/resource/Hanks'_Dugouts", "http://dbpedia.org/resource/Hanna-Barbera's_50th:_A_Yabba_Dabba_Doo_Celebration", "http://dbpedia.org/resource/Hanna-Barbera's_All-Star_Comedy_Ice_Revue", "http://dbpedia.org/resource/Hanna-Barbera_Superstars_10", "http://dbpedia.org/resource/Hanna_(TV_series)", "http://dbpedia.org/resource/Hannah's_Law", "http://dbpedia.org/resource/Hannah_Montana", "http://dbpedia.org/resource/Hannah_Montana_(season_2)", "http://dbpedia.org/resource/Hannah_Montana_(season_4)", "http://dbpedia.org/resource/Hannay_(TV_series)", "http://dbpedia.org/resource/Hanna\u2013Barbera's_World_of_Super_Adventure", "http://dbpedia.org/resource/Hannibal_(2006_TV_film)", "http://dbpedia.org/resource/Hannibal_(TV_series)", "http://dbpedia.org/resource/Hannity", "http://dbpedia.org/resource/Hannity's_America", "http://dbpedia.org/resource/Hannity_&_Colmes", "http://dbpedia.org/resource/Hans_Brinker_and_the_Silver_Skates_(film)", "http://dbpedia.org/resource/Hans_G\u00fcnter_Winkler", "http://dbpedia.org/resource/Hans_Heiling", "http://dbpedia.org/resource/Hans_in_the_Kitchen", "http://dbpedia.org/resource/Hansel_and_Gretel_(1983_TV_special)", "http://dbpedia.org/resource/Hansel_and_Gretel_(opera)", "http://dbpedia.org/resource/Hansi_He_Hansi...Mil_Toh_Lein", "http://dbpedia.org/resource/Hanzawa_Naoki", "http://dbpedia.org/resource/Han\u0131m\u0131n_\u00c7iftli\u011fi_(TV_series)", "http://dbpedia.org/resource/Han\u2013Xiongnu_War", "http://dbpedia.org/resource/Hap_and_Leonard_(TV_series)", "http://dbpedia.org/resource/Hapi_House!", "http://dbpedia.org/resource/Hapi_ang_Buhay", "http://dbpedia.org/resource/Hapinas", "http://dbpedia.org/resource/Haplos_(TV_series)", "http://dbpedia.org/resource/Happening_'68", "http://dbpedia.org/resource/Happening_Now", "http://dbpedia.org/resource/Happily_Divorced", "http://dbpedia.org/resource/Happily_Ever_After:_Fairy_Tales_for_Every_Child", "http://dbpedia.org/resource/Happily_Ever_After_(1961_TV_series)", "http://dbpedia.org/resource/Happily_Ever_After_(2007_TV_series)", "http://dbpedia.org/resource/Happiness_(British_TV_series)", "http://dbpedia.org/resource/Happiness_(South_Korean_TV_series)", "http://dbpedia.org/resource/Happiness_Is_a_Warm_Blanket,_Charlie_Brown", "http://dbpedia.org/resource/Happiness_in_the_Wind", "http://dbpedia.org/resource/Happu_Ki_Ultan_Paltan", "http://dbpedia.org/resource/Happy!_(TV_series)", "http://dbpedia.org/resource/Happy's_Party", "http://dbpedia.org/resource/Happy_(1960_TV_series)", "http://dbpedia.org/resource/Happy_300_Days", "http://dbpedia.org/resource/Happy_Anniversary,_Charlie_Brown", "http://dbpedia.org/resource/Happy_Anniversary_and_Goodbye", "http://dbpedia.org/resource/Happy_Beach", "http://dbpedia.org/resource/Happy_Birthday,_Charlie_Brown", "http://dbpedia.org/resource/Happy_Birthday,_Garfield", "http://dbpedia.org/resource/Happy_Birthday_(TV_series)", "http://dbpedia.org/resource/Happy_Birthday_BBC_Two", "http://dbpedia.org/resource/Happy_Birthday_Oscar_Wilde", "http://dbpedia.org/resource/Happy_Cafe", "http://dbpedia.org/resource/Happy_Camp_(TV_series)", "http://dbpedia.org/resource/Happy_Can_Already!", "http://dbpedia.org/resource/Happy_Can_Already!_2", "http://dbpedia.org/resource/Happy_Can_Already!_3", "http://dbpedia.org/resource/Happy_Can_Already!_4", "http://dbpedia.org/resource/Happy_Days", "http://dbpedia.org/resource/Happy_Ending_(TV_series)", "http://dbpedia.org/resource/Happy_Endings:_Happy_Rides", "http://dbpedia.org/resource/Happy_Endings_(TV_series)", "http://dbpedia.org/resource/Happy_Endings_(season_1)", "http://dbpedia.org/resource/Happy_Ever_After_(British_TV_series)", "http://dbpedia.org/resource/Happy_Ever_After_(Hong_Kong_TV_series)", "http://dbpedia.org/resource/Happy_Face_Killer_(film)", "http://dbpedia.org/resource/Happy_Face_Murders", "http://dbpedia.org/resource/Happy_Families_(1985_TV_series)", "http://dbpedia.org/resource/Happy_Families_(1989_TV_series)", "http://dbpedia.org/resource/Happy_Family_(American_TV_series)", "http://dbpedia.org/resource/Happy_Family_(Singaporean_TV_series)", "http://dbpedia.org/resource/Happy_Family_Plan", "http://dbpedia.org/resource/Happy_Go_Lucky_(1961_TV_series)", "http://dbpedia.org/resource/Happy_Hollidays", "http://dbpedia.org/resource/Happy_Home_(TV_series)", "http://dbpedia.org/resource/Happy_Hour_(TV_series)", "http://dbpedia.org/resource/Happy_Hours_(TV_series)", "http://dbpedia.org/resource/Happy_Hustle_High", "http://dbpedia.org/resource/Happy_Jail", "http://dbpedia.org/resource/Happy_Kappy", "http://dbpedia.org/resource/Happy_Land_(TV_program)", "http://dbpedia.org/resource/Happy_Mania", "http://dbpedia.org/resource/Happy_Merry-Go-Round", "http://dbpedia.org/resource/Happy_Michelin_Kitchen", "http://dbpedia.org/resource/Happy_Monster_Band", "http://dbpedia.org/resource/Happy_Mother-in-Law,_Pretty_Daughter-in-Law", "http://dbpedia.org/resource/Happy_Ness:_The_Secret_of_the_Loch", "http://dbpedia.org/resource/Happy_New_Year,_America", "http://dbpedia.org/resource/Happy_New_Year,_Charlie_Brown!", "http://dbpedia.org/resource/Happy_Seven", "http://dbpedia.org/resource/Happy_Since_I_Met_You", "http://dbpedia.org/resource/Happy_Sisters", "http://dbpedia.org/resource/Happy_Sunday", "http://dbpedia.org/resource/Happy_Time_(TV_program)", "http://dbpedia.org/resource/Happy_Together_(American_TV_series)", "http://dbpedia.org/resource/Happy_Together_(Philippine_TV_series)", "http://dbpedia.org/resource/Happy_Together_(Russian_TV_series)", "http://dbpedia.org/resource/Happy_Together_(South_Korean_TV_series)", "http://dbpedia.org/resource/Happy_Together_(talk_show)", "http://dbpedia.org/resource/Happy_Town_(TV_series)", "http://dbpedia.org/resource/Happy_Tree_Friends", "http://dbpedia.org/resource/Happy_Tree_Friends_(TV_series)", "http://dbpedia.org/resource/Happy_Truck_HAPPinas", "http://dbpedia.org/resource/Happy_Truck_ng_Bayan", "http://dbpedia.org/resource/Happy_Valley_(TV_series)", "http://dbpedia.org/resource/Happy_Wife,_Happy_Life", "http://dbpedia.org/resource/Happy_Yipee_Yehey!", "http://dbpedia.org/resource/Happyish", "http://dbpedia.org/resource/Happyland_(TV_series)", "http://dbpedia.org/resource/Haq_Se", "http://dbpedia.org/resource/Haqeeqat_(2019_TV_series)", "http://dbpedia.org/resource/Haqeeqat_(Indian_TV_series)", "http://dbpedia.org/resource/Har_Ghar_Kuch_Kehta_Hai", "http://dbpedia.org/resource/Har_Mard_Ka_Dard", "http://dbpedia.org/resource/Har_Mushkil_Ka_Hal_Akbar_Birbal", "http://dbpedia.org/resource/Har_Shaakh_Pe_Ullu_Baithaa_Hai", "http://dbpedia.org/resource/Hara_Hara_Mahadeva_(TV_series)", "http://dbpedia.org/resource/Harald_Schmidt_(TV_series)", "http://dbpedia.org/resource/Harano_Sur_(TV_series)", "http://dbpedia.org/resource/Harapan_ng_Bise", "http://dbpedia.org/resource/Harbor_Command", "http://dbpedia.org/resource/Harbormaster_(TV_series)", "http://dbpedia.org/resource/Harbour_Lights_(TV_series)", "http://dbpedia.org/resource/Harbourmaster_(TV_series)", "http://dbpedia.org/resource/Hard_(TV_series)", "http://dbpedia.org/resource/Hard_Candy_Fitness", "http://dbpedia.org/resource/Hard_Cases_(TV_series)", "http://dbpedia.org/resource/Hard_Cell", "http://dbpedia.org/resource/Hard_Copy_(South_African_TV_series)", "http://dbpedia.org/resource/Hard_Copy_(TV_program)", "http://dbpedia.org/resource/Hard_Drinkin'_Lincoln", "http://dbpedia.org/resource/Hard_Fate", "http://dbpedia.org/resource/Hard_Knocks_(1987_TV_series)", "http://dbpedia.org/resource/Hard_Knocks_(2001_TV_series)", "http://dbpedia.org/resource/Hard_Luck_Duck", "http://dbpedia.org/resource/Hard_Quiz", "http://dbpedia.org/resource/Hard_Rock_Medical", "http://dbpedia.org/resource/Hard_Sell_(TV_series)", "http://dbpedia.org/resource/Hard_Spell", "http://dbpedia.org/resource/Hard_Spell_Abbey", "http://dbpedia.org/resource/Hard_Sun", "http://dbpedia.org/resource/Hard_Time_(film)", "http://dbpedia.org/resource/Hard_Time_on_Planet_Earth", "http://dbpedia.org/resource/Hard_Times_(British_TV_series)", "http://dbpedia.org/resource/Hard_Times_(Canadian_TV_series)", "http://dbpedia.org/resource/Hardball_(1989_TV_series)", "http://dbpedia.org/resource/Hardball_(1994_TV_series)", "http://dbpedia.org/resource/Hardball_(2019_TV_series)", "http://dbpedia.org/resource/Hardball_with_Chris_Matthews", "http://dbpedia.org/resource/Hardcase_(1972_film)", "http://dbpedia.org/resource/Hardcastle_and_McCormick", "http://dbpedia.org/resource/Hardcore_Pawn", "http://dbpedia.org/resource/Hardcore_Pawn:_Chicago", "http://dbpedia.org/resource/Hardcover_Mysteries_(TV_series)", "http://dbpedia.org/resource/Hardhat_and_Legs", "http://dbpedia.org/resource/Hardware_(TV_series)", "http://dbpedia.org/resource/Hardwell_On_Air", "http://dbpedia.org/resource/Hardwicke_House", "http://dbpedia.org/resource/Hardwood_Classics", "http://dbpedia.org/resource/Hardy_Bucks", "http://dbpedia.org/resource/Hare_and_Wolf", "http://dbpedia.org/resource/Hareport", "http://dbpedia.org/resource/Hari_Hari_Churiyaan", "http://dbpedia.org/resource/Hari_Mirchi_Lal_Mirchi", "http://dbpedia.org/resource/Harichandanam", "http://dbpedia.org/resource/Harina_de_otro_costal", "http://dbpedia.org/resource/Hark_at_Barker", "http://dbpedia.org/resource/Harke_Haldar", "http://dbpedia.org/resource/Harlan_County_War", "http://dbpedia.org/resource/Harlem_(TV_series)", "http://dbpedia.org/resource/Harlem_Beat", "http://dbpedia.org/resource/Harlem_Globetrotters_(TV_series)", "http://dbpedia.org/resource/Harlem_Heights_(TV_series)", "http://dbpedia.org/resource/Harlequin_Puppet_Theatre", "http://dbpedia.org/resource/Harlequinade_(Australian_TV_play)", "http://dbpedia.org/resource/Harley_Quinn_(TV_series)", "http://dbpedia.org/resource/Harley_Street_(TV_series)", "http://dbpedia.org/resource/Harley_and_the_Davidsons", "http://dbpedia.org/resource/Harlock_Saga", "http://dbpedia.org/resource/Harlots_(TV_series)", "http://dbpedia.org/resource/HarmonQuest", "http://dbpedia.org/resource/Harnessing_Peacocks_(film)", "http://dbpedia.org/resource/Harold_Robbins'_The_Survivors", "http://dbpedia.org/resource/Harold_Shipman:_Doctor_Death", "http://dbpedia.org/resource/Haromoni", "http://dbpedia.org/resource/Haromoni@", "http://dbpedia.org/resource/Harper's_Island", "http://dbpedia.org/resource/Harper_Valley_PTA_(TV_series)", "http://dbpedia.org/resource/Harphoul_Mohini", "http://dbpedia.org/resource/Harpies_(film)", "http://dbpedia.org/resource/Harpoon_(series)", "http://dbpedia.org/resource/Harriet's_Back_in_Town", "http://dbpedia.org/resource/Harriet_Lee_(TV_series)", "http://dbpedia.org/resource/Harriet_the_Spy:_Blog_Wars", "http://dbpedia.org/resource/Harriet_the_Spy_(TV_series)", "http://dbpedia.org/resource/Harrigan_(TV_series)", "http://dbpedia.org/resource/Harrigan_and_Son", "http://dbpedia.org/resource/Harris_Against_the_World", "http://dbpedia.org/resource/Harris_and_Company", "http://dbpedia.org/resource/Harrison_Bergeron_(film)", "http://dbpedia.org/resource/Harriswood_Crescent", "http://dbpedia.org/resource/Harrow_(TV_series)", "http://dbpedia.org/resource/Harry's_Game", "http://dbpedia.org/resource/Harry's_Girls", "http://dbpedia.org/resource/Harry's_Heroes", "http://dbpedia.org/resource/Harry's_Hong_Kong", "http://dbpedia.org/resource/Harry's_Law", "http://dbpedia.org/resource/Harry's_Mad", "http://dbpedia.org/resource/Harry's_Practice", "http://dbpedia.org/resource/Harry_&_Bunnie", "http://dbpedia.org/resource/Harry_&_Meghan:_Escaping_the_Palace", "http://dbpedia.org/resource/Harry_&_Paul", "http://dbpedia.org/resource/Harry_(American_TV_series)", "http://dbpedia.org/resource/Harry_(British_TV_series)", "http://dbpedia.org/resource/Harry_(game_show)", "http://dbpedia.org/resource/Harry_(talk_show)", "http://dbpedia.org/resource/Harry_Batt", "http://dbpedia.org/resource/Harry_Enfield's_Brand_Spanking_New_Show", "http://dbpedia.org/resource/Harry_Enfield_&_Chums", "http://dbpedia.org/resource/Harry_Hill's_Alien_Fun_Capsule", "http://dbpedia.org/resource/Harry_Hill's_Fruit_Corner", "http://dbpedia.org/resource/Harry_Hill's_Shark_Infested_Custard", "http://dbpedia.org/resource/Harry_Hill's_TV_Burp", "http://dbpedia.org/resource/Harry_Hill_(TV_series)", "http://dbpedia.org/resource/Harry_Loves_Lisa", "http://dbpedia.org/resource/Harry_O", "http://dbpedia.org/resource/Harry_Potter", "http://dbpedia.org/resource/Harry_Potter_(film_series)", "http://dbpedia.org/resource/Harry_Potter_20th_Anniversary:_Return_to_Hogwarts", "http://dbpedia.org/resource/Harry_and_Cosh", "http://dbpedia.org/resource/Harry_and_His_Bucket_Full_of_Dinosaurs", "http://dbpedia.org/resource/Harry_and_the_Hendersons_(TV_series)", "http://dbpedia.org/resource/Harry_and_the_Wrinklies_(TV_series)", "http://dbpedia.org/resource/Harry_the_Bunny", "http://dbpedia.org/resource/Harrying_of_the_North", "http://dbpedia.org/resource/Harsh_Realm", "http://dbpedia.org/resource/Hart_aber_fair", "http://dbpedia.org/resource/Hart_of_Dixie", "http://dbpedia.org/resource/Hart_to_Hart", "http://dbpedia.org/resource/Hart_van_Nederland", "http://dbpedia.org/resource/Hartbeat", "http://dbpedia.org/resource/Harts_of_the_West", "http://dbpedia.org/resource/Haru_(TV_series)", "http://dbpedia.org/resource/Haru_no_Sakamichi_(TV_series)"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/producer> <http://dbpedia.org/resource/Michael_Deeley> . ?uri <http://dbpedia.org/property/cinematography> <http://dbpedia.org/resource/Jordan_Cronenweth> . }"}, "answers": ["http://dbpedia.org/resource/Blade_Runner"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/foundation> <http://dbpedia.org/resource/Menlo_Park,_California> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}"}, "answers": ["6"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Edwin_of_Northumbria> <http://dbpedia.org/property/veneratedIn> ?uri } "}, "answers": ["http://dbpedia.org/resource/Anglican_Communion", "http://dbpedia.org/resource/Roman_Catholic_Church", "http://dbpedia.org/resource/Eastern_Orthodox_Church"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Picasso's_Last_Words_(Drink_to_Me)> <http://dbpedia.org/property/recorded> ?uri } "}, "answers": ["September\u2013October 1973"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pawan_Hans> <http://dbpedia.org/ontology/hubAirport> ?uri . <http://dbpedia.org/resource/India> <http://dbpedia.org/property/largestCity> ?uri} "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/South_Asia_Subregional_Economic_Cooperation> <http://dbpedia.org/property/memeber> ?uri . <http://dbpedia.org/resource/Aishath_Saffa> <http://dbpedia.org/ontology/nationality> ?uri} "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jimmy_Wales> <http://dbpedia.org/ontology/board> ?uri . <http://dbpedia.org/resource/Latvian_Wikipedia> <http://dbpedia.org/property/owner> ?uri} "}, "answers": ["http://dbpedia.org/resource/Wikimedia_Foundation"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/network> <http://dbpedia.org/resource/NBC> . ?uri <http://dbpedia.org/property/subsequentWork> <http://dbpedia.org/resource/Frasier> . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/coach> <http://dbpedia.org/resource/Chip_Kelly> . ?x <http://dbpedia.org/ontology/debutTeam> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/architect> <http://dbpedia.org/resource/Malaysian_Highway_Authority> . ?x <http://dbpedia.org/property/designer> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Government_of_Malaysia", "http://dbpedia.org/resource/Malaysian_Highway_Authority", "http://dbpedia.org/resource/SKVE_Holdings_Sdn_Bhd", "MTD Infraperdana Sdn Bhd", "http://dbpedia.org/resource/UEM_Group", "http://dbpedia.org/resource/Ranhill_Engineers_&_Constructors_Sdn_Bhd", "http://dbpedia.org/resource/Land_Transport_Authority", "http://dbpedia.org/resource/Government_of_Singapore"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/league> <http://dbpedia.org/resource/Ekstraliga_(speedway)> . ?x <http://dbpedia.org/ontology/nickname> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/members> <http://dbpedia.org/resource/Bangladesh> . ?x <http://dbpedia.org/ontology/members> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/operator> <http://dbpedia.org/resource/Starwood_Capital_Group> . ?x <http://dbpedia.org/ontology/destinations> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/architect> <http://dbpedia.org/resource/Philip_Webb> . ?architect ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Building>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ivanpah_Solar_Power_Facility> <http://dbpedia.org/property/owner> ?uri . <http://dbpedia.org/resource/Dart_(programming_language)> <http://dbpedia.org/ontology/developer> ?uri} "}, "answers": ["http://dbpedia.org/resource/Google"]}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/ingredient> <http://dbpedia.org/resource/Agaricus_bisporus> . ?x <http://dbpedia.org/property/editing> ?uri }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/partner> <http://dbpedia.org/resource/Dolores_del_R\u00edo> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/city> <http://dbpedia.org/resource/Texarkana> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Band>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Rosie_Huntington-Whiteley> <http://dbpedia.org/ontology/partner> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Jason_Statham"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/draftTeam> <http://dbpedia.org/resource/Chicago_Bulls> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/CurrentPlayer>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ganzert> <http://dbpedia.org/ontology/wineRegion> ?uri . <http://dbpedia.org/resource/Balaton_wine_region> <http://dbpedia.org/property/country> ?uri} "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Domenico_Modugno> <http://dbpedia.org/property/constituency> ?uri } "}, "answers": ["http://dbpedia.org/resource/Turin", "Rome IV"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Chicken_Little_(1943_film)> <http://dbpedia.org/ontology/producer> ?x . ?x <http://dbpedia.org/property/awards> ?uri . }"}, "answers": ["1", "3", "26", ""]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bottineau_LRT> <http://dbpedia.org/property/headquarters> ?uri } "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/John_Speraw> <http://dbpedia.org/ontology/hometown> ?uri } "}, "answers": ["http://dbpedia.org/resource/California"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/fields> <http://dbpedia.org/resource/Philosophy> . ?x <http://dbpedia.org/ontology/discipline> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/doctoralStudents> <http://dbpedia.org/resource/\u0218erban_\u021ai\u021beica> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}"}, "answers": ["http://dbpedia.org/resource/Werner_Heisenberg"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Josef_Johansson> <http://dbpedia.org/property/hometown> ?uri . <http://dbpedia.org/resource/Nader_Guirat> <http://dbpedia.org/ontology/birthPlace> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Journal_of_Cerebral_Blood_Flow_&_Metabolism> <http://dbpedia.org/ontology/academicDiscipline> ?uri } "}, "answers": ["http://dbpedia.org/resource/Brain", "http://dbpedia.org/resource/Cerebral_circulation", "http://dbpedia.org/resource/Neuroimaging"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/David_Scherman> <http://dbpedia.org/ontology/training> ?uri } "}, "answers": ["http://dbpedia.org/resource/Dartmouth_College"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/portrayer> <http://dbpedia.org/resource/Sean_Young> . ?x <http://dbpedia.org/ontology/series> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Blade_Runner"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/producer> <http://dbpedia.org/resource/Peter-John_Vettese> . ?x <http://dbpedia.org/property/writer> ?uri . }"}, "answers": ["*Phil Bentley\n*Steve Hart\n*Jamie Hartman", "* Peter Cox\n* Peter-John Vettese", "Robin Gibb", "* Tina Arena\n* Peter-John Vettese", "http://dbpedia.org/resource/Candice_Alley", "Adam Argyle", "http://dbpedia.org/resource/Jenny_Lindfors", "http://dbpedia.org/resource/Spark_(singer)", "http://dbpedia.org/resource/Peter_Vettese"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/locatedInArea> <http://dbpedia.org/resource/Inyo_National_Forest> . ?uri <http://dbpedia.org/property/location> <http://dbpedia.org/resource/California> . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/manager> <http://dbpedia.org/resource/Piotr_Baron> . ?x <http://dbpedia.org/property/nickname> ?uri . }"}, "answers": ["Byki"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/debutTeam> <http://dbpedia.org/resource/Houston_Astros> . ?x <http://dbpedia.org/property/team> ?uri . }"}, "answers": ["99"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/locatedInArea> <http://dbpedia.org/resource/Yosemite_National_Park> . ?x <http://dbpedia.org/ontology/firstAscentPerson> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/city> <http://dbpedia.org/resource/Nashville,_Tennessee> . ?x <http://dbpedia.org/property/licensees> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/division> <http://dbpedia.org/resource/Firmicutes> . ?uri <http://dbpedia.org/property/domain> <http://dbpedia.org/resource/Bacteria> . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/producer> <http://dbpedia.org/resource/Queer_as_Folk_(UK_TV_series)> . ?x <http://dbpedia.org/property/notableworks> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/doctoralStudents> <http://dbpedia.org/resource/R\u00f3bert_Erban> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bobby_Beasley> <http://dbpedia.org/property/championship> ?uri . <http://dbpedia.org/resource/Martin_Molony> <http://dbpedia.org/ontology/race> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Brad_Paisley_discography> <http://dbpedia.org/property/artist> ?uri } "}, "answers": ["http://dbpedia.org/resource/Brad_Paisley", "Brad Paisley"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/doctoralAdvisor> <http://dbpedia.org/resource/Ernest_Rutherford> . }"}, "answers": ["17"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/position> <http://dbpedia.org/resource/Quarterback> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/AmericanFootballPlayer>}"}, "answers": ["http://dbpedia.org/resource/Allen_Webb", "http://dbpedia.org/resource/Alli_Abrew", "http://dbpedia.org/resource/Allie_Sherman", "http://dbpedia.org/resource/Alvin_White_(American_football)", "http://dbpedia.org/resource/Ambrose_Schindler", "http://dbpedia.org/resource/Andre'_Woodson", "http://dbpedia.org/resource/Andre_Ware", "http://dbpedia.org/resource/Andrew_Luck", "http://dbpedia.org/resource/Andrew_Manley", "http://dbpedia.org/resource/Andrew_Maxwell_(American_football)", "http://dbpedia.org/resource/Andrew_Walter", "http://dbpedia.org/resource/Andrico_Hines", "http://dbpedia.org/resource/Andy_Dalton", "http://dbpedia.org/resource/Andy_Hall_(American_football)", "http://dbpedia.org/resource/Andy_Kelly_(American_football)", "http://dbpedia.org/resource/Alex_Hornibrook", "http://dbpedia.org/resource/Alfred_Barlow_(American_football)", "http://dbpedia.org/resource/Damarius_Bilbo", "http://dbpedia.org/resource/Damon_Huard", "http://dbpedia.org/resource/Dan_Crowley_(Canadian_football)", "http://dbpedia.org/resource/Dan_Darragh", "http://dbpedia.org/resource/Dan_Fouts", "http://dbpedia.org/resource/Dan_Gonzalez", "http://dbpedia.org/resource/Dan_Kendra", "http://dbpedia.org/resource/Dan_LeFevour", "http://dbpedia.org/resource/Dan_Manucci", "http://dbpedia.org/resource/Dan_McGwire", "http://dbpedia.org/resource/Dan_Orlovsky", "http://dbpedia.org/resource/Dan_Pastorini", "http://dbpedia.org/resource/Dan_Persa", "http://dbpedia.org/resource/Dan_Whalen", "http://dbpedia.org/resource/Dan_White_(quarterback)", "http://dbpedia.org/resource/Dane_Evans", "http://dbpedia.org/resource/Daniel_Jones_(American_football)", "http://dbpedia.org/resource/Daniel_Sams_(American_football)", "http://dbpedia.org/resource/Danny_Etling", "http://dbpedia.org/resource/Danny_Kanell", "http://dbpedia.org/resource/Danny_Ragsdale", "http://dbpedia.org/resource/Danny_Southwick", "http://dbpedia.org/resource/Danny_Talbott", "http://dbpedia.org/resource/Danny_White", "http://dbpedia.org/resource/Danny_Wimprine", "http://dbpedia.org/resource/Danny_Wuerffel", "http://dbpedia.org/resource/Darnell_Kennedy", "http://dbpedia.org/resource/Darrell_Hackney", "http://dbpedia.org/resource/Darron_Thomas", "http://dbpedia.org/resource/Daryle_Lamonica", "http://dbpedia.org/resource/Daryll_Clark", "http://dbpedia.org/resource/Daunte_Culpepper", "http://dbpedia.org/resource/Dave_Barr_(American_football)", "http://dbpedia.org/resource/Dave_Bernard_(American_football)", "http://dbpedia.org/resource/Dave_Brown_(quarterback)", "http://dbpedia.org/resource/Dave_Krieg", "http://dbpedia.org/resource/Dave_Leggett", "http://dbpedia.org/resource/Dave_Mays", "http://dbpedia.org/resource/Dave_Ryan_(American_football)", "http://dbpedia.org/resource/Dave_Walter", "http://dbpedia.org/resource/Dave_Wilson_(American_football)", "http://dbpedia.org/resource/Davey_O'Brien", "http://dbpedia.org/resource/David_Blough", "http://dbpedia.org/resource/David_Carr_(American_football)", "http://dbpedia.org/resource/David_Fales", "http://dbpedia.org/resource/David_Garrard", "http://dbpedia.org/resource/David_Greene_(American_football)", "http://dbpedia.org/resource/David_Humm", "http://dbpedia.org/resource/David_Jaynes", "http://dbpedia.org/resource/David_Klingler", "http://dbpedia.org/resource/David_Lee_(American_football_coach)", "http://dbpedia.org/resource/David_Norrie", "http://dbpedia.org/resource/David_Riley_(American_football)", "http://dbpedia.org/resource/David_Walker_(quarterback)", "http://dbpedia.org/resource/David_Watford", "http://dbpedia.org/resource/David_Whitehurst", "http://dbpedia.org/resource/David_Woodley", "http://dbpedia.org/resource/Davis_Mills", "http://dbpedia.org/resource/Davis_Webb", "http://dbpedia.org/resource/Dayne_Crist", "http://dbpedia.org/resource/De'Andre_Johnson", "http://dbpedia.org/resource/DeShone_Kizer", "http://dbpedia.org/resource/Dean_Carlson", "http://dbpedia.org/resource/Dean_Look", "http://dbpedia.org/resource/Dean_May", "http://dbpedia.org/resource/Casey_Paus", "http://dbpedia.org/resource/Vad_Lee", "http://dbpedia.org/resource/Val_Keckin", "http://dbpedia.org/resource/Vern_Huffman", "http://dbpedia.org/resource/Vernon_Martin", "http://dbpedia.org/resource/Vic_Eaton", "http://dbpedia.org/resource/Vince_Evans", "http://dbpedia.org/resource/Vince_Ferragamo", "http://dbpedia.org/resource/Vince_Young", "http://dbpedia.org/resource/Vinny_Testaverde", "http://dbpedia.org/resource/Virgil_Carter", "http://dbpedia.org/resource/Wade_Wilson_(American_football)", "http://dbpedia.org/resource/Wally_Richardson", "http://dbpedia.org/resource/Walt_Rankin", "http://dbpedia.org/resource/Walter_Church_(American_football)", "http://dbpedia.org/resource/Walter_Heap", "http://dbpedia.org/resource/Walter_Lewis_(gridiron_football)", "http://dbpedia.org/resource/Walter_Matuszczak", "http://dbpedia.org/resource/Warren_Heller", "http://dbpedia.org/resource/Warren_Moon", "http://dbpedia.org/resource/Warren_Rabb", "http://dbpedia.org/resource/Warren_Smith_(quarterback)", "http://dbpedia.org/resource/Demetrius_Jones", "http://dbpedia.org/resource/Denard_Robinson", "http://dbpedia.org/resource/Dennis_Claridge", "http://dbpedia.org/resource/Dennis_Dixon", "http://dbpedia.org/resource/Dennis_Franklin", "http://dbpedia.org/resource/Dennis_Gile", "http://dbpedia.org/resource/Dennis_Havrilla", "http://dbpedia.org/resource/Dennis_Morrison", "http://dbpedia.org/resource/Dennis_Shaw", "http://dbpedia.org/resource/Denny_Cochran", "http://dbpedia.org/resource/Deondre_Francois", "http://dbpedia.org/resource/Derek_Anderson_(American_football)", "http://dbpedia.org/resource/Derek_Carr", "http://dbpedia.org/resource/Derek_Cassidy", "http://dbpedia.org/resource/Deshaun_Watson", "http://dbpedia.org/resource/Desmond_Ridder", "http://dbpedia.org/resource/Devin_Gardner", "http://dbpedia.org/resource/Devlin_Hodges", "http://dbpedia.org/resource/Dewey_Warren", "http://dbpedia.org/resource/Dick_Flowers", "http://dbpedia.org/resource/Dick_Horn", "http://dbpedia.org/resource/Dick_Norman_(American_football)", "http://dbpedia.org/resource/Dick_Shiner", "http://dbpedia.org/resource/Dick_Vick", "http://dbpedia.org/resource/Dick_Wood", "http://dbpedia.org/resource/Mike_Power_(American_football)", "http://dbpedia.org/resource/Akili_Smith", "http://dbpedia.org/resource/Al_Bloodgood", "http://dbpedia.org/resource/Al_Dekdebrun", "http://dbpedia.org/resource/Al_Dorow", "http://dbpedia.org/resource/Al_Grygo", "http://dbpedia.org/resource/Al_Woodall", "http://dbpedia.org/resource/Alan_Pastrana", "http://dbpedia.org/resource/Alan_Risher", "http://dbpedia.org/resource/Albie_Reisz", "http://dbpedia.org/resource/Alek_Torgersen", "http://dbpedia.org/resource/Alex_Brink", "http://dbpedia.org/resource/Alex_Carder", "http://dbpedia.org/resource/Alex_Espinoza", "http://dbpedia.org/resource/Alex_McGough", "http://dbpedia.org/resource/Alex_Ross_(American_football)", "http://dbpedia.org/resource/Alex_Smith", "http://dbpedia.org/resource/Alfred_Henry_Miller", "http://dbpedia.org/resource/Alfred_Jenkins_(quarterback)", "http://dbpedia.org/resource/Art_Schlichter", "http://dbpedia.org/resource/Artie_Sandberg", "http://dbpedia.org/resource/Arvell_Nelson", "http://dbpedia.org/resource/Asad_Abdul-Khaliq", "http://dbpedia.org/resource/Austin_Allen_(quarterback)", "http://dbpedia.org/resource/Austin_Appleby", "http://dbpedia.org/resource/Austin_Kafentzis", "http://dbpedia.org/resource/Ben_Bennett", "http://dbpedia.org/resource/Ben_DiNucci", "http://dbpedia.org/resource/Ben_Dupree", "http://dbpedia.org/resource/Ben_Holmes_(American_football)", "http://dbpedia.org/resource/Ben_Lucas_(American_football)", "http://dbpedia.org/resource/Ben_Mauk", "http://dbpedia.org/resource/Ben_McLaughlin", "http://dbpedia.org/resource/Ben_Olson", "http://dbpedia.org/resource/Ben_Raimondi", "http://dbpedia.org/resource/Ben_Roethlisberger", "http://dbpedia.org/resource/Ben_Sankey", "http://dbpedia.org/resource/Benjy_Dial", "http://dbpedia.org/resource/Benny_Friedman", "http://dbpedia.org/resource/Benny_Russell", "http://dbpedia.org/resource/Bernard_Morris", "http://dbpedia.org/resource/Bernie_Kosar", "http://dbpedia.org/resource/Bert_Jones", "http://dbpedia.org/resource/Beryl_Follet", "http://dbpedia.org/resource/Bev_Wallace", "http://dbpedia.org/resource/Foster_Watkins", "http://dbpedia.org/resource/Fran_Tarkenton", "http://dbpedia.org/resource/Frank_Budka", "http://dbpedia.org/resource/Frank_Cosentino", "http://dbpedia.org/resource/Frank_Dancewicz", "http://dbpedia.org/resource/Frank_Filchock", "http://dbpedia.org/resource/Frank_Niehaus", "http://dbpedia.org/resource/Frank_Patrick_(quarterback)", "http://dbpedia.org/resource/Frank_Ryan_(American_football)", "http://dbpedia.org/resource/Frank_Tripucka", "http://dbpedia.org/resource/Frankie_Albert", "http://dbpedia.org/resource/Fred_Benners", "http://dbpedia.org/resource/Fred_Besana", "http://dbpedia.org/resource/Fred_Enke_(American_football)", "http://dbpedia.org/resource/Fred_Mortensen", "http://dbpedia.org/resource/Fred_Wyant", "http://dbpedia.org/resource/G._J._Kinne", "http://dbpedia.org/resource/Gale_Gilbert", "http://dbpedia.org/resource/Gardner_Minshew", "http://dbpedia.org/resource/Garrett_Gilbert", "http://dbpedia.org/resource/Garrett_Grayson", "http://dbpedia.org/resource/Gary_Beban", "http://dbpedia.org/resource/Gary_Cuozzo", "http://dbpedia.org/resource/Gary_Danielson", "http://dbpedia.org/resource/Gary_Hogeboom", "http://dbpedia.org/resource/Gary_Huff", "http://dbpedia.org/resource/Gary_Keithley", "http://dbpedia.org/resource/Gary_Kerkorian", "http://dbpedia.org/resource/Gary_Kubiak", "http://dbpedia.org/resource/Gary_Marangi", "http://dbpedia.org/resource/Gary_Nova", "http://dbpedia.org/resource/Gary_Porter_(American_football)", "http://dbpedia.org/resource/Gary_Wood", "http://dbpedia.org/resource/Gene_Bradley", "http://dbpedia.org/resource/Gene_Johnson_(quarterback)", "http://dbpedia.org/resource/Gene_Malinowski", "http://dbpedia.org/resource/Gene_Ronzani", "http://dbpedia.org/resource/Gene_Swick", "http://dbpedia.org/resource/Geno_Smith", "http://dbpedia.org/resource/George_Blanda", "http://dbpedia.org/resource/George_Cafego", "http://dbpedia.org/resource/George_Ceithaml", "http://dbpedia.org/resource/George_Grosvenor", "http://dbpedia.org/resource/George_Herring", "http://dbpedia.org/resource/George_Izo", "http://dbpedia.org/resource/George_Mira", "http://dbpedia.org/resource/George_Pease", "http://dbpedia.org/resource/George_Shaw_(American_football)", "http://dbpedia.org/resource/George_Taliaferro", "http://dbpedia.org/resource/George_Terlep", "http://dbpedia.org/resource/George_Wilson_(quarterback)", "http://dbpedia.org/resource/Hank_Bachmeier", "http://dbpedia.org/resource/Harlan_Carr", "http://dbpedia.org/resource/Harold_Smith_(gridiron_football)", "http://dbpedia.org/resource/Harold_Stephens_(American_football)", "http://dbpedia.org/resource/Harry_Connolly_(American_football)", "http://dbpedia.org/resource/Harry_Gilmer", "http://dbpedia.org/resource/Harry_Harris_(American_football)", "http://dbpedia.org/resource/Harry_James_(American_football)", "http://dbpedia.org/resource/Harry_Theofiledes", "http://dbpedia.org/resource/Hayden_Moore", "http://dbpedia.org/resource/Sage_Rosenfels", "http://dbpedia.org/resource/Sam_Adkins_(American_football)", "http://dbpedia.org/resource/Sam_Bradford", "http://dbpedia.org/resource/Sam_Clemons", "http://dbpedia.org/resource/Sam_Darnold", "http://dbpedia.org/resource/Sam_Ehlinger", "http://dbpedia.org/resource/Sam_Hollenbach", "http://dbpedia.org/resource/Sam_Howell", "http://dbpedia.org/resource/Sam_Hughes_(American_football)", "http://dbpedia.org/resource/Sam_Keller", "http://dbpedia.org/resource/Sam_Vacanti", "http://dbpedia.org/resource/Sam_Wyche", "http://dbpedia.org/resource/Sammy_Baugh", "http://dbpedia.org/resource/Sammy_Garza", "http://dbpedia.org/resource/Sandy_Osiecki", "http://dbpedia.org/resource/T._C._Ostrander", "http://dbpedia.org/resource/T._J._Rubley", "http://dbpedia.org/resource/Tanner_Lee", "http://dbpedia.org/resource/Tanner_Price", "http://dbpedia.org/resource/Tarvaris_Jackson", "http://dbpedia.org/resource/Tate_Forcier", "http://dbpedia.org/resource/Taylor_Bennett", "http://dbpedia.org/resource/Taylor_Cornelius", "http://dbpedia.org/resource/Taylor_Heinicke", "http://dbpedia.org/resource/Taylor_Kelly", "http://dbpedia.org/resource/Taylor_Martinez", "http://dbpedia.org/resource/Taylor_Potts", "http://dbpedia.org/resource/Ted_Marchibroda", "http://dbpedia.org/resource/Teddy_Bridgewater", "http://dbpedia.org/resource/Wayne_Clark_(American_football)", "http://dbpedia.org/resource/Wayne_Gift", "http://dbpedia.org/resource/Wayne_Peace", "http://dbpedia.org/resource/Wes_Bautovich", "http://dbpedia.org/resource/Wes_Lunt", "http://dbpedia.org/resource/Whit_Taylor_(American_football)", "http://dbpedia.org/resource/Wil_Masoud", "http://dbpedia.org/resource/Will_Cureton", "http://dbpedia.org/resource/Will_Furrer", "http://dbpedia.org/resource/Will_Grier", "http://dbpedia.org/resource/Will_Proctor", "http://dbpedia.org/resource/Frank_Champi", "http://dbpedia.org/resource/Jacob_Slagle", "http://dbpedia.org/resource/Angelo_Bertelli", "http://dbpedia.org/resource/Anthony_Brown_(quarterback)", "http://dbpedia.org/resource/Anthony_Buich", "http://dbpedia.org/resource/Anthony_Dilweg", "http://dbpedia.org/resource/Anthony_Gordon_(American_football)", "http://dbpedia.org/resource/Anthony_Jennings_(American_football)", "http://dbpedia.org/resource/Anthony_Morelli", "http://dbpedia.org/resource/Anthony_Wright_(American_football)", "http://dbpedia.org/resource/Anu_Solomon", "http://dbpedia.org/resource/Aqeel_Glass", "http://dbpedia.org/resource/Archie_Manning", "http://dbpedia.org/resource/Archie_Roberts_(American_football)", "http://dbpedia.org/resource/Armin_Mahrt", "http://dbpedia.org/resource/Arnie_Arenz", "http://dbpedia.org/resource/Arnie_Herber", "http://dbpedia.org/resource/Elvis_Grbac", "http://dbpedia.org/resource/Emery_Nix", "http://dbpedia.org/resource/Emmett_McLemore", "http://dbpedia.org/resource/Eric_Barriere", "http://dbpedia.org/resource/Eric_Beavers", "http://dbpedia.org/resource/Eric_Crouch", "http://dbpedia.org/resource/Eric_Czerniewski", "http://dbpedia.org/resource/Eric_Dungey", "http://dbpedia.org/resource/Eric_Hipple", "http://dbpedia.org/resource/Eric_Kresser", "http://dbpedia.org/resource/Eric_Ward_(quarterback)", "http://dbpedia.org/resource/Eric_Zeier", "http://dbpedia.org/resource/Erik_Ainge", "http://dbpedia.org/resource/Erik_Kramer", "http://dbpedia.org/resource/Erik_Wilhelm", "http://dbpedia.org/resource/Ermal_Allen", "http://dbpedia.org/resource/Erwin_Gehrke", "http://dbpedia.org/resource/Everett_Golson", "http://dbpedia.org/resource/Gibran_Hamdan", "http://dbpedia.org/resource/Gifford_Nielsen", "http://dbpedia.org/resource/Gil_Johnson", "http://dbpedia.org/resource/Gil_Sterr", "http://dbpedia.org/resource/Gilbert_Renfroe", "http://dbpedia.org/resource/Gino_Torretta", "http://dbpedia.org/resource/Giovanni_Carmazzi", "http://dbpedia.org/resource/Giulio_Caravatta", "http://dbpedia.org/resource/Glen_Gauntt", "http://dbpedia.org/resource/Glenn_Carano", "http://dbpedia.org/resource/Glenn_Dobbs", "http://dbpedia.org/resource/Glenn_Foley", "http://dbpedia.org/resource/Glenn_Frey_(American_football)", "http://dbpedia.org/resource/Glynn_Griffing", "http://dbpedia.org/resource/MarQueis_Gray", "http://dbpedia.org/resource/Marc_Bulger", "http://dbpedia.org/resource/Marc_Dunn", "http://dbpedia.org/resource/Marc_Verica", "http://dbpedia.org/resource/Marc_Wilson_(American_football)", "http://dbpedia.org/resource/Marcus_Jackson", "http://dbpedia.org/resource/Marcus_Mariota", "http://dbpedia.org/resource/Marcus_Randall", "http://dbpedia.org/resource/Marcus_Vick", "http://dbpedia.org/resource/Marion_Pugh", "http://dbpedia.org/resource/Mark_Butterfield", "http://dbpedia.org/resource/Mark_Casale", "http://dbpedia.org/resource/Mark_Devlin_(American_football)", "http://dbpedia.org/resource/Mark_Driscoll_(American_football)", "http://dbpedia.org/resource/Mark_Farris", "http://dbpedia.org/resource/Mark_Hartsell", "http://dbpedia.org/resource/Mark_Herrmann", "http://dbpedia.org/resource/Mark_Kamphaus", "http://dbpedia.org/resource/Mark_Malone", "http://dbpedia.org/resource/Mark_Manges", "http://dbpedia.org/resource/Mark_Miller_(American_football)", "http://dbpedia.org/resource/Mark_Reed_(American_football)", "http://dbpedia.org/resource/Mark_Rypien", "http://dbpedia.org/resource/Mark_Sanchez", "http://dbpedia.org/resource/Mark_Stevens_(gridiron_football)", "http://dbpedia.org/resource/Mark_Thorson", "http://dbpedia.org/resource/Mark_Vlasic", "http://dbpedia.org/resource/Marlin_Briscoe", "http://dbpedia.org/resource/Marquel_Fleetwood", "http://dbpedia.org/resource/Marquise_Williams", "http://dbpedia.org/resource/Martevious_Young", "http://dbpedia.org/resource/Marty_Domres", "http://dbpedia.org/resource/Marty_Horn", "http://dbpedia.org/resource/Marty_Mornhinweg", "http://dbpedia.org/resource/Porter_Lainhart", "http://dbpedia.org/resource/Preston_Jones_(gridiron_football)", "http://dbpedia.org/resource/Preston_Parsons", "http://dbpedia.org/resource/Terrelle_Pryor", "http://dbpedia.org/resource/Terry_Andrysiak", "http://dbpedia.org/resource/Terry_Baker", "http://dbpedia.org/resource/Terry_Bradshaw", "http://dbpedia.org/resource/Terry_Dean", "http://dbpedia.org/resource/Terry_Hanratty", "http://dbpedia.org/resource/Terry_Luck", "http://dbpedia.org/resource/Terry_Nofsinger", "http://dbpedia.org/resource/Terry_Nugent_(American_football)", "http://dbpedia.org/resource/Thad_Busby", "http://dbpedia.org/resource/Dave_Schnell", "http://dbpedia.org/resource/Peter_Wright_(American_football)", "http://dbpedia.org/resource/John_Wangler", "http://dbpedia.org/resource/Boomer_Esiason", "http://dbpedia.org/resource/Brad_Banks", "http://dbpedia.org/resource/Brad_Goebel", "http://dbpedia.org/resource/Brad_Johnson_(American_football)", "http://dbpedia.org/resource/Brad_Kaaya", "http://dbpedia.org/resource/Brad_Lebo", "http://dbpedia.org/resource/Brad_Otton", "http://dbpedia.org/resource/Brad_Roach", "http://dbpedia.org/resource/Brad_Sorensen", "http://dbpedia.org/resource/Bradlee_Van_Pelt", "http://dbpedia.org/resource/Brady_Quinn", "http://dbpedia.org/resource/Brady_White", "http://dbpedia.org/resource/Bram_Kohlhausen", "http://dbpedia.org/resource/Brandon_Allen_(American_football)", "http://dbpedia.org/resource/Brandon_Doman", "http://dbpedia.org/resource/Brandon_Doughty", "http://dbpedia.org/resource/Brandon_Kirsch", "http://dbpedia.org/resource/Brandon_Peters", "http://dbpedia.org/resource/Brandon_Silvers", "http://dbpedia.org/resource/Brandon_Weeden", "http://dbpedia.org/resource/Brandon_Wimbush", "http://dbpedia.org/resource/Braniff_Bonaventure", "http://dbpedia.org/resource/Braxton_Miller", "http://dbpedia.org/resource/Brendan_Crawford", "http://dbpedia.org/resource/Brendan_Folmar", "http://dbpedia.org/resource/Brent_Petrus", "http://dbpedia.org/resource/Brent_Schaeffer", "http://dbpedia.org/resource/Bret_Stafford", "http://dbpedia.org/resource/Brett_Basanez", "http://dbpedia.org/resource/Brett_Favre", "http://dbpedia.org/resource/Brett_Hundley", "http://dbpedia.org/resource/Brett_Ratliff", "http://dbpedia.org/resource/Brett_Rypien", "http://dbpedia.org/resource/Brett_Smith", "http://dbpedia.org/resource/Brian_Ah_Yat", "http://dbpedia.org/resource/Brian_Balazik", "http://dbpedia.org/resource/Brian_Broomell", "http://dbpedia.org/resource/Brian_Dowling_(American_football)", "http://dbpedia.org/resource/Brian_Hoyer", "http://dbpedia.org/resource/Brian_Hudson", "http://dbpedia.org/resource/Brian_Jones_(quarterback)", "http://dbpedia.org/resource/Brian_Kuklick", "http://dbpedia.org/resource/Brian_Lewerke", "http://dbpedia.org/resource/Brian_McClure", "http://dbpedia.org/resource/Brian_Ransom_(gridiron_football)", "http://dbpedia.org/resource/Brian_Reader", "http://dbpedia.org/resource/Brian_Sipe", "http://dbpedia.org/resource/Brian_St._Pierre", "http://dbpedia.org/resource/Brian_Wrobel", "http://dbpedia.org/resource/Brian_Zbydniewski", "http://dbpedia.org/resource/Brock_Berlin", "http://dbpedia.org/resource/Brock_Huard", "http://dbpedia.org/resource/Brock_Jensen", "http://dbpedia.org/resource/Brock_Osweiler", "http://dbpedia.org/resource/Brock_Purdy", "http://dbpedia.org/resource/Brodie_Croyle", "http://dbpedia.org/resource/Brogan_Roback", "http://dbpedia.org/resource/Brooks_Bollinger", "http://dbpedia.org/resource/Browning_Nagle", "http://dbpedia.org/resource/Bruce_Eugene", "http://dbpedia.org/resource/Bruce_Lemmerman", "http://dbpedia.org/resource/Bruce_Mathison", "http://dbpedia.org/resource/Bruno_M\u00e1rquez", "http://dbpedia.org/resource/Bryan_Bennett", "http://dbpedia.org/resource/Bryan_Brock", "http://dbpedia.org/resource/Bryan_Clark_(American_football)", "http://dbpedia.org/resource/Bryan_Fortay", "http://dbpedia.org/resource/Bryan_Lee-Lauduski", "http://dbpedia.org/resource/Bryan_Randall", "http://dbpedia.org/resource/Bryan_Scott_(quarterback)", "http://dbpedia.org/resource/Bryant_Moniz", "http://dbpedia.org/resource/Bryce_Perkins", "http://dbpedia.org/resource/Bryce_Petty", "http://dbpedia.org/resource/Bryson_Spinner", "http://dbpedia.org/resource/Bubba_Wyche", "http://dbpedia.org/resource/Bubby_Brister", "http://dbpedia.org/resource/Bucky_Richardson", "http://dbpedia.org/resource/Bud_Schwenk", "http://dbpedia.org/resource/Jack_Scarbath", "http://dbpedia.org/resource/Jack_Thompson_(American_football)", "http://dbpedia.org/resource/Jack_Trudeau", "http://dbpedia.org/resource/Jackson_Erdmann", "http://dbpedia.org/resource/Jacky_Lee", "http://dbpedia.org/resource/Jacob_Eason", "http://dbpedia.org/resource/Jacoby_Brissett", "http://dbpedia.org/resource/Jake_Browning", "http://dbpedia.org/resource/Jake_Christensen", "http://dbpedia.org/resource/Jake_Coker", "http://dbpedia.org/resource/Jake_Delhomme", "http://dbpedia.org/resource/Jake_Dolegala", "http://dbpedia.org/resource/Jake_Eaton", "http://dbpedia.org/resource/Jake_Fromm", "http://dbpedia.org/resource/Jake_Heaps", "http://dbpedia.org/resource/Jake_Locker", "http://dbpedia.org/resource/Jake_Logue", "http://dbpedia.org/resource/Jake_Luton", "http://dbpedia.org/resource/Jake_Plummer", "http://dbpedia.org/resource/Jake_Rudock", "http://dbpedia.org/resource/Jake_Waters", "http://dbpedia.org/resource/Jakeb_Sullivan", "http://dbpedia.org/resource/Jalen_Morton", "http://dbpedia.org/resource/Jameis_Winston", "http://dbpedia.org/resource/Jamelle_Holieway", "http://dbpedia.org/resource/James_%22Shack%22_Harris", "http://dbpedia.org/resource/James_Brown_(quarterback)", "http://dbpedia.org/resource/James_Cox_(quarterback)", "http://dbpedia.org/resource/James_Earl_Wright_(American_football)", "http://dbpedia.org/resource/James_Finnegan_(American_football)", "http://dbpedia.org/resource/James_Guidry", "http://dbpedia.org/resource/James_MacPherson_(American_football)", "http://dbpedia.org/resource/James_Morgan_(American_football)", "http://dbpedia.org/resource/James_Ritchey", "http://dbpedia.org/resource/James_Vandenberg", "http://dbpedia.org/resource/Jamie_Barnette", "http://dbpedia.org/resource/Jamie_Martin_(American_football)", "http://dbpedia.org/resource/Jamie_Newman", "http://dbpedia.org/resource/Jammal_Lord", "http://dbpedia.org/resource/Jared_Brown", "http://dbpedia.org/resource/Jared_Goff", "http://dbpedia.org/resource/Jared_Lorenzen", "http://dbpedia.org/resource/Jarrett_Brown", "http://dbpedia.org/resource/Jarrett_Guarantano", "http://dbpedia.org/resource/Jarrett_Lee", "http://dbpedia.org/resource/Jarrett_Stidham", "http://dbpedia.org/resource/Jason_Boltus", "http://dbpedia.org/resource/Jason_Campbell", "http://dbpedia.org/resource/Jason_Fife", "http://dbpedia.org/resource/Jason_Garrett", "http://dbpedia.org/resource/Jason_Martin_(American_football)", "http://dbpedia.org/resource/Jason_Murrietta", "http://dbpedia.org/resource/Jason_Palumbis", "http://dbpedia.org/resource/Jason_Stiles", "http://dbpedia.org/resource/Jason_White_(American_football)", "http://dbpedia.org/resource/Jaxson_Dart", "http://dbpedia.org/resource/Jay_Arnold", "http://dbpedia.org/resource/Jay_Barker", "http://dbpedia.org/resource/Jay_Cutler", "http://dbpedia.org/resource/Jay_Fiedler", "http://dbpedia.org/resource/Jay_McDonagh", "http://dbpedia.org/resource/Jay_Schroeder", "http://dbpedia.org/resource/Jeb_Blount", "http://dbpedia.org/resource/Jeff_Blake", "http://dbpedia.org/resource/Kasey_Peters", "http://dbpedia.org/resource/Kay_Stephenson", "http://dbpedia.org/resource/Keith_Null", "http://dbpedia.org/resource/Keith_Wenning", "http://dbpedia.org/resource/Kellen_Clemens", "http://dbpedia.org/resource/Kellen_Mond", "http://dbpedia.org/resource/Kelly_Bryant", "http://dbpedia.org/resource/Kelly_Holcomb", "http://dbpedia.org/resource/Kelly_Stouffer", "http://dbpedia.org/resource/Ken_Anderson_(quarterback)", "http://dbpedia.org/resource/Ken_Casanega", "http://dbpedia.org/resource/Ken_Gorgal", "http://dbpedia.org/resource/Ken_Holley", "http://dbpedia.org/resource/Ken_Lutz", "http://dbpedia.org/resource/Ken_Mastrole", "http://dbpedia.org/resource/Ken_O'Brien", "http://dbpedia.org/resource/Ken_Stabler", "http://dbpedia.org/resource/Kenji_Bahar", "http://dbpedia.org/resource/Kenny_Hill_(quarterback)", "http://dbpedia.org/resource/Kenny_Pickett", "http://dbpedia.org/resource/Kent_Graham", "http://dbpedia.org/resource/Kent_Nix", "http://dbpedia.org/resource/Kerry_Collins", "http://dbpedia.org/resource/Kevin_Craft", "http://dbpedia.org/resource/Kevin_Davidson", "http://dbpedia.org/resource/Kevin_Eakin", "http://dbpedia.org/resource/Kevin_Feterik", "http://dbpedia.org/resource/Kevin_Hogan", "http://dbpedia.org/resource/Kevin_Ingram_(quarterback)", "http://dbpedia.org/resource/Kevin_Kolb", "http://dbpedia.org/resource/Kevin_Mason", "http://dbpedia.org/resource/Kevin_McCabe_(American_football)", "http://dbpedia.org/resource/Kevin_McDougal", "http://dbpedia.org/resource/Kevin_Murray_(American_football)", "http://dbpedia.org/resource/Kevin_Riley", "http://dbpedia.org/resource/Kevin_Sweeney_(American_football)", "http://dbpedia.org/resource/Kevin_Thompson_(American_football)", "http://dbpedia.org/resource/Khalil_Tate", "http://dbpedia.org/resource/Kiehl_Frazier", "http://dbpedia.org/resource/Kim_McQuilken", "http://dbpedia.org/resource/Mason_Espinosa", "http://dbpedia.org/resource/Mason_Fine", "http://dbpedia.org/resource/Mason_Rudolph_(American_football)", "http://dbpedia.org/resource/Matt_Baker_(American_football)", "http://dbpedia.org/resource/Matt_Barkley", "http://dbpedia.org/resource/Matt_Bassuener", "http://dbpedia.org/resource/Matt_Blanchard", "http://dbpedia.org/resource/Matt_Blundin", "http://dbpedia.org/resource/Matt_Cassel", "http://dbpedia.org/resource/Matt_Cavanaugh", "http://dbpedia.org/resource/Matt_Corral", "http://dbpedia.org/resource/Matt_D'Orazio", "http://dbpedia.org/resource/Matt_DeGennaro", "http://dbpedia.org/resource/Matt_Dunigan", "http://dbpedia.org/resource/Matt_Flynn", "http://dbpedia.org/resource/Matt_Grothe", "http://dbpedia.org/resource/Matt_Gutierrez", "http://dbpedia.org/resource/Matt_Hasselbeck", "http://dbpedia.org/resource/Matt_Kofler", "http://dbpedia.org/resource/Matt_Kohn", "http://dbpedia.org/resource/Matt_Leinart", "http://dbpedia.org/resource/Matt_LoVecchio", "http://dbpedia.org/resource/Matt_Lytle", "http://dbpedia.org/resource/Matt_Mauck", "http://dbpedia.org/resource/Matt_McGloin", "http://dbpedia.org/resource/Matt_Moore_(American_football)", "http://dbpedia.org/resource/Matt_Nichols", "http://dbpedia.org/resource/Matt_Robinson_(American_football)", "http://dbpedia.org/resource/Matt_Ryan_(American_football)", "http://dbpedia.org/resource/Matt_Schaub", "http://dbpedia.org/resource/Matt_Scott_(American_football)", "http://dbpedia.org/resource/Matt_Simms_(American_football)", "http://dbpedia.org/resource/Matt_Stevens_(quarterback)", "http://dbpedia.org/resource/Matt_Vogler", "http://dbpedia.org/resource/Matthew_Sauk", "http://dbpedia.org/resource/Matthew_Stafford", "http://dbpedia.org/resource/Maty_Mauk", "http://dbpedia.org/resource/Maurie_Daigneau", "http://dbpedia.org/resource/Max_Browne", "http://dbpedia.org/resource/Max_Choboian", "http://dbpedia.org/resource/Max_Hall", "http://dbpedia.org/resource/Max_Knake", "http://dbpedia.org/resource/Max_Shortell", "http://dbpedia.org/resource/Max_Wittek", "http://dbpedia.org/resource/McLeod_Bethel-Thompson", "http://dbpedia.org/resource/Menz_Lindsey", "http://dbpedia.org/resource/Merl_Condit", "http://dbpedia.org/resource/Rakeem_Cato", "http://dbpedia.org/resource/Ralph_Guglielmi", "http://dbpedia.org/resource/Ralph_Marston", "http://dbpedia.org/resource/Randal_Bond", "http://dbpedia.org/resource/Randall_Cunningham", "http://dbpedia.org/resource/Randy_Duncan", "http://dbpedia.org/resource/Randy_Fasani", "http://dbpedia.org/resource/Randy_Hippeard", "http://dbpedia.org/resource/Randy_Johnson_(quarterback)", "http://dbpedia.org/resource/Randy_Mattingly", "http://dbpedia.org/resource/Randy_McCown", "http://dbpedia.org/resource/Randy_Wright", "http://dbpedia.org/resource/Ray_Brown_(American_football,_born_1936)", "http://dbpedia.org/resource/Ray_Buivid", "http://dbpedia.org/resource/Ray_Isaac_(American_football)", "http://dbpedia.org/resource/Ray_Lucas", "http://dbpedia.org/resource/Ray_Mallouf", "http://dbpedia.org/resource/Ray_Novotny", "http://dbpedia.org/resource/Raymond_Philyaw", "http://dbpedia.org/resource/Red_Quigley", "http://dbpedia.org/resource/Reggie_Ball", "http://dbpedia.org/resource/Reggie_Collier", "http://dbpedia.org/resource/Reggie_Slack", "http://dbpedia.org/resource/Reid_Sinnett", "http://dbpedia.org/resource/Rex_Grossman", "http://dbpedia.org/resource/Rex_Kern", "http://dbpedia.org/resource/Rhett_Bomar", "http://dbpedia.org/resource/A._J._Feeley", "http://dbpedia.org/resource/A._J._McCarron", "http://dbpedia.org/resource/A._J._Suggs", "http://dbpedia.org/resource/Noah_Shepard", "http://dbpedia.org/resource/Norb_Sacksteder", "http://dbpedia.org/resource/Norm_Cox_(American_football)", "http://dbpedia.org/resource/Norm_Snead", "http://dbpedia.org/resource/Norm_Van_Brocklin", "http://dbpedia.org/resource/Norris_Weese", "http://dbpedia.org/resource/Richard_Walton_(American_football)", "http://dbpedia.org/resource/Stan_Weber", "http://dbpedia.org/resource/Mike_Jorgensen_(American_football)", "http://dbpedia.org/resource/Clayton_Thorson", "http://dbpedia.org/resource/Clemente_Gordon", "http://dbpedia.org/resource/Cliff_Brown_(American_football)", "http://dbpedia.org/resource/Cliff_Lewis_(quarterback)", "http://dbpedia.org/resource/Cliff_Olander", "http://dbpedia.org/resource/Cliff_Stoudt", "http://dbpedia.org/resource/Clint_Longley", "http://dbpedia.org/resource/Clint_Stoerner", "http://dbpedia.org/resource/Clyde_Crabtree", "http://dbpedia.org/resource/Clyde_LeForce", "http://dbpedia.org/resource/Cody_Carlson", "http://dbpedia.org/resource/Cody_Kessler", "http://dbpedia.org/resource/Cody_Ledbetter", "http://dbpedia.org/resource/Cody_Pickett", "http://dbpedia.org/resource/Colby_Cameron", "http://dbpedia.org/resource/Cole_Kelley", "http://dbpedia.org/resource/Coley_McDonough", "http://dbpedia.org/resource/Colin_Kaepernick", "http://dbpedia.org/resource/Collin_Drafts", "http://dbpedia.org/resource/Colt_Brennan", "http://dbpedia.org/resource/Colt_McCoy", "http://dbpedia.org/resource/Conner_Sullivan", "http://dbpedia.org/resource/Connor_Cook", "http://dbpedia.org/resource/Connor_Halliday", "http://dbpedia.org/resource/Connor_Jessop", "http://dbpedia.org/resource/Cooper_Rush", "http://dbpedia.org/resource/John_Kaleo", "http://dbpedia.org/resource/John_Karrs", "http://dbpedia.org/resource/John_Kimbrough", "http://dbpedia.org/resource/John_Navarre", "http://dbpedia.org/resource/John_O'Korn", "http://dbpedia.org/resource/John_Parker_Wilson", "http://dbpedia.org/resource/John_Paye", "http://dbpedia.org/resource/John_Rauch", "http://dbpedia.org/resource/John_Rayborn", "http://dbpedia.org/resource/John_Reaves", "http://dbpedia.org/resource/John_Roach_(American_football)", "http://dbpedia.org/resource/John_Sciarra", "http://dbpedia.org/resource/John_Skelton_(American_football)", "http://dbpedia.org/resource/John_Stofa", "http://dbpedia.org/resource/John_Walsh_(American_football)", "http://dbpedia.org/resource/John_Witkowski", "http://dbpedia.org/resource/John_Wolford", "http://dbpedia.org/resource/John_Yurchey", "http://dbpedia.org/resource/Johnny_Clement", "http://dbpedia.org/resource/Johnny_Gildea", "http://dbpedia.org/resource/Johnny_Green_(gridiron_football)", "http://dbpedia.org/resource/Johnny_Long_(American_football)", "http://dbpedia.org/resource/Johnny_Lujack", "http://dbpedia.org/resource/Johnny_Manziel", "http://dbpedia.org/resource/Johnny_Unitas", "http://dbpedia.org/resource/Jon_Beutjer", "http://dbpedia.org/resource/Jon_Brittenum", "http://dbpedia.org/resource/Jon_Kitna", "http://dbpedia.org/resource/Jonathan_Bane", "http://dbpedia.org/resource/Jonathan_Quinn", "http://dbpedia.org/resource/Jordan_Jefferson", "http://dbpedia.org/resource/Jordan_Love", "http://dbpedia.org/resource/Jordan_Rodgers", "http://dbpedia.org/resource/Jordan_Ta'amu", "http://dbpedia.org/resource/Jose_Davis", "http://dbpedia.org/resource/Josh_Allen_(quarterback)", "http://dbpedia.org/resource/Josh_Betts", "http://dbpedia.org/resource/Josh_Freeman", "http://dbpedia.org/resource/Josh_Harris_(quarterback)", "http://dbpedia.org/resource/Josh_Johnson_(quarterback)", "http://dbpedia.org/resource/Josh_Love", "http://dbpedia.org/resource/Josh_McCown", "http://dbpedia.org/resource/Josh_Portis", "http://dbpedia.org/resource/Josh_Rosen", "http://dbpedia.org/resource/Josh_Woodrum", "http://dbpedia.org/resource/Joshua_Dobbs", "http://dbpedia.org/resource/Juan_Joseph", "http://dbpedia.org/resource/Juice_Williams", "http://dbpedia.org/resource/Scooter_Molander", "http://dbpedia.org/resource/Scott_Brunner", "http://dbpedia.org/resource/Scott_Campbell_(American_football)", "http://dbpedia.org/resource/Scott_Covington", "http://dbpedia.org/resource/Scott_Dreisbach", "http://dbpedia.org/resource/Scott_Hunter_(American_football)", "http://dbpedia.org/resource/Scott_McBrien", "http://dbpedia.org/resource/Scott_McMullen", "http://dbpedia.org/resource/Scott_Mitchell_(quarterback)", "http://dbpedia.org/resource/Scott_Mutryn", "http://dbpedia.org/resource/Scott_Rislov", "http://dbpedia.org/resource/Scott_Secules", "http://dbpedia.org/resource/Scott_Semptimphelter", "http://dbpedia.org/resource/Scott_Stankavage", "http://dbpedia.org/resource/Scott_Tinsley", "http://dbpedia.org/resource/Scott_Wood_(American_football)", "http://dbpedia.org/resource/Scott_Woolf", "http://dbpedia.org/resource/Scott_Zolak", "http://dbpedia.org/resource/Scotty_Glacken", "http://dbpedia.org/resource/Sean_Canfield", "http://dbpedia.org/resource/Sean_Glennon", "http://dbpedia.org/resource/Sean_Mannion_(American_football)", "http://dbpedia.org/resource/Sean_McGuire_(Canadian_football)", "http://dbpedia.org/resource/Sean_Payton", "http://dbpedia.org/resource/Sean_Renfree", "http://dbpedia.org/resource/Sean_Salisbury", "http://dbpedia.org/resource/Sefo_Liufau", "http://dbpedia.org/resource/Nick_Nardacci", "http://dbpedia.org/resource/Reino_Nori", "http://dbpedia.org/resource/B._J._Coleman", "http://dbpedia.org/resource/B._J._Hall", "http://dbpedia.org/resource/B._J._Symons", "http://dbpedia.org/resource/Babe_Laufenberg", "http://dbpedia.org/resource/Babe_Parilli", "http://dbpedia.org/resource/Bailey_Zappe", "http://dbpedia.org/resource/Baker_Mayfield", "http://dbpedia.org/resource/Barney_Lepper", "http://dbpedia.org/resource/Bart_Hendricks", "http://dbpedia.org/resource/Bart_Starr", "http://dbpedia.org/resource/Ingle_Martin", "http://dbpedia.org/resource/Irv_Comp", "http://dbpedia.org/resource/Isaac_Harker", "http://dbpedia.org/resource/J'Mar_Smith", "http://dbpedia.org/resource/J.R._Artozqui", "http://dbpedia.org/resource/J._J._Jones", "http://dbpedia.org/resource/J._T._O'Sullivan", "http://dbpedia.org/resource/J_Torchio", "http://dbpedia.org/resource/JaMarcus_Russell", "http://dbpedia.org/resource/Jabari_Arthur", "http://dbpedia.org/resource/Jack_Coan", "http://dbpedia.org/resource/Jack_Concannon", "http://dbpedia.org/resource/Jack_Del_Bello", "http://dbpedia.org/resource/Mitch_Leidner", "http://dbpedia.org/resource/Mitch_Mustain", "http://dbpedia.org/resource/Mitchell_Trubisky", "http://dbpedia.org/resource/Moses_Moreno", "http://dbpedia.org/resource/Myrl_Goodwin", "http://dbpedia.org/resource/Nate_Davis_(quarterback)", "http://dbpedia.org/resource/Nate_Hybl", "http://dbpedia.org/resource/Nate_Longshore", "http://dbpedia.org/resource/Nate_Montana", "http://dbpedia.org/resource/Nate_Sudfeld", "http://dbpedia.org/resource/Nathan_Enderle", "http://dbpedia.org/resource/Nathan_Peterman", "http://dbpedia.org/resource/Nathan_Rourke", "http://dbpedia.org/resource/Nathan_Stanley", "http://dbpedia.org/resource/Curtis_Pulley", "http://dbpedia.org/resource/Tony_Adams_(gridiron_football)", "http://dbpedia.org/resource/Tony_Banks_(American_football)", "http://dbpedia.org/resource/Tony_Burris_(American_football)", "http://dbpedia.org/resource/Tony_Eason", "http://dbpedia.org/resource/Tony_Graziani", "http://dbpedia.org/resource/Tony_Holm", "http://dbpedia.org/resource/Tony_Lowery_(American_football)", "http://dbpedia.org/resource/Tony_Pike", "http://dbpedia.org/resource/Tony_Robinson_(American_football)", "http://dbpedia.org/resource/Tony_Romo", "http://dbpedia.org/resource/Tony_Sacca", "http://dbpedia.org/resource/Tony_Sarausky", "http://dbpedia.org/resource/Trace_McSorley", "http://dbpedia.org/resource/Tracy_Ham", "http://dbpedia.org/resource/Travis_Brody", "http://dbpedia.org/resource/Travis_Brown_(quarterback)", "http://dbpedia.org/resource/Travis_Cole", "http://dbpedia.org/resource/Tre_Roberson", "http://dbpedia.org/resource/Trent_Dilfer", "http://dbpedia.org/resource/Trent_Edwards", "http://dbpedia.org/resource/Trent_Green", "http://dbpedia.org/resource/Trevone_Boykin", "http://dbpedia.org/resource/Trevor_Harris", "http://dbpedia.org/resource/Trevor_Knight", "http://dbpedia.org/resource/Trevor_Lawrence", "http://dbpedia.org/resource/Trevor_Siemian", "http://dbpedia.org/resource/Trevor_Vittatoe", "http://dbpedia.org/resource/Trey_Lance", "http://dbpedia.org/resource/Troy_Aikman", "http://dbpedia.org/resource/Troy_Kopp", "http://dbpedia.org/resource/Troy_Smith", "http://dbpedia.org/resource/Tua_Tagovailoa", "http://dbpedia.org/resource/Turk_Schonert", "http://dbpedia.org/resource/Two-Bits_Homan", "http://dbpedia.org/resource/Ty_Detmer", "http://dbpedia.org/resource/Tyler_Bray", "http://dbpedia.org/resource/Tyler_Hansen", "http://dbpedia.org/resource/Tyler_Huntley", "http://dbpedia.org/resource/Tyler_Murphy", "http://dbpedia.org/resource/Tyler_Palko", "http://dbpedia.org/resource/Tyler_Russell", "http://dbpedia.org/resource/Tyler_Sheehan", "http://dbpedia.org/resource/Tyler_Thigpen", "http://dbpedia.org/resource/Tyler_Wilson_(American_football)", "http://dbpedia.org/resource/Tyrod_Taylor", "http://dbpedia.org/resource/Aaron_Brooks_(American_football)", "http://dbpedia.org/resource/Aaron_Corp", "http://dbpedia.org/resource/Aaron_Garcia_(American_football)", "http://dbpedia.org/resource/Aaron_Murray", "http://dbpedia.org/resource/Aaron_Rodgers", "http://dbpedia.org/resource/Aaron_Sparrow", "http://dbpedia.org/resource/Aaron_Wilmer", "http://dbpedia.org/resource/Adam_Froman", "http://dbpedia.org/resource/Adam_Kennedy_(American_football)", "http://dbpedia.org/resource/Adam_Tafralis", "http://dbpedia.org/resource/Adam_Weber", "http://dbpedia.org/resource/Adolph_Kliebhan", "http://dbpedia.org/resource/Adrian_Breen_(quarterback)", "http://dbpedia.org/resource/Adrian_Burk", "http://dbpedia.org/resource/Adrian_McPherson", "http://dbpedia.org/resource/Buddy_Humphrey", "http://dbpedia.org/resource/Butch_Songin", "http://dbpedia.org/resource/C._J._Beathard", "http://dbpedia.org/resource/Cade_McNown", "http://dbpedia.org/resource/Caleb_Evans_(quarterback)", "http://dbpedia.org/resource/Caleb_Hanie", "http://dbpedia.org/resource/Caleb_TerBush", "http://dbpedia.org/resource/Cam_Newton", "http://dbpedia.org/resource/Chad_Barnhardt", "http://dbpedia.org/resource/Chad_Davis_(American_football)", "http://dbpedia.org/resource/Chad_DeGrenier", "http://dbpedia.org/resource/Chad_Henne", "http://dbpedia.org/resource/Chad_Hutchinson", "http://dbpedia.org/resource/Chad_Kanoff", "http://dbpedia.org/resource/Chad_Kelly", "http://dbpedia.org/resource/Chad_May", "http://dbpedia.org/resource/Chad_Pennington", "http://dbpedia.org/resource/Chad_Voytik", "http://dbpedia.org/resource/Chandler_Harnish", "http://dbpedia.org/resource/Charles_Puleri", "http://dbpedia.org/resource/Charles_Thompson_(American_football)", "http://dbpedia.org/resource/Charley_Johnson", "http://dbpedia.org/resource/Charley_Sarratt", "http://dbpedia.org/resource/Charley_Trippi", "http://dbpedia.org/resource/Charlie_Armstrong_(American_football)", "http://dbpedia.org/resource/Charlie_Batch", "http://dbpedia.org/resource/Charlie_Conerly", "http://dbpedia.org/resource/Charlie_Frye", "http://dbpedia.org/resource/Charlie_Green_(American_football)", "http://dbpedia.org/resource/Charlie_Milstead", "http://dbpedia.org/resource/Charlie_O'Rourke", "http://dbpedia.org/resource/Charlie_Trotman_(American_football)", "http://dbpedia.org/resource/Charlie_Whitehurst", "http://dbpedia.org/resource/Chase_Cartwright", "http://dbpedia.org/resource/Chase_Clement", "http://dbpedia.org/resource/Chase_Daniel", "http://dbpedia.org/resource/Chase_Garbers", "http://dbpedia.org/resource/Chase_Litton", "http://dbpedia.org/resource/Chip_Ferguson", "http://dbpedia.org/resource/Chon_Gallegos", "http://dbpedia.org/resource/Chris_Amrhein", "http://dbpedia.org/resource/Chris_Bonner", "http://dbpedia.org/resource/Chris_Cagle_(American_football)", "http://dbpedia.org/resource/Chris_Chandler", "http://dbpedia.org/resource/Chris_Crane", "http://dbpedia.org/resource/Chris_Dieker", "http://dbpedia.org/resource/Chris_Dixon_(American_football)", "http://dbpedia.org/resource/Chris_Greisen", "http://dbpedia.org/resource/Chris_Hakel", "http://dbpedia.org/resource/Chris_Hixson", "http://dbpedia.org/resource/Chris_Lewis_(American_football)", "http://dbpedia.org/resource/Chris_Miller_(quarterback)", "http://dbpedia.org/resource/Chris_Oladokun", "http://dbpedia.org/resource/Chris_Parker_(quarterback)", "http://dbpedia.org/resource/Chris_Pizzotti", "http://dbpedia.org/resource/Chris_Redman", "http://dbpedia.org/resource/Chris_Sanders_(quarterback)", "http://dbpedia.org/resource/Chris_Simms", "http://dbpedia.org/resource/Chris_Streveler", "http://dbpedia.org/resource/Chris_Turner_(American_football)", "http://dbpedia.org/resource/Chris_Vargas", "http://dbpedia.org/resource/Chris_Wallace_(American_football)", "http://dbpedia.org/resource/Christian_Hackenberg", "http://dbpedia.org/resource/Christian_Ponder", "http://dbpedia.org/resource/Chuck_Clements", "http://dbpedia.org/resource/Chuck_DeShane", "http://dbpedia.org/resource/Chuck_Fusina", "http://dbpedia.org/resource/Chuck_Hartlieb", "http://dbpedia.org/resource/Chuck_Hixson", "http://dbpedia.org/resource/Chuck_Long", "http://dbpedia.org/resource/Steve_DeBerg", "http://dbpedia.org/resource/Steve_Dils", "http://dbpedia.org/resource/Steve_Fuller_(American_football)", "http://dbpedia.org/resource/Steve_Goepel", "http://dbpedia.org/resource/Steve_Grogan", "http://dbpedia.org/resource/Steve_Mariucci", "http://dbpedia.org/resource/Steve_Matthews_(American_football)", "http://dbpedia.org/resource/Steve_McNair", "http://dbpedia.org/resource/Steve_Myer", "http://dbpedia.org/resource/Steve_Nemeth_(gridiron_football)", "http://dbpedia.org/resource/Steve_Pelluer", "http://dbpedia.org/resource/Steve_Ramsey_(American_football)", "http://dbpedia.org/resource/Steve_Smith_(quarterback)", "http://dbpedia.org/resource/Steve_Spurrier", "http://dbpedia.org/resource/Steve_Stenstrom", "http://dbpedia.org/resource/Steve_Tensi", "http://dbpedia.org/resource/Steve_Young", "http://dbpedia.org/resource/Steven_Gachette", "http://dbpedia.org/resource/Steven_Jyles", "http://dbpedia.org/resource/Steven_Montez", "http://dbpedia.org/resource/Steven_Sheffield", "http://dbpedia.org/resource/Stewart_Patridge", "http://dbpedia.org/resource/Stoney_Case", "http://dbpedia.org/resource/Stu_Clancy", "http://dbpedia.org/resource/Stuart_Mitchell_(American_football)", "http://dbpedia.org/resource/A._S._Valentine", "http://dbpedia.org/resource/Cardale_Jones", "http://dbpedia.org/resource/Carl_Summerell", "http://dbpedia.org/resource/Carlos_Garay", "http://dbpedia.org/resource/Carson_Coffman", "http://dbpedia.org/resource/Carson_Palmer", "http://dbpedia.org/resource/Carson_Strong", "http://dbpedia.org/resource/Carson_Wentz", "http://dbpedia.org/resource/Cary_Conklin", "http://dbpedia.org/resource/Case_Cookus", "http://dbpedia.org/resource/Case_Keenum", "http://dbpedia.org/resource/Casey_Bramlet", "http://dbpedia.org/resource/Casey_Clausen", "http://dbpedia.org/resource/Casey_Dick", "http://dbpedia.org/resource/Casey_Hansen", "http://dbpedia.org/resource/Casey_Pachall", "http://dbpedia.org/resource/Homer_Davidson", "http://dbpedia.org/resource/Homer_Jordan", "http://dbpedia.org/resource/Howard_Maley", "http://dbpedia.org/resource/Hugh_Millen", "http://dbpedia.org/resource/Lafayette_Russell", "http://dbpedia.org/resource/Lamar_Jackson", "http://dbpedia.org/resource/Lamar_McHan", "http://dbpedia.org/resource/Landry_Jones", "http://dbpedia.org/resource/Lang_Campbell", "http://dbpedia.org/resource/Larry_Barretta", "http://dbpedia.org/resource/Larry_Cipa", "http://dbpedia.org/resource/Larry_Lawrence_(gridiron_football)", "http://dbpedia.org/resource/Larry_Miller_(American_football)", "http://dbpedia.org/resource/Larry_Rakestraw", "http://dbpedia.org/resource/Larry_Weldon", "http://dbpedia.org/resource/LeRoy_Campbell", "http://dbpedia.org/resource/Dominic_Randolph", "http://dbpedia.org/resource/Dominique_Davis", "http://dbpedia.org/resource/Don_Allard", "http://dbpedia.org/resource/Don_Breaux", "http://dbpedia.org/resource/Don_Bunce", "http://dbpedia.org/resource/Don_Gault", "http://dbpedia.org/resource/Don_Heinrich", "http://dbpedia.org/resource/Don_Horn", "http://dbpedia.org/resource/Don_King_(defensive_back)", "http://dbpedia.org/resource/Don_Majkowski", "http://dbpedia.org/resource/Don_McPherson", "http://dbpedia.org/resource/Don_Meredith", "http://dbpedia.org/resource/Don_Milan", "http://dbpedia.org/resource/Don_Panciera", "http://dbpedia.org/resource/Don_Strock", "http://dbpedia.org/resource/Don_Trull", "http://dbpedia.org/resource/Donald_Hollas", "http://dbpedia.org/resource/Donnie_Davis", "http://dbpedia.org/resource/Donnie_Little", "http://dbpedia.org/resource/Donovan_McNabb", "http://dbpedia.org/resource/Donovan_Porterie", "http://dbpedia.org/resource/Doug_Elmore", "http://dbpedia.org/resource/Doug_Flutie", "http://dbpedia.org/resource/Doug_Gaynor", "http://dbpedia.org/resource/Doug_Hudson", "http://dbpedia.org/resource/Doug_Johnson_(American_football)", "http://dbpedia.org/resource/Doyle_Nave", "http://dbpedia.org/resource/Drew_Anderson_(American_football)", "http://dbpedia.org/resource/Drew_Bledsoe", "http://dbpedia.org/resource/Drew_Brees", "http://dbpedia.org/resource/Drew_Miller_(quarterback)", "http://dbpedia.org/resource/Drew_Olson", "http://dbpedia.org/resource/Drew_Plitt", "http://dbpedia.org/resource/Drew_Stanton", "http://dbpedia.org/resource/Drew_Weatherford", "http://dbpedia.org/resource/Dru_Brown", "http://dbpedia.org/resource/Dustin_Crum", "http://dbpedia.org/resource/Dustin_Long_(American_football)", "http://dbpedia.org/resource/Dustin_Vaughan", "http://dbpedia.org/resource/Dusty_Bonner", "http://dbpedia.org/resource/Dwayne_Haskins", "http://dbpedia.org/resource/Dwight_Sloan", "http://dbpedia.org/resource/E._J._Nemeth", "http://dbpedia.org/resource/E._J._Perry_(American_football)", "http://dbpedia.org/resource/Skylar_Thompson", "http://dbpedia.org/resource/Skyler_Howard", "http://dbpedia.org/resource/Sol_Butler", "http://dbpedia.org/resource/Solly_Sherman", "http://dbpedia.org/resource/Sonny_Gibbs", "http://dbpedia.org/resource/Sonny_Jurgensen", "http://dbpedia.org/resource/Sonny_Sixkiller", "http://dbpedia.org/resource/Sonny_Winters", "http://dbpedia.org/resource/Matt_Miller_(quarterback)", "http://dbpedia.org/resource/Corey_Bramlet", "http://dbpedia.org/resource/Corey_Colehour", "http://dbpedia.org/resource/Corey_Jenkins", "http://dbpedia.org/resource/Corey_Pullig", "http://dbpedia.org/resource/Corey_Robinson_(quarterback)", "http://dbpedia.org/resource/Cornelius_Greene", "http://dbpedia.org/resource/Corte_McGuffey", "http://dbpedia.org/resource/Cory_Paus", "http://dbpedia.org/resource/Cotton_Davidson", "http://dbpedia.org/resource/Craig_Bradshaw_(American_football)", "http://dbpedia.org/resource/Craig_Curry_(quarterback)", "http://dbpedia.org/resource/Craig_Erickson", "http://dbpedia.org/resource/Craig_Krenzel", "http://dbpedia.org/resource/Craig_Kupp", "http://dbpedia.org/resource/Craig_Morton", "http://dbpedia.org/resource/Craig_Nall", "http://dbpedia.org/resource/Craig_Ochs", "http://dbpedia.org/resource/Craig_Penrose", "http://dbpedia.org/resource/Craig_Whelihan", "http://dbpedia.org/resource/Cullen_Finnerty", "http://dbpedia.org/resource/Cullen_Harper", "http://dbpedia.org/resource/Curtis_Painter", "http://dbpedia.org/resource/D'Eriq_King", "http://dbpedia.org/resource/D._Bryant", "http://dbpedia.org/resource/D._J._Shockley", "http://dbpedia.org/resource/Dak_Prescott", "http://dbpedia.org/resource/Dakota_Prukop", "http://dbpedia.org/resource/Dale_Samuels", "http://dbpedia.org/resource/Grady_Benton", "http://dbpedia.org/resource/Grant_Gregory", "http://dbpedia.org/resource/Grant_Hedrick", "http://dbpedia.org/resource/Grant_Noel", "http://dbpedia.org/resource/Grant_Russell", "http://dbpedia.org/resource/Greg_Barton_(gridiron_football)", "http://dbpedia.org/resource/Greg_Cook", "http://dbpedia.org/resource/Greg_Freeman_(American_football)", "http://dbpedia.org/resource/Greg_Frey", "http://dbpedia.org/resource/Greg_Knafelc", "http://dbpedia.org/resource/Greg_Knapp", "http://dbpedia.org/resource/Greg_Landry", "http://dbpedia.org/resource/Greg_McElroy", "http://dbpedia.org/resource/Greg_McGhee", "http://dbpedia.org/resource/Greg_Vavra", "http://dbpedia.org/resource/Greg_Zolman", "http://dbpedia.org/resource/Greyson_Lambert", "http://dbpedia.org/resource/Griffin_Neal", "http://dbpedia.org/resource/Guido_Merkens", "http://dbpedia.org/resource/Gunner_Kiel", "http://dbpedia.org/resource/Gus_Frerotte", "http://dbpedia.org/resource/Guy_Benjamin", "http://dbpedia.org/resource/Henry_Schichtle", "http://dbpedia.org/resource/Henry_Toczylowski", "http://dbpedia.org/resource/Herb_Singleton", "http://dbpedia.org/resource/Mac_Jones", "http://dbpedia.org/resource/Major_Harris_(American_football)", "http://dbpedia.org/resource/Malik_Rosier", "http://dbpedia.org/resource/Malik_Willis", "http://dbpedia.org/resource/Malik_Zaire", "http://dbpedia.org/resource/Manch_Wheeler", "http://dbpedia.org/resource/Manny_Rapp", "http://dbpedia.org/resource/Manny_Wilkins", "http://dbpedia.org/resource/Carl_Cronin", "http://dbpedia.org/resource/Rhoten_Shetley", "http://dbpedia.org/resource/Rich_Badar", "http://dbpedia.org/resource/Rich_Campbell_(American_football)", "http://dbpedia.org/resource/Rich_Gannon", "http://dbpedia.org/resource/Rich_Ingold", "http://dbpedia.org/resource/Richard_Bartel", "http://dbpedia.org/resource/Richard_Todd_(American_football)", "http://dbpedia.org/resource/Richie_Lucas", "http://dbpedia.org/resource/Richie_Williams_(Canadian_football)", "http://dbpedia.org/resource/Rick_Arrington", "http://dbpedia.org/resource/Rick_Cassata", "http://dbpedia.org/resource/Rick_Clausen", "http://dbpedia.org/resource/Rick_McIvor", "http://dbpedia.org/resource/Rick_Mirer", "http://dbpedia.org/resource/Rick_Norton", "http://dbpedia.org/resource/Rick_Slager", "http://dbpedia.org/resource/Rick_Strom_(American_football)", "http://dbpedia.org/resource/Rick_Trocano", "http://dbpedia.org/resource/Rickey_Foggie", "http://dbpedia.org/resource/Ricky_Ray", "http://dbpedia.org/resource/Ricky_Stanzi", "http://dbpedia.org/resource/Ricky_Turner", "http://dbpedia.org/resource/Ricky_Wesson", "http://dbpedia.org/resource/Riley_Ferguson", "http://dbpedia.org/resource/Riley_Skinner", "http://dbpedia.org/resource/Rob_Bolden", "http://dbpedia.org/resource/Rob_Henry_(American_football)", "http://dbpedia.org/resource/Rob_Hertel", "http://dbpedia.org/resource/Rob_Johnson_(American_football)", "http://dbpedia.org/resource/Robbie_Bosco", "http://dbpedia.org/resource/Robbie_Nallenweg", "http://dbpedia.org/resource/Robert_Griffin_III", "http://dbpedia.org/resource/Robert_Hall_(gridiron_football)", "http://dbpedia.org/resource/Robert_Kent_(quarterback)", "http://dbpedia.org/resource/Robert_Marve", "http://dbpedia.org/resource/Rocky_Hinds", "http://dbpedia.org/resource/Rod_Robinson", "http://dbpedia.org/resource/Rod_Rutherford", "http://dbpedia.org/resource/Rod_Trafford", "http://dbpedia.org/resource/Roddy_Lamb", "http://dbpedia.org/resource/Rodney_Landers", "http://dbpedia.org/resource/Rodney_Peete", "http://dbpedia.org/resource/Roger_Staubach", "http://dbpedia.org/resource/Rohan_Davey", "http://dbpedia.org/resource/Harry_Mattos", "http://dbpedia.org/resource/Father_Lumpkin", "http://dbpedia.org/resource/Feleipe_Franks", "http://dbpedia.org/resource/Jeff_Carlson_(American_football)", "http://dbpedia.org/resource/Jeff_Christensen", "http://dbpedia.org/resource/Jeff_Driskel", "http://dbpedia.org/resource/Jeff_Francis_(American_football)", "http://dbpedia.org/resource/Jeff_Garcia", "http://dbpedia.org/resource/Jeff_George", "http://dbpedia.org/resource/Jeff_Graham_(quarterback)", "http://dbpedia.org/resource/Jeff_Hostetler", "http://dbpedia.org/resource/Jeff_Kelly_(quarterback)", "http://dbpedia.org/resource/Jeff_Kemp", "http://dbpedia.org/resource/Jeff_Knapple", "http://dbpedia.org/resource/Jeff_Komlo", "http://dbpedia.org/resource/Jeff_Lewis_(American_football)", "http://dbpedia.org/resource/Jeff_Loots", "http://dbpedia.org/resource/Jeff_Mathews", "http://dbpedia.org/resource/Jeff_Otis", "http://dbpedia.org/resource/Jeff_Rowe", "http://dbpedia.org/resource/Jeff_Smoker", "http://dbpedia.org/resource/Jeff_Tuel", "http://dbpedia.org/resource/Jeff_Van_Raaphorst", "http://dbpedia.org/resource/Jeremiah_Briscoe", "http://dbpedia.org/resource/Jeremiah_Masoli", "http://dbpedia.org/resource/Jeremy_Johnson_(American_football)", "http://dbpedia.org/resource/Jerod_Evans", "http://dbpedia.org/resource/Jerrod_Heard", "http://dbpedia.org/resource/Jerry_Noonan", "http://dbpedia.org/resource/Jerry_Rhome", "http://dbpedia.org/resource/Jesse_Freitas_Jr.", "http://dbpedia.org/resource/Jesse_Palmer", "http://dbpedia.org/resource/Jevan_Snead", "http://dbpedia.org/resource/Jim_Arellanes", "http://dbpedia.org/resource/Jim_Ballard", "http://dbpedia.org/resource/Jim_Bob_Taylor", "http://dbpedia.org/resource/Jim_Crocicchia", "http://dbpedia.org/resource/Jim_Del_Gaizo", "http://dbpedia.org/resource/Jim_Druckenmiller", "http://dbpedia.org/resource/Jim_Everett", "http://dbpedia.org/resource/Jim_Finks", "http://dbpedia.org/resource/Jim_Gaffney", "http://dbpedia.org/resource/Jim_German", "http://dbpedia.org/resource/Jim_Haluska", "http://dbpedia.org/resource/Jim_Hardy", "http://dbpedia.org/resource/Jim_Hart_(American_football)", "http://dbpedia.org/resource/Jim_Hudson", "http://dbpedia.org/resource/Jim_Jaquith", "http://dbpedia.org/resource/Jim_Jensen_(wide_receiver)", "http://dbpedia.org/resource/Jim_Kelly", "http://dbpedia.org/resource/Jim_LeClair_(quarterback)", "http://dbpedia.org/resource/Jim_McMahon", "http://dbpedia.org/resource/Jim_Miller_(quarterback)", "http://dbpedia.org/resource/Jim_Plunkett", "http://dbpedia.org/resource/Jim_Powers_(American_football)", "http://dbpedia.org/resource/Jim_Root_(gridiron_football)", "http://dbpedia.org/resource/Jim_Sorgi", "http://dbpedia.org/resource/Jim_Ward_(quarterback)", "http://dbpedia.org/resource/Jim_Youel", "http://dbpedia.org/resource/Jim_Zorn", "http://dbpedia.org/resource/Jimmy_Clausen", "http://dbpedia.org/resource/Jimmy_Garoppolo", "http://dbpedia.org/resource/Jimmy_Jemail", "http://dbpedia.org/resource/Jimmy_Jordan_(quarterback)", "http://dbpedia.org/resource/Jimmy_Kemp", "http://dbpedia.org/resource/Jimmy_Klingler", "http://dbpedia.org/resource/Jimmy_Raye_II", "http://dbpedia.org/resource/Jimmy_Tarrant", "http://dbpedia.org/resource/Jimmy_Terwilliger", "http://dbpedia.org/resource/Joe_Ayoob", "http://dbpedia.org/resource/Joe_Barnes", "http://dbpedia.org/resource/Joe_Bauserman", "http://dbpedia.org/resource/Joe_Burrow", "http://dbpedia.org/resource/Joe_Callahan_(American_football)", "http://dbpedia.org/resource/Joe_Clancy", "http://dbpedia.org/resource/Joe_DiVito", "http://dbpedia.org/resource/Joe_Dufek", "http://dbpedia.org/resource/Joe_Ferguson", "http://dbpedia.org/resource/Joe_Flacco", "http://dbpedia.org/resource/Joe_Francis_(American_football)", "http://dbpedia.org/resource/Joe_Gasparella", "http://dbpedia.org/resource/Joe_Germaine", "http://dbpedia.org/resource/Joe_Gilliam", "http://dbpedia.org/resource/Joe_Hamilton_(American_football)", "http://dbpedia.org/resource/Joe_Kapp", "http://dbpedia.org/resource/Joe_Licata", "http://dbpedia.org/resource/Joe_Margucci", "http://dbpedia.org/resource/Joe_Micchia", "http://dbpedia.org/resource/Joe_Montana", "http://dbpedia.org/resource/Joe_Namath", "http://dbpedia.org/resource/Joe_Pisarcik", "http://dbpedia.org/resource/Joe_Reed_(quarterback)", "http://dbpedia.org/resource/Joe_Theismann", "http://dbpedia.org/resource/Joe_Webb", "http://dbpedia.org/resource/Joel_Stave", "http://dbpedia.org/resource/Joey_Elliott", "http://dbpedia.org/resource/Joey_Harrington", "http://dbpedia.org/resource/Joey_Sternaman", "http://dbpedia.org/resource/John_Beck_(gridiron_football)", "http://dbpedia.org/resource/John_Bond_(quarterback)", "http://dbpedia.org/resource/John_Bonds", "http://dbpedia.org/resource/John_Brantley", "http://dbpedia.org/resource/John_Brodie", "http://dbpedia.org/resource/John_Cardwell_(American_football)", "http://dbpedia.org/resource/John_David_Booty", "http://dbpedia.org/resource/John_Dutton_(quarterback)", "http://dbpedia.org/resource/John_Fitzgerald_(quarterback)", "http://dbpedia.org/resource/John_Fourcade", "http://dbpedia.org/resource/John_Friesz", "http://dbpedia.org/resource/John_Hadl", "http://dbpedia.org/resource/John_Huarte", "http://dbpedia.org/resource/Lee_Chapple", "http://dbpedia.org/resource/Lee_Grosscup", "http://dbpedia.org/resource/Lee_Saltz", "http://dbpedia.org/resource/Lee_Williamson_(American_football)", "http://dbpedia.org/resource/Leland_Shaffer", "http://dbpedia.org/resource/Len_Barnum", "http://dbpedia.org/resource/Len_Dawson", "http://dbpedia.org/resource/Len_Williams_(Canadian_football)", "http://dbpedia.org/resource/Leo_Hart", "http://dbpedia.org/resource/Leo_Jensvold", "http://dbpedia.org/resource/Leon_Murray", "http://dbpedia.org/resource/Leon_Reed", "http://dbpedia.org/resource/Leonard_Bahan", "http://dbpedia.org/resource/Les_Horvath", "http://dbpedia.org/resource/Lester_Ricard", "http://dbpedia.org/resource/Levi_Lewis_(American_football)", "http://dbpedia.org/resource/Lew_Scott", "http://dbpedia.org/resource/Neal_Jeffrey", "http://dbpedia.org/resource/Neil_Lomax", "http://dbpedia.org/resource/Neil_O'Donnell", "http://dbpedia.org/resource/Nick_Browder", "http://dbpedia.org/resource/Nick_Davila", "http://dbpedia.org/resource/Nick_Fitzgerald_(American_football)", "http://dbpedia.org/resource/Nick_Foles", "http://dbpedia.org/resource/Nick_Montana", "http://dbpedia.org/resource/Nick_Mullens", "http://dbpedia.org/resource/Nick_Papac_(American_football)", "http://dbpedia.org/resource/Nick_Rolovich", "http://dbpedia.org/resource/Nick_Sacrinty", "http://dbpedia.org/resource/Nick_Sebek", "http://dbpedia.org/resource/Nick_Starkel", "http://dbpedia.org/resource/Nick_Stephens", "http://dbpedia.org/resource/Nick_Stevens_(American_football)", "http://dbpedia.org/resource/Paxton_Lynch", "http://dbpedia.org/resource/Perry_Klein", "http://dbpedia.org/resource/Pete_Beathard", "http://dbpedia.org/resource/Pete_Gonzalez", "http://dbpedia.org/resource/Pete_Layden", "http://dbpedia.org/resource/Pete_Mikolajewski", "http://dbpedia.org/resource/Peter_Tom_Willis", "http://dbpedia.org/resource/Peyton_Manning", "http://dbpedia.org/resource/Peyton_Ramsey", "http://dbpedia.org/resource/Phil_Simms", "http://dbpedia.org/resource/Philip_Nelson_(American_football)", "http://dbpedia.org/resource/Philip_Rivers", "http://dbpedia.org/resource/Pug_Rentner", "http://dbpedia.org/resource/Quincy_Carter", "http://dbpedia.org/resource/Quinn_Gray", "http://dbpedia.org/resource/Quinton_Flowers", "http://dbpedia.org/resource/R._J._Archer", "http://dbpedia.org/resource/Thomas_Lott", "http://dbpedia.org/resource/Tim_Boyle_(American_football)", "http://dbpedia.org/resource/Tim_Carey_(American_football)", "http://dbpedia.org/resource/Tim_Couch", "http://dbpedia.org/resource/Tim_Groves", "http://dbpedia.org/resource/Tim_Hasselbeck", "http://dbpedia.org/resource/Tim_Hicks_(American_football)", "http://dbpedia.org/resource/Tim_Hiller", "http://dbpedia.org/resource/Tim_Levcik", "http://dbpedia.org/resource/Tim_Riordan", "http://dbpedia.org/resource/Tim_Tebow", "http://dbpedia.org/resource/Tim_Van_Galder", "http://dbpedia.org/resource/Tobin_Rote", "http://dbpedia.org/resource/Toby_Korrodi", "http://dbpedia.org/resource/Todd_Bankhead", "http://dbpedia.org/resource/Todd_Blackledge", "http://dbpedia.org/resource/Todd_Boeckman", "http://dbpedia.org/resource/Todd_Bouman", "http://dbpedia.org/resource/Todd_Collins_(quarterback)", "http://dbpedia.org/resource/Todd_Ellis", "http://dbpedia.org/resource/Todd_Hammel", "http://dbpedia.org/resource/Todd_Hons", "http://dbpedia.org/resource/Todd_Husak", "http://dbpedia.org/resource/Todd_Marinovich", "http://dbpedia.org/resource/Todd_Philcox", "http://dbpedia.org/resource/Todd_Santos", "http://dbpedia.org/resource/Toimi_Jarvi", "http://dbpedia.org/resource/Tom_Brady", "http://dbpedia.org/resource/Tom_Brandstater", "http://dbpedia.org/resource/Tom_Burgess_(Canadian_football)", "http://dbpedia.org/resource/Tom_Farris", "http://dbpedia.org/resource/Tom_Flacco", "http://dbpedia.org/resource/Tom_Flick", "http://dbpedia.org/resource/Tom_Flores", "http://dbpedia.org/resource/Tom_Greene_(American_football)", "http://dbpedia.org/resource/Tom_Myers_(quarterback)", "http://dbpedia.org/resource/Tom_O'Malley_(American_football)", "http://dbpedia.org/resource/Tom_Owen_(American_football)", "http://dbpedia.org/resource/Tom_Ramsey", "http://dbpedia.org/resource/Tom_Savage_(American_football)", "http://dbpedia.org/resource/Tom_Sherman_(American_football)", "http://dbpedia.org/resource/Tom_Yewcic", "http://dbpedia.org/resource/Tommie_Frazier", "http://dbpedia.org/resource/Tommy_Armstrong_Jr.", "http://dbpedia.org/resource/Tommy_Boutwell", "http://dbpedia.org/resource/Tommy_Duniven", "http://dbpedia.org/resource/Tommy_Grady", "http://dbpedia.org/resource/Tommy_Hodson", "http://dbpedia.org/resource/Tommy_Holleran", "http://dbpedia.org/resource/Tommy_Jones_(quarterback)", "http://dbpedia.org/resource/Tommy_Kramer", "http://dbpedia.org/resource/Tommy_Maddox", "http://dbpedia.org/resource/Tommy_O'Connell", "http://dbpedia.org/resource/Tommy_Stevens", "http://dbpedia.org/resource/Tommy_Thompson_(quarterback)", "http://dbpedia.org/resource/Tommy_Wade", "http://dbpedia.org/resource/Willie_Gillus", "http://dbpedia.org/resource/Willie_Thrower", "http://dbpedia.org/resource/Willie_Tuitama", "http://dbpedia.org/resource/Wilton_Speight", "http://dbpedia.org/resource/Xavier_Lee", "http://dbpedia.org/resource/Y._A._Tittle", "http://dbpedia.org/resource/Fritz_Shiverick", "http://dbpedia.org/resource/Mike_Jay", "http://dbpedia.org/resource/EJ_Manuel", "http://dbpedia.org/resource/Earl_Cramer", "http://dbpedia.org/resource/Earl_Morrall", "http://dbpedia.org/resource/Easton_Stick", "http://dbpedia.org/resource/Ed_Baker_(quarterback)", "http://dbpedia.org/resource/Ed_Blount", "http://dbpedia.org/resource/Ed_Brown_(quarterback)", "http://dbpedia.org/resource/Ed_Burns_(American_football)", "http://dbpedia.org/resource/Ed_Danowski", "http://dbpedia.org/resource/Ed_Goddard", "http://dbpedia.org/resource/Ed_Luther", "http://dbpedia.org/resource/Ed_Mioduszewski", "http://dbpedia.org/resource/Ed_Rubbert", "http://dbpedia.org/resource/Ed_Salem", "http://dbpedia.org/resource/Ed_Westfall_(American_football)", "http://dbpedia.org/resource/Edd_Hargett", "http://dbpedia.org/resource/Eddie_LeBaron", "http://dbpedia.org/resource/Eddie_Miller_(quarterback)", "http://dbpedia.org/resource/Eddie_Scharer", "http://dbpedia.org/resource/Eddie_Wilson_(American_football)", "http://dbpedia.org/resource/Eldridge_Dickey", "http://dbpedia.org/resource/Elgie_Tobin", "http://dbpedia.org/resource/Eli_Jenkins_(American_football)", "http://dbpedia.org/resource/Eli_Manning", "http://dbpedia.org/resource/Ell_Roberson", "http://dbpedia.org/resource/Elmer_Madar", "http://dbpedia.org/resource/Justice_Hansen_(American_football)", "http://dbpedia.org/resource/Justin_Allgood", "http://dbpedia.org/resource/Justin_Herbert", "http://dbpedia.org/resource/Justin_Tuggle", "http://dbpedia.org/resource/Justin_Worley", "http://dbpedia.org/resource/Justin_Zwick", "http://dbpedia.org/resource/K._J._Carta-Samuels", "http://dbpedia.org/resource/K._J._Costello", "http://dbpedia.org/resource/Kain_Colter", "http://dbpedia.org/resource/Kaleb_Eleby", "http://dbpedia.org/resource/Karl_Sweetan", "http://dbpedia.org/resource/Lloyd_Cheatham", "http://dbpedia.org/resource/Lo_Boutwell", "http://dbpedia.org/resource/Logan_Woodside", "http://dbpedia.org/resource/Loren_Snyder", "http://dbpedia.org/resource/Lorne_Sam", "http://dbpedia.org/resource/Lou_Brock_(American_football)", "http://dbpedia.org/resource/Lou_Mahrt", "http://dbpedia.org/resource/Luis_Perez_(American_football)", "http://dbpedia.org/resource/Luke_Collis", "http://dbpedia.org/resource/Luke_Drone", "http://dbpedia.org/resource/Luke_Falk", "http://dbpedia.org/resource/Luke_McCown", "http://dbpedia.org/resource/Luverne_Wise", "http://dbpedia.org/resource/Lynn_Dickey", "http://dbpedia.org/resource/Ogden_Compton", "http://dbpedia.org/resource/Omar_Clayton", "http://dbpedia.org/resource/Omar_Jacobs", "http://dbpedia.org/resource/Oteman_Sampson", "http://dbpedia.org/resource/Otto_Graham", "http://dbpedia.org/resource/Seth_Russell", "http://dbpedia.org/resource/Shag_Sheard", "http://dbpedia.org/resource/Shane_Austin", "http://dbpedia.org/resource/Shane_Boyd", "http://dbpedia.org/resource/Shane_Buechele", "http://dbpedia.org/resource/Shane_Carden", "http://dbpedia.org/resource/Shane_Matthews", "http://dbpedia.org/resource/Shane_Morris", "http://dbpedia.org/resource/Shane_Stafford", "http://dbpedia.org/resource/Shaun_Hill", "http://dbpedia.org/resource/Shawn_Halloran", "http://dbpedia.org/resource/Shawn_Moore", "http://dbpedia.org/resource/Shea_Patterson", "http://dbpedia.org/resource/Sherdrick_Bonner", "http://dbpedia.org/resource/Shorty_Elness", "http://dbpedia.org/resource/Shorty_Miller", "http://dbpedia.org/resource/Sid_Luckman", "http://dbpedia.org/resource/Corby_Jones", "http://dbpedia.org/resource/Sparky_McEwen", "http://dbpedia.org/resource/Spec_Sanders", "http://dbpedia.org/resource/Spergon_Wynn", "http://dbpedia.org/resource/Stan_Gelbaugh", "http://dbpedia.org/resource/Stan_Humphries", "http://dbpedia.org/resource/Stan_Pincura", "http://dbpedia.org/resource/Stan_White_(quarterback)", "http://dbpedia.org/resource/Stan_Yagiello", "http://dbpedia.org/resource/Stanley_Jackson_(gridiron_football)", "http://dbpedia.org/resource/Stefan_LeFors", "http://dbpedia.org/resource/Stephen_Garcia", "http://dbpedia.org/resource/Stephen_McGee", "http://dbpedia.org/resource/Stephen_Morris_(American_football)", "http://dbpedia.org/resource/Stephen_Panasuk", "http://dbpedia.org/resource/Steve_Bartkowski", "http://dbpedia.org/resource/Steve_Belles", "http://dbpedia.org/resource/Steve_Bellisari", "http://dbpedia.org/resource/Steve_Beuerlein", "http://dbpedia.org/resource/Steve_Bono", "http://dbpedia.org/resource/Steve_Bradley_(American_football)", "http://dbpedia.org/resource/Bill_Cappleman", "http://dbpedia.org/resource/Bill_Demory", "http://dbpedia.org/resource/Bill_Donckers", "http://dbpedia.org/resource/Bill_Etter", "http://dbpedia.org/resource/Bill_Garnaas", "http://dbpedia.org/resource/Bill_Gutteron", "http://dbpedia.org/resource/Bill_Hartman", "http://dbpedia.org/resource/Bill_Hutchinson_(American_football)", "http://dbpedia.org/resource/Bill_Irgens", "http://dbpedia.org/resource/Bill_Kelly_(quarterback)", "http://dbpedia.org/resource/Bill_Kenney", "http://dbpedia.org/resource/Bill_Mackrides", "http://dbpedia.org/resource/Bill_Munson", "http://dbpedia.org/resource/Bill_Nelsen", "http://dbpedia.org/resource/Bill_Sewell_(American_football)", "http://dbpedia.org/resource/Bill_Stull", "http://dbpedia.org/resource/Bill_Troup", "http://dbpedia.org/resource/Bill_Wade", "http://dbpedia.org/resource/Billy_Anderson_(quarterback)", "http://dbpedia.org/resource/Billy_Joe_Hobert", "http://dbpedia.org/resource/Billy_Joe_Tolliver", "http://dbpedia.org/resource/Billy_Lothridge", "http://dbpedia.org/resource/Billy_Patterson", "http://dbpedia.org/resource/Billy_Volek", "http://dbpedia.org/resource/Blaine_Gabbert", "http://dbpedia.org/resource/Blair_Kiel", "http://dbpedia.org/resource/Blake_Bortles", "http://dbpedia.org/resource/Blake_Sims", "http://dbpedia.org/resource/Bo_Levi_Mitchell", "http://dbpedia.org/resource/Bo_Nix", "http://dbpedia.org/resource/Bob_Avellini", "http://dbpedia.org/resource/Bob_Baker_(American_football)", "http://dbpedia.org/resource/Bob_Bees", "http://dbpedia.org/resource/Bob_Belden_(American_football)", "http://dbpedia.org/resource/Bob_Berry_(American_football)", "http://dbpedia.org/resource/Bob_Bleier", "http://dbpedia.org/resource/Bob_Brodhead", "http://dbpedia.org/resource/Bob_Celeri", "http://dbpedia.org/resource/Bob_Clatterbuck", "http://dbpedia.org/resource/Bob_Davis_(quarterback)", "http://dbpedia.org/resource/Bob_Gagliano", "http://dbpedia.org/resource/Bob_Griese", "http://dbpedia.org/resource/Bob_Hainlen", "http://dbpedia.org/resource/Bob_Holly_(American_football)", "http://dbpedia.org/resource/Bob_Laraba", "http://dbpedia.org/resource/Bob_Leahy", "http://dbpedia.org/resource/Bob_Lee_(quarterback)", "http://dbpedia.org/resource/Bob_Mitchell_(American_football)", "http://dbpedia.org/resource/Bob_Naponic", "http://dbpedia.org/resource/Bob_Perina", "http://dbpedia.org/resource/Bob_Scrabis", "http://dbpedia.org/resource/Bob_Snyder_(American_football)", "http://dbpedia.org/resource/Bob_Stockham", "http://dbpedia.org/resource/Bob_Trocolor", "http://dbpedia.org/resource/Bob_Waterfield", "http://dbpedia.org/resource/Bob_Waters", "http://dbpedia.org/resource/Bob_Williams_(quarterback)", "http://dbpedia.org/resource/Bobby_Bounds", "http://dbpedia.org/resource/Bobby_Douglass", "http://dbpedia.org/resource/Bobby_Fresques", "http://dbpedia.org/resource/Bobby_Gage", "http://dbpedia.org/resource/Bobby_Garrett", "http://dbpedia.org/resource/Bobby_Hebert", "http://dbpedia.org/resource/Bobby_Hoying", "http://dbpedia.org/resource/Bobby_Jackson_(American_football_coach)", "http://dbpedia.org/resource/Bobby_Layne", "http://dbpedia.org/resource/Bobby_Newcombe", "http://dbpedia.org/resource/Bobby_Pesavento", "http://dbpedia.org/resource/Bobby_Reid_(American_football)", "http://dbpedia.org/resource/Bobby_Scott_(American_football)", "http://dbpedia.org/resource/Bobby_Thomason", "http://dbpedia.org/resource/Hunter_Cantwell", "http://dbpedia.org/resource/Hunter_Enis", "http://dbpedia.org/resource/Hutson_Mason", "http://dbpedia.org/resource/Ian_Book", "http://dbpedia.org/resource/Ike_Martin", "http://dbpedia.org/resource/Ike_Williams_(American_football)", "http://dbpedia.org/resource/King_Hill", "http://dbpedia.org/resource/Kinsmon_Lancaster", "http://dbpedia.org/resource/Kirby_Freeman", "http://dbpedia.org/resource/Kirk_Cousins", "http://dbpedia.org/resource/Kirk_Farmer_(American_football)", "http://dbpedia.org/resource/Kolton_Browning", "http://dbpedia.org/resource/Kordell_Stewart", "http://dbpedia.org/resource/Koy_Detmer", "http://dbpedia.org/resource/Kurt_Benkert", "http://dbpedia.org/resource/Kurt_Kittner", "http://dbpedia.org/resource/Kurt_Palandech", "http://dbpedia.org/resource/Kurt_Rocco", "http://dbpedia.org/resource/Kurt_Schottenheimer", "http://dbpedia.org/resource/Kurt_Warner", "http://dbpedia.org/resource/Kyle_Allen", "http://dbpedia.org/resource/Kyle_Boller", "http://dbpedia.org/resource/Kyle_Lauletta", "http://dbpedia.org/resource/Kyle_Mackey", "http://dbpedia.org/resource/Kyle_Orton", "http://dbpedia.org/resource/Kyle_Padron", "http://dbpedia.org/resource/Kyle_Rowley", "http://dbpedia.org/resource/Kyle_Sloter", "http://dbpedia.org/resource/Kyle_Trask", "http://dbpedia.org/resource/Kyler_Murray", "http://dbpedia.org/resource/Micah_Brown", "http://dbpedia.org/resource/Michael_Bishop_(gridiron_football)", "http://dbpedia.org/resource/Michael_Mendoza", "http://dbpedia.org/resource/Michael_O'Connor_(Canadian_football)", "http://dbpedia.org/resource/Michael_Payton", "http://dbpedia.org/resource/Michael_Proctor_(gridiron_football)", "http://dbpedia.org/resource/Michael_Trigg", "http://dbpedia.org/resource/Michael_Vick", "http://dbpedia.org/resource/Mickey_Guidry", "http://dbpedia.org/resource/Mickey_Russell", "http://dbpedia.org/resource/Mickey_Slaughter", "http://dbpedia.org/resource/Mike_Affleck", "http://dbpedia.org/resource/Mike_Boryla", "http://dbpedia.org/resource/Mike_Buck_(American_football)", "http://dbpedia.org/resource/Mike_Burkhead", "http://dbpedia.org/resource/Mike_Busch_(American_football)", "http://dbpedia.org/resource/Mike_Cawley", "http://dbpedia.org/resource/Mike_Cherry_(American_football)", "http://dbpedia.org/resource/Mike_Elkins", "http://dbpedia.org/resource/Mike_Ernst", "http://dbpedia.org/resource/Mike_Glennon", "http://dbpedia.org/resource/Mike_Hermann_(American_football)", "http://dbpedia.org/resource/Mike_Hohensee", "http://dbpedia.org/resource/Mike_Hold", "http://dbpedia.org/resource/Mike_Jones_(tight_end)", "http://dbpedia.org/resource/Mike_Kafka", "http://dbpedia.org/resource/Mike_Kelley_(American_football)", "http://dbpedia.org/resource/Mike_Kerrigan", "http://dbpedia.org/resource/Mike_Kirkland_(American_football)", "http://dbpedia.org/resource/Mike_Koken", "http://dbpedia.org/resource/Mike_Kruczek", "http://dbpedia.org/resource/Mike_Livingston", "http://dbpedia.org/resource/Mike_Loyd", "http://dbpedia.org/resource/Mike_Machurek", "http://dbpedia.org/resource/Mike_Martir", "http://dbpedia.org/resource/Mike_McMahon_(American_football)", "http://dbpedia.org/resource/Mike_McMullen", "http://dbpedia.org/resource/Mike_Moroski", "http://dbpedia.org/resource/Mike_Norseth", "http://dbpedia.org/resource/Mike_Nott", "http://dbpedia.org/resource/Mike_Pagel", "http://dbpedia.org/resource/Mike_Pawlawski", "http://dbpedia.org/resource/Mike_Perez_(American_football)", "http://dbpedia.org/resource/Mike_Phipps", "http://dbpedia.org/resource/Mike_Potts_(American_football)", "http://dbpedia.org/resource/Mike_Quinn", "http://dbpedia.org/resource/Mike_Rae", "http://dbpedia.org/resource/Mike_Rhodes_(American_football)", "http://dbpedia.org/resource/Mike_Taliaferro", "http://dbpedia.org/resource/Mike_Teel", "http://dbpedia.org/resource/Mike_Tomczak", "http://dbpedia.org/resource/Mike_Wells_(quarterback)", "http://dbpedia.org/resource/Mike_White_(quarterback)", "http://dbpedia.org/resource/Milt_Plum", "http://dbpedia.org/resource/Milton_McGriggs", "http://dbpedia.org/resource/Milton_Romney", "http://dbpedia.org/resource/P._J._Walker", "http://dbpedia.org/resource/Paddy_Driscoll", "http://dbpedia.org/resource/Pard_Pearce", "http://dbpedia.org/resource/Parker_Hall_(American_football)", "http://dbpedia.org/resource/Parnell_Dickinson", "http://dbpedia.org/resource/Pat_Barnes", "http://dbpedia.org/resource/Pat_Brady_(gridiron_football)", "http://dbpedia.org/resource/Pat_Coffee", "http://dbpedia.org/resource/Pat_Devlin_(American_football)", "http://dbpedia.org/resource/Pat_Dillingham", "http://dbpedia.org/resource/Pat_Haden", "http://dbpedia.org/resource/Pat_Ryan_(American_football)", "http://dbpedia.org/resource/Pat_Sullivan_(American_football)", "http://dbpedia.org/resource/Pat_Trammell", "http://dbpedia.org/resource/Patrick_Mahomes", "http://dbpedia.org/resource/Patrick_McCain", "http://dbpedia.org/resource/Patrick_Ramsey", "http://dbpedia.org/resource/Paul_Burmeister", "http://dbpedia.org/resource/Paul_Christman", "http://dbpedia.org/resource/Paul_Collins_(quarterback)", "http://dbpedia.org/resource/Paul_Duhart", "http://dbpedia.org/resource/Paul_Failla", "http://dbpedia.org/resource/Paul_Gibson_(end)", "http://dbpedia.org/resource/Paul_Governali", "http://dbpedia.org/resource/Paul_Held", "http://dbpedia.org/resource/Paul_Hogan_(American_football)", "http://dbpedia.org/resource/Paul_Jones_(American_football)", "http://dbpedia.org/resource/Paul_Justin", "http://dbpedia.org/resource/Paul_Kitteredge", "http://dbpedia.org/resource/Paul_Kuczo", "http://dbpedia.org/resource/Paul_Larson_(American_football)", "http://dbpedia.org/resource/Paul_McDonald_(American_football)", "http://dbpedia.org/resource/Paul_Smith_(quarterback)", "http://dbpedia.org/resource/Paul_Thompson_(American_football)", "http://dbpedia.org/resource/Paul_Williams_(quarterback)", "http://dbpedia.org/resource/Chris_Isaac", "http://dbpedia.org/resource/Roman_Gabriel", "http://dbpedia.org/resource/Romaro_Miller", "http://dbpedia.org/resource/Ron_Adams_(American_football)", "http://dbpedia.org/resource/Ron_C._Smith", "http://dbpedia.org/resource/Ron_Jaworski", "http://dbpedia.org/resource/Ron_Lopez", "http://dbpedia.org/resource/Ron_Meyer_(quarterback)", "http://dbpedia.org/resource/Ron_Powlus", "http://dbpedia.org/resource/Ron_Reeves_(gridiron_football)", "http://dbpedia.org/resource/Ron_Vander_Kelen", "http://dbpedia.org/resource/Ronnie_Cahill", "http://dbpedia.org/resource/Ronnie_Lee_South", "http://dbpedia.org/resource/Ronnie_McAda", "http://dbpedia.org/resource/Roy_Zimmerman_(American_football)", "http://dbpedia.org/resource/Rudy_Bukich", "http://dbpedia.org/resource/Rudy_Carpenter", "http://dbpedia.org/resource/Russ_Cotton", "http://dbpedia.org/resource/Russ_Michna", "http://dbpedia.org/resource/Russell_Wilson", "http://dbpedia.org/resource/Rusty_Clark", "http://dbpedia.org/resource/Rusty_Hilger", "http://dbpedia.org/resource/Rusty_Smith_(American_football)", "http://dbpedia.org/resource/Ryan_Clement", "http://dbpedia.org/resource/Ryan_Colburn", "http://dbpedia.org/resource/Ryan_Finley_(American_football)", "http://dbpedia.org/resource/Ryan_Fitzpatrick", "http://dbpedia.org/resource/Ryan_Griffin_(quarterback)", "http://dbpedia.org/resource/Ryan_Leaf", "http://dbpedia.org/resource/Ryan_Mallett", "http://dbpedia.org/resource/Ryan_Nassib", "http://dbpedia.org/resource/Ryan_Perrilloux", "http://dbpedia.org/resource/Ryan_Tannehill", "http://dbpedia.org/resource/Ryan_Van_Dyke", "http://dbpedia.org/resource/Ryan_Vena", "http://dbpedia.org/resource/Ryan_Willis", "http://dbpedia.org/resource/George_Ratterman", "http://dbpedia.org/resource/Graeme_McFarland", "http://dbpedia.org/resource/Young_Bussey", "http://dbpedia.org/resource/Zac_Champion", "http://dbpedia.org/resource/Zac_Dysert", "http://dbpedia.org/resource/Zac_Lee", "http://dbpedia.org/resource/Zach_Collaros", "http://dbpedia.org/resource/Zach_Frazer", "http://dbpedia.org/resource/Zach_Smith_(American_football)", "http://dbpedia.org/resource/Zach_Terrell", "http://dbpedia.org/resource/Zach_Wilson", "http://dbpedia.org/resource/Zach_Zulli", "http://dbpedia.org/resource/Zack_Eskridge", "http://dbpedia.org/resource/Zak_Kustok", "http://dbpedia.org/resource/Zeke_Bratkowski", "http://dbpedia.org/resource/Jack_Robbins", "http://dbpedia.org/resource/Rod_Gerald"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Henri_Maspero> <http://dbpedia.org/ontology/academicAdvisor> ?x . ?x <http://dbpedia.org/property/fields> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Sanskrit_literature", "http://dbpedia.org/resource/Buddhism", "http://dbpedia.org/resource/Sanskrit_language", "http://dbpedia.org/resource/Religion_in_China", "http://dbpedia.org/resource/Chinese_history"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lydia_Clarke> <http://dbpedia.org/property/starring> ?uri . <http://dbpedia.org/resource/Soylent_Green> <http://dbpedia.org/ontology/spouse> ?uri} "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/FWD.us> <http://dbpedia.org/property/keyPeople> ?uri } "}, "answers": ["http://dbpedia.org/resource/Candice_Jones", "http://dbpedia.org/resource/Mark_Zuckerberg", "http://dbpedia.org/resource/Joe_Green_(entrepreneur)", ""]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Into_the_Dalek> <http://dbpedia.org/property/executiveProducer> ?uri } "}, "answers": ["http://dbpedia.org/resource/Brian_Minchin", "Steven Moffat"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/mouthPlace> <http://dbpedia.org/resource/Arkansas> . ?x <http://dbpedia.org/property/cities> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/subsidiary> <http://dbpedia.org/resource/Sony_Corporation_shareholders_and_subsidiaries> . ?uri <http://dbpedia.org/property/manufacturer> ?x . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/locationCity> <http://dbpedia.org/resource/Ontario> . ?x <http://dbpedia.org/property/destinations> ?uri }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/author> <http://dbpedia.org/resource/Wiktionary> . ?x <http://dbpedia.org/property/board> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ajahn_Sao_Kantas\u012blo> <http://dbpedia.org/property/nationality> ?uri } "}, "answers": ["http://dbpedia.org/resource/Thailand"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/director> <http://dbpedia.org/resource/Tim_Burton> and musicComposer <http://dbpedia.org/resource/Danny_Elfman> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/notableInstruments> <http://dbpedia.org/resource/Drums_Around_the_World> . ?x <http://dbpedia.org/ontology/genre> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Earl_B._Ruth> <http://dbpedia.org/ontology/appointer> ?uri } "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Samuel_Isham> <http://dbpedia.org/property/education> ?uri } "}, "answers": ["http://dbpedia.org/resource/Phillips_Academy"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Vargas_(state)> . ?x <http://dbpedia.org/property/debutteam> ?uri . }"}, "answers": ["St. Louis Cardinals", "Chicago White Sox", "http://dbpedia.org/resource/San_Francisco_Giants", "Houston Astros"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/Battle_of_France> . ?x <http://dbpedia.org/ontology/award> ?uri . }"}, "answers": ["452"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/militaryUnit> <http://dbpedia.org/resource/Colonels_Softball_Complex> . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ontario> <http://dbpedia.org/ontology/location> ?uri } "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Juno_I> <http://dbpedia.org/ontology/launchSite> ?uri } "}, "answers": ["http://dbpedia.org/resource/Cape_Canaveral_Launch_Complex_26", "http://dbpedia.org/resource/Cape_Canaveral_Launch_Complex_5", "http://dbpedia.org/resource/Cape_Canaveral_Space_Force_Station", "http://dbpedia.org/resource/Florida"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/country> <http://dbpedia.org/resource/Swedish_food> . ?x <http://dbpedia.org/ontology/ingredient> ?uri }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Rheinmetall_MG_60> <http://dbpedia.org/ontology/origin> ?uri } "}, "answers": ["http://dbpedia.org/resource/West_Germany"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/cinematography> <http://dbpedia.org/resource/Gregg_Toland> . }"}, "answers": ["62"]}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/owner> <http://dbpedia.org/resource/Mwtro-Noth_Railroad> . ?x <http://dbpedia.org/property/owner> ?uri }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/architect> <http://dbpedia.org/resource/Dundas_Castle> . ?x <http://dbpedia.org/property/destinations> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Barbara_Bush> <http://dbpedia.org/property/children> ?uri } "}, "answers": ["http://dbpedia.org/resource/George_W._Bush", "http://dbpedia.org/resource/Marvin_Bush", "http://dbpedia.org/resource/Jeb_Bush", "http://dbpedia.org/resource/Dorothy_Bush_Koch", "http://dbpedia.org/resource/Neil_Bush", "http://dbpedia.org/resource/Pauline_Robinson_Bush", ""]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/inflow> <http://dbpedia.org/resource/Ivinian_sees> . ?x <http://dbpedia.org/property/cities> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/author> <http://dbpedia.org/resource/Miguel_de_Cervantes> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Musical>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/position> <http://dbpedia.org/resource/Defenceman> . ?x <http://dbpedia.org/ontology/team> ?uri . }"}, "answers": ["1608"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/currentclub> <http://dbpedia.org/resource/Los_Angeles_Kings> . ?x <http://dbpedia.org/ontology/team> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/developer> <http://dbpedia.org/resource/J._Michael_Straczynski> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": ["http://dbpedia.org/resource/Jayce_and_the_Wheeled_Warriors"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/motive> <http://dbpedia.org/resource/Environmentalism> . ?uri <http://dbpedia.org/ontology/organisation> <http://dbpedia.org/resource/Peace> . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Darcs> <http://dbpedia.org/ontology/license> ?uri } "}, "answers": ["http://dbpedia.org/resource/GNU_General_Public_License"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/commandStructure> <http://dbpedia.org/resource/United_States_Navy> . ?uri <http://dbpedia.org/ontology/garrison> <http://dbpedia.org/resource/Arlington_County,_Virginia> } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/producer> <http://dbpedia.org/resource/Stephen_Kozmeniuk> . ?x <http://dbpedia.org/property/artist> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Deborah_Crombie> <http://dbpedia.org/property/almaMater> ?uri } "}, "answers": ["Austin College"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/successor> <http://dbpedia.org/resource/James_W._Hyatt> . ?x <http://dbpedia.org/ontology/restingPlace> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Norwalk,_Connecticut", "http://dbpedia.org/resource/Connecticut", "http://dbpedia.org/resource/East_Norwalk_Historical_Cemetery"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/hubAirport> <http://dbpedia.org/resource/Los_Angeles_International_Airport> } "}, "answers": ["http://dbpedia.org/resource/American_Airlines", "http://dbpedia.org/resource/American_Eagle_(airline_brand)", "http://dbpedia.org/resource/AeroUnion", "http://dbpedia.org/resource/Virgin_America", "http://dbpedia.org/resource/Delta_Air_Lines", "http://dbpedia.org/resource/Delta_Connection", "http://dbpedia.org/resource/Mas_Air", "http://dbpedia.org/resource/Alaska_Airlines", "http://dbpedia.org/resource/Atlas_Air", "http://dbpedia.org/resource/Western_Airlines", "http://dbpedia.org/resource/Polar_Air_Cargo", "http://dbpedia.org/resource/United_Airlines", "http://dbpedia.org/resource/United_Express", "http://dbpedia.org/resource/Braniff_International_Airways", "http://dbpedia.org/resource/Republic_Airlines", "http://dbpedia.org/resource/Kalitta_Air", "http://dbpedia.org/resource/Ted_(airline)", "http://dbpedia.org/resource/Wings_West_Airlines", "http://dbpedia.org/resource/Hughes_Airwest", "http://dbpedia.org/resource/SkyWest_Airlines", "http://dbpedia.org/resource/Southern_Air", "http://dbpedia.org/resource/Southern_Airways_Express", "http://dbpedia.org/resource/Great_Lakes_Airlines", "http://dbpedia.org/resource/Pacific_Southwest_Airlines"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Fabio_Mercurio> <http://dbpedia.org/property/employer> ?x . ?x <http://dbpedia.org/ontology/owner> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/awards> <http://dbpedia.org/resource/Timeform> . ?x <http://dbpedia.org/ontology/owner> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Aga_Khan_IV", "http://dbpedia.org/resource/Godolphin_Stables", "http://dbpedia.org/resource/Richard_Burridge", "http://dbpedia.org/resource/Randall_Dee_Hubbard", "http://dbpedia.org/resource/Michael_Tabor", "http://dbpedia.org/resource/Sir_Humphrey_de_Trafford,_4th_Baronet", "http://dbpedia.org/resource/Hamdan_bin_Rashid_Al_Maktoum", "http://dbpedia.org/resource/Maktoum_bin_Rashid_Al_Maktoum", "http://dbpedia.org/resource/Paul_de_Moussac", "http://dbpedia.org/resource/Fahd_bin_Salman_Al_Saud", "http://dbpedia.org/resource/Daniel_Wildenstein", "http://dbpedia.org/resource/Wayne_Gretzky", "http://dbpedia.org/resource/Bruce_McNall", "http://dbpedia.org/resource/Anne_Grosvenor,_Duchess_of_Westminster", "http://dbpedia.org/resource/Godolphin_(racing)", "http://dbpedia.org/resource/Paul_Mellon", "http://dbpedia.org/resource/Carlo_Vittadini_(horse_racing)", "http://dbpedia.org/resource/Charles_W._Engelhard_Jr.", "http://dbpedia.org/resource/Raymond_R._Guest", "http://dbpedia.org/resource/Victor_Sassoon", "http://dbpedia.org/resource/J._P._McManus", "http://dbpedia.org/resource/Tony_\u0160anti\u0107", "http://dbpedia.org/resource/Marcia_Anastasia_Christoforides", "http://dbpedia.org/resource/Allen_Paulson", "http://dbpedia.org/resource/Madeleine_A._Pickens", "http://dbpedia.org/resource/Calumet_Farm", "http://dbpedia.org/resource/John_McShain", "http://dbpedia.org/resource/The_Thoroughbred_Corp.", "http://dbpedia.org/resource/Jean_Stern_(fencer)", "http://dbpedia.org/resource/Virginia_Kraft_Payson", "http://dbpedia.org/resource/Federico_Tesio"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/voice> <http://dbpedia.org/resource/The_Peanuts_Movie> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/FictionalCharacter>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/team> <http://dbpedia.org/resource/Toronto_Argonauts> . }"}, "answers": ["478"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dornier_Aerodyne> <http://dbpedia.org/property/nationalOrigin> ?uri . <http://dbpedia.org/resource/Hirth_Acrostar> <http://dbpedia.org/ontology/origin> ?uri} "}, "answers": ["http://dbpedia.org/resource/West_Germany"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/notedWork> <http://dbpedia.org/resource/Colin_Brake> . ?x <http://dbpedia.org/ontology/starring> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/author> <http://dbpedia.org/resource/K._W._Jeter> . ?x <http://dbpedia.org/ontology/series> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Blade_Runner_(franchise)"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/president> <http://dbpedia.org/resource/Emanuel_de_Guzman> . ?x <http://dbpedia.org/property/athletics> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/mainInterests> <http://dbpedia.org/resource/Metaphysics> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}"}, "answers": ["4"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/prizes> <http://dbpedia.org/resource/Gold_Medal_of_the_Royal_Astronomical_Society> . }"}, "answers": ["23"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/executiveProducer> <http://dbpedia.org/resource/Glen_and_Les_Charles> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/purpose> <http://dbpedia.org/resource/South_Asia_Subregional_Economic_Cooperation> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Country>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/producer> <http://dbpedia.org/resource/Katy_B> . ?uri <http://dbpedia.org/property/label> ?x . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bobby_Hoppe> <http://dbpedia.org/property/pastteams> ?uri } "}, "answers": ["* San Francisco 49ers \n* Washington Redskins"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cathedral_Peak_(California)> <http://dbpedia.org/ontology/firstAscentPerson> ?uri } "}, "answers": ["http://dbpedia.org/resource/John_Muir"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Erik_Bergman_(Lutheran_minister)> <http://dbpedia.org/property/children> ?uri } "}, "answers": ["http://dbpedia.org/resource/Margareta_Bergman", "http://dbpedia.org/resource/Ingmar_Bergman", "http://dbpedia.org/resource/Dag_Bergman"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/placeOfBurial> <http://dbpedia.org/resource/Mausoleum_of_Augustus> . }"}, "answers": ["5"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/sisterStations> <http://dbpedia.org/resource/WASH_(FM)> . ?x <http://dbpedia.org/ontology/programmeFormat> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Classic_rock", "http://dbpedia.org/resource/Contemporary_hit_radio", "http://dbpedia.org/resource/Country_music", "http://dbpedia.org/resource/All-news_radio", "http://dbpedia.org/resource/Alternative_rock"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/league> <http://dbpedia.org/resource/National_Hockey_League> . ?x <http://dbpedia.org/ontology/team> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Buffalo_Sabres", "http://dbpedia.org/resource/New_York_Islanders", "http://dbpedia.org/resource/Chicago_Blackhawks", "http://dbpedia.org/resource/Colorado_Avalanche", "http://dbpedia.org/resource/New_Jersey_Devils", "http://dbpedia.org/resource/Vancouver_Canucks", "http://dbpedia.org/resource/Carolina_Hurricanes", "http://dbpedia.org/resource/Tampa_Bay_Lightning", "http://dbpedia.org/resource/Minnesota_Wild", "http://dbpedia.org/resource/San_Jose_Sharks", "http://dbpedia.org/resource/Detroit_Red_Wings", "http://dbpedia.org/resource/Florida_Panthers", "http://dbpedia.org/resource/Arizona_Coyotes", "http://dbpedia.org/resource/Calgary_Flames", "http://dbpedia.org/resource/Columbus_Blue_Jackets", "http://dbpedia.org/resource/Seattle_Kraken", "http://dbpedia.org/resource/New_York_Rangers", "http://dbpedia.org/resource/Boston_Bruins", "http://dbpedia.org/resource/Winnipeg_Jets", "http://dbpedia.org/resource/Vegas_Golden_Knights", "http://dbpedia.org/resource/Anaheim_Ducks", "http://dbpedia.org/resource/Nashville_Predators", "http://dbpedia.org/resource/Pittsburgh_Penguins", "http://dbpedia.org/resource/Washington_Capitals", "http://dbpedia.org/resource/Edmonton_Oilers", "http://dbpedia.org/resource/Toronto_Maple_Leafs", "http://dbpedia.org/resource/Montreal_Canadiens", "http://dbpedia.org/resource/Free_agent", "http://dbpedia.org/resource/Los_Angeles_Kings", "http://dbpedia.org/resource/Ottawa_Senators", "http://dbpedia.org/resource/St._Louis_Blues", "http://dbpedia.org/resource/Philadelphia_Flyers", "http://dbpedia.org/resource/Dallas_Stars", "http://dbpedia.org/resource/Lukko", "http://dbpedia.org/resource/SC_Bern"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/James_McClure_(table_tennis)> <http://dbpedia.org/ontology/birthPlace> ?uri } "}, "answers": ["http://dbpedia.org/resource/Indianapolis"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/recordLabel> <http://dbpedia.org/resource/Sony_Music_Entertainment> . ?uri <http://dbpedia.org/property/musicComposer> ?x . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/genre> <http://dbpedia.org/resource/Progressive_rock> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Band>}"}, "answers": ["http://dbpedia.org/resource/1974_(band)", "http://dbpedia.org/resource/Alpha_Male_Tea_Party", "http://dbpedia.org/resource/Also_Eden", "http://dbpedia.org/resource/Amazing_Blondel", "http://dbpedia.org/resource/Ambrosia_(band)", "http://dbpedia.org/resource/Amon_D\u00fc\u00fcl_II", "http://dbpedia.org/resource/And_So_I_Watch_You_from_Afar", "http://dbpedia.org/resource/Andrew_Giddings", "http://dbpedia.org/resource/Aerodrom_(band)", "http://dbpedia.org/resource/After_the_Fire", "http://dbpedia.org/resource/Against_Nature_(band)", "http://dbpedia.org/resource/Agent_Fresco", "http://dbpedia.org/resource/Dark_Suns", "http://dbpedia.org/resource/Darryl_Way", "http://dbpedia.org/resource/Days_Away", "http://dbpedia.org/resource/Antonius_Rex", "http://dbpedia.org/resource/Anyone's_Daughter", "http://dbpedia.org/resource/Anywhere_(band)", "http://dbpedia.org/resource/Aphrodite's_Child", "http://dbpedia.org/resource/Apple_Pie_(band)", "http://dbpedia.org/resource/Arashk_(band)", "http://dbpedia.org/resource/Argent_(band)", "http://dbpedia.org/resource/Ariel_(Australian_band)", "http://dbpedia.org/resource/Ark_(British_band)", "http://dbpedia.org/resource/Ark_(Norwegian_band)", "http://dbpedia.org/resource/Bozzio_Levin_Stevens", "http://dbpedia.org/resource/Casket_Salesmen", "http://dbpedia.org/resource/Catapilla", "http://dbpedia.org/resource/Congreso", "http://dbpedia.org/resource/Delirium_(band)", "http://dbpedia.org/resource/Delivery_(band)", "http://dbpedia.org/resource/Demon_Fuzz", "http://dbpedia.org/resource/Devil_Doll_(Slovenian_band)", "http://dbpedia.org/resource/Devilstone_Open_Air", "http://dbpedia.org/resource/Vaganza", "http://dbpedia.org/resource/Van_der_Graaf_Generator", "http://dbpedia.org/resource/Video_Game_Orchestra", "http://dbpedia.org/resource/Violent_Silence", "http://dbpedia.org/resource/Violeta_de_Outono", "http://dbpedia.org/resource/Viperfish_(band)", "http://dbpedia.org/resource/Vola_(band)", "http://dbpedia.org/resource/Volto!", "http://dbpedia.org/resource/Warm_Dust", "http://dbpedia.org/resource/Wastefall", "http://dbpedia.org/resource/Djam_Karet", "http://dbpedia.org/resource/Fire_On_Dawson", "http://dbpedia.org/resource/Firehose_(band)", "http://dbpedia.org/resource/Second_Hand_(band)", "http://dbpedia.org/resource/Sfinx_(band)", "http://dbpedia.org/resource/Shadowfax_(band)", "http://dbpedia.org/resource/Shub-Niggurath_(band)", "http://dbpedia.org/resource/Silhouette_(band)", "http://dbpedia.org/resource/Sinch_(band)", "http://dbpedia.org/resource/Sky_(English/Australian_band)", "http://dbpedia.org/resource/Sleepers_Awake_(band)", "http://dbpedia.org/resource/Smash_(Spanish_band)", "http://dbpedia.org/resource/Socrates_Drank_the_Conium", "http://dbpedia.org/resource/Soup_(band)", "http://dbpedia.org/resource/Spinal_Tap_(band)", "http://dbpedia.org/resource/Genesis_Revisited", "http://dbpedia.org/resource/Neograss", "http://dbpedia.org/resource/Passafire", "http://dbpedia.org/resource/Secret_Green", "http://dbpedia.org/resource/TEA_(band)", "http://dbpedia.org/resource/The_Receiving_End_of_Sirens", "http://dbpedia.org/resource/O_Ter\u00e7o", "http://dbpedia.org/resource/Orgia_Pravednikov", "http://dbpedia.org/resource/SubAudible_Hum", "http://dbpedia.org/resource/K\u00f6k_(band)", "http://dbpedia.org/resource/Minus_the_Bear", "http://dbpedia.org/resource/Proto-Kaw", "http://dbpedia.org/resource/Rebanh\u00e3o", "http://dbpedia.org/resource/Visekongene", "http://dbpedia.org/resource/Moulettes", "http://dbpedia.org/resource/Thinking_Plague", "http://dbpedia.org/resource/Les_Fr\u00e8res_Megri", "http://dbpedia.org/resource/Points_North", "http://dbpedia.org/resource/The_Cellar_and_Point", "http://dbpedia.org/resource/Wume", "http://dbpedia.org/resource/Agitation_Free", "http://dbpedia.org/resource/Ahleuchatistas", "http://dbpedia.org/resource/Air_(band)", "http://dbpedia.org/resource/Airbag_(band)", "http://dbpedia.org/resource/Deep_Purple", "http://dbpedia.org/resource/Deep_Turtle", "http://dbpedia.org/resource/Demon_(band)", "http://dbpedia.org/resource/Diaura", "http://dbpedia.org/resource/Dionysos_(Canadian_band)", "http://dbpedia.org/resource/Discipline_(band)", "http://dbpedia.org/resource/Disen_Gage", "http://dbpedia.org/resource/Sui_Generis", "http://dbpedia.org/resource/U\u017e_jsme_doma", "http://dbpedia.org/resource/Vinnie_Amico", "http://dbpedia.org/resource/Yes_Featuring_Jon_Anderson,_Trevor_Rabin,_Rick_Wakeman", "http://dbpedia.org/resource/Mezquita_(band)", "http://dbpedia.org/resource/Minaret_(band)", "http://dbpedia.org/resource/Moonlight_(band)", "http://dbpedia.org/resource/Morgan_(band)", "http://dbpedia.org/resource/Morricone_Youth", "http://dbpedia.org/resource/Murple_(band)", "http://dbpedia.org/resource/Mystery_(band)", "http://dbpedia.org/resource/Sadistic_Mika_Band", "http://dbpedia.org/resource/The_Muffins", "http://dbpedia.org/resource/Wireless_(band)", "http://dbpedia.org/resource/Wobbler_(band)", "http://dbpedia.org/resource/XYZ_(English_band)", "http://dbpedia.org/resource/YUP_(band)", "http://dbpedia.org/resource/Yesterdays_(band)", "http://dbpedia.org/resource/Zao_(French_band)", "http://dbpedia.org/resource/Zebra_(American_band)", "http://dbpedia.org/resource/Zelda_(band)", "http://dbpedia.org/resource/Zombi_(band)", "http://dbpedia.org/resource/Zon_(band)", "http://dbpedia.org/resource/Zs_(band)", "http://dbpedia.org/resource/Mandrake_Memorial", "http://dbpedia.org/resource/Stormy_Six", "http://dbpedia.org/resource/The_Flyin'_Ryan_Brothers", "http://dbpedia.org/resource/Yezda_Urfa", "http://dbpedia.org/resource/HoBoLeMa", "http://dbpedia.org/resource/Moongarden", "http://dbpedia.org/resource/Unitopia", "http://dbpedia.org/resource/Martin_Circus", "http://dbpedia.org/resource/The_Wizards_of_Winter", "http://dbpedia.org/resource/Aisles", "http://dbpedia.org/resource/21st_Century_Schizoid_Band", "http://dbpedia.org/resource/Art_in_America_(band)", "http://dbpedia.org/resource/Artifex_Pereo", "http://dbpedia.org/resource/Ashes_Divide", "http://dbpedia.org/resource/Asia_(band)", "http://dbpedia.org/resource/Atish_Raj", "http://dbpedia.org/resource/Attila_(rock_band)", "http://dbpedia.org/resource/Avatarium", "http://dbpedia.org/resource/Ayers_Rock_(band)", "http://dbpedia.org/resource/Ayreon", "http://dbpedia.org/resource/Ayurveda_(band)", "http://dbpedia.org/resource/Beggars_Opera_(band)", "http://dbpedia.org/resource/Beija_Flor", "http://dbpedia.org/resource/Bend_Sinister_(band)", "http://dbpedia.org/resource/Fragile_Vastness", "http://dbpedia.org/resource/Fraternity_(band)", "http://dbpedia.org/resource/Frumpy", "http://dbpedia.org/resource/Fruupp", "http://dbpedia.org/resource/Fuckin_Wild", "http://dbpedia.org/resource/Future_User", "http://dbpedia.org/resource/Galadriel_(band)", "http://dbpedia.org/resource/Gazpacho_(band)", "http://dbpedia.org/resource/General_Luna_(band)", "http://dbpedia.org/resource/Haji's_Kitchen", "http://dbpedia.org/resource/Haken_(band)", "http://dbpedia.org/resource/Happy_Family_(Japanese_band)", "http://dbpedia.org/resource/Happy_the_Man", "http://dbpedia.org/resource/Harmonium_(band)", "http://dbpedia.org/resource/Chicanery", "http://dbpedia.org/resource/Child_Abuse_(band)", "http://dbpedia.org/resource/Chilliwack_(band)", "http://dbpedia.org/resource/Sailor_Free", "http://dbpedia.org/resource/Samla_Mammas_Manna", "http://dbpedia.org/resource/Coven_(band)", "http://dbpedia.org/resource/Crack_the_Sky", "http://dbpedia.org/resource/Syd_Arthur", "http://dbpedia.org/resource/Sydonia", "http://dbpedia.org/resource/S\u00e9rgio_Dias", "http://dbpedia.org/resource/TM_Network", "http://dbpedia.org/resource/Tamam_Shud", "http://dbpedia.org/resource/Teapot_Industries", "http://dbpedia.org/resource/Telescreen_(band)", "http://dbpedia.org/resource/Tempest_(Celtic_rock_band)", "http://dbpedia.org/resource/We_Are_the_City", "http://dbpedia.org/resource/Wigwam_(Finnish_band)", "http://dbpedia.org/resource/Empty_Yard_Experiment", "http://dbpedia.org/resource/Hevein_(band)", "http://dbpedia.org/resource/Isochronous_(band)", "http://dbpedia.org/resource/Jefferson_Starship", "http://dbpedia.org/resource/Le_Orme", "http://dbpedia.org/resource/Pain_of_Salvation", "http://dbpedia.org/resource/Sequester_(band)", "http://dbpedia.org/resource/Electric_W\u00fcrms", "http://dbpedia.org/resource/Elektrisk_Regn", "http://dbpedia.org/resource/Elizabeth_(band)", "http://dbpedia.org/resource/Rococo_(band)", "http://dbpedia.org/resource/Ruins_(Japanese_band)", "http://dbpedia.org/resource/SBB_(band)", "http://dbpedia.org/resource/Saga_(band)", "http://dbpedia.org/resource/Sassafras_(band)", "http://dbpedia.org/resource/Saturn_(band)", "http://dbpedia.org/resource/Schizophonic_(band)", "http://dbpedia.org/resource/Sleepytime_Gorilla_Museum", "http://dbpedia.org/resource/The_Syn", "http://dbpedia.org/resource/Jealkb", "http://dbpedia.org/resource/La'cryma_Christi", "http://dbpedia.org/resource/Omar_Rodriguez_Lopez_Group", "http://dbpedia.org/resource/Pistolita", "http://dbpedia.org/resource/Ragnar\u00f6k_(Swedish_band)", "http://dbpedia.org/resource/Haranga", "http://dbpedia.org/resource/Meganoidi", "http://dbpedia.org/resource/Noekk", "http://dbpedia.org/resource/New_Trolls", "http://dbpedia.org/resource/List_of_Yes_band_members", "http://dbpedia.org/resource/*shels", "http://dbpedia.org/resource/...And_You_Will_Know_Us_by_the_Trail_of_Dead", "http://dbpedia.org/resource/14_Bis_(band)", "http://dbpedia.org/resource/Anima_Mundi_(band)", "http://dbpedia.org/resource/Apocalypse_(band)", "http://dbpedia.org/resource/Archive_(band)", "http://dbpedia.org/resource/Area_(band)", "http://dbpedia.org/resource/Embers_in_Ashes", "http://dbpedia.org/resource/Embryo_(band)", "http://dbpedia.org/resource/Enchant_(band)", "http://dbpedia.org/resource/Ephrat", "http://dbpedia.org/resource/Epignosis", "http://dbpedia.org/resource/Esta_Livio", "http://dbpedia.org/resource/Esthetic_Education", "http://dbpedia.org/resource/Eufonius", "http://dbpedia.org/resource/Andromeda_(English_band)", "http://dbpedia.org/resource/Get_Well_Soon_(band)", "http://dbpedia.org/resource/Ghost_(Swedish_band)", "http://dbpedia.org/resource/Gila_(band)", "http://dbpedia.org/resource/Giuntini_Project", "http://dbpedia.org/resource/Glass_Hammer", "http://dbpedia.org/resource/Gnidrolog", "http://dbpedia.org/resource/God_Bless", "http://dbpedia.org/resource/Godsticks", "http://dbpedia.org/resource/Gong_(band)", "http://dbpedia.org/resource/Armageddon_(British_band)", "http://dbpedia.org/resource/Ars_Nova_(American_band)", "http://dbpedia.org/resource/Ars_Nova_(Japanese_band)", "http://dbpedia.org/resource/Art_Rock_Circus", "http://dbpedia.org/resource/Marbin", "http://dbpedia.org/resource/Piirpauke", "http://dbpedia.org/resource/Piknik", "http://dbpedia.org/resource/Platypus_(band)", "http://dbpedia.org/resource/Praxis_(band)", "http://dbpedia.org/resource/Primus_(band)", "http://dbpedia.org/resource/The_Afterimage", "http://dbpedia.org/resource/The_Amazing", "http://dbpedia.org/resource/The_Australian_Pink_Floyd_Show", "http://dbpedia.org/resource/The_Box_(band)", "http://dbpedia.org/resource/UKZ", "http://dbpedia.org/resource/Umphrey's_McGee", "http://dbpedia.org/resource/Unformal", "http://dbpedia.org/resource/Univers_Zero", "http://dbpedia.org/resource/Drawn_from_Bees", "http://dbpedia.org/resource/Drugi_na\u010din", "http://dbpedia.org/resource/Dufus_(band)", "http://dbpedia.org/resource/The_Drovers", "http://dbpedia.org/resource/Tuatha_de_Danann_(band)", "http://dbpedia.org/resource/Madder_Lake", "http://dbpedia.org/resource/Magellan_(band)", "http://dbpedia.org/resource/Magenta_(Welsh_band)", "http://dbpedia.org/resource/Makari_(band)", "http://dbpedia.org/resource/Mannheim_Steamroller", "http://dbpedia.org/resource/Mastermind_(American_band)", "http://dbpedia.org/resource/Mecki_Mark_Men", "http://dbpedia.org/resource/Nathan_Mahl", "http://dbpedia.org/resource/The_Machine_(band)", "http://dbpedia.org/resource/Panic_Room_(band)", "http://dbpedia.org/resource/Panta_Rhei_(band)", "http://dbpedia.org/resource/Particle_(band)", "http://dbpedia.org/resource/Pavlov's_Dog_(band)", "http://dbpedia.org/resource/Phantasmagoria_(band)", "http://dbpedia.org/resource/Phase_(band)", "http://dbpedia.org/resource/Phenom_(rock_group)", "http://dbpedia.org/resource/Phenomena_(band)", "http://dbpedia.org/resource/Pierrot_Lunaire_(band)", "http://dbpedia.org/resource/Use_Your_Illusion", "http://dbpedia.org/resource/Utopia_(band)", "http://dbpedia.org/resource/Vox_Dei_(band)", "http://dbpedia.org/resource/Wallenstein_(band)", "http://dbpedia.org/resource/Wally_(band)", "http://dbpedia.org/resource/White_(band)", "http://dbpedia.org/resource/Mizraab", "http://dbpedia.org/resource/Ruja", "http://dbpedia.org/resource/Spinetta_Jade", "http://dbpedia.org/resource/Vas_Deferens_Organization", "http://dbpedia.org/resource/Hatfield_and_the_North", "http://dbpedia.org/resource/Sanglorians", "http://dbpedia.org/resource/Strangelove_(band)", "http://dbpedia.org/resource/Grobschnitt", "http://dbpedia.org/resource/Grupa_220", "http://dbpedia.org/resource/Guntzepaula", "http://dbpedia.org/resource/Guru_Guru", "http://dbpedia.org/resource/Gustav_Ejstes", "http://dbpedia.org/resource/Hudson_Ford", "http://dbpedia.org/resource/Howards_Alias", "http://dbpedia.org/resource/Ozric_Tentacles", "http://dbpedia.org/resource/Peculate_(band)", "http://dbpedia.org/resource/Starcastle", "http://dbpedia.org/resource/Jeavestone", "http://dbpedia.org/resource/Joana_Marte", "http://dbpedia.org/resource/Puhdys", "http://dbpedia.org/resource/Siam_Shade", "http://dbpedia.org/resource/ADA_Band", "http://dbpedia.org/resource/A_Band_Called_O", "http://dbpedia.org/resource/A_Bolha", "http://dbpedia.org/resource/A_Minor_Forest", "http://dbpedia.org/resource/A_Vacant_Affair", "http://dbpedia.org/resource/Brainbox", "http://dbpedia.org/resource/Brazil_(band)", "http://dbpedia.org/resource/Brian_Auger_and_the_Trinity", "http://dbpedia.org/resource/Bryan_Scary", "http://dbpedia.org/resource/Babylon_(band)", "http://dbpedia.org/resource/Bacamarte", "http://dbpedia.org/resource/Banco_del_Mutuo_Soccorso", "http://dbpedia.org/resource/Band_of_Joy", "http://dbpedia.org/resource/Barclay_James_Harvest", "http://dbpedia.org/resource/Barefoot_Jerry", "http://dbpedia.org/resource/Jacula", "http://dbpedia.org/resource/Jadis_(band)", "http://dbpedia.org/resource/James_Taylor_Move", "http://dbpedia.org/resource/Janne_Da_Arc", "http://dbpedia.org/resource/Katatonia", "http://dbpedia.org/resource/Kayak_(band)", "http://dbpedia.org/resource/Keats_(band)", "http://dbpedia.org/resource/Kekal", "http://dbpedia.org/resource/Blk_Jks", "http://dbpedia.org/resource/Blla_Blla_Blla", "http://dbpedia.org/resource/Blocco_Mentale", "http://dbpedia.org/resource/Blood_Ceremony", "http://dbpedia.org/resource/Blurred_Vision", "http://dbpedia.org/resource/Brainchild_(band)", "http://dbpedia.org/resource/Brainticket", "http://dbpedia.org/resource/Brandibelly", "http://dbpedia.org/resource/Bratislava_(band)", "http://dbpedia.org/resource/Brave_Saint_Saturn", "http://dbpedia.org/resource/Breathing_Space", "http://dbpedia.org/resource/Brothers_Past", "http://dbpedia.org/resource/Max_Webster", "http://dbpedia.org/resource/Megafauna_(band)", "http://dbpedia.org/resource/Melt-Banana", "http://dbpedia.org/resource/Caligula's_Horse", "http://dbpedia.org/resource/Canvas_Solaris", "http://dbpedia.org/resource/Captain_Beyond", "http://dbpedia.org/resource/Caravan_(band)", "http://dbpedia.org/resource/Carbonized", "http://dbpedia.org/resource/Charley_ATL", "http://dbpedia.org/resource/Random_Encounter_(band)", "http://dbpedia.org/resource/Rentrer_en_Soi", "http://dbpedia.org/resource/Rest_(band)", "http://dbpedia.org/resource/Return_to_Forever", "http://dbpedia.org/resource/The_Contortionist", "http://dbpedia.org/resource/The_Dear_Hunter", "http://dbpedia.org/resource/The_Enid", "http://dbpedia.org/resource/The_Felix_Culpa", "http://dbpedia.org/resource/The_Gentle_Storm", "http://dbpedia.org/resource/The_Gods_(band)", "http://dbpedia.org/resource/The_Grand_Astoria", "http://dbpedia.org/resource/The_Inner_Mounting_Flame", "http://dbpedia.org/resource/The_Jelly_Jam", "http://dbpedia.org/resource/The_Mars_Volta", "http://dbpedia.org/resource/The_Masters_Apprentices", "http://dbpedia.org/resource/The_Mins", "http://dbpedia.org/resource/The_Moody_Blues", "http://dbpedia.org/resource/The_Musical_Box_(band)", "http://dbpedia.org/resource/The_Mute_Gods", "http://dbpedia.org/resource/The_NESkimos", "http://dbpedia.org/resource/The_Oral_Cigarettes", "http://dbpedia.org/resource/The_Princes_(band)", "http://dbpedia.org/resource/The_Reign_of_Kindo", "http://dbpedia.org/resource/The_Roots_of_Orchis", "http://dbpedia.org/resource/The_Skys", "http://dbpedia.org/resource/The_Sound_of_Animals_Fighting", "http://dbpedia.org/resource/The_Tangent", "http://dbpedia.org/resource/The_Tea_Party", "http://dbpedia.org/resource/The_Watch_(band)", "http://dbpedia.org/resource/The_Wilde_Flowers", "http://dbpedia.org/resource/The_Winery_Dogs", "http://dbpedia.org/resource/Dimlim", "http://dbpedia.org/resource/Dionysos_(American_band)", "http://dbpedia.org/resource/Disciples_of_Babylon", "http://dbpedia.org/resource/Emerson,_Lake_&_Powell", "http://dbpedia.org/resource/Judgement_Day_(band)", "http://dbpedia.org/resource/My_Midnight_Creeps", "http://dbpedia.org/resource/Landberk", "http://dbpedia.org/resource/Sleeping_People", "http://dbpedia.org/resource/It_Bites", "http://dbpedia.org/resource/Jan_Dukes_de_Grey", "http://dbpedia.org/resource/Lumsk", "http://dbpedia.org/resource/The_Cancer_Conspiracy", "http://dbpedia.org/resource/Manooghi_Hi", "http://dbpedia.org/resource/MoeTar", "http://dbpedia.org/resource/Oddzar", "http://dbpedia.org/resource/Sum\u00e9_(band)", "http://dbpedia.org/resource/88Kasyo_Junrei", "http://dbpedia.org/resource/A.C.T", "http://dbpedia.org/resource/Ningen_Isu", "http://dbpedia.org/resource/Nirvana_(British_band)", "http://dbpedia.org/resource/No_More_Pain_(band)", "http://dbpedia.org/resource/Nodens_Ictus", "http://dbpedia.org/resource/Norman_Watt-Roy", "http://dbpedia.org/resource/Nova_(Bangladeshi_band)", "http://dbpedia.org/resource/Novalis_(band)", "http://dbpedia.org/resource/OSI_(band)", "http://dbpedia.org/resource/O_Emperor", "http://dbpedia.org/resource/Oaksenham", "http://dbpedia.org/resource/Oceana_Company", "http://dbpedia.org/resource/Giraffes%3F_Giraffes!", "http://dbpedia.org/resource/Glass_(band)", "http://dbpedia.org/resource/Glass_Harp_(band)", "http://dbpedia.org/resource/Glay", "http://dbpedia.org/resource/Go_(band)", "http://dbpedia.org/resource/Gordian_Knot_(band)", "http://dbpedia.org/resource/Gospel_(hardcore_punk_band)", "http://dbpedia.org/resource/Gravestone_(band)", "http://dbpedia.org/resource/Gravy_Train_(band)", "http://dbpedia.org/resource/Gryphon_(band)", "http://dbpedia.org/resource/Gun_(1960s_band)", "http://dbpedia.org/resource/Gypsy_(band)", "http://dbpedia.org/resource/Hard_Rain_(band)", "http://dbpedia.org/resource/Headband_(band)", "http://dbpedia.org/resource/Headspace_(band)", "http://dbpedia.org/resource/Uriah_Heep_(band)", "http://dbpedia.org/resource/Home_(British_band)", "http://dbpedia.org/resource/I_Am_(American_band)", "http://dbpedia.org/resource/Ian_Gillan_Band", "http://dbpedia.org/resource/If_(band)", "http://dbpedia.org/resource/Illusion_(band)", "http://dbpedia.org/resource/Insomnia_(band)", "http://dbpedia.org/resource/Invisible_(band)", "http://dbpedia.org/resource/The_Hiatus", "http://dbpedia.org/resource/The_Hometown_Band", "http://dbpedia.org/resource/The_Tuna_Helpers", "http://dbpedia.org/resource/Laal_(band)", "http://dbpedia.org/resource/Legs_Diamond_(band)", "http://dbpedia.org/resource/Lite_(band)", "http://dbpedia.org/resource/Locomotive_(band)", "http://dbpedia.org/resource/Lodestar_(band)", "http://dbpedia.org/resource/Lone_Star_(band)", "http://dbpedia.org/resource/Long_Distance_Calling_(band)", "http://dbpedia.org/resource/Il_Rovescio_della_Medaglia", "http://dbpedia.org/resource/Prophet_(band)", "http://dbpedia.org/resource/Quasar_(band)", "http://dbpedia.org/resource/Quatermass_(band)", "http://dbpedia.org/resource/Quicksand_(Welsh_band)", "http://dbpedia.org/resource/Quintessence_(English_band)", "http://dbpedia.org/resource/Quiver_(band)", "http://dbpedia.org/resource/Rain_(Japanese_band)", "http://dbpedia.org/resource/Rane_(band)", "http://dbpedia.org/resource/Raphael_(band)", "http://dbpedia.org/resource/Rare_Bird", "http://dbpedia.org/resource/Red_Devil_(punk_band)", "http://dbpedia.org/resource/Refugee_(band)", "http://dbpedia.org/resource/Renaissance_(band)", "http://dbpedia.org/resource/Rice_(band)", "http://dbpedia.org/resource/Riverside_(band)", "http://dbpedia.org/resource/Foto_na_Dans", "http://dbpedia.org/resource/Sian_Alice_Group", "http://dbpedia.org/resource/Ten_Ways", "http://dbpedia.org/resource/Ougenweide", "http://dbpedia.org/resource/Tasavallan_Presidentti", "http://dbpedia.org/resource/The_16_Deadly_Improvs", "http://dbpedia.org/resource/The_Trevor_Horn_Band", "http://dbpedia.org/resource/Mansun", "http://dbpedia.org/resource/Paatos", "http://dbpedia.org/resource/Toncho_Pilatos", "http://dbpedia.org/resource/Osanna", "http://dbpedia.org/resource/The_Pineapple_Thief", "http://dbpedia.org/resource/Too_Close_to_Touch", "http://dbpedia.org/resource/Circulus_(band)", "http://dbpedia.org/resource/Clammbon", "http://dbpedia.org/resource/Clouds_(1960s_rock_band)", "http://dbpedia.org/resource/Conspiracy_(band)", "http://dbpedia.org/resource/Almendra_(band)", "http://dbpedia.org/resource/Alphataurus", "http://dbpedia.org/resource/Alquin", "http://dbpedia.org/resource/Amplifier_(band)", "http://dbpedia.org/resource/Atticus_(band)", "http://dbpedia.org/resource/Audience_(band)", "http://dbpedia.org/resource/Aunt_Mary", "http://dbpedia.org/resource/Autograph_(Russian_band)", "http://dbpedia.org/resource/Automatic_Man", "http://dbpedia.org/resource/Ave_Sangria", "http://dbpedia.org/resource/Awaken_(band)", "http://dbpedia.org/resource/John_Lawton_(musician)", "http://dbpedia.org/resource/Satellite_(Polish_band)", "http://dbpedia.org/resource/Satellites_LV", "http://dbpedia.org/resource/Scorched-Earth_Policy", "http://dbpedia.org/resource/Sebkha-Chott", "http://dbpedia.org/resource/Facing_New_York", "http://dbpedia.org/resource/Fang_Island", "http://dbpedia.org/resource/Fat_Mattress", "http://dbpedia.org/resource/Gesu_no_Kiwami_Otome", "http://dbpedia.org/resource/Indexi", "http://dbpedia.org/resource/Kumm_(band)", "http://dbpedia.org/resource/Grand_General_(band)", "http://dbpedia.org/resource/Secos_&_Molhados", "http://dbpedia.org/resource/Jess_and_the_Ancient_Ones", "http://dbpedia.org/resource/Ribozyme_(band)", "http://dbpedia.org/resource/Krankschaft", "http://dbpedia.org/resource/Mantra_Sunrise", "http://dbpedia.org/resource/The_Gourishankar", "http://dbpedia.org/resource/Los_Canarios", "http://dbpedia.org/resource/Meet_Uncle_Hussain", "http://dbpedia.org/resource/Search/Rescue", "http://dbpedia.org/resource/Stratospheerius", "http://dbpedia.org/resource/Julie's_Haircut", "http://dbpedia.org/resource/Kill_No_Albatross", "http://dbpedia.org/resource/Shamall", "http://dbpedia.org/resource/Bachdenkel", "http://dbpedia.org/resource/Bakery_(band)", "http://dbpedia.org/resource/Bangor_Flying_Circus", "http://dbpedia.org/resource/Bats_(Irish_band)", "http://dbpedia.org/resource/Anekdoten", "http://dbpedia.org/resource/Ange", "http://dbpedia.org/resource/Angel'in_Heavy_Syrup", "http://dbpedia.org/resource/Angel_(American_band)", "http://dbpedia.org/resource/Anima_Morte", "http://dbpedia.org/resource/Intelligent_Music_Project", "http://dbpedia.org/resource/Intervals_(band)", "http://dbpedia.org/resource/Iona_(band)", "http://dbpedia.org/resource/Mogul_Thrash", "http://dbpedia.org/resource/Moon_Safari_(band)", "http://dbpedia.org/resource/Mother's_Cake", "http://dbpedia.org/resource/Motorpsycho_(band)", "http://dbpedia.org/resource/Mo\u011follar", "http://dbpedia.org/resource/Cheer-Accident", "http://dbpedia.org/resource/Color_Humano", "http://dbpedia.org/resource/Colosseum_(band)", "http://dbpedia.org/resource/Cursed_Legacy", "http://dbpedia.org/resource/Curved_Air", "http://dbpedia.org/resource/Tool_(band)", "http://dbpedia.org/resource/Tortilla_Army", "http://dbpedia.org/resource/Toy_Matinee", "http://dbpedia.org/resource/Transatlantic_(band)", "http://dbpedia.org/resource/Traverser_(band)", "http://dbpedia.org/resource/Trettio\u00e5riga_Kriget", "http://dbpedia.org/resource/TriPod", "http://dbpedia.org/resource/Triclops!", "http://dbpedia.org/resource/Tristan_Park", "http://dbpedia.org/resource/True_Myth", "http://dbpedia.org/resource/Tubular_Bells_for_Two", "http://dbpedia.org/resource/Twenty_Four_Hours_(band)", "http://dbpedia.org/resource/Twin_Zero", "http://dbpedia.org/resource/Irish_Coffee_(band)", "http://dbpedia.org/resource/Irritant_(band)", "http://dbpedia.org/resource/Jackson_Heights_(band)", "http://dbpedia.org/resource/Jade_Warrior_(band)", "http://dbpedia.org/resource/Junior's_Eyes", "http://dbpedia.org/resource/Micha\u0142_Jelonek", "http://dbpedia.org/resource/KTU_(band)", "http://dbpedia.org/resource/Kaamos_(Finnish_band)", "http://dbpedia.org/resource/Kapatid_(band)", "http://dbpedia.org/resource/Karnataka_(band)", "http://dbpedia.org/resource/Kaura_(band)", "http://dbpedia.org/resource/Kermit_(band)", "http://dbpedia.org/resource/Kimono_Draggin'", "http://dbpedia.org/resource/Kingdom_Come_(British_band)", "http://dbpedia.org/resource/Kino_(British_band)", "http://dbpedia.org/resource/Kiss_Kiss_(band)", "http://dbpedia.org/resource/Kyros_(band)", "http://dbpedia.org/resource/The_Kindred_(band)", "http://dbpedia.org/resource/Mandrake_Project", "http://dbpedia.org/resource/Mad_at_Gravity", "http://dbpedia.org/resource/A_Foot_in_Coldwater", "http://dbpedia.org/resource/Acqua_Fragile", "http://dbpedia.org/resource/CANO", "http://dbpedia.org/resource/CBDB_(band)", "http://dbpedia.org/resource/Camel_(band)", "http://dbpedia.org/resource/Chris_Farlowe", "http://dbpedia.org/resource/Antimatter_(band)", "http://dbpedia.org/resource/Storm_Corrosion", "http://dbpedia.org/resource/Strawbs", "http://dbpedia.org/resource/Stray_(band)", "http://dbpedia.org/resource/Subsignal", "http://dbpedia.org/resource/Starchild_(band)", "http://dbpedia.org/resource/Stars_(British_band)", "http://dbpedia.org/resource/Strings_(band)", "http://dbpedia.org/resource/Suck_(band)", "http://dbpedia.org/resource/Sun_(German_band)", "http://dbpedia.org/resource/Sylvan_(band)", "http://dbpedia.org/resource/Tabula_Rasa_(Finnish_band)", "http://dbpedia.org/resource/Tabula_Rasa_(Pittsburgh_band)", "http://dbpedia.org/resource/Tu_(American_band)", "http://dbpedia.org/resource/Spirits_Burning", "http://dbpedia.org/resource/Warpig_(band)", "http://dbpedia.org/resource/Kin_Ping_Meh", "http://dbpedia.org/resource/Lifesigns", "http://dbpedia.org/resource/The_Red_Masque", "http://dbpedia.org/resource/\u00c4nglag\u00e5rd", "http://dbpedia.org/resource/G\u00e5te", "http://dbpedia.org/resource/Ypogeia_Revmata", "http://dbpedia.org/resource/Itoiz", "http://dbpedia.org/resource/Karmakanic", "http://dbpedia.org/resource/5th_Projekt", "http://dbpedia.org/resource/7th_Order", "http://dbpedia.org/resource/801_(band)", "http://dbpedia.org/resource/90_Day_Men", "http://dbpedia.org/resource/9mm_Parabellum_Bullet", "http://dbpedia.org/resource/Acid_Black_Cherry", "http://dbpedia.org/resource/Cast_(Mexican_band)", "http://dbpedia.org/resource/Hoelderlin", "http://dbpedia.org/resource/Hollywood_Monsters_(band)", "http://dbpedia.org/resource/Horslips", "http://dbpedia.org/resource/Hugh_Hopper", "http://dbpedia.org/resource/Bayaan", "http://dbpedia.org/resource/Beardfish_(band)", "http://dbpedia.org/resource/Ben_Granfelt_Band", "http://dbpedia.org/resource/K\u014denji_Hyakkei", "http://dbpedia.org/resource/La_Locanda_delle_Fate", "http://dbpedia.org/resource/Labirent", "http://dbpedia.org/resource/Le_Vibrazioni", "http://dbpedia.org/resource/Elonkorjuu", "http://dbpedia.org/resource/First_Signs_of_Frost", "http://dbpedia.org/resource/First_of_October_(band)", "http://dbpedia.org/resource/Floh_de_Cologne", "http://dbpedia.org/resource/The_Gathering_(band)", "http://dbpedia.org/resource/The_Hunt_(band)", "http://dbpedia.org/resource/Tiles_(band)", "http://dbpedia.org/resource/Time_(Yugoslav_band)", "http://dbpedia.org/resource/Touchstone_(band)", "http://dbpedia.org/resource/Traffic_(band)", "http://dbpedia.org/resource/Trees_(band)", "http://dbpedia.org/resource/Triana_(band)", "http://dbpedia.org/resource/Trigon_(German_band)", "http://dbpedia.org/resource/Tully_(band)", "http://dbpedia.org/resource/Tweaker_(band)", "http://dbpedia.org/resource/T\u00edr_na_n\u00d3g_(band)", "http://dbpedia.org/resource/Gandalf's_Fist", "http://dbpedia.org/resource/Garolou", "http://dbpedia.org/resource/Hidden_Hospitals", "http://dbpedia.org/resource/Hidria_Spacefolk", "http://dbpedia.org/resource/Leb_i_sol", "http://dbpedia.org/resource/Ungdomskulen", "http://dbpedia.org/resource/MullMuzzler", "http://dbpedia.org/resource/Native_Window", "http://dbpedia.org/resource/Triumvirat", "http://dbpedia.org/resource/Kaipa", "http://dbpedia.org/resource/Kairon;_IRSE!", "http://dbpedia.org/resource/RAQ", "http://dbpedia.org/resource/Viva_Machine", "http://dbpedia.org/resource/Mashina_Vremeni", "http://dbpedia.org/resource/U.K._(band)", "http://dbpedia.org/resource/Sounds_of_Swami", "http://dbpedia.org/resource/Dorian_(Turkish_band)", "http://dbpedia.org/resource/Dragon_(band)", "http://dbpedia.org/resource/Dredg", "http://dbpedia.org/resource/Druid_(band)", "http://dbpedia.org/resource/Dungen", "http://dbpedia.org/resource/Closure_in_Moscow", "http://dbpedia.org/resource/Cog_(band)", "http://dbpedia.org/resource/Simon_Apple", "http://dbpedia.org/resource/Siris_(band)", "http://dbpedia.org/resource/Skin_Alley", "http://dbpedia.org/resource/Sleep_Room", "http://dbpedia.org/resource/Slift", "http://dbpedia.org/resource/Smak", "http://dbpedia.org/resource/Sniff_'n'_the_Tears", "http://dbpedia.org/resource/Snovi", "http://dbpedia.org/resource/Soen", "http://dbpedia.org/resource/Son_of_Science", "http://dbpedia.org/resource/Sonic_Elements", "http://dbpedia.org/resource/Soul_Secret", "http://dbpedia.org/resource/Soundarcade", "http://dbpedia.org/resource/Cressida_(band)", "http://dbpedia.org/resource/Crime_in_Choir", "http://dbpedia.org/resource/Crucis_(band)", "http://dbpedia.org/resource/Nemo_(French_band)", "http://dbpedia.org/resource/Neo_(Italian_band)", "http://dbpedia.org/resource/Nevada_(UK_band)", "http://dbpedia.org/resource/Nexus_(Argentine_band)", "http://dbpedia.org/resource/Nits_(band)", "http://dbpedia.org/resource/Nova_(Italian_band)", "http://dbpedia.org/resource/Nucleus_(band)", "http://dbpedia.org/resource/Numen_(band)", "http://dbpedia.org/resource/Nurse_(band)", "http://dbpedia.org/resource/Oucho_Sparks", "http://dbpedia.org/resource/Ours_(band)", "http://dbpedia.org/resource/Premiata_Forneria_Marconi", "http://dbpedia.org/resource/Pure_Reason_Revolution", "http://dbpedia.org/resource/MiRthkon", "http://dbpedia.org/resource/White_Light_Riot", "http://dbpedia.org/resource/Picchio_dal_Pozzo", "http://dbpedia.org/resource/The_Lightyears", "http://dbpedia.org/resource/The_Savage_Rose", "http://dbpedia.org/resource/\u00c7ileke\u015f", "http://dbpedia.org/resource/I_and_Thou_(band)", "http://dbpedia.org/resource/Iamthemorning", "http://dbpedia.org/resource/Il_Balletto_di_Bronzo", "http://dbpedia.org/resource/Il_Castello_di_Atlante", "http://dbpedia.org/resource/Moe_(band)", "http://dbpedia.org/resource/Yesterdays_Rising", "http://dbpedia.org/resource/M\u00e0quina!", "http://dbpedia.org/resource/Olive_Mess", "http://dbpedia.org/resource/Ox.Eagle.Lion.Man", "http://dbpedia.org/resource/The_Earlies", "http://dbpedia.org/resource/Podsdarapomuk", "http://dbpedia.org/resource/Mighty_Baby", "http://dbpedia.org/resource/Zeni_Geva", "http://dbpedia.org/resource/Shadow_Gallery", "http://dbpedia.org/resource/Velvett_Fogg", "http://dbpedia.org/resource/Sig_Ragga", "http://dbpedia.org/resource/35007", "http://dbpedia.org/resource/3_(1980s_band)", "http://dbpedia.org/resource/3_(American_band)", "http://dbpedia.org/resource/Coshish", "http://dbpedia.org/resource/Creedle", "http://dbpedia.org/resource/Cthulhu_Rise", "http://dbpedia.org/resource/Curtea_Veche_nr._43", "http://dbpedia.org/resource/Cybotron_(Australian_band)", "http://dbpedia.org/resource/Daikaiju_(band)", "http://dbpedia.org/resource/Another_Sky_(band)", "http://dbpedia.org/resource/Granicus_(band)", "http://dbpedia.org/resource/Greenslade", "http://dbpedia.org/resource/Greta_Van_Fleet", "http://dbpedia.org/resource/Guilt_Machine", "http://dbpedia.org/resource/Gutbucket_(band)", "http://dbpedia.org/resource/Artificial_Language", "http://dbpedia.org/resource/Astra_(band)", "http://dbpedia.org/resource/Haze_(band)", "http://dbpedia.org/resource/Hearts_Like_Lions", "http://dbpedia.org/resource/Hello_Sleepwalkers", "http://dbpedia.org/resource/Henry_Cow", "http://dbpedia.org/resource/Mabel_Greer's_Toyshop", "http://dbpedia.org/resource/MagellanMusic", "http://dbpedia.org/resource/Magna_Carta_(band)", "http://dbpedia.org/resource/Malicorne_(band)", "http://dbpedia.org/resource/Mandragora_(band)", "http://dbpedia.org/resource/Mandrake_(Japanese_band)", "http://dbpedia.org/resource/Maneige", "http://dbpedia.org/resource/Manfred_Mann's_Earth_Band", "http://dbpedia.org/resource/Brit_Floyd", "http://dbpedia.org/resource/CMX_(band)", "http://dbpedia.org/resource/Caf\u00e9_Jacques", "http://dbpedia.org/resource/Caifanes", "http://dbpedia.org/resource/California_Guitar_Trio", "http://dbpedia.org/resource/Carmen_(band)", "http://dbpedia.org/resource/Centipede_(band)", "http://dbpedia.org/resource/Century_(band)", "http://dbpedia.org/resource/Cervello", "http://dbpedia.org/resource/Rivotrill", "http://dbpedia.org/resource/Rolo_Tomassi", "http://dbpedia.org/resource/Clear_Blue_Sky", "http://dbpedia.org/resource/Clearlight_(French_band)", "http://dbpedia.org/resource/Cliffhanger_(band)", "http://dbpedia.org/resource/Dance_Gavin_Dance", "http://dbpedia.org/resource/Diafana_Krina", "http://dbpedia.org/resource/Dial_(band)", "http://dbpedia.org/resource/Dialog_(band)", "http://dbpedia.org/resource/Diesel_(band)", "http://dbpedia.org/resource/The_Fucking_Champs", "http://dbpedia.org/resource/Forgotten_Roads:_The_Best_of_If", "http://dbpedia.org/resource/Terry_Draper", "http://dbpedia.org/resource/YU_Grupa", "http://dbpedia.org/resource/Harsh_Reality", "http://dbpedia.org/resource/Hautville", "http://dbpedia.org/resource/The_Alfee", "http://dbpedia.org/resource/I_Teoremi", "http://dbpedia.org/resource/Pesniary", "http://dbpedia.org/resource/Splean", "http://dbpedia.org/resource/The_Display_Team", "http://dbpedia.org/resource/Rx_Bandits", "http://dbpedia.org/resource/T2_(band)", "http://dbpedia.org/resource/The_Alan_Parsons_Project", "http://dbpedia.org/resource/Jack_Dupon", "http://dbpedia.org/resource/Jasper_Wrath", "http://dbpedia.org/resource/Judas_Jump", "http://dbpedia.org/resource/Lazuli", "http://dbpedia.org/resource/National_Health", "http://dbpedia.org/resource/Patto", "http://dbpedia.org/resource/The_Quark_Alliance", "http://dbpedia.org/resource/Opus_Avantra", "http://dbpedia.org/resource/The_Birds_of_Satan", "http://dbpedia.org/resource/I_Am_David_Sparkle", "http://dbpedia.org/resource/I_Am_Spoonbender", "http://dbpedia.org/resource/Jano_Band", "http://dbpedia.org/resource/Obiymy_Doshchu", "http://dbpedia.org/resource/Three_Seasons_(band)", "http://dbpedia.org/resource/Wax_Fang", "http://dbpedia.org/resource/Vidoll", "http://dbpedia.org/resource/Altered_State_(band)", "http://dbpedia.org/resource/Alux_Nahual", "http://dbpedia.org/resource/Amaryllis_(band)", "http://dbpedia.org/resource/American_Babies", "http://dbpedia.org/resource/Everything_Everything", "http://dbpedia.org/resource/Exodus_(Polish_band)", "http://dbpedia.org/resource/Extremoduro", "http://dbpedia.org/resource/FSB_(band)", "http://dbpedia.org/resource/Farpoint_(band)", "http://dbpedia.org/resource/Fictionist", "http://dbpedia.org/resource/Final_Conflict_(band)", "http://dbpedia.org/resource/Flash_(band)", "http://dbpedia.org/resource/Floating_Me", "http://dbpedia.org/resource/Flower_Travellin'_Band", "http://dbpedia.org/resource/Flying_Colors_(band)", "http://dbpedia.org/resource/Battle_Circus_(band)", "http://dbpedia.org/resource/Jellyfish_(band)", "http://dbpedia.org/resource/Jethro_Tull_(band)", "http://dbpedia.org/resource/Birth_Control_(band)", "http://dbpedia.org/resource/Blaak_Heat", "http://dbpedia.org/resource/Black_Mountain_(band)", "http://dbpedia.org/resource/Black_Widow_(band)", "http://dbpedia.org/resource/Blackfield", "http://dbpedia.org/resource/Blackwater_Park_(band)", "http://dbpedia.org/resource/Blank_Manuskript", "http://dbpedia.org/resource/Leeland_(band)", "http://dbpedia.org/resource/Ling_tosite_Sigure", "http://dbpedia.org/resource/Navarone_(band)", "http://dbpedia.org/resource/Nekropsi", "http://dbpedia.org/resource/New_England_(band)", "http://dbpedia.org/resource/Ng\u0169_Cung", "http://dbpedia.org/resource/Nick_Mason's_Saucerful_of_Secrets", "http://dbpedia.org/resource/Night_Verses", "http://dbpedia.org/resource/Nightingale_(band)", "http://dbpedia.org/resource/Petrus_Castrus", "http://dbpedia.org/resource/Phoria", "http://dbpedia.org/resource/Proto_(band)", "http://dbpedia.org/resource/Pulsar_(band)", "http://dbpedia.org/resource/Qango_(band)", "http://dbpedia.org/resource/Quill_(band)", "http://dbpedia.org/resource/RPWL", "http://dbpedia.org/resource/Radicales51", "http://dbpedia.org/resource/Thirsty_Moon", "http://dbpedia.org/resource/This_Winter_Machine", "http://dbpedia.org/resource/This_World_(band)", "http://dbpedia.org/resource/This_World_Fair", "http://dbpedia.org/resource/Thomas_Zwijsen", "http://dbpedia.org/resource/Tigran_Hamasyan", "http://dbpedia.org/resource/Wishbone_Ash", "http://dbpedia.org/resource/Wobble_Jaggle_Jiggle", "http://dbpedia.org/resource/World_Trade_(band)", "http://dbpedia.org/resource/Yamantaka_//_Sonic_Titan", "http://dbpedia.org/resource/Yeasayer", "http://dbpedia.org/resource/Engenheiros_do_Hawaii", "http://dbpedia.org/resource/Frogs_Gone_Fishin'", "http://dbpedia.org/resource/Fromuz", "http://dbpedia.org/resource/Fr\u00e1gil", "http://dbpedia.org/resource/Fusion_Orchestra", "http://dbpedia.org/resource/Into_the_Presence", "http://dbpedia.org/resource/Kaveret", "http://dbpedia.org/resource/Shingetsu", "http://dbpedia.org/resource/Lareine", "http://dbpedia.org/resource/Raccomandata_con_Ricevuta_di_Ritorno", "http://dbpedia.org/resource/Sue_Saad_and_the_Next", "http://dbpedia.org/resource/Warhorse_(British_band)", "http://dbpedia.org/resource/In_Case_of_Fire", "http://dbpedia.org/resource/In_the_Woods...", "http://dbpedia.org/resource/Indukti", "http://dbpedia.org/resource/Locomotiv_GT", "http://dbpedia.org/resource/\u00d1u", "http://dbpedia.org/resource/Maxophone", "http://dbpedia.org/resource/Mt._Helium", "http://dbpedia.org/resource/Stick_Men_(prog_band)", "http://dbpedia.org/resource/Upsilon_Acrux", "http://dbpedia.org/resource/Lo-Fi_Resistance", "http://dbpedia.org/resource/\u00deursaflokkurinn", "http://dbpedia.org/resource/Matching_Mole", "http://dbpedia.org/resource/Mamonas_Assassinas", "http://dbpedia.org/resource/Strangefolk", "http://dbpedia.org/resource/Earth_and_Fire", "http://dbpedia.org/resource/East_of_Eden_(band)", "http://dbpedia.org/resource/Eatliz", "http://dbpedia.org/resource/Echoes_and_Signals", "http://dbpedia.org/resource/Echolyn", "http://dbpedia.org/resource/Eden's_Bridge", "http://dbpedia.org/resource/Edison's_Children", "http://dbpedia.org/resource/Elbow_(band)", "http://dbpedia.org/resource/Elder_(band)", "http://dbpedia.org/resource/Electric_Light_Orchestra", "http://dbpedia.org/resource/Elio_e_le_Storie_Tese", "http://dbpedia.org/resource/Analogy_(band)", "http://dbpedia.org/resource/Anarchic_System", "http://dbpedia.org/resource/Ancestors_(band)", "http://dbpedia.org/resource/Anderson_Bruford_Wakeman_Howe", "http://dbpedia.org/resource/J\u00f8rn_Lande", "http://dbpedia.org/resource/Kahvas_Jute", "http://dbpedia.org/resource/Karmic_Juggernaut", "http://dbpedia.org/resource/Lodgic", "http://dbpedia.org/resource/Los_Dug_Dug's", "http://dbpedia.org/resource/LostAlone", "http://dbpedia.org/resource/Lucifer's_Friend", "http://dbpedia.org/resource/Lucius_Hunt", "http://dbpedia.org/resource/Lumerians", "http://dbpedia.org/resource/Lunatic_Soul", "http://dbpedia.org/resource/Byron_(band)", "http://dbpedia.org/resource/Omega_(band)", "http://dbpedia.org/resource/Only_Time_Will_Tell_(song)", "http://dbpedia.org/resource/Opeth", "http://dbpedia.org/resource/Outlaws_of_Ravenhurst", "http://dbpedia.org/resource/Cinema_(band)", "http://dbpedia.org/resource/Circa_(band)", "http://dbpedia.org/resource/Ser\u00fa_Gir\u00e1n", "http://dbpedia.org/resource/Seventh_Dimension", "http://dbpedia.org/resource/Shturcite", "http://dbpedia.org/resource/Shyne_Factory", "http://dbpedia.org/resource/Siddharta_(band)", "http://dbpedia.org/resource/Spectrum_(band)", "http://dbpedia.org/resource/Sphere3", "http://dbpedia.org/resource/Split_Enz", "http://dbpedia.org/resource/Spock's_Beard", "http://dbpedia.org/resource/Spontaneous_Combustion_(English_band)", "http://dbpedia.org/resource/Stackridge", "http://dbpedia.org/resource/Stern-Combo_Mei\u00dfen", "http://dbpedia.org/resource/Dopapod", "http://dbpedia.org/resource/Doris_Norton", "http://dbpedia.org/resource/Dorje_(band)", "http://dbpedia.org/resource/Egg_(band)", "http://dbpedia.org/resource/Ekseption", "http://dbpedia.org/resource/El_Ten_Eleven", "http://dbpedia.org/resource/Jovian_Storm", "http://dbpedia.org/resource/Kingfisher_Sky", "http://dbpedia.org/resource/Landmarq", "http://dbpedia.org/resource/Sweet_Billy_Pilgrim", "http://dbpedia.org/resource/Kingston_Wall", "http://dbpedia.org/resource/Tinyfish", "http://dbpedia.org/resource/Rainburn", "http://dbpedia.org/resource/Biffy_Clyro", "http://dbpedia.org/resource/Big_Big_Train", "http://dbpedia.org/resource/Big_Sugar_(band)", "http://dbpedia.org/resource/Bigelf", "http://dbpedia.org/resource/Bijelo_Dugme", "http://dbpedia.org/resource/Birds_of_Fire", "http://dbpedia.org/resource/Black_Midi", "http://dbpedia.org/resource/Blackfeather", "http://dbpedia.org/resource/Blackmail_(band)", "http://dbpedia.org/resource/Bleeding_Oath", "http://dbpedia.org/resource/Blind_Illusion", "http://dbpedia.org/resource/Humus_(band)", "http://dbpedia.org/resource/Hybrid_Ice", "http://dbpedia.org/resource/IQ_(band)", "http://dbpedia.org/resource/Impulse_(band)", "http://dbpedia.org/resource/Indelible_Murtceps", "http://dbpedia.org/resource/Backing_musicians_for_Trey_Anastasio", "http://dbpedia.org/resource/Baiser", "http://dbpedia.org/resource/Ballet_for_a_Girl_in_Buchannon", "http://dbpedia.org/resource/Beyond_the_Bridge", "http://dbpedia.org/resource/King_Crimson", "http://dbpedia.org/resource/King_Never", "http://dbpedia.org/resource/Klaatu_(band)", "http://dbpedia.org/resource/Knifeworld", "http://dbpedia.org/resource/Little_Tragedies_(rock_group)", "http://dbpedia.org/resource/Budka_Suflera", "http://dbpedia.org/resource/Metr\u00f4_(band)", "http://dbpedia.org/resource/Mew_(band)", "http://dbpedia.org/resource/Midas_(Japanese_band)", "http://dbpedia.org/resource/Miriodor", "http://dbpedia.org/resource/Panzerpappa", "http://dbpedia.org/resource/Parvaaz_(band)", "http://dbpedia.org/resource/Pattern-Seeking_Animals", "http://dbpedia.org/resource/Days_Between_Stations", "http://dbpedia.org/resource/Dead_Letter_Circus", "http://dbpedia.org/resource/Dead_Rooster", "http://dbpedia.org/resource/Dearly_Departed", "http://dbpedia.org/resource/Decortica", "http://dbpedia.org/resource/DeeExpus", "http://dbpedia.org/resource/Dukes_of_the_Orient", "http://dbpedia.org/resource/Earthsuit", "http://dbpedia.org/resource/Echo_Helstrom_(band)", "http://dbpedia.org/resource/Eclection", "http://dbpedia.org/resource/Edensong", "http://dbpedia.org/resource/Edison_Glass", "http://dbpedia.org/resource/Enochian_Theory", "http://dbpedia.org/resource/Epitaph_(band)", "http://dbpedia.org/resource/Ermine_(band)", "http://dbpedia.org/resource/Esquire_(band)", "http://dbpedia.org/resource/Explorers_Club_(band)", "http://dbpedia.org/resource/Extra_Life_(band)", "http://dbpedia.org/resource/FM_(Canadian_band)", "http://dbpedia.org/resource/Fair_to_Midland", "http://dbpedia.org/resource/Family_(band)", "http://dbpedia.org/resource/Faust_(band)", "http://dbpedia.org/resource/Escanaba_Firing_Line", "http://dbpedia.org/resource/Finch_(Dutch_band)", "http://dbpedia.org/resource/Flights_(band)", "http://dbpedia.org/resource/Forever_More_(band)", "http://dbpedia.org/resource/Fortune_(band)", "http://dbpedia.org/resource/Fredrik_(band)", "http://dbpedia.org/resource/Fuchsia_(band)", "http://dbpedia.org/resource/Fuzzy_Duck_(band)", "http://dbpedia.org/resource/GPS_(band)", "http://dbpedia.org/resource/GTR_(band)", "http://dbpedia.org/resource/Galahad_(UK_band)", "http://dbpedia.org/resource/Garfield_(band)", "http://dbpedia.org/resource/Gaylord_(band)", "http://dbpedia.org/resource/Gentle_Giant", "http://dbpedia.org/resource/The_Fire_Theft", "http://dbpedia.org/resource/The_Future_Kings_of_England", "http://dbpedia.org/resource/Glass_Moon", "http://dbpedia.org/resource/Godiego", "http://dbpedia.org/resource/GoodThunder", "http://dbpedia.org/resource/Goodwen", "http://dbpedia.org/resource/Grand_Baton_(band)", "http://dbpedia.org/resource/Maktub", "http://dbpedia.org/resource/Presto_Ballet", "http://dbpedia.org/resource/Quidam_(band)", "http://dbpedia.org/resource/SouthFM", "http://dbpedia.org/resource/Trophy_Scars", "http://dbpedia.org/resource/Yoso", "http://dbpedia.org/resource/Ooberman", "http://dbpedia.org/resource/Rocket_Scientists", "http://dbpedia.org/resource/Sloche_(band)", "http://dbpedia.org/resource/Von_Hertzen_Brothers", "http://dbpedia.org/resource/White_Denim", "http://dbpedia.org/resource/K\u00b2_(band)", "http://dbpedia.org/resource/Night_Sun", "http://dbpedia.org/resource/Psy-S", "http://dbpedia.org/resource/The_Alan_Bown_Set", "http://dbpedia.org/resource/The_Artaud_Beats", "http://dbpedia.org/resource/The_Hsu-nami", "http://dbpedia.org/resource/Sendelica", "http://dbpedia.org/resource/Sensations'_Fix", "http://dbpedia.org/resource/Wounded_Warrior_Band", "http://dbpedia.org/resource/Catherine_Ribeiro_+_Alpes", "http://dbpedia.org/resource/Cave_In", "http://dbpedia.org/resource/Celelalte_Cuvinte", "http://dbpedia.org/resource/Yours_For_Mine", "http://dbpedia.org/resource/Youthmovies", "http://dbpedia.org/resource/Yuri_Gagarin_(band)", "http://dbpedia.org/resource/Zaum_(band)", "http://dbpedia.org/resource/Latte_e_Miele", "http://dbpedia.org/resource/Qoph_(band)", "http://dbpedia.org/resource/Solstice_Coil", "http://dbpedia.org/resource/Inugami_Circus-dan", "http://dbpedia.org/resource/Violinski", "http://dbpedia.org/resource/Kalijuge", "http://dbpedia.org/resource/Zi:Kill", "http://dbpedia.org/resource/Third_Harvest", "http://dbpedia.org/resource/Melodramus", "http://dbpedia.org/resource/Ten_Jinn", "http://dbpedia.org/resource/The_Stiletto_Formal", "http://dbpedia.org/resource/Pra\u017esk\u00fd_v\u00fdb\u011br", "http://dbpedia.org/resource/Press_to_Meco", "http://dbpedia.org/resource/The_Messthetics", "http://dbpedia.org/resource/The_Nice_Ones", "http://dbpedia.org/resource/The_Physics_House_Band", "http://dbpedia.org/resource/The_Big_Wu", "http://dbpedia.org/resource/Pivio_and_Aldo_De_Scalzi", "http://dbpedia.org/resource/Los_Jaivas", "http://dbpedia.org/resource/Tomorrow's_Child", "http://dbpedia.org/resource/Zechs_Marquise", "http://dbpedia.org/resource/Qayaas", "http://dbpedia.org/resource/Tritonus_(band)", "http://dbpedia.org/resource/Pierre_Moerlen's_Gong", "http://dbpedia.org/resource/Scarlet_Party", "http://dbpedia.org/resource/Sky_Architect", "http://dbpedia.org/resource/Suspyre", "http://dbpedia.org/resource/Savage_Grace_(Michigan_rock_band)", "http://dbpedia.org/resource/Pas\u0103rea_Rock", "http://dbpedia.org/resource/Pholhas", "http://dbpedia.org/resource/The_Vintage_Caravan"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/end> <http://dbpedia.org/resource/Kazan> } "}, "answers": ["http://dbpedia.org/resource/Moscow-Kazan_high-speed_railway"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/manufacturer> <http://dbpedia.org/resource/Asus> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Device>}"}, "answers": ["http://dbpedia.org/resource/Asus_Transformer_Pad_TF701T", "http://dbpedia.org/resource/Asus_ZenFone_8", "http://dbpedia.org/resource/Asus_ZenFone_9", "http://dbpedia.org/resource/PlayStation_3", "http://dbpedia.org/resource/Asus_EeeBook", "http://dbpedia.org/resource/Nexus_7_(2013)", "http://dbpedia.org/resource/Nexus_Player", "http://dbpedia.org/resource/ROG_Phone", "http://dbpedia.org/resource/ROG_Phone_5", "http://dbpedia.org/resource/ROG_Phone_6"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Fran\u00e7ois_Beauchemin> <http://dbpedia.org/ontology/formerTeam> ?uri } "}, "answers": ["http://dbpedia.org/resource/Anaheim_Ducks", "http://dbpedia.org/resource/Colorado_Avalanche", "http://dbpedia.org/resource/Columbus_Blue_Jackets", "http://dbpedia.org/resource/Montreal_Canadiens", "http://dbpedia.org/resource/Toronto_Maple_Leafs"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Red_Marauder> <http://dbpedia.org/ontology/colour> ?uri } "}, "answers": ["http://dbpedia.org/resource/United_Kingdom"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/doctoralStudents> <http://dbpedia.org/resource/Erich_Bagge> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}"}, "answers": ["http://dbpedia.org/resource/Werner_Heisenberg"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/parentOrganisation> <http://dbpedia.org/resource/Gestapo> . ?x <http://dbpedia.org/property/leaderName> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/birthPlace> <http://dbpedia.org/resource/United_States> . ?x <http://dbpedia.org/ontology/location> ?uri . }"}, "answers": ["9"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/company> <http://dbpedia.org/resource/HBO> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": ["http://dbpedia.org/resource/All_Aboard!_Rosie's_Family_Cruise", "http://dbpedia.org/resource/Always_Outnumbered", "http://dbpedia.org/resource/Def_Comedy_Jam", "http://dbpedia.org/resource/Happily_Ever_After:_Fairy_Tales_for_Every_Child", "http://dbpedia.org/resource/Tagget", "http://dbpedia.org/resource/Whitewash_(1994_film)", "http://dbpedia.org/resource/Angry_Boys", "http://dbpedia.org/resource/Arresting_Behavior", "http://dbpedia.org/resource/Entourage_(American_TV_series)", "http://dbpedia.org/resource/Get_Smart_(1995_TV_series)", "http://dbpedia.org/resource/Getting_On_(American_TV_series)", "http://dbpedia.org/resource/Glory!_Glory!", "http://dbpedia.org/resource/The_Bedford_Diaries", "http://dbpedia.org/resource/The_Ben_Stiller_Show", "http://dbpedia.org/resource/Bored_to_Death", "http://dbpedia.org/resource/Raven_Hawk", "http://dbpedia.org/resource/Real_Time_with_Bill_Maher", "http://dbpedia.org/resource/The_Country_Mouse_and_the_City_Mouse:_A_Christmas_Tale", "http://dbpedia.org/resource/The_Erotic_Traveler", "http://dbpedia.org/resource/The_Girl's_Guide_to_Depravity", "http://dbpedia.org/resource/The_Jury_(TV_series)", "http://dbpedia.org/resource/The_Last_Frontier_(TV_series)", "http://dbpedia.org/resource/The_Movies_(miniseries)", "http://dbpedia.org/resource/The_Ricky_Gervais_Show_(TV_series)", "http://dbpedia.org/resource/The_Righteous_Gemstones", "http://dbpedia.org/resource/Jonah_from_Tonga", "http://dbpedia.org/resource/Band_of_Brothers_(miniseries)", "http://dbpedia.org/resource/Insecure_(TV_series)", "http://dbpedia.org/resource/Ja'mie:_Private_School_Girl", "http://dbpedia.org/resource/A_Tiny_Audience", "http://dbpedia.org/resource/Cathouse:_The_Series", "http://dbpedia.org/resource/Capadocia_(TV_series)", "http://dbpedia.org/resource/Down_the_Shore", "http://dbpedia.org/resource/Countdown_to_Looking_Glass", "http://dbpedia.org/resource/Crashbox", "http://dbpedia.org/resource/Curb_Your_Enthusiasm", "http://dbpedia.org/resource/Daddy_Dearest", "http://dbpedia.org/resource/HBO_Storybook_Musicals", "http://dbpedia.org/resource/Roc_(TV_series)", "http://dbpedia.org/resource/Lip_Service_(1988_film)", "http://dbpedia.org/resource/Luck_(TV_series)", "http://dbpedia.org/resource/Lucky_Louie", "http://dbpedia.org/resource/Olive_Kitteridge_(miniseries)", "http://dbpedia.org/resource/Show_Me_a_Hero", "http://dbpedia.org/resource/Blinded_by_the_Lights_(TV_series)", "http://dbpedia.org/resource/Hung_(TV_series)", "http://dbpedia.org/resource/Little_Britain_USA", "http://dbpedia.org/resource/Path_to_War"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lucy_Sullivan_Is_Getting_Married> <http://dbpedia.org/property/starring> ?uri } "}, "answers": ["http://dbpedia.org/resource/Debbie_Chazen", "http://dbpedia.org/resource/Sam_Loggin", "http://dbpedia.org/resource/Gerard_Butler", "http://dbpedia.org/resource/Sara_Stockbridge", "http://dbpedia.org/resource/Gwyneth_Strong", "http://dbpedia.org/resource/Letitia_Dean", "http://dbpedia.org/resource/Michael_Troughton", "http://dbpedia.org/resource/Zo\u00eb_Eeles"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/currentMembers> <http://dbpedia.org/resource/Hynief> . ?uri <http://dbpedia.org/property/associatedMusicalArtist> ?x . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/foundation> <http://dbpedia.org/resource/New_York> . ?uri <http://dbpedia.org/ontology/board> ?x . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/channel> <http://dbpedia.org/resource/NBC> . ?uri <http://dbpedia.org/property/presenter> ?x . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/Croix_de_G\u00e9re> . ?x <http://dbpedia.org/ontology/territory> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lao_Plaza_Hotel> <http://dbpedia.org/property/location> ?uri } "}, "answers": ["63"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pandaruan_Bridge> <http://dbpedia.org/ontology/owner> ?uri . <http://dbpedia.org/resource/Malaysia_Junior_Hockey_League> <http://dbpedia.org/property/country> ?uri} "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/children> <http://dbpedia.org/resource/Mother_Mary_Alphonsa> . ?uri <http://dbpedia.org/ontology/writer> <http://dbpedia.org/resource/Julian_Hawthorne> . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/hubAirport> <http://dbpedia.org/resource/Selangor> . ?x <http://dbpedia.org/property/hubs> ?uri }"}, "answers": ["http://dbpedia.org/resource/Selangor", "http://dbpedia.org/resource/Subang,_Indonesia", "http://dbpedia.org/resource/Sultan_Abdul_Aziz_Shah_Airport", "http://dbpedia.org/resource/Malaysia"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/United_World_College_of_Costa_Rica> <http://dbpedia.org/property/president> ?uri } "}, "answers": ["http://dbpedia.org/resource/Nelson_Mandela", "http://dbpedia.org/resource/Queen_Noor"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cheasty_Boulevard_South> <http://dbpedia.org/property/landmarks> ?x . ?x <http://dbpedia.org/ontology/city> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/director> <http://dbpedia.org/resource/Ridley_Scott> . ?uri <http://dbpedia.org/property/musicComposer> <http://dbpedia.org/resource/Vangelis> . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/language> <http://dbpedia.org/resource/French_language> . ?x <http://dbpedia.org/property/currency> ?uri . }"}, "answers": ["72"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/battle> <http://dbpedia.org/resource/Arthur_St._Clair> . ?x <http://dbpedia.org/property/combatant> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/ingredient> <http://dbpedia.org/resource/Pork> . ?x <http://dbpedia.org/property/editing> ?uri }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Central_European_Summer_Time> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Newspaper>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Paul_Paul_Demi\u00e9ville> <http://dbpedia.org/property/doctoralAdvisor> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/presenter> <http://dbpedia.org/resource/Swedish_Academy> . ?x <http://dbpedia.org/property/awards> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/academicPhilosophy> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Journal>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lula_J._Davis> <http://dbpedia.org/property/residence> ?uri . <http://dbpedia.org/resource/John_McTaggart_(jockey)> <http://dbpedia.org/ontology/deathPlace> ?uri} "}, "answers": ["http://dbpedia.org/resource/Maryland"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lake_Victoria> <http://dbpedia.org/ontology/nearestCity> ?uri } "}, "answers": ["http://dbpedia.org/resource/Tanzania", "http://dbpedia.org/resource/Entebbe", "http://dbpedia.org/resource/Uganda", "http://dbpedia.org/resource/Kenya", "http://dbpedia.org/resource/Musoma", "http://dbpedia.org/resource/Mwanza", "http://dbpedia.org/resource/Bukoba", "http://dbpedia.org/resource/Homa_Bay", "http://dbpedia.org/resource/Kendu_Bay", "http://dbpedia.org/resource/Jinja,_Uganda", "http://dbpedia.org/resource/Kampala", "http://dbpedia.org/resource/Kisumu"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Charles_LeMaire> <http://dbpedia.org/property/awards> ?uri . <http://dbpedia.org/resource/Eric_Roth> <http://dbpedia.org/ontology/award> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Academy_Awards"]}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/maintainedBy> <http://dbpedia.org/resource/Malaysian_PWD> . ?x <http://dbpedia.org/property/design> ?uri }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/company> <http://dbpedia.org/resource/HBO> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": ["48"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/canonizedBy> <http://dbpedia.org/resource/Pope_Benedict_XVI> . }"}, "answers": ["44"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/work> <http://dbpedia.org/resource/Mus\u00e9e_d'Orsay> . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/knownFor> <http://dbpedia.org/resource/University_of_Toronto> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/author> <http://dbpedia.org/resource/Miguel_de_Cervantes> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book>}"}, "answers": ["4"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/bandMember> <http://dbpedia.org/resource/Skull_Gang> . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/league> <http://dbpedia.org/resource/Czech_Extraliga> . ?x <http://dbpedia.org/ontology/formerTeam> ?uri . }"}, "answers": ["http://dbpedia.org/resource/HK_Dukla_Tren\u010d\u00edn", "http://dbpedia.org/resource/HK_Nitra", "http://dbpedia.org/resource/HK_Orange_20", "http://dbpedia.org/resource/Muskegon_Lumberjacks", "http://dbpedia.org/resource/Vancouver_Giants", "http://dbpedia.org/resource/HK_36_Skalica", "http://dbpedia.org/resource/Red_Deer_Rebels", "http://dbpedia.org/resource/HC_'05_Bansk\u00e1_Bystrica", "http://dbpedia.org/resource/HC_Slovan_Bratislava", "http://dbpedia.org/resource/HC_Sparta_Praha", "http://dbpedia.org/resource/Detroit_Red_Wings", "http://dbpedia.org/resource/Metallurg_Magnitogorsk", "http://dbpedia.org/resource/Carolina_Hurricanes", "http://dbpedia.org/resource/HC_Neftekhimik_Nizhnekamsk", "http://dbpedia.org/resource/HC_Ocel\u00e1\u0159i_T\u0159inec", "http://dbpedia.org/resource/Stockton_Heat", "http://dbpedia.org/resource/HC_Dynamo_Pardubice", "http://dbpedia.org/resource/V\u00e5lerenga_Ishockey", "http://dbpedia.org/resource/Furuset_Ishockey", "http://dbpedia.org/resource/GCK_Lions", "http://dbpedia.org/resource/Tappara", "http://dbpedia.org/resource/HC_B\u00edl\u00ed_Tyg\u0159i_Liberec", "http://dbpedia.org/resource/HC_Energie_Karlovy_Vary", "http://dbpedia.org/resource/HC_Kometa_Brno", "http://dbpedia.org/resource/HC_\u0160koda_Plze\u0148", "http://dbpedia.org/resource/Orli_Znojmo", "http://dbpedia.org/resource/Pir\u00e1ti_Chomutov", "http://dbpedia.org/resource/Mora_IK", "http://dbpedia.org/resource/Philadelphia_Flyers", "http://dbpedia.org/resource/Edmonton_Oilers", "http://dbpedia.org/resource/BK_Mlad\u00e1_Boleslav", "http://dbpedia.org/resource/HC_TPS", "http://dbpedia.org/resource/Lukko", "http://dbpedia.org/resource/Amur_Khabarovsk", "http://dbpedia.org/resource/JYP_Jyv\u00e4skyl\u00e4", "http://dbpedia.org/resource/Hartford_Wolf_Pack", "http://dbpedia.org/resource/HC_Slavia_Praha", "http://dbpedia.org/resource/HC_V\u00edtkovice_Ridera", "http://dbpedia.org/resource/Peoria_Rivermen_(AHL)", "http://dbpedia.org/resource/HK_Liep\u0101jas_Metalurgs", "http://dbpedia.org/resource/HK_Riga", "http://dbpedia.org/resource/Dinamo_Riga", "http://dbpedia.org/resource/SK_Trha\u010di_Kada\u0148", "http://dbpedia.org/resource/TJ_Slovan_D\u011b\u010d\u00edn", "http://dbpedia.org/resource/Espoo_Blues", "http://dbpedia.org/resource/HC_Ko\u0161ice", "http://dbpedia.org/resource/HC_Yugra", "http://dbpedia.org/resource/Oulun_K\u00e4rp\u00e4t", "http://dbpedia.org/resource/BK_Havl\u00ed\u010dk\u016fv_Brod", "http://dbpedia.org/resource/Motor_\u010cesk\u00e9_Bud\u011bjovice", "http://dbpedia.org/resource/Lausanne_HC", "http://dbpedia.org/resource/HC_Fr\u00fddek-M\u00edstek", "http://dbpedia.org/resource/HC_Sibir_Novosibirsk", "http://dbpedia.org/resource/London_Knights", "http://dbpedia.org/resource/Avangard_Omsk", "http://dbpedia.org/resource/Boston_Bruins", "http://dbpedia.org/resource/Buffalo_Sabres", "http://dbpedia.org/resource/St._Louis_Blues", "http://dbpedia.org/resource/SC_Rapperswil-Jona_Lakers", "http://dbpedia.org/resource/San_Jose_Sharks", "http://dbpedia.org/resource/New_Jersey_Devils", "http://dbpedia.org/resource/HC_Litv\u00ednov", "http://dbpedia.org/resource/Rochester_Americans", "http://dbpedia.org/resource/Metallurg_Novokuznetsk", "http://dbpedia.org/resource/Colorado_Avalanche", "http://dbpedia.org/resource/HC_Donbass", "http://dbpedia.org/resource/HC_Lev_Poprad", "http://dbpedia.org/resource/Florida_Panthers", "http://dbpedia.org/resource/Czech_Extraliga", "http://dbpedia.org/resource/National_Hockey_League", "http://dbpedia.org/resource/Ryt\u00ed\u0159i_Kladno", "http://dbpedia.org/resource/Ottawa_Senators", "http://dbpedia.org/resource/KalPa", "http://dbpedia.org/resource/\u0160HK_37_Pie\u0161\u0165any", "http://dbpedia.org/resource/Barys_Nur-Sultan", "http://dbpedia.org/resource/Charlotte_Checkers", "http://dbpedia.org/resource/Lahti_Pelicans", "http://dbpedia.org/resource/Manchester_Monarchs_(AHL)", "http://dbpedia.org/resource/Ontario_Reign", "http://dbpedia.org/resource/Utica_Comets", "http://dbpedia.org/resource/Chicago_Wolves", "http://dbpedia.org/resource/Gen\u00e8ve-Servette_HC", "http://dbpedia.org/resource/Columbus_Blue_Jackets", "http://dbpedia.org/resource/HC_Davos", "http://dbpedia.org/resource/Calgary_Flames", "http://dbpedia.org/resource/New_York_Rangers", "http://dbpedia.org/resource/Mountfield_HK", "http://dbpedia.org/resource/HC_Most", "http://dbpedia.org/resource/HC_Stadion_Litom\u011b\u0159ice", "http://dbpedia.org/resource/San_Antonio_Rampage", "http://dbpedia.org/resource/Utah_Grizzlies_(1995\u20132005)", "http://dbpedia.org/resource/Springfield_Falcons", "http://dbpedia.org/resource/HK_Martin", "http://dbpedia.org/resource/Buran_Voronezh", "http://dbpedia.org/resource/HC_Neman_Grodno", "http://dbpedia.org/resource/Hershey_Bears", "http://dbpedia.org/resource/Lowell_Devils", "http://dbpedia.org/resource/HK_Acroni_Jesenice", "http://dbpedia.org/resource/HK_Slavija", "http://dbpedia.org/resource/Team_Zagreb", "http://dbpedia.org/resource/AIK_IF", "http://dbpedia.org/resource/Aalborg_Pirates", "http://dbpedia.org/resource/Herlev_Eagles", "http://dbpedia.org/resource/KHL_Medve\u0161\u010dak_Zagreb", "http://dbpedia.org/resource/Sparta_Warriors", "http://dbpedia.org/resource/IK_Oskarshamn", "http://dbpedia.org/resource/R\u00f8dovre_Mighty_Bulls", "http://dbpedia.org/resource/AZ_Hav\u00ed\u0159ov", "http://dbpedia.org/resource/Stoczniowiec_Gda\u0144sk", "http://dbpedia.org/resource/Cracovia_(ice_hockey)", "http://dbpedia.org/resource/HC_Dukla_Jihlava", "http://dbpedia.org/resource/Fargo_Force", "http://dbpedia.org/resource/Edmonton_Oil_Kings", "http://dbpedia.org/resource/Kamloops_Blazers", "http://dbpedia.org/resource/Norfolk_Admirals_(AHL)", "http://dbpedia.org/resource/HC_Dynamo_Moscow", "http://dbpedia.org/resource/Severstal_Cherepovets", "http://dbpedia.org/resource/Nashville_Predators", "http://dbpedia.org/resource/Tampa_Bay_Lightning", "http://dbpedia.org/resource/HK_91_Senica", "http://dbpedia.org/resource/HK_Poprad", "http://dbpedia.org/resource/Draci_\u0160umperk", "http://dbpedia.org/resource/SK_Hor\u00e1ck\u00e1_Slavia_T\u0159eb\u00ed\u010d", "http://dbpedia.org/resource/PSG_Berani_Zl\u00edn", "http://dbpedia.org/resource/Ak_Bars_Kazan", "http://dbpedia.org/resource/HKM_Zvolen", "http://dbpedia.org/resource/HK_Spi\u0161sk\u00e1_Nov\u00e1_Ves", "http://dbpedia.org/resource/HC_07_Detva", "http://dbpedia.org/resource/HC_Kunlun_Red_Star", "http://dbpedia.org/resource/Chicago_Blackhawks", "http://dbpedia.org/resource/Winnipeg_Jets", "http://dbpedia.org/resource/Admiral_Vladivostok", "http://dbpedia.org/resource/HC_Sochi", "http://dbpedia.org/resource/HC_Spartak_Moscow", "http://dbpedia.org/resource/Providence_Bruins", "http://dbpedia.org/resource/Vlci_\u017dilina", "http://dbpedia.org/resource/HC_Vrchlab\u00ed", "http://dbpedia.org/resource/Everett_Silvertips", "http://dbpedia.org/resource/Saskatoon_Blades", "http://dbpedia.org/resource/Springfield_Indians", "http://dbpedia.org/resource/Peoria_Rivermen_(IHL)", "http://dbpedia.org/resource/Long_Beach_Ice_Dogs", "http://dbpedia.org/resource/Orlando_Solar_Bears_(IHL)", "http://dbpedia.org/resource/Toronto_Maple_Leafs", "http://dbpedia.org/resource/VHK_Vset\u00edn", "http://dbpedia.org/resource/Atlant_Moscow_Oblast", "http://dbpedia.org/resource/Atlanta_Thrashers", "http://dbpedia.org/resource/Traktor_Chelyabinsk", "http://dbpedia.org/resource/HC_Olomouc", "http://dbpedia.org/resource/HC_Lada_Togliatti", "http://dbpedia.org/resource/Metallurg_Zhlobin", "http://dbpedia.org/resource/Anaheim_Ducks", "http://dbpedia.org/resource/American_Hockey_League", "http://dbpedia.org/resource/Evansville_IceMen", "http://dbpedia.org/resource/ECHL", "http://dbpedia.org/resource/Elmira_Jackals", "http://dbpedia.org/resource/Binghamton_Senators", "http://dbpedia.org/resource/Washington_Capitals", "http://dbpedia.org/resource/Montreal_Canadiens", "http://dbpedia.org/resource/HC_Vityaz", "http://dbpedia.org/resource/F\u00e4rjestad_BK", "http://dbpedia.org/resource/Salavat_Yulaev_Ufa", "http://dbpedia.org/resource/HC_Lev_Praha", "http://dbpedia.org/resource/EC_KAC", "http://dbpedia.org/resource/Ilves", "http://dbpedia.org/resource/Jokerit", "http://dbpedia.org/resource/HC_Dinamo_Minsk", "http://dbpedia.org/resource/\u00d6rebro_HK", "http://dbpedia.org/resource/MHk_32_Liptovsk\u00fd_Mikul\u00e1\u0161", "http://dbpedia.org/resource/Lokomotiv_Yaroslavl", "http://dbpedia.org/resource/Avtomobilist_Yekaterinburg", "http://dbpedia.org/resource/EC_VSV", "http://dbpedia.org/resource/HC_Bozen\u2013Bolzano", "http://dbpedia.org/resource/HC_ZUBR_P\u0159erov", "http://dbpedia.org/resource/Rapaces_de_Gap", "http://dbpedia.org/resource/\u00c9toile_Noire_de_Strasbourg", "http://dbpedia.org/resource/Binghamton_Rangers", "http://dbpedia.org/resource/Porin_\u00c4ss\u00e4t_(men's_ice_hockey)", "http://dbpedia.org/resource/Portland_Pirates", "http://dbpedia.org/resource/Richmond_Renegades", "http://dbpedia.org/resource/EHC_Freiburg", "http://dbpedia.org/resource/Manitoba_Moose", "http://dbpedia.org/resource/Des_Moines_Buccaneers", "http://dbpedia.org/resource/HC_Slovan_\u00daste\u010dt\u00ed_Lvi", "http://dbpedia.org/resource/Dallas_Stars", "http://dbpedia.org/resource/Pittsburgh_Penguins", "http://dbpedia.org/resource/HC_Nov\u00e9_Z\u00e1mky", "http://dbpedia.org/resource/Amarillo_Wranglers_(NAHL)", "http://dbpedia.org/resource/HK_95_Panthers_Pova\u017esk\u00e1_Bystrica", "http://dbpedia.org/resource/SaiPa", "http://dbpedia.org/resource/Waterloo_Black_Hawks", "http://dbpedia.org/resource/Hamilton_Bulldogs_(AHL)", "http://dbpedia.org/resource/Kansas_City_Blades", "http://dbpedia.org/resource/Columbia_Inferno", "http://dbpedia.org/resource/Br\u00fbleurs_de_Loups", "http://dbpedia.org/resource/Dragons_de_Rouen", "http://dbpedia.org/resource/Vancouver_Canucks", "http://dbpedia.org/resource/Arizona_Coyotes", "http://dbpedia.org/resource/HC_RT_Torax_Poruba", "http://dbpedia.org/resource/Atlanta_Gladiators", "http://dbpedia.org/resource/Dornbirn_Bulldogs", "http://dbpedia.org/resource/Lemp\u00e4\u00e4l\u00e4n_Kisa", "http://dbpedia.org/resource/MHK_Dubnica_nad_V\u00e1hom", "http://dbpedia.org/resource/HK_Liep\u0101ja", "http://dbpedia.org/resource/SK_LSPA/Riga", "http://dbpedia.org/resource/Toronto_Marlies", "http://dbpedia.org/resource/Mikkelin_Jukurit", "http://dbpedia.org/resource/Torpedo_Nizhny_Novgorod", "http://dbpedia.org/resource/Bridgeport_Islanders", "http://dbpedia.org/resource/Modo_Hockey", "http://dbpedia.org/resource/Albany_River_Rats", "http://dbpedia.org/resource/Sarnia_Sting", "http://dbpedia.org/resource/HC_Ben\u00e1tky_nad_Jizerou", "http://dbpedia.org/resource/HC_Shakhtyor_Soligorsk", "http://dbpedia.org/resource/KLH_Vajgar_Jind\u0159ich\u016fv_Hradec", "http://dbpedia.org/resource/HC_Beroun\u0161t\u00ed_Medv\u011bdi", "http://dbpedia.org/resource/Russian_Superleague", "http://dbpedia.org/resource/Los_Angeles_Kings", "http://dbpedia.org/resource/Gatineau_Olympiques", "http://dbpedia.org/resource/HC_Fribourg-Gott\u00e9ron", "http://dbpedia.org/resource/Link\u00f6ping_HC", "http://dbpedia.org/resource/R\u00f6gle_BK", "http://dbpedia.org/resource/HK_Kurbads", "http://dbpedia.org/resource/HK_Riga_2000", "http://dbpedia.org/resource/Feh\u00e9rv\u00e1r_AV19", "http://dbpedia.org/resource/Idaho_Steelheads", "http://dbpedia.org/resource/Iisalmen_Peli-Karhut", "http://dbpedia.org/resource/Grand_Rapids_Griffins", "http://dbpedia.org/resource/Rockford_IceHogs", "http://dbpedia.org/resource/Bryn\u00e4s_IF", "http://dbpedia.org/resource/Milwaukee_Admirals", "http://dbpedia.org/resource/V\u00e4sterviks_IK", "http://dbpedia.org/resource/Omaha_Lancers", "http://dbpedia.org/resource/SHC_Klatovy", "http://dbpedia.org/resource/Debreceni_Hoki_Klub", "http://dbpedia.org/resource/Charlotte_Checkers_(1993\u20132010)", "http://dbpedia.org/resource/DVTK_Jegesmedv\u00e9k", "http://dbpedia.org/resource/MAC_Budapest", "http://dbpedia.org/resource/Orlando_Solar_Bears", "http://dbpedia.org/resource/HC_Pre\u0161ov_Penguins", "http://dbpedia.org/resource/HC_Ambr\u00ec-Piotta", "http://dbpedia.org/resource/HC_Izhstal", "http://dbpedia.org/resource/HC_Lugano", "http://dbpedia.org/resource/Skellefte\u00e5_AIK", "http://dbpedia.org/resource/Leksands_IF", "http://dbpedia.org/resource/Worcester_IceCats", "http://dbpedia.org/resource/Laval_Rocket", "http://dbpedia.org/resource/St._John's_IceCaps", "http://dbpedia.org/resource/EC_Red_Bull_Salzburg", "http://dbpedia.org/resource/Malm\u00f6_Redhawks", "http://dbpedia.org/resource/EHC_Kloten", "http://dbpedia.org/resource/Peterborough_Petes", "http://dbpedia.org/resource/Albany_Devils", "http://dbpedia.org/resource/Baie-Comeau_Drakkar", "http://dbpedia.org/resource/Adirondack_Phantoms", "http://dbpedia.org/resource/Rimouski_Oc\u00e9anic", "http://dbpedia.org/resource/Lehigh_Valley_Phantoms", "http://dbpedia.org/resource/HPK", "http://dbpedia.org/resource/Timr\u00e5_IK", "http://dbpedia.org/resource/Cincinnati_Mighty_Ducks", "http://dbpedia.org/resource/HC_CSKA_Moscow", "http://dbpedia.org/resource/Victoriaville_Tigres", "http://dbpedia.org/resource/Vegas_Golden_Knights", "http://dbpedia.org/resource/Fr\u00f6lunda_HC", "http://dbpedia.org/resource/HC_\u00c4ss\u00e4t_Pori_Oy", "http://dbpedia.org/resource/HC_B\u0159eclav", "http://dbpedia.org/resource/HC_Chrudim", "http://dbpedia.org/resource/Texas_Stars", "http://dbpedia.org/resource/Bakersfield_Condors", "http://dbpedia.org/resource/S\u00f6dert\u00e4lje_SK", "http://dbpedia.org/resource/Kazzinc-Torpedo", "http://dbpedia.org/resource/SKA_Saint_Petersburg", "http://dbpedia.org/resource/San_Jose_Barracuda", "http://dbpedia.org/resource/Tucson_Roadrunners", "http://dbpedia.org/resource/L\u00f6wen_Frankfurt", "http://dbpedia.org/resource/National_League_(ice_hockey)", "http://dbpedia.org/resource/Kontinental_Hockey_League", "http://dbpedia.org/resource/SC_Bern", "http://dbpedia.org/resource/Iowa_Stars", "http://dbpedia.org/resource/Lethbridge_Hurricanes", "http://dbpedia.org/resource/Acadie\u2013Bathurst_Titan", "http://dbpedia.org/resource/Drummondville_Voltigeurs", "http://dbpedia.org/resource/New_York_Islanders", "http://dbpedia.org/resource/St._John's_Maple_Leafs", "http://dbpedia.org/resource/EV_Zug", "http://dbpedia.org/resource/Soo_Eagles", "http://dbpedia.org/resource/BIK_Karlskoga", "http://dbpedia.org/resource/Victoria_Royals", "http://dbpedia.org/resource/V\u00e4xj\u00f6_Lakers", "http://dbpedia.org/resource/N\u00fcrnberg_Ice_Tigers", "http://dbpedia.org/resource/SCL_Tigers"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/prizes> <http://dbpedia.org/resource/Grand_Masters'_Choice> . ?x <http://dbpedia.org/ontology/birthPlace> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Doonesbury_(musical)> <http://dbpedia.org/ontology/lyrics> ?uri } "}, "answers": ["http://dbpedia.org/resource/Garry_Trudeau"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/leaderName> <http://dbpedia.org/resource/Houston_City_Council> . ?x <http://dbpedia.org/ontology/location> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Charles_Phelps_Taft> <http://dbpedia.org/property/parents> ?uri . <http://dbpedia.org/resource/Robert_A._Taft> <http://dbpedia.org/ontology/parent> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Duncan_Sandys> <http://dbpedia.org/property/predecessor> ?x . ?x <http://dbpedia.org/ontology/primeMinister> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Juhu_Aerodrome> <http://dbpedia.org/property/cityServed> ?uri . }"}, "answers": ["Mumbai since 1928"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/assembly> <http://dbpedia.org/resource/Canada> . ?x <http://dbpedia.org/ontology/predecessor> ?uri . }"}, "answers": ["33"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/hubs> <http://dbpedia.org/resource/San_Francisco_International_Airport> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Airline>}"}, "answers": ["http://dbpedia.org/resource/Virgin_America", "http://dbpedia.org/resource/Alaska_Airlines", "http://dbpedia.org/resource/United_Airlines", "http://dbpedia.org/resource/United_Express", "http://dbpedia.org/resource/Republic_Airlines", "http://dbpedia.org/resource/Wings_West_Airlines", "http://dbpedia.org/resource/Hughes_Airwest", "http://dbpedia.org/resource/SkyWest_Airlines", "http://dbpedia.org/resource/Pacific_Air_Lines", "http://dbpedia.org/resource/Pacific_Southwest_Airlines"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/Miao_Rebellion> . ?x <http://dbpedia.org/ontology/religion> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/architect> <http://dbpedia.org/resource/Stanford_White> . ?x <http://dbpedia.org/property/anticipatedBy> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/family> <http://dbpedia.org/resource/Meadow_Soprano> . ?x <http://dbpedia.org/ontology/religion> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Evangelism", "http://dbpedia.org/resource/Born_again", "http://dbpedia.org/resource/Buddhism", "http://dbpedia.org/resource/Catholic_Church"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/keyPeople> <http://dbpedia.org/resource/Piano> . ?uri <http://dbpedia.org/ontology/voice> ?x . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/race> <http://dbpedia.org/resource/Breeders_(film)> . ?x <http://dbpedia.org/property/destinations> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/university> <http://dbpedia.org/resource/Bahamas_Association_of_Athletic_Associations> . ?x <http://dbpedia.org/ontology/athleticAssociation> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/manufacturer> <http://dbpedia.org/resource/Sony> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Product>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/channel> <http://dbpedia.org/resource/CBBC_(TV_channel)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": ["http://dbpedia.org/resource/All_Over_the_Place_(TV_programme)", "http://dbpedia.org/resource/Almost_Never_(TV_series)", "http://dbpedia.org/resource/Dance_Factory", "http://dbpedia.org/resource/Danger_Mouse_(2015_TV_series)", "http://dbpedia.org/resource/Desperados_(TV_series)", "http://dbpedia.org/resource/Dixi_(TV_series)", "http://dbpedia.org/resource/Hacker's_Olympic_Rundown", "http://dbpedia.org/resource/Hairy_Jeremy", "http://dbpedia.org/resource/Hank_Zipzer's_Christmas_Catastrophe", "http://dbpedia.org/resource/Hank_Zipzer_(TV_series)", "http://dbpedia.org/resource/Sam_&_Mark's_Big_Friday_Wind-Up", "http://dbpedia.org/resource/Got_What_It_Takes%3F", "http://dbpedia.org/resource/Pixelface", "http://dbpedia.org/resource/The_Amazing_Adventures_of_Morph", "http://dbpedia.org/resource/The_Beaker_Girls", "http://dbpedia.org/resource/Ultimate_Brain", "http://dbpedia.org/resource/Brain-Jitsu", "http://dbpedia.org/resource/The_Demon_Headmaster_(2019_TV_series)", "http://dbpedia.org/resource/The_Lampies", "http://dbpedia.org/resource/The_Lowdown_(TV_series)", "http://dbpedia.org/resource/The_Morph_Files", "http://dbpedia.org/resource/No_Sweat_(TV_series)", "http://dbpedia.org/resource/Nova_Jones", "http://dbpedia.org/resource/OOglies", "http://dbpedia.org/resource/Class_Dismissed_(TV_series)", "http://dbpedia.org/resource/Barmy_Aunt_Boomerang", "http://dbpedia.org/resource/My_Almost_Famous_Family", "http://dbpedia.org/resource/My_Mum_Tracy_Beaker", "http://dbpedia.org/resource/Chute!_(TV_programme)", "http://dbpedia.org/resource/Home_Farm_Twins", "http://dbpedia.org/resource/Horrible_Histories_(2009_TV_series)", "http://dbpedia.org/resource/Horrible_Histories_(2015_TV_series)", "http://dbpedia.org/resource/Hounded_(TV_series)", "http://dbpedia.org/resource/Mouse_and_Mole", "http://dbpedia.org/resource/Copycats", "http://dbpedia.org/resource/Leonardo_(2011_TV_series)", "http://dbpedia.org/resource/Newsround", "http://dbpedia.org/resource/Pet_School", "http://dbpedia.org/resource/Theodore_(TV_series)", "http://dbpedia.org/resource/Wizards_vs_Aliens", "http://dbpedia.org/resource/Worst_Year_of_My_Life_Again", "http://dbpedia.org/resource/Ed_and_Oucho's_Excellent_Inventions", "http://dbpedia.org/resource/Out_of_Tune_(TV_series)", "http://dbpedia.org/resource/Sheeep", "http://dbpedia.org/resource/Short_Change", "http://dbpedia.org/resource/Big_Babies", "http://dbpedia.org/resource/Little_Monsters_(TV_series)", "http://dbpedia.org/resource/Romuald_the_Reindeer"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/recordLabel> <http://dbpedia.org/resource/RCA_Records> . ?uri <http://dbpedia.org/ontology/musicComposer> ?x . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ivan_Fomin> <http://dbpedia.org/ontology/significantBuilding> ?uri } "}, "answers": ["http://dbpedia.org/resource/Moscow", "http://dbpedia.org/resource/Moscow_Metro", "http://dbpedia.org/resource/Government_Building,_Kyiv", "http://dbpedia.org/resource/Krasnye_Vorota_(Moscow_Metro)", "http://dbpedia.org/resource/Kyiv"]}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/language> <http://dbpedia.org/resource/Sweedish> . ?uri <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Stockholm> } "}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Aegean_Sea> <http://dbpedia.org/ontology/outflow> ?x . ?x <http://dbpedia.org/property/cities> ?uri . }"}, "answers": ["Alexandria, Barcelona, Algiers, Izmir, Tel Aviv-Yafo, Rome, Athens, Antalya, Beirut, Tripoli, Mersin, Marseille, Mu\u011fla, Naples, Tangier, Tunis, Split,"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Sylvain_L\u00e9vi> <http://dbpedia.org/ontology/school> ?x . ?x <http://dbpedia.org/property/location> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Tales_of_Suspense> <http://dbpedia.org/property/writers> ?uri } "}, "answers": ["http://dbpedia.org/resource/Larry_Lieber", "http://dbpedia.org/resource/Robert_Bernstein_(comics)", "http://dbpedia.org/resource/Stan_Lee", ""]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Abigail_Adams> <http://dbpedia.org/property/children> ?uri } "}, "answers": ["5"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Fr._Agnel_Multipurpose_School_and_Junior_College> <http://dbpedia.org/ontology/sport> ?uri . <http://dbpedia.org/resource/Vishwajyot_High_School> <http://dbpedia.org/property/genre> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/prizes> <http://dbpedia.org/resource/National_Medal_of_Science> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}"}, "answers": ["http://dbpedia.org/resource/David_Mumford", "http://dbpedia.org/resource/Nancy_Coover_Andreasen", "http://dbpedia.org/resource/Albert_Sabin", "http://dbpedia.org/resource/Alexander_Rich", "http://dbpedia.org/resource/Alfred_Sturtevant", "http://dbpedia.org/resource/Bernard_M._Oliver", "http://dbpedia.org/resource/Francis_Birch_(geophysicist)", "http://dbpedia.org/resource/Gene_Likens", "http://dbpedia.org/resource/Hans_Georg_Dehmelt", "http://dbpedia.org/resource/Harry_Harlow", "http://dbpedia.org/resource/Hassler_Whitney", "http://dbpedia.org/resource/Sallie_W._Chisholm", "http://dbpedia.org/resource/Samuel_Karlin", "http://dbpedia.org/resource/Sylvester_James_Gates", "http://dbpedia.org/resource/Ernst_Weber_(engineer)", "http://dbpedia.org/resource/James_Cronin", "http://dbpedia.org/resource/James_Gunn_(astronomer)", "http://dbpedia.org/resource/Jan_D._Achenbach", "http://dbpedia.org/resource/Katherine_Esau", "http://dbpedia.org/resource/Kenneth_Stewart_Cole", "http://dbpedia.org/resource/John_McCarthy_(computer_scientist)", "http://dbpedia.org/resource/B._F._Skinner", "http://dbpedia.org/resource/Isadore_Singer", "http://dbpedia.org/resource/Abel_Wolman", "http://dbpedia.org/resource/Burton_Richter", "http://dbpedia.org/resource/C._B._van_Niel", "http://dbpedia.org/resource/C._R._Rao", "http://dbpedia.org/resource/Carl_R._de_Boor", "http://dbpedia.org/resource/Carl_Shipp_Marvel", "http://dbpedia.org/resource/Howard_Ensign_Simmons_Jr.", "http://dbpedia.org/resource/Donald_Henderson", "http://dbpedia.org/resource/Simon_A._Levin", "http://dbpedia.org/resource/Donald_J._Cram", "http://dbpedia.org/resource/Gregory_Breit", "http://dbpedia.org/resource/Herbert_Boyer", "http://dbpedia.org/resource/M._Frederick_Hawthorne", "http://dbpedia.org/resource/Richard_Garwin", "http://dbpedia.org/resource/Robert_H._Burris", "http://dbpedia.org/resource/Robert_Lefkowitz", "http://dbpedia.org/resource/Roger_Guillemin", "http://dbpedia.org/resource/Peter_Dervan", "http://dbpedia.org/resource/Peter_J._Stang", "http://dbpedia.org/resource/Peter_Lax", "http://dbpedia.org/resource/R._Duncan_Luce", "http://dbpedia.org/resource/Karl_August_Folkers", "http://dbpedia.org/resource/Sewall_Wright", "http://dbpedia.org/resource/Shing-Tung_Yau", "http://dbpedia.org/resource/Stanley_Norman_Cohen", "http://dbpedia.org/resource/Paul_Alfred_Weiss", "http://dbpedia.org/resource/Paul_Cohen", "http://dbpedia.org/resource/Paul_Doughty_Bartlett", "http://dbpedia.org/resource/Ruth_Patrick", "http://dbpedia.org/resource/Yuan_T._Lee"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/relation> <http://dbpedia.org/resource/Kennedy_family> . }"}, "answers": ["21"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/archipelago> <http://dbpedia.org/resource/Greater_Antilles> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Island>}"}, "answers": ["http://dbpedia.org/resource/Geography_of_Jamaica", "http://dbpedia.org/resource/Isla_Magueyes", "http://dbpedia.org/resource/Cayman_Brac", "http://dbpedia.org/resource/Cayo_Norte", "http://dbpedia.org/resource/Grand_Cayman", "http://dbpedia.org/resource/Hispaniola", "http://dbpedia.org/resource/Little_Cayman"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/The_Pentagon> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MilitaryUnit>}"}, "answers": ["http://dbpedia.org/resource/United_States_Armed_Forces", "http://dbpedia.org/resource/United_States_Department_of_Defense", "http://dbpedia.org/resource/Headquarters_Marine_Corps", "http://dbpedia.org/resource/Office_of_the_Administrative_Assistant_to_the_Secretary_of_the_Army", "http://dbpedia.org/resource/Military_history_of_the_United_States"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/mouthMountain> <http://dbpedia.org/resource/Old_Saybrook,_Connecticut> } "}, "answers": ["http://dbpedia.org/resource/Connecticut_River"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/team> <http://dbpedia.org/resource/San_Francisco_Giants> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/BaseballPlayer>}"}, "answers": ["http://dbpedia.org/resource/Lon_Simmons"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/city> <http://dbpedia.org/resource/Reading,_Berkshire> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/School>}"}, "answers": ["http://dbpedia.org/resource/Denefield_School", "http://dbpedia.org/resource/UTC_Reading", "http://dbpedia.org/resource/Hamilton_School", "http://dbpedia.org/resource/The_Abbey_School,_Reading", "http://dbpedia.org/resource/Reading_Blue_Coat_School", "http://dbpedia.org/resource/Reading_College", "http://dbpedia.org/resource/Reading_Girls'_School", "http://dbpedia.org/resource/Reading_School", "http://dbpedia.org/resource/Redlands_Primary_School,_Reading", "http://dbpedia.org/resource/The_Highlands_School,_Reading", "http://dbpedia.org/resource/The_Piggott_School", "http://dbpedia.org/resource/The_Willink_School", "http://dbpedia.org/resource/John_Madejski_Academy", "http://dbpedia.org/resource/Kendrick_School", "http://dbpedia.org/resource/Bulmershe_College", "http://dbpedia.org/resource/Caversham_Primary_School", "http://dbpedia.org/resource/Oakbank_School,_Ryeish_Green", "http://dbpedia.org/resource/Highdown_School", "http://dbpedia.org/resource/Maiden_Erlegh_School", "http://dbpedia.org/resource/Leighton_Park_School", "http://dbpedia.org/resource/Queen_Anne's_School", "http://dbpedia.org/resource/St_Joseph's_College,_Reading", "http://dbpedia.org/resource/Blessed_Hugh_Faringdon_Catholic_School", "http://dbpedia.org/resource/King's_Academy_Prospect", "http://dbpedia.org/resource/Padworth_College"]}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Toronto_Marlies> <http://dbpedia.org/property/tenants> ?uri } "}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/relatives> <http://dbpedia.org/resource/Uncle_Henry_(Oz)> . ?uri <http://dbpedia.org/ontology/relative> <http://dbpedia.org/resource/Aunt_Em> . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/parentCompany> <http://dbpedia.org/resource/Kumho_Asiana_Group> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/location> <http://dbpedia.org/resource/Toronto> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Building>}"}, "answers": ["125"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/club> <http://dbpedia.org/resource/Middlesbrough_F.C> . . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/title> <http://dbpedia.org/resource/Miss_Louisiana_USA> . }"}, "answers": ["http://dbpedia.org/resource/Ali_Landry", "http://dbpedia.org/resource/Candice_Bennatt", "http://dbpedia.org/resource/Candice_Stewart", "http://dbpedia.org/resource/Sharon_Brown_(Miss_USA)"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Fr._Agnel_Stadium> <http://dbpedia.org/property/ground> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Atlanta> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Norway> <http://dbpedia.org/ontology/award> ?uri . <http://dbpedia.org/resource/Swedish_Academy> <http://dbpedia.org/property/awards> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/channel> <http://dbpedia.org/resource/Comedy_Central> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": ["http://dbpedia.org/resource/Viva_Vietnam:_A_White_Trash_Adventure_Tour", "http://dbpedia.org/resource/Beat_the_Geeks", "http://dbpedia.org/resource/Taskmaster_(American_TV_series)", "http://dbpedia.org/resource/Why%3F_with_Hannibal_Buress", "http://dbpedia.org/resource/Another_Period", "http://dbpedia.org/resource/Primetime_Glick", "http://dbpedia.org/resource/The_Ben_Show", "http://dbpedia.org/resource/The_Burn_with_Jeff_Ross", "http://dbpedia.org/resource/Ugly_Americans_(TV_series)", "http://dbpedia.org/resource/Brody_Stevens:_Enjoy_It!", "http://dbpedia.org/resource/Jeff_&_Some_Aliens", "http://dbpedia.org/resource/Kid_Notorious", "http://dbpedia.org/resource/Review_(TV_series)", "http://dbpedia.org/resource/The_Gorburger_Show", "http://dbpedia.org/resource/The_Graham_Norton_Effect", "http://dbpedia.org/resource/The_Jeff_Dunham_Show", "http://dbpedia.org/resource/The_Jim_Jefferies_Show", "http://dbpedia.org/resource/The_Meltdown_with_Jonah_and_Kumail", "http://dbpedia.org/resource/@midnight", "http://dbpedia.org/resource/Nothing_to_Report", "http://dbpedia.org/resource/Short_Attention_Span_Theater", "http://dbpedia.org/resource/Comedy_Underground_with_Dave_Attell", "http://dbpedia.org/resource/Con_(TV_series)", "http://dbpedia.org/resource/Contest_Searchlight", "http://dbpedia.org/resource/John_Oliver's_New_York_Stand-Up_Show", "http://dbpedia.org/resource/Jon_Benjamin_Has_a_Van", "http://dbpedia.org/resource/Inside_Amy_Schumer", "http://dbpedia.org/resource/Moonbeam_City", "http://dbpedia.org/resource/Nathan_for_You", "http://dbpedia.org/resource/Tosh.0", "http://dbpedia.org/resource/TripTank", "http://dbpedia.org/resource/Dr._Katz,_Professional_Therapist", "http://dbpedia.org/resource/Drew_Carey's_Green_Screen_Show", "http://dbpedia.org/resource/Corporate_(TV_series)", "http://dbpedia.org/resource/Hell_of_A_Week_with_Charlamagne_tha_God", "http://dbpedia.org/resource/Make_Me_Laugh", "http://dbpedia.org/resource/Legends_of_Chamberlain_Heights", "http://dbpedia.org/resource/Let's_Bowl", "http://dbpedia.org/resource/Lights_Out_with_David_Spade", "http://dbpedia.org/resource/Night_After_Night_with_Allan_Havey", "http://dbpedia.org/resource/Problematic_with_Moshe_Kasher", "http://dbpedia.org/resource/Sports_Show_with_Norm_Macdonald", "http://dbpedia.org/resource/Big_Lake_(TV_series)", "http://dbpedia.org/resource/Big_Time_in_Hollywood,_FL", "http://dbpedia.org/resource/I'm_with_Busey", "http://dbpedia.org/resource/Kroll_Show", "http://dbpedia.org/resource/Kr\u00f6d_M\u00e4ndoon_and_the_Flaming_Sword_of_Fire", "http://dbpedia.org/resource/Live_at_Gotham"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/computingPlatform> <http://dbpedia.org/resource/PlayStation_4> } "}, "answers": ["http://dbpedia.org/resource/1979_Revolution:_Black_Friday", "http://dbpedia.org/resource/All_4", "http://dbpedia.org/resource/Always_Sometimes_Monsters", "http://dbpedia.org/resource/Amazon_Lumberyard", "http://dbpedia.org/resource/Amnesia:_A_Machine_for_Pigs", "http://dbpedia.org/resource/Amnesia:_Rebirth", "http://dbpedia.org/resource/Amnesia:_The_Dark_Descent", "http://dbpedia.org/resource/Among_the_Sleep", "http://dbpedia.org/resource/Ancestors_Legacy", "http://dbpedia.org/resource/Adrift_(video_game)", "http://dbpedia.org/resource/Aer:_Memories_of_Old", "http://dbpedia.org/resource/Age_of_Wonders:_Planetfall", "http://dbpedia.org/resource/Dandara_(video_game)", "http://dbpedia.org/resource/Danganronpa_Another_Episode:_Ultra_Despair_Girls", "http://dbpedia.org/resource/Dangun_Feveron", "http://dbpedia.org/resource/Darius_(video_game)", "http://dbpedia.org/resource/Darius_Cozmic_Collection", "http://dbpedia.org/resource/Dariusburst", "http://dbpedia.org/resource/Dark_Rose_Valkyrie", "http://dbpedia.org/resource/Dark_Seal", "http://dbpedia.org/resource/Dark_Souls_II:_The_Lost_Crowns", "http://dbpedia.org/resource/Darksiders_(video_game)", "http://dbpedia.org/resource/Darksiders_Genesis", "http://dbpedia.org/resource/Darksiders_II", "http://dbpedia.org/resource/Darksiders_III", "http://dbpedia.org/resource/Darq", "http://dbpedia.org/resource/Darwin_Project", "http://dbpedia.org/resource/Dauntless_(video_game)", "http://dbpedia.org/resource/Dawn_of_Man", "http://dbpedia.org/resource/DayZ_(video_game)", "http://dbpedia.org/resource/Day_of_the_Tentacle", "http://dbpedia.org/resource/Daydreamer_(video_game)", "http://dbpedia.org/resource/Daylight_(video_game)", "http://dbpedia.org/resource/Daymare:_1998", "http://dbpedia.org/resource/Days_Gone", "http://dbpedia.org/resource/Days_of_War", "http://dbpedia.org/resource/De_Blob", "http://dbpedia.org/resource/De_Blob_2", "http://dbpedia.org/resource/Dead_Cells", "http://dbpedia.org/resource/Dead_Island", "http://dbpedia.org/resource/Dead_Island:_Riptide", "http://dbpedia.org/resource/Dead_Island_2", "http://dbpedia.org/resource/Dead_Nation", "http://dbpedia.org/resource/Dead_Rising_(video_game)", "http://dbpedia.org/resource/Dead_Rising_2", "http://dbpedia.org/resource/Dead_Rising_2:_Off_the_Record", "http://dbpedia.org/resource/Dead_Rising_4", "http://dbpedia.org/resource/Dead_Secret", "http://dbpedia.org/resource/Dead_by_Daylight", "http://dbpedia.org/resource/Dead_or_Alive_5_Last_Round", "http://dbpedia.org/resource/Dead_or_Alive_Xtreme_3", "http://dbpedia.org/resource/Deadbolt_(video_game)", "http://dbpedia.org/resource/Deadlight", "http://dbpedia.org/resource/Deadpool_(video_game)", "http://dbpedia.org/resource/Dear_Esther", "http://dbpedia.org/resource/Death's_Gambit", "http://dbpedia.org/resource/Death_End_Request", "http://dbpedia.org/resource/Death_End_Request_2", "http://dbpedia.org/resource/Death_Road_to_Canada", "http://dbpedia.org/resource/Death_Stranding", "http://dbpedia.org/resource/Deathsmiles", "http://dbpedia.org/resource/Deathsmiles_II", "http://dbpedia.org/resource/Deathtrap_(video_game)", "http://dbpedia.org/resource/Deception_IV:_Blood_Ties", "http://dbpedia.org/resource/Decima_(game_engine)", "http://dbpedia.org/resource/Deemo", "http://dbpedia.org/resource/Arcade_Spirits", "http://dbpedia.org/resource/Bound_(video_game)", "http://dbpedia.org/resource/CastleStorm", "http://dbpedia.org/resource/Concrete_Genie", "http://dbpedia.org/resource/Consortium:_The_Tower", "http://dbpedia.org/resource/Destiny_2:_Beyond_Light", "http://dbpedia.org/resource/Destiny_2:_Forsaken", "http://dbpedia.org/resource/Destiny_2:_Shadowkeep", "http://dbpedia.org/resource/Use_Your_Words", "http://dbpedia.org/resource/Utawarerumono:_Mask_of_Deception", "http://dbpedia.org/resource/Utawarerumono:_Mask_of_Truth", "http://dbpedia.org/resource/V-Rally_4", "http://dbpedia.org/resource/VA-11_Hall-A", "http://dbpedia.org/resource/VVVVVV", "http://dbpedia.org/resource/Valentino_Rossi:_The_Game", "http://dbpedia.org/resource/Valiant_Hearts:_The_Great_War", "http://dbpedia.org/resource/Valkyria_Chronicles_(video_game)", "http://dbpedia.org/resource/Valkyria_Chronicles_4", "http://dbpedia.org/resource/Valkyria_Revolution", "http://dbpedia.org/resource/Valkyrie_Profile_(video_game)", "http://dbpedia.org/resource/Vampire:_The_Masquerade_\u2013_Bloodlines_2", "http://dbpedia.org/resource/Vampire:_The_Masquerade_\u2013_Shadows_of_New_York", "http://dbpedia.org/resource/Vampyr_(video_game)", "http://dbpedia.org/resource/Vanquish_(video_game)", "http://dbpedia.org/resource/Velocity_2X", "http://dbpedia.org/resource/Victor_Vran", "http://dbpedia.org/resource/Videoball", "http://dbpedia.org/resource/Vikings:_Wolves_of_Midgard", "http://dbpedia.org/resource/Virtual_On:_Cyber_Troopers", "http://dbpedia.org/resource/Visage_(video_game)", "http://dbpedia.org/resource/Void_Bastards", "http://dbpedia.org/resource/Volgarr_the_Viking", "http://dbpedia.org/resource/Volume_(video_game)", "http://dbpedia.org/resource/WWE_2K16", "http://dbpedia.org/resource/WWE_2K18", "http://dbpedia.org/resource/WWE_2K19", "http://dbpedia.org/resource/Waku_Waku_7", "http://dbpedia.org/resource/Walden,_a_game", "http://dbpedia.org/resource/Wander_(2015_video_game)", "http://dbpedia.org/resource/Wandersong", "http://dbpedia.org/resource/WarTech:_Senko_no_Ronde", "http://dbpedia.org/resource/Warface", "http://dbpedia.org/resource/Wargroove", "http://dbpedia.org/resource/Warhammer_40,000:_Inquisitor_\u2013_Martyr", "http://dbpedia.org/resource/Warhammer_40,000:_Space_Wolf", "http://dbpedia.org/resource/Warriors_All-Stars", "http://dbpedia.org/resource/Warriors_Orochi_3", "http://dbpedia.org/resource/Warriors_Orochi_4", "http://dbpedia.org/resource/Warsaw_(video_game)", "http://dbpedia.org/resource/Wasteland_2", "http://dbpedia.org/resource/Watch_Dogs:_Legion", "http://dbpedia.org/resource/Watch_Dogs_(video_game)", "http://dbpedia.org/resource/Watch_Dogs_2", "http://dbpedia.org/resource/Do_Not_Feed_the_Monkeys", "http://dbpedia.org/resource/Feudal_Alloy", "http://dbpedia.org/resource/Fight_of_Gods", "http://dbpedia.org/resource/Shadow_of_the_Beast_(2016_video_game)", "http://dbpedia.org/resource/Sinner:_Sacrifice_for_Redemption", "http://dbpedia.org/resource/Splice_(video_game)", "http://dbpedia.org/resource/The_Solus_Project", "http://dbpedia.org/resource/Heart_of_the_Woods", "http://dbpedia.org/resource/Heavy_Metal_Machines", "http://dbpedia.org/resource/Primal_Carnage:_Genesis", "http://dbpedia.org/resource/The_Last_Door", "http://dbpedia.org/resource/Human_Element", "http://dbpedia.org/resource/Huntdown", "http://dbpedia.org/resource/Hyper_Scape", "http://dbpedia.org/resource/Hyper_Void", "http://dbpedia.org/resource/Hypercharge:_Unboxed", "http://dbpedia.org/resource/Kentucky_Route_Zero", "http://dbpedia.org/resource/Strike_Suit_Zero", "http://dbpedia.org/resource/Unturned", "http://dbpedia.org/resource/Override:_Mech_City_Brawl", "http://dbpedia.org/resource/Override_2:_Super_Mech_League", "http://dbpedia.org/resource/PC_Building_Simulator", "http://dbpedia.org/resource/Paper_Beast", "http://dbpedia.org/resource/Planet_of_the_Apes:_Last_Frontier", "http://dbpedia.org/resource/Planetbase", "http://dbpedia.org/resource/Streets_of_Rogue", "http://dbpedia.org/resource/Strike_Vector", "http://dbpedia.org/resource/Sunless_Skies", "http://dbpedia.org/resource/Super_Blood_Hockey", "http://dbpedia.org/resource/Super_Dungeon_Bros", "http://dbpedia.org/resource/That's_You!", "http://dbpedia.org/resource/The_Church_in_the_Darkness", "http://dbpedia.org/resource/The_Dwarves_(video_game)", "http://dbpedia.org/resource/Worms_W.M.D", "http://dbpedia.org/resource/XDefiant", "http://dbpedia.org/resource/Xeno_Crisis", "http://dbpedia.org/resource/Pistol_Whip_(video_game)", "http://dbpedia.org/resource/Police_Stories", "http://dbpedia.org/resource/Air_Conflicts:_Pacific_Carriers", "http://dbpedia.org/resource/Air_Conflicts:_Secret_Wars", "http://dbpedia.org/resource/Air_Conflicts:_Vietnam", "http://dbpedia.org/resource/Airport_Simulator_2019", "http://dbpedia.org/resource/Defense_Grid_2", "http://dbpedia.org/resource/Defunct_(video_game)", "http://dbpedia.org/resource/Deliver_Us_the_Moon", "http://dbpedia.org/resource/Deltarune", "http://dbpedia.org/resource/Demetrios_(video_game)", "http://dbpedia.org/resource/Demon's_Tilt", "http://dbpedia.org/resource/Dengeki_Bunko:_Fighting_Climax", "http://dbpedia.org/resource/Deponia_(video_game)", "http://dbpedia.org/resource/Deponia_Doomsday", "http://dbpedia.org/resource/Descenders", "http://dbpedia.org/resource/Desperados_III", "http://dbpedia.org/resource/Destiny:_Rise_of_Iron", "http://dbpedia.org/resource/Destiny:_The_Taken_King", "http://dbpedia.org/resource/Destiny_(video_game)", "http://dbpedia.org/resource/Destiny_2", "http://dbpedia.org/resource/Destiny_2:_The_Witch_Queen", "http://dbpedia.org/resource/Destiny_2_post-release_content", "http://dbpedia.org/resource/Destiny_post-release_content", "http://dbpedia.org/resource/Destroy_All_Humans!_(2020_video_game)", "http://dbpedia.org/resource/Detana!!_TwinBee", "http://dbpedia.org/resource/Detention_(video_game)", "http://dbpedia.org/resource/Deus_Ex:_Mankind_Divided", "http://dbpedia.org/resource/Devil_May_Cry_3:_Dante's_Awakening", "http://dbpedia.org/resource/Devil_May_Cry_4:_Special_Edition", "http://dbpedia.org/resource/Devil_May_Cry_5", "http://dbpedia.org/resource/Dex_(video_game)", "http://dbpedia.org/resource/Diablo_III:_Reaper_of_Souls", "http://dbpedia.org/resource/Digimon_Story:_Cyber_Sleuth", "http://dbpedia.org/resource/Digimon_Story:_Cyber_Sleuth_\u2013_Hacker's_Memory", "http://dbpedia.org/resource/Digimon_World:_Next_Order", "http://dbpedia.org/resource/Dirt_4", "http://dbpedia.org/resource/Dirt_Rally", "http://dbpedia.org/resource/Dirt_Rally_2.0", "http://dbpedia.org/resource/Disc_Jam", "http://dbpedia.org/resource/Disgaea:_Hour_of_Darkness", "http://dbpedia.org/resource/Disgaea_4", "http://dbpedia.org/resource/Dishonored", "http://dbpedia.org/resource/Dishonored_2", "http://dbpedia.org/resource/Disintegration_(video_game)", "http://dbpedia.org/resource/Disney_Infinity_2.0", "http://dbpedia.org/resource/Disney_Infinity_3.0", "http://dbpedia.org/resource/Dissidia_Final_Fantasy_NT", "http://dbpedia.org/resource/Divekick", "http://dbpedia.org/resource/Divinity:_Original_Sin", "http://dbpedia.org/resource/Divinity:_Original_Sin_II", "http://dbpedia.org/resource/DmC:_Devil_May_Cry", "http://dbpedia.org/resource/Serious_Sam_3:_BFE", "http://dbpedia.org/resource/Mordhau_(video_game)", "http://dbpedia.org/resource/MotoGP_15", "http://dbpedia.org/resource/The_Path_of_Motus", "http://dbpedia.org/resource/Wild_(video_game)", "http://dbpedia.org/resource/Wrath:_Aeon_of_Ruin", "http://dbpedia.org/resource/Hammerwatch", "http://dbpedia.org/resource/The_Wolf_Among_Us_2", "http://dbpedia.org/resource/AirMech", "http://dbpedia.org/resource/Akai_Katana", "http://dbpedia.org/resource/Akiba's_Beat", "http://dbpedia.org/resource/Akiba's_Trip:_Undead_&_Undressed", "http://dbpedia.org/resource/Alan_Wake", "http://dbpedia.org/resource/Alba:_A_Wildlife_Adventure", "http://dbpedia.org/resource/Alekhine's_Gun_(video_game)", "http://dbpedia.org/resource/Alex_Kidd_in_Miracle_World", "http://dbpedia.org/resource/Alien:_Isolation", "http://dbpedia.org/resource/Aliens:_Fireteam_Elite", "http://dbpedia.org/resource/20XX", "http://dbpedia.org/resource/Ary_and_the_Secret_of_Seasons", "http://dbpedia.org/resource/Ashen_(2018_video_game)", "http://dbpedia.org/resource/Assassin's_Creed:_Brotherhood", "http://dbpedia.org/resource/Assassin's_Creed:_Revelations", "http://dbpedia.org/resource/Assassin's_Creed_Chronicles", "http://dbpedia.org/resource/Assassin's_Creed_Freedom_Cry", "http://dbpedia.org/resource/Assassin's_Creed_III", "http://dbpedia.org/resource/Assassin's_Creed_III:_Liberation", "http://dbpedia.org/resource/Assassin's_Creed_III:_The_Tyranny_of_King_Washington", "http://dbpedia.org/resource/Assassin's_Creed_IV:_Black_Flag", "http://dbpedia.org/resource/Assassin's_Creed_Odyssey", "http://dbpedia.org/resource/Assassin's_Creed_Origins", "http://dbpedia.org/resource/Assassin's_Creed_Rogue", "http://dbpedia.org/resource/Assassin's_Creed_Syndicate", "http://dbpedia.org/resource/Assassin's_Creed_Unity", "http://dbpedia.org/resource/Assault_Android_Cactus", "http://dbpedia.org/resource/Assault_Suit_Leynos_(2015_video_game)", "http://dbpedia.org/resource/Assetto_Corsa", "http://dbpedia.org/resource/Assetto_Corsa_Competizione", "http://dbpedia.org/resource/Astalon:_Tears_of_the_Earth", "http://dbpedia.org/resource/Asterix_&_Obelix_XXL", "http://dbpedia.org/resource/Asterix_&_Obelix_XXL_2:_Mission:_Las_Vegum", "http://dbpedia.org/resource/Astro_Bot_Rescue_Mission", "http://dbpedia.org/resource/Atelier_Ayesha:_The_Alchemist_of_Dusk", "http://dbpedia.org/resource/Atelier_Meruru:_The_Apprentice_of_Arland", "http://dbpedia.org/resource/Atelier_Rorona:_The_Alchemist_of_Arland", "http://dbpedia.org/resource/Atelier_Ryza:_Ever_Darkness_&_the_Secret_Hideout", "http://dbpedia.org/resource/Atelier_Ryza_2:_Lost_Legends_&_the_Secret_Fairy", "http://dbpedia.org/resource/Atelier_Shallie:_Alchemists_of_the_Dusk_Sea", "http://dbpedia.org/resource/Atelier_Totori:_The_Adventurer_of_Arland", "http://dbpedia.org/resource/Attack_on_Titan_(video_game)", "http://dbpedia.org/resource/Attack_on_Titan_2", "http://dbpedia.org/resource/Aven_Colony", "http://dbpedia.org/resource/Avenging_Spirit", "http://dbpedia.org/resource/Axiom_Verge", "http://dbpedia.org/resource/Azkend_2:_The_World_Beneath", "http://dbpedia.org/resource/Battleborn_(video_game)", "http://dbpedia.org/resource/Battlefield_1", "http://dbpedia.org/resource/Battlefield_2042", "http://dbpedia.org/resource/Battlefield_4", "http://dbpedia.org/resource/Battlefield_Hardline", "http://dbpedia.org/resource/Battlefield_V", "http://dbpedia.org/resource/Battlezone_(2016_video_game)", "http://dbpedia.org/resource/Beholder_(video_game)", "http://dbpedia.org/resource/Ben_Bero_Beh", "http://dbpedia.org/resource/Berserk_and_the_Band_of_the_Hawk", "http://dbpedia.org/resource/Beyond:_Two_Souls", "http://dbpedia.org/resource/Beyond_Eyes", "http://dbpedia.org/resource/Beyond_a_Steel_Sky", "http://dbpedia.org/resource/For_Honor", "http://dbpedia.org/resource/Forager_(video_game)", "http://dbpedia.org/resource/Forced", "http://dbpedia.org/resource/Formation_Z", "http://dbpedia.org/resource/Foul_Play_(video_game)", "http://dbpedia.org/resource/Fox_Engine", "http://dbpedia.org/resource/Fox_N_Forests", "http://dbpedia.org/resource/Freddy_Fazbear's_Pizzeria_Simulator", "http://dbpedia.org/resource/Friday_the_13th:_The_Game", "http://dbpedia.org/resource/Frostbite_(game_engine)", "http://dbpedia.org/resource/Frostpunk", "http://dbpedia.org/resource/Fruit_Ninja", "http://dbpedia.org/resource/Full_Throttle_(1995_video_game)", "http://dbpedia.org/resource/Furi", "http://dbpedia.org/resource/Futuridium_EP_Deluxe", "http://dbpedia.org/resource/G.I._Joe:_Operation_Blackout", "http://dbpedia.org/resource/GG_Aleste_3", "http://dbpedia.org/resource/Galaga", "http://dbpedia.org/resource/Galaga_Legions_DX", "http://dbpedia.org/resource/GameMaker", "http://dbpedia.org/resource/Game_Dev_Story", "http://dbpedia.org/resource/Game_Tengoku", "http://dbpedia.org/resource/Game_of_Thrones_(2014_video_game)", "http://dbpedia.org/resource/Game_packs_for_The_Sims_4", "http://dbpedia.org/resource/Garou:_Mark_of_the_Wolves", "http://dbpedia.org/resource/Gauntlet_(2014_video_game)", "http://dbpedia.org/resource/Gekido_Advance:_Kintaro's_Revenge", "http://dbpedia.org/resource/Gem_Smashers", "http://dbpedia.org/resource/Genshin_Impact", "http://dbpedia.org/resource/Gensou_SkyDrift", "http://dbpedia.org/resource/Gens\u014d_R\u014dgoku_no_Kaleidoscope", "http://dbpedia.org/resource/Geometry_Wars_3:_Dimensions", "http://dbpedia.org/resource/Hades_(video_game)", "http://dbpedia.org/resource/Hakoniwa_Company_Works", "http://dbpedia.org/resource/Hard_Reset", "http://dbpedia.org/resource/Has-Been_Heroes", "http://dbpedia.org/resource/Hatoful_Boyfriend", "http://dbpedia.org/resource/Hatoful_Boyfriend:_Holiday_Star", "http://dbpedia.org/resource/Hatsune_Miku:_Project_DIVA_Arcade", "http://dbpedia.org/resource/Hatsune_Miku:_Project_DIVA_X", "http://dbpedia.org/resource/Haunted_Castle_(video_game)", "http://dbpedia.org/resource/Hawken_(video_game)", "http://dbpedia.org/resource/Children_of_Morta", "http://dbpedia.org/resource/Chivalry_2", "http://dbpedia.org/resource/SNK_40th_Anniversary_Collection", "http://dbpedia.org/resource/SNK_Heroines:_Tag_Team_Frenzy", "http://dbpedia.org/resource/SaGa:_Scarlet_Grace", "http://dbpedia.org/resource/Saint_Seiya:_Soldiers'_Soul", "http://dbpedia.org/resource/Saints_Row:_Gat_out_of_Hell", "http://dbpedia.org/resource/Saints_Row_(2022_video_game)", "http://dbpedia.org/resource/Saints_Row_IV", "http://dbpedia.org/resource/Sakuna:_Of_Rice_and_Ruin", "http://dbpedia.org/resource/Sakura_Sakura_(video_game)", "http://dbpedia.org/resource/Sakura_Wars_(2019_video_game)", "http://dbpedia.org/resource/Sally_Face", "http://dbpedia.org/resource/Salt_and_Sacrifice", "http://dbpedia.org/resource/Samurai_Jack:_Battle_Through_Time", "http://dbpedia.org/resource/Samurai_Shodown_(2019_video_game)", "http://dbpedia.org/resource/Samurai_Shodown_V_Special", "http://dbpedia.org/resource/Samurai_Warriors:_Spirit_of_Sanada", "http://dbpedia.org/resource/Samurai_Warriors_4", "http://dbpedia.org/resource/Cosmic_Top_Secret_(video_game)", "http://dbpedia.org/resource/Sword_Art_Online:_Fatal_Bullet", "http://dbpedia.org/resource/Sword_Art_Online:_Hollow_Fragment", "http://dbpedia.org/resource/Sword_Art_Online:_Hollow_Realization", "http://dbpedia.org/resource/Sword_Art_Online:_Lost_Song", "http://dbpedia.org/resource/Sword_Coast_Legends", "http://dbpedia.org/resource/Syberia_3", "http://dbpedia.org/resource/System_Shock_(2022_video_game)", "http://dbpedia.org/resource/S\u00f6ldner-X:_Himmelsst\u00fcrmer", "http://dbpedia.org/resource/TERA_(video_game)", "http://dbpedia.org/resource/TNK_III", "http://dbpedia.org/resource/Table_Top_Racing", "http://dbpedia.org/resource/Tacoma_(video_game)", "http://dbpedia.org/resource/Tactics_Ogre:_Let_Us_Cling_Together_(2010_video_game)", "http://dbpedia.org/resource/Tales_from_the_Borderlands", "http://dbpedia.org/resource/Tales_of_Arise", "http://dbpedia.org/resource/Tales_of_Berseria", "http://dbpedia.org/resource/Tales_of_Vesperia", "http://dbpedia.org/resource/Tales_of_Zestiria", "http://dbpedia.org/resource/Tangle_Tower", "http://dbpedia.org/resource/Tannenberg_(video_game)", "http://dbpedia.org/resource/Taxi_Chaos", "http://dbpedia.org/resource/Tearaway_Unfolded", "http://dbpedia.org/resource/Tekken_7", "http://dbpedia.org/resource/Tempest_4000", "http://dbpedia.org/resource/Darkwood", "http://dbpedia.org/resource/Wayward_Sky", "http://dbpedia.org/resource/We_Sing", "http://dbpedia.org/resource/We_Sing_Pop!", "http://dbpedia.org/resource/What_Remains_of_Edith_Finch", "http://dbpedia.org/resource/Wheels_of_Aurelia", "http://dbpedia.org/resource/Where_the_Water_Tastes_Like_Wine", "http://dbpedia.org/resource/Whispering_Willows", "http://dbpedia.org/resource/White_Night_(video_game)", "http://dbpedia.org/resource/Eve:_Valkyrie", "http://dbpedia.org/resource/EverQuest_Next", "http://dbpedia.org/resource/Everybody's_Gone_to_the_Rapture", "http://dbpedia.org/resource/Exception_(video_game)", "http://dbpedia.org/resource/Fenix_Rage", "http://dbpedia.org/resource/Roundabout_(video_game)", "http://dbpedia.org/resource/Rust_(video_game)", "http://dbpedia.org/resource/Six_Days_in_Fallujah", "http://dbpedia.org/resource/Hardware:_Rivals", "http://dbpedia.org/resource/MLB_The_Show_18", "http://dbpedia.org/resource/MLB_The_Show_19", "http://dbpedia.org/resource/MLB_The_Show_20", "http://dbpedia.org/resource/Mages_of_Mystralia", "http://dbpedia.org/resource/Magic:_Legends", "http://dbpedia.org/resource/Moon_Hunters", "http://dbpedia.org/resource/Mothergunship", "http://dbpedia.org/resource/1001_Spikes", "http://dbpedia.org/resource/100ft_Robot_Golf", "http://dbpedia.org/resource/11-11:_Memories_Retold", "http://dbpedia.org/resource/140_(video_game)", "http://dbpedia.org/resource/Angels_Online", "http://dbpedia.org/resource/Angry_Birds_Star_Wars", "http://dbpedia.org/resource/Anna's_Quest", "http://dbpedia.org/resource/Anodyne_(video_game)", "http://dbpedia.org/resource/Another_World_(video_game)", "http://dbpedia.org/resource/Antigraviator", "http://dbpedia.org/resource/Antinomy_of_Common_Flowers", "http://dbpedia.org/resource/Apex_Legends", "http://dbpedia.org/resource/Apotheon", "http://dbpedia.org/resource/Apple_TV_app", "http://dbpedia.org/resource/Aragami_(video_game)", "http://dbpedia.org/resource/Arcania:_Fall_of_Setarrif", "http://dbpedia.org/resource/Arcania:_Gothic_4", "http://dbpedia.org/resource/Arizona_Sunshine", "http://dbpedia.org/resource/Ark:_Survival_Evolved", "http://dbpedia.org/resource/Armello", "http://dbpedia.org/resource/Armikrog", "http://dbpedia.org/resource/Enclave_(video_game)", "http://dbpedia.org/resource/Ender_Lilies:_Quietus_of_the_Knights", "http://dbpedia.org/resource/Enter_the_Dominatrix", "http://dbpedia.org/resource/Enter_the_Gungeon", "http://dbpedia.org/resource/Escape_Academy", "http://dbpedia.org/resource/Escape_Plan_(video_game)", "http://dbpedia.org/resource/Eschatos", "http://dbpedia.org/resource/Ether_One", "http://dbpedia.org/resource/Everspace", "http://dbpedia.org/resource/Ghost_of_Tsushima", "http://dbpedia.org/resource/Ghost_of_a_Tale", "http://dbpedia.org/resource/Ghostbusters:_The_Video_Game", "http://dbpedia.org/resource/Ghostbusters_(2016_video_game)", "http://dbpedia.org/resource/Giana_Sisters:_Twisted_Dreams", "http://dbpedia.org/resource/Giga_Wrecker", "http://dbpedia.org/resource/Gloomhaven_(video_game)", "http://dbpedia.org/resource/Gnog", "http://dbpedia.org/resource/Goat_Simulator", "http://dbpedia.org/resource/God_Eater_(video_game)", "http://dbpedia.org/resource/God_Eater_2", "http://dbpedia.org/resource/God_Eater_3", "http://dbpedia.org/resource/God_of_War_(2018_video_game)", "http://dbpedia.org/resource/God_of_War_III", "http://dbpedia.org/resource/Godfall", "http://dbpedia.org/resource/Godzilla_(2014_video_game)", "http://dbpedia.org/resource/Going_Under_(video_game)", "http://dbpedia.org/resource/Golf_Zero", "http://dbpedia.org/resource/Gone_Home", "http://dbpedia.org/resource/Gonner", "http://dbpedia.org/resource/Goodbye_Deponia", "http://dbpedia.org/resource/Gorogoa", "http://dbpedia.org/resource/Armored_Warfare", "http://dbpedia.org/resource/Art_of_Balance", "http://dbpedia.org/resource/Mark_McMorris_Infinite_Air", "http://dbpedia.org/resource/Mark_of_the_Ninja", "http://dbpedia.org/resource/Martha_Is_Dead", "http://dbpedia.org/resource/Marvel's_Guardians_of_the_Galaxy", "http://dbpedia.org/resource/Marvel:_Ultimate_Alliance", "http://dbpedia.org/resource/Marvel:_Ultimate_Alliance_2", "http://dbpedia.org/resource/Marvel_Pinball", "http://dbpedia.org/resource/Marvel_vs._Capcom:_Infinite", "http://dbpedia.org/resource/Pillars_of_Eternity", "http://dbpedia.org/resource/Pillars_of_Eternity:_The_White_March", "http://dbpedia.org/resource/Pillars_of_Eternity_II:_Deadfire", "http://dbpedia.org/resource/PixelJunk_Shooter", "http://dbpedia.org/resource/PixelJunk_Shooter_2", "http://dbpedia.org/resource/Pixel_Piracy", "http://dbpedia.org/resource/Planescape:_Torment", "http://dbpedia.org/resource/Planet_Coaster", "http://dbpedia.org/resource/Plants_vs._Zombies:_Battle_for_Neighborville", "http://dbpedia.org/resource/Plants_vs._Zombies:_Garden_Warfare_2", "http://dbpedia.org/resource/PlayStation_Video", "http://dbpedia.org/resource/Plumbers_Don't_Wear_Ties", "http://dbpedia.org/resource/Poi_(video_game)", "http://dbpedia.org/resource/Poison_Control", "http://dbpedia.org/resource/Pollen_(video_game)", "http://dbpedia.org/resource/Portal_Knights", "http://dbpedia.org/resource/PowerSlave", "http://dbpedia.org/resource/Power_Rangers:_Battle_for_the_Grid", "http://dbpedia.org/resource/PoxNora", "http://dbpedia.org/resource/Praetorians_(video_game)", "http://dbpedia.org/resource/Predator:_Hunting_Grounds", "http://dbpedia.org/resource/Prey_(2017_video_game)", "http://dbpedia.org/resource/Primal_Carnage:_Extinction", "http://dbpedia.org/resource/Princess_Crown", "http://dbpedia.org/resource/Tennis_World_Tour", "http://dbpedia.org/resource/Terminator:_Resistance", "http://dbpedia.org/resource/Terra_Cresta", "http://dbpedia.org/resource/Terraria", "http://dbpedia.org/resource/Tesla_vs_Lovecraft", "http://dbpedia.org/resource/Teslagrad", "http://dbpedia.org/resource/Tetris_Ultimate", "http://dbpedia.org/resource/The_25th_Ward:_The_Silver_Case", "http://dbpedia.org/resource/The_Amazing_Spider-Man_2_(2014_video_game)", "http://dbpedia.org/resource/The_Aquatic_Adventure_of_the_Last_Human", "http://dbpedia.org/resource/The_Banner_Saga", "http://dbpedia.org/resource/The_Banner_Saga_3", "http://dbpedia.org/resource/The_Bard's_Tale_(2004_video_game)", "http://dbpedia.org/resource/The_Bard's_Tale_IV:_Barrows_Deep", "http://dbpedia.org/resource/The_Book_of_Unwritten_Tales_2", "http://dbpedia.org/resource/The_Bridge_(video_game)", "http://dbpedia.org/resource/Ultimate_Chicken_Horse", "http://dbpedia.org/resource/Ultimate_Custom_Night", "http://dbpedia.org/resource/Ultimate_Marvel_vs._Capcom_3", "http://dbpedia.org/resource/Ultracore", "http://dbpedia.org/resource/Umbrella_Corps", "http://dbpedia.org/resource/Umihara_Kawase", "http://dbpedia.org/resource/Umineko:_Golden_Fantasia", "http://dbpedia.org/resource/Uncharted:_The_Nathan_Drake_Collection", "http://dbpedia.org/resource/Uncharted_Waters_Online", "http://dbpedia.org/resource/UnderMine", "http://dbpedia.org/resource/Underworld_Ascendant", "http://dbpedia.org/resource/Unepic", "http://dbpedia.org/resource/Unmechanical", "http://dbpedia.org/resource/Uno_(video_game)", "http://dbpedia.org/resource/Unravel_(video_game)", "http://dbpedia.org/resource/Until_Dawn", "http://dbpedia.org/resource/Until_Dawn:_Rush_of_Blood", "http://dbpedia.org/resource/Urban_Legend_in_Limbo", "http://dbpedia.org/resource/Dragon_Age:_Inquisition_\u2013_Jaws_of_Hakkon", "http://dbpedia.org/resource/Dragon_Age:_Inquisition_\u2013_The_Descent", "http://dbpedia.org/resource/Dragon_Age:_Inquisition_\u2013_Trespasser", "http://dbpedia.org/resource/Dragon_Blaze", "http://dbpedia.org/resource/Dreadnought_(video_game)", "http://dbpedia.org/resource/MT_Framework", "http://dbpedia.org/resource/Marvel_Puzzle_Quest", "http://dbpedia.org/resource/Mother_Russia_Bleeds", "http://dbpedia.org/resource/The_Magic_Circle_(video_game)", "http://dbpedia.org/resource/The_Messenger_(2018_video_game)", "http://dbpedia.org/resource/Paladins_(video_game)", "http://dbpedia.org/resource/Panta_Rhei_(game_engine)", "http://dbpedia.org/resource/Pillar_(video_game)", "http://dbpedia.org/resource/Pneuma:_Breath_of_Life", "http://dbpedia.org/resource/The_Wardrobe_(video_game)", "http://dbpedia.org/resource/Valley_(video_game)", "http://dbpedia.org/resource/Virginia_(video_game)", "http://dbpedia.org/resource/Warhammer:_Vermintide_2", "http://dbpedia.org/resource/We_Happy_Few", "http://dbpedia.org/resource/XCOM_2:_War_of_the_Chosen", "http://dbpedia.org/resource/Grid_(video_game)", "http://dbpedia.org/resource/Guacamelee!_2", "http://dbpedia.org/resource/Guns_Up!", "http://dbpedia.org/resource/Guts_and_Glory", "http://dbpedia.org/resource/House_Flipper", "http://dbpedia.org/resource/Mini_Motor_Racing", "http://dbpedia.org/resource/Maquette_(video_game)", "http://dbpedia.org/resource/Monster_Energy_Supercross:_The_Official_Videogame", "http://dbpedia.org/resource/Moose_Life", "http://dbpedia.org/resource/AEW_Fight_Forever", "http://dbpedia.org/resource/AFL_Evolution", "http://dbpedia.org/resource/AWAY:_The_Survival_Series", "http://dbpedia.org/resource/A_Bastard's_Tale", "http://dbpedia.org/resource/A_Chair_in_a_Room:_Greenwater", "http://dbpedia.org/resource/A_Fisherman's_Tale", "http://dbpedia.org/resource/Aaero", "http://dbpedia.org/resource/Boomerang_Fu", "http://dbpedia.org/resource/Border_Break", "http://dbpedia.org/resource/Borderlands:_The_Handsome_Collection", "http://dbpedia.org/resource/Borderlands_(video_game)", "http://dbpedia.org/resource/Borderlands_3", "http://dbpedia.org/resource/Bouncy_Bullets", "http://dbpedia.org/resource/Bound_by_Flame", "http://dbpedia.org/resource/Braid_(video_game)", "http://dbpedia.org/resource/Bravo_Team", "http://dbpedia.org/resource/Brawlout", "http://dbpedia.org/resource/Breach_&_Clear:_Deadline", "http://dbpedia.org/resource/Bridge_Constructor_Portal", "http://dbpedia.org/resource/Broforce", "http://dbpedia.org/resource/Broken_Age", "http://dbpedia.org/resource/Broken_Sword_5:_The_Serpent's_Curse", "http://dbpedia.org/resource/Brunswick_Pro_Bowling", "http://dbpedia.org/resource/Bubble_Bobble_4_Friends", "http://dbpedia.org/resource/Bubsy:_Paws_on_Fire!", "http://dbpedia.org/resource/Bubsy:_The_Woolies_Strike_Back", "http://dbpedia.org/resource/Buck_(video_game)", "http://dbpedia.org/resource/Jamestown:_Legend_of_the_Lost_Colony", "http://dbpedia.org/resource/Jazzpunk", "http://dbpedia.org/resource/Ken_Follett's_The_Pillars_of_the_Earth", "http://dbpedia.org/resource/Kena:_Bridge_of_Spirits", "http://dbpedia.org/resource/Kerbal_Space_Program", "http://dbpedia.org/resource/Kero_Blaster", "http://dbpedia.org/resource/Ketsui:_Kizuna_Jigoku_Tachi", "http://dbpedia.org/resource/Kick_&_Fennick", "http://dbpedia.org/resource/Killing_Floor_2", "http://dbpedia.org/resource/Killzone_Shadow_Fall", "http://dbpedia.org/resource/Blood_Bowl_2", "http://dbpedia.org/resource/Blood_Bowl_3", "http://dbpedia.org/resource/Bloodroots", "http://dbpedia.org/resource/Bloodstained:_Curse_of_the_Moon_2", "http://dbpedia.org/resource/Mass_Effect:_Andromeda", "http://dbpedia.org/resource/Mass_Effect_Legendary_Edition", "http://dbpedia.org/resource/Masters_of_Anima", "http://dbpedia.org/resource/Matterfall", "http://dbpedia.org/resource/Max:_The_Curse_of_Brotherhood", "http://dbpedia.org/resource/MechWarrior_5:_Mercenaries", "http://dbpedia.org/resource/MediEvil_(2019_video_game)", "http://dbpedia.org/resource/Mega_Man_10", "http://dbpedia.org/resource/Mega_Man_11", "http://dbpedia.org/resource/Mega_Man_9", "http://dbpedia.org/resource/Mega_Man_Legacy_Collection", "http://dbpedia.org/resource/Mega_Man_X6", "http://dbpedia.org/resource/Mega_Man_X7", "http://dbpedia.org/resource/Mega_Man_X8", "http://dbpedia.org/resource/Megadimension_Neptunia_VII", "http://dbpedia.org/resource/Megaton_Rainfall", "http://dbpedia.org/resource/Metal_Gear_Solid_V:_Ground_Zeroes", "http://dbpedia.org/resource/Metal_Gear_Solid_V:_The_Phantom_Pain", "http://dbpedia.org/resource/Metal_Gear_Survive", "http://dbpedia.org/resource/Metal_Max_Xeno", "http://dbpedia.org/resource/Metal_Slug_3", "http://dbpedia.org/resource/Metal_Slug_4", "http://dbpedia.org/resource/Metal_Slug_5", "http://dbpedia.org/resource/Metal_Slug_7", "http://dbpedia.org/resource/Calvino_Noir", "http://dbpedia.org/resource/Rainbow_Moon", "http://dbpedia.org/resource/Raji:_An_Ancient_Epic", "http://dbpedia.org/resource/Ratchet_&_Clank_(2016_video_game)", "http://dbpedia.org/resource/Ravenous_Devils", "http://dbpedia.org/resource/Ravensword:_Shadowlands", "http://dbpedia.org/resource/Rayman_Legends", "http://dbpedia.org/resource/Re:Zero_\u2212_Starting_Life_in_Another_World:_The_Prophecy_of_the_Throne", "http://dbpedia.org/resource/Record_of_Lodoss_War:_Deedlit_in_Wonder_Labyrinth", "http://dbpedia.org/resource/Red_Dead_Online", "http://dbpedia.org/resource/Red_Dead_Redemption_2", "http://dbpedia.org/resource/Remnant:_From_the_Ashes", "http://dbpedia.org/resource/Remothered:_Broken_Porcelain", "http://dbpedia.org/resource/Remothered:_Tormented_Fathers", "http://dbpedia.org/resource/Resident_Evil:_Resistance", "http://dbpedia.org/resource/Resident_Evil_3_(2020_video_game)", "http://dbpedia.org/resource/Resident_Evil_4", "http://dbpedia.org/resource/Resident_Evil_5", "http://dbpedia.org/resource/Resident_Evil_6", "http://dbpedia.org/resource/Resident_Evil_7:_Biohazard", "http://dbpedia.org/resource/Resident_Evil_Zero", "http://dbpedia.org/resource/Resogun", "http://dbpedia.org/resource/Retro_City_Rampage", "http://dbpedia.org/resource/Return_of_the_Obra_Dinn", "http://dbpedia.org/resource/Reus_(video_game)", "http://dbpedia.org/resource/Reverie_(video_game)", "http://dbpedia.org/resource/Rewrite_(video_game)", "http://dbpedia.org/resource/Rez_(video_game)", "http://dbpedia.org/resource/The_Council_(video_game)", "http://dbpedia.org/resource/The_Crew_(video_game)", "http://dbpedia.org/resource/The_Crew_2", "http://dbpedia.org/resource/The_Dark_Eye:_Chains_of_Satinav", "http://dbpedia.org/resource/The_Dark_Eye:_Memoria", "http://dbpedia.org/resource/The_Deadly_Tower_of_Monsters", "http://dbpedia.org/resource/The_Elder_Scrolls_V:_Skyrim", "http://dbpedia.org/resource/The_Elder_Scrolls_V:_Skyrim_\u2013_Dawnguard", "http://dbpedia.org/resource/The_Elder_Scrolls_V:_Skyrim_\u2013_Dragonborn", "http://dbpedia.org/resource/The_Elder_Scrolls_V:_Skyrim_\u2013_Hearthfire", "http://dbpedia.org/resource/The_End_Is_Nigh_(video_game)", "http://dbpedia.org/resource/The_Escapists", "http://dbpedia.org/resource/The_Escapists_2", "http://dbpedia.org/resource/The_Eternal_Castle_Remastered", "http://dbpedia.org/resource/The_Evil_Within", "http://dbpedia.org/resource/The_Evil_Within_2", "http://dbpedia.org/resource/The_Fairyland_Story", "http://dbpedia.org/resource/The_Fall_(video_game)", "http://dbpedia.org/resource/The_Final_Station", "http://dbpedia.org/resource/The_Flame_in_the_Flood", "http://dbpedia.org/resource/The_Forgotten_City", "http://dbpedia.org/resource/The_Gallery_(video_game)", "http://dbpedia.org/resource/The_Gardens_Between", "http://dbpedia.org/resource/The_Golf_Club", "http://dbpedia.org/resource/The_Golf_Club_2", "http://dbpedia.org/resource/The_Golf_Club_2019_featuring_PGA_Tour", "http://dbpedia.org/resource/The_Grand_Tour_Game", "http://dbpedia.org/resource/The_House_in_Fata_Morgana", "http://dbpedia.org/resource/The_House_of_the_Dead_(video_game)", "http://dbpedia.org/resource/The_Idolmaster_Platinum_Stars", "http://dbpedia.org/resource/The_Incredible_Adventures_of_Van_Helsing", "http://dbpedia.org/resource/The_Inpatient", "http://dbpedia.org/resource/The_Journey_Down", "http://dbpedia.org/resource/The_King's_Bird", "http://dbpedia.org/resource/The_King_of_Fighters_'97", "http://dbpedia.org/resource/The_King_of_Fighters_2000", "http://dbpedia.org/resource/The_King_of_Fighters_2001", "http://dbpedia.org/resource/The_King_of_Fighters_2002", "http://dbpedia.org/resource/The_King_of_Fighters_2003", "http://dbpedia.org/resource/The_Last_Blade_2", "http://dbpedia.org/resource/The_Last_Guardian", "http://dbpedia.org/resource/The_Last_Remnant", "http://dbpedia.org/resource/The_Last_of_Us", "http://dbpedia.org/resource/The_Last_of_Us:_Left_Behind", "http://dbpedia.org/resource/The_Last_of_Us_Part_II", "http://dbpedia.org/resource/The_Legend_of_Heroes:_Akatsuki_no_Kiseki", "http://dbpedia.org/resource/The_Legend_of_Sword_and_Fairy_6", "http://dbpedia.org/resource/The_Legend_of_Sword_and_Fairy_7", "http://dbpedia.org/resource/The_Lego_Movie_2_Videogame", "http://dbpedia.org/resource/The_Lego_Movie_Videogame", "http://dbpedia.org/resource/The_Lego_Ninjago_Movie_Video_Game", "http://dbpedia.org/resource/The_Liar_Princess_and_the_Blind_Prince", "http://dbpedia.org/resource/The_Long_Journey_Home_(video_game)", "http://dbpedia.org/resource/The_Lost_Child_(video_game)", "http://dbpedia.org/resource/The_Lost_Legends_of_Redwall", "http://dbpedia.org/resource/The_Lost_Vikings", "http://dbpedia.org/resource/The_Mage's_Tale", "http://dbpedia.org/resource/The_Missing:_J.J._Macfield_and_the_Island_of_Memories", "http://dbpedia.org/resource/The_Mooseman", "http://dbpedia.org/resource/The_Mummy_Demastered", "http://dbpedia.org/resource/The_Occupation", "http://dbpedia.org/resource/The_Order:_1886", "http://dbpedia.org/resource/The_Outer_Worlds", "http://dbpedia.org/resource/The_Peanuts_Movie:_Snoopy's_Grand_Adventure", "http://dbpedia.org/resource/The_Pinball_Arcade", "http://dbpedia.org/resource/The_Playroom_(2013_video_game)", "http://dbpedia.org/resource/The_Princess_Guide_(video_game)", "http://dbpedia.org/resource/The_Quarry_(video_game)", "http://dbpedia.org/resource/The_Quiet_Man_(video_game)", "http://dbpedia.org/resource/The_Raven:_Legacy_of_a_Master_Thief", "http://dbpedia.org/resource/The_Sexy_Brutale", "http://dbpedia.org/resource/The_Silver_Case", "http://dbpedia.org/resource/The_Smurfs:_Mission_Vileaf", "http://dbpedia.org/resource/The_Stanley_Parable", "http://dbpedia.org/resource/The_Station_(video_game)", "http://dbpedia.org/resource/The_Suicide_of_Rachel_Foster", "http://dbpedia.org/resource/The_Surge", "http://dbpedia.org/resource/The_Surge_2", "http://dbpedia.org/resource/The_Swapper", "http://dbpedia.org/resource/The_Swords_of_Ditto", "http://dbpedia.org/resource/The_Talos_Principle", "http://dbpedia.org/resource/The_Tomorrow_Children", "http://dbpedia.org/resource/The_Town_of_Light", "http://dbpedia.org/resource/The_Unfinished_Swan", "http://dbpedia.org/resource/The_Vanishing_of_Ethan_Carter", "http://dbpedia.org/resource/The_Walking_Dead:_A_New_Frontier", "http://dbpedia.org/resource/The_Walking_Dead:_Michonne", "http://dbpedia.org/resource/The_Walking_Dead:_Season_Two", "http://dbpedia.org/resource/The_Walking_Dead:_The_Final_Season", "http://dbpedia.org/resource/The_Walking_Dead_(video_game)", "http://dbpedia.org/resource/The_Wild_Eight", "http://dbpedia.org/resource/The_Witch_and_the_Hundred_Knight", "http://dbpedia.org/resource/The_Witch_and_the_Hundred_Knight_2", "http://dbpedia.org/resource/The_Witness_(2016_video_game)", "http://dbpedia.org/resource/The_Wolf_Among_Us", "http://dbpedia.org/resource/Thea:_The_Awakening", "http://dbpedia.org/resource/Dishonored:_Death_of_the_Outsider", "http://dbpedia.org/resource/Emily_Wants_to_Play", "http://dbpedia.org/resource/Empire_of_Sin_(video_game)", "http://dbpedia.org/resource/S\u00e9bastien_Loeb_Rally_Evo", "http://dbpedia.org/resource/Lichtspeer", "http://dbpedia.org/resource/Vera_Blanc", "http://dbpedia.org/resource/Mistover", "http://dbpedia.org/resource/Open_Roads", "http://dbpedia.org/resource/Ubisoft_Anvil", "http://dbpedia.org/resource/Ubisoft_Connect", "http://dbpedia.org/resource/Ultratron", "http://dbpedia.org/resource/Shadows:_Awakening", "http://dbpedia.org/resource/2064:_Read_Only_Memories", "http://dbpedia.org/resource/4A_Engine", "http://dbpedia.org/resource/60_Seconds!", "http://dbpedia.org/resource/7_Days_to_Die", "http://dbpedia.org/resource/99Vidas", "http://dbpedia.org/resource/9_Monkeys_of_Shaolin", "http://dbpedia.org/resource/AO_Tennis_(video_game)", "http://dbpedia.org/resource/APB:_All_Points_Bulletin", "http://dbpedia.org/resource/Nine_Parchments", "http://dbpedia.org/resource/Ninja-Kid", "http://dbpedia.org/resource/Ninja_Senki", "http://dbpedia.org/resource/Nioh", "http://dbpedia.org/resource/Nioh_2", "http://dbpedia.org/resource/Nitroplus_Blasterz:_Heroines_Infinite_Duel", "http://dbpedia.org/resource/No_Straight_Roads", "http://dbpedia.org/resource/No_Time_to_Explain", "http://dbpedia.org/resource/Not_a_Hero", "http://dbpedia.org/resource/Nova-111", "http://dbpedia.org/resource/Nowhere_Prophet", "http://dbpedia.org/resource/Nuclear_Throne", "http://dbpedia.org/resource/OK_K.O.!_Let's_Play_Heroes", "http://dbpedia.org/resource/Obduction_(video_game)", "http://dbpedia.org/resource/Observation_(video_game)", "http://dbpedia.org/resource/Observer_(video_game)", "http://dbpedia.org/resource/Oceanhorn:_Monster_of_Uncharted_Seas", "http://dbpedia.org/resource/Octodad:_Dadliest_Catch", "http://dbpedia.org/resource/Odallus:_The_Dark_Call", "http://dbpedia.org/resource/Oddworld:_New_'n'_Tasty!", "http://dbpedia.org/resource/Oddworld:_Stranger's_Wrath", "http://dbpedia.org/resource/Odin_Sphere", "http://dbpedia.org/resource/God_of_War_Ragnar\u00f6k", "http://dbpedia.org/resource/Golem_(2019_video_game)", "http://dbpedia.org/resource/Graven_(video_game)", "http://dbpedia.org/resource/Hex:_Shards_of_Fate", "http://dbpedia.org/resource/Ignite_(game_engine)", "http://dbpedia.org/resource/Inked_(video_game)", "http://dbpedia.org/resource/Log_Jammers", "http://dbpedia.org/resource/Long_Live_the_Queen_(video_game)", "http://dbpedia.org/resource/Project_Ragtag", "http://dbpedia.org/resource/Psychonauts_in_the_Rhombus_of_Ruin", "http://dbpedia.org/resource/Rec_Room_(video_game)", "http://dbpedia.org/resource/Redeemer_(video_game)", "http://dbpedia.org/resource/Rive_(video_game)", "http://dbpedia.org/resource/Fortnite_Creative", "http://dbpedia.org/resource/Fractured_Minds", "http://dbpedia.org/resource/Pooyan", "http://dbpedia.org/resource/Soul_Saga:_Episode_1", "http://dbpedia.org/resource/Syberia:_The_World_Before", "http://dbpedia.org/resource/Sylvio_(video_game)", "http://dbpedia.org/resource/Tools_Up!", "http://dbpedia.org/resource/Treadnauts", "http://dbpedia.org/resource/Cities:_Skylines", "http://dbpedia.org/resource/Citizens_of_Earth", "http://dbpedia.org/resource/City_Connection", "http://dbpedia.org/resource/City_of_Brass_(video_game)", "http://dbpedia.org/resource/Civilization_VI", "http://dbpedia.org/resource/Cladun:_This_is_an_RPG", "http://dbpedia.org/resource/Clannad_(video_game)", "http://dbpedia.org/resource/Clone_Drone_in_the_Danger_Zone", "http://dbpedia.org/resource/Closed_Nightmare", "http://dbpedia.org/resource/Cloudpunk", "http://dbpedia.org/resource/Cobra_Kai:_The_Karate_Kid_Saga_Continues", "http://dbpedia.org/resource/Code:_Realize_\u2212_Guardian_of_Rebirth", "http://dbpedia.org/resource/Coffee_Talk_(video_game)", "http://dbpedia.org/resource/Commandos_2:_Men_of_Courage", "http://dbpedia.org/resource/Commandos_3:_Destination_Berlin", "http://dbpedia.org/resource/Conan_Exiles", "http://dbpedia.org/resource/Conarium_(video_game)", "http://dbpedia.org/resource/Conception_(video_game)", "http://dbpedia.org/resource/Constructor_(video_game)", "http://dbpedia.org/resource/Contra:_Rogue_Corps", "http://dbpedia.org/resource/Contrast_(video_game)", "http://dbpedia.org/resource/Control_(video_game)", "http://dbpedia.org/resource/Convoy_(video_game)", "http://dbpedia.org/resource/Cook,_Serve,_Delicious!_2", "http://dbpedia.org/resource/Cook,_Serve,_Delicious!_3", "http://dbpedia.org/resource/Cooking_Mama:_Cookstar", "http://dbpedia.org/resource/Cooking_Simulator", "http://dbpedia.org/resource/Alienation_(video_game)", "http://dbpedia.org/resource/Atom_RPG", "http://dbpedia.org/resource/Atomic_Heart_(video_game)", "http://dbpedia.org/resource/Attractio", "http://dbpedia.org/resource/Audiokinetic_Wwise", "http://dbpedia.org/resource/Autobahn_Police_Simulator", "http://dbpedia.org/resource/Awesomenauts", "http://dbpedia.org/resource/Axiom_Verge_2", "http://dbpedia.org/resource/John_Wick_Hex", "http://dbpedia.org/resource/Journey_to_the_Savage_Planet", "http://dbpedia.org/resource/Judgment_(video_game)", "http://dbpedia.org/resource/Juicy_Realm", "http://dbpedia.org/resource/Saturday_Morning_RPG", "http://dbpedia.org/resource/Sayonara_Wild_Hearts", "http://dbpedia.org/resource/Scaleform_GFx", "http://dbpedia.org/resource/School_Girl/Zombie_Hunter", "http://dbpedia.org/resource/Scrabble_(video_game)", "http://dbpedia.org/resource/Screencheat", "http://dbpedia.org/resource/Scribblenauts_Showdown", "http://dbpedia.org/resource/Scribblenauts_Unlimited", "http://dbpedia.org/resource/Scribblenauts_Unmasked:_A_DC_Comics_Adventure", "http://dbpedia.org/resource/Sea_of_Solitude", "http://dbpedia.org/resource/Secret_of_Mana", "http://dbpedia.org/resource/Sega_Genesis_Classics", "http://dbpedia.org/resource/Sekiro:_Shadows_Die_Twice", "http://dbpedia.org/resource/Sengoku_Basara_4", "http://dbpedia.org/resource/Senran_Kagura:_Estival_Versus", "http://dbpedia.org/resource/Senran_Kagura:_Peach_Beach_Splash", "http://dbpedia.org/resource/Edna_&_Harvey:_Harvey's_New_Eyes", "http://dbpedia.org/resource/F1_2018_(video_game)", "http://dbpedia.org/resource/Far_Cry_New_Dawn", "http://dbpedia.org/resource/Get_Even_(video_game)", "http://dbpedia.org/resource/Ghostbusters:_Spirits_Unleashed", "http://dbpedia.org/resource/Ghostrunner", "http://dbpedia.org/resource/Ghosts_(video_game)", "http://dbpedia.org/resource/GigaBash", "http://dbpedia.org/resource/Giraffe_and_Annika", "http://dbpedia.org/resource/Skulls_of_the_Shogun", "http://dbpedia.org/resource/Mercenary_Kings", "http://dbpedia.org/resource/Sportsfriends", "http://dbpedia.org/resource/KickBeat", "http://dbpedia.org/resource/Secret_Ponchos", "http://dbpedia.org/resource/Mundaun_(video_game)", "http://dbpedia.org/resource/Realm_Royale", "http://dbpedia.org/resource/BROK_the_InvestiGator", "http://dbpedia.org/resource/Back_to_the_Future:_The_Game", "http://dbpedia.org/resource/Bad_North", "http://dbpedia.org/resource/Badiya", "http://dbpedia.org/resource/Badland_(video_game)", "http://dbpedia.org/resource/Baja:_Edge_of_Control", "http://dbpedia.org/resource/Baldo:_The_Guardian_Owls", "http://dbpedia.org/resource/Baldur's_Gate:_Dark_Alliance", "http://dbpedia.org/resource/Baldur's_Gate:_Dark_Alliance_II", "http://dbpedia.org/resource/Baldur's_Gate:_Enhanced_Edition", "http://dbpedia.org/resource/Baldur's_Gate:_Siege_of_Dragonspear", "http://dbpedia.org/resource/Baldur's_Gate_II:_Enhanced_Edition", "http://dbpedia.org/resource/Baseball_Stars_2", "http://dbpedia.org/resource/Basement_Crawl", "http://dbpedia.org/resource/Batman:_Arkham_Asylum", "http://dbpedia.org/resource/Batman:_Arkham_City", "http://dbpedia.org/resource/Batman:_Arkham_Knight", "http://dbpedia.org/resource/Batman:_Arkham_Origins_Blackgate", "http://dbpedia.org/resource/Batman:_The_Enemy_Within", "http://dbpedia.org/resource/Batman:_The_Telltale_Series", "http://dbpedia.org/resource/Battle_Chef_Brigade", "http://dbpedia.org/resource/Battle_Garegga", "http://dbpedia.org/resource/Anima:_Gate_of_Memories", "http://dbpedia.org/resource/Infinifactory", "http://dbpedia.org/resource/Injustice:_Gods_Among_Us", "http://dbpedia.org/resource/Injustice_2", "http://dbpedia.org/resource/InnerSpace_(video_game)", "http://dbpedia.org/resource/Insane_Robots", "http://dbpedia.org/resource/Inside_(video_game)", "http://dbpedia.org/resource/Instinction_(video_game)", "http://dbpedia.org/resource/Ion_Fury", "http://dbpedia.org/resource/Ittle_Dew_2", "http://dbpedia.org/resource/J-Stars_Victory_VS", "http://dbpedia.org/resource/Mirror's_Edge_Catalyst", "http://dbpedia.org/resource/Mobile_Suit_Gundam:_Extreme_Vs.", "http://dbpedia.org/resource/Mom_Hid_My_Game!", "http://dbpedia.org/resource/MonoGame", "http://dbpedia.org/resource/Monster_Hunter:_World", "http://dbpedia.org/resource/Monster_Hunter_World:_Iceborne", "http://dbpedia.org/resource/Monster_Prom", "http://dbpedia.org/resource/Monster_of_the_Deep:_Final_Fantasy_XV", "http://dbpedia.org/resource/Moon_Cresta", "http://dbpedia.org/resource/Moonlighter_(video_game)", "http://dbpedia.org/resource/Mordheim:_City_of_the_Damned", "http://dbpedia.org/resource/Mortal_Kombat_11", "http://dbpedia.org/resource/Mortal_Kombat_X", "http://dbpedia.org/resource/Moss_(video_game)", "http://dbpedia.org/resource/MotoGP_14", "http://dbpedia.org/resource/MotoGP_17", "http://dbpedia.org/resource/MotoGP_18", "http://dbpedia.org/resource/MotoGP_20", "http://dbpedia.org/resource/Moto_Racer_4", "http://dbpedia.org/resource/Motor_Raid", "http://dbpedia.org/resource/Mount_&_Blade:_Warband", "http://dbpedia.org/resource/Mr._Shifty", "http://dbpedia.org/resource/MudRunner", "http://dbpedia.org/resource/Murder_House_(video_game)", "http://dbpedia.org/resource/Murdered:_Soul_Suspect", "http://dbpedia.org/resource/Mushroom_Wars_2", "http://dbpedia.org/resource/Mutant_Football_League", "http://dbpedia.org/resource/Mutant_Mudds", "http://dbpedia.org/resource/Mutant_Year_Zero:_Road_to_Eden", "http://dbpedia.org/resource/My_Friend_Pedro", "http://dbpedia.org/resource/Mystery_Chronicle:_One_Way_Heroics", "http://dbpedia.org/resource/NASCAR_Heat_2", "http://dbpedia.org/resource/NASCAR_Heat_3", "http://dbpedia.org/resource/NASCAR_Heat_Evolution", "http://dbpedia.org/resource/NBA_2K14", "http://dbpedia.org/resource/NBA_2K15", "http://dbpedia.org/resource/NBA_2K16", "http://dbpedia.org/resource/NBA_2K17", "http://dbpedia.org/resource/NBA_Live_14", "http://dbpedia.org/resource/NBA_Live_15", "http://dbpedia.org/resource/NBA_Live_16", "http://dbpedia.org/resource/NBA_Live_18", "http://dbpedia.org/resource/NBA_Live_19", "http://dbpedia.org/resource/NBA_Playgrounds", "http://dbpedia.org/resource/NHL_'94", "http://dbpedia.org/resource/NHL_15", "http://dbpedia.org/resource/NHL_16", "http://dbpedia.org/resource/NHL_17", "http://dbpedia.org/resource/NHL_19", "http://dbpedia.org/resource/NHL_20", "http://dbpedia.org/resource/NHL_21", "http://dbpedia.org/resource/NHL_22", "http://dbpedia.org/resource/Namcot_Collection", "http://dbpedia.org/resource/Nano_Assault_Neo", "http://dbpedia.org/resource/Naruto:_Ultimate_Ninja_Storm", "http://dbpedia.org/resource/Naruto_Shippuden:_Ultimate_Ninja_Storm_2", "http://dbpedia.org/resource/Naruto_Shippuden:_Ultimate_Ninja_Storm_3", "http://dbpedia.org/resource/Naruto_Shippuden:_Ultimate_Ninja_Storm_4", "http://dbpedia.org/resource/Chroma_Squad", "http://dbpedia.org/resource/Chronicles_of_Teddy:_Harmony_of_Exidus", "http://dbpedia.org/resource/Chronos_(2016_video_game)", "http://dbpedia.org/resource/Curses_'N_Chaos", "http://dbpedia.org/resource/Tony_Hawk's_Pro_Skater_5", "http://dbpedia.org/resource/Tony_Stewart's_Sprint_Car_Racing", "http://dbpedia.org/resource/Torchlight_II", "http://dbpedia.org/resource/Torchlight_III", "http://dbpedia.org/resource/Torment:_Tides_of_Numenera", "http://dbpedia.org/resource/Toukiden:_The_Age_of_Demons", "http://dbpedia.org/resource/Toukiden_2", "http://dbpedia.org/resource/TowerFall", "http://dbpedia.org/resource/Toy_Story_2:_Buzz_Lightyear_to_the_Rescue", "http://dbpedia.org/resource/TrackMania_Turbo_(2016_video_game)", "http://dbpedia.org/resource/Trailblazers_(video_game)", "http://dbpedia.org/resource/Trailmakers", "http://dbpedia.org/resource/Transference_(video_game)", "http://dbpedia.org/resource/Transformers:_Fall_of_Cybertron", "http://dbpedia.org/resource/Transformers:_Rise_of_the_Dark_Spark", "http://dbpedia.org/resource/Transistor_(video_game)", "http://dbpedia.org/resource/Travis_Strikes_Again:_No_More_Heroes", "http://dbpedia.org/resource/Trials_Fusion", "http://dbpedia.org/resource/Trials_Rising", "http://dbpedia.org/resource/Trials_of_Mana_(2020_video_game)", "http://dbpedia.org/resource/Trials_of_the_Blood_Dragon", "http://dbpedia.org/resource/Tricky_Towers", "http://dbpedia.org/resource/Trine_(video_game)", "http://dbpedia.org/resource/Trine_2", "http://dbpedia.org/resource/Troll_and_I", "http://dbpedia.org/resource/Tron_RUN/r", "http://dbpedia.org/resource/Tropico_5", "http://dbpedia.org/resource/Tropico_6", "http://dbpedia.org/resource/Trove_(video_game)", "http://dbpedia.org/resource/TumbleSeed", "http://dbpedia.org/resource/TuneIn", "http://dbpedia.org/resource/Tunic_(video_game)", "http://dbpedia.org/resource/Turok:_Dinosaur_Hunter", "http://dbpedia.org/resource/TwinBee", "http://dbpedia.org/resource/Ty_the_Tasmanian_Tiger_2:_Bush_Rescue", "http://dbpedia.org/resource/Type:Rider", "http://dbpedia.org/resource/Typoman", "http://dbpedia.org/resource/Jotun_(video_game)", "http://dbpedia.org/resource/Keep_Talking_and_Nobody_Explodes", "http://dbpedia.org/resource/Kingdom_(video_game)", "http://dbpedia.org/resource/Prodigy_Tactics", "http://dbpedia.org/resource/Project_CARS_2", "http://dbpedia.org/resource/Project_Rap_Rabbit", "http://dbpedia.org/resource/Radial-G:_Racing_Revolved", "http://dbpedia.org/resource/RE_Engine", "http://dbpedia.org/resource/Race_with_Ryan", "http://dbpedia.org/resource/American_Ninja_Warrior__:_Challenge__1", "http://dbpedia.org/resource/198X", "http://dbpedia.org/resource/A_Duel_Hand_Disaster:_Trackher", "http://dbpedia.org/resource/A_Plague_Tale:_Innocence", "http://dbpedia.org/resource/A_Short_Hike", "http://dbpedia.org/resource/A_Way_Out_(video_game)", "http://dbpedia.org/resource/Absolute_Drift", "http://dbpedia.org/resource/Absolver", "http://dbpedia.org/resource/Abyss_Odyssey", "http://dbpedia.org/resource/Abz\u00fb", "http://dbpedia.org/resource/Accel_World_vs._Sword_Art_Online:_Millennium_Twilight", "http://dbpedia.org/resource/Accounting_(video_game)", "http://dbpedia.org/resource/ActRaiser", "http://dbpedia.org/resource/AdVenture_Capitalist", "http://dbpedia.org/resource/Adventure_Time:_Finn_&_Jake_Investigations", "http://dbpedia.org/resource/Adventure_Time:_Pirates_of_the_Enchiridion", "http://dbpedia.org/resource/Adventures_of_Pip", "http://dbpedia.org/resource/Aegis_Defenders", "http://dbpedia.org/resource/Aegis_of_Earth:_Protonovus_Assault", "http://dbpedia.org/resource/Afro_Samurai_2", "http://dbpedia.org/resource/Afterparty_(video_game)", "http://dbpedia.org/resource/Agent_A:_A_Puzzle_in_Disguise", "http://dbpedia.org/resource/Agents_of_Mayhem", "http://dbpedia.org/resource/Agony_(2018_video_game)", "http://dbpedia.org/resource/Budget_Cuts", "http://dbpedia.org/resource/Bug_Fables:_The_Everlasting_Sapling", "http://dbpedia.org/resource/Bulb_Boy", "http://dbpedia.org/resource/Bulletstorm", "http://dbpedia.org/resource/Burnout_Paradise", "http://dbpedia.org/resource/Butasan", "http://dbpedia.org/resource/C4_Engine", "http://dbpedia.org/resource/Cafeteria_Nipponica", "http://dbpedia.org/resource/Caladrius_(video_game)", "http://dbpedia.org/resource/Call_of_Cthulhu_(video_game)", "http://dbpedia.org/resource/Call_of_Duty:_Advanced_Warfare", "http://dbpedia.org/resource/Call_of_Duty:_Black_Ops_III", "http://dbpedia.org/resource/Call_of_Duty:_Ghosts", "http://dbpedia.org/resource/Call_of_Duty:_Infinite_Warfare", "http://dbpedia.org/resource/Call_of_Duty:_Modern_Warfare_II_(2022_video_game)", "http://dbpedia.org/resource/Call_of_Duty:_Vanguard", "http://dbpedia.org/resource/Call_of_Duty:_Warzone", "http://dbpedia.org/resource/Catherine_(video_game)", "http://dbpedia.org/resource/Catlateral_Damage", "http://dbpedia.org/resource/Cel_Damage", "http://dbpedia.org/resource/Chameleon:_To_Dye_For!", "http://dbpedia.org/resource/Chaos;Child_Love_Chu_Chu!!", "http://dbpedia.org/resource/Chaos_Code", "http://dbpedia.org/resource/Chaos_on_Deponia", "http://dbpedia.org/resource/Chicken_Police", "http://dbpedia.org/resource/Child_of_Light", "http://dbpedia.org/resource/Chivalry:_Medieval_Warfare", "http://dbpedia.org/resource/Chorus_(video_game)", "http://dbpedia.org/resource/ChromaGun", "http://dbpedia.org/resource/Ciel_Nosurge", "http://dbpedia.org/resource/Cinders_(video_game)", "http://dbpedia.org/resource/Steven_Universe:_Save_the_Light", "http://dbpedia.org/resource/Stories:_The_Path_of_Destinies", "http://dbpedia.org/resource/Stories_Untold_(video_game)", "http://dbpedia.org/resource/Strange_Brigade", "http://dbpedia.org/resource/Street_Fighter_30th_Anniversary_Collection", "http://dbpedia.org/resource/Street_Fighter_6", "http://dbpedia.org/resource/Street_Fighter_III:_3rd_Strike", "http://dbpedia.org/resource/Street_Fighter_IV", "http://dbpedia.org/resource/Strength_of_the_Sword_3", "http://dbpedia.org/resource/Strider_(2014_video_game)", "http://dbpedia.org/resource/Strikers_1945", "http://dbpedia.org/resource/Stubbs_the_Zombie_in_Rebel_Without_a_Pulse", "http://dbpedia.org/resource/Subject_13_(video_game)", "http://dbpedia.org/resource/Submerged_(video_game)", "http://dbpedia.org/resource/Subnautica:_Below_Zero", "http://dbpedia.org/resource/Sudden_Strike_4", "http://dbpedia.org/resource/Summer_Pockets", "http://dbpedia.org/resource/Summon_Night_6", "http://dbpedia.org/resource/Sunless_Sea", "http://dbpedia.org/resource/Sunset_Riders", "http://dbpedia.org/resource/SuperHyperCube", "http://dbpedia.org/resource/Super_Dodge_Ball", "http://dbpedia.org/resource/Super_Hang-On", "http://dbpedia.org/resource/Super_Hydorah", "http://dbpedia.org/resource/Super_Meat_Boy_Forever", "http://dbpedia.org/resource/Super_Mega_Baseball", "http://dbpedia.org/resource/Super_Motherload", "http://dbpedia.org/resource/Super_Robot_Wars_T", "http://dbpedia.org/resource/Super_Robot_Wars_V", "http://dbpedia.org/resource/Super_Sidekicks_(video_game)", "http://dbpedia.org/resource/Super_Star_Wars", "http://dbpedia.org/resource/Super_Stardust_HD", "http://dbpedia.org/resource/Super_Time_Force", "http://dbpedia.org/resource/Superbeat:_Xonic", "http://dbpedia.org/resource/Superhot", "http://dbpedia.org/resource/Superliminal", "http://dbpedia.org/resource/Surgeon_Simulator", "http://dbpedia.org/resource/Surviving_Mars", "http://dbpedia.org/resource/Strafe_(video_game)", "http://dbpedia.org/resource/Styx:_Master_of_Shadows", "http://dbpedia.org/resource/Styx:_Shards_of_Darkness", "http://dbpedia.org/resource/Syndrome_(video_game)", "http://dbpedia.org/resource/Telling_Lies_(video_game)", "http://dbpedia.org/resource/Tembo_the_Badass_Elephant", "http://dbpedia.org/resource/The_Swindle_(video_game)", "http://dbpedia.org/resource/The_Technomancer", "http://dbpedia.org/resource/Id_Tech_4", "http://dbpedia.org/resource/Nvidia_GameWorks", "http://dbpedia.org/resource/Scivelation", "http://dbpedia.org/resource/Thunder_Cross_(video_game)", "http://dbpedia.org/resource/Invisible,_Inc.", "http://dbpedia.org/resource/8-Bit_Armies", "http://dbpedia.org/resource/911_Operator_(video_game)", "http://dbpedia.org/resource/A-Jax_(video_game)", "http://dbpedia.org/resource/Capcom_Beat_'Em_Up_Bundle", "http://dbpedia.org/resource/Captain_Tsubasa:_Rise_of_New_Champions", "http://dbpedia.org/resource/Car_Mechanic_Simulator_2018", "http://dbpedia.org/resource/Carmageddon:_Reincarnation", "http://dbpedia.org/resource/Carnival_Games", "http://dbpedia.org/resource/Cars_3:_Driven_to_Win", "http://dbpedia.org/resource/Cartoon_Network:_Battle_Crashers", "http://dbpedia.org/resource/Casey_Powell_Lacrosse_16", "http://dbpedia.org/resource/Castaway_Paradise", "http://dbpedia.org/resource/Castle_Crashers", "http://dbpedia.org/resource/Castlevania:_Symphony_of_the_Night", "http://dbpedia.org/resource/Cat_Quest", "http://dbpedia.org/resource/Hitman:_Absolution", "http://dbpedia.org/resource/Hitman:_Blood_Money", "http://dbpedia.org/resource/Hitman_(2016_video_game)", "http://dbpedia.org/resource/Hitman_2_(2018_video_game)", "http://dbpedia.org/resource/Hitman_Go", "http://dbpedia.org/resource/Hob_(video_game)", "http://dbpedia.org/resource/Home_Sweet_Home_(2017_video_game)", "http://dbpedia.org/resource/Homefront:_The_Revolution", "http://dbpedia.org/resource/Horizon_Forbidden_West", "http://dbpedia.org/resource/Horizon_Zero_Dawn", "http://dbpedia.org/resource/Hot_Wheels_Unleashed", "http://dbpedia.org/resource/Hotline_Miami", "http://dbpedia.org/resource/Hotline_Miami_2:_Wrong_Number", "http://dbpedia.org/resource/How_to_Survive", "http://dbpedia.org/resource/Human:_Fall_Flat", "http://dbpedia.org/resource/Beat_Saber", "http://dbpedia.org/resource/Bedlam_(2015_video_game)", "http://dbpedia.org/resource/Before_We_Leave", "http://dbpedia.org/resource/Below_(video_game)", "http://dbpedia.org/resource/Bendy_and_the_Ink_Machine", "http://dbpedia.org/resource/Labyrinth_of_Refrain:_Coven_of_Dusk", "http://dbpedia.org/resource/Lair_of_the_Clockwork_God", "http://dbpedia.org/resource/Lake_(video_game)", "http://dbpedia.org/resource/Lara_Croft_Go", "http://dbpedia.org/resource/Lara_Croft_and_the_Temple_of_Osiris", "http://dbpedia.org/resource/Laser_League", "http://dbpedia.org/resource/Last_Day_of_June", "http://dbpedia.org/resource/Last_Stop_(video_game)", "http://dbpedia.org/resource/LawBreakers", "http://dbpedia.org/resource/Layers_of_Fear", "http://dbpedia.org/resource/League_of_Evil", "http://dbpedia.org/resource/Fishing:_Barents_Sea", "http://dbpedia.org/resource/FlatOut_4:_Total_Insanity", "http://dbpedia.org/resource/The_Park_(video_game)", "http://dbpedia.org/resource/The_Turing_Test_(video_game)", "http://dbpedia.org/resource/Thumper_(video_game)", "http://dbpedia.org/resource/Time_Machine_VR", "http://dbpedia.org/resource/Toren_(video_game)", "http://dbpedia.org/resource/Toy_Soldiers:_War_Chest", "http://dbpedia.org/resource/Trollhunters:_Defenders_of_Arcadia", "http://dbpedia.org/resource/Galak-Z:_The_Dimensional", "http://dbpedia.org/resource/Gas_Guzzlers_Extreme", "http://dbpedia.org/resource/Road_Not_Taken", "http://dbpedia.org/resource/Lovers_in_a_Dangerous_Spacetime", "http://dbpedia.org/resource/McDroid", "http://dbpedia.org/resource/Tower_of_Guns", "http://dbpedia.org/resource/Mighty_Morphin_Power_Rangers:_Mega_Battle", "http://dbpedia.org/resource/NHL_18", "http://dbpedia.org/resource/Pinball_FX_3", "http://dbpedia.org/resource/Doki-Doki_Universe", "http://dbpedia.org/resource/Doki_Doki_Literature_Club!", "http://dbpedia.org/resource/Don't_Knock_Twice_(video_game)", "http://dbpedia.org/resource/Don't_Starve", "http://dbpedia.org/resource/Don_Bradman_Cricket_14", "http://dbpedia.org/resource/Donut_County", "http://dbpedia.org/resource/Doodle_God", "http://dbpedia.org/resource/Doom_(1993_video_game)", "http://dbpedia.org/resource/Doom_(2016_video_game)", "http://dbpedia.org/resource/Doom_3:_BFG_Edition", "http://dbpedia.org/resource/Doom_64", "http://dbpedia.org/resource/Doom_Eternal", "http://dbpedia.org/resource/Doom_II", "http://dbpedia.org/resource/Double_Dragon_(video_game)", "http://dbpedia.org/resource/Double_Dragon_IV", "http://dbpedia.org/resource/Double_Switch_(video_game)", "http://dbpedia.org/resource/Dragon's_Crown", "http://dbpedia.org/resource/Dragon's_Dogma", "http://dbpedia.org/resource/Dragon's_Dogma_Online", "http://dbpedia.org/resource/Dragon_Age:_Inquisition", "http://dbpedia.org/resource/Dragon_Ball_FighterZ", "http://dbpedia.org/resource/Dragon_Ball_Z:_Kakarot", "http://dbpedia.org/resource/Dragon_Fantasy", "http://dbpedia.org/resource/Dragon_Fin_Soup", "http://dbpedia.org/resource/Dragon_Quest_(video_game)", "http://dbpedia.org/resource/Dragon_Quest_Heroes:_The_World_Tree's_Woe_and_the_Blight_Below", "http://dbpedia.org/resource/Dragon_Quest_II", "http://dbpedia.org/resource/Dragon_Quest_III", "http://dbpedia.org/resource/Dragon_Quest_X", "http://dbpedia.org/resource/Dragon_Saber", "http://dbpedia.org/resource/Dragon_Star_Varnir", "http://dbpedia.org/resource/Draugen_(video_game)", "http://dbpedia.org/resource/Dream_Daddy:_A_Dad_Dating_Simulator", "http://dbpedia.org/resource/Dreamfall_Chapters", "http://dbpedia.org/resource/Dreams_(video_game)", "http://dbpedia.org/resource/Driveclub", "http://dbpedia.org/resource/Ducati:_90th_Anniversary", "http://dbpedia.org/resource/Duck_Game", "http://dbpedia.org/resource/Duke_Nukem_3D", "http://dbpedia.org/resource/Dungeon_Hunter_5", "http://dbpedia.org/resource/Dungeon_of_the_Endless", "http://dbpedia.org/resource/Dungeons_2", "http://dbpedia.org/resource/Dusk_Diver", "http://dbpedia.org/resource/Dust:_An_Elysian_Tail", "http://dbpedia.org/resource/Dying_Light:_The_Following", "http://dbpedia.org/resource/Dying_Light_2", "http://dbpedia.org/resource/Dynasty_Warriors:_Godseekers", "http://dbpedia.org/resource/Dynasty_Warriors_8", "http://dbpedia.org/resource/Dynasty_Warriors_9", "http://dbpedia.org/resource/Dynasty_Warriors_Online", "http://dbpedia.org/resource/D\u00e9j\u00e0_Vu_(video_game)", "http://dbpedia.org/resource/D\u00e9racin\u00e9", "http://dbpedia.org/resource/EA_Sports_UFC", "http://dbpedia.org/resource/EA_Sports_UFC_2", "http://dbpedia.org/resource/EA_Sports_UFC_3", "http://dbpedia.org/resource/Coffee_Crisis", "http://dbpedia.org/resource/Sine_Mora", "http://dbpedia.org/resource/SingStar_(PlayStation_3)", "http://dbpedia.org/resource/Sky_Force", "http://dbpedia.org/resource/Sky_Kid", "http://dbpedia.org/resource/Skyforge", "http://dbpedia.org/resource/Skylanders:_Imaginators", "http://dbpedia.org/resource/Skylanders:_SuperChargers", "http://dbpedia.org/resource/Skylanders:_Swap_Force", "http://dbpedia.org/resource/Skylanders:_Trap_Team", "http://dbpedia.org/resource/Slain!", "http://dbpedia.org/resource/Slay_the_Spire", "http://dbpedia.org/resource/Sleeping_Dogs_(video_game)", "http://dbpedia.org/resource/Slender:_The_Arrival", "http://dbpedia.org/resource/Slime_Rancher", "http://dbpedia.org/resource/Small_Radios_Big_Televisions", "http://dbpedia.org/resource/Snake_Pass_(video_game)", "http://dbpedia.org/resource/Sniper_Elite_4", "http://dbpedia.org/resource/Sniper_Elite_5", "http://dbpedia.org/resource/Sniper_Elite_III", "http://dbpedia.org/resource/Sniper_Elite_V2", "http://dbpedia.org/resource/Sniper_Ghost_Warrior_3", "http://dbpedia.org/resource/Snooker_19", "http://dbpedia.org/resource/Snow_(2019_video_game)", "http://dbpedia.org/resource/Snowdrop_(game_engine)", "http://dbpedia.org/resource/Sol_Divide", "http://dbpedia.org/resource/Soma_(video_game)", "http://dbpedia.org/resource/Someday_You'll_Return", "http://dbpedia.org/resource/Song_of_the_Deep", "http://dbpedia.org/resource/Songbringer", "http://dbpedia.org/resource/Sonic_Colors", "http://dbpedia.org/resource/Sonic_Forces", "http://dbpedia.org/resource/Sonic_Mania", "http://dbpedia.org/resource/Sony_Entertainment_Network", "http://dbpedia.org/resource/Soulcalibur_VI", "http://dbpedia.org/resource/Souldiers", "http://dbpedia.org/resource/Sound_Shapes", "http://dbpedia.org/resource/South_Park:_The_Fractured_but_Whole", "http://dbpedia.org/resource/South_Park:_The_Stick_of_Truth", "http://dbpedia.org/resource/Crawl_(video_game)", "http://dbpedia.org/resource/Crimson_Desert", "http://dbpedia.org/resource/Crossing_Souls", "http://dbpedia.org/resource/Crossout", "http://dbpedia.org/resource/Don't_Die,_Mr._Robot!", "http://dbpedia.org/resource/Don_Bradman_Cricket_17", "http://dbpedia.org/resource/Osiris:_New_Dawn", "http://dbpedia.org/resource/Overlord:_Fellowship_of_Evil", "http://dbpedia.org/resource/Ironclad_Tactics", "http://dbpedia.org/resource/Laserlife", "http://dbpedia.org/resource/Pix_the_Cat", "http://dbpedia.org/resource/Unravel_Two", "http://dbpedia.org/resource/Until_You_Fall", "http://dbpedia.org/resource/Vambrace:_Cold_Soul", "http://dbpedia.org/resource/2Dark", "http://dbpedia.org/resource/Corpse_Killer", "http://dbpedia.org/resource/Cosmic_Star_Heroine", "http://dbpedia.org/resource/Costume_Quest_2", "http://dbpedia.org/resource/Cotton:_Fantastic_Night_Dreams", "http://dbpedia.org/resource/Cotton_100%25", "http://dbpedia.org/resource/Cotton_2:_Magical_Night_Dreams", "http://dbpedia.org/resource/Cotton_Fantasy:_Superlative_Night_Dreams", "http://dbpedia.org/resource/CounterSpy_(video_game)", "http://dbpedia.org/resource/Crash_Bandicoot_4:_It's_About_Time", "http://dbpedia.org/resource/Crash_Bandicoot_N._Sane_Trilogy", "http://dbpedia.org/resource/Crash_Team_Racing_Nitro-Fueled", "http://dbpedia.org/resource/Crayola_Scoot", "http://dbpedia.org/resource/Crazyracing_Kartrider", "http://dbpedia.org/resource/Creaks", "http://dbpedia.org/resource/Creation_Engine", "http://dbpedia.org/resource/Creed:_Rise_to_Glory", "http://dbpedia.org/resource/Cricket_19", "http://dbpedia.org/resource/Cricket_22", "http://dbpedia.org/resource/Crimsonland", "http://dbpedia.org/resource/Cris_Tales", "http://dbpedia.org/resource/Crisis_Core:_Final_Fantasy_VII", "http://dbpedia.org/resource/Crisis_on_the_Planet_of_the_Apes_VR", "http://dbpedia.org/resource/CryEngine", "http://dbpedia.org/resource/Crypt_of_the_NecroDancer", "http://dbpedia.org/resource/Cryptark", "http://dbpedia.org/resource/Crystal_Crisis", "http://dbpedia.org/resource/Crystal_Tools", "http://dbpedia.org/resource/Cube_Life:_Island_Survival", "http://dbpedia.org/resource/Cyber_Danganronpa_VR:_The_Class_Trial", "http://dbpedia.org/resource/Cyber_Troopers_Virtual-On_Force", "http://dbpedia.org/resource/Cyber_Troopers_Virtual-On_Oratorio_Tangram", "http://dbpedia.org/resource/Cyberdimension_Neptunia:_4_Goddesses_Online", "http://dbpedia.org/resource/Cyberpunk_2077", "http://dbpedia.org/resource/DC_Universe_Online", "http://dbpedia.org/resource/DJMax_Respect", "http://dbpedia.org/resource/Da_Capo_4", "http://dbpedia.org/resource/Anodyne_2:_Return_to_Dust", "http://dbpedia.org/resource/Graceful_Explosion_Machine", "http://dbpedia.org/resource/Gradius_(video_game)", "http://dbpedia.org/resource/Gran_Turismo_7", "http://dbpedia.org/resource/Gran_Turismo_Sport", "http://dbpedia.org/resource/Granblue_Fantasy_Versus", "http://dbpedia.org/resource/Grand_Kingdom", "http://dbpedia.org/resource/Grand_Prix_Story", "http://dbpedia.org/resource/Grand_Theft_Auto_Online", "http://dbpedia.org/resource/Grand_Theft_Auto_V", "http://dbpedia.org/resource/Gravel_(video_game)", "http://dbpedia.org/resource/Graveyard_Keeper", "http://dbpedia.org/resource/Gravity_Ghost", "http://dbpedia.org/resource/Gravity_Rush", "http://dbpedia.org/resource/Gravity_Rush_2", "http://dbpedia.org/resource/Green_Hell_(video_game)", "http://dbpedia.org/resource/GrimGrimoire", "http://dbpedia.org/resource/Grim_Fandango", "http://dbpedia.org/resource/Grip:_Combat_Racing", "http://dbpedia.org/resource/Gris", "http://dbpedia.org/resource/Ground_Zero:_Texas", "http://dbpedia.org/resource/Grow_Home", "http://dbpedia.org/resource/Grow_Up_(video_game)", "http://dbpedia.org/resource/Guacamelee!", "http://dbpedia.org/resource/Guardians_of_the_Galaxy:_The_Telltale_Series", "http://dbpedia.org/resource/Guilty_Gear_Xrd", "http://dbpedia.org/resource/GuitarFreaks_and_DrumMania", "http://dbpedia.org/resource/Guitar_Hero_Live", "http://dbpedia.org/resource/Gunlord", "http://dbpedia.org/resource/Guns_of_Icarus_Online", "http://dbpedia.org/resource/H-Hour:_World's_Elite", "http://dbpedia.org/resource/Ash_of_Gods:_Redemption", "http://dbpedia.org/resource/Ashes_Cricket", "http://dbpedia.org/resource/Assassin's_Creed_Odyssey_\u2013_Legacy_of_the_First_Blade", "http://dbpedia.org/resource/Assassin's_Creed_Syndicate:_Jack_the_Ripper", "http://dbpedia.org/resource/Astria_Ascending", "http://dbpedia.org/resource/Headlander", "http://dbpedia.org/resource/Heaven's_Vault", "http://dbpedia.org/resource/Heavy_Fire", "http://dbpedia.org/resource/Hellblade:_Senua's_Sacrifice", "http://dbpedia.org/resource/Helldivers", "http://dbpedia.org/resource/Hello_Neighbor", "http://dbpedia.org/resource/Herald:_An_Interactive_Period_Drama", "http://dbpedia.org/resource/Hero_Must_Die", "http://dbpedia.org/resource/Hidden_Agenda_(2017_video_game)", "http://dbpedia.org/resource/MLB_14:_The_Show", "http://dbpedia.org/resource/MLB_15:_The_Show", "http://dbpedia.org/resource/MLB_The_Show_16", "http://dbpedia.org/resource/MLB_The_Show_17", "http://dbpedia.org/resource/MXGP_The_Official_Motocross_Videogame", "http://dbpedia.org/resource/MX_vs._ATV_Supercross", "http://dbpedia.org/resource/Machinarium", "http://dbpedia.org/resource/Mad_Max_(2015_video_game)", "http://dbpedia.org/resource/Mad_Rat_Dead", "http://dbpedia.org/resource/Madden_NFL_15", "http://dbpedia.org/resource/Madden_NFL_16", "http://dbpedia.org/resource/Madden_NFL_17", "http://dbpedia.org/resource/Madden_NFL_18", "http://dbpedia.org/resource/Madden_NFL_25", "http://dbpedia.org/resource/Mafia:_Definitive_Edition", "http://dbpedia.org/resource/Mafia_II", "http://dbpedia.org/resource/Mafia_III", "http://dbpedia.org/resource/Magicka_2", "http://dbpedia.org/resource/Maid_of_Sker_(video_game)", "http://dbpedia.org/resource/Maldita_Castilla", "http://dbpedia.org/resource/Malicious_(video_game)", "http://dbpedia.org/resource/Maneater_(video_game)", "http://dbpedia.org/resource/Manifold_Garden", "http://dbpedia.org/resource/Manual_Samuel", "http://dbpedia.org/resource/CRSED:_F.O.A.D.", "http://dbpedia.org/resource/Chambara_(video_game)", "http://dbpedia.org/resource/Ride_(video_game)", "http://dbpedia.org/resource/RimWorld", "http://dbpedia.org/resource/Rime_(video_game)", "http://dbpedia.org/resource/Rise_of_the_Tomb_Raider", "http://dbpedia.org/resource/Rise_of_the_Triad", "http://dbpedia.org/resource/Risen_3:_Titan_Lords", "http://dbpedia.org/resource/Risk_(video_game)", "http://dbpedia.org/resource/Risk_of_Rain", "http://dbpedia.org/resource/Road_Rage_(video_game)", "http://dbpedia.org/resource/Robinson:_The_Journey", "http://dbpedia.org/resource/Robonauts", "http://dbpedia.org/resource/Robotics;Notes", "http://dbpedia.org/resource/Robotics;Notes_DaSH", "http://dbpedia.org/resource/Rock_Band_4", "http://dbpedia.org/resource/Rock_n'_Roll_Racing", "http://dbpedia.org/resource/Rock_of_Ages_2:_Bigger_&_Boulder", "http://dbpedia.org/resource/Rock_of_Ages_3:_Make_&_Break", "http://dbpedia.org/resource/Rocket_Arena_(video_game)", "http://dbpedia.org/resource/Rocket_League", "http://dbpedia.org/resource/Rockets_Rockets_Rockets", "http://dbpedia.org/resource/Rocksmith_2014", "http://dbpedia.org/resource/Rockstar_Advanced_Game_Engine", "http://dbpedia.org/resource/Rockstar_Games_Social_Club", "http://dbpedia.org/resource/Rod_Land", "http://dbpedia.org/resource/Rogue_Trooper_(video_game)", "http://dbpedia.org/resource/Clicker_Heroes", "http://dbpedia.org/resource/Dakar_18", "http://dbpedia.org/resource/Dandy_Ace", "http://dbpedia.org/resource/Danger_Zone_(video_game)", "http://dbpedia.org/resource/Dangerous_Driving_(video_game)", "http://dbpedia.org/resource/Dangerous_Golf", "http://dbpedia.org/resource/Diesel_(game_engine)", "http://dbpedia.org/resource/The_Bunker_(video_game)", "http://dbpedia.org/resource/Flynn:_Son_of_Crimson", "http://dbpedia.org/resource/For_the_King", "http://dbpedia.org/resource/Plague_Inc:_Evolved", "http://dbpedia.org/resource/Trine_3:_The_Artifacts_of_Power", "http://dbpedia.org/resource/There_Came_an_Echo", "http://dbpedia.org/resource/I_Am_Bread", "http://dbpedia.org/resource/I_Hate_Running_Backwards", "http://dbpedia.org/resource/Amazing_Princess_Sarah", "http://dbpedia.org/resource/Amazon_Digital_Software_&_Video_Games", "http://dbpedia.org/resource/America's_Army", "http://dbpedia.org/resource/Everybody's_Golf_(2017_video_game)", "http://dbpedia.org/resource/Everything_(video_game)", "http://dbpedia.org/resource/Evoland_2", "http://dbpedia.org/resource/Evolve_(video_game)", "http://dbpedia.org/resource/Exile_Election", "http://dbpedia.org/resource/Exist_Archive", "http://dbpedia.org/resource/Exo_One", "http://dbpedia.org/resource/Expansion_packs_for_The_Sims_4", "http://dbpedia.org/resource/Extinction_(video_game)", "http://dbpedia.org/resource/F1_2015_(video_game)", "http://dbpedia.org/resource/F1_2016_(video_game)", "http://dbpedia.org/resource/F1_2017_(video_game)", "http://dbpedia.org/resource/F1_2021_(video_game)", "http://dbpedia.org/resource/F1_22", "http://dbpedia.org/resource/FIFA_15", "http://dbpedia.org/resource/FIFA_16", "http://dbpedia.org/resource/FIFA_17", "http://dbpedia.org/resource/FIFA_18", "http://dbpedia.org/resource/FMOD", "http://dbpedia.org/resource/Fade_to_Silence", "http://dbpedia.org/resource/Fairy_Fencer_F", "http://dbpedia.org/resource/Fall_Guys", "http://dbpedia.org/resource/Fallout_4", "http://dbpedia.org/resource/Fallout_76", "http://dbpedia.org/resource/Fallout_Shelter", "http://dbpedia.org/resource/Family_Feud_(video_game_series)", "http://dbpedia.org/resource/Fantastic_Contraption_(2016_video_game)", "http://dbpedia.org/resource/Fantasy_Strike", "http://dbpedia.org/resource/Far_Cry_3", "http://dbpedia.org/resource/Far_Cry_3:_Blood_Dragon", "http://dbpedia.org/resource/Far_Cry_4", "http://dbpedia.org/resource/Far_Cry_5", "http://dbpedia.org/resource/Far_Cry_6", "http://dbpedia.org/resource/Far_Cry_Primal", "http://dbpedia.org/resource/Fast_Striker", "http://dbpedia.org/resource/Fat_Princess_Adventures", "http://dbpedia.org/resource/Fatal_Frame:_Maiden_of_Black_Water", "http://dbpedia.org/resource/Fate/Extella:_The_Umbral_Star", "http://dbpedia.org/resource/Fault_Milestone_One", "http://dbpedia.org/resource/Fault_Milestone_Two", "http://dbpedia.org/resource/Fe_(video_game)", "http://dbpedia.org/resource/Fear_Effect_Sedna", "http://dbpedia.org/resource/Felix_the_Reaper", "http://dbpedia.org/resource/Fez_(video_game)", "http://dbpedia.org/resource/Fighting_EX_Layer", "http://dbpedia.org/resource/Final_Fantasy_Crystal_Chronicles_(video_game)", "http://dbpedia.org/resource/Final_Fantasy_Type-0_HD", "http://dbpedia.org/resource/Final_Fantasy_VII_Remake", "http://dbpedia.org/resource/Final_Fantasy_XIV:_Endwalker", "http://dbpedia.org/resource/Final_Fantasy_XIV:_Shadowbringers", "http://dbpedia.org/resource/Final_Fantasy_XIV:_Stormblood", "http://dbpedia.org/resource/Final_Fantasy_XV", "http://dbpedia.org/resource/Final_Fantasy_XV:_Pocket_Edition", "http://dbpedia.org/resource/Final_Horizon", "http://dbpedia.org/resource/Firewall:_Zero_Hour", "http://dbpedia.org/resource/Firewatch", "http://dbpedia.org/resource/Fist_of_the_North_Star:_Lost_Paradise", "http://dbpedia.org/resource/Five_Nights_at_Freddy's:_Help_Wanted", "http://dbpedia.org/resource/Five_Nights_at_Freddy's:_Security_Breach", "http://dbpedia.org/resource/Five_Nights_at_Freddy's:_Sister_Location", "http://dbpedia.org/resource/Five_Nights_at_Freddy's_(video_game)", "http://dbpedia.org/resource/Five_Nights_at_Freddy's_2", "http://dbpedia.org/resource/Five_Nights_at_Freddy's_3", "http://dbpedia.org/resource/Five_Nights_at_Freddy's_4", "http://dbpedia.org/resource/Flashback_(1992_video_game)", "http://dbpedia.org/resource/Flinthook", "http://dbpedia.org/resource/Flockers", "http://dbpedia.org/resource/Flow_(video_game)", "http://dbpedia.org/resource/Flywrench", "http://dbpedia.org/resource/Batman:_Arkham_VR", "http://dbpedia.org/resource/Jenny_LeClue", "http://dbpedia.org/resource/Jetpack_Joyride", "http://dbpedia.org/resource/Jim_Power:_The_Lost_Dimension_in_3-D", "http://dbpedia.org/resource/JoJo's_Bizarre_Adventure:_Eyes_of_Heaven", "http://dbpedia.org/resource/Joe_Dever's_Lone_Wolf", "http://dbpedia.org/resource/Bite_the_Bullet_(video_game)", "http://dbpedia.org/resource/Black_the_Fall", "http://dbpedia.org/resource/Blacksad:_Under_the_Skin", "http://dbpedia.org/resource/Blackwood_Crossing", "http://dbpedia.org/resource/Blazerush", "http://dbpedia.org/resource/Bleed_(video_game)", "http://dbpedia.org/resource/Left_Alive", "http://dbpedia.org/resource/Legend_of_Kay", "http://dbpedia.org/resource/Lego_Batman_3:_Beyond_Gotham", "http://dbpedia.org/resource/Lego_Brawls", "http://dbpedia.org/resource/Lego_City_Undercover", "http://dbpedia.org/resource/Lego_DC_Super-Villains", "http://dbpedia.org/resource/Lego_Dimensions", "http://dbpedia.org/resource/Lego_Harry_Potter:_Years_1\u20134", "http://dbpedia.org/resource/Lego_Harry_Potter:_Years_5\u20137", "http://dbpedia.org/resource/Lego_Jurassic_World", "http://dbpedia.org/resource/Lego_Marvel's_Avengers", "http://dbpedia.org/resource/Lego_Marvel_Super_Heroes", "http://dbpedia.org/resource/Lego_Marvel_Super_Heroes_2", "http://dbpedia.org/resource/Lego_Star_Wars:_The_Force_Awakens", "http://dbpedia.org/resource/Lego_Star_Wars:_The_Skywalker_Saga", "http://dbpedia.org/resource/Lego_The_Hobbit_(video_game)", "http://dbpedia.org/resource/Lego_The_Incredibles", "http://dbpedia.org/resource/Lego_Worlds", "http://dbpedia.org/resource/Legrand_Legacy", "http://dbpedia.org/resource/Leisure_Suit_Larry:_Wet_Dreams_Don't_Dry", "http://dbpedia.org/resource/Leisure_Suit_Larry:_Wet_Dreams_Dry_Twice", "http://dbpedia.org/resource/Let_It_Die_(video_game)", "http://dbpedia.org/resource/Lethal_League", "http://dbpedia.org/resource/Lethal_VR", "http://dbpedia.org/resource/Libble_Rabble", "http://dbpedia.org/resource/Lichdom:_Battlemage", "http://dbpedia.org/resource/Life_Is_Strange:_True_Colors", "http://dbpedia.org/resource/Life_Is_Strange_(video_game)", "http://dbpedia.org/resource/Lifeless_Planet", "http://dbpedia.org/resource/Liquid_Kids", "http://dbpedia.org/resource/Natsuiro_High_School:_Seishun_Hakusho", "http://dbpedia.org/resource/Natural_Doctrine", "http://dbpedia.org/resource/Necropolis_(video_game)", "http://dbpedia.org/resource/Need_for_Speed:_Hot_Pursuit_(2010_video_game)", "http://dbpedia.org/resource/Need_for_Speed_(2015_video_game)", "http://dbpedia.org/resource/Need_for_Speed_Payback", "http://dbpedia.org/resource/Need_for_Speed_Rivals", "http://dbpedia.org/resource/Nefarious_(video_game)", "http://dbpedia.org/resource/Neighbours_from_Hell", "http://dbpedia.org/resource/Neighbours_from_Hell_2:_On_Vacation", "http://dbpedia.org/resource/Neon_Abyss", "http://dbpedia.org/resource/Neon_Chrome", "http://dbpedia.org/resource/Never_Alone_(video_game)", "http://dbpedia.org/resource/Neversong", "http://dbpedia.org/resource/Neverwinter_Nights:_Hordes_of_the_Underdark", "http://dbpedia.org/resource/Neverwinter_Nights:_Kingmaker", "http://dbpedia.org/resource/Neverwinter_Nights:_Shadows_of_Undrentide", "http://dbpedia.org/resource/Neverwinter_Nights_(2002_video_game)", "http://dbpedia.org/resource/Next_Up_Hero", "http://dbpedia.org/resource/Ni_no_Kuni:_Wrath_of_the_White_Witch", "http://dbpedia.org/resource/Nickelodeon_All-Star_Brawl", "http://dbpedia.org/resource/Nickelodeon_Kart_Racers", "http://dbpedia.org/resource/Nickelodeon_Kart_Racers_2:_Grand_Prix", "http://dbpedia.org/resource/Nickelodeon_Kart_Racers_3:_Slime_Speedway", "http://dbpedia.org/resource/Nidhogg_(video_game)", "http://dbpedia.org/resource/Nidhogg_2", "http://dbpedia.org/resource/Nier:_Automata", "http://dbpedia.org/resource/Night_Trap", "http://dbpedia.org/resource/Night_in_the_Woods", "http://dbpedia.org/resource/Nights_of_Azure", "http://dbpedia.org/resource/Payday_2", "http://dbpedia.org/resource/Peggle_2", "http://dbpedia.org/resource/Penguin_Wars", "http://dbpedia.org/resource/Perception_(video_game)", "http://dbpedia.org/resource/Persona_4_Arena_Ultimax", "http://dbpedia.org/resource/Persona_5", "http://dbpedia.org/resource/Persona_5_Strikers", "http://dbpedia.org/resource/Phantasy_Star_Online_2", "http://dbpedia.org/resource/Phantom_Breaker:_Battle_Grounds", "http://dbpedia.org/resource/Phantom_Doctrine", "http://dbpedia.org/resource/Phoenix_Point", "http://dbpedia.org/resource/Phoenix_Wright:_Ace_Attorney", "http://dbpedia.org/resource/Phoenix_Wright:_Ace_Attorney_Trilogy", "http://dbpedia.org/resource/Phoenix_Wright:_Ace_Attorney_\u2013_Justice_for_All", "http://dbpedia.org/resource/Phoenix_Wright:_Ace_Attorney_\u2013_Trials_and_Tribulations", "http://dbpedia.org/resource/Phozon", "http://dbpedia.org/resource/Pier_Solar_and_the_Great_Architects", "http://dbpedia.org/resource/Prison_Architect", "http://dbpedia.org/resource/Pro_Evolution_Soccer_2015", "http://dbpedia.org/resource/Pro_Evolution_Soccer_2016", "http://dbpedia.org/resource/Pro_Evolution_Soccer_2017", "http://dbpedia.org/resource/Pro_Evolution_Soccer_2018", "http://dbpedia.org/resource/Pro_Evolution_Soccer_2019", "http://dbpedia.org/resource/Professional_Baseball_Spirits", "http://dbpedia.org/resource/Project_CARS_(video_game)", "http://dbpedia.org/resource/Project_CARS_3", "http://dbpedia.org/resource/Project_Warlock", "http://dbpedia.org/resource/Prototype_(video_game)", "http://dbpedia.org/resource/Prototype_2", "http://dbpedia.org/resource/Psycho-Pass:_Mandatory_Happiness", "http://dbpedia.org/resource/Psychonauts_2", "http://dbpedia.org/resource/Puddle_(video_game)", "http://dbpedia.org/resource/Pumped_BMX", "http://dbpedia.org/resource/Punch_Club", "http://dbpedia.org/resource/Pure_Chess", "http://dbpedia.org/resource/Pure_Pool", "http://dbpedia.org/resource/Push_Me_Pull_You", "http://dbpedia.org/resource/Putty_Squad", "http://dbpedia.org/resource/Puyo_Puyo_Champions", "http://dbpedia.org/resource/Q*bert", "http://dbpedia.org/resource/Q.U.B.E.", "http://dbpedia.org/resource/Quake_(video_game)", "http://dbpedia.org/resource/Quest_of_Dungeons", "http://dbpedia.org/resource/R-Type", "http://dbpedia.org/resource/R-Type_II", "http://dbpedia.org/resource/RIGS:_Mechanized_Combat_League", "http://dbpedia.org/resource/RPG_Maker", "http://dbpedia.org/resource/RPM_Racing", "http://dbpedia.org/resource/RWBY:_Grimm_Eclipse", "http://dbpedia.org/resource/Race_the_Sun_(video_game)", "http://dbpedia.org/resource/Rage_2", "http://dbpedia.org/resource/Raging_Loop", "http://dbpedia.org/resource/Raid:_World_War_II", "http://dbpedia.org/resource/Railway_Empire", "http://dbpedia.org/resource/They_Are_Billions", "http://dbpedia.org/resource/Thief_(2014_video_game)", "http://dbpedia.org/resource/Thief_Simulator", "http://dbpedia.org/resource/Thimbleweed_Park", "http://dbpedia.org/resource/This_Is_the_Police", "http://dbpedia.org/resource/Thomas_Was_Alone", "http://dbpedia.org/resource/Thronebreaker:_The_Witcher_Tales", "http://dbpedia.org/resource/Ticket_to_Ride_(video_game)", "http://dbpedia.org/resource/Tiny_Troopers:_Joint_Ops", "http://dbpedia.org/resource/Titan_Quest", "http://dbpedia.org/resource/Titan_Quest:_Immortal_Throne", "http://dbpedia.org/resource/Titan_Souls", "http://dbpedia.org/resource/Toby:_The_Secret_Mine", "http://dbpedia.org/resource/ToeJam_&_Earl:_Back_in_the_Groove", "http://dbpedia.org/resource/Toki_(video_game)", "http://dbpedia.org/resource/Toki_Tori_2", "http://dbpedia.org/resource/Tokyo_42", "http://dbpedia.org/resource/Tokyo_Dark", "http://dbpedia.org/resource/Tokyo_Ghoul:_re_Call_to_Exist", "http://dbpedia.org/resource/Tokyo_Twilight_Ghost_Hunters", "http://dbpedia.org/resource/Tom_Clancy's_Ghost_Recon_Breakpoint", "http://dbpedia.org/resource/Tom_Clancy's_Ghost_Recon_Wildlands", "http://dbpedia.org/resource/Tom_Clancy's_The_Division", "http://dbpedia.org/resource/Tomb_Raider_(2013_video_game)", "http://dbpedia.org/resource/Wilmot's_Warehouse", "http://dbpedia.org/resource/Windjammers_(video_game)", "http://dbpedia.org/resource/Windjammers_2", "http://dbpedia.org/resource/Wipeout_Omega_Collection", "http://dbpedia.org/resource/Woah_Dave!", "http://dbpedia.org/resource/Wolfenstein:_The_New_Order", "http://dbpedia.org/resource/Wolfenstein:_The_Old_Blood", "http://dbpedia.org/resource/Wolfenstein:_Youngblood", "http://dbpedia.org/resource/Wolfenstein_II:_The_New_Colossus", "http://dbpedia.org/resource/Wonder_Boy:_The_Dragon's_Trap", "http://dbpedia.org/resource/Wonder_Boy_(video_game)", "http://dbpedia.org/resource/World_End_Syndrome", "http://dbpedia.org/resource/World_of_Tanks", "http://dbpedia.org/resource/Worlds_of_Magic", "http://dbpedia.org/resource/Worms_Battlegrounds", "http://dbpedia.org/resource/Wytchwood", "http://dbpedia.org/resource/XCOM_2", "http://dbpedia.org/resource/XIII_(2020_video_game)", "http://dbpedia.org/resource/X_Multiply", "http://dbpedia.org/resource/Xeodrifter", "http://dbpedia.org/resource/YIIK:_A_Postmodern_RPG", "http://dbpedia.org/resource/Yakuza:_Like_a_Dragon", "http://dbpedia.org/resource/Yakuza_0", "http://dbpedia.org/resource/Yakuza_3", "http://dbpedia.org/resource/Yakuza_4", "http://dbpedia.org/resource/Yakuza_5", "http://dbpedia.org/resource/Yakuza_6:_The_Song_of_Life", "http://dbpedia.org/resource/Yakuza_Kiwami", "http://dbpedia.org/resource/Yakuza_Kiwami_2", "http://dbpedia.org/resource/Yesterday_Origins", "http://dbpedia.org/resource/Inazuma_Eleven:_Victory_Road_of_Heroes", "http://dbpedia.org/resource/Insurgency:_Sandstorm", "http://dbpedia.org/resource/PlanetSide_2", "http://dbpedia.org/resource/Leaving_Lyndow", "http://dbpedia.org/resource/Legacy_of_Kain:_Dead_Sun", "http://dbpedia.org/resource/Little_Red_Lie", "http://dbpedia.org/resource/EFootball_PES_2020", "http://dbpedia.org/resource/ESP_Ra.De.", "http://dbpedia.org/resource/Eagle_Flight", "http://dbpedia.org/resource/Earth_Atlantis", "http://dbpedia.org/resource/Earth_Defense_Force:_Iron_Rain", "http://dbpedia.org/resource/Earth_Defense_Force_(video_game)", "http://dbpedia.org/resource/Earth_Defense_Force_2025", "http://dbpedia.org/resource/Earth_Defense_Force_5", "http://dbpedia.org/resource/Earthlock", "http://dbpedia.org/resource/Eastshade", "http://dbpedia.org/resource/Edna_&_Harvey:_The_Breakout", "http://dbpedia.org/resource/Ego_(game_engine)", "http://dbpedia.org/resource/Eiyuden_Chronicle:_Rising", "http://dbpedia.org/resource/Elden_Ring", "http://dbpedia.org/resource/Electronic_Super_Joy", "http://dbpedia.org/resource/Elevator_Action", "http://dbpedia.org/resource/Elite_Dangerous", "http://dbpedia.org/resource/Elliot_Quest", "http://dbpedia.org/resource/Ancestors:_The_Humankind_Odyssey", "http://dbpedia.org/resource/JumpJet_Rex", "http://dbpedia.org/resource/Jump_King", "http://dbpedia.org/resource/Jurassic_World_Evolution", "http://dbpedia.org/resource/Just_Cause_3", "http://dbpedia.org/resource/Just_Dance_2014", "http://dbpedia.org/resource/Just_Dance_2015", "http://dbpedia.org/resource/Just_Dance_2016", "http://dbpedia.org/resource/Just_Dance_2018", "http://dbpedia.org/resource/Just_Shapes_&_Beats", "http://dbpedia.org/resource/Just_Sing", "http://dbpedia.org/resource/Kamen_Rider:_Battride_War", "http://dbpedia.org/resource/Kamen_Rider:_Climax", "http://dbpedia.org/resource/Kamen_Rider:_Memory_of_Heroez", "http://dbpedia.org/resource/Kamiwaza", "http://dbpedia.org/resource/Loadout", "http://dbpedia.org/resource/Lock's_Quest", "http://dbpedia.org/resource/LocoRoco", "http://dbpedia.org/resource/LocoRoco_2", "http://dbpedia.org/resource/LocoRoco_Midnight_Carnival", "http://dbpedia.org/resource/Lone_Survivor_(video_game)", "http://dbpedia.org/resource/Loot_Rascals", "http://dbpedia.org/resource/Lords_of_the_Fallen", "http://dbpedia.org/resource/Lost_Ember", "http://dbpedia.org/resource/Lost_Judgment", "http://dbpedia.org/resource/Lost_Sphear", "http://dbpedia.org/resource/Lovely_Planet", "http://dbpedia.org/resource/Lumines:_Puzzle_Fusion", "http://dbpedia.org/resource/Luminous_Engine", "http://dbpedia.org/resource/Lumo_(video_game)", "http://dbpedia.org/resource/Bush_Hockey_League", "http://dbpedia.org/resource/Old_Man's_Journey", "http://dbpedia.org/resource/OlliOlli", "http://dbpedia.org/resource/OlliOlli2:_Welcome_to_Olliwood", "http://dbpedia.org/resource/Omega_Quintet", "http://dbpedia.org/resource/Omensight", "http://dbpedia.org/resource/One-Punch_Man:_A_Hero_Nobody_Knows", "http://dbpedia.org/resource/OneShot", "http://dbpedia.org/resource/One_Night_Stand_(video_game)", "http://dbpedia.org/resource/One_Piece:_Burning_Blood", "http://dbpedia.org/resource/One_Piece:_Pirate_Warriors_3", "http://dbpedia.org/resource/One_Piece:_Pirate_Warriors_4", "http://dbpedia.org/resource/One_Piece:_Unlimited_World_Red", "http://dbpedia.org/resource/One_Piece:_World_Seeker", "http://dbpedia.org/resource/Onechanbara_Z2:_Chaos", "http://dbpedia.org/resource/Oniken", "http://dbpedia.org/resource/Onimusha:_Warlords", "http://dbpedia.org/resource/Oninaki", "http://dbpedia.org/resource/Onrush", "http://dbpedia.org/resource/Orcs_Must_Die!_Unchained", "http://dbpedia.org/resource/Organ_Trail", "http://dbpedia.org/resource/Outcast_(video_game)", "http://dbpedia.org/resource/Outer_Wilds", "http://dbpedia.org/resource/Outlast", "http://dbpedia.org/resource/Outlast_2", "http://dbpedia.org/resource/Outriders_(video_game)", "http://dbpedia.org/resource/Outward", "http://dbpedia.org/resource/Overcooked", "http://dbpedia.org/resource/Overcooked_2", "http://dbpedia.org/resource/Overland_(video_game)", "http://dbpedia.org/resource/Overload_(video_game)", "http://dbpedia.org/resource/Owlboy", "http://dbpedia.org/resource/Civilization_VI:_Gathering_Storm", "http://dbpedia.org/resource/Civilization_VI:_Rise_and_Fall", "http://dbpedia.org/resource/Serious_Sam:_The_First_Encounter", "http://dbpedia.org/resource/Serious_Sam:_The_Second_Encounter", "http://dbpedia.org/resource/Session:_Skate_Sim", "http://dbpedia.org/resource/Shadow_Blade:_Reload", "http://dbpedia.org/resource/Shadow_Complex", "http://dbpedia.org/resource/Shadow_Man_(video_game)", "http://dbpedia.org/resource/Shadow_Tactics:_Blades_of_the_Shogun", "http://dbpedia.org/resource/Shadow_Warrior_(2013_video_game)", "http://dbpedia.org/resource/Shadow_Warrior_2", "http://dbpedia.org/resource/Shadow_Warrior_3", "http://dbpedia.org/resource/Shadow_of_the_Colossus_(2018_video_game)", "http://dbpedia.org/resource/Shadow_of_the_Tomb_Raider", "http://dbpedia.org/resource/Shadowgate", "http://dbpedia.org/resource/Shadowrun:_Dragonfall", "http://dbpedia.org/resource/Shadowrun:_Hong_Kong", "http://dbpedia.org/resource/Shadowrun_Returns", "http://dbpedia.org/resource/Shady_Part_of_Me", "http://dbpedia.org/resource/Shakedown:_Hawaii", "http://dbpedia.org/resource/Shantae:_Half-Genie_Hero", "http://dbpedia.org/resource/Shantae:_Risky's_Revenge", "http://dbpedia.org/resource/Shantae_and_the_Pirate's_Curse", "http://dbpedia.org/resource/Shantae_and_the_Seven_Sirens", "http://dbpedia.org/resource/Shaq_Fu:_A_Legend_Reborn", "http://dbpedia.org/resource/Shatter_(video_game)", "http://dbpedia.org/resource/Sheltered_(video_game)", "http://dbpedia.org/resource/Shenmue_(video_game)", "http://dbpedia.org/resource/Shenmue_II", "http://dbpedia.org/resource/Shenmue_III", "http://dbpedia.org/resource/Sherlock_Holmes:_Crimes_&_Punishments", "http://dbpedia.org/resource/Sherlock_Holmes:_The_Awakened_(2007_video_game)", "http://dbpedia.org/resource/Sherlock_Holmes:_The_Devil's_Daughter", "http://dbpedia.org/resource/Shin-chan:_Me_and_the_Professor_on_Summer_Vacation_\u2013_The_Endless_Seven-Day_Journey", "http://dbpedia.org/resource/Shining_Resonance_Refrain", "http://dbpedia.org/resource/Shovel_Knight", "http://dbpedia.org/resource/Sigil_(mod)", "http://dbpedia.org/resource/Silence_(video_game)", "http://dbpedia.org/resource/Silent_Hills", "http://dbpedia.org/resource/Silt_(video_game)", "http://dbpedia.org/resource/Space_Crew", "http://dbpedia.org/resource/Space_Hulk:_Deathwing", "http://dbpedia.org/resource/Space_Hulk_(2013_video_game)", "http://dbpedia.org/resource/Space_Invaders_Invincible_Collection", "http://dbpedia.org/resource/Spacelords", "http://dbpedia.org/resource/SpeedRunners", "http://dbpedia.org/resource/Spelunker_World", "http://dbpedia.org/resource/Spider-Man:_Miles_Morales", "http://dbpedia.org/resource/Spider-Man:_The_City_That_Never_Sleeps", "http://dbpedia.org/resource/Spider-Man_(2018_video_game)", "http://dbpedia.org/resource/Spider:_Rite_of_the_Shrouded_Moon", "http://dbpedia.org/resource/SpongeBob_SquarePants:_Battle_for_Bikini_Bottom_\u2013_Rehydrated", "http://dbpedia.org/resource/Star_Force", "http://dbpedia.org/resource/Star_Ocean:_The_Last_Hope", "http://dbpedia.org/resource/Star_Ocean:_The_Second_Story", "http://dbpedia.org/resource/Star_Ocean_(video_game)", "http://dbpedia.org/resource/Star_Trek:_Bridge_Crew", "http://dbpedia.org/resource/Star_Trek_Online", "http://dbpedia.org/resource/Star_Wars_Battlefront_(2015_video_game)", "http://dbpedia.org/resource/Star_Wars_Battlefront_II_(2017_video_game)", "http://dbpedia.org/resource/Star_Wars_Episode_I:_Racer", "http://dbpedia.org/resource/Star_Wars_Jedi:_Fallen_Order", "http://dbpedia.org/resource/Star_Wars_Jedi_Knight:_Jedi_Academy", "http://dbpedia.org/resource/Star_Wars_Jedi_Knight_II:_Jedi_Outcast", "http://dbpedia.org/resource/Stardew_Valley", "http://dbpedia.org/resource/Starlink:_Battle_for_Atlas", "http://dbpedia.org/resource/Stealth_Bastard", "http://dbpedia.org/resource/Stealth_Inc_2:_A_Game_of_Clones", "http://dbpedia.org/resource/SteamWorld_Dig_2", "http://dbpedia.org/resource/SteamWorld_Heist", "http://dbpedia.org/resource/Steep_(video_game)", "http://dbpedia.org/resource/Steins;Gate:_Linear_Bounded_Phenogram", "http://dbpedia.org/resource/Steins;Gate_Elite", "http://dbpedia.org/resource/Stellaris_(video_game)", "http://dbpedia.org/resource/Stern_Pinball_Arcade", "http://dbpedia.org/resource/Dota_Auto_Chess", "http://dbpedia.org/resource/Three_Fourths_Home", "http://dbpedia.org/resource/Kerbal_Space_Program_2", "http://dbpedia.org/resource/Knee_Deep_(video_game)", "http://dbpedia.org/resource/Knights_and_Bikes", "http://dbpedia.org/resource/Knock-Knock_(video_game)", "http://dbpedia.org/resource/Knowledge_is_Power_(video_game)", "http://dbpedia.org/resource/Mount_&_Blade_II:_Bannerlord", "http://dbpedia.org/resource/Rebel_Galaxy", "http://dbpedia.org/resource/Rebel_Galaxy_Outlaw", "http://dbpedia.org/resource/Shadwen", "http://dbpedia.org/resource/Wattam", "http://dbpedia.org/resource/Werewolves_Within", "http://dbpedia.org/resource/Big_Bash_Boom", "http://dbpedia.org/resource/Big_Buck_Hunter", "http://dbpedia.org/resource/Big_Pharma_(video_game)", "http://dbpedia.org/resource/BioShock:_The_Collection", "http://dbpedia.org/resource/BioShock_2:_Minerva's_Den", "http://dbpedia.org/resource/Biomutant", "http://dbpedia.org/resource/Black_Book_(video_game)", "http://dbpedia.org/resource/Black_Desert_Online", "http://dbpedia.org/resource/Black_Mirror_(2017_video_game)", "http://dbpedia.org/resource/Blackguards_2", "http://dbpedia.org/resource/Blacklight:_Retribution", "http://dbpedia.org/resource/Blackthorne", "http://dbpedia.org/resource/Blade_Arcus_from_Shining", "http://dbpedia.org/resource/Blade_Runner_(1997_video_game)", "http://dbpedia.org/resource/Blade_Strangers", "http://dbpedia.org/resource/Bladestorm:_The_Hundred_Years'_War", "http://dbpedia.org/resource/Blair_Witch_(video_game)", "http://dbpedia.org/resource/BlazBlue:_Central_Fiction", "http://dbpedia.org/resource/BlazBlue:_Cross_Tag_Battle", "http://dbpedia.org/resource/Bleach:_Brave_Souls", "http://dbpedia.org/resource/Bless_Unleashed", "http://dbpedia.org/resource/BloodRayne:_Betrayal", "http://dbpedia.org/resource/BloodRayne_(video_game)", "http://dbpedia.org/resource/BloodRayne_2", "http://dbpedia.org/resource/Bloodborne", "http://dbpedia.org/resource/Bloodstained:_Curse_of_the_Moon", "http://dbpedia.org/resource/Bloodstained:_Ritual_of_the_Night", "http://dbpedia.org/resource/Bloons_Tower_Defense", "http://dbpedia.org/resource/Blue_Reflection", "http://dbpedia.org/resource/Blue_Reflection:_Second_Light", "http://dbpedia.org/resource/Bomb_Chicken", "http://dbpedia.org/resource/Bomber_Crew", "http://dbpedia.org/resource/Hustle_Kings", "http://dbpedia.org/resource/HyperParasite", "http://dbpedia.org/resource/Hyper_Light_Drifter", "http://dbpedia.org/resource/Hypnospace_Outlaw", "http://dbpedia.org/resource/IW_(game_engine)", "http://dbpedia.org/resource/I_Am_Dead", "http://dbpedia.org/resource/I_Expect_You_to_Die", "http://dbpedia.org/resource/Icewind_Dale:_Enhanced_Edition", "http://dbpedia.org/resource/Id_Tech_3", "http://dbpedia.org/resource/Id_Tech_5", "http://dbpedia.org/resource/Id_Tech_6", "http://dbpedia.org/resource/Id_Tech_7", "http://dbpedia.org/resource/Ikaruga", "http://dbpedia.org/resource/Immortal:_Unchained", "http://dbpedia.org/resource/In_the_Hunt", "http://dbpedia.org/resource/Indivisible_(video_game)", "http://dbpedia.org/resource/Industry_Giant_II", "http://dbpedia.org/resource/Infamous_First_Light", "http://dbpedia.org/resource/Infamous_Second_Son", "http://dbpedia.org/resource/King's_Bounty_II", "http://dbpedia.org/resource/King's_Quest_(2015_video_game)", "http://dbpedia.org/resource/Kingdom_Come:_Deliverance", "http://dbpedia.org/resource/Kingdom_Hearts_HD_1.5_Remix", "http://dbpedia.org/resource/Kingdom_Hearts_HD_2.5_Remix", "http://dbpedia.org/resource/Kingdom_Hearts_HD_2.8_Final_Chapter_Prologue", "http://dbpedia.org/resource/Knack_(video_game)", "http://dbpedia.org/resource/Knack_II", "http://dbpedia.org/resource/Knights_of_Pen_&_Paper", "http://dbpedia.org/resource/Knights_of_Pen_&_Paper_2", "http://dbpedia.org/resource/Kowloon_High-School_Chronicle", "http://dbpedia.org/resource/Krinkle_Krusher", "http://dbpedia.org/resource/Kung_Fu_Panda:_Showdown_of_Legendary_Legends", "http://dbpedia.org/resource/Kyoei_Toshi", "http://dbpedia.org/resource/List_of_Monster_Jam_video_games", "http://dbpedia.org/resource/LittleBigPlanet_3", "http://dbpedia.org/resource/Little_Nightmares", "http://dbpedia.org/resource/Little_Nightmares_II", "http://dbpedia.org/resource/Little_Witch_Academia:_Chamber_of_Time", "http://dbpedia.org/resource/Metrico", "http://dbpedia.org/resource/Metro:_Last_Light", "http://dbpedia.org/resource/Metro_2033_(video_game)", "http://dbpedia.org/resource/Micro_Machines_World_Series", "http://dbpedia.org/resource/Middle-earth:_Shadow_of_Mordor", "http://dbpedia.org/resource/Middle-earth:_Shadow_of_War", "http://dbpedia.org/resource/Mighty_Gunvolt", "http://dbpedia.org/resource/Mighty_No._9", "http://dbpedia.org/resource/Mind:_Path_to_Thalamus", "http://dbpedia.org/resource/Minecraft", "http://dbpedia.org/resource/Minecraft:_Story_Mode", "http://dbpedia.org/resource/Minecraft_Dungeons", "http://dbpedia.org/resource/Minecraft_Legends", "http://dbpedia.org/resource/Mini_Metro_(video_game)", "http://dbpedia.org/resource/Minit_(video_game)", "http://dbpedia.org/resource/Oxenfree", "http://dbpedia.org/resource/P-47:_The_Phantom_Fighter", "http://dbpedia.org/resource/P.T._(video_game)", "http://dbpedia.org/resource/PGA_Tour_2K21", "http://dbpedia.org/resource/PUBG:_Battlegrounds", "http://dbpedia.org/resource/PaRappa_the_Rapper", "http://dbpedia.org/resource/Pac-Man", "http://dbpedia.org/resource/Pac-Man_256", "http://dbpedia.org/resource/Pac-Man_Championship_Edition_2", "http://dbpedia.org/resource/Pac-Man_World", "http://dbpedia.org/resource/Pacer_(video_game)", "http://dbpedia.org/resource/Panorama_Cotton", "http://dbpedia.org/resource/Panzer_Dragoon_(video_game)", "http://dbpedia.org/resource/Paragon_(video_game)", "http://dbpedia.org/resource/Paranautical_Activity", "http://dbpedia.org/resource/Party_Golf", "http://dbpedia.org/resource/Party_Hard_(video_game)", "http://dbpedia.org/resource/Past_Cure", "http://dbpedia.org/resource/Patapon", "http://dbpedia.org/resource/Patapon_2", "http://dbpedia.org/resource/Path_of_Exile", "http://dbpedia.org/resource/Pathfinder:_Kingmaker", "http://dbpedia.org/resource/Pathfinder:_Wrath_of_the_Righteous", "http://dbpedia.org/resource/Romance_of_the_Three_Kingdoms_XIII", "http://dbpedia.org/resource/Romance_of_the_Three_Kingdoms_XIV", "http://dbpedia.org/resource/Romancing_SaGa_2", "http://dbpedia.org/resource/Romancing_SaGa_3", "http://dbpedia.org/resource/Ronin_(video_game)", "http://dbpedia.org/resource/Root_Film", "http://dbpedia.org/resource/Root_Letter", "http://dbpedia.org/resource/Rory_McIlroy_PGA_Tour", "http://dbpedia.org/resource/Rugby_15", "http://dbpedia.org/resource/Rugby_20", "http://dbpedia.org/resource/Rugby_Challenge_3", "http://dbpedia.org/resource/Rugby_League_Live_3", "http://dbpedia.org/resource/Rugby_League_Live_4", "http://dbpedia.org/resource/Rugby_World_Cup_2015_(video_game)", "http://dbpedia.org/resource/Ruiner_(video_game)", "http://dbpedia.org/resource/Runbow", "http://dbpedia.org/resource/Rune_Factory_4", "http://dbpedia.org/resource/Runner2", "http://dbpedia.org/resource/Runner3", "http://dbpedia.org/resource/Rygar", "http://dbpedia.org/resource/Ry\u016b_ga_Gotoku_Ishin!", "http://dbpedia.org/resource/R\u00e9publique_(video_game)", "http://dbpedia.org/resource/SEUM:_Speedrunners_from_Hell", "http://dbpedia.org/resource/Dead_Effect_2", "http://dbpedia.org/resource/Dead_Synchronicity", "http://dbpedia.org/resource/Deadhaus_Sonata", "http://dbpedia.org/resource/Deathgarden", "http://dbpedia.org/resource/Deep_Down_(video_game)", "http://dbpedia.org/resource/Defender's_Quest", "http://dbpedia.org/resource/Deformers", "http://dbpedia.org/resource/Degrees_of_Separation_(video_game)", "http://dbpedia.org/resource/\u014ckami", "http://dbpedia.org/resource/Dying_Light", "http://dbpedia.org/resource/ELEX", "http://dbpedia.org/resource/Echo_(2017_video_game)", "http://dbpedia.org/resource/Enlisted_(video_game)", "http://dbpedia.org/resource/Erica_(video_game)", "http://dbpedia.org/resource/Exogenesis:_Perils_of_Rebirth", "http://dbpedia.org/resource/Farpoint_(video_game)", "http://dbpedia.org/resource/Metro_Exodus", "http://dbpedia.org/resource/Fuser_(video_game)", "http://dbpedia.org/resource/Ghost_1.0", "http://dbpedia.org/resource/Goodbye_Volcano_High", "http://dbpedia.org/resource/Gorn_(video_game)", "http://dbpedia.org/resource/Hellraid", "http://dbpedia.org/resource/Mat_Mania_\u2013_The_Prowrestling_Network", "http://dbpedia.org/resource/Whore_of_the_Orient", "http://dbpedia.org/resource/Mutant_Night", "http://dbpedia.org/resource/Tom_Clancy's_Rainbow_6:_Patriots", "http://dbpedia.org/resource/MouseCraft", "http://dbpedia.org/resource/Move_or_Die", "http://dbpedia.org/resource/NASCAR_21:_Ignition", "http://dbpedia.org/resource/NASCAR_Heat_4", "http://dbpedia.org/resource/NASCAR_Heat_5", "http://dbpedia.org/resource/Nex_Machina", "http://dbpedia.org/resource/Nippon_Marathon", "http://dbpedia.org/resource/Space_Pirate_Trainer", "http://dbpedia.org/resource/Timespinner", "http://dbpedia.org/resource/Tiny_Metal", "http://dbpedia.org/resource/Titan_Attacks!", "http://dbpedia.org/resource/Unruly_Heroes", "http://dbpedia.org/resource/Yokai_Dochuki", "http://dbpedia.org/resource/Yomawari:_Midnight_Shadows", "http://dbpedia.org/resource/Yonder:_The_Cloud_Catcher_Chronicles", "http://dbpedia.org/resource/Yooka-Laylee", "http://dbpedia.org/resource/Youtubers_Life", "http://dbpedia.org/resource/Ys_Origin", "http://dbpedia.org/resource/Ys_VIII:_Lacrimosa_of_Dana", "http://dbpedia.org/resource/Zanki_Zero:_Last_Beginning", "http://dbpedia.org/resource/Zen_Pinball_2", "http://dbpedia.org/resource/Zenith:_The_Last_City", "http://dbpedia.org/resource/Ziggurat_(2014_video_game)", "http://dbpedia.org/resource/ZombiU", "http://dbpedia.org/resource/Zombie_Army_4:_Dead_War", "http://dbpedia.org/resource/Zombie_Army_Trilogy", "http://dbpedia.org/resource/Zombie_Driver", "http://dbpedia.org/resource/Zombieland:_Double_Tap_\u2013_Road_Trip", "http://dbpedia.org/resource/Zone_of_the_Enders:_The_2nd_Runner", "http://dbpedia.org/resource/Neverending_Nightmares", "http://dbpedia.org/resource/Iron_Man_VR", "http://dbpedia.org/resource/Ironcast", "http://dbpedia.org/resource/Star_Wars_1313", "http://dbpedia.org/resource/Salt_and_Sanctuary", "http://dbpedia.org/resource/Prodeus", "http://dbpedia.org/resource/Project_Awakening", "http://dbpedia.org/resource/Sense:_A_Cyberpunk_Ghost_Story", "http://dbpedia.org/resource/The_Infectious_Madness_of_Doctor_Dekker", "http://dbpedia.org/resource/The_Metronomicon:_Slay_the_Dance_Floor", "http://dbpedia.org/resource/The_Procession_to_Calvary", "http://dbpedia.org/resource/The_Spectrum_Retreat", "http://dbpedia.org/resource/Out_of_Space_(video_game)", "http://dbpedia.org/resource/VirtuaVerse", "http://dbpedia.org/resource/Supraland", "http://dbpedia.org/resource/The_Coma:_Cutting_Class", "http://dbpedia.org/resource/This_Is_Pool", "http://dbpedia.org/resource/Tooth_and_Tail", "http://dbpedia.org/resource/Leo's_Fortune", "http://dbpedia.org/resource/Livelock_(video_game)", "http://dbpedia.org/resource/Maximum_Football_2020", "http://dbpedia.org/resource/Metal_Max:_Wild_West", "http://dbpedia.org/resource/Narita_Boy", "http://dbpedia.org/resource/SnowRunner", "http://dbpedia.org/resource/Soul_Axiom", "http://dbpedia.org/resource/TauCeti_Unknown_Origin", "http://dbpedia.org/resource/TerraTech", "http://dbpedia.org/resource/PAW_Patrol:_On_a_Roll", "http://dbpedia.org/resource/Trine_4:_The_Nightmare_Prince", "http://dbpedia.org/resource/YesterMorrow", "http://dbpedia.org/resource/Z1_Battle_Royale", "http://dbpedia.org/resource/Yooka-Laylee_and_the_Impossible_Lair", "http://dbpedia.org/resource/Maximum_Football_2019", "http://dbpedia.org/resource/Mystik_Belle", "http://dbpedia.org/resource/NHL_23", "http://dbpedia.org/resource/Stranded_Deep", "http://dbpedia.org/resource/Runestone_Keeper", "http://dbpedia.org/resource/Zotrix", "http://dbpedia.org/resource/Path_of_Titans", "http://dbpedia.org/resource/Pinstripe_(video_game)", "http://dbpedia.org/resource/Rocksmith+", "http://dbpedia.org/resource/Rogue_Company", "http://dbpedia.org/resource/Teenage_Mutant_Ninja_Turtles:_The_Cowabunga_Collection", "http://dbpedia.org/resource/BBC_iPlayer__BBC_iPlayer__1", "http://dbpedia.org/resource/Road_Redemption", "http://dbpedia.org/resource/The_Eternal_Cylinder", "http://dbpedia.org/resource/Xenon_Racer", "http://dbpedia.org/resource/Chrome_Engine__Chrome_Engine__1", "http://dbpedia.org/resource/Steven_Universe:_Unleash_the_Light", "http://dbpedia.org/resource/The_Darkside_Detective", "http://dbpedia.org/resource/The_Disney_Afternoon_Collection", "http://dbpedia.org/resource/The_Little_Acre", "http://dbpedia.org/resource/Zaccaria_(company)__Zaccaria_Pinball__1", "http://dbpedia.org/resource/Street_Outlaws__2:_Winner_Takes_All__1", "http://dbpedia.org/resource/Street_Outlaws__:_The_List__1"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/influencedBy> <http://dbpedia.org/resource/Costanzo_Preve> . ?x <http://dbpedia.org/ontology/influncer> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Andrew_W._Lewis> <http://dbpedia.org/ontology/almaMater> ?uri } "}, "answers": ["http://dbpedia.org/resource/Dartmouth_College", "http://dbpedia.org/resource/Harvard_University", "http://dbpedia.org/resource/University_of_Chicago"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Englewood,_Colorado> <http://dbpedia.org/property/nearestCity> ?uri } "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Marv_McFadden> <http://dbpedia.org/property/pastteams> ?uri } "}, "answers": ["http://dbpedia.org/resource/Pittsburgh_Steelers"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kakae> <http://dbpedia.org/ontology/title> ?uri } "}, "answers": ["High Chief of Maui"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Heroman> <http://dbpedia.org/ontology/author> ?uri } "}, "answers": ["http://dbpedia.org/resource/Stan_Lee"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/champion> <http://dbpedia.org/resource/Ronda_Rousey> . ?x <http://dbpedia.org/ontology/ultimateFighter> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/graduated> <http://dbpedia.org/resource/Poland> . ?uri <http://dbpedia.org/property/nationality> ?x . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/musicComposer> <http://dbpedia.org/resource/Bernard_Herrmann> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/magazine> <http://dbpedia.org/resource/Gangan_Comics> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/successor> <http://dbpedia.org/resource/Advanced_Micro_Devices> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Device>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Perianne_Jones> <http://dbpedia.org/ontology/club> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/education> <http://dbpedia.org/resource/Middle_Temple> . ?x <http://dbpedia.org/ontology/opponent> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Francis_Bacon", "http://dbpedia.org/resource/Edward_Coke", "http://dbpedia.org/resource/William_Knollys,_1st_Earl_of_Banbury", "http://dbpedia.org/resource/Frances_Carr,_Countess_of_Somerset", "http://dbpedia.org/resource/Anne_of_Denmark", "http://dbpedia.org/resource/Charles_Howard,_1st_Earl_of_Nottingham", "http://dbpedia.org/resource/Henry_Howard,_1st_Earl_of_Northampton", "http://dbpedia.org/resource/Thomas_Lake", "http://dbpedia.org/resource/Thomas_Howard,_1st_Earl_of_Suffolk"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/schooltype> <http://dbpedia.org/resource/Private_school> . ?x <http://dbpedia.org/ontology/sport> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Association_football", "http://dbpedia.org/resource/Volleyball", "http://dbpedia.org/resource/Field_hockey", "http://dbpedia.org/resource/Rugby_union", "http://dbpedia.org/resource/Tennis", "http://dbpedia.org/resource/Badminton", "http://dbpedia.org/resource/Basketball", "http://dbpedia.org/resource/Chess", "http://dbpedia.org/resource/Table_tennis", "http://dbpedia.org/resource/Cricket", "http://dbpedia.org/resource/Ice_hockey", "http://dbpedia.org/resource/Throwball", "http://dbpedia.org/resource/Baseball", "http://dbpedia.org/resource/Track_and_field", "http://dbpedia.org/resource/Kho_kho"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/director> <http://dbpedia.org/resource/Justin_Zackham> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": ["http://dbpedia.org/resource/Going_Greek", "http://dbpedia.org/resource/The_Big_Wedding"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Mekong_River_Commission> <http://dbpedia.org/property/membership> ?uri } "}, "answers": ["http://dbpedia.org/resource/Vietnam", "http://dbpedia.org/resource/Thailand", "http://dbpedia.org/resource/Cambodia", "http://dbpedia.org/resource/Laos"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/episode> <http://dbpedia.org/resource/The_Five> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/deathPlace> <http://dbpedia.org/resource/Malaysia> . ?x <http://dbpedia.org/property/religion> ?uri . }"}, "answers": ["6"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/writer> <http://dbpedia.org/resource/Erik_Jendresen> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": ["http://dbpedia.org/resource/Killing_Lincoln_(film)", "http://dbpedia.org/resource/Band_of_Brothers_(miniseries)"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Doug_Acomb> <http://dbpedia.org/property/playedFor> ?uri } "}, "answers": ["http://dbpedia.org/resource/Toronto_Maple_Leafs"]}]} \ No newline at end of file diff --git a/data/pred_responses/lc-quad-requeried-linked-test-pred_responses-append-1-large-4-epochs.json b/data/pred_responses/lc-quad-requeried-linked-test-pred_responses-append-1-large-4-epochs.json new file mode 100644 index 0000000000000000000000000000000000000000..a2d66f5d88f319cc365625d8ac2bf7a6cd29f808 --- /dev/null +++ b/data/pred_responses/lc-quad-requeried-linked-test-pred_responses-append-1-large-4-epochs.json @@ -0,0 +1 @@ +{"questions": [{"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/party> <http://dbpedia.org/resource/International_Muslim_Brotherhood> . ?x <http://dbpedia.org/ontology/party> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/deputy> <http://dbpedia.org/resource/Neil_Brown_(Australian_politician)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/OfficeHolder>}"}, "answers": ["http://dbpedia.org/resource/John_Howard"]}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/World_War_II> . ?x <http://dbpedia.org/ontology/combatant> ?uri }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/parentOrganisation> <http://dbpedia.org/resource/Comcast> . ?uri <http://dbpedia.org/property/network> ?x . }"}, "answers": ["http://dbpedia.org/resource/Golf_Central", "http://dbpedia.org/resource/The_Big_Break", "http://dbpedia.org/resource/Highway_18_(TV_series)", "http://dbpedia.org/resource/Feherty_(TV_program)", "http://dbpedia.org/resource/Hank_Parker's_Outdoor_Magazine", "http://dbpedia.org/resource/Wednesday_Night_Rivalry", "http://dbpedia.org/resource/Poker_After_Dark", "http://dbpedia.org/resource/Match_of_the_Day_(American_TV_series)", "http://dbpedia.org/resource/Mecum_Dealmakers", "http://dbpedia.org/resource/The_Dan_Patrick_Show", "http://dbpedia.org/resource/36_(TV_series)", "http://dbpedia.org/resource/2018_Alsco_300_(Kentucky)", "http://dbpedia.org/resource/2018_Bar_Harbor_200", "http://dbpedia.org/resource/2018_Coca-Cola_Firecracker_250", "http://dbpedia.org/resource/2018_DC_Solar_300", "http://dbpedia.org/resource/2018_Drive_for_the_Cure_200", "http://dbpedia.org/resource/2018_Food_City_300", "http://dbpedia.org/resource/2018_Ford_EcoBoost_300", "http://dbpedia.org/resource/2018_Lakes_Region_200", "http://dbpedia.org/resource/2018_O'Reilly_Auto_Parts_300", "http://dbpedia.org/resource/2018_Overton's_300", "http://dbpedia.org/resource/2018_Rock_N_Roll_Tequila_170", "http://dbpedia.org/resource/2018_U.S._Cellular_250", "http://dbpedia.org/resource/2018_Zippo_200_at_The_Glen", "http://dbpedia.org/resource/2019_1000Bulbs.com_500", "http://dbpedia.org/resource/2020_Drydene_200_(Saturday)", "http://dbpedia.org/resource/2020_Drydene_200_(Sunday)", "http://dbpedia.org/resource/2020_UNOH_188", "http://dbpedia.org/resource/2020_Wawa_250", "http://dbpedia.org/resource/2021_Alsco_Uniforms_302", "http://dbpedia.org/resource/2021_Ambetter_Get_Vaccinated_200", "http://dbpedia.org/resource/2021_Credit_Karma_Money_250", "http://dbpedia.org/resource/2021_Food_City_300", "http://dbpedia.org/resource/2021_Go_Bowling_250", "http://dbpedia.org/resource/2021_New_Holland_250", "http://dbpedia.org/resource/2021_Pennzoil_150", "http://dbpedia.org/resource/2021_Pocono_Green_225", "http://dbpedia.org/resource/2021_Sport_Clips_Haircuts_VFW_200", "http://dbpedia.org/resource/2021_Wawa_250", "http://dbpedia.org/resource/NASCAR_on_NBC", "http://dbpedia.org/resource/NBC_SportsTalk", "http://dbpedia.org/resource/CFL_on_NBC", "http://dbpedia.org/resource/Sunday_Night_Hockey", "http://dbpedia.org/resource/2017_Drive_for_the_Cure_300", "http://dbpedia.org/resource/2017_Food_City_300", "http://dbpedia.org/resource/2017_Lilly_Diabetes_250", "http://dbpedia.org/resource/2017_Mid-Ohio_Challenge", "http://dbpedia.org/resource/2017_O'Reilly_Auto_Parts_300", "http://dbpedia.org/resource/2017_Overton's_200", "http://dbpedia.org/resource/2017_Sport_Clips_Haircuts_VFW_200", "http://dbpedia.org/resource/2017_TheHouse.com_300", "http://dbpedia.org/resource/2017_Use_Your_Melon._Drive_Sober_200", "http://dbpedia.org/resource/2017_Virginia_529_College_Savings_250", "http://dbpedia.org/resource/2017_VisitMyrtleBeach.com_300", "http://dbpedia.org/resource/2017_Zippo_200_at_The_Glen", "http://dbpedia.org/resource/Curling_Night_in_America", "http://dbpedia.org/resource/Cycling_on_NBC", "http://dbpedia.org/resource/MLS_on_NBC", "http://dbpedia.org/resource/Bill_Dance_Outdoors", "http://dbpedia.org/resource/Foreign_Exchange_(CNBC_World_TV_program)"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/distributor> <http://dbpedia.org/resource/RKO_Pictures> . ?uri <http://dbpedia.org/ontology/musicComposer> <http://dbpedia.org/resource/Bernard_Herrmann> } "}, "answers": ["http://dbpedia.org/resource/The_Devil_and_Daniel_Webster_(film)", "http://dbpedia.org/resource/On_Dangerous_Ground"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/founder> <http://dbpedia.org/resource/Ralph_J._Gleason> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Magazine>}"}, "answers": ["http://dbpedia.org/resource/Rolling_Stone"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Barq's> <http://dbpedia.org/ontology/related> ?x . ?x <http://dbpedia.org/property/cities> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/role> <http://dbpedia.org/resource/Air_interdiction> . ?x <http://dbpedia.org/property/militaryUnit> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Insects_vs_Robots> <http://dbpedia.org/property/currentMembers> ?uri } "}, "answers": ["http://dbpedia.org/resource/Micah_Nelson", "Jeff Smith", "Nikita Sorokin", "Milo Gonzalez", "Tony Peluso"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Tr\u1ea7n_Vi\u1ec7t_H\u01b0\u01a1ng> <http://dbpedia.org/property/nationalteam> ?uri } "}, "answers": ["http://dbpedia.org/resource/Vietnam_women's_national_volleyball_team"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Joshua_A._Siegel> <http://dbpedia.org/property/education> ?uri } "}, "answers": ["http://dbpedia.org/resource/University_at_Buffalo", "http://dbpedia.org/resource/Northwestern_University", "http://dbpedia.org/resource/Chicago"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/notableWork> <http://dbpedia.org/resource/Novelas_ejemplares> . ?uri <http://dbpedia.org/property/author> ?x . }"}, "answers": ["6"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Stanford_Cardinal> <http://dbpedia.org/resource/Gerald_Reaven> <http://dbpedia.org/property/university> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Deion_Sanders> <http://dbpedia.org/property/debutteam> ?uri } "}, "answers": ["New York Yankees"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Fountain_Lake_Farm> <http://dbpedia.org/ontology/nearestCity> ?uri } "}, "answers": ["http://dbpedia.org/resource/United_States", "http://dbpedia.org/resource/Montello,_Wisconsin", "http://dbpedia.org/resource/Wisconsin"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/training> <http://dbpedia.org/resource/San_Francisco_Art_Institute> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Artist>}"}, "answers": ["http://dbpedia.org/resource/Dame_Darcy", "http://dbpedia.org/resource/Debra_Drexler", "http://dbpedia.org/resource/Vena_Kava", "http://dbpedia.org/resource/James_Zar", "http://dbpedia.org/resource/Arthur_Frank_Mathews", "http://dbpedia.org/resource/Beth_Van_Hoesen", "http://dbpedia.org/resource/T._C._Cannon", "http://dbpedia.org/resource/Saber_(artist)", "http://dbpedia.org/resource/Emily_Carr", "http://dbpedia.org/resource/Lynn_Marie_Kirby", "http://dbpedia.org/resource/Jason_Rhoades", "http://dbpedia.org/resource/Ralph_Stackpole", "http://dbpedia.org/resource/Tricia_Ward", "http://dbpedia.org/resource/Vernon_Pratt", "http://dbpedia.org/resource/Sarah_Cain", "http://dbpedia.org/resource/Louise_Janin", "http://dbpedia.org/resource/Tullio_DeSantis", "http://dbpedia.org/resource/Neil_Williams_(artist)", "http://dbpedia.org/resource/Gregory_Gillespie", "http://dbpedia.org/resource/Gutzon_Borglum", "http://dbpedia.org/resource/Helen_Hyde", "http://dbpedia.org/resource/Rita_Keegan", "http://dbpedia.org/resource/Robert_Graham_(sculptor)", "http://dbpedia.org/resource/Jess_Collins", "http://dbpedia.org/resource/Jim_Franklin_(artist)", "http://dbpedia.org/resource/Lin_Evola", "http://dbpedia.org/resource/Peter_Kov\u00e1l", "http://dbpedia.org/resource/Peter_Reginato", "http://dbpedia.org/resource/Thom_Merrick", "http://dbpedia.org/resource/Karl_Kasten", "http://dbpedia.org/resource/Michael_Heizer", "http://dbpedia.org/resource/Paul_McCarthy", "http://dbpedia.org/resource/Ronald_Davis", "http://dbpedia.org/resource/Ronnie_Landfield", "http://dbpedia.org/resource/Roy_De_Forest", "http://dbpedia.org/resource/Daniela_Franco", "http://dbpedia.org/resource/Deborah_Remington", "http://dbpedia.org/resource/Mark_Bulwinkle"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/currency> <http://dbpedia.org/resource/Aureus_University_School_of_Medicine> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Country>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/A._Peter_Dewey> <http://dbpedia.org/property/awards> ?x . ?x <http://dbpedia.org/ontology/award> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Muhammad_Yunus> <http://dbpedia.org/property/awards> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Motown> . ?x <http://dbpedia.org/ontology/associatedBand> ?uri . }"}, "answers": ["http://dbpedia.org/resource/The_Temptations", "http://dbpedia.org/resource/Erick_Sermon", "http://dbpedia.org/resource/Digital_Underground", "http://dbpedia.org/resource/K-Ci_&_JoJo", "http://dbpedia.org/resource/Blackstreet", "http://dbpedia.org/resource/Mike_City", "http://dbpedia.org/resource/Dennis_Edwards", "http://dbpedia.org/resource/Jimmy_Ruffin", "http://dbpedia.org/resource/Eddie_Kendricks", "http://dbpedia.org/resource/Teena_Marie", "http://dbpedia.org/resource/The_Mooseheart_Faith_Stellar_Groove_Band", "http://dbpedia.org/resource/Hamilton_Bohannon", "http://dbpedia.org/resource/The_Marvelettes", "http://dbpedia.org/resource/Boyz_II_Men", "http://dbpedia.org/resource/Nathan_Morris", "http://dbpedia.org/resource/Shawn_Stockman", "http://dbpedia.org/resource/Michael_McCary", "http://dbpedia.org/resource/Maxayn", "http://dbpedia.org/resource/Ray_Charles", "http://dbpedia.org/resource/The_Emotions", "http://dbpedia.org/resource/Buddy_Miles", "http://dbpedia.org/resource/Stevie_Wonder", "http://dbpedia.org/resource/Mandr\u00e9", "http://dbpedia.org/resource/Minnie_Riperton", "http://dbpedia.org/resource/Four_Tops", "http://dbpedia.org/resource/Marvin_Gaye", "http://dbpedia.org/resource/Mary_Wells", "http://dbpedia.org/resource/Martha_and_the_Vandellas", "http://dbpedia.org/resource/The_Supremes", "http://dbpedia.org/resource/The_Drifters", "http://dbpedia.org/resource/Mario_Winans", "http://dbpedia.org/resource/David_Mays", "http://dbpedia.org/resource/OJ_da_Juiceman", "http://dbpedia.org/resource/Ja_Rule", "http://dbpedia.org/resource/Stevie_J", "http://dbpedia.org/resource/The_Almighty_RSO", "http://dbpedia.org/resource/Made_Men", "http://dbpedia.org/resource/Jackie_Wilson", "http://dbpedia.org/resource/The_Jackson_5", "http://dbpedia.org/resource/The_Miracles", "http://dbpedia.org/resource/Smokey_Robinson", "http://dbpedia.org/resource/The_Corporation_(record_production_team)", "http://dbpedia.org/resource/The_Velvelettes", "http://dbpedia.org/resource/The_Wonder_Who%3F", "http://dbpedia.org/resource/The_Four_Seasons_(band)", "http://dbpedia.org/resource/The_Four_Lovers", "http://dbpedia.org/resource/Caroline_Crawford", "http://dbpedia.org/resource/The_Spinners_(American_R&B_group)", "http://dbpedia.org/resource/The_Moonglows", "http://dbpedia.org/resource/Sylvester_(singer)", "http://dbpedia.org/resource/Tammi_Terrell", "http://dbpedia.org/resource/Etta_James", "http://dbpedia.org/resource/Johnny_Bristol", "http://dbpedia.org/resource/New_Birth_(band)", "http://dbpedia.org/resource/Gemini_Major", "http://dbpedia.org/resource/Nasty_C", "http://dbpedia.org/resource/Aewon_Wolf", "http://dbpedia.org/resource/Lady_Zamar", "http://dbpedia.org/resource/DJ_Speedsta", "http://dbpedia.org/resource/Okmalumkoolkat", "http://dbpedia.org/resource/Shane_Eagle", "http://dbpedia.org/resource/Shekhinah", "http://dbpedia.org/resource/Dionne_Warwick", "http://dbpedia.org/resource/Saints_Unified_Voices", "http://dbpedia.org/resource/Aretha_Franklin", "http://dbpedia.org/resource/Gladys_Knight_&_the_Pips", "http://dbpedia.org/resource/Natalie_Cole", "http://dbpedia.org/resource/Patti_LaBelle", "http://dbpedia.org/resource/The_Fascinations", "http://dbpedia.org/resource/The_Fat_Boys", "http://dbpedia.org/resource/The_Funk_Brothers", "http://dbpedia.org/resource/Prince_(musician)", "http://dbpedia.org/resource/The_Revolution_(band)", "http://dbpedia.org/resource/Stevie_Ray_Vaughan", "http://dbpedia.org/resource/Sting_(musician)", "http://dbpedia.org/resource/Salt-N-Pepa", "http://dbpedia.org/resource/Mazarati", "http://dbpedia.org/resource/Diana_Ross", "http://dbpedia.org/resource/Commodores", "http://dbpedia.org/resource/Atlantic_Starr", "http://dbpedia.org/resource/Lionel_Richie", "http://dbpedia.org/resource/Noisettes", "http://dbpedia.org/resource/Stereophonics", "http://dbpedia.org/resource/Ernie_Terrell", "http://dbpedia.org/resource/Former_Ladies_of_the_Supremes", "http://dbpedia.org/resource/Eric_Roberson", "http://dbpedia.org/resource/Jacob_Latimore", "http://dbpedia.org/resource/Maxwell_(musician)", "http://dbpedia.org/resource/BJ_the_Chicago_Kid", "http://dbpedia.org/resource/Trevor_Jackson_(performer)", "http://dbpedia.org/resource/Trey_Songz", "http://dbpedia.org/resource/Anthony_Hamilton_(musician)", "http://dbpedia.org/resource/Ne-Yo", "http://dbpedia.org/resource/Raheem_DeVaughn", "http://dbpedia.org/resource/Lucky_Daye", "http://dbpedia.org/resource/Valee", "http://dbpedia.org/resource/Comethazine", "http://dbpedia.org/resource/Chief_Keef", "http://dbpedia.org/resource/Lil_Skies", "http://dbpedia.org/resource/Lil_Tracy", "http://dbpedia.org/resource/Working_on_Dying", "http://dbpedia.org/resource/XXXTentacion", "http://dbpedia.org/resource/Yung_Bans", "http://dbpedia.org/resource/Sweathog", "http://dbpedia.org/resource/Apollo_(band)", "http://dbpedia.org/resource/Rayber_Voices", "http://dbpedia.org/resource/Rockwell_(musician)", "http://dbpedia.org/resource/Sherrick", "http://dbpedia.org/resource/Isley-Jasper-Isley", "http://dbpedia.org/resource/Jimi_Hendrix", "http://dbpedia.org/resource/R._Kelly", "http://dbpedia.org/resource/Earth,_Wind_&_Fire", "http://dbpedia.org/resource/Whitney_Houston", "http://dbpedia.org/resource/Selena", "http://dbpedia.org/resource/Christina_Aguilera", "http://dbpedia.org/resource/Jody_Watley", "http://dbpedia.org/resource/Pat_Benatar", "http://dbpedia.org/resource/The_%225%22_Royales", "http://dbpedia.org/resource/Tavares_(group)", "http://dbpedia.org/resource/Boz_Scaggs", "http://dbpedia.org/resource/Johnny_Mathis", "http://dbpedia.org/resource/Jermaine_Jackson", "http://dbpedia.org/resource/Tom_Jones_(singer)", "http://dbpedia.org/resource/Edwin_Starr", "http://dbpedia.org/resource/Junior_Walker", "http://dbpedia.org/resource/Cab_Calloway", "http://dbpedia.org/resource/Stuff_Smith", "http://dbpedia.org/resource/Honey_Cone", "http://dbpedia.org/resource/Freda_Payne", "http://dbpedia.org/resource/Jean_Terrell", "http://dbpedia.org/resource/Susaye_Greene", "http://dbpedia.org/resource/Eddie_Holland", "http://dbpedia.org/resource/Lynda_Laurence", "http://dbpedia.org/resource/Elton_John", "http://dbpedia.org/resource/Kylie_Minogue", "http://dbpedia.org/resource/Freddie_Gibbs", "http://dbpedia.org/resource/GLC_(rapper)", "http://dbpedia.org/resource/Dubb_Union", "http://dbpedia.org/resource/Rapsody", "http://dbpedia.org/resource/Fly_Union", "http://dbpedia.org/resource/Black_Hippy", "http://dbpedia.org/resource/Mary_Wilson_(singer)", "http://dbpedia.org/resource/Florence_Ballard", "http://dbpedia.org/resource/The_Undisputed_Truth", "http://dbpedia.org/resource/The_Beatnuts", "http://dbpedia.org/resource/AZ_(rapper)", "http://dbpedia.org/resource/Doug_E._Fresh", "http://dbpedia.org/resource/Big_L", "http://dbpedia.org/resource/Big_Pun", "http://dbpedia.org/resource/Wanya_Morris", "http://dbpedia.org/resource/Marc_Nelson", "http://dbpedia.org/resource/Eminem", "http://dbpedia.org/resource/DJ_Kay_Slay", "http://dbpedia.org/resource/Proof_(rapper)", "http://dbpedia.org/resource/Canibus", "http://dbpedia.org/resource/100_Proof_(Aged_in_Soul)", "http://dbpedia.org/resource/The_Contours", "http://dbpedia.org/resource/The_Originals_(band)", "http://dbpedia.org/resource/The_Falcons", "http://dbpedia.org/resource/Chuck_Harmony", "http://dbpedia.org/resource/The_Del-Vikings", "http://dbpedia.org/resource/Deniece_Williams", "http://dbpedia.org/resource/Michael_Jackson", "http://dbpedia.org/resource/702_(group)", "http://dbpedia.org/resource/Allusion", "http://dbpedia.org/resource/Missy_Elliott", "http://dbpedia.org/resource/Subway_(group)", "http://dbpedia.org/resource/Timbaland", "http://dbpedia.org/resource/Silkk_the_Shocker", "http://dbpedia.org/resource/Mia_X", "http://dbpedia.org/resource/Michael_Bivins", "http://dbpedia.org/resource/Joe_Billingslea", "http://dbpedia.org/resource/Holland\u2013Dozier\u2013Holland", "http://dbpedia.org/resource/Switch_(band)", "http://dbpedia.org/resource/The_Rock_and_Roll_Trio", "http://dbpedia.org/resource/Juicy_J", "http://dbpedia.org/resource/Project_Pat", "http://dbpedia.org/resource/24-Carat_Black", "http://dbpedia.org/resource/Isaac_Hayes", "http://dbpedia.org/resource/Soul_II_Soul", "http://dbpedia.org/resource/Rick_James", "http://dbpedia.org/resource/Brownmark", "http://dbpedia.org/resource/The_Time_(band)", "http://dbpedia.org/resource/Jill_Jones", "http://dbpedia.org/resource/Klymaxx", "http://dbpedia.org/resource/The_Wild_Pair_(duo)", "http://dbpedia.org/resource/Hubert_Johnson_(musician)", "http://dbpedia.org/resource/Tower_of_Power", "http://dbpedia.org/resource/Victorious", "http://dbpedia.org/resource/The_Rascals_(producers)", "http://dbpedia.org/resource/Tyler,_the_Creator", "http://dbpedia.org/resource/Quincy_Jones", "http://dbpedia.org/resource/James_Ingram", "http://dbpedia.org/resource/Sheena_Easton", "http://dbpedia.org/resource/Stormzy", "http://dbpedia.org/resource/EarthGang", "http://dbpedia.org/resource/Uriah_Heep_(band)", "http://dbpedia.org/resource/Norman_Whitfield", "http://dbpedia.org/resource/David_Ruffin", "http://dbpedia.org/resource/Paul_Williams_(The_Temptations_singer)", "http://dbpedia.org/resource/Utah_Saints", "http://dbpedia.org/resource/Stock_Aitken_Waterman", "http://dbpedia.org/resource/Jools_Holland", "http://dbpedia.org/resource/Billie_Holiday", "http://dbpedia.org/resource/Foreigner_(band)", "http://dbpedia.org/resource/Elle_Varner", "http://dbpedia.org/resource/Wyclef_Jean", "http://dbpedia.org/resource/Eric_Clapton", "http://dbpedia.org/resource/Stoney_&_Meatloaf_(band)", "http://dbpedia.org/resource/Bob_Seger", "http://dbpedia.org/resource/Little_Feat", "http://dbpedia.org/resource/Black_Men_United", "http://dbpedia.org/resource/Syreeta_Wright", "http://dbpedia.org/resource/Billy_Preston", "http://dbpedia.org/resource/Andra\u00e9_Crouch", "http://dbpedia.org/resource/Ashford_&_Simpson", "http://dbpedia.org/resource/Blaque", "http://dbpedia.org/resource/Kenny_Loggins", "http://dbpedia.org/resource/The_Doobie_Brothers", "http://dbpedia.org/resource/Toto_(band)", "http://dbpedia.org/resource/Toad_the_Wet_Sprocket", "http://dbpedia.org/resource/Steely_Dan", "http://dbpedia.org/resource/The_Blackberries", "http://dbpedia.org/resource/The_Ikettes", "http://dbpedia.org/resource/Marvin_Winans", "http://dbpedia.org/resource/Common_(rapper)", "http://dbpedia.org/resource/Nikki_(singer)", "http://dbpedia.org/resource/Jerry_Butler", "http://dbpedia.org/resource/Dejah_Gomez", "http://dbpedia.org/resource/Entourage_(band)", "http://dbpedia.org/resource/Sly_and_the_Family_Stone", "http://dbpedia.org/resource/Chico_DeBarge", "http://dbpedia.org/resource/Usher_(musician)", "http://dbpedia.org/resource/Waka_Flocka_Flame", "http://dbpedia.org/resource/Deitrick_Haddon", "http://dbpedia.org/resource/Future_(rapper)", "http://dbpedia.org/resource/Boosie_Badazz", "http://dbpedia.org/resource/21_Savage", "http://dbpedia.org/resource/B.o.B", "http://dbpedia.org/resource/Gucci_Mane", "http://dbpedia.org/resource/Lecrae", "http://dbpedia.org/resource/Migos", "http://dbpedia.org/resource/Young_Scooter", "http://dbpedia.org/resource/De_La_Soul", "http://dbpedia.org/resource/Busta_Rhymes", "http://dbpedia.org/resource/Queen_Latifah", "http://dbpedia.org/resource/The_Andantes"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kwai_Chang_Caine> <http://dbpedia.org/ontology/religion> ?uri } "}, "answers": ["http://dbpedia.org/resource/Taoism", "http://dbpedia.org/resource/Chan_Buddhism"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/leader> <http://dbpedia.org/resource/Pullaiahgaripalli> . ?x <http://dbpedia.org/property/houses> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/architecturalStyle> <http://dbpedia.org/resource/Sanggar_Agung> . ?x <http://dbpedia.org/ontology/religion> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/writtenIn> <http://dbpedia.org/resource/C++> . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/PLUS_Expressways> <http://dbpedia.org/property/hubs> ?uri } "}, "answers": ["http://dbpedia.org/resource/Selangor", "http://dbpedia.org/resource/Subang,_Indonesia", "http://dbpedia.org/resource/Sultan_Abdul_Aziz_Shah_Airport", "http://dbpedia.org/resource/Malaysia"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/architect> <http://dbpedia.org/resource/Louis_D._Astorino> . ?x <http://dbpedia.org/property/stadium> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Blodpalt> <http://dbpedia.org/ontology/ingredient> ?uri . <http://dbpedia.org/resource/Kaszanka> <http://dbpedia.org/property/ingredients> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/screenplay> <http://dbpedia.org/resource/Akiva_Goldsman> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": ["http://dbpedia.org/resource/The_Da_Vinci_Code_(film)", "http://dbpedia.org/resource/A_Time_to_Kill_(1996_film)"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/Battle_of_Fort_Stephenson> . ?x <http://dbpedia.org/ontology/commander> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/subsequentWork> <http://dbpedia.org/resource/Blade_Runner_2:_The_Edge_of_Human> . ?x <http://dbpedia.org/property/series> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Ultimate_Fighter:_Team_Rousey_vs._Team_Tate> <http://dbpedia.org/property/city> ?uri } "}, "answers": ["http://dbpedia.org/resource/Las_Vegas_Valley", "http://dbpedia.org/resource/Nevada"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/purpose> <http://dbpedia.org/resource/Environmentalism> . ?uri <http://dbpedia.org/ontology/organisation> ?x . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/name> <http://dbpedia.org/resource/Matt_Williams_(New_Zealand_footballer)> . ?x <http://dbpedia.org/property/team> ?uri }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/awards> <http://dbpedia.org/resource/Timeform> . ?x <http://dbpedia.org/ontology/owner> ?uri . }"}, "answers": ["38"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/hospital> <http://dbpedia.org/resource/Toronto_Western_Hospital> . ?x <http://dbpedia.org/property/locationCity> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Sidney_Catlin_Partridge> <http://dbpedia.org/property/education> ?uri . <http://dbpedia.org/resource/Lisa_Brummel> <http://dbpedia.org/ontology/almaMater> ?uri} "}, "answers": ["http://dbpedia.org/resource/Yale_University"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/publisher> <http://dbpedia.org/resource/Doubleday_(publisher)> . ?x <http://dbpedia.org/ontology/subject> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/regionServed> <http://dbpedia.org/resource/Trade_association> . ?x <http://dbpedia.org/property/organisation> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Tonight's_the_Night_(2003_musical)> <http://dbpedia.org/property/music> ?uri } "}, "answers": ["http://dbpedia.org/resource/Rod_Stewart"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/breeder> <http://dbpedia.org/resource/Bert_S._Michell> . ?x <http://dbpedia.org/property/awards> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Y._S._Rajasekhara_Reddy> <http://dbpedia.org/property/leader> ?x . ?x <http://dbpedia.org/ontology/affiliation> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Frampton's_Camel> <http://dbpedia.org/ontology/producer> ?uri } "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/knownFor> <http://dbpedia.org/resource/Rational_analysis> . ?x <http://dbpedia.org/property/almaMater> ?uri }"}, "answers": ["Stanford University", "University of British Columbia"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/relatives> <http://dbpedia.org/resource/Clan_McDuck> . }"}, "answers": ["http://dbpedia.org/resource/Della_Duck", "http://dbpedia.org/resource/Donald_Duck"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/capital> <http://dbpedia.org/resource/Podgorica> . ?x <http://dbpedia.org/property/currency> ?uri . }"}, "answers": ["Euro a"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/William_Anthony_(artist)> <http://dbpedia.org/ontology/training> ?uri } "}, "answers": ["http://dbpedia.org/resource/San_Francisco_Art_Institute", "http://dbpedia.org/resource/Art_Students_League_of_New_York", "http://dbpedia.org/resource/Yale_University"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/languageFamily> <http://dbpedia.org/resource/Anglo-Frisian_languages> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/EthnicGroup>}"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/creators> <http://dbpedia.org/resource/Paul_Dini> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/ComicsCharacter>}"}, "answers": ["http://dbpedia.org/resource/Andrea_Beaumont", "http://dbpedia.org/resource/Harley_Quinn", "http://dbpedia.org/resource/Mercy_Graves", "http://dbpedia.org/resource/Baby-Doll_(character)", "http://dbpedia.org/resource/Renee_Montoya", "http://dbpedia.org/resource/Roxy_Rocket", "http://dbpedia.org/resource/Calendar_Girl_(DC_Comics)", "http://dbpedia.org/resource/Nora_Fries", "http://dbpedia.org/resource/Batman_(Terry_McGinnis)", "http://dbpedia.org/resource/Bud_and_Lou", "http://dbpedia.org/resource/Forerunner_(DC_Comics)", "http://dbpedia.org/resource/Mr._Freeze", "http://dbpedia.org/resource/Ventriloquist_(character)"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ted_Williams_Tunnel> <http://dbpedia.org/ontology/owner> ?uri . <http://dbpedia.org/resource/Leonard_Memorial_Ridge> <http://dbpedia.org/property/owningCity> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/recordLabel> <http://dbpedia.org/resource/EMI> . ?uri <http://dbpedia.org/ontology/associatedBand> ?x . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/subsidiary> <http://dbpedia.org/resource/Big_Ticket_Entertainment> . ?uri <http://dbpedia.org/property/company> ?x . }"}, "answers": ["126"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/locationCity> <http://dbpedia.org/resource/Marjas> . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/leaderName> <http://dbpedia.org/resource/Justin_Trudeau> . ?x <http://dbpedia.org/ontology/place> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Hackweiser> <http://dbpedia.org/property/leaderName> ?uri } "}, "answers": ["http://dbpedia.org/resource/North_America", "p4ntera , B33rc4n"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Hank_Brown> <http://dbpedia.org/property/successor> ?x . ?x <http://dbpedia.org/ontology/birthPlace> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Fort_Collins,_Colorado", "http://dbpedia.org/resource/United_States", "http://dbpedia.org/resource/Chicago", "http://dbpedia.org/resource/Illinois", "http://dbpedia.org/resource/Kansas_City,_Missouri"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Katyayana_(Buddhist)> <http://dbpedia.org/property/designer> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/party> <http://dbpedia.org/resource/Mumbai_North_(Lok_Sabha_constituency)> . ?x <http://dbpedia.org/ontology/party> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bend,_Oregon> <http://dbpedia.org/ontology/custodian> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/distributor> <http://dbpedia.org/resource/Cinema_International_Corporation> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": ["http://dbpedia.org/resource/Nightmare_Honeymoon", "http://dbpedia.org/resource/Dick_Deadeye,_or_Duty_Done", "http://dbpedia.org/resource/Four_Flies_on_Grey_Velvet", "http://dbpedia.org/resource/Telefon_(film)", "http://dbpedia.org/resource/Whose_Life_Is_It_Anyway%3F_(film)", "http://dbpedia.org/resource/Why_Would_I_Lie%3F", "http://dbpedia.org/resource/OSS_117_\u2013_Double_Agent", "http://dbpedia.org/resource/...All_the_Marbles", "http://dbpedia.org/resource/That's_Entertainment!", "http://dbpedia.org/resource/That's_Entertainment,_Part_II", "http://dbpedia.org/resource/The_Champ_(1979_film)", "http://dbpedia.org/resource/UFOria", "http://dbpedia.org/resource/Voices_(1979_film)", "http://dbpedia.org/resource/Buddy_Buddy", "http://dbpedia.org/resource/Bread_and_Chocolate", "http://dbpedia.org/resource/The_Dollar_Bottom", "http://dbpedia.org/resource/The_Eagle_Has_Landed_(film)", "http://dbpedia.org/resource/The_Electric_Horseman", "http://dbpedia.org/resource/The_Formula_(1980_film)", "http://dbpedia.org/resource/The_Lost_Honour_of_Katharina_Blum_(film)", "http://dbpedia.org/resource/The_Outsider_(1980_film)", "http://dbpedia.org/resource/The_Slipper_and_the_Rose", "http://dbpedia.org/resource/The_Sunshine_Boys_(1975_film)", "http://dbpedia.org/resource/Norman..._Is_That_You%3F", "http://dbpedia.org/resource/Salvatore_Giuliano_(film)", "http://dbpedia.org/resource/Clash_of_the_Titans_(1981_film)", "http://dbpedia.org/resource/Comeback_(film)", "http://dbpedia.org/resource/Sentinels_of_Silence", "http://dbpedia.org/resource/International_Velvet_(film)", "http://dbpedia.org/resource/Monty_Python's_Life_of_Brian", "http://dbpedia.org/resource/Burning_Rubber", "http://dbpedia.org/resource/Sunday_Lovers", "http://dbpedia.org/resource/Lacombe,_Lucien", "http://dbpedia.org/resource/Donkey_Skin_(film)", "http://dbpedia.org/resource/Slaughterhouse-Five_(film)", "http://dbpedia.org/resource/Asylum_(1972_horror_film)", "http://dbpedia.org/resource/Hearts_of_the_West", "http://dbpedia.org/resource/Hero_at_Large", "http://dbpedia.org/resource/Hide_in_Plain_Sight", "http://dbpedia.org/resource/Fame_(1980_film)", "http://dbpedia.org/resource/Faustine_et_le_Bel_\u00c9t\u00e9", "http://dbpedia.org/resource/Let_Joy_Reign_Supreme", "http://dbpedia.org/resource/Black_Moon_(1975_film)", "http://dbpedia.org/resource/Bon_Voyage,_Charlie_Brown_(and_Don't_Come_Back!!)"]}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/academicDiscipline> <http://dbpedia.org/resource/Neuroimaging> . ?x <http://dbpedia.org/property/discipline> ?uri }"}, "answers": ["11"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ferris_wheel> <http://dbpedia.org/ontology/ground> ?x . ?x <http://dbpedia.org/property/cities> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Gary_Chang> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": ["http://dbpedia.org/resource/Andersonville_(film)", "http://dbpedia.org/resource/Dead_Bang", "http://dbpedia.org/resource/Death_Warrant_(film)", "http://dbpedia.org/resource/The_Breakfast_Club", "http://dbpedia.org/resource/The_Burning_Season_(1994_film)", "http://dbpedia.org/resource/Under_Siege", "http://dbpedia.org/resource/The_Perfect_Weapon_(1991_film)", "http://dbpedia.org/resource/The_Island_of_Dr._Moreau_(1996_film)", "http://dbpedia.org/resource/The_Substitute", "http://dbpedia.org/resource/The_Walking_Dead_(1995_film)", "http://dbpedia.org/resource/52_Pick-Up", "http://dbpedia.org/resource/Twisted_Desire", "http://dbpedia.org/resource/Bad_Day_on_the_Block", "http://dbpedia.org/resource/Murder_Live!", "http://dbpedia.org/resource/Murder_in_New_Hampshire:_The_Pamela_Wojas_Smart_Story", "http://dbpedia.org/resource/A_Shock_to_the_System_(1990_film)", "http://dbpedia.org/resource/A_Soldier's_Sweetheart", "http://dbpedia.org/resource/Against_the_Wall_(1994_film)", "http://dbpedia.org/resource/Sticky_Fingers_(1988_film)", "http://dbpedia.org/resource/Double_Team_(film)", "http://dbpedia.org/resource/Sniper_(1993_film)", "http://dbpedia.org/resource/Sniper_2", "http://dbpedia.org/resource/Fatherland_(1994_film)", "http://dbpedia.org/resource/Firewalker_(film)", "http://dbpedia.org/resource/Blackout_Effect", "http://dbpedia.org/resource/Left_Behind:_World_at_War", "http://dbpedia.org/resource/Word_of_Honor_(2003_film)", "http://dbpedia.org/resource/Miami_Blues", "http://dbpedia.org/resource/Path_to_War", "http://dbpedia.org/resource/Silencing_Mary"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/David_Animle_Hansen> <http://dbpedia.org/property/allegiance> ?uri } "}, "answers": ["http://dbpedia.org/resource/Ghana"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_God_Who_Wasn't_There> <http://dbpedia.org/property/starring> ?uri } "}, "answers": ["http://dbpedia.org/resource/Alan_Dundes", "http://dbpedia.org/resource/Richard_Carrier", "http://dbpedia.org/resource/Robert_M._Price", "http://dbpedia.org/resource/David_P._Mikkelson", "http://dbpedia.org/resource/Sam_Harris_(author)", "http://dbpedia.org/resource/Barbara_Mikkelson", "Brian Flemming", "Scott Butcher", "Ronald Sipus"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Bellaire,_Ohio> . ?uri <http://dbpedia.org/property/team> ?x . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Putri_Raemawasti> <http://dbpedia.org/ontology/birthName> ?uri } "}, "answers": ["Gracia Putri Raemawasti Mulyono"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ren_Bonian> <http://dbpedia.org/ontology/associatedMusicalArtist> ?uri . <http://dbpedia.org/resource/Anger_(musicalArtist)> <http://dbpedia.org/property/birthPlace> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Language_Integrated_Query> <http://dbpedia.org/property/designer> ?uri } "}, "answers": ["http://dbpedia.org/resource/Microsoft_Corporation"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dan_Otero> <http://dbpedia.org/ontology/debutTeam> ?uri } "}, "answers": ["http://dbpedia.org/resource/San_Francisco_Giants"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Not_on_Our_Watch_(organization)> <http://dbpedia.org/ontology/foundedBy> ?uri } "}, "answers": ["http://dbpedia.org/resource/David_Pressman", "http://dbpedia.org/resource/George_Clooney", "http://dbpedia.org/resource/Brad_Pitt", "http://dbpedia.org/resource/Matt_Damon", "http://dbpedia.org/resource/Don_Cheadle", "http://dbpedia.org/resource/Jerry_Weintraub"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Sony_Bank> <http://dbpedia.org/ontology/owningCompany> ?uri } "}, "answers": ["http://dbpedia.org/resource/Sony"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/screenplay> <http://dbpedia.org/resource/Eric_Roth> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": ["http://dbpedia.org/resource/Airport_(film_series)", "http://dbpedia.org/resource/Forrest_Gump", "http://dbpedia.org/resource/Jane's_House", "http://dbpedia.org/resource/The_Concorde_..._Airport_'79", "http://dbpedia.org/resource/The_Curious_Case_of_Benjamin_Button_(film)", "http://dbpedia.org/resource/Laal_Singh_Chaddha", "http://dbpedia.org/resource/Extremely_Loud_&_Incredibly_Close_(film)", "http://dbpedia.org/resource/Lucky_You_(film)"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/recordedIn> <http://dbpedia.org/resource/Miami> . ?x <http://dbpedia.org/ontology/writer> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/architecturalStyle> <http://dbpedia.org/resource/Sanggar_Agung> . ?x <http://dbpedia.org/ontology/religion> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/membership> <http://dbpedia.org/resource/European_Go_Federation> . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Daniel_L._D._Granger> <http://dbpedia.org/property/placeOfBirth> ?uri . <http://dbpedia.org/resource/Job_Durfee> <http://dbpedia.org/ontology/occupation> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/language> <http://dbpedia.org/resource/Marika_Nezer> . ?uri <http://dbpedia.org/property/language> ?x . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/recordLabel> <http://dbpedia.org/resource/EMi> . ?uri <http://dbpedia.org/property/associatedActs> ?x . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/doctoralAdvisor> <http://dbpedia.org/resource/Mary_Ainsworth> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}"}, "answers": ["http://dbpedia.org/resource/Patricia_McKinsey_Crittenden"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Virendra_Kataria> <http://dbpedia.org/ontology/party> ?uri } "}, "answers": ["http://dbpedia.org/resource/Indian_National_Congress"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/awards> <http://dbpedia.org/resource/Copley_Medal> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}"}, "answers": ["http://dbpedia.org/resource/Albert_Kluyver", "http://dbpedia.org/resource/Wilhelm_Eduard_Weber", "http://dbpedia.org/resource/William_Watson_(scientist)", "http://dbpedia.org/resource/Marcellin_Berthelot", "http://dbpedia.org/resource/Jean-Baptiste_Boussingault", "http://dbpedia.org/resource/Abdus_Salam", "http://dbpedia.org/resource/Carl_Friedrich_Gauss", "http://dbpedia.org/resource/Sir_George_Stokes,_1st_Baronet", "http://dbpedia.org/resource/Sir_John_Pringle,_1st_Baronet", "http://dbpedia.org/resource/Henri_Milne-Edwards", "http://dbpedia.org/resource/Richard_Henderson_(biologist)", "http://dbpedia.org/resource/Roger_Penrose", "http://dbpedia.org/resource/Jeffrey_I._Gordon", "http://dbpedia.org/resource/Theodor_Schwann", "http://dbpedia.org/resource/Edward_Waring", "http://dbpedia.org/resource/Stephen_Hales", "http://dbpedia.org/resource/Paul_Dirac", "http://dbpedia.org/resource/Rudolf_Virchow"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Beverly_Hills,_California> . ?x <http://dbpedia.org/ontology/presenter> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Price_of_Beauty> <http://dbpedia.org/ontology/narrator> ?uri } "}, "answers": ["http://dbpedia.org/resource/Jessica_Simpson"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/The_Band> <http://dbpedia.org/property/album> ?x . ?x <http://dbpedia.org/ontology/producer> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Canada> . ?x <http://dbpedia.org/property/country> ?uri . }"}, "answers": ["Canada", "http://dbpedia.org/resource/Canada", "http://dbpedia.org/resource/United_States", "United Kingdom", "", "United States", "http://dbpedia.org/resource/United_Kingdom", "United States, Canada", "http://dbpedia.org/resource/Iran", "http://dbpedia.org/resource/Ontario", "http://dbpedia.org/resource/Ottawa", "Los Angeles, USA", "Japan", "http://dbpedia.org/resource/India", "Canada / Ireland", "http://dbpedia.org/resource/Australia", "http://dbpedia.org/resource/France", "http://dbpedia.org/resource/Europe", "http://dbpedia.org/resource/Italy", "http://dbpedia.org/resource/Africa", "http://dbpedia.org/resource/Switzerland", "http://dbpedia.org/resource/Netherlands", "http://dbpedia.org/resource/Luxembourg", "China", "France", "http://dbpedia.org/resource/United_States_of_America", "United States and Canada", "http://dbpedia.org/resource/Quebec", "T5P 2P7", "M4G 1R8", "Russia", "http://dbpedia.org/resource/Germany", "http://dbpedia.org/resource/Latvia", "Canada R7A 2A9", "India, Canada", "http://dbpedia.org/resource/Ukraine", "http://dbpedia.org/resource/Greece", "http://dbpedia.org/resource/Yugoslavia", "http://dbpedia.org/resource/Norway", "http://dbpedia.org/resource/Slovakia", "http://dbpedia.org/resource/Danish_Realm", "Argentina, Bolivia, Brazil, Canada, Chile, Colombia, Dominican Republic, Ecuador, El Salvador, Guatemala, Guyana, Honduras, Jamaica, Mexico, Nicaragua, Panama, Paraguay, Peru, Uruguay, Venezuela and United States of America", "N6B 2H8", "http://dbpedia.org/resource/Republic_of_Ireland", "US", "Canada P0P 1G0", "http://dbpedia.org/resource/Ireland", "Canada and United States", "Australia", "http://dbpedia.org/resource/Argentina", "India", "Lebanon", "Estrie", "New Zealand and Canada", "Belgium", "Spain", "http://dbpedia.org/resource/Province_of_Canada", "U.K.", "U.S.", "Poland , Canada , Ukraine", "Canada, Denmark, Finland, Iceland, Norway, Russia, Sweden, United States", "http://dbpedia.org/resource/The_Canadas", "T5G 2J9", "M5S 1B2", "N6G 1H2", "Germany", "http://dbpedia.org/resource/Czech_Republic", "http://dbpedia.org/resource/New_Zealand", "http://dbpedia.org/resource/CANADA", "South Korea", "Canada/France Co-Production 1-2 series", "Canada/United Kingdom Co-Production 3rd series", "United Kingdom, Canada", "http://dbpedia.org/resource/Egypt", "Singapore", "Italy", "http://dbpedia.org/resource/Morocco", "Hungary", "Hong Kong", "United StatesCanada", "written in Canada, initially published in the United States", "Province of Canada", "1939", "1950", "Indian medical personnel", "artillery", "CA", "Indonesia", ",", "United Kingdom, Bermuda, and Canada", "Canada, India", "Mexico", "http://dbpedia.org/resource/Europe,_the_Middle_East_and_Africa", "http://dbpedia.org/resource/Japan", "http://dbpedia.org/resource/China", "20", "H2M 1M3", "Canada N2L 3G6", "United States, possibly Canada", "Canada 30px 30px", "Jewish communities of Central and Eastern Europe, Scandinavia, Canada, the United States, Israel", "http://dbpedia.org/resource/European_Union", "http://dbpedia.org/resource/Singapore", "http://dbpedia.org/resource/Malaysia", "http://dbpedia.org/resource/Middle_East", "http://dbpedia.org/resource/Pakistan", "H1N 3M5", "Luxembourg", "Israel", "H2X 3Y9", "http://dbpedia.org/resource/\u00c9tats-Unis", "Brazil", "Canadian", "the United States", "The United States", "India and Canada", "http://dbpedia.org/resource/Alberta", "Canada, United States", "http://dbpedia.org/resource/UK", "Switzerland", "H3T 1C5", "http://dbpedia.org/resource/South_Africa", "Ireland", "M4Y 1P2", "http://dbpedia.org/resource/Belgium", "http://dbpedia.org/resource/Guatemala", "Monaco", "http://dbpedia.org/resource/Hungary", "US/Canada", "http://dbpedia.org/resource/Philippines", "23", "http://dbpedia.org/resource/Socialist_Federal_Republic_of_Yugoslavia", "Netherlands", "25", "West Germany", "G1J 5L5", "H1W 2S9", "Written and set in Canada, published in the United States", "Great Britain", "http://dbpedia.org/resource/Trinidad_and_Tobago", "Pakistan", "R3L 2P4", "Nigeria and Canada", "Norway", "Sweden", "Colombia", "http://dbpedia.org/resource/Burkina_Faso", "http://dbpedia.org/resource/Mali", "http://dbpedia.org/resource/Russia", "http://dbpedia.org/resource/Denmark", "http://dbpedia.org/resource/Israel", "United States and possibly Canada", "http://dbpedia.org/resource/Finland", "B3H 2Y9", "CANADA", "United States, United Kingdom, Canada, Ireland, Bulgaria, Greece, Yugoslavia, France, Belgium, and Cuba", "Canada and the United States", "L8V 5C2", "http://dbpedia.org/resource/Uruguay", "http://dbpedia.org/resource/Vietnam", "http://dbpedia.org/resource/Thailand", "http://dbpedia.org/resource/Brazil", "http://dbpedia.org/resource/Kenya", "http://dbpedia.org/resource/Chile", "http://dbpedia.org/resource/Hong_Kong", "http://dbpedia.org/resource/El_Salvador", "http://dbpedia.org/resource/Spain", "http://dbpedia.org/resource/Mexico", "http://dbpedia.org/resource/Paraguay", "M5S 1V6", "Canada 1867\u2013present", "Province of Canada 1866\u201367", "Denmark", "Palestine", "Qatar", "H3T 1M5", "France/Canada", "H1T 2M4", "H4J 1C5", "http://dbpedia.org/resource/Soviet_Union", "Greece", "Based in Canada", "United Kingdom and Canada", "South Africa", "M5S 3E6", "http://dbpedia.org/resource/Eswatini", "http://dbpedia.org/resource/Evanston,_Wyoming", "http://dbpedia.org/resource/British_Columbia", "http://dbpedia.org/resource/Wyoming", "http://dbpedia.org/resource/Lebanon", "http://dbpedia.org/resource/Romania", "30", "Canada H0M 1A1", "H2V 2C5", "British America, New France"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/musicComposer> <http://dbpedia.org/resource/Hammond_organ> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Christopher_Franke> . ?uri <http://dbpedia.org/property/network> <http://dbpedia.org/resource/Jason_Carter_(actor)> . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/education> <http://dbpedia.org/resource/General_Educational_Development> . ?x <http://dbpedia.org/property/bodyDiscovered> ?uri . }"}, "answers": ["", "Westroads Mall, Omaha, Nebraska, U.S."]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/architect> <http://dbpedia.org/resource/Oddamavadi> . ?x <http://dbpedia.org/property/bridgeCarries> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Houston_Astros> . ?x <http://dbpedia.org/property/debutteam> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/British_Gazette> <http://dbpedia.org/property/editor> ?uri } "}, "answers": ["http://dbpedia.org/resource/Winston_Churchill"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/associatedActs> <http://dbpedia.org/resource/Divertis> . ?x <http://dbpedia.org/ontology/associatedMusicalArtist> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Eurovision_Song_Contest", "http://dbpedia.org/resource/Marius_Moga", "http://dbpedia.org/resource/Catalin_M\u0103ru\u021b\u0103", "http://dbpedia.org/resource/Divertis", "http://dbpedia.org/resource/Faimo\u0219ii", "http://dbpedia.org/resource/Ploaia_de_stele", "http://dbpedia.org/resource/Radu_Captari"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Gerard_Marino> . ?uri <http://dbpedia.org/ontology/developer> ?x . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/developer> <http://dbpedia.org/resource/Unix> . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/seat> <http://dbpedia.org/resource/Berlin> . ?x <http://dbpedia.org/ontology/party> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/youthclubs> <http://dbpedia.org/resource/La_Liga> . ?uri <http://dbpedia.org/property/name> ?x . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Michael_M._Sears> <http://dbpedia.org/property/employer> ?uri . <http://dbpedia.org/resource/Delta_III> <http://dbpedia.org/ontology/producer> ?uri} "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/designer> <http://dbpedia.org/resource/ASC_Creative_Services> . ?x <http://dbpedia.org/property/carries> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/notableWork> <http://dbpedia.org/resource/The_Second_Coming_(TV_serial)> . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Michael_Springer> <http://dbpedia.org/property/almaMater> ?uri . <http://dbpedia.org/resource/Donald_Brooks> <http://dbpedia.org/ontology/formerStudent> ?uri} "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/writer> <http://dbpedia.org/resource/Erik_Jendresen> . ?uri <http://dbpedia.org/property/series> <http://dbpedia.org/resource/John_Orloff> . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Wolves_of_Mercy_Falls_characters> <http://dbpedia.org/property/nickname> ?uri } "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Neungin_High_School> <http://dbpedia.org/property/religiousAffiliation> ?uri } "}, "answers": ["http://dbpedia.org/resource/Buddhist"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_South_End> <http://dbpedia.org/property/owners> ?uri } "}, "answers": ["http://dbpedia.org/resource/Wayne_State_University"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/playedFor> <http://dbpedia.org/resource/Atlant_Moscow_Oblast> . ?x <http://dbpedia.org/ontology/formerTeam> ?uri . }"}, "answers": ["594"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pong_Pha> <http://dbpedia.org/ontology/timeZone> ?uri } "}, "answers": ["http://dbpedia.org/resource/Time_in_Thailand"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/titles> <http://dbpedia.org/resource/Bacilli> . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Reigh_Count> <http://dbpedia.org/ontology/honours> ?uri } "}, "answers": ["http://dbpedia.org/resource/Kentucky", "http://dbpedia.org/resource/Florence,_Kentucky", "http://dbpedia.org/resource/National_Museum_of_Racing_and_Hall_of_Fame"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/related> <http://dbpedia.org/resource/Doctor_Who_Confidential> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Triple_Door_(The_Courage_album)> <http://dbpedia.org/property/artist> ?x . ?x <http://dbpedia.org/ontology/locationCity> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ali_Habib_Mahmud> <http://dbpedia.org/property/battles> ?x . ?x <http://dbpedia.org/ontology/battle> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/sourceCountry> <http://dbpedia.org/resource/New_York_Stock_Exchange_(J)> . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/distributor> <http://dbpedia.org/resource/Cinema_International_Corporation> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": ["44"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cornell_University_Press> <http://dbpedia.org/ontology/education> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/veneratedIn> <http://dbpedia.org/resource/Ham> . ?x <http://dbpedia.org/ontology/country> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/computingPlatform> <http://dbpedia.org/resource/Microsoft_Windows> . ?uri <http://dbpedia.org/property/license> <http://dbpedia.org/resource/Software> . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Man-Sized_Wreath> <http://dbpedia.org/ontology/predecessor> ?x . ?x <http://dbpedia.org/property/carries> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/computingPlatform> <http://dbpedia.org/resource/Unix> . ?uri <http://dbpedia.org/property/language> ?x . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Kenosha,_Wisconsin> . ?uri <http://dbpedia.org/property/director> ?x . }"}, "answers": ["http://dbpedia.org/resource/Village_of_the_Giants", "http://dbpedia.org/resource/War_of_the_Colossal_Beast", "http://dbpedia.org/resource/Attack_of_the_Puppet_People", "http://dbpedia.org/resource/Beginning_of_the_End_(film)", "http://dbpedia.org/resource/Empire_of_the_Ants_(film)", "http://dbpedia.org/resource/The_Amazing_Colossal_Man", "http://dbpedia.org/resource/The_Boy_and_the_Pirates", "http://dbpedia.org/resource/How_to_Succeed_with_Sex", "http://dbpedia.org/resource/The_Cyclops_(film)", "http://dbpedia.org/resource/The_Food_of_the_Gods_(film)", "http://dbpedia.org/resource/The_Magic_Sword_(1962_film)", "http://dbpedia.org/resource/Satan's_Princess", "http://dbpedia.org/resource/Tormented_(1960_film)", "http://dbpedia.org/resource/Necromancy_(film)", "http://dbpedia.org/resource/Picture_Mommy_Dead", "http://dbpedia.org/resource/Earth_vs._the_Spider", "http://dbpedia.org/resource/Burned_at_the_Stake", "http://dbpedia.org/resource/King_Dinosaur", "http://dbpedia.org/resource/The_Mad_Bomber_(film)", "http://dbpedia.org/resource/Sympathy_for_Delicious", "http://dbpedia.org/resource/Tangled_Ever_After", "http://dbpedia.org/resource/Super_Rhino", "http://dbpedia.org/resource/Julia_(American_TV_series)", "http://dbpedia.org/resource/Along_Came_Ruth", "http://dbpedia.org/resource/Day_Dreams_(1922_film)", "http://dbpedia.org/resource/Vamping_Venus", "http://dbpedia.org/resource/Fighting_to_Live", "http://dbpedia.org/resource/Meet_the_Chump", "http://dbpedia.org/resource/Behind_the_Eight_Ball_(film)", "http://dbpedia.org/resource/Forty_Naughty_Girls", "http://dbpedia.org/resource/Hard_Luck_(1921_film)", "http://dbpedia.org/resource/Hat_Check_Honey", "http://dbpedia.org/resource/Hawaii_Calls_(film)", "http://dbpedia.org/resource/What's_Cookin'%3F", "http://dbpedia.org/resource/When_a_Man's_a_Man", "http://dbpedia.org/resource/When_a_Man's_a_Man_(1924_film)", "http://dbpedia.org/resource/Ghost_Catchers", "http://dbpedia.org/resource/Give_Out,_Sisters", "http://dbpedia.org/resource/Go_Chase_Yourself", "http://dbpedia.org/resource/The_Balloonatic", "http://dbpedia.org/resource/The_Boat_(1921_film)", "http://dbpedia.org/resource/Breaking_the_Ice_(film)", "http://dbpedia.org/resource/Bringing_Up_Father_(1946_film)", "http://dbpedia.org/resource/Broadway_Fever", "http://dbpedia.org/resource/The_Cowboy_Millionaire_(1935_film)", "http://dbpedia.org/resource/The_Crash_(1928_film)", "http://dbpedia.org/resource/The_Dude_Ranger", "http://dbpedia.org/resource/The_Electric_House", "http://dbpedia.org/resource/The_Forward_Pass", "http://dbpedia.org/resource/The_Frozen_North", "http://dbpedia.org/resource/The_Girl_Habit", "http://dbpedia.org/resource/The_Girl_from_Everywhere", "http://dbpedia.org/resource/The_Head_Man", "http://dbpedia.org/resource/The_High_Sign", "http://dbpedia.org/resource/The_Love_Nest_(1923_film)", "http://dbpedia.org/resource/The_Meanest_Man_in_the_World_(1923_film)", "http://dbpedia.org/resource/The_Naughty_Flirt", "http://dbpedia.org/resource/The_Paleface_(1922_film)", "http://dbpedia.org/resource/The_Rag_Man", "http://dbpedia.org/resource/The_Scarecrow_(1920_film)", "http://dbpedia.org/resource/The_Villain_Still_Pursued_Her", "http://dbpedia.org/resource/The_Widow_from_Chicago", "http://dbpedia.org/resource/Convict_13", "http://dbpedia.org/resource/See_My_Lawyer", "http://dbpedia.org/resource/Moonlight_and_Cactus_(1944_film)", "http://dbpedia.org/resource/My_Little_Chickadee", "http://dbpedia.org/resource/My_Wife's_Relations", "http://dbpedia.org/resource/Sweet_Mama_(film)", "http://dbpedia.org/resource/Swingtime_Johnny", "http://dbpedia.org/resource/Captain_January_(1924_film)", "http://dbpedia.org/resource/Hook,_Line_and_Sinker_(1930_film)", "http://dbpedia.org/resource/Ladies'_Night_in_a_Turkish_Bath", "http://dbpedia.org/resource/Leathernecking", "http://dbpedia.org/resource/Slightly_Terrific", "http://dbpedia.org/resource/So_This_Is_Africa", "http://dbpedia.org/resource/Soft_Cushions", "http://dbpedia.org/resource/Cops_(film)", "http://dbpedia.org/resource/Cracked_Nuts_(1931_film)", "http://dbpedia.org/resource/Cracked_Nuts_(1941_film)", "http://dbpedia.org/resource/Crazy_House_(1943_film)", "http://dbpedia.org/resource/He's_My_Guy_(film)", "http://dbpedia.org/resource/Hello,_Sucker", "http://dbpedia.org/resource/Hellzapoppin'_(film)", "http://dbpedia.org/resource/High_Flyers_(film)", "http://dbpedia.org/resource/His_Lucky_Day", "http://dbpedia.org/resource/F-Man", "http://dbpedia.org/resource/Flirty_Four-Flushers", "http://dbpedia.org/resource/Let_It_Rain_(film)", "http://dbpedia.org/resource/Neighbors_(1920_film)", "http://dbpedia.org/resource/Never_Give_a_Sucker_an_Even_Break", "http://dbpedia.org/resource/Night_Club_Girl", "http://dbpedia.org/resource/Peck's_Bad_Boy_(1934_film)", "http://dbpedia.org/resource/Penthouse_Rhythm", "http://dbpedia.org/resource/Private_Buckaroo", "http://dbpedia.org/resource/Private_Snuffy_Smith", "http://dbpedia.org/resource/Peck's_Bad_Boy_with_the_Circus", "http://dbpedia.org/resource/Old_Clothes", "http://dbpedia.org/resource/On_Again-Off_Again", "http://dbpedia.org/resource/One_Week_(1920_film)", "http://dbpedia.org/resource/In_the_Next_Room", "http://dbpedia.org/resource/Little_Robinson_Crusoe", "http://dbpedia.org/resource/Million_Dollar_Legs_(1932_film)", "http://dbpedia.org/resource/Parole_Girl", "http://dbpedia.org/resource/Jiggs_and_Maggie_in_Society", "http://dbpedia.org/resource/You_Can't_Cheat_an_Honest_Man", "http://dbpedia.org/resource/Filming_Othello", "http://dbpedia.org/resource/Filming_The_Trial", "http://dbpedia.org/resource/Moby_Dick_(unfinished_film)", "http://dbpedia.org/resource/Around_the_World_with_Orson_Welles", "http://dbpedia.org/resource/The_Deep_(unfinished_film)", "http://dbpedia.org/resource/Vienna_(film)", "http://dbpedia.org/resource/The_Miracle_of_St._Anne", "http://dbpedia.org/resource/The_Fountain_of_Youth_(film)", "http://dbpedia.org/resource/The_Lady_from_Shanghai", "http://dbpedia.org/resource/The_Magnificent_Ambersons_(film)", "http://dbpedia.org/resource/The_Merchant_of_Venice_(1969_film)", "http://dbpedia.org/resource/The_Other_Side_of_the_Wind", "http://dbpedia.org/resource/The_Stranger_(1946_film)", "http://dbpedia.org/resource/The_Trial_(1962_film)", "http://dbpedia.org/resource/The_Heroine", "http://dbpedia.org/resource/Citizen_Kane", "http://dbpedia.org/resource/Citizen_Kane_trailer", "http://dbpedia.org/resource/The_Immortal_Story", "http://dbpedia.org/resource/Mr._Arkadin", "http://dbpedia.org/resource/Too_Much_Johnson_(1938_film)", "http://dbpedia.org/resource/Touch_of_Evil", "http://dbpedia.org/resource/Chimes_at_Midnight", "http://dbpedia.org/resource/Twelfth_Night_(1933_film)", "http://dbpedia.org/resource/Don_Quixote_(unfinished_film)", "http://dbpedia.org/resource/One_Man_Band_(unfinished_film)", "http://dbpedia.org/resource/Macbeth_(1948_film)", "http://dbpedia.org/resource/Three_Cases_of_Murder", "http://dbpedia.org/resource/Orson_Welles'_Magic_Show", "http://dbpedia.org/resource/Othello_(1951_film)", "http://dbpedia.org/resource/Black_Magic_(1949_film)", "http://dbpedia.org/resource/In_the_Land_of_Don_Quixote", "http://dbpedia.org/resource/Orson_Welles_and_People"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/relatives> <http://dbpedia.org/resource/Duck_family> . ?uri <http://dbpedia.org/ontology/relative> <http://dbpedia.org/resource/Clan_McDuck> . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jerome_B._Chaffee> <http://dbpedia.org/property/state> ?uri } "}, "answers": ["http://dbpedia.org/resource/Colorado", "Colorado", "Colorado Territory"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lucky_You_(film)> <http://dbpedia.org/property/screenplay> ?x . ?x <http://dbpedia.org/ontology/award> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Academy_Awards", "http://dbpedia.org/resource/Laurel_Award_for_Screenwriting_Achievement"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/1994_Spanish_Grand_Prix> <http://dbpedia.org/property/poleDriver> ?uri } "}, "answers": ["http://dbpedia.org/resource/Michael_Schumacher"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/hubAirport> <http://dbpedia.org/resource/Detroit> . ?x <http://dbpedia.org/ontology/parentCompany> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/assembly> <http://dbpedia.org/resource/Jefferson_North_Assembly> . ?x <http://dbpedia.org/ontology/related> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/institution> <http://dbpedia.org/resource/Harvard_Medical_School> . ?uri <http://dbpedia.org/property/locations> ?x . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/musicBy> <http://dbpedia.org/resource/Jerry_Bock> . ?x <http://dbpedia.org/ontology/basedOn> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/locatedInArea> <http://dbpedia.org/resource/Yosemite_National_Park> . ?x <http://dbpedia.org/ontology/firstAscentPerson> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/PlayStation_4> <http://dbpedia.org/ontology/successor> ?uri } "}, "answers": ["http://dbpedia.org/resource/PlayStation_5"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/ground> <http://dbpedia.org/resource/Camp_Nou> . ?x <http://dbpedia.org/ontology/team> ?uri . }"}, "answers": ["http://dbpedia.org/resource/FC_Barcelona"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ryan_Powell_(lacrosse)> <http://dbpedia.org/property/team> ?uri } "}, "answers": ["http://dbpedia.org/resource/Syracuse_University"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/draftTeam> <http://dbpedia.org/resource/Detroit_Pistons> . ?x <http://dbpedia.org/ontology/deathPlace> ?uri . }"}, "answers": ["21"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/borough> <http://dbpedia.org/resource/1211_Avenue_of_the_Americas> . ?uri <http://dbpedia.org/property/office> ?x . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Providence_Chapel,_Charlwood> <http://dbpedia.org/property/style> ?uri } "}, "answers": ["http://dbpedia.org/resource/Vernacular_architecture", "http://dbpedia.org/resource/New_England"]}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/engine> <http://dbpedia.org/resource/McDonnell_Aircraft> . ?x <http://dbpedia.org/ontology/employer> ?uri }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/genre> <http://dbpedia.org/resource/Jazz_fusion> . ?x <http://dbpedia.org/ontology/recordLabel> ?uri . }"}, "answers": ["1214"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/starring> <http://dbpedia.org/resource/Joey_McIntyre> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": ["1"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/awards> <http://dbpedia.org/resource/SIGGRAPH> . ?x <http://dbpedia.org/ontology/award> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/David_Scherman> <http://dbpedia.org/ontology/training> ?uri } "}, "answers": ["http://dbpedia.org/resource/Dartmouth_College"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Raoul_Magrin-Vernerey> <http://dbpedia.org/property/battles> ?x . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/flagBy> <http://dbpedia.org/resource/2004_OFC_Men's_Olympic_Qualifying_Tournament> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Athlete>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Angelina_Jolie> <http://dbpedia.org/ontology/parent> ?x . ?x <http://dbpedia.org/property/awards> ?uri . }"}, "answers": ["http://dbpedia.org/resource/National_Medal_of_Arts", "See [[#Awards and nominations"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/nationality> <http://dbpedia.org/resource/Stateless_people> . ?x <http://dbpedia.org/ontology/stateOfOrigin> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/literaryGenre> <http://dbpedia.org/resource/Utopian_and_dystopian_fiction> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/writer> <http://dbpedia.org/resource/Nick_Castle> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": ["http://dbpedia.org/resource/Pray_TV_(1980_film)", "http://dbpedia.org/resource/The_Resurrection_of_Broncho_Billy", "http://dbpedia.org/resource/Tap_(film)", "http://dbpedia.org/resource/Skatetown,_U.S.A."]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/riverAuthority> <http://dbpedia.org/resource/Zambezi_River_Authority> . ?x <http://dbpedia.org/property/river> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/producer> <http://dbpedia.org/resource/Glen_and_Les_Charles> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/served> <http://dbpedia.org/resource/Karinga_Bay> . ?x <http://dbpedia.org/property/race> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/hairColor> <http://dbpedia.org/resource/Brown_hair> . ?uri <http://dbpedia.org/ontology/residence> ?x . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/keyPeople> <http://dbpedia.org/resource/Clinton_Foundation> . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Akira_Ifukube> . }"}, "answers": ["56"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/place> <http://dbpedia.org/resource/Connecticut_Colony> . ?x <http://dbpedia.org/ontology/place> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Marie_Sisters> <http://dbpedia.org/property/producer> ?uri } "}, "answers": ["http://dbpedia.org/resource/Shep_Goodman", "http://dbpedia.org/resource/Max_T._Barnes", "http://dbpedia.org/resource/Guy_Roche", "http://dbpedia.org/resource/Richard_Marx", "Kenny Gioia"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Hayden,_Stone_&_Co> . <http://dbpedia.org/property/successor> ?uri } "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Xynisteri> <http://dbpedia.org/ontology/origin> ?uri } "}, "answers": ["http://dbpedia.org/resource/Cyprus"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/currentclub> <http://dbpedia.org/resource/Barcelona> . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/keyPeople> <http://dbpedia.org/resource/Deborah_Turness> . ?x <http://dbpedia.org/ontology/network> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/chairman> <http://dbpedia.org/resource/Merritt_Paulson> . ?x <http://dbpedia.org/ontology/homeStadium> ?uri . }"}, "answers": ["66"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ernest_de_Saisset> <http://dbpedia.org/property/almaMater> ?uri } "}, "answers": ["http://dbpedia.org/resource/Santa_Clara_University", "Acad\u00e9mie Julian"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Philippine_Ports_Authority> <http://dbpedia.org/property/successor> ?uri . <http://dbpedia.org/resource/Ruben_J._Villote> <http://dbpedia.org/ontology/origin> ?uri} "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Timmy_Time> <http://dbpedia.org/ontology/executiveProducer> ?x . ?x <http://dbpedia.org/property/awards> ?uri . }"}, "answers": ["Four Academy Awards"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/placeOfDeath> <http://dbpedia.org/resource/United_States> . ?x <http://dbpedia.org/ontology/nationality> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/phylum> <http://dbpedia.org/resource/Chordate> . ?uri <http://dbpedia.org/ontology/order> <http://dbpedia.org/resource/Diprotodontia> } "}, "answers": ["2"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/inflow> <http://dbpedia.org/resource/Aegean_Sea> . ?x <http://dbpedia.org/ontology/cities> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Erica_Frank> <http://dbpedia.org/ontology/managerClub> ?uri . <http://dbpedia.org/resource/Ivan_Toplak> <http://dbpedia.org/property/university> ?uri} "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/executiveProducer> <http://dbpedia.org/resource/Ricky_Gervais> . ?uri <http://dbpedia.org/property/series> ?x . }"}, "answers": ["187"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/ingredientFamily> <http://dbpedia.org/resource/Flour> . ?uri <http://dbpedia.org/property/family> ?x . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/league> <http://dbpedia.org/resource/American_Football_League> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SportsTeam>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/award> <http://dbpedia.org/resource/Royal_Society> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/James_H._Fields> <http://dbpedia.org/ontology/restingplace> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/family> <http://dbpedia.org/resource/Padm\u00e9_Amidala> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/FictionalCharacter>}"}, "answers": ["http://dbpedia.org/resource/Mara_Jade"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/author> <http://dbpedia.org/resource/Google_Web_Toolkit> . ?uri <http://dbpedia.org/property/company> <http://dbpedia.org/resource/PlayN> . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dodge> <http://dbpedia.org/ontology/automobilePlatform> ?uri } "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ne_daj_se,_Nina> <http://dbpedia.org/property/firstAired> ?uri } "}, "answers": ["2007-10-29", "2008-01-03", "", "Serbia:", "Croatia:"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/writer> <http://dbpedia.org/resource/Brian_Moriarty> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/VideoGame>}"}, "answers": ["http://dbpedia.org/resource/The_Dig_(video_game)"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Louis_Bri\u00e8re> <http://dbpedia.org/ontology/commander> ?x . ?x <http://dbpedia.org/property/territory> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Quebec_hockey> . ?x <http://dbpedia.org/property/team> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/FM> <http://dbpedia.org/resource/WBIG> . ?uri <http://dbpedia.org/property/genre> ?x . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/almaMater> <http://dbpedia.org/resource/Worcester_College,_Oxford> . ?x <http://dbpedia.org/ontology/field> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Development_economics", "http://dbpedia.org/resource/Public_economics", "http://dbpedia.org/resource/Economics"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Celluloid_Records> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MusicalArtist>}"}, "answers": ["http://dbpedia.org/resource/Martin_Bisi", "http://dbpedia.org/resource/Jody_Harris", "http://dbpedia.org/resource/Tshala_Muana", "http://dbpedia.org/resource/Fela_Kuti", "http://dbpedia.org/resource/Ferdinand_Richard"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/commander> <http://dbpedia.org/resource/Arthur_St._Clair> . ?x <http://dbpedia.org/property/battles> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/instrument> <http://dbpedia.org/resource/Guitar> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MusicalArtist>}"}, "answers": ["http://dbpedia.org/resource/Allan_Slutsky", "http://dbpedia.org/resource/Allan_Stewart_(musician)", "http://dbpedia.org/resource/Allen_West_(musician)", "http://dbpedia.org/resource/Allister_MacGillivray", "http://dbpedia.org/resource/Altiyan_Childs", "http://dbpedia.org/resource/Alvin_Robinson_(musician)", "http://dbpedia.org/resource/Alyssa_Bonagura", "http://dbpedia.org/resource/Amaia_Montero", "http://dbpedia.org/resource/Amanda_Jenssen", "http://dbpedia.org/resource/Amir_Derakh", "http://dbpedia.org/resource/Amplifico", "http://dbpedia.org/resource/Amund_Maarud", "http://dbpedia.org/resource/Amy_Helm", "http://dbpedia.org/resource/Anders_Lindstr\u00f6m", "http://dbpedia.org/resource/Anders_Wendin", "http://dbpedia.org/resource/Andrea_Laszlo_De_Simone", "http://dbpedia.org/resource/Andreas_Mj\u00f8s", "http://dbpedia.org/resource/Andrew_Bird", "http://dbpedia.org/resource/Andrew_Brel", "http://dbpedia.org/resource/Andrew_Edge", "http://dbpedia.org/resource/Andrew_Farriss", "http://dbpedia.org/resource/Andrew_Garton", "http://dbpedia.org/resource/Andrew_Goldstein_(musician)", "http://dbpedia.org/resource/Andrew_Innes", "http://dbpedia.org/resource/Andrew_Pope_(singer)", "http://dbpedia.org/resource/Andrew_VanWyngarden", "http://dbpedia.org/resource/Andrew_Weatherall", "http://dbpedia.org/resource/Andrini_Brothers", "http://dbpedia.org/resource/Andrius_Mamontovas", "http://dbpedia.org/resource/Andr\u00e9_Andersen", "http://dbpedia.org/resource/Andr\u00e9_Moraes", "http://dbpedia.org/resource/Andr\u00e9s_Bretel", "http://dbpedia.org/resource/Andr\u00e9s_Calamaro", "http://dbpedia.org/resource/Andr\u00e9s_Useche", "http://dbpedia.org/resource/Andy_Childs", "http://dbpedia.org/resource/Andy_Creeggan", "http://dbpedia.org/resource/Andy_Dodd", "http://dbpedia.org/resource/Andy_Gerold", "http://dbpedia.org/resource/Andy_McKee", "http://dbpedia.org/resource/Andy_Rinehart", "http://dbpedia.org/resource/Andy_Rodgers_(musician)", "http://dbpedia.org/resource/Andy_Scott_(guitarist)", "http://dbpedia.org/resource/Andy_Sheppard_(broadcaster)", "http://dbpedia.org/resource/Andy_Shernoff", "http://dbpedia.org/resource/Andy_Stamets", "http://dbpedia.org/resource/Ane_Brun", "http://dbpedia.org/resource/Adrian_White_(musician)", "http://dbpedia.org/resource/Afrika_Baby_Bam", "http://dbpedia.org/resource/Alex_Hutchings_(guitarist)", "http://dbpedia.org/resource/Alex_Weir_(musician)", "http://dbpedia.org/resource/Alex_White_(musician)", "http://dbpedia.org/resource/Alexander_Tucker_(musician)", "http://dbpedia.org/resource/Alexandria_Maillot", "http://dbpedia.org/resource/Damien_Leith", "http://dbpedia.org/resource/Damien_Robitaille", "http://dbpedia.org/resource/Damon_Krukowski", "http://dbpedia.org/resource/Dan_Briggs_(musician)", "http://dbpedia.org/resource/Dan_Bull", "http://dbpedia.org/resource/Dan_Cunneen", "http://dbpedia.org/resource/Dan_Mangan", "http://dbpedia.org/resource/Dan_Palmer_(guitarist)", "http://dbpedia.org/resource/Dan_Penn", "http://dbpedia.org/resource/Dan_Pickett_(musician)", "http://dbpedia.org/resource/Dan_Radlauer", "http://dbpedia.org/resource/Dan_Sane", "http://dbpedia.org/resource/Dan_Sultan", "http://dbpedia.org/resource/Dan_Toler", "http://dbpedia.org/resource/Dan_Vapid", "http://dbpedia.org/resource/Dan_Vickrey", "http://dbpedia.org/resource/Dan_Zanes", "http://dbpedia.org/resource/Daniel_Anderson_(musician)", "http://dbpedia.org/resource/Daniel_Antonsson", "http://dbpedia.org/resource/Daniel_Droste", "http://dbpedia.org/resource/Daniel_Joseph_Schafer", "http://dbpedia.org/resource/Daniel_Kessler_(guitarist)", "http://dbpedia.org/resource/Daniel_Merriweather", "http://dbpedia.org/resource/Daniel_O'Sullivan_(musician)", "http://dbpedia.org/resource/Daniel_Sea", "http://dbpedia.org/resource/Danijel_Cerovi\u0107", "http://dbpedia.org/resource/Danimal_Cannon", "http://dbpedia.org/resource/Danne_Larsson", "http://dbpedia.org/resource/Danny_Cedrone", "http://dbpedia.org/resource/Danny_Cocke", "http://dbpedia.org/resource/Danny_Saber", "http://dbpedia.org/resource/Danny_Sveinson", "http://dbpedia.org/resource/Danny_Whitten", "http://dbpedia.org/resource/Danny_Wilde_(musician)", "http://dbpedia.org/resource/Darden_Smith", "http://dbpedia.org/resource/Daria_Zawia\u0142ow", "http://dbpedia.org/resource/Darius_Sema\u00f1a", "http://dbpedia.org/resource/Darko_Hajsek", "http://dbpedia.org/resource/Darren_Korb", "http://dbpedia.org/resource/Darren_Middleton", "http://dbpedia.org/resource/Darren_Thiboutot_Jr.", "http://dbpedia.org/resource/Daryl_Hall", "http://dbpedia.org/resource/Dave_Amato", "http://dbpedia.org/resource/Dave_Bickler", "http://dbpedia.org/resource/Dave_Dunlop", "http://dbpedia.org/resource/Dave_Haywood", "http://dbpedia.org/resource/Dave_Kerman", "http://dbpedia.org/resource/Dave_Kilminster", "http://dbpedia.org/resource/Dave_MacIsaac", "http://dbpedia.org/resource/Dave_Martone", "http://dbpedia.org/resource/Dave_Melillo", "http://dbpedia.org/resource/Dave_Meniketti", "http://dbpedia.org/resource/Dave_Specter", "http://dbpedia.org/resource/Dave_Stogner", "http://dbpedia.org/resource/Dave_Suzuki", "http://dbpedia.org/resource/Dave_Swarbrick", "http://dbpedia.org/resource/Dave_Weiner", "http://dbpedia.org/resource/Davey_Arthur", "http://dbpedia.org/resource/David_Barbe", "http://dbpedia.org/resource/David_Bendeth", "http://dbpedia.org/resource/David_Bennett_Cohen", "http://dbpedia.org/resource/David_Berkeley", "http://dbpedia.org/resource/David_Dineen-Porter", "http://dbpedia.org/resource/David_Frizzell", "http://dbpedia.org/resource/David_Gans_(musician)", "http://dbpedia.org/resource/David_Garcia_(musician)", "http://dbpedia.org/resource/David_Gogo", "http://dbpedia.org/resource/David_Immergl\u00fcck", "http://dbpedia.org/resource/David_Jenkins_(musician)", "http://dbpedia.org/resource/David_Kersh", "http://dbpedia.org/resource/David_Lane_(musician)", "http://dbpedia.org/resource/David_Lindley_(musician)", "http://dbpedia.org/resource/David_Longdon", "http://dbpedia.org/resource/David_Lowery_(musician)", "http://dbpedia.org/resource/David_Malachowski", "http://dbpedia.org/resource/David_Marks", "http://dbpedia.org/resource/David_McEwan_(producer)", "http://dbpedia.org/resource/David_Olliffe", "http://dbpedia.org/resource/David_Ragsdale", "http://dbpedia.org/resource/David_Rogers_(singer)", "http://dbpedia.org/resource/David_Starobin", "http://dbpedia.org/resource/David_T._Walker", "http://dbpedia.org/resource/Dawayne_Bailey", "http://dbpedia.org/resource/DeWayne_McKnight", "http://dbpedia.org/resource/Deakin_(musician)", "http://dbpedia.org/resource/Dean_De_Benedictis", "http://dbpedia.org/resource/Dean_Delannoit", "http://dbpedia.org/resource/Dean_Fasano", "http://dbpedia.org/resource/Dean_Fertita", "http://dbpedia.org/resource/Dean_Wareham", "http://dbpedia.org/resource/Debbie_Davies", "http://dbpedia.org/resource/Declan_Galbraith", "http://dbpedia.org/resource/Apex_(musician)", "http://dbpedia.org/resource/April_Lawton", "http://dbpedia.org/resource/Ardeshir_Farah", "http://dbpedia.org/resource/Ariel_Aparicio", "http://dbpedia.org/resource/Ariel_Rechtshaid", "http://dbpedia.org/resource/Borko", "http://dbpedia.org/resource/Cassidy_Haley", "http://dbpedia.org/resource/Conny_Nimmersj\u00f6", "http://dbpedia.org/resource/Desmond_Williams_(musician)", "http://dbpedia.org/resource/Valensia", "http://dbpedia.org/resource/Valerie_June", "http://dbpedia.org/resource/Vasilis_Papakonstantinou", "http://dbpedia.org/resource/Vasti_Jackson", "http://dbpedia.org/resource/Veniamin_Nechayev", "http://dbpedia.org/resource/Vera_Blue", "http://dbpedia.org/resource/Verity_Susman", "http://dbpedia.org/resource/Vern_Gosdin", "http://dbpedia.org/resource/Vertexguy", "http://dbpedia.org/resource/Vesa_Jokinen", "http://dbpedia.org/resource/Veselin_Marinov", "http://dbpedia.org/resource/Vic_Johnson_(musician)", "http://dbpedia.org/resource/Vicko_Milatovi\u0107", "http://dbpedia.org/resource/Victor_Indrizzo", "http://dbpedia.org/resource/Victoria_Maurette", "http://dbpedia.org/resource/Vidoja_Bo\u017einovi\u0107", "http://dbpedia.org/resource/Vigilante_Carlstroem", "http://dbpedia.org/resource/Ville_Friman", "http://dbpedia.org/resource/Ville_V\u00e4nni", "http://dbpedia.org/resource/Vince_White", "http://dbpedia.org/resource/Vincent_Cross", "http://dbpedia.org/resource/Vincent_Taylor_(musician)", "http://dbpedia.org/resource/Vincent_Walker", "http://dbpedia.org/resource/Vinnie_Dombroski", "http://dbpedia.org/resource/Virginia_to_Vegas", "http://dbpedia.org/resource/Vitico", "http://dbpedia.org/resource/Vittorio_Camardese", "http://dbpedia.org/resource/Vjat\u0161eslav_Kobrin", "http://dbpedia.org/resource/Vladimir_Begunov", "http://dbpedia.org/resource/Vladimir_Gorbach", "http://dbpedia.org/resource/Vladimir_Petrovski", "http://dbpedia.org/resource/Vladim\u00edr_Merta", "http://dbpedia.org/resource/Vladim\u00edr_Mi\u0161\u00edk", "http://dbpedia.org/resource/Vlatko_Stefanovski", "http://dbpedia.org/resource/Vonda_Shepard", "http://dbpedia.org/resource/V\u00edctor_Garc\u00eda_(Spanish_singer)", "http://dbpedia.org/resource/Waldemar_Bastos", "http://dbpedia.org/resource/Walt_Aldridge", "http://dbpedia.org/resource/Walter_Parazaider", "http://dbpedia.org/resource/Warrick_Sony", "http://dbpedia.org/resource/Djelimady_Tounkara", "http://dbpedia.org/resource/Dogbowl", "http://dbpedia.org/resource/Dom_Turner", "http://dbpedia.org/resource/Jack_Semple", "http://dbpedia.org/resource/Michael_Severs", "http://dbpedia.org/resource/Peter_Searcy", "http://dbpedia.org/resource/Serkan_\u00c7elik\u00f6z", "http://dbpedia.org/resource/Rose_Melberg", "http://dbpedia.org/resource/Nicolas_de_Angelis", "http://dbpedia.org/resource/Jaxon_Benge", "http://dbpedia.org/resource/Jason_DeCorse", "http://dbpedia.org/resource/Jason_Kardong", "http://dbpedia.org/resource/Jesse_Brand", "http://dbpedia.org/resource/Luis_Beethoven_Galvez", "http://dbpedia.org/resource/Space_Mandino", "http://dbpedia.org/resource/Tawgs_Salter", "http://dbpedia.org/resource/The_June_Junes", "http://dbpedia.org/resource/Michael_Carter_(musician)", "http://dbpedia.org/resource/Tore_\u00d8stby", "http://dbpedia.org/resource/Phil_Heywood", "http://dbpedia.org/resource/Marlo_Henderson", "http://dbpedia.org/resource/Woody_Platt", "http://dbpedia.org/resource/Alan_Steward", "http://dbpedia.org/resource/Demir_Demirkan", "http://dbpedia.org/resource/Denis_Payton", "http://dbpedia.org/resource/Deniz_Tek", "http://dbpedia.org/resource/Dennis_Coffey", "http://dbpedia.org/resource/Dennis_Pavao", "http://dbpedia.org/resource/Dennis_Reksten", "http://dbpedia.org/resource/Denny_Dias", "http://dbpedia.org/resource/Denyss_McKnight", "http://dbpedia.org/resource/Depha_Masterpiece", "http://dbpedia.org/resource/Derek_Forbes", "http://dbpedia.org/resource/Derek_Kerswill", "http://dbpedia.org/resource/Derry_Grehan", "http://dbpedia.org/resource/Detlef_Wiedeke", "http://dbpedia.org/resource/Dewey_Bunnell", "http://dbpedia.org/resource/Diana_Arbenina", "http://dbpedia.org/resource/Diblo_Dibala", "http://dbpedia.org/resource/Dick_Damron", "http://dbpedia.org/resource/Dick_Rosmini", "http://dbpedia.org/resource/Dieter_Moebius", "http://dbpedia.org/resource/Dig_Richards", "http://dbpedia.org/resource/Dimitri_Tikovo\u00ef", "http://dbpedia.org/resource/Diont\u00e9_Boom", "http://dbpedia.org/resource/Dirk_Schl\u00e4chter", "http://dbpedia.org/resource/Dirk_von_Lowtzow", "http://dbpedia.org/resource/Tito_Larriva", "http://dbpedia.org/resource/Elizabeth_Barraclough", "http://dbpedia.org/resource/Moreland_and_Arbuckle", "http://dbpedia.org/resource/Justin_Moyer", "http://dbpedia.org/resource/Moose_Harris", "http://dbpedia.org/resource/Muck_Sticky", "http://dbpedia.org/resource/Mutlu_Onaral", "http://dbpedia.org/resource/Sanjay_Mishra_(musician)", "http://dbpedia.org/resource/William_Harris_(musician)", "http://dbpedia.org/resource/York_(group)", "http://dbpedia.org/resource/Zacharie_Elenga", "http://dbpedia.org/resource/Zim_Zum", "http://dbpedia.org/resource/Hans_J\u00f8rgen_Undelstvedt", "http://dbpedia.org/resource/Hans_Reffert", "http://dbpedia.org/resource/Pat_Kirtley", "http://dbpedia.org/resource/Sydney_Forest", "http://dbpedia.org/resource/Rob_Fetters", "http://dbpedia.org/resource/Rob_Laakso", "http://dbpedia.org/resource/Paul_Thomsen_Kirk", "http://dbpedia.org/resource/Aidan_Knight", "http://dbpedia.org/resource/Aidan_Zammit", "http://dbpedia.org/resource/Akira_Kajiyama", "http://dbpedia.org/resource/Al_Anderson_(musician)", "http://dbpedia.org/resource/Al_Casey_(rock_guitarist)", "http://dbpedia.org/resource/Al_Hurricane_Jr.", "http://dbpedia.org/resource/Alain_Johannes", "http://dbpedia.org/resource/Alan_Davey_(musician)", "http://dbpedia.org/resource/Alan_Glen", "http://dbpedia.org/resource/Alan_Lancaster", "http://dbpedia.org/resource/Alan_Licht", "http://dbpedia.org/resource/Alan_McGee", "http://dbpedia.org/resource/Alan_Merrill", "http://dbpedia.org/resource/Alan_Parsons", "http://dbpedia.org/resource/Alan_Shacklock", "http://dbpedia.org/resource/Alan_Warner_(musician)", "http://dbpedia.org/resource/Albert_Collins", "http://dbpedia.org/resource/Albert_Cummings", "http://dbpedia.org/resource/Albert_White_(musician)", "http://dbpedia.org/resource/Alberta_Slim", "http://dbpedia.org/resource/Ale_M\u00f6ller", "http://dbpedia.org/resource/Alec_Finn", "http://dbpedia.org/resource/Alec_Seward", "http://dbpedia.org/resource/Alejandro_Alonso_(musician)", "http://dbpedia.org/resource/Aleksandr_Kharchikov", "http://dbpedia.org/resource/Aleksandr_Nepomnyashchiy", "http://dbpedia.org/resource/Alen_Islamovi\u0107", "http://dbpedia.org/resource/Alex_Grossi", "http://dbpedia.org/resource/Alex_Kapranos", "http://dbpedia.org/resource/Alex_Lee_(musician)", "http://dbpedia.org/resource/Alex_St._Clair", "http://dbpedia.org/resource/Alex_Tumay", "http://dbpedia.org/resource/Alex_Vega", "http://dbpedia.org/resource/Alex_Wong_(producer,_musician)", "http://dbpedia.org/resource/Alex_Wright_(musician)", "http://dbpedia.org/resource/Alex_Wurman", "http://dbpedia.org/resource/Alexander_Brandon", "http://dbpedia.org/resource/Alexander_Hacke", "http://dbpedia.org/resource/Alexander_James_Adams", "http://dbpedia.org/resource/Alexander_Kostarev", "http://dbpedia.org/resource/Alexandre_Navarro", "http://dbpedia.org/resource/Alf_Svensson_(guitarist)", "http://dbpedia.org/resource/Alfunction", "http://dbpedia.org/resource/Alger_%22Texas%22_Alexander", "http://dbpedia.org/resource/Ali_Farka_Tour\u00e9", "http://dbpedia.org/resource/Ali_Harter", "http://dbpedia.org/resource/Alias_(musician)", "http://dbpedia.org/resource/Alicia_Warrington", "http://dbpedia.org/resource/Alina_Smith", "http://dbpedia.org/resource/Art_Thieme", "http://dbpedia.org/resource/Arthur_Crudup", "http://dbpedia.org/resource/Arthur_Lee_%22Red%22_Smiley", "http://dbpedia.org/resource/Arthur_Rhames", "http://dbpedia.org/resource/Arvella_Gray", "http://dbpedia.org/resource/Asa_Martin", "http://dbpedia.org/resource/Asad_Ahmed", "http://dbpedia.org/resource/Asaf_Sagiv", "http://dbpedia.org/resource/Asbj\u00f8rn_Lerheim", "http://dbpedia.org/resource/Ash_Riser", "http://dbpedia.org/resource/Asher_Swissa", "http://dbpedia.org/resource/Ashley_Gorley", "http://dbpedia.org/resource/Aslak_D\u00f8rum", "http://dbpedia.org/resource/Assaf_Kehati", "http://dbpedia.org/resource/Attila_Zoller", "http://dbpedia.org/resource/Augie_Meyers", "http://dbpedia.org/resource/Augustine_Leudar", "http://dbpedia.org/resource/Awalmir", "http://dbpedia.org/resource/Baz_Warne", "http://dbpedia.org/resource/Ben_Bridwell", "http://dbpedia.org/resource/Ben_Brodin", "http://dbpedia.org/resource/Ben_King_(guitarist)", "http://dbpedia.org/resource/Ben_Lurie", "http://dbpedia.org/resource/Benito_Lertxundi", "http://dbpedia.org/resource/Benjamin_Curtis_(musician)", "http://dbpedia.org/resource/Benjamin_Wallfisch", "http://dbpedia.org/resource/Benn_Jordan", "http://dbpedia.org/resource/Benny_Martin", "http://dbpedia.org/resource/Bent_Patey", "http://dbpedia.org/resource/Bernard_Fowler", "http://dbpedia.org/resource/Bertrand_Cantat", "http://dbpedia.org/resource/Bess_Lomax_Hawes", "http://dbpedia.org/resource/Beverly_Watkins", "http://dbpedia.org/resource/Bhupinder_Singh_(musician)", "http://dbpedia.org/resource/Forrest_Kline", "http://dbpedia.org/resource/Francesca_Ancarola", "http://dbpedia.org/resource/Francesco_Buzzurro", "http://dbpedia.org/resource/Franciscus_Henri", "http://dbpedia.org/resource/Franco_Battiato", "http://dbpedia.org/resource/Frank_Bornemann", "http://dbpedia.org/resource/Frank_Farrell_(musician)", "http://dbpedia.org/resource/Frank_Ferera", "http://dbpedia.org/resource/Frank_Schildt", "http://dbpedia.org/resource/Frank_Weyzig", "http://dbpedia.org/resource/Frankie_Emerson", "http://dbpedia.org/resource/Fred_%22Sonic%22_Smith", "http://dbpedia.org/resource/Fred_Andrade", "http://dbpedia.org/resource/Fred_Estby", "http://dbpedia.org/resource/Fred_Holstein", "http://dbpedia.org/resource/Fred_Tackett", "http://dbpedia.org/resource/Freddie_Brown_(musician)", "http://dbpedia.org/resource/Freddie_Spruell", "http://dbpedia.org/resource/Freddy_Cannon", "http://dbpedia.org/resource/Freddy_Fender", "http://dbpedia.org/resource/Freddy_Quinn", "http://dbpedia.org/resource/Frederick_Noad", "http://dbpedia.org/resource/Fredrik_Johansson_(musician)", "http://dbpedia.org/resource/Freedo_(producer)", "http://dbpedia.org/resource/Frenchie_Davis", "http://dbpedia.org/resource/Fruteland_Jackson", "http://dbpedia.org/resource/Fr\u00e9d\u00e9ric_Leclercq", "http://dbpedia.org/resource/Fur_Dixon", "http://dbpedia.org/resource/Fursy_Teyssier", "http://dbpedia.org/resource/Gab_Chee_Kee", "http://dbpedia.org/resource/Gabino_Ezeiza", "http://dbpedia.org/resource/Gabrial_McNair", "http://dbpedia.org/resource/Gabriel_Brown", "http://dbpedia.org/resource/Gackt", "http://dbpedia.org/resource/Gareth_Sager", "http://dbpedia.org/resource/Garik_Sukachov", "http://dbpedia.org/resource/Garnet_Rogers", "http://dbpedia.org/resource/Garrett_Uhlenbrock", "http://dbpedia.org/resource/Garron_DuPree", "http://dbpedia.org/resource/Garry_Gary_Beers", "http://dbpedia.org/resource/Gary_Green_(musician)", "http://dbpedia.org/resource/Gary_Hoey", "http://dbpedia.org/resource/Gary_Lee_Conner", "http://dbpedia.org/resource/Gary_Primich", "http://dbpedia.org/resource/Gary_Richrath", "http://dbpedia.org/resource/Gary_Talley", "http://dbpedia.org/resource/Gary_Thain", "http://dbpedia.org/resource/Gary_Wehrkamp", "http://dbpedia.org/resource/Gary_Wilson_(musician)", "http://dbpedia.org/resource/Gaye_Adegbalola", "http://dbpedia.org/resource/Gayla_Drake", "http://dbpedia.org/resource/Gayla_Earlene", "http://dbpedia.org/resource/Geeshie_Wiley", "http://dbpedia.org/resource/Geir_Zahl", "http://dbpedia.org/resource/Gemma_Hayes", "http://dbpedia.org/resource/Gene_Taylor_(pianist)", "http://dbpedia.org/resource/Georg_H\u00f3lm", "http://dbpedia.org/resource/George_Gabriel", "http://dbpedia.org/resource/George_Kollias_(drummer)", "http://dbpedia.org/resource/George_McCorkle", "http://dbpedia.org/resource/Hal_Lindes", "http://dbpedia.org/resource/Hallgeir_Pedersen", "http://dbpedia.org/resource/Haluk_Levent", "http://dbpedia.org/resource/Hamid_Bouchnak", "http://dbpedia.org/resource/Hanae_(singer)", "http://dbpedia.org/resource/Hangi_Tavakoli", "http://dbpedia.org/resource/Hank_Marvin", "http://dbpedia.org/resource/Hank_Mizell", "http://dbpedia.org/resource/Hank_Monis", "http://dbpedia.org/resource/Hank_Wangford", "http://dbpedia.org/resource/Hannes_Grossmann", "http://dbpedia.org/resource/Hans_Bollands\u00e5s", "http://dbpedia.org/resource/Hans_Chew", "http://dbpedia.org/resource/Hans_Mathisen", "http://dbpedia.org/resource/Hans_Nilsson_(musician)", "http://dbpedia.org/resource/Hans_W\u00e4rmling", "http://dbpedia.org/resource/Hansford_Rowe_(musician)", "http://dbpedia.org/resource/Harald_N\u00e6vdal", "http://dbpedia.org/resource/Harmonica_Frank", "http://dbpedia.org/resource/Harris_Newman", "http://dbpedia.org/resource/Harry_Manx", "http://dbpedia.org/resource/Harry_Sacksioni", "http://dbpedia.org/resource/Hawksley_Workman", "http://dbpedia.org/resource/Bill_Coon", "http://dbpedia.org/resource/Bill_Nace", "http://dbpedia.org/resource/Bill_Ruppert", "http://dbpedia.org/resource/Bill_Taft", "http://dbpedia.org/resource/Billy_McLaughlin", "http://dbpedia.org/resource/Birchville_Cat_Motel", "http://dbpedia.org/resource/Chops_(music_producer)", "http://dbpedia.org/resource/Sam_Amidon", "http://dbpedia.org/resource/Sam_Coomes", "http://dbpedia.org/resource/Sam_Ellis_(songwriter)", "http://dbpedia.org/resource/Sam_Endicott", "http://dbpedia.org/resource/Sam_Fogarino", "http://dbpedia.org/resource/Sam_Outlaw", "http://dbpedia.org/resource/Sam_Prekop", "http://dbpedia.org/resource/Samara_Lubelski", "http://dbpedia.org/resource/Sami_Raatikainen", "http://dbpedia.org/resource/Sammy_Kershaw", "http://dbpedia.org/resource/Sammy_Lawhorn", "http://dbpedia.org/resource/Sandy_West", "http://dbpedia.org/resource/Sangtar", "http://dbpedia.org/resource/Craig_Fuller", "http://dbpedia.org/resource/Sylvain_Chauveau", "http://dbpedia.org/resource/S\u00e9rgio_Assad", "http://dbpedia.org/resource/S\u00f3ley", "http://dbpedia.org/resource/T-Model_Ford", "http://dbpedia.org/resource/Taka_Perry", "http://dbpedia.org/resource/Takafumi_Iwasaki", "http://dbpedia.org/resource/Takako_Minekawa", "http://dbpedia.org/resource/Takuro_(musician)", "http://dbpedia.org/resource/Takuya_(singer)", "http://dbpedia.org/resource/Tallan_Noble_Latz", "http://dbpedia.org/resource/Tao_Rodr\u00edguez-Seeger", "http://dbpedia.org/resource/Tapio_Wilska", "http://dbpedia.org/resource/Tara_Jane_O'Neil", "http://dbpedia.org/resource/Tasha_Baxter", "http://dbpedia.org/resource/Tasker_(producer)", "http://dbpedia.org/resource/Tatana_Sterba", "http://dbpedia.org/resource/Taylor_Jardine", "http://dbpedia.org/resource/Taylor_John_Williams", "http://dbpedia.org/resource/Taylor_Mitchell", "http://dbpedia.org/resource/Ted_Bogan", "http://dbpedia.org/resource/Ted_Daffan", "http://dbpedia.org/resource/Ted_Poley", "http://dbpedia.org/resource/Ted_Templeman", "http://dbpedia.org/resource/Teddy_Corpuz", "http://dbpedia.org/resource/Teddy_Diaz", "http://dbpedia.org/resource/Teddy_Nelson", "http://dbpedia.org/resource/Teemu_M\u00e4ntysaari", "http://dbpedia.org/resource/Teemu_Raimoranta", "http://dbpedia.org/resource/C\u00e9sar_Portillo_de_la_Luz", "http://dbpedia.org/resource/D'Arcy_Broderick", "http://dbpedia.org/resource/Darrin_Pfeiffer", "http://dbpedia.org/resource/Dave_Clark_(Canadian_musician)", "http://dbpedia.org/resource/Dave_Fridmann", "http://dbpedia.org/resource/Dave_Guard", "http://dbpedia.org/resource/Dave_Rick", "http://dbpedia.org/resource/Watermelon_Slim", "http://dbpedia.org/resource/Wayne_Massey", "http://dbpedia.org/resource/Webb_Wilder", "http://dbpedia.org/resource/Wes_Sharon", "http://dbpedia.org/resource/Wesley_Schultz", "http://dbpedia.org/resource/Wilbert_Harrison", "http://dbpedia.org/resource/Will_Mecum", "http://dbpedia.org/resource/Will_Z.", "http://dbpedia.org/resource/William_Anderson_(guitarist)", "http://dbpedia.org/resource/William_Faith", "http://dbpedia.org/resource/William_Gilmore_Weber", "http://dbpedia.org/resource/William_Harper_(composer)", "http://dbpedia.org/resource/William_Morrison_(director)", "http://dbpedia.org/resource/William_Orbit", "http://dbpedia.org/resource/Elisabeth_White", "http://dbpedia.org/resource/Elise_Testone", "http://dbpedia.org/resource/Marshall_Rohner", "http://dbpedia.org/resource/Ryan_Moore_(musician)", "http://dbpedia.org/resource/Scott_Morgan_(musician)", "http://dbpedia.org/resource/Tom_Rothrock", "http://dbpedia.org/resource/Karyu", "http://dbpedia.org/resource/Solorazaf", "http://dbpedia.org/resource/Vivek_Maddala", "http://dbpedia.org/resource/Madjid_Fahem", "http://dbpedia.org/resource/Mak_Grgi\u0107", "http://dbpedia.org/resource/Mohamed_Rouane", "http://dbpedia.org/resource/MonaLisa_Twins", "http://dbpedia.org/resource/Moumita_Tashrin_Nodi", "http://dbpedia.org/resource/Angel_Taylor", "http://dbpedia.org/resource/Angry_Anderson", "http://dbpedia.org/resource/Ani_Kyd", "http://dbpedia.org/resource/Anita_Tsoy", "http://dbpedia.org/resource/Ann_Curless", "http://dbpedia.org/resource/Anne_DeMarinis", "http://dbpedia.org/resource/Anne_Murray", "http://dbpedia.org/resource/Antal_Pusztai", "http://dbpedia.org/resource/Anthony_Drennan", "http://dbpedia.org/resource/Anthony_Paule", "http://dbpedia.org/resource/Anthony_Rossomando", "http://dbpedia.org/resource/Antoine_Dufour", "http://dbpedia.org/resource/Anton_Newcombe", "http://dbpedia.org/resource/Antonio_Breschi", "http://dbpedia.org/resource/Antonio_Olivari", "http://dbpedia.org/resource/Antonio_Rey", "http://dbpedia.org/resource/Antony_H\u00e4m\u00e4l\u00e4inen", "http://dbpedia.org/resource/Apolas_Lermi", "http://dbpedia.org/resource/Ara_Dinkjian", "http://dbpedia.org/resource/Arbee_Stidham", "http://dbpedia.org/resource/Archie_Edwards", "http://dbpedia.org/resource/Arkie_Shibley", "http://dbpedia.org/resource/Armando_Flores", "http://dbpedia.org/resource/Arno_Krabman", "http://dbpedia.org/resource/Aron_Strobel", "http://dbpedia.org/resource/Arqu\u00edmedes_Reyes", "http://dbpedia.org/resource/Elsten_Torres", "http://dbpedia.org/resource/Elvie_Thomas", "http://dbpedia.org/resource/Emancipator_(musician)", "http://dbpedia.org/resource/Emanuel_Ayvas", "http://dbpedia.org/resource/Emilio_Cueto", "http://dbpedia.org/resource/Emily_Ann_Roberts", "http://dbpedia.org/resource/Emily_Keener", "http://dbpedia.org/resource/Emmanuel_Espinosa", "http://dbpedia.org/resource/Endel_Rivers", "http://dbpedia.org/resource/Ender_Thomas", "http://dbpedia.org/resource/Erez_Safar", "http://dbpedia.org/resource/Eric_Erlandson", "http://dbpedia.org/resource/Eric_Herman_(musician)", "http://dbpedia.org/resource/Eric_Meyer_(musician)", "http://dbpedia.org/resource/Eric_Richter", "http://dbpedia.org/resource/Eric_Roche", "http://dbpedia.org/resource/Eric_Sardinas", "http://dbpedia.org/resource/Eric_Taylor_(musician)", "http://dbpedia.org/resource/Eric_Vandenberg", "http://dbpedia.org/resource/Eric_Weissberg", "http://dbpedia.org/resource/Erik_Brann", "http://dbpedia.org/resource/Erik_Hokkanen", "http://dbpedia.org/resource/Erik_Jacobsen", "http://dbpedia.org/resource/Erik_W\u00f8llo", "http://dbpedia.org/resource/Erin_Martin", "http://dbpedia.org/resource/Erkin_Abdulla", "http://dbpedia.org/resource/Erling_Wold", "http://dbpedia.org/resource/Ernest_McLean", "http://dbpedia.org/resource/Ernest_Ranglin", "http://dbpedia.org/resource/Ernie_Lancaster", "http://dbpedia.org/resource/Erol_Alkan", "http://dbpedia.org/resource/Errol_Holt", "http://dbpedia.org/resource/Esa_Holopainen", "http://dbpedia.org/resource/Espinoza_Paz", "http://dbpedia.org/resource/Etta_Baker", "http://dbpedia.org/resource/Eugene_H\u00fctz", "http://dbpedia.org/resource/Eugene_Kelly", "http://dbpedia.org/resource/Evan_Call", "http://dbpedia.org/resource/Evan_Frankfort", "http://dbpedia.org/resource/Evert_Taube", "http://dbpedia.org/resource/Andres_Levin", "http://dbpedia.org/resource/Andrew_Freeman_(musician)", "http://dbpedia.org/resource/Andrew_Hardin", "http://dbpedia.org/resource/Andrew_de_Torres", "http://dbpedia.org/resource/Gerard_Beljon", "http://dbpedia.org/resource/Gerard_Cousins", "http://dbpedia.org/resource/Gerardo_Vel\u00e1zquez", "http://dbpedia.org/resource/Geri_X", "http://dbpedia.org/resource/Gerry_Dialungana", "http://dbpedia.org/resource/Gerry_Hundt", "http://dbpedia.org/resource/Getter_(DJ)", "http://dbpedia.org/resource/Gian_Pyres", "http://dbpedia.org/resource/Gibby_Haynes", "http://dbpedia.org/resource/Gifton_Elias", "http://dbpedia.org/resource/Gil_Parris", "http://dbpedia.org/resource/Gilles_Valiquette", "http://dbpedia.org/resource/Ginger_Pooley", "http://dbpedia.org/resource/Girishh_G.", "http://dbpedia.org/resource/Giuliano_Modarelli", "http://dbpedia.org/resource/Glen_Ballard", "http://dbpedia.org/resource/Glen_Burtnik", "http://dbpedia.org/resource/Glenn_Goins", "http://dbpedia.org/resource/Glenn_Lyse", "http://dbpedia.org/resource/Glenn_Monroig", "http://dbpedia.org/resource/Glenn_Phillips_(guitarist)", "http://dbpedia.org/resource/Glenn_Richards", "http://dbpedia.org/resource/Gloria_Jessica", "http://dbpedia.org/resource/Goldie_Hill", "http://dbpedia.org/resource/Gordon_Haskell", "http://dbpedia.org/resource/Gordon_O'Brien", "http://dbpedia.org/resource/Gordon_Raphael", "http://dbpedia.org/resource/Gordon_Teoh", "http://dbpedia.org/resource/Goree_Carter", "http://dbpedia.org/resource/Gota_Nishidera", "http://dbpedia.org/resource/Arlie_Neaville", "http://dbpedia.org/resource/Marc_Belke", "http://dbpedia.org/resource/Marc_Byrd", "http://dbpedia.org/resource/Marc_Daubert", "http://dbpedia.org/resource/Marc_Lavoine", "http://dbpedia.org/resource/Marc_with_a_C", "http://dbpedia.org/resource/Marcie_Bolen", "http://dbpedia.org/resource/Marcie_Free", "http://dbpedia.org/resource/Marco_Katz", "http://dbpedia.org/resource/Marco_Minnemann", "http://dbpedia.org/resource/Marco_Oppedisano", "http://dbpedia.org/resource/Marcus_Henderson_(musician)", "http://dbpedia.org/resource/Marcus_Reeves", "http://dbpedia.org/resource/Marijohn_Wilkin", "http://dbpedia.org/resource/Mario_Escudero", "http://dbpedia.org/resource/Marion_Worth", "http://dbpedia.org/resource/Marios_Iliopoulos_(musician)", "http://dbpedia.org/resource/Marissa_Paternoster", "http://dbpedia.org/resource/Mark_Collins_(musician)", "http://dbpedia.org/resource/Mark_Crozer", "http://dbpedia.org/resource/Mark_Erelli", "http://dbpedia.org/resource/Mark_Greaney", "http://dbpedia.org/resource/Mark_Hollis", "http://dbpedia.org/resource/Mark_Hummel", "http://dbpedia.org/resource/Mark_Jansen", "http://dbpedia.org/resource/Mark_Knopfler", "http://dbpedia.org/resource/Mark_Olf", "http://dbpedia.org/resource/Mark_Pender", "http://dbpedia.org/resource/Mark_Pickerel", "http://dbpedia.org/resource/Mark_Spiro", "http://dbpedia.org/resource/Mark_Stewart_(American_musician)", "http://dbpedia.org/resource/Mark_Sultan", "http://dbpedia.org/resource/Mark_Tedder", "http://dbpedia.org/resource/Mark_Thwaite", "http://dbpedia.org/resource/Marlhy_Murphy", "http://dbpedia.org/resource/Mars_Bonfire", "http://dbpedia.org/resource/Marshall_Grant", "http://dbpedia.org/resource/Martin_Axenrot", "http://dbpedia.org/resource/Martin_Courtney", "http://dbpedia.org/resource/Martin_Johnson_(musician)", "http://dbpedia.org/resource/Martin_Lee_(singer)", "http://dbpedia.org/resource/Martin_Luther_McCoy", "http://dbpedia.org/resource/Martin_Sweet", "http://dbpedia.org/resource/Martti_Saarinen", "http://dbpedia.org/resource/Marty_Casey", "http://dbpedia.org/resource/Martyn_P._Casey", "http://dbpedia.org/resource/Marykate_O'Neil", "http://dbpedia.org/resource/Masaaki_Kishibe", "http://dbpedia.org/resource/Masanori_Mark_Christianson", "http://dbpedia.org/resource/Masataka_Matsutoya", "http://dbpedia.org/resource/Masaya_Matsuura", "http://dbpedia.org/resource/Piggy_D.", "http://dbpedia.org/resource/Pino_Rucher", "http://dbpedia.org/resource/Pokey_LaFarge", "http://dbpedia.org/resource/Pontus_Norgren", "http://dbpedia.org/resource/Popa_Chubby", "http://dbpedia.org/resource/Preston_Shannon", "http://dbpedia.org/resource/Prince_Fox", "http://dbpedia.org/resource/Tender_Forever", "http://dbpedia.org/resource/Terje_Bakken", "http://dbpedia.org/resource/Terje_Gewelt", "http://dbpedia.org/resource/Terje_Winterst\u00f8_R\u00f8thing", "http://dbpedia.org/resource/Terra_Naomi", "http://dbpedia.org/resource/Terry_Garland", "http://dbpedia.org/resource/Terry_Jacks", "http://dbpedia.org/resource/Terry_Kelly_(singer)", "http://dbpedia.org/resource/Terry_Robb", "http://dbpedia.org/resource/Terry_Taylor_(musician)", "http://dbpedia.org/resource/Texas_Johnny_Brown", "http://dbpedia.org/resource/Texas_Ruby", "http://dbpedia.org/resource/Thanksgiving_(band)", "http://dbpedia.org/resource/The_Butler_Twins", "http://dbpedia.org/resource/Dave_van_Vuuren", "http://dbpedia.org/resource/David_Bloom_(musician)", "http://dbpedia.org/resource/David_Daniell_(musician)", "http://dbpedia.org/resource/David_Grier", "http://dbpedia.org/resource/David_Grissom", "http://dbpedia.org/resource/U.P._Wilson", "http://dbpedia.org/resource/Uli_Jon_Roth", "http://dbpedia.org/resource/Uri_Frost", "http://dbpedia.org/resource/Little_Buddy_Doyle", "http://dbpedia.org/resource/Ney_Dimaculangan", "http://dbpedia.org/resource/Peter_Deary", "http://dbpedia.org/resource/Rom_Di_Prisco", "http://dbpedia.org/resource/Scott_Devendorf", "http://dbpedia.org/resource/Seton_Daunt", "http://dbpedia.org/resource/Hideki_Matsushige", "http://dbpedia.org/resource/Jonny_Maudling", "http://dbpedia.org/resource/Mark_Warner_(guitarist)", "http://dbpedia.org/resource/Martin_Larsson_(guitarist)", "http://dbpedia.org/resource/Martine_Locke", "http://dbpedia.org/resource/The_Mammals", "http://dbpedia.org/resource/Paul_Clark_(Christian_musician)", "http://dbpedia.org/resource/Paul_Neville_(musician)", "http://dbpedia.org/resource/Richard_Pleasance", "http://dbpedia.org/resource/Valor_Kand", "http://dbpedia.org/resource/Vasco_Martins", "http://dbpedia.org/resource/Louis_Washington", "http://dbpedia.org/resource/Greg_Lisher", "http://dbpedia.org/resource/Hugh_Metcalfe", "http://dbpedia.org/resource/Lance_Robertson", "http://dbpedia.org/resource/Jake_Xerxes_Fussell", "http://dbpedia.org/resource/Jeff_Suffering", "http://dbpedia.org/resource/Jeffrey_Frederick", "http://dbpedia.org/resource/Jenn_Champion", "http://dbpedia.org/resource/Joe_Grushecky", "http://dbpedia.org/resource/Nic_Offer", "http://dbpedia.org/resource/Lana_Scolaro", "http://dbpedia.org/resource/Pional", "http://dbpedia.org/resource/Booker_T._Jones", "http://dbpedia.org/resource/Boon_Gould", "http://dbpedia.org/resource/Boris_Pelekh", "http://dbpedia.org/resource/Bosco_Mann", "http://dbpedia.org/resource/Boudewijn_Vincent_Bonebakker", "http://dbpedia.org/resource/Boyd_Gilmore", "http://dbpedia.org/resource/Brad_Barr", "http://dbpedia.org/resource/Brad_Gillis", "http://dbpedia.org/resource/Brad_Kent", "http://dbpedia.org/resource/Brad_Laner", "http://dbpedia.org/resource/Brad_Myers_(guitarist)", "http://dbpedia.org/resource/Bradley_Grace", "http://dbpedia.org/resource/Brainbug", "http://dbpedia.org/resource/Brandon_Boyd", "http://dbpedia.org/resource/Brendan_Canning", "http://dbpedia.org/resource/Brendan_Maclean", "http://dbpedia.org/resource/Brendan_Perry", "http://dbpedia.org/resource/Brett_Dennen", "http://dbpedia.org/resource/Brett_Detar", "http://dbpedia.org/resource/Brett_Nelson", "http://dbpedia.org/resource/Brian_Chase", "http://dbpedia.org/resource/Brian_Henneman", "http://dbpedia.org/resource/Brian_Hughes_(musician)", "http://dbpedia.org/resource/Brian_James_(guitarist)", "http://dbpedia.org/resource/Brian_Klemm", "http://dbpedia.org/resource/Brian_Lopez_(musician)", "http://dbpedia.org/resource/Brian_MacLeod_(Canadian_musician)", "http://dbpedia.org/resource/Brian_O'Connell_(musician)", "http://dbpedia.org/resource/Britt_Daniel", "http://dbpedia.org/resource/Bruce_Arnold_(jazz)", "http://dbpedia.org/resource/Bruce_Bouillet", "http://dbpedia.org/resource/Bruce_Cameron_(guitarist)", "http://dbpedia.org/resource/Bruce_Carroll", "http://dbpedia.org/resource/Bruce_Driscoll", "http://dbpedia.org/resource/Bruce_Hall_(musician)", "http://dbpedia.org/resource/Bruce_Turgon", "http://dbpedia.org/resource/Bruce_Watson_(Scottish_guitarist)", "http://dbpedia.org/resource/Bruce_Woolley", "http://dbpedia.org/resource/Bruno_Kova\u010di\u0107", "http://dbpedia.org/resource/Brush_Shiels", "http://dbpedia.org/resource/Bryan_Gregory", "http://dbpedia.org/resource/Bryan_MacLean", "http://dbpedia.org/resource/Bryan_Sutton", "http://dbpedia.org/resource/Bryce_Dessner", "http://dbpedia.org/resource/Bryn_Haworth", "http://dbpedia.org/resource/Bud_Scott", "http://dbpedia.org/resource/Adam_Donovan", "http://dbpedia.org/resource/Adam_Hamilton_(musician)", "http://dbpedia.org/resource/Adam_Phillips_(musician)", "http://dbpedia.org/resource/Adam_Ross_(musician)", "http://dbpedia.org/resource/Ayinde_Bakare", "http://dbpedia.org/resource/Jack_de_Keyzer", "http://dbpedia.org/resource/Jacquire_King", "http://dbpedia.org/resource/Jah_Jerry_Haynes", "http://dbpedia.org/resource/Jahn_Teigen", "http://dbpedia.org/resource/Jai_Uttal", "http://dbpedia.org/resource/Jake_Andrews", "http://dbpedia.org/resource/Jake_Clemons", "http://dbpedia.org/resource/Jake_Eckert", "http://dbpedia.org/resource/Jake_Hoot", "http://dbpedia.org/resource/Jake_Rodenhouse", "http://dbpedia.org/resource/Jake_Shears", "http://dbpedia.org/resource/James_Armstrong_(musician)", "http://dbpedia.org/resource/James_Blackshaw", "http://dbpedia.org/resource/James_Blundell_(singer)", "http://dbpedia.org/resource/James_Dean_Bradfield", "http://dbpedia.org/resource/James_Durbin_(singer)", "http://dbpedia.org/resource/James_Edward_Barker", "http://dbpedia.org/resource/James_Fearnley", "http://dbpedia.org/resource/James_Genus", "http://dbpedia.org/resource/James_Hutchinson_(musician)", "http://dbpedia.org/resource/James_Kottak", "http://dbpedia.org/resource/James_Litherland", "http://dbpedia.org/resource/James_McCartney", "http://dbpedia.org/resource/James_Stroud", "http://dbpedia.org/resource/James_Williamson_(musician)", "http://dbpedia.org/resource/Jamie_Arentzen", "http://dbpedia.org/resource/Jamie_Morrison", "http://dbpedia.org/resource/Jamie_Stewart_(bassist)", "http://dbpedia.org/resource/Jan_Akkerman", "http://dbpedia.org/resource/Jan_Koemmet", "http://dbpedia.org/resource/Jan_Kuehnemund", "http://dbpedia.org/resource/Jan_Rot", "http://dbpedia.org/resource/Janelle_Arthur", "http://dbpedia.org/resource/Janet_Gardner", "http://dbpedia.org/resource/Janet_Weiss", "http://dbpedia.org/resource/Janko_Nilovi\u0107", "http://dbpedia.org/resource/Janove_Ottesen", "http://dbpedia.org/resource/Jared_Slingerland", "http://dbpedia.org/resource/Jari_M\u00e4enp\u00e4\u00e4", "http://dbpedia.org/resource/Jason_Freese", "http://dbpedia.org/resource/Jason_Loewenstein", "http://dbpedia.org/resource/Jason_Schimmel", "http://dbpedia.org/resource/Jason_Solowsky", "http://dbpedia.org/resource/Jason_Stollsteimer", "http://dbpedia.org/resource/Jason_Webley", "http://dbpedia.org/resource/Jason_Wilber", "http://dbpedia.org/resource/Javiera_Mena", "http://dbpedia.org/resource/Jay_Owens_(musician)", "http://dbpedia.org/resource/Jay_Sparrow", "http://dbpedia.org/resource/Jay_Yuenger", "http://dbpedia.org/resource/Jaymay", "http://dbpedia.org/resource/Jean-Fran\u00e7ois_Dagenais", "http://dbpedia.org/resource/Jean-Paul_Samputu", "http://dbpedia.org/resource/Jean_Marie_Rebischung", "http://dbpedia.org/resource/Jed_Simon", "http://dbpedia.org/resource/Kasun_Kalhara", "http://dbpedia.org/resource/Kate_Alexa", "http://dbpedia.org/resource/Kate_Schutt", "http://dbpedia.org/resource/Kathi_Wilcox", "http://dbpedia.org/resource/Kathryn_Calder", "http://dbpedia.org/resource/Kathy_Mar", "http://dbpedia.org/resource/Katie_Rox", "http://dbpedia.org/resource/Kaveh_Afagh", "http://dbpedia.org/resource/Kay_Hanley", "http://dbpedia.org/resource/Kaya_Stewart", "http://dbpedia.org/resource/Kayvan_Mirhadi", "http://dbpedia.org/resource/Kazumi_Totaka", "http://dbpedia.org/resource/Keith_Anderson", "http://dbpedia.org/resource/Keith_Gattis", "http://dbpedia.org/resource/Keith_Howland", "http://dbpedia.org/resource/Kelly_Gray_(musician)", "http://dbpedia.org/resource/Kelly_Richey", "http://dbpedia.org/resource/Ken_Fleming_(musician)", "http://dbpedia.org/resource/Ken_Tamplin", "http://dbpedia.org/resource/Kendall_Schmidt", "http://dbpedia.org/resource/Kenji_Yamamoto_(composer,_born_1964)", "http://dbpedia.org/resource/Kenneth_Carllile", "http://dbpedia.org/resource/Kenneth_Young_(Scottish_composer)", "http://dbpedia.org/resource/Kenny_Beats", "http://dbpedia.org/resource/Kenny_Brown_(guitarist)", "http://dbpedia.org/resource/Kenny_H\u00e5kansson", "http://dbpedia.org/resource/Kenny_Lovelace", "http://dbpedia.org/resource/Kenny_Neal", "http://dbpedia.org/resource/Kenshi_Yonezu", "http://dbpedia.org/resource/Kensuke_Kita", "http://dbpedia.org/resource/Kent_Henry", "http://dbpedia.org/resource/Kenta_(musician)", "http://dbpedia.org/resource/Kerri_Woelke", "http://dbpedia.org/resource/Kerryn_Tolhurst", "http://dbpedia.org/resource/Kev_Carmody", "http://dbpedia.org/resource/Kevin_Cronin", "http://dbpedia.org/resource/Kevin_Drumm", "http://dbpedia.org/resource/Kevin_Ross_(musician)", "http://dbpedia.org/resource/Kevin_Rudolf", "http://dbpedia.org/resource/Khyal_Muhammad", "http://dbpedia.org/resource/Kid_Ramos", "http://dbpedia.org/resource/Kieren_Webster", "http://dbpedia.org/resource/Kiko_Zambianchi", "http://dbpedia.org/resource/Kim_Tae-won", "http://dbpedia.org/resource/Kina_Grannis", "http://dbpedia.org/resource/Bob_Mayo", "http://dbpedia.org/resource/Broom_Bezzums", "http://dbpedia.org/resource/Mason_Ruffner", "http://dbpedia.org/resource/Mason_Williams", "http://dbpedia.org/resource/Matan_Cohen", "http://dbpedia.org/resource/Mathias_Duplessy", "http://dbpedia.org/resource/Mathias_F\u00e4rm", "http://dbpedia.org/resource/Mathias_Malzieu", "http://dbpedia.org/resource/Mats_Ronander", "http://dbpedia.org/resource/Matt_%22Guitar%22_Murphy", "http://dbpedia.org/resource/Matt_Bachand", "http://dbpedia.org/resource/Matt_Bauder", "http://dbpedia.org/resource/Matt_Bronleewe", "http://dbpedia.org/resource/Matt_Frey", "http://dbpedia.org/resource/Matt_Friction", "http://dbpedia.org/resource/Matt_Guillory", "http://dbpedia.org/resource/Matt_Hunter_(singer)", "http://dbpedia.org/resource/Matt_McCoy_(worship_leader)", "http://dbpedia.org/resource/Matt_Noveskey", "http://dbpedia.org/resource/Matt_Odmark", "http://dbpedia.org/resource/Matt_Oliver", "http://dbpedia.org/resource/Matthew_Davidson", "http://dbpedia.org/resource/Matthias_Jabs", "http://dbpedia.org/resource/Matthieu_Hartley", "http://dbpedia.org/resource/Mattias_Alkberg", "http://dbpedia.org/resource/Maurice_Coyne", "http://dbpedia.org/resource/Maurice_Starr", "http://dbpedia.org/resource/Mauro_Pawlowski", "http://dbpedia.org/resource/Mav_Stevens", "http://dbpedia.org/resource/Max_Carl", "http://dbpedia.org/resource/Maxwell_Street_Jimmy_Davis", "http://dbpedia.org/resource/Mbah_Surip", "http://dbpedia.org/resource/Mean_Mary", "http://dbpedia.org/resource/Meg_Duffy", "http://dbpedia.org/resource/Mehdi_Yarrahi", "http://dbpedia.org/resource/Mehmet_Erdem", "http://dbpedia.org/resource/Meja", "http://dbpedia.org/resource/Mel_Bay", "http://dbpedia.org/resource/Melinda_Caroll", "http://dbpedia.org/resource/Melvin_Franklin", "http://dbpedia.org/resource/Merle_Watson", "http://dbpedia.org/resource/Camille_Davila", "http://dbpedia.org/resource/Charles_L._Johnson", "http://dbpedia.org/resource/Rainhard_Fendrich", "http://dbpedia.org/resource/Rajko_Koji\u0107", "http://dbpedia.org/resource/Ralf_H\u00fctter", "http://dbpedia.org/resource/Ralph_Covert", "http://dbpedia.org/resource/Ralph_Jezzard", "http://dbpedia.org/resource/Ralph_Murphy_(musician)", "http://dbpedia.org/resource/Ralph_Santolla", "http://dbpedia.org/resource/Ramblin'_Thomas", "http://dbpedia.org/resource/Randall_Bewley", "http://dbpedia.org/resource/Randy_Crouch", "http://dbpedia.org/resource/Randy_Hansen", "http://dbpedia.org/resource/Randy_Jackson_(Zebra)", "http://dbpedia.org/resource/Randy_Owen", "http://dbpedia.org/resource/Randy_Sparks", "http://dbpedia.org/resource/Randy_Thomas_(musician)", "http://dbpedia.org/resource/Rappin'_Granny", "http://dbpedia.org/resource/Ray_Benson", "http://dbpedia.org/resource/Ray_Flacke", "http://dbpedia.org/resource/Ray_Suen", "http://dbpedia.org/resource/Rayito", "http://dbpedia.org/resource/Raymund_Marasigan", "http://dbpedia.org/resource/Red_Murrell", "http://dbpedia.org/resource/Redd_Volkaert", "http://dbpedia.org/resource/Reece_Mastin", "http://dbpedia.org/resource/Reed_Mathis", "http://dbpedia.org/resource/Reeves_Gabrels", "http://dbpedia.org/resource/Reggie_Lucas", "http://dbpedia.org/resource/Reggie_Young", "http://dbpedia.org/resource/Renato_Teixeira", "http://dbpedia.org/resource/Rene_Van_Verseveld", "http://dbpedia.org/resource/Reni_(musician)", "http://dbpedia.org/resource/Ren\u00e9_Aubry", "http://dbpedia.org/resource/Ren\u00e9_Berg", "http://dbpedia.org/resource/Ren\u00e9_Hall", "http://dbpedia.org/resource/Ren\u00e9_Rutten", "http://dbpedia.org/resource/Rex_Griffin", "http://dbpedia.org/resource/Rex_Smith", "http://dbpedia.org/resource/The_Doubleclicks", "http://dbpedia.org/resource/The_Sick-Leaves", "http://dbpedia.org/resource/The_Voluntary_Butler_Scheme", "http://dbpedia.org/resource/Emil_Werstler", "http://dbpedia.org/resource/Kurt_Ralske", "http://dbpedia.org/resource/Margaret_Fiedler_McGinnis", "http://dbpedia.org/resource/Jeff_Holdsworth", "http://dbpedia.org/resource/Ivan_Sekyra", "http://dbpedia.org/resource/James_Poyser", "http://dbpedia.org/resource/Jamison_Covington", "http://dbpedia.org/resource/Mark_del_Castillo", "http://dbpedia.org/resource/Peter_Mengede", "http://dbpedia.org/resource/Wendy_Woo", "http://dbpedia.org/resource/Lillie_Mae", "http://dbpedia.org/resource/Sara_Curruchich", "http://dbpedia.org/resource/A._C._Newman", "http://dbpedia.org/resource/Nikolo_Kotzev", "http://dbpedia.org/resource/Nineteen85", "http://dbpedia.org/resource/Nino_Alejandro", "http://dbpedia.org/resource/Nito_Mestre", "http://dbpedia.org/resource/Ni\u00f1o_Josele", "http://dbpedia.org/resource/Noel_Haggard", "http://dbpedia.org/resource/Nokie_Edwards", "http://dbpedia.org/resource/Nora_O'Connor", "http://dbpedia.org/resource/Norihiko_Hibino", "http://dbpedia.org/resource/Norma_Tanega", "http://dbpedia.org/resource/Norman_Bedard", "http://dbpedia.org/resource/G\u00fcltekin_Kaan", "http://dbpedia.org/resource/Hannes_Coetzee", "http://dbpedia.org/resource/Jason_Gobel", "http://dbpedia.org/resource/Jeff_Greinke", "http://dbpedia.org/resource/Hoodlum_Priest_(musician)", "http://dbpedia.org/resource/Ian_Hultquist", "http://dbpedia.org/resource/Jan_Hellriegel", "http://dbpedia.org/resource/Peter_Holmstr\u00f6m", "http://dbpedia.org/resource/Laura_Carter_(musician)", "http://dbpedia.org/resource/Laura_Hall_(musician)", "http://dbpedia.org/resource/Lorn_(musician)", "http://dbpedia.org/resource/Jonathan_Rado", "http://dbpedia.org/resource/Randy_Murray", "http://dbpedia.org/resource/Ray_Chamberlain_(musician)", "http://dbpedia.org/resource/Ray_White", "http://dbpedia.org/resource/Pat_McLaughlin", "http://dbpedia.org/resource/Sharon_Knight", "http://dbpedia.org/resource/Rob_Benvie", "http://dbpedia.org/resource/The_Black_Ryder", "http://dbpedia.org/resource/Mark_Orton", "http://dbpedia.org/resource/Noah_Henson", "http://dbpedia.org/resource/Peter_Zirschky", "http://dbpedia.org/resource/Lori_Linstruth", "http://dbpedia.org/resource/Samuli_Ponsimaa", "http://dbpedia.org/resource/Matt_Nasir", "http://dbpedia.org/resource/Stephen_Carroll", "http://dbpedia.org/resource/Roxanne_Tataei", "http://dbpedia.org/resource/Tony_Flynn", "http://dbpedia.org/resource/Clara_van_Wel", "http://dbpedia.org/resource/Clare_Bowditch", "http://dbpedia.org/resource/Clarence_Garlow", "http://dbpedia.org/resource/Clarence_White", "http://dbpedia.org/resource/Clark_Beckham", "http://dbpedia.org/resource/Claude_Coleman_Jr.", "http://dbpedia.org/resource/Claudio_Valenzuela", "http://dbpedia.org/resource/Claus_Asmussen", "http://dbpedia.org/resource/Claus_Norreen", "http://dbpedia.org/resource/Clem_Clempson", "http://dbpedia.org/resource/Clifton_Hyde", "http://dbpedia.org/resource/Clint_Mansell", "http://dbpedia.org/resource/Clive_Gregson", "http://dbpedia.org/resource/Coco_Montoya", "http://dbpedia.org/resource/Coco_Schumann", "http://dbpedia.org/resource/Cody_Votolato", "http://dbpedia.org/resource/Cody_Wood", "http://dbpedia.org/resource/Colin_C._Allrich", "http://dbpedia.org/resource/Colin_Frangicetto", "http://dbpedia.org/resource/Colin_Marston", "http://dbpedia.org/resource/Congorock", "http://dbpedia.org/resource/Conny_Bloom", "http://dbpedia.org/resource/Cool_John_Ferguson", "http://dbpedia.org/resource/Coot_Grant", "http://dbpedia.org/resource/Cootie_Stark", "http://dbpedia.org/resource/Alfredo_Ortiz", "http://dbpedia.org/resource/Ali_Azimi", "http://dbpedia.org/resource/Alice_Gerrard", "http://dbpedia.org/resource/Almighty_Defenders", "http://dbpedia.org/resource/Amor_Belhom_Duo", "http://dbpedia.org/resource/Amund_Svensson", "http://dbpedia.org/resource/Attlas", "http://dbpedia.org/resource/John_Jennings_(musician)", "http://dbpedia.org/resource/John_Kay_(musician)", "http://dbpedia.org/resource/John_Konesky", "http://dbpedia.org/resource/John_Leventhal", "http://dbpedia.org/resource/John_Lev\u00e9n", "http://dbpedia.org/resource/John_Lilley", "http://dbpedia.org/resource/John_Lloyd_Taylor", "http://dbpedia.org/resource/John_Lombardo", "http://dbpedia.org/resource/John_McGeoch", "http://dbpedia.org/resource/John_Moore_(British_musician)", "http://dbpedia.org/resource/John_P._Varkey", "http://dbpedia.org/resource/John_Popper", "http://dbpedia.org/resource/John_Powell_(film_composer)", "http://dbpedia.org/resource/John_Sheahan", "http://dbpedia.org/resource/John_Squire", "http://dbpedia.org/resource/John_Starling_(musician)", "http://dbpedia.org/resource/John_Walker_(musician)", "http://dbpedia.org/resource/John_Whynot", "http://dbpedia.org/resource/John_Zwetsloot", "http://dbpedia.org/resource/Johnnie_Bassett", "http://dbpedia.org/resource/Johnnie_Dee", "http://dbpedia.org/resource/Johnny_A.", "http://dbpedia.org/resource/Johnny_B._Moore", "http://dbpedia.org/resource/Johnny_Echols", "http://dbpedia.org/resource/Johnny_Fuller_(musician)", "http://dbpedia.org/resource/Johnny_Gioeli", "http://dbpedia.org/resource/Johnny_Goudie", "http://dbpedia.org/resource/Johnny_Heartsman", "http://dbpedia.org/resource/Johnny_Hickman", "http://dbpedia.org/resource/Johnny_Horton", "http://dbpedia.org/resource/Johnny_Laws", "http://dbpedia.org/resource/Johnny_Lee_(singer)", "http://dbpedia.org/resource/Johnny_Moeller", "http://dbpedia.org/resource/Johnny_Nicholas", "http://dbpedia.org/resource/Johnny_Rawls", "http://dbpedia.org/resource/Johnny_Rod", "http://dbpedia.org/resource/Jon_Auer", "http://dbpedia.org/resource/Jon_Brion", "http://dbpedia.org/resource/Jon_Fratelli", "http://dbpedia.org/resource/Jon_Klein_(musician)", "http://dbpedia.org/resource/Jon_Lajoie", "http://dbpedia.org/resource/Jon_McClure", "http://dbpedia.org/resource/Jon_Sholle", "http://dbpedia.org/resource/Jon_Siebels", "http://dbpedia.org/resource/Jon_Toogood", "http://dbpedia.org/resource/Jonas_Bjerre", "http://dbpedia.org/resource/Jonas_Fjeld", "http://dbpedia.org/resource/Jonathan_Florencio", "http://dbpedia.org/resource/Jonathan_Richman", "http://dbpedia.org/resource/Jonny_Lang", "http://dbpedia.org/resource/Jonny_Wickersham", "http://dbpedia.org/resource/Jono_El_Grande", "http://dbpedia.org/resource/Jordan_James_Reyes", "http://dbpedia.org/resource/Josef_Jan\u00ed\u010dek", "http://dbpedia.org/resource/Joseph_Brent", "http://dbpedia.org/resource/Joseph_E-Shine_Mizrachi", "http://dbpedia.org/resource/Joseph_Genaro", "http://dbpedia.org/resource/Joseph_Mount", "http://dbpedia.org/resource/Joseph_Spence_(musician)", "http://dbpedia.org/resource/Josh_Gracin", "http://dbpedia.org/resource/Josh_Graves", "http://dbpedia.org/resource/Josh_Klinghoffer", "http://dbpedia.org/resource/Josh_Leo", "http://dbpedia.org/resource/Josh_Portman", "http://dbpedia.org/resource/Josh_Ritter", "http://dbpedia.org/resource/Josh_Wilson_(musician)", "http://dbpedia.org/resource/Jos\u00e9_Antonio_Rodr\u00edguez_(musician)", "http://dbpedia.org/resource/Jos\u00e9_Ayerve", "http://dbpedia.org/resource/Jos\u00e9_Nogueras", "http://dbpedia.org/resource/Joy_Sarkar", "http://dbpedia.org/resource/Juan_Aguirre", "http://dbpedia.org/resource/Juan_Calleros", "http://dbpedia.org/resource/Juan_Cirerol", "http://dbpedia.org/resource/Juan_Manuel_Ca\u00f1izares", "http://dbpedia.org/resource/Juan_Mart\u00edn", "http://dbpedia.org/resource/Judy_Rodman", "http://dbpedia.org/resource/Jukka_Tolonen", "http://dbpedia.org/resource/Jules_De_Martino", "http://dbpedia.org/resource/Julia_Nunes", "http://dbpedia.org/resource/Santiago_Dobles", "http://dbpedia.org/resource/Santosh_Joshi", "http://dbpedia.org/resource/Saori_Atsumi", "http://dbpedia.org/resource/Sarah_Martin_(musician)", "http://dbpedia.org/resource/Sarmad_Abdul_Ghafoor", "http://dbpedia.org/resource/Sascha_Paeth", "http://dbpedia.org/resource/Sasha_Boole", "http://dbpedia.org/resource/Satsuki_(musician)", "http://dbpedia.org/resource/Savannah_Welch", "http://dbpedia.org/resource/Saw_Bwe_Hmu", "http://dbpedia.org/resource/Scot_Coogan", "http://dbpedia.org/resource/Scott_Blasey", "http://dbpedia.org/resource/Scott_Borland", "http://dbpedia.org/resource/Scott_Danough", "http://dbpedia.org/resource/Scott_Ellison_(musician)", "http://dbpedia.org/resource/Scott_Kannberg", "http://dbpedia.org/resource/Scott_Shiflett", "http://dbpedia.org/resource/Scott_Sorry", "http://dbpedia.org/resource/Scott_Thurston", "http://dbpedia.org/resource/Sead_Lipova\u010da", "http://dbpedia.org/resource/Seamus_Kennedy_(singer)", "http://dbpedia.org/resource/Sean_Costello", "http://dbpedia.org/resource/Sean_Lakeman", "http://dbpedia.org/resource/Sean_Mackin_(musician)", "http://dbpedia.org/resource/Sean_Malone", "http://dbpedia.org/resource/Sean_O'Hagan", "http://dbpedia.org/resource/Sebastian_Krys", "http://dbpedia.org/resource/Selina_Martin_(musician)", "http://dbpedia.org/resource/Selma_Oxor", "http://dbpedia.org/resource/Sepand_Samzadeh", "http://dbpedia.org/resource/Sergey_Mavrin", "http://dbpedia.org/resource/Sergio_Franchi", "http://dbpedia.org/resource/Sergio_Vall\u00edn", "http://dbpedia.org/resource/Faton_Macula", "http://dbpedia.org/resource/Giannis_Tatasopoulos", "http://dbpedia.org/resource/J._Robbins", "http://dbpedia.org/resource/Josh_Cunningham", "http://dbpedia.org/resource/Partha_Barua", "http://dbpedia.org/resource/Larry_Reinhardt", "http://dbpedia.org/resource/Marco_Sartor", "http://dbpedia.org/resource/It's_Jo_and_Danny", "http://dbpedia.org/resource/Jim_Klein", "http://dbpedia.org/resource/Shane_Gallagher", "http://dbpedia.org/resource/Lukas_Simonis", "http://dbpedia.org/resource/Jim_Keller", "http://dbpedia.org/resource/Jim_Stacey", "http://dbpedia.org/resource/Jimmy_D'Anda", "http://dbpedia.org/resource/Jude_Cowan_Montague", "http://dbpedia.org/resource/Walter_Roland", "http://dbpedia.org/resource/Marcus_Hamblett", "http://dbpedia.org/resource/Matt_Elliott_(musician)", "http://dbpedia.org/resource/Slav_Simanic", "http://dbpedia.org/resource/Owen_Temple", "http://dbpedia.org/resource/Julian_Mandrake", "http://dbpedia.org/resource/Kim_Ljung", "http://dbpedia.org/resource/MiKKa", "http://dbpedia.org/resource/Michael_Feuerstack", "http://dbpedia.org/resource/Baaziz", "http://dbpedia.org/resource/Babis_Stokas", "http://dbpedia.org/resource/Baby_Tate", "http://dbpedia.org/resource/Bagher_Moazen", "http://dbpedia.org/resource/Balawan", "http://dbpedia.org/resource/Barbara_Manning", "http://dbpedia.org/resource/Barrett_Baber", "http://dbpedia.org/resource/Barry_Allen_(musician)", "http://dbpedia.org/resource/Barry_Sless", "http://dbpedia.org/resource/Barry_Sparks", "http://dbpedia.org/resource/Bart_Ramsey", "http://dbpedia.org/resource/Bar\u0131\u015f_Akarsu", "http://dbpedia.org/resource/Bashful_Brother_Oswald", "http://dbpedia.org/resource/Andy_LeMaster", "http://dbpedia.org/resource/Inge_Johansson", "http://dbpedia.org/resource/Ingo_Pohlmann", "http://dbpedia.org/resource/Ioan_Gyuri_Pascu", "http://dbpedia.org/resource/Ira_Black_(musician)", "http://dbpedia.org/resource/Irina_Kulikova_(guitarist)", "http://dbpedia.org/resource/Isaac_Brock_(musician)", "http://dbpedia.org/resource/Ivan_Ozhogin", "http://dbpedia.org/resource/Ivar_Bj\u00f8rnson", "http://dbpedia.org/resource/Ivar_de_Graaf", "http://dbpedia.org/resource/Iyad_Rimawi", "http://dbpedia.org/resource/J.J._Malone", "http://dbpedia.org/resource/J._B._Hutto", "http://dbpedia.org/resource/JW-Jones", "http://dbpedia.org/resource/Jack_Jersey", "http://dbpedia.org/resource/Jack_Owens_(blues_singer)", "http://dbpedia.org/resource/Mitsuya_Kurokawa", "http://dbpedia.org/resource/Moacir_Santos", "http://dbpedia.org/resource/Mohammad_Ridwan_Hafiedz", "http://dbpedia.org/resource/Mondine_Garcia", "http://dbpedia.org/resource/Moody_Jones", "http://dbpedia.org/resource/Morley_Bartnoff", "http://dbpedia.org/resource/Morrisson_(singer)", "http://dbpedia.org/resource/Morten_Abel", "http://dbpedia.org/resource/Morten_Bergeton_Iversen", "http://dbpedia.org/resource/Moses_Stone", "http://dbpedia.org/resource/Mosh_Ben-Ari", "http://dbpedia.org/resource/Mugison", "http://dbpedia.org/resource/Murray_Cook", "http://dbpedia.org/resource/Mylon_LeFevre", "http://dbpedia.org/resource/N.O._Joe", "http://dbpedia.org/resource/Nanae_Fujiwara", "http://dbpedia.org/resource/Nano_Stern", "http://dbpedia.org/resource/Naoki_Maeda_(composer)", "http://dbpedia.org/resource/Natalia_Contesse", "http://dbpedia.org/resource/Natalia_Lafourcade", "http://dbpedia.org/resource/Natalie_McCool", "http://dbpedia.org/resource/Nate_Newton_(musician)", "http://dbpedia.org/resource/Nathan_Connolly", "http://dbpedia.org/resource/Cheb_Kader", "http://dbpedia.org/resource/Chef_Tone", "http://dbpedia.org/resource/Chen_Ming-chang", "http://dbpedia.org/resource/Cheyenne_Marie_Mize", "http://dbpedia.org/resource/Christopher_Willits", "http://dbpedia.org/resource/Chuck_Cannon", "http://dbpedia.org/resource/Tony_Bevilacqua", "http://dbpedia.org/resource/Tony_Bowers", "http://dbpedia.org/resource/Tony_Cox_(South_African_musician)", "http://dbpedia.org/resource/Tony_Glover", "http://dbpedia.org/resource/Tony_Mills_(musician)", "http://dbpedia.org/resource/Tony_Romandini", "http://dbpedia.org/resource/Toomas_Vanem", "http://dbpedia.org/resource/Top_Topham", "http://dbpedia.org/resource/Torgeir_Vassvik", "http://dbpedia.org/resource/Toru_Minegishi", "http://dbpedia.org/resource/Toshinobu_Kubota", "http://dbpedia.org/resource/Toti_Soler", "http://dbpedia.org/resource/Toy_Caldwell", "http://dbpedia.org/resource/Tracy_Bonham", "http://dbpedia.org/resource/Tracy_Grammer", "http://dbpedia.org/resource/Trampled_by_Turtles", "http://dbpedia.org/resource/Travis_Stever", "http://dbpedia.org/resource/Trevor_Lissauer", "http://dbpedia.org/resource/Trevor_Peres", "http://dbpedia.org/resource/Trevor_Tanner", "http://dbpedia.org/resource/Trey_Anastasio", "http://dbpedia.org/resource/Troy_Stetina", "http://dbpedia.org/resource/Tr\u1ecbnh_C\u00f4ng_S\u01a1n", "http://dbpedia.org/resource/Tsuneo_Imahori", "http://dbpedia.org/resource/Tsuyoshi_Ujiki", "http://dbpedia.org/resource/Tutu_Jones", "http://dbpedia.org/resource/Tyler_Bates", "http://dbpedia.org/resource/Tyler_Ewing", "http://dbpedia.org/resource/Tyler_James_(American_musician)", "http://dbpedia.org/resource/Tyler_Kyte", "http://dbpedia.org/resource/Tyler_Spencer", "http://dbpedia.org/resource/Ethan_Kath", "http://dbpedia.org/resource/Jace_Lasek", "http://dbpedia.org/resource/Jack_Frost_(musician)", "http://dbpedia.org/resource/James_Shaw_(musician)", "http://dbpedia.org/resource/James_Tyler_(musician)", "http://dbpedia.org/resource/Jennifer_Turner_(musician)", "http://dbpedia.org/resource/Jil_Y._Creek", "http://dbpedia.org/resource/Jim_Wilson_(guitarist)", "http://dbpedia.org/resource/John_Collins_(Canadian_musician)", "http://dbpedia.org/resource/Johnny_Edwards_(musician)", "http://dbpedia.org/resource/Megan_Isaacson", "http://dbpedia.org/resource/Ron_Jarzombek", "http://dbpedia.org/resource/Sally_Jaye", "http://dbpedia.org/resource/Steinar_Sverd_Johnsen", "http://dbpedia.org/resource/Walter_%22Junie%22_Morrison", "http://dbpedia.org/resource/Kathy_Foster_(musician)", "http://dbpedia.org/resource/Kelly_Bailey_(composer)", "http://dbpedia.org/resource/Khwezi_Sifunda", "http://dbpedia.org/resource/Kirstine_Stubbe_Teglbj\u00e6rg", "http://dbpedia.org/resource/Scott_Klopfenstein", "http://dbpedia.org/resource/Tad_Kubler", "http://dbpedia.org/resource/Radwan_Ghazi_Moumneh", "http://dbpedia.org/resource/Aaron_Johnson_(musician)", "http://dbpedia.org/resource/Aaron_North", "http://dbpedia.org/resource/Aaron_Shust", "http://dbpedia.org/resource/Aaron_Sprinkle", "http://dbpedia.org/resource/Abbath", "http://dbpedia.org/resource/Abner_Jay", "http://dbpedia.org/resource/Abra_Moore", "http://dbpedia.org/resource/Achim_Reichel", "http://dbpedia.org/resource/Adalberto_Bravo", "http://dbpedia.org/resource/Adam_Bomb", "http://dbpedia.org/resource/Adam_Deibert", "http://dbpedia.org/resource/Adam_Ficek", "http://dbpedia.org/resource/Adam_Gardner", "http://dbpedia.org/resource/Adam_Granduciel", "http://dbpedia.org/resource/Adam_Gussow", "http://dbpedia.org/resource/Adam_Palma", "http://dbpedia.org/resource/Adam_Sherburne", "http://dbpedia.org/resource/Adam_Taubitz", "http://dbpedia.org/resource/Adam_Thorn", "http://dbpedia.org/resource/Adam_Wiltzie", "http://dbpedia.org/resource/Adou_Elenga", "http://dbpedia.org/resource/Adrian_Borland", "http://dbpedia.org/resource/Adriana_Calcanhotto", "http://dbpedia.org/resource/Adriano_Cintra", "http://dbpedia.org/resource/Agathonas_Iakovidis", "http://dbpedia.org/resource/Ai_Ishigaki", "http://dbpedia.org/resource/Buddy_Knox", "http://dbpedia.org/resource/Buddy_Whittington", "http://dbpedia.org/resource/Bull_City_Red", "http://dbpedia.org/resource/Bumble_Bee_Slim", "http://dbpedia.org/resource/Buster_B._Jones", "http://dbpedia.org/resource/Buster_Benton", "http://dbpedia.org/resource/Buster_Smith", "http://dbpedia.org/resource/Cahir_O'Doherty_(musician)", "http://dbpedia.org/resource/Caitlin_Canty", "http://dbpedia.org/resource/Calcutta_(singer)", "http://dbpedia.org/resource/Caleb_Scofield", "http://dbpedia.org/resource/Calle_Kristiansson", "http://dbpedia.org/resource/Calvin_Leavy", "http://dbpedia.org/resource/Cameron_Muncey", "http://dbpedia.org/resource/Camila_Moreno", "http://dbpedia.org/resource/Camryn", "http://dbpedia.org/resource/Celin_Romero", "http://dbpedia.org/resource/Cem_Karaca", "http://dbpedia.org/resource/Cesar_Rosas", "http://dbpedia.org/resource/Cezary_Ostrowski", "http://dbpedia.org/resource/Chad_Morgan", "http://dbpedia.org/resource/Chad_Taylor_(guitarist)", "http://dbpedia.org/resource/Chae_Bo-hun", "http://dbpedia.org/resource/Chage", "http://dbpedia.org/resource/Charles_Hedger", "http://dbpedia.org/resource/Charles_Jenkins_(Australian_musician)", "http://dbpedia.org/resource/Charles_Sawtelle", "http://dbpedia.org/resource/Charles_Wayne_Day", "http://dbpedia.org/resource/Charley_Patton", "http://dbpedia.org/resource/Charlie_Atom", "http://dbpedia.org/resource/Charlie_Burchill", "http://dbpedia.org/resource/Charlie_Chan_(composer)", "http://dbpedia.org/resource/Charlie_Clouser", "http://dbpedia.org/resource/Charlie_Louvin", "http://dbpedia.org/resource/Charlie_Monroe", "http://dbpedia.org/resource/Charlie_Monttana", "http://dbpedia.org/resource/Charlie_Parr", "http://dbpedia.org/resource/Charly_Coombes", "http://dbpedia.org/resource/Chase_Baird", "http://dbpedia.org/resource/Chauncey_%22Lord%22_Westbrook", "http://dbpedia.org/resource/Chris_Austin", "http://dbpedia.org/resource/Chris_Beard_(singer)", "http://dbpedia.org/resource/Chris_Brooks_(guitarist)", "http://dbpedia.org/resource/Chris_Cain", "http://dbpedia.org/resource/Chris_Chaney", "http://dbpedia.org/resource/Chris_Collingwood", "http://dbpedia.org/resource/Chris_Combs_(composer)", "http://dbpedia.org/resource/Chris_Daniels_(musician)", "http://dbpedia.org/resource/Chris_DeGarmo", "http://dbpedia.org/resource/Chris_Douglas", "http://dbpedia.org/resource/Chris_Duarte_(musician)", "http://dbpedia.org/resource/Chris_Eldridge", "http://dbpedia.org/resource/Chris_Julian_(producer)", "http://dbpedia.org/resource/Chris_Kilmore", "http://dbpedia.org/resource/Chris_Mills_(musician)", "http://dbpedia.org/resource/Chris_Risola", "http://dbpedia.org/resource/Chris_Rodrigues", "http://dbpedia.org/resource/Chris_Standring", "http://dbpedia.org/resource/Chris_Taylor_(Grizzly_Bear_musician)", "http://dbpedia.org/resource/Chris_Volz", "http://dbpedia.org/resource/Chris_Weber", "http://dbpedia.org/resource/Chris_Wilson_(Australian_musician)", "http://dbpedia.org/resource/Chris_Zabriskie", "http://dbpedia.org/resource/Chris_von_Rohr", "http://dbpedia.org/resource/Christian_Steinh\u00e4user", "http://dbpedia.org/resource/Christian_Vidal", "http://dbpedia.org/resource/Christofer_Johnsson", "http://dbpedia.org/resource/Christophe_Godin", "http://dbpedia.org/resource/Cian_Nugent", "http://dbpedia.org/resource/Steve_Cobby", "http://dbpedia.org/resource/Steve_Dawson_(Canadian_musician)", "http://dbpedia.org/resource/Steve_Forrest_(musician)", "http://dbpedia.org/resource/Steve_Foster_(singer)", "http://dbpedia.org/resource/Steve_Hogarth", "http://dbpedia.org/resource/Steve_Jablonsky", "http://dbpedia.org/resource/Steve_Knight_(musician)", "http://dbpedia.org/resource/Steve_Nardella", "http://dbpedia.org/resource/Steve_Nardelli", "http://dbpedia.org/resource/Steve_Soboslai", "http://dbpedia.org/resource/Steve_Stevens", "http://dbpedia.org/resource/Steve_Sundholm", "http://dbpedia.org/resource/Steve_Turner_(guitarist)", "http://dbpedia.org/resource/Steve_Wade_(singer)", "http://dbpedia.org/resource/Stevie_Jackson", "http://dbpedia.org/resource/Stevie_Tonks", "http://dbpedia.org/resource/Stian_Carstensen", "http://dbpedia.org/resource/Stick_McGhee", "http://dbpedia.org/resource/Stoney_(musician)", "http://dbpedia.org/resource/Stuart_A._Staples", "http://dbpedia.org/resource/Stuart_Chatwood", "http://dbpedia.org/resource/Stuart_Duncan", "http://dbpedia.org/resource/Stuart_Emerson", "http://dbpedia.org/resource/Stuart_Michael_Thomas", "http://dbpedia.org/resource/Stuart_Wood_(musician)", "http://dbpedia.org/resource/Stza", "http://dbpedia.org/resource/Sue_Medley", "http://dbpedia.org/resource/Sune_Rose_Wagner", "http://dbpedia.org/resource/Sunny_Duval", "http://dbpedia.org/resource/Super_Chikan", "http://dbpedia.org/resource/Susan_Cowsill", "http://dbpedia.org/resource/Susan_Enan", "http://dbpedia.org/resource/Svein_Dag_Hauge", "http://dbpedia.org/resource/Johnny_Staats", "http://dbpedia.org/resource/Stephen_McNally_(musician)", "http://dbpedia.org/resource/Stephen_Rowe_(musician)", "http://dbpedia.org/resource/Stuart_Turner_(musician)", "http://dbpedia.org/resource/Freddie_Phillips", "http://dbpedia.org/resource/Ian_Stephen", "http://dbpedia.org/resource/Jonathan_Cummins", "http://dbpedia.org/resource/Kelley_Lovelace", "http://dbpedia.org/resource/R._B._Korbet", "http://dbpedia.org/resource/Norman_Orenstein", "http://dbpedia.org/resource/Priya_Thomas", "http://dbpedia.org/resource/Rob_Jungklas", "http://dbpedia.org/resource/Rene\u00e9_Austin", "http://dbpedia.org/resource/Actual_Wolf", "http://dbpedia.org/resource/Caralee_McElroy", "http://dbpedia.org/resource/Carl-Michael_Eide", "http://dbpedia.org/resource/Carl_August_Tidemann", "http://dbpedia.org/resource/Carl_Bar\u00e2t", "http://dbpedia.org/resource/Carl_Bell_(musician)", "http://dbpedia.org/resource/Carl_Broemel", "http://dbpedia.org/resource/Carl_Harvey", "http://dbpedia.org/resource/Carlo_Carfagna", "http://dbpedia.org/resource/Carlos_Berlanga", "http://dbpedia.org/resource/Carlos_Cavazo", "http://dbpedia.org/resource/Carlos_Montoya", "http://dbpedia.org/resource/Carlos_Pe\u00f1a_(singer)", "http://dbpedia.org/resource/Carly_Binding", "http://dbpedia.org/resource/Carol_Kaye", "http://dbpedia.org/resource/Carolina_Slim", "http://dbpedia.org/resource/Carsten_Bo_Eriksen", "http://dbpedia.org/resource/Carter_Stanley", "http://dbpedia.org/resource/Casey_Stratton", "http://dbpedia.org/resource/Cash_McCall_(musician)", "http://dbpedia.org/resource/Cashavelly_Morrison", "http://dbpedia.org/resource/Hitoshi_Okamoto", "http://dbpedia.org/resource/Hobart_Smith", "http://dbpedia.org/resource/Holger_Czukay", "http://dbpedia.org/resource/Holly_Knight", "http://dbpedia.org/resource/Horacio_Villafa\u00f1e", "http://dbpedia.org/resource/Houston_Stackhouse", "http://dbpedia.org/resource/Howard_Drossin", "http://dbpedia.org/resource/Howard_E._Scott", "http://dbpedia.org/resource/Howard_Roberts", "http://dbpedia.org/resource/Hrysoula_Stefanaki", "http://dbpedia.org/resource/Htun_Naung_Sint", "http://dbpedia.org/resource/Huey_Long_(singer)", "http://dbpedia.org/resource/Hugh_Harris_(singer)", "http://dbpedia.org/resource/Hugh_McCracken", "http://dbpedia.org/resource/Hugh_McMillan_(musician)", "http://dbpedia.org/resource/Ben_Deily", "http://dbpedia.org/resource/Ben_Gunn_(guitarist)", "http://dbpedia.org/resource/K\u00e9l\u00e9tigui_Diabat\u00e9", "http://dbpedia.org/resource/L.C._Green", "http://dbpedia.org/resource/L.V._Banks", "http://dbpedia.org/resource/L.V._Johnson", "http://dbpedia.org/resource/L._C._McKinley", "http://dbpedia.org/resource/Lab_Ox", "http://dbpedia.org/resource/Lachlan_Gillespie", "http://dbpedia.org/resource/Lacy_Gibson", "http://dbpedia.org/resource/Lakki_Patey", "http://dbpedia.org/resource/Larry_Knechtel", "http://dbpedia.org/resource/Larry_McNeely", "http://dbpedia.org/resource/Larry_Sparks", "http://dbpedia.org/resource/Larry_Van_Kriedt", "http://dbpedia.org/resource/Larry_Wallis", "http://dbpedia.org/resource/Lars_Lillo-Stenberg", "http://dbpedia.org/resource/Lasse_Myrvold", "http://dbpedia.org/resource/Lata_Gouveia", "http://dbpedia.org/resource/Latino_(singer)", "http://dbpedia.org/resource/Lauri_Yl\u00f6nen", "http://dbpedia.org/resource/Laurie_Lewis", "http://dbpedia.org/resource/Lavon_Volski", "http://dbpedia.org/resource/Lavrentis_Machairitsas", "http://dbpedia.org/resource/Lay_Low", "http://dbpedia.org/resource/Lazy_Bill_Lucas", "http://dbpedia.org/resource/Lazy_Lester", "http://dbpedia.org/resource/Malcolm_Toft", "http://dbpedia.org/resource/Tim_Ward_(musician)", "http://dbpedia.org/resource/Tony_Hall_(musician)", "http://dbpedia.org/resource/Trish_Murphy", "http://dbpedia.org/resource/Ulises_Hadjis", "http://dbpedia.org/resource/Maura_Davis", "http://dbpedia.org/resource/Shane_Simpson_(musician)", "http://dbpedia.org/resource/Vanessa_Peters", "http://dbpedia.org/resource/Henry_Sloan", "http://dbpedia.org/resource/Ruby_Friedman", "http://dbpedia.org/resource/Steve_DeMarchi", "http://dbpedia.org/resource/Remi_Nicole", "http://dbpedia.org/resource/Michael_Gallagher_(guitarist)", "http://dbpedia.org/resource/Willie_Baker", "http://dbpedia.org/resource/Dobie_Gray", "http://dbpedia.org/resource/Dome_La_Muerte", "http://dbpedia.org/resource/Don_Clark_(musician)", "http://dbpedia.org/resource/Don_Dokken", "http://dbpedia.org/resource/Don_Irving", "http://dbpedia.org/resource/Don_McGlashan", "http://dbpedia.org/resource/Don_Nix", "http://dbpedia.org/resource/Don_Rich", "http://dbpedia.org/resource/Donn_Pohren", "http://dbpedia.org/resource/Donna_Simpson_(musician)", "http://dbpedia.org/resource/Donnie_Iris", "http://dbpedia.org/resource/Doug_Ardito", "http://dbpedia.org/resource/Doug_Blair", "http://dbpedia.org/resource/Doug_Boyle", "http://dbpedia.org/resource/Doug_Edwards_(musician)", "http://dbpedia.org/resource/Doug_Fieger", "http://dbpedia.org/resource/Doug_Kershaw", "http://dbpedia.org/resource/Doug_Martsch", "http://dbpedia.org/resource/Doug_Seegers", "http://dbpedia.org/resource/Doug_Van_Gundy", "http://dbpedia.org/resource/Dougie_Poynter", "http://dbpedia.org/resource/Douglas_B._Green", "http://dbpedia.org/resource/Douglas_September", "http://dbpedia.org/resource/Doyle_Dykes", "http://dbpedia.org/resource/Duane_Andrews", "http://dbpedia.org/resource/Duane_Roland", "http://dbpedia.org/resource/Dudley_Taft", "http://dbpedia.org/resource/Duncan_Arsenault", "http://dbpedia.org/resource/Dustin_Tebbutt", "http://dbpedia.org/resource/Dutch_Mason", "http://dbpedia.org/resource/Du\u0161an_Koji\u0107", "http://dbpedia.org/resource/Dwight_Twilley", "http://dbpedia.org/resource/Dylan_Carlson_(musician)", "http://dbpedia.org/resource/Dylan_Mattingly", "http://dbpedia.org/resource/E.G._Kight", "http://dbpedia.org/resource/Simon_Climie", "http://dbpedia.org/resource/Simon_Gallup", "http://dbpedia.org/resource/Simon_Lynge", "http://dbpedia.org/resource/Simon_Mayor", "http://dbpedia.org/resource/Simone_Cilio", "http://dbpedia.org/resource/Simonne_Jones", "http://dbpedia.org/resource/Sinead_Burgess", "http://dbpedia.org/resource/Sini\u0161a_Vuco", "http://dbpedia.org/resource/Sirkus_Eliassen", "http://dbpedia.org/resource/Sita_(singer)", "http://dbpedia.org/resource/Skeeter_Bonn", "http://dbpedia.org/resource/Slick_Aguilar", "http://dbpedia.org/resource/Slowthai", "http://dbpedia.org/resource/Slushii", "http://dbpedia.org/resource/Smiley_Lewis", "http://dbpedia.org/resource/Smolasty", "http://dbpedia.org/resource/Snuffy_Jenkins", "http://dbpedia.org/resource/Soledad_Bravo", "http://dbpedia.org/resource/SonReal", "http://dbpedia.org/resource/Son_Bonds", "http://dbpedia.org/resource/Son_of_Dave", "http://dbpedia.org/resource/Sonja_\u0160kori\u0107", "http://dbpedia.org/resource/Sonny_Landreth", "http://dbpedia.org/resource/Sophia_Fredskild", "http://dbpedia.org/resource/Sotiris_Lagonikas", "http://dbpedia.org/resource/Sound_M.O.B.", "http://dbpedia.org/resource/Dominique_Blais", "http://dbpedia.org/resource/Don_Devore", "http://dbpedia.org/resource/Don_Kerr", "http://dbpedia.org/resource/Gerry_Nestler", "http://dbpedia.org/resource/Mason_Neely", "http://dbpedia.org/resource/Nick_Glennie-Smith", "http://dbpedia.org/resource/Nils_Frykdahl", "http://dbpedia.org/resource/Joe_Crookston", "http://dbpedia.org/resource/Josh_Mease", "http://dbpedia.org/resource/Kate_Mann", "http://dbpedia.org/resource/Owen_Powell", "http://dbpedia.org/resource/Panky_Trinidad", "http://dbpedia.org/resource/Ian_Arber", "http://dbpedia.org/resource/Ian_McCallum_(guitarist)", "http://dbpedia.org/resource/Ichiro_Agata", "http://dbpedia.org/resource/Sam_Goldberg_Jr.", "http://dbpedia.org/resource/Rose_Mazzola", "http://dbpedia.org/resource/Shayne_Carter", "http://dbpedia.org/resource/Pepe_Mart\u00ednez", "http://dbpedia.org/resource/Corentin_Henri_Le_Fur", "http://dbpedia.org/resource/Corey_Harris", "http://dbpedia.org/resource/Corin_Tucker", "http://dbpedia.org/resource/Corky_Laing", "http://dbpedia.org/resource/Courtney_Pollock", "http://dbpedia.org/resource/Craig_Else", "http://dbpedia.org/resource/Craig_Finn", "http://dbpedia.org/resource/Craig_Northey", "http://dbpedia.org/resource/Craig_Sharmat", "http://dbpedia.org/resource/Craig_Wayne_Boyd", "http://dbpedia.org/resource/Craig_Wood_(guitarist)", "http://dbpedia.org/resource/Crispin_Gray", "http://dbpedia.org/resource/Cy_Curnin", "http://dbpedia.org/resource/C\u00e9sar_Isella", "http://dbpedia.org/resource/D._D._Verni", "http://dbpedia.org/resource/D._J._Sparr", "http://dbpedia.org/resource/D._L._Menard", "http://dbpedia.org/resource/Daddy_Stovepipe", "http://dbpedia.org/resource/Dag_Ingebrigtsen", "http://dbpedia.org/resource/Dale_Watson_(singer)", "http://dbpedia.org/resource/Daler_Nazarov", "http://dbpedia.org/resource/Anna_Domino", "http://dbpedia.org/resource/Anomie_Belle", "http://dbpedia.org/resource/Anoraak", "http://dbpedia.org/resource/Govi_(musician)", "http://dbpedia.org/resource/Grady_Martin", "http://dbpedia.org/resource/Graeme_Duffin", "http://dbpedia.org/resource/Graham_Clarke_(musician)", "http://dbpedia.org/resource/Graham_Lewis", "http://dbpedia.org/resource/Grant_Austin_Taylor", "http://dbpedia.org/resource/Grasshopper_(musician)", "http://dbpedia.org/resource/Greg_Garbowsky", "http://dbpedia.org/resource/Greg_Leisz", "http://dbpedia.org/resource/Greg_Leon", "http://dbpedia.org/resource/Greg_Ridley", "http://dbpedia.org/resource/Gregori_Chad_Petree", "http://dbpedia.org/resource/Gregory_Page_(musician)", "http://dbpedia.org/resource/Grutle_Kjellson", "http://dbpedia.org/resource/Guillaume_Grand", "http://dbpedia.org/resource/Guille_Garcia", "http://dbpedia.org/resource/Guitar_Crusher", "http://dbpedia.org/resource/Guitar_Gable", "http://dbpedia.org/resource/Guitar_Nubbit", "http://dbpedia.org/resource/Gunnar_Graps", "http://dbpedia.org/resource/Gunnar_\u00d6rn_Tynes", "http://dbpedia.org/resource/Guy_Buttery", "http://dbpedia.org/resource/Guy_Fletcher", "http://dbpedia.org/resource/Guy_Maddison", "http://dbpedia.org/resource/Guy_Sigsworth", "http://dbpedia.org/resource/Gy\u00f6rgy_Ligeti_(musician)", "http://dbpedia.org/resource/G\u00f6khan_T\u00fcrkmen", "http://dbpedia.org/resource/G\u00f6khan_\u00d6zen", "http://dbpedia.org/resource/Asikey", "http://dbpedia.org/resource/Astennu_(musician)", "http://dbpedia.org/resource/Haywyre", "http://dbpedia.org/resource/Heather_Baker", "http://dbpedia.org/resource/Heike_Matthiesen", "http://dbpedia.org/resource/Heitor_Pereira", "http://dbpedia.org/resource/Helen_Carter", "http://dbpedia.org/resource/Henkka_Sepp\u00e4l\u00e4", "http://dbpedia.org/resource/Henri_Crolla", "http://dbpedia.org/resource/Henri_Sorvali", "http://dbpedia.org/resource/Henrik_Janson", "http://dbpedia.org/resource/Henry_%22Son%22_Sims", "http://dbpedia.org/resource/Henry_Cluney", "http://dbpedia.org/resource/Henry_McCullough", "http://dbpedia.org/resource/Henry_Paul_(musician)", "http://dbpedia.org/resource/Henry_Qualls", "http://dbpedia.org/resource/Henry_Strzelecki", "http://dbpedia.org/resource/Herman_Witkam", "http://dbpedia.org/resource/Himesh_Reshammiya", "http://dbpedia.org/resource/Hip_Linkchain", "http://dbpedia.org/resource/Hiram_Bullock", "http://dbpedia.org/resource/Hirohisa_Horie", "http://dbpedia.org/resource/Hisashi_(musician)", "http://dbpedia.org/resource/MEGG", "http://dbpedia.org/resource/Maartin_Allcock", "http://dbpedia.org/resource/Mac_Martin", "http://dbpedia.org/resource/Madagascar_Slim", "http://dbpedia.org/resource/Madi_Davis", "http://dbpedia.org/resource/Madigan_Shive", "http://dbpedia.org/resource/Madlib", "http://dbpedia.org/resource/Maeve_O'Donovan", "http://dbpedia.org/resource/Magni_\u00c1sgeirsson", "http://dbpedia.org/resource/Major_Harris_(singer)", "http://dbpedia.org/resource/Mal_Webb", "http://dbpedia.org/resource/Malcolm_Burn", "http://dbpedia.org/resource/Mamadou_Diop_(musician)", "http://dbpedia.org/resource/Mandy_Meyer", "http://dbpedia.org/resource/Mani_Sharma", "http://dbpedia.org/resource/Brian_Daniels_(musician)", "http://dbpedia.org/resource/Brian_McTernan", "http://dbpedia.org/resource/Brian_Young_(drummer)", "http://dbpedia.org/resource/Carl_Johan_Grimmark", "http://dbpedia.org/resource/Cesar_Benito", "http://dbpedia.org/resource/Ricardo_Garcia_(German_musician)", "http://dbpedia.org/resource/Rich_Robinson", "http://dbpedia.org/resource/Richard_%22Hacksaw%22_Harney", "http://dbpedia.org/resource/Richard_H._Kirk", "http://dbpedia.org/resource/Richard_Kiser", "http://dbpedia.org/resource/Richard_Sinclair", "http://dbpedia.org/resource/Richard_Tandy", "http://dbpedia.org/resource/Richey_McCourt", "http://dbpedia.org/resource/Richie_Ramone", "http://dbpedia.org/resource/Rick_Anthony", "http://dbpedia.org/resource/Rick_Froberg", "http://dbpedia.org/resource/Rick_Holmstrom", "http://dbpedia.org/resource/Rick_Kemp", "http://dbpedia.org/resource/Rick_Lindy", "http://dbpedia.org/resource/Rick_Spencer_(singer)", "http://dbpedia.org/resource/Rick_Vandivier", "http://dbpedia.org/resource/Rick_Vito", "http://dbpedia.org/resource/Rickey_Lime", "http://dbpedia.org/resource/Ricky_Fataar", "http://dbpedia.org/resource/Riho_Sibul", "http://dbpedia.org/resource/Rik_Simpson", "http://dbpedia.org/resource/Rino_Gaetano", "http://dbpedia.org/resource/Rob_Beckley", "http://dbpedia.org/resource/Rob_Chiarelli", "http://dbpedia.org/resource/Rob_Marcello", "http://dbpedia.org/resource/Robb_Royer", "http://dbpedia.org/resource/Robbie_Crane", "http://dbpedia.org/resource/Robbie_Nevil", "http://dbpedia.org/resource/Robert_Belfour", "http://dbpedia.org/resource/Robert_Boldi\u017ear", "http://dbpedia.org/resource/Robert_Bowlin", "http://dbpedia.org/resource/Robert_Dahlqvist", "http://dbpedia.org/resource/Robert_Earl_Keen", "http://dbpedia.org/resource/Robert_Ellis_Orrall", "http://dbpedia.org/resource/Robert_F._Cranny", "http://dbpedia.org/resource/Robert_Fripp", "http://dbpedia.org/resource/Robert_Hampson", "http://dbpedia.org/resource/Robert_J\u00fcrjendal", "http://dbpedia.org/resource/Robert_Walker_(musician)", "http://dbpedia.org/resource/Robert_Ward_(blues_musician)", "http://dbpedia.org/resource/Robert_Wyatt", "http://dbpedia.org/resource/Roberto_Cantoral", "http://dbpedia.org/resource/Roberto_Garc\u00eda_(bassist)", "http://dbpedia.org/resource/Roberto_Iniesta", "http://dbpedia.org/resource/Robin_Bengtsson", "http://dbpedia.org/resource/Robin_Finck", "http://dbpedia.org/resource/Robin_Millar", "http://dbpedia.org/resource/Rock-Olga", "http://dbpedia.org/resource/Rockin'_Dave_Allen", "http://dbpedia.org/resource/Rockin'_Johnny_Burgin", "http://dbpedia.org/resource/Rodrigo_Le\u00e3o", "http://dbpedia.org/resource/Rodrigo_Riera", "http://dbpedia.org/resource/Roger_Bush_(musician)", "http://dbpedia.org/resource/Roger_Clyne", "http://dbpedia.org/resource/Roger_Greenawalt", "http://dbpedia.org/resource/Roger_Greenaway", "http://dbpedia.org/resource/Roger_Nichols_(songwriter)", "http://dbpedia.org/resource/Roger_Peterson_(musician)", "http://dbpedia.org/resource/Roger_Powell_(musician)", "http://dbpedia.org/resource/Rolf_Cahn", "http://dbpedia.org/resource/Rolly_Teranishi", "http://dbpedia.org/resource/Claude_Zdanow", "http://dbpedia.org/resource/Click-B", "http://dbpedia.org/resource/Clint_Conley", "http://dbpedia.org/resource/Damon_Fowler", "http://dbpedia.org/resource/Dan_Koch", "http://dbpedia.org/resource/Dick_Cooper", "http://dbpedia.org/resource/Jorge_Calder\u00f3n", "http://dbpedia.org/resource/Julie_Byrne", "http://dbpedia.org/resource/Mattie_Delaney", "http://dbpedia.org/resource/Panam_Percy_Paul", "http://dbpedia.org/resource/Steve_Touchstone", "http://dbpedia.org/resource/Kokan_Popovi\u0107", "http://dbpedia.org/resource/Lars_Fredrik_Beckstr\u00f8m", "http://dbpedia.org/resource/Pat_McCurdy", "http://dbpedia.org/resource/Sean_Stubbs", "http://dbpedia.org/resource/Steven_Thachuk", "http://dbpedia.org/resource/\u00c9rica_Garc\u00eda", "http://dbpedia.org/resource/Ralph_Willis_(blues_musician)", "http://dbpedia.org/resource/Todd_Fancey", "http://dbpedia.org/resource/Pete_Stewart", "http://dbpedia.org/resource/Steve_Willaert", "http://dbpedia.org/resource/Tim_Harwill", "http://dbpedia.org/resource/Possessed_by_Paul_James", "http://dbpedia.org/resource/Wally_Tax", "http://dbpedia.org/resource/Katrina_Johansson", "http://dbpedia.org/resource/Evi_Tausen", "http://dbpedia.org/resource/Faith_Nolan", "http://dbpedia.org/resource/Fallon_Bowman", "http://dbpedia.org/resource/Farhad_Darya", "http://dbpedia.org/resource/Fariborz_Lachini", "http://dbpedia.org/resource/Farid_Zoland", "http://dbpedia.org/resource/Faris_Badwan", "http://dbpedia.org/resource/Fatai", "http://dbpedia.org/resource/Femi_Leye", "http://dbpedia.org/resource/Fennesz", "http://dbpedia.org/resource/Fernanda_Takai", "http://dbpedia.org/resource/Fernando_Egozcue", "http://dbpedia.org/resource/Fernando_Mon", "http://dbpedia.org/resource/Fernando_von_Arb", "http://dbpedia.org/resource/Fher_Olvera", "http://dbpedia.org/resource/Finbarr_Dwyer", "http://dbpedia.org/resource/Firebrand_Boy", "http://dbpedia.org/resource/Fito_Cabrales", "http://dbpedia.org/resource/Flattus_Maximus", "http://dbpedia.org/resource/Fleming_Brown", "http://dbpedia.org/resource/Flo_V._Schwarz", "http://dbpedia.org/resource/Florian_Schneider", "http://dbpedia.org/resource/Floyd_Council", "http://dbpedia.org/resource/Floyd_Lee", "http://dbpedia.org/resource/Floyd_Miles", "http://dbpedia.org/resource/Floyd_Smith_(musician)", "http://dbpedia.org/resource/Floyd_Tillman", "http://dbpedia.org/resource/Barry_Burns", "http://dbpedia.org/resource/Jeff_Cardoni", "http://dbpedia.org/resource/Jeff_Cook", "http://dbpedia.org/resource/Jeff_Dahl", "http://dbpedia.org/resource/Jeff_Kite", "http://dbpedia.org/resource/Jeff_Mangum", "http://dbpedia.org/resource/Jeff_Pitchell", "http://dbpedia.org/resource/Jeff_Schroeder", "http://dbpedia.org/resource/Jeff_Watson_(guitarist)", "http://dbpedia.org/resource/Jeffrey_Foskett", "http://dbpedia.org/resource/Jeffrey_Lee_Pierce", "http://dbpedia.org/resource/Jeffrey_Yong", "http://dbpedia.org/resource/Jehangir_Aziz_Hayat", "http://dbpedia.org/resource/Jenny_Hval", "http://dbpedia.org/resource/Jenny_Lewis", "http://dbpedia.org/resource/Jens_Fredrik_Ryland", "http://dbpedia.org/resource/Jens_Ludwig", "http://dbpedia.org/resource/Jeremiah_Johnson_(blues_musician)", "http://dbpedia.org/resource/Jeremy_Edwardson", "http://dbpedia.org/resource/Jeremy_Jay", "http://dbpedia.org/resource/Jeremy_Porter", "http://dbpedia.org/resource/Jerome_T._Youngman", "http://dbpedia.org/resource/Jerry_Amaldev", "http://dbpedia.org/resource/Jerry_Cole", "http://dbpedia.org/resource/Jerry_Douglas", "http://dbpedia.org/resource/Jerry_McCain", "http://dbpedia.org/resource/Jerry_Miller", "http://dbpedia.org/resource/Jess_McAvoy", "http://dbpedia.org/resource/Jesse_Colburn", "http://dbpedia.org/resource/Jesse_Frasure", "http://dbpedia.org/resource/Jesse_Johnson_(musician)", "http://dbpedia.org/resource/Jesse_McReynolds", "http://dbpedia.org/resource/Jesse_Tobias", "http://dbpedia.org/resource/Jesse_Valencia", "http://dbpedia.org/resource/Jesse_Zubot", "http://dbpedia.org/resource/Jessica_Dobson", "http://dbpedia.org/resource/Jessie_Baker", "http://dbpedia.org/resource/Jes\u00fas_El\u00edas", "http://dbpedia.org/resource/Jez_Williams", "http://dbpedia.org/resource/Jim_Armstrong_(guitarist)", "http://dbpedia.org/resource/Jim_Cherry", "http://dbpedia.org/resource/Jim_Couza", "http://dbpedia.org/resource/Jim_Dickinson", "http://dbpedia.org/resource/Jim_Hurst", "http://dbpedia.org/resource/Jim_James", "http://dbpedia.org/resource/Jim_Kaufman", "http://dbpedia.org/resource/Jim_Kweskin", "http://dbpedia.org/resource/Jim_Murray_(musician)", "http://dbpedia.org/resource/Jim_Noir", "http://dbpedia.org/resource/Jim_Owen_(singer-songwriter)", "http://dbpedia.org/resource/Jim_Peterik", "http://dbpedia.org/resource/Jim_Reid_(folk_musician)", "http://dbpedia.org/resource/Jim_Vallance", "http://dbpedia.org/resource/Jimi_Shields", "http://dbpedia.org/resource/Jimmie_Dolan", "http://dbpedia.org/resource/Jimmy_%22Duck%22_Holmes", "http://dbpedia.org/resource/Jimmy_Bryant", "http://dbpedia.org/resource/Jimmy_Burns", "http://dbpedia.org/resource/Jimmy_Cliff", "http://dbpedia.org/resource/Jimmy_Crespo", "http://dbpedia.org/resource/Jimmy_Lewis_(musician)", "http://dbpedia.org/resource/Jimmy_Winston", "http://dbpedia.org/resource/Jiro_(musician)", "http://dbpedia.org/resource/Jive_Jones", "http://dbpedia.org/resource/Ji\u0159\u00ed_Kabe\u0161", "http://dbpedia.org/resource/JoJo_Worthington", "http://dbpedia.org/resource/Joaqu\u00edn_Cardiel", "http://dbpedia.org/resource/Joe_Baiza", "http://dbpedia.org/resource/Joe_Becker_(musician)", "http://dbpedia.org/resource/Joe_Firstman", "http://dbpedia.org/resource/Joe_Grah", "http://dbpedia.org/resource/Joe_Hedges", "http://dbpedia.org/resource/Joe_Holmes", "http://dbpedia.org/resource/Joe_Moretti", "http://dbpedia.org/resource/Joe_Pisapia", "http://dbpedia.org/resource/Joe_Purdy", "http://dbpedia.org/resource/Joe_Robinson_(musician)", "http://dbpedia.org/resource/Joe_Russo_(musician)", "http://dbpedia.org/resource/Joe_Val", "http://dbpedia.org/resource/Joel_Pott", "http://dbpedia.org/resource/Joey_Cook", "http://dbpedia.org/resource/Joey_Mazzola", "http://dbpedia.org/resource/Joey_Molland", "http://dbpedia.org/resource/Joey_Serlin", "http://dbpedia.org/resource/Joey_Sturgis", "http://dbpedia.org/resource/Johan_Frandsen", "http://dbpedia.org/resource/Johan_Reinholdz", "http://dbpedia.org/resource/Johanna_Beisteiner", "http://dbpedia.org/resource/Johannes_S\u00e6b\u00f8e", "http://dbpedia.org/resource/John_%22Charlie%22_Whitney", "http://dbpedia.org/resource/John_Bassette", "http://dbpedia.org/resource/John_Benitez", "http://dbpedia.org/resource/John_Bergin", "http://dbpedia.org/resource/John_Debney", "http://dbpedia.org/resource/John_Eddie", "http://dbpedia.org/resource/John_Edwards_(musician)", "http://dbpedia.org/resource/John_Ford_Coley", "http://dbpedia.org/resource/John_Haggerty", "http://dbpedia.org/resource/John_Hammink", "http://dbpedia.org/resource/John_Haughm", "http://dbpedia.org/resource/John_Hegre", "http://dbpedia.org/resource/John_Herald", "http://dbpedia.org/resource/John_Idan", "http://dbpedia.org/resource/John_Illsley", "http://dbpedia.org/resource/Lee_Brooks", "http://dbpedia.org/resource/Lee_Gates", "http://dbpedia.org/resource/Lee_Gaze", "http://dbpedia.org/resource/Lee_Loughnane", "http://dbpedia.org/resource/Lee_Mellor", "http://dbpedia.org/resource/Lee_Michaels", "http://dbpedia.org/resource/Lee_Payne_(bassist)", "http://dbpedia.org/resource/Lefty_Bates", "http://dbpedia.org/resource/Legendary_Stardust_Cowboy", "http://dbpedia.org/resource/Leo_Rey", "http://dbpedia.org/resource/Leon_Koudelak", "http://dbpedia.org/resource/Leon_Michels", "http://dbpedia.org/resource/Leonard_Caston", "http://dbpedia.org/resource/Leonid_Soybelman", "http://dbpedia.org/resource/Leroy_Dallas", "http://dbpedia.org/resource/Les_Binks", "http://dbpedia.org/resource/Les_Dudek", "http://dbpedia.org/resource/Les_Emmerson", "http://dbpedia.org/resource/Les_Hall", "http://dbpedia.org/resource/Lester_Williams_(musician)", "http://dbpedia.org/resource/Lew_DeWitt", "http://dbpedia.org/resource/Lewis_Taylor", "http://dbpedia.org/resource/Li_Jie_(guitarist)", "http://dbpedia.org/resource/Liam_Howe", "http://dbpedia.org/resource/Liam_Titcomb", "http://dbpedia.org/resource/Liam_\u00d3_Maonla\u00ed", "http://dbpedia.org/resource/Lil'_Dave_Thompson", "http://dbpedia.org/resource/Lil'_Ed_Williams", "http://dbpedia.org/resource/Lil'_Rev", "http://dbpedia.org/resource/Lili_Bayliss", "http://dbpedia.org/resource/Lim_Jeong-hyun", "http://dbpedia.org/resource/Lindsey_Buckingham", "http://dbpedia.org/resource/Lisa_Mitchell", "http://dbpedia.org/resource/Lisa_Moscatiello", "http://dbpedia.org/resource/Lisa_Tucker_(singer)", "http://dbpedia.org/resource/Nature_Ganganbaigal", "http://dbpedia.org/resource/Navarone_Garibaldi", "http://dbpedia.org/resource/Neda_(musician)", "http://dbpedia.org/resource/Neil_Carter_(musician)", "http://dbpedia.org/resource/Neil_Citron", "http://dbpedia.org/resource/Neil_Donell", "http://dbpedia.org/resource/Neil_Hubbard", "http://dbpedia.org/resource/Neil_Levang", "http://dbpedia.org/resource/Neil_Reid", "http://dbpedia.org/resource/Neil_Zaza", "http://dbpedia.org/resource/Nell_Bryden", "http://dbpedia.org/resource/Nguy\u00ean_L\u00ea", "http://dbpedia.org/resource/Nic_Nac", "http://dbpedia.org/resource/Nicholas_Hooper", "http://dbpedia.org/resource/Nicholas_Megalis", "http://dbpedia.org/resource/Nick_Falcon", "http://dbpedia.org/resource/Nick_Fradiani", "http://dbpedia.org/resource/Nick_Hemming", "http://dbpedia.org/resource/Nick_Katzman", "http://dbpedia.org/resource/Nick_Santino_(musician)", "http://dbpedia.org/resource/Nick_Wiggins", "http://dbpedia.org/resource/Nick_Zinner", "http://dbpedia.org/resource/Nicky_Bomba", "http://dbpedia.org/resource/Nicky_Moore", "http://dbpedia.org/resource/Nicolay_(musician)", "http://dbpedia.org/resource/Nicole_C._Mullen", "http://dbpedia.org/resource/Nicolette_Larson", "http://dbpedia.org/resource/Niklas_Bergqvist", "http://dbpedia.org/resource/Paz_Lenchantin", "http://dbpedia.org/resource/Pearl_Thompson", "http://dbpedia.org/resource/Pecker_Dunne", "http://dbpedia.org/resource/Pee_Wee_Crayton", "http://dbpedia.org/resource/Pekka_Heino_(singer)", "http://dbpedia.org/resource/Pelle_Ossler", "http://dbpedia.org/resource/Penny_Hill_(musician)", "http://dbpedia.org/resource/Pepe_Justicia", "http://dbpedia.org/resource/Pepe_Romero", "http://dbpedia.org/resource/Pepe_Smith", "http://dbpedia.org/resource/Per_Aldeheim", "http://dbpedia.org/resource/Per_Magnusson", "http://dbpedia.org/resource/Per_Wiberg", "http://dbpedia.org/resource/Peret", "http://dbpedia.org/resource/Perry_Bamonte", "http://dbpedia.org/resource/Pest_(musician)", "http://dbpedia.org/resource/Pete_Dello", "http://dbpedia.org/resource/Pete_Lynch_(musician)", "http://dbpedia.org/resource/Pete_Mayes", "http://dbpedia.org/resource/Pete_Yorn", "http://dbpedia.org/resource/Peter_Autschbach", "http://dbpedia.org/resource/Peter_Baldrachi", "http://dbpedia.org/resource/Peter_Connelly", "http://dbpedia.org/resource/Peter_Laughner", "http://dbpedia.org/resource/Peter_London", "http://dbpedia.org/resource/Peter_Mosely", "http://dbpedia.org/resource/Peter_Noone", "http://dbpedia.org/resource/Peter_Sinfield", "http://dbpedia.org/resource/Peter_Solowka", "http://dbpedia.org/resource/Peter_Thorup", "http://dbpedia.org/resource/Peter_White_(musician)", "http://dbpedia.org/resource/Peter_Wilkinson_(bass_guitarist)", "http://dbpedia.org/resource/Petey_Dammit", "http://dbpedia.org/resource/Petri_Lindroos", "http://dbpedia.org/resource/Pe\u0111a_D'Boy", "http://dbpedia.org/resource/Phideaux_Xavier", "http://dbpedia.org/resource/Phil_Baugh", "http://dbpedia.org/resource/Phil_Beer", "http://dbpedia.org/resource/Phil_Burton", "http://dbpedia.org/resource/Phil_Jamieson", "http://dbpedia.org/resource/Phil_Mogg", "http://dbpedia.org/resource/Phil_Robson", "http://dbpedia.org/resource/Phil_Seymour", "http://dbpedia.org/resource/Philip_John_Lee", "http://dbpedia.org/resource/Phillip_Boa", "http://dbpedia.org/resource/Phillip_Phillips", "http://dbpedia.org/resource/Phoebus_Delivorias", "http://dbpedia.org/resource/Piet_Sielck", "http://dbpedia.org/resource/Piet_Veerman", "http://dbpedia.org/resource/P\u00e9p\u00e9_et_sa_Guitare", "http://dbpedia.org/resource/Quetzal_Guerrero", "http://dbpedia.org/resource/Qu\u1ed1c_B\u1ea3o", "http://dbpedia.org/resource/R.L._Boyce", "http://dbpedia.org/resource/R._L._Burnside", "http://dbpedia.org/resource/R_Zar_Ni", "http://dbpedia.org/resource/Rabbi_Shergill", "http://dbpedia.org/resource/Rachel_Trachtenburg", "http://dbpedia.org/resource/Radomir_Mihailovi\u0107", "http://dbpedia.org/resource/Rael_Jones", "http://dbpedia.org/resource/Rafael_Riqueni", "http://dbpedia.org/resource/Theo_Goutzinakis", "http://dbpedia.org/resource/Theo_Green", "http://dbpedia.org/resource/Thia_Megia", "http://dbpedia.org/resource/Thomas_Bergersen", "http://dbpedia.org/resource/Thomas_Dinger", "http://dbpedia.org/resource/Thomas_Fraser_(singer)", "http://dbpedia.org/resource/Thomas_Leeb", "http://dbpedia.org/resource/Thomas_Tofthagen", "http://dbpedia.org/resource/Thor_Harris", "http://dbpedia.org/resource/Th\u00e9_Lau", "http://dbpedia.org/resource/Tiago_Della_Vega", "http://dbpedia.org/resource/Tilo_Wolff", "http://dbpedia.org/resource/Tim_Blake", "http://dbpedia.org/resource/Tim_Farriss", "http://dbpedia.org/resource/Tim_Gane", "http://dbpedia.org/resource/Tim_Goodman", "http://dbpedia.org/resource/Tim_Harding_(musician)", "http://dbpedia.org/resource/Tim_McCord", "http://dbpedia.org/resource/Tim_O'Brien_(musician)", "http://dbpedia.org/resource/Tim_Rollinson", "http://dbpedia.org/resource/Tim_Sparks", "http://dbpedia.org/resource/Tim_Van_Eyken", "http://dbpedia.org/resource/Tim_Vanhamel", "http://dbpedia.org/resource/Tim_Vesely", "http://dbpedia.org/resource/Tim_Ware", "http://dbpedia.org/resource/Tim_Williams_(rock_musician)", "http://dbpedia.org/resource/Timba_Harris", "http://dbpedia.org/resource/Timo_Pieni_Huijaus", "http://dbpedia.org/resource/Timo_Rautiainen_(musician)", "http://dbpedia.org/resource/Timothy_Drury", "http://dbpedia.org/resource/Timothy_Jordan_II", "http://dbpedia.org/resource/Tiran_Porter", "http://dbpedia.org/resource/Tito_Auger", "http://dbpedia.org/resource/Tobacco_(musician)", "http://dbpedia.org/resource/Tobias_Exxel", "http://dbpedia.org/resource/Tobias_Jesso_Jr.", "http://dbpedia.org/resource/Toby_Gad", "http://dbpedia.org/resource/Toby_MacFarlaine", "http://dbpedia.org/resource/Tod_Howarth", "http://dbpedia.org/resource/Todd_Ballard", "http://dbpedia.org/resource/Todd_Youth", "http://dbpedia.org/resource/Tom_Astor", "http://dbpedia.org/resource/Tom_Dumont", "http://dbpedia.org/resource/Tom_Evans_(musician)", "http://dbpedia.org/resource/Tom_Goss_(musician)", "http://dbpedia.org/resource/Tom_Hingley", "http://dbpedia.org/resource/Tom_Hunting", "http://dbpedia.org/resource/Tom_Leadon", "http://dbpedia.org/resource/Tom_Osander", "http://dbpedia.org/resource/Tom_Principato", "http://dbpedia.org/resource/Tom_S._Englund", "http://dbpedia.org/resource/Tom_Spencer_(musician)", "http://dbpedia.org/resource/Tom_Stevens_(musician)", "http://dbpedia.org/resource/Tom_Watson_(musician)", "http://dbpedia.org/resource/Tomas_Kalnoky", "http://dbpedia.org/resource/Tomi_Joutsen", "http://dbpedia.org/resource/Tomi_Koivusaari", "http://dbpedia.org/resource/Tommi_Stumpff", "http://dbpedia.org/resource/Tommy_Crook", "http://dbpedia.org/resource/Tommy_McClennan", "http://dbpedia.org/resource/Tommy_Organ", "http://dbpedia.org/resource/Tommy_Shannon", "http://dbpedia.org/resource/Tommy_West_(producer)", "http://dbpedia.org/resource/Tomotaka_Imamichi", "http://dbpedia.org/resource/Tomoyasu_Hotei", "http://dbpedia.org/resource/Willie_Brown_(musician)", "http://dbpedia.org/resource/Willie_Chambers", "http://dbpedia.org/resource/Willie_D._Warren", "http://dbpedia.org/resource/Willie_James_Lyons", "http://dbpedia.org/resource/Wout_Steenhuis", "http://dbpedia.org/resource/Wouter_Hamel", "http://dbpedia.org/resource/Wuki", "http://dbpedia.org/resource/Wynne_Paris", "http://dbpedia.org/resource/Wynonie_Harris", "http://dbpedia.org/resource/Xuefei_Yang", "http://dbpedia.org/resource/Yanka_Dyagileva", "http://dbpedia.org/resource/Yanni_Yuzon", "http://dbpedia.org/resource/Yannis_Kotsiras", "http://dbpedia.org/resource/Yavuz_\u00c7etin", "http://dbpedia.org/resource/Ya\u011fmur_Sar\u0131g\u00fcl", "http://dbpedia.org/resource/Ya\u015far_(singer)", "http://dbpedia.org/resource/Frode_Glesnes", "http://dbpedia.org/resource/F\u00e9lix_Manuaku_Waku", "http://dbpedia.org/resource/Jem_Godfrey", "http://dbpedia.org/resource/Jessie_Baylin", "http://dbpedia.org/resource/Michael_Gulezian", "http://dbpedia.org/resource/John_Hill_(musician)", "http://dbpedia.org/resource/Mark_Chaussee", "http://dbpedia.org/resource/Mat_Brooke", "http://dbpedia.org/resource/Michael_Gurley", "http://dbpedia.org/resource/Russell_Pollard", "http://dbpedia.org/resource/Sam_Forrest", "http://dbpedia.org/resource/The_Damn_Band", "http://dbpedia.org/resource/Vic_DiCara", "http://dbpedia.org/resource/Matt_Murphy_(Canadian_musician)", "http://dbpedia.org/resource/William_Coulter", "http://dbpedia.org/resource/Marcus_Singletary", "http://dbpedia.org/resource/Martin_Rotsey", "http://dbpedia.org/resource/Susanne_Lewis", "http://dbpedia.org/resource/Thomas_Erak", "http://dbpedia.org/resource/Meg_Baird", "http://dbpedia.org/resource/Miguel_\u00c1ngel_Girollet", "http://dbpedia.org/resource/Nathan_Pacheco", "http://dbpedia.org/resource/Nathan_Rogers", "http://dbpedia.org/resource/Oliver_Chapoy", "http://dbpedia.org/resource/Earl_%22Chinna%22_Smith", "http://dbpedia.org/resource/Earl_Scruggs", "http://dbpedia.org/resource/Eck_Robertson", "http://dbpedia.org/resource/Ed_Wool", "http://dbpedia.org/resource/Eddie_Allen_(folk_musician)", "http://dbpedia.org/resource/Eddie_C._Campbell", "http://dbpedia.org/resource/Eddie_Jackson_(musician)", "http://dbpedia.org/resource/Eddie_King_(musician)", "http://dbpedia.org/resource/Eddie_Turner", "http://dbpedia.org/resource/Edgard_Scandurra", "http://dbpedia.org/resource/Edith_Frost", "http://dbpedia.org/resource/Edu_Ardanuy", "http://dbpedia.org/resource/Eduardo_Fal\u00fa", "http://dbpedia.org/resource/Eduardo_Niebla", "http://dbpedia.org/resource/Egil_Hegerberg", "http://dbpedia.org/resource/Ehsaan_Noorani", "http://dbpedia.org/resource/Ehud_Banai", "http://dbpedia.org/resource/Eicca_Toppinen", "http://dbpedia.org/resource/Eivind_R\u00f8lles", "http://dbpedia.org/resource/Eizo_Sakamoto", "http://dbpedia.org/resource/Eldar_V\u00e5gan", "http://dbpedia.org/resource/Elio_Martusciello", "http://dbpedia.org/resource/Eliot_Lewis", "http://dbpedia.org/resource/Eliot_Morris", "http://dbpedia.org/resource/Elmer_Snowden", "http://dbpedia.org/resource/Julito_Rodr\u00edguez", "http://dbpedia.org/resource/Julius_Rodriguez", "http://dbpedia.org/resource/Jun_Sung_Ahn", "http://dbpedia.org/resource/June_Yamagishi", "http://dbpedia.org/resource/Jung_Jae-il", "http://dbpedia.org/resource/Junior_Kimbrough", "http://dbpedia.org/resource/Jussi_Hakulinen", "http://dbpedia.org/resource/Justin_Currie", "http://dbpedia.org/resource/J\u00f6kull_J\u00fal\u00edusson", "http://dbpedia.org/resource/J\u00f8rn_Christensen", "http://dbpedia.org/resource/J\u00f8rn_Inge_Tunsberg", "http://dbpedia.org/resource/KC_Groves", "http://dbpedia.org/resource/KJ_Denhert", "http://dbpedia.org/resource/KK_(musician)", "http://dbpedia.org/resource/Kaan_Akal\u0131n", "http://dbpedia.org/resource/Kaci_Brown", "http://dbpedia.org/resource/Kalben", "http://dbpedia.org/resource/Kaleo_Wassman", "http://dbpedia.org/resource/Kalle_Vilpuu", "http://dbpedia.org/resource/Kamil_Rustam", "http://dbpedia.org/resource/Kaoru_Abe", "http://dbpedia.org/resource/Kapil_Srivastava", "http://dbpedia.org/resource/Kareem_Salama", "http://dbpedia.org/resource/Karel_Pl\u00edhal", "http://dbpedia.org/resource/Kari_Peitsamo", "http://dbpedia.org/resource/Karise_Eden", "http://dbpedia.org/resource/Karl_Logan", "http://dbpedia.org/resource/Lobby_Loyde", "http://dbpedia.org/resource/Lobi_Traor\u00e9", "http://dbpedia.org/resource/Logan_Robot_Gladden", "http://dbpedia.org/resource/Long_John_Hunter", "http://dbpedia.org/resource/Lonnie_Glosson", "http://dbpedia.org/resource/Lord_Ahriman", "http://dbpedia.org/resource/Lorenzo_Antonio", "http://dbpedia.org/resource/Louis_Shelton", "http://dbpedia.org/resource/Loukas_Yorkas", "http://dbpedia.org/resource/Loun\u00e8s_Matoub", "http://dbpedia.org/resource/Luca_Princiotta", "http://dbpedia.org/resource/Lucius_Borich", "http://dbpedia.org/resource/Lucky_Peterson", "http://dbpedia.org/resource/Luigi_Tenco", "http://dbpedia.org/resource/Luis_Almonte", "http://dbpedia.org/resource/Luis_Resto_(musician)", "http://dbpedia.org/resource/Lukas_Meijer", "http://dbpedia.org/resource/Luke_James_(singer)", "http://dbpedia.org/resource/Luke_O'Reilly_(Bel's_Boys)", "http://dbpedia.org/resource/Lulu_Reinhardt", "http://dbpedia.org/resource/Lurrie_Bell", "http://dbpedia.org/resource/Luther_%22Georgia_Boy%22_Johnson", "http://dbpedia.org/resource/Luther_Johnson_(Guitar_Junior)", "http://dbpedia.org/resource/Luther_Perkins", "http://dbpedia.org/resource/Luther_Tucker", "http://dbpedia.org/resource/Lynn_Taitt", "http://dbpedia.org/resource/B\u00fcrgermeista", "http://dbpedia.org/resource/Ohene", "http://dbpedia.org/resource/Oleg_Fesov", "http://dbpedia.org/resource/Oleg_Mityaev", "http://dbpedia.org/resource/Oleg_Sudakov", "http://dbpedia.org/resource/Oleg_Timofeyev", "http://dbpedia.org/resource/Oleh_Skrypka", "http://dbpedia.org/resource/Olga_de_Blanck", "http://dbpedia.org/resource/Oliver_Ackermann", "http://dbpedia.org/resource/Oliver_Fartach-Naini", "http://dbpedia.org/resource/Olli_Tukiainen", "http://dbpedia.org/resource/Ollie_Olsen", "http://dbpedia.org/resource/Omar_Bashir_(musician)", "http://dbpedia.org/resource/Onno_Tun\u00e7", "http://dbpedia.org/resource/Orenda_Fink", "http://dbpedia.org/resource/Orhan_Gencebay", "http://dbpedia.org/resource/Orhan_\u00d6lmez", "http://dbpedia.org/resource/Ori_Naftaly", "http://dbpedia.org/resource/Oscar_Dronjak", "http://dbpedia.org/resource/Osunlade", "http://dbpedia.org/resource/Otis_Taylor_(musician)", "http://dbpedia.org/resource/Otomo_Yoshihide", "http://dbpedia.org/resource/Ottmar_Liebert", "http://dbpedia.org/resource/Oumi_Kapila", "http://dbpedia.org/resource/Ovidiu_Anton", "http://dbpedia.org/resource/Owen_Campbell_(musician)", "http://dbpedia.org/resource/Claire_Holley", "http://dbpedia.org/resource/Se\u00e1n_Cannon", "http://dbpedia.org/resource/Shahin_&_Sepehr", "http://dbpedia.org/resource/Shahin_Najafi", "http://dbpedia.org/resource/Shalom_Hanoch", "http://dbpedia.org/resource/Shameboy", "http://dbpedia.org/resource/Shane_Blay", "http://dbpedia.org/resource/Shane_Gibson_(musician)", "http://dbpedia.org/resource/Shannon_Hamm", "http://dbpedia.org/resource/Shara_Nova", "http://dbpedia.org/resource/Share_Ross", "http://dbpedia.org/resource/Sharon_Anderson_(singer)", "http://dbpedia.org/resource/Shaun_Lopez", "http://dbpedia.org/resource/Shay_Raviv", "http://dbpedia.org/resource/Shea_Rose", "http://dbpedia.org/resource/Shellback_(record_producer)", "http://dbpedia.org/resource/Sherri_Youngward", "http://dbpedia.org/resource/Sheryl_Bailey", "http://dbpedia.org/resource/Shigeru_Joshima", "http://dbpedia.org/resource/Shingai_Shoniwa", "http://dbpedia.org/resource/Shoko_Sawada", "http://dbpedia.org/resource/Shorty_Medlocke", "http://dbpedia.org/resource/Shugo_Tokumaru", "http://dbpedia.org/resource/Sid_Griffin", "http://dbpedia.org/resource/Sid_McGinnis", "http://dbpedia.org/resource/Sierra_Swan", "http://dbpedia.org/resource/Silenoz", "http://dbpedia.org/resource/Sputnik_(singer)", "http://dbpedia.org/resource/Stacy_Jones", "http://dbpedia.org/resource/Staffan_Hellstrand", "http://dbpedia.org/resource/Stan_Kesler", "http://dbpedia.org/resource/Stan_Webb", "http://dbpedia.org/resource/Stanley_Sheldon", "http://dbpedia.org/resource/Stas_Namin", "http://dbpedia.org/resource/Ste_van_Holm", "http://dbpedia.org/resource/Stefan_Grossman", "http://dbpedia.org/resource/Stefano_Rosso", "http://dbpedia.org/resource/Stepan_Pasicznyk", "http://dbpedia.org/resource/Stephan_Lill", "http://dbpedia.org/resource/Stephen_Emmer", "http://dbpedia.org/resource/Stephen_Lipson", "http://dbpedia.org/resource/Stephen_Malkmus", "http://dbpedia.org/resource/Stephin_Merritt", "http://dbpedia.org/resource/Sterling_Roswell", "http://dbpedia.org/resource/Steuart_Smith", "http://dbpedia.org/resource/Steve_%22Lips%22_Kudlow", "http://dbpedia.org/resource/Steve_Asheim", "http://dbpedia.org/resource/Steve_Augeri", "http://dbpedia.org/resource/Steve_Bell_(musician)", "http://dbpedia.org/resource/Doug_Grean", "http://dbpedia.org/resource/Doug_Lancio", "http://dbpedia.org/resource/Doug_McCombs", "http://dbpedia.org/resource/Doug_Paisley", "http://dbpedia.org/resource/Johnny_Colla", "http://dbpedia.org/resource/Paola_e_Chiara", "http://dbpedia.org/resource/Eric_Von_Schmidt", "http://dbpedia.org/resource/Ernest_Ka\u02bbai", "http://dbpedia.org/resource/Laura_Jean", "http://dbpedia.org/resource/Lew_Nottke", "http://dbpedia.org/resource/Joshua_Strachan", "http://dbpedia.org/resource/King_Louie_Bankston", "http://dbpedia.org/resource/Radio_Sloan", "http://dbpedia.org/resource/Wesseh_Freeman", "http://dbpedia.org/resource/Skalpovich", "http://dbpedia.org/resource/Bias_Boshell", "http://dbpedia.org/resource/Big_Bill_Morganfield", "http://dbpedia.org/resource/Big_John_Duncan", "http://dbpedia.org/resource/Bill_Barth", "http://dbpedia.org/resource/Bill_Chinnock", "http://dbpedia.org/resource/Bill_Doss", "http://dbpedia.org/resource/Bill_Gilonis", "http://dbpedia.org/resource/Bill_Henderson_(Canadian_singer)", "http://dbpedia.org/resource/Bill_Keale", "http://dbpedia.org/resource/Bill_Leslie_(journalist)", "http://dbpedia.org/resource/Bill_Leverty", "http://dbpedia.org/resource/Bill_MacCormick", "http://dbpedia.org/resource/Bill_Nershi", "http://dbpedia.org/resource/Bill_Priddle", "http://dbpedia.org/resource/Bill_Wells", "http://dbpedia.org/resource/Billie_Maxwell", "http://dbpedia.org/resource/Billy_Bremner_(musician)", "http://dbpedia.org/resource/Billy_Crain", "http://dbpedia.org/resource/Billy_Flynn_(musician)", "http://dbpedia.org/resource/Billy_Greer", "http://dbpedia.org/resource/Billy_Hughes_(musician)", "http://dbpedia.org/resource/Billy_Mackel", "http://dbpedia.org/resource/Billy_Sawilchik", "http://dbpedia.org/resource/Billy_Smiley", "http://dbpedia.org/resource/Bj\u00f6rn_Thoroddsen", "http://dbpedia.org/resource/Bkorn", "http://dbpedia.org/resource/Black_Allan_Barker", "http://dbpedia.org/resource/Blake_Judd", "http://dbpedia.org/resource/Blind_Joe_Hill", "http://dbpedia.org/resource/Blind_Uncle_Gaspard", "http://dbpedia.org/resource/Blue_Sky_Black_Death", "http://dbpedia.org/resource/Bo_Carter", "http://dbpedia.org/resource/Bob_Atcher", "http://dbpedia.org/resource/Bob_Bogle", "http://dbpedia.org/resource/Bob_Drake_(musician)", "http://dbpedia.org/resource/Bob_Hite", "http://dbpedia.org/resource/Bob_Margolin", "http://dbpedia.org/resource/Bob_Morris_(musician)", "http://dbpedia.org/resource/Bob_Shane", "http://dbpedia.org/resource/Bob_Wootton", "http://dbpedia.org/resource/Bobby_Clancy", "http://dbpedia.org/resource/Bobby_J", "http://dbpedia.org/resource/Bobby_Keyes_(guitarist)", "http://dbpedia.org/resource/Bobby_King_(musician)", "http://dbpedia.org/resource/Bobby_Murray_(musician)", "http://dbpedia.org/resource/Bobby_Poe", "http://dbpedia.org/resource/Bobby_Radcliff", "http://dbpedia.org/resource/Bobo_Jenkins", "http://dbpedia.org/resource/Bohdan_X", "http://dbpedia.org/resource/Bojan_Pe\u010dar", "http://dbpedia.org/resource/Boogie_Bill_Webb", "http://dbpedia.org/resource/Hutch_Harris", "http://dbpedia.org/resource/H\u00e4ns'che_Weiss", "http://dbpedia.org/resource/Ian_Antono", "http://dbpedia.org/resource/Ian_Ball", "http://dbpedia.org/resource/Ian_Callanan", "http://dbpedia.org/resource/Ian_Finney", "http://dbpedia.org/resource/Ian_Gregson_(athlete)", "http://dbpedia.org/resource/Ian_M._Anderson", "http://dbpedia.org/resource/Ian_North", "http://dbpedia.org/resource/Ian_Scott_(producer)", "http://dbpedia.org/resource/Ibrica_Jusi\u0107", "http://dbpedia.org/resource/Ichiyo_Izawa", "http://dbpedia.org/resource/Ida_Maria", "http://dbpedia.org/resource/Idde_Schultz", "http://dbpedia.org/resource/Idha", "http://dbpedia.org/resource/Igor_Grigoriev", "http://dbpedia.org/resource/Ike_Reilly", "http://dbpedia.org/resource/Ike_Willis", "http://dbpedia.org/resource/Ilan_Eshkeri", "http://dbpedia.org/resource/Ilan_Rubin", "http://dbpedia.org/resource/Imaad_Wasif", "http://dbpedia.org/resource/Imre_Poniklo", "http://dbpedia.org/resource/Bigg_D", "http://dbpedia.org/resource/King_Krule", "http://dbpedia.org/resource/King_ov_Hell", "http://dbpedia.org/resource/Kipp_Lennon", "http://dbpedia.org/resource/Kirby_Gregory", "http://dbpedia.org/resource/Kirk_Pengilly", "http://dbpedia.org/resource/Kjartan_Kristiansen", "http://dbpedia.org/resource/Kjartan_Sveinsson", "http://dbpedia.org/resource/Klasse_M\u00f6llberg", "http://dbpedia.org/resource/Klaus_Heuser", "http://dbpedia.org/resource/Klaus_R\u00f6der", "http://dbpedia.org/resource/Kneel_Cohn", "http://dbpedia.org/resource/Knjaz_Varggoth", "http://dbpedia.org/resource/Knut_Schreiner", "http://dbpedia.org/resource/Knut_V\u00e6rnes", "http://dbpedia.org/resource/Kodi_Najm", "http://dbpedia.org/resource/Koga_Masao", "http://dbpedia.org/resource/Koichi_Fukuda", "http://dbpedia.org/resource/Koop_Arponen", "http://dbpedia.org/resource/Kris_Dollimore", "http://dbpedia.org/resource/Kris_Ife", "http://dbpedia.org/resource/Kristian_Ranta", "http://dbpedia.org/resource/Kristian_W\u00e5hlin", "http://dbpedia.org/resource/Kristina_Esfandiari", "http://dbpedia.org/resource/Kristofer_Steen", "http://dbpedia.org/resource/Krist\u00edn_Anna_Valt\u00fdsd\u00f3ttir", "http://dbpedia.org/resource/Kurt_Baker_(musician)", "http://dbpedia.org/resource/Kyle_Andrews", "http://dbpedia.org/resource/Kyle_Carey", "http://dbpedia.org/resource/Kyp_Malone", "http://dbpedia.org/resource/Lito_Camo", "http://dbpedia.org/resource/Little_Axe", "http://dbpedia.org/resource/Little_Freddie_King", "http://dbpedia.org/resource/Little_Hat_Jones", "http://dbpedia.org/resource/Little_Jimmy_Dickens", "http://dbpedia.org/resource/Little_Jimmy_King", "http://dbpedia.org/resource/Little_Smokey_Smothers", "http://dbpedia.org/resource/Little_Willy_Foster", "http://dbpedia.org/resource/Bryant_Clifford_Meyer", "http://dbpedia.org/resource/Brynn_Gersmehl", "http://dbpedia.org/resource/Buddy_Boy_Hawkins", "http://dbpedia.org/resource/Mia_Clarke", "http://dbpedia.org/resource/Mica_Levi", "http://dbpedia.org/resource/Micah_Massey", "http://dbpedia.org/resource/Michael_Baiardi", "http://dbpedia.org/resource/Michael_Brook", "http://dbpedia.org/resource/Michael_Burks", "http://dbpedia.org/resource/Michael_Calfan", "http://dbpedia.org/resource/Michael_Campbell_(American_musician,_born_1985)", "http://dbpedia.org/resource/Michael_Chapdelaine", "http://dbpedia.org/resource/Michael_Coleman_(blues_musician)", "http://dbpedia.org/resource/Michael_Dadap", "http://dbpedia.org/resource/Michael_Franti", "http://dbpedia.org/resource/Michael_Grimm_(musician)", "http://dbpedia.org/resource/Michael_Harwood_(musician)", "http://dbpedia.org/resource/Michael_Head_(popular_musician)", "http://dbpedia.org/resource/Michael_Jagmin", "http://dbpedia.org/resource/Michael_Johns_(singer)", "http://dbpedia.org/resource/Michael_Kang_(musician)", "http://dbpedia.org/resource/Michael_Lloyd_(music_producer)", "http://dbpedia.org/resource/Michael_Magalon", "http://dbpedia.org/resource/Michael_McCann_(composer)", "http://dbpedia.org/resource/Michael_Morales_(musician)", "http://dbpedia.org/resource/Michael_Sarver", "http://dbpedia.org/resource/Michael_Scholz", "http://dbpedia.org/resource/Michael_Todd_(musician)", "http://dbpedia.org/resource/Michael_William_Gilbert", "http://dbpedia.org/resource/Michael_Williams_(guitarist)", "http://dbpedia.org/resource/Michael_Wilton", "http://dbpedia.org/resource/Michael_de_Grussa", "http://dbpedia.org/resource/Michelle_Meldrum", "http://dbpedia.org/resource/Michiel_van_den_Bos", "http://dbpedia.org/resource/Mick_Box", "http://dbpedia.org/resource/Mick_Clarke_(musician)", "http://dbpedia.org/resource/Mick_Cripps", "http://dbpedia.org/resource/Mick_Thomas", "http://dbpedia.org/resource/Mick_Tucker", "http://dbpedia.org/resource/Mick_Whitnall", "http://dbpedia.org/resource/Micki_Free", "http://dbpedia.org/resource/Micky_Lee_Soule", "http://dbpedia.org/resource/Mighty_Joe_Young_(musician)", "http://dbpedia.org/resource/Mih\u00e1ly_V\u00edg", "http://dbpedia.org/resource/Mike_Badger", "http://dbpedia.org/resource/Mike_Clark_(guitarist)", "http://dbpedia.org/resource/Mike_Dimkich", "http://dbpedia.org/resource/Mike_Gibbins", "http://dbpedia.org/resource/Mike_Gordon", "http://dbpedia.org/resource/Mike_Johnson_(guitarist)", "http://dbpedia.org/resource/Mike_Keneally", "http://dbpedia.org/resource/Mike_Kowalski", "http://dbpedia.org/resource/Mike_Krol", "http://dbpedia.org/resource/Mike_Lerner", "http://dbpedia.org/resource/Mike_Martin_(American_guitarist)", "http://dbpedia.org/resource/Mike_Mogis", "http://dbpedia.org/resource/Mike_Morgan_(musician)", "http://dbpedia.org/resource/Mike_Pender", "http://dbpedia.org/resource/Mike_Post", "http://dbpedia.org/resource/Mike_Rutherford", "http://dbpedia.org/resource/Mike_Scheidt", "http://dbpedia.org/resource/Mike_Schuppan", "http://dbpedia.org/resource/Mike_Scott_(Scottish_musician)", "http://dbpedia.org/resource/Mike_Seeger", "http://dbpedia.org/resource/Mike_Turner_(musician)", "http://dbpedia.org/resource/Mike_Zito", "http://dbpedia.org/resource/Miki_Berenyi", "http://dbpedia.org/resource/Milan_Mladenovi\u0107", "http://dbpedia.org/resource/Miles_Benjamin_Anthony_Robinson", "http://dbpedia.org/resource/Miles_Mosley", "http://dbpedia.org/resource/Milica_Davies", "http://dbpedia.org/resource/Minute_Taker", "http://dbpedia.org/resource/Ozan_Do\u011fulu", "http://dbpedia.org/resource/Ozzie_Ahlers", "http://dbpedia.org/resource/O\u011fuz_Abadan", "http://dbpedia.org/resource/Pablo_Garc\u00eda_(musician)", "http://dbpedia.org/resource/Pablo_Minoli", "http://dbpedia.org/resource/Pablo_M\u00e1rquez_(guitarist)", "http://dbpedia.org/resource/Pablo_Sciuto", "http://dbpedia.org/resource/Paco_Arespacochaga", "http://dbpedia.org/resource/Paco_Pe\u00f1a", "http://dbpedia.org/resource/Paco_Serrano", "http://dbpedia.org/resource/Paleface_(musician)", "http://dbpedia.org/resource/Pamela_Morgan", "http://dbpedia.org/resource/Pamela_Spence", "http://dbpedia.org/resource/Pang_Long", "http://dbpedia.org/resource/Papa_Charlie_Jackson", "http://dbpedia.org/resource/Parker_Case", "http://dbpedia.org/resource/Parker_Griggs", "http://dbpedia.org/resource/Passionate_Friends_(band)", "http://dbpedia.org/resource/Pat_DiNizio", "http://dbpedia.org/resource/Pat_Hare", "http://dbpedia.org/resource/Patrick_Clifford_(musician)", "http://dbpedia.org/resource/Patrick_Simmons", "http://dbpedia.org/resource/Patrick_Vian", "http://dbpedia.org/resource/Patrick_Walden", "http://dbpedia.org/resource/Patrick_Watson_(musician)", "http://dbpedia.org/resource/Patsy_Montana", "http://dbpedia.org/resource/Patty_Schemel", "http://dbpedia.org/resource/Paul_%22Wine%22_Jones", "http://dbpedia.org/resource/Paul_Barker", "http://dbpedia.org/resource/Paul_Barrere", "http://dbpedia.org/resource/Paul_Dean_(guitarist)", "http://dbpedia.org/resource/Paul_Evans_(musician)", "http://dbpedia.org/resource/Paul_Gardiner", "http://dbpedia.org/resource/Paul_Haslinger", "http://dbpedia.org/resource/Paul_Hyde", "http://dbpedia.org/resource/Paul_Kowert", "http://dbpedia.org/resource/Paul_Leary", "http://dbpedia.org/resource/Paul_Marazzi", "http://dbpedia.org/resource/Paul_Metsers", "http://dbpedia.org/resource/Paul_Newsome", "http://dbpedia.org/resource/Paul_Rudolph_(musician)", "http://dbpedia.org/resource/Paul_Sykes_(singer)", "http://dbpedia.org/resource/Paul_Watchorn", "http://dbpedia.org/resource/Paul_Webb", "http://dbpedia.org/resource/Paul_Williams_(The_Temptations_singer)", "http://dbpedia.org/resource/Paul_Wilson_(musician)", "http://dbpedia.org/resource/Paul_Yandell", "http://dbpedia.org/resource/Chris_Collins_(singer)", "http://dbpedia.org/resource/Chris_Funk", "http://dbpedia.org/resource/Chris_Newman_(musician)", "http://dbpedia.org/resource/Chris_Rob", "http://dbpedia.org/resource/Chris_Wardman", "http://dbpedia.org/resource/Chris_Woodhouse", "http://dbpedia.org/resource/Christina_Schilling", "http://dbpedia.org/resource/Ron_Anthony", "http://dbpedia.org/resource/Ron_Elliott_(musician)", "http://dbpedia.org/resource/Ron_Emory", "http://dbpedia.org/resource/Roni_Benise", "http://dbpedia.org/resource/Ronni_Le_Tekr\u00f8", "http://dbpedia.org/resource/Ronnie_Baker_Brooks", "http://dbpedia.org/resource/Ronnie_Earl", "http://dbpedia.org/resource/Ronny_Moorings", "http://dbpedia.org/resource/Rory_Attwell", "http://dbpedia.org/resource/Rory_Block", "http://dbpedia.org/resource/Roscoe_Holcomb", "http://dbpedia.org/resource/Rosendo_Ruiz", "http://dbpedia.org/resource/Ross_Childress", "http://dbpedia.org/resource/Ross_Millard", "http://dbpedia.org/resource/Roxanne_Emery", "http://dbpedia.org/resource/Roxanne_Fontana", "http://dbpedia.org/resource/Roy_Brown_(Puerto_Rican_musician)", "http://dbpedia.org/resource/Roy_McCurdy", "http://dbpedia.org/resource/Roy_Mitchell-C\u00e1rdenas", "http://dbpedia.org/resource/Roy_Montgomery", "http://dbpedia.org/resource/Roy_Nichols", "http://dbpedia.org/resource/Roy_Phillips", "http://dbpedia.org/resource/Ruben_De_Fuentes", "http://dbpedia.org/resource/Rudy_Rotta", "http://dbpedia.org/resource/Rune_Eriksen", "http://dbpedia.org/resource/Rupam_Islam", "http://dbpedia.org/resource/Russell_Javors", "http://dbpedia.org/resource/Rust_Epique", "http://dbpedia.org/resource/Rustie", "http://dbpedia.org/resource/Ruth_Radelet", "http://dbpedia.org/resource/Ruthie_Collins", "http://dbpedia.org/resource/Ruthie_Foster", "http://dbpedia.org/resource/Ruud_Jolie", "http://dbpedia.org/resource/Ry_Cooder", "http://dbpedia.org/resource/Ryan_Dahle", "http://dbpedia.org/resource/Ryan_Helm", "http://dbpedia.org/resource/Ryan_Koenig", "http://dbpedia.org/resource/Ryan_Lofty", "http://dbpedia.org/resource/Ryan_Sinn", "http://dbpedia.org/resource/Ryo_Kawakita", "http://dbpedia.org/resource/Ryosuke_Nagaoka", "http://dbpedia.org/resource/Danny_Coralles", "http://dbpedia.org/resource/Danny_Spencer", "http://dbpedia.org/resource/Danny_Vaughn", "http://dbpedia.org/resource/David_Z_(producer)", "http://dbpedia.org/resource/Dean_Magraw", "http://dbpedia.org/resource/\u0130lyas_Yal\u00e7\u0131nta\u015f", "http://dbpedia.org/resource/\u014csama", "http://dbpedia.org/resource/Dwight_Pinkney", "http://dbpedia.org/resource/Dylan_Lardelli", "http://dbpedia.org/resource/Eamon_Hamilton", "http://dbpedia.org/resource/Ed_Boyd", "http://dbpedia.org/resource/Ed_Miller_(Scottish_folk_musician)", "http://dbpedia.org/resource/Ed_Stasium", "http://dbpedia.org/resource/Eddie_Peabody", "http://dbpedia.org/resource/Eric_Carlson_(musician)", "http://dbpedia.org/resource/Ernest_Carter_(drummer)", "http://dbpedia.org/resource/Ryan_Farish", "http://dbpedia.org/resource/Sarane_Ferret", "http://dbpedia.org/resource/Filippos_Pliatsikas", "http://dbpedia.org/resource/Flynn_Gower", "http://dbpedia.org/resource/Frank_Rogers_(record_producer)", "http://dbpedia.org/resource/Gary_Fletcher_(musician)", "http://dbpedia.org/resource/Gavin_Ward_(musician)", "http://dbpedia.org/resource/Nigel_Gavin", "http://dbpedia.org/resource/George_Kahumoku_Jr.", "http://dbpedia.org/resource/Goh_Nakamura", "http://dbpedia.org/resource/Graham_Lindsey", "http://dbpedia.org/resource/Halldor_Mar", "http://dbpedia.org/resource/Helena_Espvall", "http://dbpedia.org/resource/Jack_Dalrymple_(musician)", "http://dbpedia.org/resource/Thomas_MacLean", "http://dbpedia.org/resource/Johnny_Duhan", "http://dbpedia.org/resource/Nesey_Gallons", "http://dbpedia.org/resource/Tom_Peloso", "http://dbpedia.org/resource/Yaiya", "http://dbpedia.org/resource/Stephen_Sphincter", "http://dbpedia.org/resource/Will_Crewdson", "http://dbpedia.org/resource/Tom_Gallo", "http://dbpedia.org/resource/Bobby_Aitken", "http://dbpedia.org/resource/Catfish_Stephenson", "http://dbpedia.org/resource/Cehryl", "http://dbpedia.org/resource/Chance_McKinney", "http://dbpedia.org/resource/Channel_7_(musician)", "http://dbpedia.org/resource/Charles_Gray_(musician)", "http://dbpedia.org/resource/Yiannis_Papadopoulos_(guitarist)", "http://dbpedia.org/resource/Yoad_Nevo", "http://dbpedia.org/resource/Yohio", "http://dbpedia.org/resource/Yoon_Sang", "http://dbpedia.org/resource/Yoshiaki_Manabe", "http://dbpedia.org/resource/Yoshiaki_Miyanoue", "http://dbpedia.org/resource/Yoshie_Fruchter", "http://dbpedia.org/resource/Yoshiki_Fukuyama", "http://dbpedia.org/resource/Yppah", "http://dbpedia.org/resource/Yul_Anderson", "http://dbpedia.org/resource/Yuri_Shevchuk", "http://dbpedia.org/resource/Yutaka_Ozaki", "http://dbpedia.org/resource/Yvonne_Elliman", "http://dbpedia.org/resource/Zach_Dawes", "http://dbpedia.org/resource/Zach_Gill", "http://dbpedia.org/resource/Zachary_Hietala", "http://dbpedia.org/resource/Zang_Tianshuo", "http://dbpedia.org/resource/Zappacosta", "http://dbpedia.org/resource/Zeno_Roth", "http://dbpedia.org/resource/Zeta_Bosio", "http://dbpedia.org/resource/Zolt\u00e1n_K\u0151v\u00e1ry", "http://dbpedia.org/resource/\u00c1sgeir_Trausti", "http://dbpedia.org/resource/\u00c9abha_McMahon", "http://dbpedia.org/resource/\u00d3l\u00f6f_Arnalds", "http://dbpedia.org/resource/\u00d8ystein_Brun", "http://dbpedia.org/resource/Kawabata_Makoto", "http://dbpedia.org/resource/Kevin_Danczak", "http://dbpedia.org/resource/Kira_Willey", "http://dbpedia.org/resource/Rabbit_Brown", "http://dbpedia.org/resource/Jim_Diamond_(music_producer)", "http://dbpedia.org/resource/Sabicas", "http://dbpedia.org/resource/Ira_Cruz", "http://dbpedia.org/resource/Tony_Harmon", "http://dbpedia.org/resource/Legz_Diamond", "http://dbpedia.org/resource/Ryan_MacGrath", "http://dbpedia.org/resource/Mesh-29", "http://dbpedia.org/resource/Sean_Chambers_(musician)", "http://dbpedia.org/resource/Victoria_Sur", "http://dbpedia.org/resource/\u00c1rp\u00e1d_Szarvas", "http://dbpedia.org/resource/Rob_Barraco", "http://dbpedia.org/resource/Reverend_Freakchild", "http://dbpedia.org/resource/Lotte_Kestner", "http://dbpedia.org/resource/Ted_Hutt", "http://dbpedia.org/resource/Rex_Carroll", "http://dbpedia.org/resource/Sonny_Scott", "http://dbpedia.org/resource/Steve_Cooney", "http://dbpedia.org/resource/Zacari", "http://dbpedia.org/resource/Zhang_Ju_(musician)", "http://dbpedia.org/resource/Pat_the_White", "http://dbpedia.org/resource/Shlomo_Gaisin", "http://dbpedia.org/resource/Shovan"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/director> <http://dbpedia.org/resource/Stanley_Kubrick> . ?uri <http://dbpedia.org/property/editing> <http://dbpedia.org/resource/Anthony_Harvey> . }"}, "answers": ["http://dbpedia.org/resource/Dr._Strangelove", "http://dbpedia.org/resource/Lolita_(1962_film)"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/developer> <http://dbpedia.org/resource/Remote_Desktop_Protocol> . ?x <http://dbpedia.org/property/company> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/On_Broadway_(Smash)> <http://dbpedia.org/property/guests> ?uri } "}, "answers": ["", "Michael Cristofer as Jerry Rand", "Brian d'Arcy James as Frank Houston", "Jennifer Hudson as Veronica Moore", "Thorsten Kaye as Nick"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/capital> <http://dbpedia.org/resource/Oslo> . ?uri <http://dbpedia.org/property/country> ?x . }"}, "answers": ["2776"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Ultimate_Merger> <http://dbpedia.org/property/executiveProducer> ?uri . <http://dbpedia.org/resource/Trump_Productions> <http://dbpedia.org/ontology/keyPerson> ?uri} "}, "answers": ["http://dbpedia.org/resource/Donald_Trump"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Colorado_wine> <http://dbpedia.org/property/officialName> ?uri } "}, "answers": ["http://dbpedia.org/resource/Colorado"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/locatedInArea> <http://dbpedia.org/resource/Burr_Tuss> . ?x <http://dbpedia.org/property/crosses> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/leaderName> <http://dbpedia.org/resource/City_of_Chicago> . ?x <http://dbpedia.org/property/restingplace> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/architect> <http://dbpedia.org/resource/Mausoleum_of_Augustus> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Royalty>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/university> <http://dbpedia.org/resource/Stanford_Cardinal> . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Chiva_bus> <http://dbpedia.org/ontology/automobilePlatform> ?uri } "}, "answers": ["http://dbpedia.org/resource/Ford_Motor_Company", "http://dbpedia.org/resource/Dodge", "http://dbpedia.org/resource/Blue_Bird_Corporation"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/related> <http://dbpedia.org/resource/The_Sarah_Jane_Adventures> . ?uri <http://dbpedia.org/property/themeMusicComposer> <http://dbpedia.org/resource/Ron_Grainer> . }"}, "answers": ["http://dbpedia.org/resource/Doctor_Who"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/officialLanguage> <http://dbpedia.org/resource/Indian_English> . ?uri <http://dbpedia.org/property/residence> ?x . }"}, "answers": ["315"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/profession> <http://dbpedia.org/resource/Diplomacy> . ?x <http://dbpedia.org/property/religion> ?uri . }"}, "answers": ["1"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/knownFor> <http://dbpedia.org/resource/Linguistics> . }"}, "answers": ["22"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/nationality> <http://dbpedia.org/resource/Muslim_Brotherhood> . ?x <http://dbpedia.org/ontology/religion> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/manager> <http://dbpedia.org/resource/Caio_Zanardi> . ?x <http://dbpedia.org/property/homeGround> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/language> <http://dbpedia.org/resource/Ethiopia> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Country>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Girls_(The_Prodigy_song)> <http://dbpedia.org/property/recorded> ?uri } "}, "answers": ["http://dbpedia.org/resource/England", "http://dbpedia.org/resource/Essex"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/New_York> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/owner> <http://dbpedia.org/resource/BBC_One> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Canada> . ?x <http://dbpedia.org/property/tenants> ?uri . }"}, "answers": ["1"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lake_Uniam\u00e9si> <http://dbpedia.org/ontology/outflow> ?uri } "}, "answers": ["http://dbpedia.org/resource/Benue_River", "http://dbpedia.org/resource/Nile", "http://dbpedia.org/resource/Congo_River", "http://dbpedia.org/resource/Zambezi"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Linda_Jenness> <http://dbpedia.org/ontology/incumbent> ?uri } "}, "answers": ["http://dbpedia.org/resource/Richard_Nixon"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/cities> <http://dbpedia.org/resource/Cuman\u00e1> . ?x <http://dbpedia.org/property/country> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Sigma_TV> <http://dbpedia.org/property/headquarters> ?uri } "}, "answers": ["http://dbpedia.org/resource/Strovolos", "http://dbpedia.org/resource/Cyprus", "http://dbpedia.org/resource/Nicosia"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/affiliation> <http://dbpedia.org/resource/International_Union_of_Anarchists> . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/doctoralAdvisor> <http://dbpedia.org/resource/Jean-Claude_Latombe> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}"}, "answers": ["http://dbpedia.org/resource/James_J._Kuffner_Jr.", "http://dbpedia.org/resource/Suresh_Venkatasubramanian"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/residence> <http://dbpedia.org/resource/Wilton,_Connecticut> . }"}, "answers": ["http://dbpedia.org/resource/Samuel_Marvin", "http://dbpedia.org/resource/Charles_Marvin_(Connecticut_politician)", "http://dbpedia.org/resource/Joseph_Birchard", "http://dbpedia.org/resource/Clapp_Raymond", "http://dbpedia.org/resource/Benjamin_Hickox", "http://dbpedia.org/resource/Robert_L._Belknap"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/publisher> <http://dbpedia.org/resource/Bantam_Spectra> . ?x <http://dbpedia.org/property/series> ?uri . }"}, "answers": ["http://dbpedia.org/resource/The_Sword_of_Change", "http://dbpedia.org/resource/Science_in_the_Capital_trilogy", "Autumn Rain Trilogy", "http://dbpedia.org/resource/Bantam_Spectra", "Canon S", "http://dbpedia.org/resource/Deverry_cycle", "Mars Trilogy", "http://dbpedia.org/resource/The_Queendom_of_Sol", "Star of the Guardians", "A Song of Ice and Fire", "http://dbpedia.org/resource/Women_of_the_Otherworld", "The Han Solo Trilogy", "Canon C", "Emergence trilogy", "http://dbpedia.org/resource/The_Nightrunner_Series", "http://dbpedia.org/resource/Bridge_trilogy", "[[#Books in the series", "http://dbpedia.org/resource/The_Jenny_Casey_Trilogy", "Oxford Time Travel, #2", "http://dbpedia.org/resource/Uplift_Universe", "To Halt Armageddon", "Prelude to Dune", "http://dbpedia.org/resource/The_Farseer_Trilogy", "http://dbpedia.org/resource/The_Millennial_Contest_series", "http://dbpedia.org/resource/What_Might_Have_Been_(anthology_series)", "Blade Runner", "Nightrunner", "Legend C", "http://dbpedia.org/resource/Liveship_Traders_Trilogy", "Star Wars Books, Star Wars Legends, The Corellian Trilogy", "Brian Froud's Faerielands", "Oxford Time Travel"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/location> <http://dbpedia.org/resource/Tehran> . ?uri <http://dbpedia.org/ontology/manufacturer> ?x . }"}, "answers": ["21"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/grandsire> <http://dbpedia.org/resource/Sundridge> . ?x <http://dbpedia.org/property/awards> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/ground> <http://dbpedia.org/resource/Watkins_Glen_International> . ?x <http://dbpedia.org/property/firstTeam> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri_(screenplay) <http://dbpedia.org/property/director> <http://dbpedia.org/resource/Joel_Schumacher> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/debutTeam> <http://dbpedia.org/resource/Houston_Astros> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/BaseballTeam>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/beatifiedBy> <http://dbpedia.org/resource/Pope_Pius_X> . ?x <http://dbpedia.org/ontology/deathPlace> ?uri . }"}, "answers": ["54"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Meadow_Soprano> <http://dbpedia.org/ontology/relative> ?x . ?x <http://dbpedia.org/property/religion> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Evangelism", "http://dbpedia.org/resource/Born_again_(Christianity)", "http://dbpedia.org/resource/Buddhist", "http://dbpedia.org/resource/Roman_Catholic", "http://dbpedia.org/resource/Roman_Catholicism", "http://dbpedia.org/resource/Catholic_Church", "Roman Catholicism"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/lieutenant> <http://dbpedia.org/resource/Winston_Bryant> . ?x <http://dbpedia.org/ontology/president> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/artist> <http://dbpedia.org/resource/My_Favorite_Girl> . ?x <http://dbpedia.org/ontology/associatedBand> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/owner> <http://dbpedia.org/resource/Warner_Bros._Television> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/programmingLanguage> <http://dbpedia.org/resource/C++> . ?uri <http://dbpedia.org/ontology/operatingSystem> <http://dbpedia.org/resource/Microsoft_Windows> } "}, "answers": ["470"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/language> <http://dbpedia.org/resource/Spanish_language> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}"}, "answers": ["37"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/almaMater> <http://dbpedia.org/resource/Judge_Advocate_General's_Corps,_United_States_Army> . ?uri <http://dbpedia.org/ontology/institution> ?x . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/mouthMountain> <http://dbpedia.org/resource/Southend-on-Sea> . ?uri <http://dbpedia.org/ontology/mouthPlace> <http://dbpedia.org/resource/Essex> } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/license> <http://dbpedia.org/resource/GNU_Free_Documentation_License> . ?x <http://dbpedia.org/ontology/genre> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Allgemeine_SS> <http://dbpedia.org/ontology/leader> ?uri } "}, "answers": ["http://dbpedia.org/resource/Heinrich_Himmler"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Metro_Transit_(Minnesota)> <http://dbpedia.org/property/headquarters> ?uri } "}, "answers": ["560", "Minneapolis, Minnesota, United States", "Fred T. Heywood Office Building and Garage"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/creators> <http://dbpedia.org/resource/Frank_Miller_(comics)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/FictionalCharacter>}"}, "answers": ["1"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Spain_on_the_Road_Again> <http://dbpedia.org/ontology/narrator> ?x . ?x <http://dbpedia.org/property/birthPlace> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/doctoralAdvisor> <http://dbpedia.org/resource/Leonard_Lerman> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}"}, "answers": ["http://dbpedia.org/resource/Tom_Maniatis", "http://dbpedia.org/resource/Sidney_Altman"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Winston_Bryant> <http://dbpedia.org/property/governor> ?uri . <http://dbpedia.org/resource/Joseph_Stiglitz> <http://dbpedia.org/ontology/president> ?uri} "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/occupiedActs> <http://dbpedia.org/resource/Germany> . ?x <http://dbpedia.org/ontology/leader> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/writer> <http://dbpedia.org/resource/Robert_Schenkkan> . ?x <http://dbpedia.org/property/place> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/militaryPerson> <http://dbpedia.org/resource/WW1_(album)> . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Chevrolet_Caprice> <http://dbpedia.org/property/predecessor> ?uri } "}, "answers": ["http://dbpedia.org/resource/Pontiac_G8", "http://dbpedia.org/resource/Chevrolet_Impala", "http://dbpedia.org/resource/Chevrolet_Lumina", ""]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Blade_Runner_2:_The_Edge_of_Human> <http://dbpedia.org/ontology/series> ?uri } "}, "answers": ["http://dbpedia.org/resource/Blade_Runner_(franchise)"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/recordLabel> <http://dbpedia.org/resource/ATO_Records> . ?uri <http://dbpedia.org/property/themeMusicComposer> ?x . }"}, "answers": ["http://dbpedia.org/resource/Around_the_Horn", "http://dbpedia.org/resource/Going_to_California_(TV_series)", "http://dbpedia.org/resource/The_100_(TV_series)", "http://dbpedia.org/resource/State_of_Georgia_(TV_series)"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jim_Farley_(businessman)> <http://dbpedia.org/property/relatives> ?uri } "}, "answers": ["http://dbpedia.org/resource/Kevin_Farley", "http://dbpedia.org/resource/Chris_Farley", "http://dbpedia.org/resource/John_Farley_(actor)"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/publisher> <http://dbpedia.org/resource/Francisco_de_Robles> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book>}"}, "answers": ["http://dbpedia.org/resource/La_Galatea", "http://dbpedia.org/resource/Don_Quixote"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Hornito> <http://dbpedia.org/property/placeOfDeath> ?uri . <http://dbpedia.org/resource/Jamie_Bateman> <http://dbpedia.org/ontology/country> ?uri} "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Fazlur_Rahman_Khan> <http://dbpedia.org/ontology/restingPlace> ?uri } "}, "answers": ["http://dbpedia.org/resource/Chicago", "http://dbpedia.org/resource/Graceland_Cemetery"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Isa_(name)> <http://dbpedia.org/ontology/meaning> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/league> <http://dbpedia.org/resource/American_Hockey_League> . ?x <http://dbpedia.org/property/formerTeam> ?uri . }"}, "answers": ["1"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/school> <http://dbpedia.org/resource/Pietermaritzburg> . ?x <http://dbpedia.org/property/school> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Richard_Coke> <http://dbpedia.org/ontology/office> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/founder> <http://dbpedia.org/resource/John_Forbes_(British_Army_officer)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/City>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/riverMouth> <http://dbpedia.org/resource/Deadhead> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/River>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/John_Kotelawala> <http://dbpedia.org/property/allegiance> ?uri } "}, "answers": ["http://dbpedia.org/resource/Ceylon"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Subaru_Outback> <http://dbpedia.org/property/related> ?x . ?x <http://dbpedia.org/ontology/layout> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Henry_Cluney> <http://dbpedia.org/ontology/origin> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Xynisteri> <http://dbpedia.org/property/locationCountry> ?uri . <http://dbpedia.org/resource/Mavro> <http://dbpedia.org/ontology/origin> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/Battle_of_France> . ?x <http://dbpedia.org/ontology/award> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Distinguished_Flying_Cross_(United_Kingdom)", "http://dbpedia.org/resource/Milan_Rastislav_Stefanik_Order", "http://dbpedia.org/resource/Air_Crew_Europe_Star", "http://dbpedia.org/resource/Czechoslovak_War_Cross_1939\u20131945", "http://dbpedia.org/resource/1939\u20131945_Star", "http://dbpedia.org/resource/Croix_de_Guerre_1939\u20131945", "http://dbpedia.org/resource/Legion_of_Honour", "http://dbpedia.org/resource/Military_Order_of_the_White_Lion", "http://dbpedia.org/resource/Knight's_Cross_of_the_Iron_Cross", "http://dbpedia.org/resource/Order_of_the_British_Empire", "http://dbpedia.org/resource/Mentioned_in_dispatches", "http://dbpedia.org/resource/Order_of_the_Bath", "http://dbpedia.org/resource/Navy_Distinguished_Service_Medal", "http://dbpedia.org/resource/German_Cross", "http://dbpedia.org/resource/Distinguished_Service_Order", "http://dbpedia.org/resource/Distinguished_Flying_Cross_(United_States)", "http://dbpedia.org/resource/Croix_de_Guerre", "http://dbpedia.org/resource/Czechoslovakia", "http://dbpedia.org/resource/Order_of_the_White_Lion", "http://dbpedia.org/resource/Milan_Rastislav_\u0160tef\u00e1nik", "http://dbpedia.org/resource/Ehrenpokal_der_Luftwaffe", "http://dbpedia.org/resource/Iron_Cross", "http://dbpedia.org/resource/Distinguished_Service_Medal_(U.S._Army)", "http://dbpedia.org/resource/Legion_of_Merit", "http://dbpedia.org/resource/Croix_de_guerre_1914\u20131918_(France)", "http://dbpedia.org/resource/Order_of_Orange-Nassau", "http://dbpedia.org/resource/Order_of_Merit_of_the_Republic_of_Poland", "http://dbpedia.org/resource/Distinguished_Flying_Medal", "http://dbpedia.org/resource/1939\u20131945_Commemorative_war_medal_(France)", "http://dbpedia.org/resource/Escapees'_Medal", "http://dbpedia.org/resource/Medal_for_the_War_Wounded", "http://dbpedia.org/resource/Resistance_Medal", "http://dbpedia.org/resource/Order_of_the_Million_Elephants_and_the_White_Parasol", "http://dbpedia.org/resource/North_Africa_Security_and_Order_Operations_Commemorative_Medal", "http://dbpedia.org/resource/Colonial_Medal", "http://dbpedia.org/resource/Croix_de_guerre_des_th\u00e9\u00e2tres_d'op\u00e9rations_ext\u00e9rieures", "http://dbpedia.org/resource/Cross_for_Military_Valour", "http://dbpedia.org/resource/Imperial_Order_of_the_Dragon_of_Annam", "http://dbpedia.org/resource/Indochina_Campaign_commemorative_medal", "http://dbpedia.org/resource/Air_Force_Cross_(United_Kingdom)", "http://dbpedia.org/resource/War_Medal_1939\u20131945", "http://dbpedia.org/resource/Order_of_the_Crown_(Romania)", "http://dbpedia.org/resource/Defence_Medal_(United_Kingdom)", "http://dbpedia.org/resource/American_Red_Cross_of_Merit", "http://dbpedia.org/resource/Africa_Star", "http://dbpedia.org/resource/War_Medal_(Norway)", "http://dbpedia.org/resource/Italy_Star", "http://dbpedia.org/resource/Military_Cross", "http://dbpedia.org/resource/France_and_Germany_Star", "http://dbpedia.org/resource/Combatant's_Cross", "http://dbpedia.org/resource/Tunisia", "http://dbpedia.org/resource/Order_of_Polonia_Restituta", "http://dbpedia.org/resource/Silver_Star", "http://dbpedia.org/resource/House_Order_of_Hohenzollern", "http://dbpedia.org/resource/Military_Cross_(Belgium)", "http://dbpedia.org/resource/Queen's_Commendation_for_Valuable_Service_in_the_Air", "http://dbpedia.org/resource/Distinguished_Service_Cross_(United_Kingdom)", "http://dbpedia.org/resource/Virtuti_Militari", "http://dbpedia.org/resource/Cross_of_Valour_(Poland)", "http://dbpedia.org/resource/Air_Efficiency_Award", "http://dbpedia.org/resource/Tank_Memorial_Badge", "http://dbpedia.org/resource/Golden_Party_Badge", "http://dbpedia.org/resource/Order_of_the_Dannebrog", "http://dbpedia.org/resource/Military_Order_of_William", "http://dbpedia.org/resource/Order_of_the_Netherlands_Lion", "http://dbpedia.org/resource/Order_of_St_Michael_and_St_George", "http://dbpedia.org/resource/Order_of_Saint_John_(chartered_1888)", "http://dbpedia.org/resource/Order_of_St._Olav", "http://dbpedia.org/resource/Canadian_Forces'_Decoration", "http://dbpedia.org/resource/Order_of_Canada", "http://dbpedia.org/resource/Croix_de_guerre_(Belgium)", "http://dbpedia.org/resource/Territorial_Decoration", "http://dbpedia.org/resource/Pour_le_M\u00e9rite", "http://dbpedia.org/resource/Victoria_Cross", "http://dbpedia.org/resource/World_War_II_Victory_Medal", "http://dbpedia.org/resource/French_language", "http://dbpedia.org/resource/%22V%22_device", "http://dbpedia.org/resource/Armed_Forces_Reserve_Medal", "http://dbpedia.org/resource/European\u2013African\u2013Middle_Eastern_Campaign_Medal", "http://dbpedia.org/resource/American_Campaign_Medal", "http://dbpedia.org/resource/Navy_Cross", "http://dbpedia.org/resource/Purple_Heart", "http://dbpedia.org/resource/Order_of_Ouissam_Alaouite", "http://dbpedia.org/resource/Order_of_Independence_(Jordan)", "http://dbpedia.org/resource/Order_of_the_Thistle", "http://dbpedia.org/resource/Spanish_Cross", "http://dbpedia.org/resource/Bronze_Medal_of_Military_Valor", "http://dbpedia.org/resource/Gold_Medal_of_Military_Valour", "http://dbpedia.org/resource/German_Sports_Badge", "http://dbpedia.org/resource/Lifesaving_Medal_(Prussia)", "http://dbpedia.org/resource/Wound_Badge", "http://dbpedia.org/resource/Order_of_the_Z\u00e4hringer_Lion", "http://dbpedia.org/resource/Wiederholungsspange", "http://dbpedia.org/resource/Royal_Victorian_Order", "http://dbpedia.org/resource/Order_of_Wen-Hu", "http://dbpedia.org/resource/Sudetenland_Medal", "http://dbpedia.org/resource/The_Honour_Cross_of_the_World_War_1914/1918", "http://dbpedia.org/resource/Eastern_Medal"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Gymnastics_at_the_2008_Summer_Olympics> <http://dbpedia.org/property/artisticInArea> ?uri } "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Roh_Tae-woo> <http://dbpedia.org/property/battles> ?uri } "}, "answers": ["http://dbpedia.org/resource/Vietnam_War", "http://dbpedia.org/resource/Korean_War"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ladonia_(micronation)> <http://dbpedia.org/property/language> ?uri . <http://dbpedia.org/resource/Empire_of_Atlantium> <http://dbpedia.org/ontology/officialLanguage> ?uri} "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Irving_Chernev> <http://dbpedia.org/ontology/occupation> ?uri . <http://dbpedia.org/resource/Karen_Grigorian> . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/feministGenre> <http://dbpedia.org/resource/Feminist_stripper> . ?x <http://dbpedia.org/property/country> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/position> <http://dbpedia.org/resource/Defenceman> . ?x <http://dbpedia.org/ontology/formerTeam> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Quebec_Nordiques", "http://dbpedia.org/resource/Lukko", "http://dbpedia.org/resource/Boston_Bruins", "http://dbpedia.org/resource/Montreal_Maroons", "http://dbpedia.org/resource/New_York_Americans", "http://dbpedia.org/resource/Philadelphia_Quakers_(NHL)", "http://dbpedia.org/resource/Ottawa_Senators_(original)", "http://dbpedia.org/resource/Toronto_Maple_Leafs", "http://dbpedia.org/resource/Chicago_Blackhawks", "http://dbpedia.org/resource/New_York_Rangers", "http://dbpedia.org/resource/Philadelphia_Flyers", "http://dbpedia.org/resource/New_Glasgow_Cubs", "http://dbpedia.org/resource/Leksands_IF", "http://dbpedia.org/resource/R\u00f6gle_BK", "http://dbpedia.org/resource/Montreal_Canadiens", "http://dbpedia.org/resource/Montreal_Le_National", "http://dbpedia.org/resource/Edmonton_Eskimos_(ice_hockey)", "http://dbpedia.org/resource/Detroit_Red_Wings", "http://dbpedia.org/resource/HC_Agidel_Ufa", "http://dbpedia.org/resource/SKIF_Nizhny_Novgorod", "http://dbpedia.org/resource/Spartak-Merkury_Yekaterinburg", "http://dbpedia.org/resource/Maine_Black_Bears_women's_ice_hockey", "http://dbpedia.org/resource/Link\u00f6ping_HC_Dam", "http://dbpedia.org/resource/Herning_IK_(women)", "http://dbpedia.org/resource/Gentofte_Lady_Stars", "http://dbpedia.org/resource/Herlev_IK_Kvinder", "http://dbpedia.org/resource/Hvidovre_IK_Kvinder", "http://dbpedia.org/resource/Anaheim_Ducks", "http://dbpedia.org/resource/Winnipeg_Jets_(1972\u20131996)", "http://dbpedia.org/resource/Russian_Superleague", "http://dbpedia.org/resource/Sokil_Kyiv", "http://dbpedia.org/resource/HC_Neftekhimik_Nizhnekamsk", "http://dbpedia.org/resource/Huddinge_IK", "http://dbpedia.org/resource/Bryn\u00e4s_IF", "http://dbpedia.org/resource/Vancouver_Canucks", "http://dbpedia.org/resource/S\u00f6dert\u00e4lje_SK", "http://dbpedia.org/resource/EHC_Kloten", "http://dbpedia.org/resource/HV71", "http://dbpedia.org/resource/Arizona_Coyotes", "http://dbpedia.org/resource/Metallurg_Magnitogorsk", "http://dbpedia.org/resource/Columbus_Blue_Jackets", "http://dbpedia.org/resource/Modo_Hockey", "http://dbpedia.org/resource/Calgary_Flames", "http://dbpedia.org/resource/Florida_Panthers", "http://dbpedia.org/resource/Timr\u00e5_IK", "http://dbpedia.org/resource/Esbjerg_Energy", "http://dbpedia.org/resource/Esbjerg_IK", "http://dbpedia.org/resource/Aalborg_Pirates", "http://dbpedia.org/resource/EHC_Basel", "http://dbpedia.org/resource/SCL_Tigers", "http://dbpedia.org/resource/SC_Bern", "http://dbpedia.org/resource/Tampa_Bay_Lightning", "http://dbpedia.org/resource/Porin_\u00c4ss\u00e4t_(men's_ice_hockey)", "http://dbpedia.org/resource/Djurg\u00e5rdens_IF_Hockey", "http://dbpedia.org/resource/Ottawa_Senators", "http://dbpedia.org/resource/V\u00e4ster\u00e5s_IK", "http://dbpedia.org/resource/Diables_Rouges_de_Brian\u00e7on", "http://dbpedia.org/resource/AIK_IF", "http://dbpedia.org/resource/IK_Comet", "http://dbpedia.org/resource/\u00d6rebro_HK", "http://dbpedia.org/resource/Storhamar_Ishockey", "http://dbpedia.org/resource/Lule\u00e5_HF", "http://dbpedia.org/resource/HC_Ambr\u00ec-Piotta", "http://dbpedia.org/resource/HC_Lugano", "http://dbpedia.org/resource/EHC_Biel", "http://dbpedia.org/resource/EC_Red_Bull_Salzburg", "http://dbpedia.org/resource/National_League_(ice_hockey)", "http://dbpedia.org/resource/EHC_Arosa", "http://dbpedia.org/resource/EV_Zug", "http://dbpedia.org/resource/SC_Rapperswil-Jona_Lakers", "http://dbpedia.org/resource/Avtomobilist_Yekaterinburg", "http://dbpedia.org/resource/HC_Shakhtyor_Soligorsk", "http://dbpedia.org/resource/HK_Mogilev", "http://dbpedia.org/resource/HC_Dinamo_Minsk", "http://dbpedia.org/resource/HC_Yugra", "http://dbpedia.org/resource/Keramin_Minsk", "http://dbpedia.org/resource/Salavat_Yulaev_Ufa", "http://dbpedia.org/resource/HC_Spartak_Moscow", "http://dbpedia.org/resource/Boxers_de_Bordeaux", "http://dbpedia.org/resource/Metallurg_Novokuznetsk", "http://dbpedia.org/resource/Torpedo_Nizhny_Novgorod", "http://dbpedia.org/resource/Krylya_Sovetov_Moscow", "http://dbpedia.org/resource/Sokol_Krasnoyarsk", "http://dbpedia.org/resource/HC_Donbass", "http://dbpedia.org/resource/HC_Lada_Togliatti", "http://dbpedia.org/resource/Lokomotiv_Yaroslavl", "http://dbpedia.org/resource/Severstal_Cherepovets", "http://dbpedia.org/resource/Kristall_Elektrostal", "http://dbpedia.org/resource/Saryarka_Karagandy", "http://dbpedia.org/resource/HC_Vityaz", "http://dbpedia.org/resource/Rubin_Tyumen", "http://dbpedia.org/resource/Traktor_Chelyabinsk", "http://dbpedia.org/resource/Admiral_Vladivostok", "http://dbpedia.org/resource/HC_Sibir_Novosibirsk", "http://dbpedia.org/resource/Barys_Nur-Sultan", "http://dbpedia.org/resource/Ak_Bars_Kazan", "http://dbpedia.org/resource/Atlant_Moscow_Oblast", "http://dbpedia.org/resource/HC_Dynamo_Moscow", "http://dbpedia.org/resource/Colorado_Avalanche", "http://dbpedia.org/resource/Amur_Khabarovsk", "http://dbpedia.org/resource/Avangard_Omsk", "http://dbpedia.org/resource/HC_CSKA_Moscow", "http://dbpedia.org/resource/HC_CSKA_Sofia", "http://dbpedia.org/resource/Hannover_Scorpions", "http://dbpedia.org/resource/HC_Fassa_Falcons", "http://dbpedia.org/resource/Providence_Bruins", "http://dbpedia.org/resource/SKA_Saint_Petersburg", "http://dbpedia.org/resource/Molot-Prikamye_Perm", "http://dbpedia.org/resource/HC_Ryazan", "http://dbpedia.org/resource/MHC_Dmitrov", "http://dbpedia.org/resource/San_Jose_Sharks", "http://dbpedia.org/resource/HK_Vitebsk", "http://dbpedia.org/resource/EC_KAC", "http://dbpedia.org/resource/New_Jersey_Devils", "http://dbpedia.org/resource/Bilyi_Bars", "http://dbpedia.org/resource/Minnesota_Wild", "http://dbpedia.org/resource/Vlci_\u017dilina", "http://dbpedia.org/resource/HKM_Zvolen", "http://dbpedia.org/resource/HK_Dukla_Tren\u010d\u00edn", "http://dbpedia.org/resource/Vancouver_Giants", "http://dbpedia.org/resource/Buffalo_Sabres", "http://dbpedia.org/resource/HC_Slovan_Bratislava", "http://dbpedia.org/resource/Dallas_Stars", "http://dbpedia.org/resource/Carolina_Hurricanes", "http://dbpedia.org/resource/Edmonton_Oilers", "http://dbpedia.org/resource/Los_Angeles_Kings", "http://dbpedia.org/resource/HK_Acroni_Jesenice", "http://dbpedia.org/resource/HK_Poprad", "http://dbpedia.org/resource/HK_Slavija", "http://dbpedia.org/resource/HK_Triglav_Kranj", "http://dbpedia.org/resource/SG_Pontebba", "http://dbpedia.org/resource/Toros_Neftekamsk", "http://dbpedia.org/resource/Dragons_de_Rouen", "http://dbpedia.org/resource/Ducs_d'Angers", "http://dbpedia.org/resource/HDD_Olimpija_Ljubljana", "http://dbpedia.org/resource/SG_Cortina", "http://dbpedia.org/resource/HC_Kunlun_Red_Star", "http://dbpedia.org/resource/Nashville_Predators", "http://dbpedia.org/resource/EHC_Red_Bull_M\u00fcnchen", "http://dbpedia.org/resource/Pittsburgh_Penguins", "http://dbpedia.org/resource/Motor_\u010cesk\u00e9_Bud\u011bjovice", "http://dbpedia.org/resource/Wilkes-Barre/Scranton_Penguins", "http://dbpedia.org/resource/Stoney_Creek_Generals", "http://dbpedia.org/resource/Cardiff_Devils", "http://dbpedia.org/resource/D\u00fcsseldorfer_EG", "http://dbpedia.org/resource/Rochester_Americans", "http://dbpedia.org/resource/Oklahoma_City_Barons", "http://dbpedia.org/resource/KHL_Medve\u0161\u010dak_Zagreb", "http://dbpedia.org/resource/HC_Energie_Karlovy_Vary", "http://dbpedia.org/resource/New_York_Islanders", "http://dbpedia.org/resource/Cleveland_Monsters", "http://dbpedia.org/resource/Toronto_Marlies", "http://dbpedia.org/resource/Manitoba_Moose", "http://dbpedia.org/resource/Tucson_Roadrunners", "http://dbpedia.org/resource/Stockton_Heat", "http://dbpedia.org/resource/Hershey_Bears", "http://dbpedia.org/resource/Steinbach_Black_Wings_Linz", "http://dbpedia.org/resource/Podhale_Nowy_Targ", "http://dbpedia.org/resource/Legia_Warsaw_(ice_hockey)", "http://dbpedia.org/resource/Duna\u00fajv\u00e1rosi_Ac\u00e9lbik\u00e1k", "http://dbpedia.org/resource/Feh\u00e9rv\u00e1r_AV19", "http://dbpedia.org/resource/Ferencv\u00e1rosi_TC_(ice_hockey)", "http://dbpedia.org/resource/\u00dajpesti_TE_(ice_hockey)", "http://dbpedia.org/resource/St._Louis_Blues", "http://dbpedia.org/resource/Skellefte\u00e5_AIK", "http://dbpedia.org/resource/Malm\u00f6_Redhawks", "http://dbpedia.org/resource/Manchester_Phoenix", "http://dbpedia.org/resource/IFK_Kumla", "http://dbpedia.org/resource/Eliteserien_(ice_hockey)", "http://dbpedia.org/resource/Bodens_IK", "http://dbpedia.org/resource/English_Premier_Ice_Hockey_League", "http://dbpedia.org/resource/Liding\u00f6_Vikings", "http://dbpedia.org/resource/Norrt\u00e4lje_IK", "http://dbpedia.org/resource/Syracuse_Crunch", "http://dbpedia.org/resource/Straubing_Tigers", "http://dbpedia.org/resource/HC_Valpellice", "http://dbpedia.org/resource/Cincinnati_Mighty_Ducks", "http://dbpedia.org/resource/Adler_Mannheim", "http://dbpedia.org/resource/Binghamton_Senators", "http://dbpedia.org/resource/Krefeld_Pinguine", "http://dbpedia.org/resource/Augsburger_Panther", "http://dbpedia.org/resource/Grizzlys_Wolfsburg", "http://dbpedia.org/resource/Lausanne_HC", "http://dbpedia.org/resource/Eisb\u00e4ren_Berlin", "http://dbpedia.org/resource/ZSC_Lions", "http://dbpedia.org/resource/Wheeling_Nailers", "http://dbpedia.org/resource/Portland_Pirates", "http://dbpedia.org/resource/Iserlohn_Roosters", "http://dbpedia.org/resource/Utah_Grizzlies", "http://dbpedia.org/resource/Bridgeport_Islanders", "http://dbpedia.org/resource/Nottingham_Panthers", "http://dbpedia.org/resource/Dornbirn_Bulldogs", "http://dbpedia.org/resource/Graz_99ers", "http://dbpedia.org/resource/Stavanger_Oilers", "http://dbpedia.org/resource/Allen_Americans", "http://dbpedia.org/resource/Evansville_IceMen", "http://dbpedia.org/resource/Rapid_City_Rush", "http://dbpedia.org/resource/Ducs_de_Dijon", "http://dbpedia.org/resource/Kansas_City_Mavericks", "http://dbpedia.org/resource/Hartford_Wolf_Pack", "http://dbpedia.org/resource/Hudiksvalls_HC", "http://dbpedia.org/resource/Springfield_Falcons", "http://dbpedia.org/resource/AZ_Hav\u00ed\u0159ov", "http://dbpedia.org/resource/West_Coast_Hockey_League", "http://dbpedia.org/resource/San_Diego_Gulls_(1995\u20132006)", "http://dbpedia.org/resource/Columbus_Chill", "http://dbpedia.org/resource/Central_Hockey_League", "http://dbpedia.org/resource/ECHL", "http://dbpedia.org/resource/Indianapolis_Ice", "http://dbpedia.org/resource/British_National_League_(1996\u20132005)", "http://dbpedia.org/resource/Italian_Hockey_League_-_Serie_A", "http://dbpedia.org/resource/International_Hockey_League_(1945\u20132001)", "http://dbpedia.org/resource/Fort_Worth_Texans", "http://dbpedia.org/resource/Central_Professional_Hockey_League", "http://dbpedia.org/resource/HC_Milano_Saima", "http://dbpedia.org/resource/HC_Varese", "http://dbpedia.org/resource/Wichita_Wind", "http://dbpedia.org/resource/Muskegon_Mohawks", "http://dbpedia.org/resource/Durham_Wasps", "http://dbpedia.org/resource/SaiPa", "http://dbpedia.org/resource/Liiga", "http://dbpedia.org/resource/Espoo_Blues", "http://dbpedia.org/resource/American_Hockey_League", "http://dbpedia.org/resource/Springfield_Indians", "http://dbpedia.org/resource/Cincinnati_Stingers", "http://dbpedia.org/resource/World_Hockey_Association", "http://dbpedia.org/resource/Albany_Devils", "http://dbpedia.org/resource/San_Jose_Barracuda", "http://dbpedia.org/resource/Minnesota_North_Stars", "http://dbpedia.org/resource/Ayr_Scottish_Eagles", "http://dbpedia.org/resource/HPK", "http://dbpedia.org/resource/Dundee_Stars", "http://dbpedia.org/resource/EHC_Olten", "http://dbpedia.org/resource/Hamburg_Freezers", "http://dbpedia.org/resource/Texas_Stars", "http://dbpedia.org/resource/N\u00fcrnberg_Ice_Tigers", "http://dbpedia.org/resource/HC_Kometa_Brno", "http://dbpedia.org/resource/L\u00f6wen_Frankfurt", "http://dbpedia.org/resource/Cleveland_Barons_(2001\u20132006)", "http://dbpedia.org/resource/Quad_City_Flames", "http://dbpedia.org/resource/Worcester_Sharks", "http://dbpedia.org/resource/Oulun_K\u00e4rp\u00e4t", "http://dbpedia.org/resource/HK_Martin", "http://dbpedia.org/resource/HC_Ko\u0161ice", "http://dbpedia.org/resource/SV_Kaltern", "http://dbpedia.org/resource/MHK_Ke\u017emarok", "http://dbpedia.org/resource/HIFK_Hockey", "http://dbpedia.org/resource/HC_Bozen\u2013Bolzano", "http://dbpedia.org/resource/Link\u00f6ping_HC", "http://dbpedia.org/resource/HK_36_Skalica", "http://dbpedia.org/resource/HC_'05_Bansk\u00e1_Bystrica", "http://dbpedia.org/resource/HC_07_Detva", "http://dbpedia.org/resource/\u0160HK_37_Pie\u0161\u0165any", "http://dbpedia.org/resource/HC_Merano", "http://dbpedia.org/resource/HC_Pustertal_W\u00f6lfe", "http://dbpedia.org/resource/Mora_IK", "http://dbpedia.org/resource/HK_91_Senica", "http://dbpedia.org/resource/HK_Dukla_Michalovce", "http://dbpedia.org/resource/HK_Ru\u017einov", "http://dbpedia.org/resource/HK_Spi\u0161sk\u00e1_Nov\u00e1_Ves", "http://dbpedia.org/resource/HK_Trnava", "http://dbpedia.org/resource/Arlan_Kokshetau", "http://dbpedia.org/resource/V\u00e4xj\u00f6_Lakers", "http://dbpedia.org/resource/Mariestad_BoIS_HC", "http://dbpedia.org/resource/HockeyAllsvenskan", "http://dbpedia.org/resource/IF_Bj\u00f6rkl\u00f6ven", "http://dbpedia.org/resource/IF_Sundsvall_Hockey", "http://dbpedia.org/resource/HC_Ocel\u00e1\u0159i_T\u0159inec", "http://dbpedia.org/resource/Brest_Albatros_Hockey", "http://dbpedia.org/resource/LHC_Les_Lions", "http://dbpedia.org/resource/HC_Olomouc", "http://dbpedia.org/resource/HC_V\u00edtkovice_Ridera", "http://dbpedia.org/resource/Lemp\u00e4\u00e4l\u00e4n_Kisa", "http://dbpedia.org/resource/Muskegon_Lumberjacks_(1984\u20131992)", "http://dbpedia.org/resource/Flint_Generals_(1969\u20131985)", "http://dbpedia.org/resource/Minnesota_Moose", "http://dbpedia.org/resource/HDK_Maribor", "http://dbpedia.org/resource/HC_Davos", "http://dbpedia.org/resource/V\u00e5lerenga_Ishockey", "http://dbpedia.org/resource/Furuset_Ishockey", "http://dbpedia.org/resource/GCK_Lions", "http://dbpedia.org/resource/Atlanta_Thrashers", "http://dbpedia.org/resource/K\u00f6lner_Haie", "http://dbpedia.org/resource/Gen\u00e8ve-Servette_HC", "http://dbpedia.org/resource/HC_Dynamo_Pardubice", "http://dbpedia.org/resource/HC_Sochi", "http://dbpedia.org/resource/Beibarys_Atyrau", "http://dbpedia.org/resource/Deutsche_Eishockey_Liga", "http://dbpedia.org/resource/Hamilton_Bulldogs_(AHL)", "http://dbpedia.org/resource/Kassel_Huskies", "http://dbpedia.org/resource/Grand_Rapids_Griffins", "http://dbpedia.org/resource/Rockford_IceHogs", "http://dbpedia.org/resource/Kontinental_Hockey_League", "http://dbpedia.org/resource/HC_Slavia_Praha", "http://dbpedia.org/resource/HC_TPS", "http://dbpedia.org/resource/ETC_Crimmitschau", "http://dbpedia.org/resource/San_Antonio_Iguanas", "http://dbpedia.org/resource/Orlando_Solar_Bears_(IHL)", "http://dbpedia.org/resource/Pee_Dee_Pride", "http://dbpedia.org/resource/Asiago_Hockey_1935", "http://dbpedia.org/resource/ESC_Planegg", "http://dbpedia.org/resource/Belye_Medveditsy", "http://dbpedia.org/resource/Shelburne_Stars", "http://dbpedia.org/resource/Hockey_Punks_Vilnius", "http://dbpedia.org/resource/Kansas_City_Blades", "http://dbpedia.org/resource/Utah_Grizzlies_(1995\u20132005)", "http://dbpedia.org/resource/BK_Mlad\u00e1_Boleslav", "http://dbpedia.org/resource/HC_B\u00edl\u00ed_Tyg\u0159i_Liberec", "http://dbpedia.org/resource/Lillehammer_IK", "http://dbpedia.org/resource/Sheffield_Steelers", "http://dbpedia.org/resource/Idaho_Steelheads", "http://dbpedia.org/resource/Washington_Capitals", "http://dbpedia.org/resource/Moncton_Hawks", "http://dbpedia.org/resource/Newmarket_Saints", "http://dbpedia.org/resource/National_Hockey_League", "http://dbpedia.org/resource/Quebec_Aces", "http://dbpedia.org/resource/Binghamton_Dusters", "http://dbpedia.org/resource/Kansas_City_Blues_(ice_hockey)", "http://dbpedia.org/resource/Denver_Spurs", "http://dbpedia.org/resource/Ottawa_Civics", "http://dbpedia.org/resource/Indianapolis_Racers", "http://dbpedia.org/resource/Chicago_Cougars", "http://dbpedia.org/resource/California_Golden_Seals", "http://dbpedia.org/resource/Hartford_Whalers", "http://dbpedia.org/resource/Western_Hockey_League_(1952\u20131974)", "http://dbpedia.org/resource/Dallas_Black_Hawks", "http://dbpedia.org/resource/Portland_Buckaroos", "http://dbpedia.org/resource/Mobile_Mysticks", "http://dbpedia.org/resource/Chicago_Wolves", "http://dbpedia.org/resource/Cincinnati_Cyclones", "http://dbpedia.org/resource/Utica_Devils", "http://dbpedia.org/resource/Birmingham_Bulls_(WHA)", "http://dbpedia.org/resource/Winnipeg_Jets", "http://dbpedia.org/resource/Philadelphia_Blazers", "http://dbpedia.org/resource/Vancouver_Blazers", "http://dbpedia.org/resource/United_Hockey_League", "http://dbpedia.org/resource/Phoenix_Roadrunners_(IHL)", "http://dbpedia.org/resource/Brantford_Smoke", "http://dbpedia.org/resource/Jokerit", "http://dbpedia.org/resource/Flint_Spirits", "http://dbpedia.org/resource/New_Haven_Nighthawks", "http://dbpedia.org/resource/Kalamazoo_Wings", "http://dbpedia.org/resource/Baltimore_Skipjacks", "http://dbpedia.org/resource/Maine_Black_Bears_men's_ice_hockey", "http://dbpedia.org/resource/Hannover_Indians", "http://dbpedia.org/resource/Tappara", "http://dbpedia.org/resource/Gothiques_d'Amiens", "http://dbpedia.org/resource/Salt_Lake_Golden_Eagles", "http://dbpedia.org/resource/Moncton_Golden_Flames", "http://dbpedia.org/resource/Montreal_Wanderers", "http://dbpedia.org/resource/Toronto_Arenas", "http://dbpedia.org/resource/National_Hockey_Association", "http://dbpedia.org/resource/Quebec_Bulldogs", "http://dbpedia.org/resource/Toronto_Toros", "http://dbpedia.org/resource/Fort_Wayne_Komets", "http://dbpedia.org/resource/Detroit_Vipers", "http://dbpedia.org/resource/Houston_Aeros_(1994\u20132013)", "http://dbpedia.org/resource/Cleveland_Lumberjacks", "http://dbpedia.org/resource/Worcester_IceCats", "http://dbpedia.org/resource/Telford_Tigers", "http://dbpedia.org/resource/Milton_Keynes_Lightning", "http://dbpedia.org/resource/HC_\u0160koda_Plze\u0148", "http://dbpedia.org/resource/Orli_Znojmo", "http://dbpedia.org/resource/Ryt\u00ed\u0159i_Kladno", "http://dbpedia.org/resource/Ritten_Sport", "http://dbpedia.org/resource/Manchester_Monarchs_(AHL)", "http://dbpedia.org/resource/Swedish_Hockey_League", "http://dbpedia.org/resource/Fr\u00f6lunda_HC", "http://dbpedia.org/resource/KalPa", "http://dbpedia.org/resource/Karlskrona_HK", "http://dbpedia.org/resource/Ilves", "http://dbpedia.org/resource/Binghamton_Rangers", "http://dbpedia.org/resource/HK_Lev_Slan\u00fd", "http://dbpedia.org/resource/Pir\u00e1ti_Chomutov", "http://dbpedia.org/resource/SK_Trha\u010di_Kada\u0148", "http://dbpedia.org/resource/HC_Ben\u00e1tky_nad_Jizerou", "http://dbpedia.org/resource/HC_Beroun\u0161t\u00ed_Medv\u011bdi", "http://dbpedia.org/resource/HC_21_Pre\u0161ov", "http://dbpedia.org/resource/IHC_P\u00edsek", "http://dbpedia.org/resource/Atlanta_Flames", "http://dbpedia.org/resource/Laval_Rocket", "http://dbpedia.org/resource/Adirondack_Phantoms", "http://dbpedia.org/resource/Philadelphia_Phantoms", "http://dbpedia.org/resource/Elmira_Jackals", "http://dbpedia.org/resource/Peoria_Rivermen_(AHL)", "http://dbpedia.org/resource/North_American_Hockey_League_(1973\u20131977)", "http://dbpedia.org/resource/San_Diego_Mariners", "http://dbpedia.org/resource/Syracuse_Blazers", "http://dbpedia.org/resource/Richmond_Robins", "http://dbpedia.org/resource/New_York_Golden_Blades", "http://dbpedia.org/resource/Philadelphia_Firebirds", "http://dbpedia.org/resource/Milano_Vipers", "http://dbpedia.org/resource/Basingstoke_Bison", "http://dbpedia.org/resource/Colorado_Rockies_(NHL)", "http://dbpedia.org/resource/HK_Liep\u0101jas_Metalurgs", "http://dbpedia.org/resource/HK_Riga", "http://dbpedia.org/resource/Dinamo_Riga", "http://dbpedia.org/resource/EV_Landshut", "http://dbpedia.org/resource/Chelmet_Chelyabinsk", "http://dbpedia.org/resource/Bulat_Temirtau", "http://dbpedia.org/resource/Iowa_Stars", "http://dbpedia.org/resource/EHV_Sabres", "http://dbpedia.org/resource/HC_Eagles_Bolzano", "http://dbpedia.org/resource/SC_Riessersee_Damen", "http://dbpedia.org/resource/HC_La_Chaux-de-Fonds", "http://dbpedia.org/resource/JYP_Jyv\u00e4skyl\u00e4", "http://dbpedia.org/resource/Lahti_Pelicans", "http://dbpedia.org/resource/KooKoo_(ice_hockey_club)", "http://dbpedia.org/resource/St._Louis_Eagles", "http://dbpedia.org/resource/Gentofte_Stars", "http://dbpedia.org/resource/Anglet_Hormadi_\u00c9lite", "http://dbpedia.org/resource/Sparta_Warriors", "http://dbpedia.org/resource/Yunost_Minsk", "http://dbpedia.org/resource/Br\u00fbleurs_de_Loups", "http://dbpedia.org/resource/Nybro_Vikings", "http://dbpedia.org/resource/HC_Sparta_Praha", "http://dbpedia.org/resource/ERC_Ingolstadt", "http://dbpedia.org/resource/Belleville_Senators", "http://dbpedia.org/resource/L\u00f8renskog_IK", "http://dbpedia.org/resource/Kristianstads_IK", "http://dbpedia.org/resource/Rosenborg_IHK", "http://dbpedia.org/resource/Lowell_Devils", "http://dbpedia.org/resource/Kazzinc-Torpedo", "http://dbpedia.org/resource/Detroit_Falcons_(CoHL)", "http://dbpedia.org/resource/Kazakhmys_Satpaev", "http://dbpedia.org/resource/Dizel_Penza", "http://dbpedia.org/resource/Norfolk_Admirals_(AHL)", "http://dbpedia.org/resource/Greenville_Grrrowl", "http://dbpedia.org/resource/Yermak_Angarsk", "http://dbpedia.org/resource/HC_Rys", "http://dbpedia.org/resource/Khimik_Voskresensk_(2005)", "http://dbpedia.org/resource/HC_Kuban", "http://dbpedia.org/resource/PSK_Sakhalin", "http://dbpedia.org/resource/THK_Tver", "http://dbpedia.org/resource/Metallurg_Zhlobin", "http://dbpedia.org/resource/TKH_Toru\u0144", "http://dbpedia.org/resource/Cracovia_(ice_hockey)", "http://dbpedia.org/resource/Heilbronner_Falken", "http://dbpedia.org/resource/Wilhelmshaven-Stickhausen_EC", "http://dbpedia.org/resource/VHK_Vset\u00edn", "http://dbpedia.org/resource/KLH_Vajgar_Jind\u0159ich\u016fv_Hradec", "http://dbpedia.org/resource/HC_Litv\u00ednov", "http://dbpedia.org/resource/HC_Most", "http://dbpedia.org/resource/HC_Slovan_\u00daste\u010dt\u00ed_Lvi", "http://dbpedia.org/resource/Wichita_Thunder", "http://dbpedia.org/resource/New_Mexico_Scorpions", "http://dbpedia.org/resource/Fort_Worth_Brahmas", "http://dbpedia.org/resource/Southern_Professional_Hockey_League", "http://dbpedia.org/resource/Huntsville_Havoc", "http://dbpedia.org/resource/HC_Slezan_Opava", "http://dbpedia.org/resource/BK_Havl\u00ed\u010dk\u016fv_Brod", "http://dbpedia.org/resource/HC_Fr\u00fddek-M\u00edstek", "http://dbpedia.org/resource/London_Knights", "http://dbpedia.org/resource/HK_Nitra", "http://dbpedia.org/resource/PSG_Berani_Zl\u00edn", "http://dbpedia.org/resource/F\u00e4rjestad_BK", "http://dbpedia.org/resource/Atlantic_City_Boardwalk_Bullies", "http://dbpedia.org/resource/Yertis_Pavlodar", "http://dbpedia.org/resource/Motor_Barnaul", "http://dbpedia.org/resource/Metallurg_Serov", "http://dbpedia.org/resource/HC_Nov\u00e9_Z\u00e1mky", "http://dbpedia.org/resource/Coventry_Blaze", "http://dbpedia.org/resource/Toronto_Marlboros", "http://dbpedia.org/resource/Toronto_British_Consols", "http://dbpedia.org/resource/Berliner_Schlittschuhclub", "http://dbpedia.org/resource/China_women's_national_ice_hockey_team", "http://dbpedia.org/resource/1979\u201380_Canada_men's_national_ice_hockey_team", "http://dbpedia.org/resource/HC_Almaty", "http://dbpedia.org/resource/Maine_Nordiques", "http://dbpedia.org/resource/Dinamo_Riga_(original)", "http://dbpedia.org/resource/HC_Lipetsk", "http://dbpedia.org/resource/HC_Sarov", "http://dbpedia.org/resource/Daemyung_Killer_Whales", "http://dbpedia.org/resource/HC_MVD", "http://dbpedia.org/resource/Fran\u00e7ais_Volants", "http://dbpedia.org/resource/Drakkars_de_Caen", "http://dbpedia.org/resource/Kansas_City_Scouts", "http://dbpedia.org/resource/Charlotte_Checkers", "http://dbpedia.org/resource/Capital_District_Islanders", "http://dbpedia.org/resource/San_Antonio_Rampage", "http://dbpedia.org/resource/Schwenninger_Wild_Wings", "http://dbpedia.org/resource/Hampton_Gulls", "http://dbpedia.org/resource/Flint_Generals", "http://dbpedia.org/resource/Southern_Hockey_League_(1973\u20131977)", "http://dbpedia.org/resource/Roanoke_Valley_Rebels", "http://dbpedia.org/resource/Tidewater_Sharks", "http://dbpedia.org/resource/Winston-Salem_Polar_Twins_(SHL)", "http://dbpedia.org/resource/Long_Island_Ducks", "http://dbpedia.org/resource/Buffalo_Norsemen", "http://dbpedia.org/resource/Eastern_Hockey_League", "http://dbpedia.org/resource/Port_Huron_Flags", "http://dbpedia.org/resource/Mississippi_RiverKings", "http://dbpedia.org/resource/Muskegon_Lumberjacks_(1992\u20132010)", "http://dbpedia.org/resource/Thunder_Bay_Thunder_Cats", "http://dbpedia.org/resource/Albany_River_Rats", "http://dbpedia.org/resource/Colorado_Gold_Kings", "http://dbpedia.org/resource/Raleigh_IceCaps", "http://dbpedia.org/resource/Vegas_Golden_Knights", "http://dbpedia.org/resource/Seattle_Kraken", "http://dbpedia.org/resource/Belfast_Giants", "http://dbpedia.org/resource/Wembley_Monarchs", "http://dbpedia.org/resource/Wembley_Lions", "http://dbpedia.org/resource/San_Diego_Gulls_(1966\u20131974)", "http://dbpedia.org/resource/Columbus_Checkers", "http://dbpedia.org/resource/Long_Island_Cougars", "http://dbpedia.org/resource/Montreal_Hockey_Club", "http://dbpedia.org/resource/Vancouver_Millionaires", "http://dbpedia.org/resource/Renfrew_Creamery_Kings", "http://dbpedia.org/resource/Montreal_Shamrocks", "http://dbpedia.org/resource/Michigan_Soo_Indians", "http://dbpedia.org/resource/FC_Erzgebirge_Aue", "http://dbpedia.org/resource/ASK_Vorw\u00e4rts_Crimmitschau", "http://dbpedia.org/resource/EHC_Chur", "http://dbpedia.org/resource/CSK_VVS_Samara_(ice_hockey)", "http://dbpedia.org/resource/HC_Neman_Grodno", "http://dbpedia.org/resource/Herning_Blue_Fox", "http://dbpedia.org/resource/TUTO_Hockey", "http://dbpedia.org/resource/Calgary_Inferno", "http://dbpedia.org/resource/Syracuse_Orange_women's_ice_hockey", "http://dbpedia.org/resource/Cape_Breton_Oilers", "http://dbpedia.org/resource/Phoenix_Roadrunners_(WHA)", "http://dbpedia.org/resource/Houston_Aeros_(WHA)", "http://dbpedia.org/resource/Groningen_Grizzlies", "http://dbpedia.org/resource/Edmonton_Mercurys", "http://dbpedia.org/resource/HC_Fribourg-Gott\u00e9ron", "http://dbpedia.org/resource/Mohawk_Valley_Comets", "http://dbpedia.org/resource/Milwaukee_Admirals", "http://dbpedia.org/resource/Erie_Blades", "http://dbpedia.org/resource/Pittsburgh_Pirates_(NHL)", "http://dbpedia.org/resource/Toronto_St._Patricks", "http://dbpedia.org/resource/Providence_Reds", "http://dbpedia.org/resource/HC_Vita_H\u00e4sten", "http://dbpedia.org/resource/CSKA_Moscow", "http://dbpedia.org/resource/Sioux_Falls_Stampede", "http://dbpedia.org/resource/Roanoke_Valley_Vipers", "http://dbpedia.org/resource/HK_NIK's_Brih_Riga", "http://dbpedia.org/resource/Stalkers-Juniors_Daugavpils", "http://dbpedia.org/resource/Ligue_Magnus", "http://dbpedia.org/resource/Vaasan_Sport", "http://dbpedia.org/resource/Rungsted_Ishockey_Klub", "http://dbpedia.org/resource/SaPKo", "http://dbpedia.org/resource/Hokki", "http://dbpedia.org/resource/MHk_32_Liptovsk\u00fd_Mikul\u00e1\u0161", "http://dbpedia.org/resource/HYS_The_Hague", "http://dbpedia.org/resource/Victoria_Cougars", "http://dbpedia.org/resource/Michigan_Wolverines_men's_ice_hockey", "http://dbpedia.org/resource/Tacoma_Sabercats", "http://dbpedia.org/resource/Topeka_ScareCrows", "http://dbpedia.org/resource/EV_F\u00fcssen", "http://dbpedia.org/resource/IF_Frisk_Asker", "http://dbpedia.org/resource/National_Junior_Hockey_League", "http://dbpedia.org/resource/Avtomobilist_Karagandy", "http://dbpedia.org/resource/Kristall_Saratov", "http://dbpedia.org/resource/S\u00f8nderjyskE_Ishockey", "http://dbpedia.org/resource/HC_\u00c4ss\u00e4t_Pori_Oy", "http://dbpedia.org/resource/Russian_Penguins", "http://dbpedia.org/resource/Frederikshavn_White_Hawks", "http://dbpedia.org/resource/Sokol_Novocheboksarsk", "http://dbpedia.org/resource/Ariada_Volzhsk", "http://dbpedia.org/resource/Alberta_Pandas_ice_hockey", "http://dbpedia.org/resource/Calgary_Dinos_women's_ice_hockey", "http://dbpedia.org/resource/EVB_Eagles_S\u00fcdtirol", "http://dbpedia.org/resource/HK_Spi\u0161sk\u00e1_Nov\u00e1_Ves_(women)", "http://dbpedia.org/resource/KMH_Budapest_(women)", "http://dbpedia.org/resource/Hockey_Club_74", "http://dbpedia.org/resource/HC_Lev_Praha", "http://dbpedia.org/resource/Nomad_Nur-Sultan", "http://dbpedia.org/resource/Neftyanik_Almetyevsk", "http://dbpedia.org/resource/Dynamo_Yekaterinburg", "http://dbpedia.org/resource/Gyergy\u00f3i_Hoki_Klub", "http://dbpedia.org/resource/Dinamo-Energija_Yekaterinburg", "http://dbpedia.org/resource/Vienna_Capitals", "http://dbpedia.org/resource/HDD_Jesenice", "http://dbpedia.org/resource/Rote_Teufel_Bad_Nauheim", "http://dbpedia.org/resource/Greenville_Swamp_Rabbits", "http://dbpedia.org/resource/Quad_City_Mallards", "http://dbpedia.org/resource/Slough_Phantoms", "http://dbpedia.org/resource/Toronto_Blueshirts", "http://dbpedia.org/resource/Harringay_Racers", "http://dbpedia.org/resource/Brighton_Tigers", "http://dbpedia.org/resource/Diavoli_HC_Milano", "http://dbpedia.org/resource/Paisley_Pirates", "http://dbpedia.org/resource/Kenora_Thistles", "http://dbpedia.org/resource/Brandon_Wheat_City_Hockey_Club", "http://dbpedia.org/resource/Haileybury_Comets", "http://dbpedia.org/resource/BSC_Preussen", "http://dbpedia.org/resource/Nittorps_IK", "http://dbpedia.org/resource/IF_Troja-Ljungby", "http://dbpedia.org/resource/Greensboro_Monarchs", "http://dbpedia.org/resource/Phoenix_Mustangs", "http://dbpedia.org/resource/Austin_Ice_Bats", "http://dbpedia.org/resource/Lubbock_Cotton_Kings", "http://dbpedia.org/resource/Chesapeake_Icebreakers", "http://dbpedia.org/resource/Tulsa_Oilers", "http://dbpedia.org/resource/Toledo_Storm", "http://dbpedia.org/resource/Las_Vegas_Thunder", "http://dbpedia.org/resource/Montreal_Carabins_women's_ice_hockey", "http://dbpedia.org/resource/Ours_de_Villard-de-Lans", "http://dbpedia.org/resource/P\u00f4le_France_F\u00e9minin", "http://dbpedia.org/resource/Seibu_Princess_Rabbits", "http://dbpedia.org/resource/Daishin_IHC", "http://dbpedia.org/resource/Essen_Mosquitoes", "http://dbpedia.org/resource/HC_Dukla_Jihlava", "http://dbpedia.org/resource/EHC_Freiburg", "http://dbpedia.org/resource/HSC_Cs\u00edkszereda", "http://dbpedia.org/resource/Pingouins_de_Morzine-Avoriaz", "http://dbpedia.org/resource/Edinburgh_Capitals", "http://dbpedia.org/resource/Sheffield_Steeldogs", "http://dbpedia.org/resource/MAC_Budapest", "http://dbpedia.org/resource/Budapest_Stars", "http://dbpedia.org/resource/Iowa_Wild", "http://dbpedia.org/resource/Chamonix_HC", "http://dbpedia.org/resource/Alaska_Aces_(ECHL)", "http://dbpedia.org/resource/Florida_Everblades", "http://dbpedia.org/resource/Ontario_Reign_(ECHL)", "http://dbpedia.org/resource/Budapest_Stars_(women)", "http://dbpedia.org/resource/Hamilton_Tigers", "http://dbpedia.org/resource/Toronto_Ontarios", "http://dbpedia.org/resource/Toronto_Tecumsehs", "http://dbpedia.org/resource/Montreal_Victorias", "http://dbpedia.org/resource/Nelson_Hockey_Club", "http://dbpedia.org/resource/Cleveland_Athletic_Club_(ice_hockey)", "http://dbpedia.org/resource/Vaughan_Vipers", "http://dbpedia.org/resource/Hockey_Club_Milano", "http://dbpedia.org/resource/Lausitzer_F\u00fcchse", "http://dbpedia.org/resource/Mountfield_HK", "http://dbpedia.org/resource/EK_Engelmann_Wien", "http://dbpedia.org/resource/Calgary_Cowboys", "http://dbpedia.org/resource/Minnesota_Fighting_Saints", "http://dbpedia.org/resource/Nijmegen_Tigers", "http://dbpedia.org/resource/Pittsburgh_Keystones_(ice_hockey)", "http://dbpedia.org/resource/Portage_Lakes_Hockey_Club", "http://dbpedia.org/resource/Winnipeg_Maple_Leafs", "http://dbpedia.org/resource/Pittsburgh_Lyceum", "http://dbpedia.org/resource/Pittsburgh_Bankers", "http://dbpedia.org/resource/HK_Orange_20", "http://dbpedia.org/resource/Nybro_IF", "http://dbpedia.org/resource/MAC_Budapest_(women)", "http://dbpedia.org/resource/Aspl\u00f6ven_HC", "http://dbpedia.org/resource/Cleveland_Barons_(1937\u20131973)", "http://dbpedia.org/resource/Buffalo_Bisons_(AHL)", "http://dbpedia.org/resource/Nova_Scotia_Voyageurs", "http://dbpedia.org/resource/Boston_Braves_(AHL)", "http://dbpedia.org/resource/Saginaw_Gears_(IHL)", "http://dbpedia.org/resource/Michigan_Stags", "http://dbpedia.org/resource/Fort_Worth_Fire", "http://dbpedia.org/resource/Nashville_Ice_Flyers", "http://dbpedia.org/resource/Corpus_Christi_IceRays_(1998\u20132010)", "http://dbpedia.org/resource/Huntsville_Channel_Cats", "http://dbpedia.org/resource/Knoxville_Ice_Bears", "http://dbpedia.org/resource/Waterloo_Colts", "http://dbpedia.org/resource/Sault_Ste._Marie_Marlboros", "http://dbpedia.org/resource/Toronto_228th_Battalion", "http://dbpedia.org/resource/Cobalt_Silver_Kings", "http://dbpedia.org/resource/Halifax_Crescents", "http://dbpedia.org/resource/Dundee_Tigers", "http://dbpedia.org/resource/Earls_Court_Rangers", "http://dbpedia.org/resource/Tilburg_Trappers", "http://dbpedia.org/resource/IF_Norrk\u00f6ping", "http://dbpedia.org/resource/Kingston_Diamonds", "http://dbpedia.org/resource/Sheffield_Shadows", "http://dbpedia.org/resource/Los_Angeles_Sharks", "http://dbpedia.org/resource/Charlotte_Checkers_(1956\u20131977)", "http://dbpedia.org/resource/Seattle_Totems", "http://dbpedia.org/resource/Greensboro_Generals_(1959\u20131977)", "http://dbpedia.org/resource/Phoenix_Roadrunners_(WHL)", "http://dbpedia.org/resource/Western_Canada_Hockey_League", "http://dbpedia.org/resource/Djurg\u00e5rdens_IF", "http://dbpedia.org/resource/North_Dakota_Fighting_Hawks_women's_ice_hockey", "http://dbpedia.org/resource/Vaasan_Sport_Naiset", "http://dbpedia.org/resource/Kiekko-Espoo_Naiset", "http://dbpedia.org/resource/KalPa_Naiset", "http://dbpedia.org/resource/Koovee_(ice_hockey)", "http://dbpedia.org/resource/Tallahassee_Tiger_Sharks", "http://dbpedia.org/resource/Oklahoma_City_Blazers_(1992\u20132009)", "http://dbpedia.org/resource/Winnipeg_Maroons", "http://dbpedia.org/resource/Toronto_Professional_Hockey_Club", "http://dbpedia.org/resource/Edmonton_Hockey_Club", "http://dbpedia.org/resource/EC_Graz", "http://dbpedia.org/resource/HC_Thurgau", "http://dbpedia.org/resource/FPS_(ice_hockey)", "http://dbpedia.org/resource/EK_Zeller_Eisb\u00e4ren", "http://dbpedia.org/resource/St._Louis_Flyers", "http://dbpedia.org/resource/Minneapolis_Millers_(AHA)", "http://dbpedia.org/resource/Saskatoon_Sheiks", "http://dbpedia.org/resource/Phoenix_Roadrunners_(PHL)", "http://dbpedia.org/resource/New_Haven_Blades", "http://dbpedia.org/resource/Pacific_Hockey_League", "http://dbpedia.org/resource/Johnstown_Red_Wings", "http://dbpedia.org/resource/Long_Beach_Sharks/Rockets", "http://dbpedia.org/resource/Western_International_Hockey_League", "http://dbpedia.org/resource/Trail_Smoke_Eaters_(senior)", "http://dbpedia.org/resource/Spokane_Comets", "http://dbpedia.org/resource/Vancouver_Canucks_(WHL)", "http://dbpedia.org/resource/Spokane_Spokes", "http://dbpedia.org/resource/Alleghe_Hockey", "http://dbpedia.org/resource/Utica_Comets", "http://dbpedia.org/resource/Bratislava_Capitals", "http://dbpedia.org/resource/HC_TWK_Innsbruck", "http://dbpedia.org/resource/Swindon_Wildcats", "http://dbpedia.org/resource/Fife_Flyers", "http://dbpedia.org/resource/Whitley_Warriors", "http://dbpedia.org/resource/Glasgow_Clan", "http://dbpedia.org/resource/Manchester_Storm_(2015\u2013)", "http://dbpedia.org/resource/Newcastle_Vipers", "http://dbpedia.org/resource/Metropolitan_Riveters", "http://dbpedia.org/resource/Vermont_Catamounts_women's_ice_hockey", "http://dbpedia.org/resource/HC_Slavia_Praha_(women)", "http://dbpedia.org/resource/HC_Astana", "http://dbpedia.org/resource/KeuPa_HT", "http://dbpedia.org/resource/Imatran_Ketter\u00e4", "http://dbpedia.org/resource/Team_Kuortane", "http://dbpedia.org/resource/Bryn\u00e4s_IF_Dam", "http://dbpedia.org/resource/HC_Cherokees_Blansko", "http://dbpedia.org/resource/HC_Lvi_B\u0159eclav", "http://dbpedia.org/resource/HK_Vset\u00edn", "http://dbpedia.org/resource/HK_Olimpija", "http://dbpedia.org/resource/Asia_League_Ice_Hockey", "http://dbpedia.org/resource/Red_Eagles_Hokkaido", "http://dbpedia.org/resource/ECDC_Memmingen", "http://dbpedia.org/resource/Mestis", "http://dbpedia.org/resource/Junkkarit_HT", "http://dbpedia.org/resource/Metal_Ligaen", "http://dbpedia.org/resource/Fresno_Falcons", "http://dbpedia.org/resource/Maine_Mariners_(AHL)", "http://dbpedia.org/resource/Jets_de_Viry-Essonne", "http://dbpedia.org/resource/Peoria_Rivermen_(IHL)", "http://dbpedia.org/resource/Minnesota_Duluth_Bulldogs_women's_ice_hockey", "http://dbpedia.org/resource/HPK_Kiekkonaiset", "http://dbpedia.org/resource/Rapaces_de_Gap", "http://dbpedia.org/resource/HC_Sierre", "http://dbpedia.org/resource/Odense_Bulldogs", "http://dbpedia.org/resource/SC_Bietigheim_Steelers", "http://dbpedia.org/resource/Sherbrooke_Canadiens", "http://dbpedia.org/resource/Kalamazoo_Wings_(1974\u20132000)", "http://dbpedia.org/resource/Cleveland_Crusaders", "http://dbpedia.org/resource/Knoxville_Cherokees", "http://dbpedia.org/resource/Regina_Capitals", "http://dbpedia.org/resource/Amsterdam_Tigers", "http://dbpedia.org/resource/Red_Eagles_'s-Hertogenbosch", "http://dbpedia.org/resource/ESV_Trier", "http://dbpedia.org/resource/HC_Tornado", "http://dbpedia.org/resource/Robert_Morris_Colonials_women's_ice_hockey", "http://dbpedia.org/resource/Quinnipiac_Bobcats_women's_ice_hockey", "http://dbpedia.org/resource/Shenzhen_KRS_Vanke_Rays", "http://dbpedia.org/resource/Ilves_Naiset", "http://dbpedia.org/resource/HV71_Dam", "http://dbpedia.org/resource/Hanhals_IF", "http://dbpedia.org/resource/Minnesota_Whitecaps", "http://dbpedia.org/resource/Minnesota_State_Mavericks_women's_ice_hockey", "http://dbpedia.org/resource/Dynamo_Saint_Petersburg_(women)", "http://dbpedia.org/resource/HC_Falcons_Karvin\u00e1", "http://dbpedia.org/resource/SK_Karvin\u00e1", "http://dbpedia.org/resource/St._Lawrence_Saints_women's_ice_hockey", "http://dbpedia.org/resource/Les_Canadiennes_de_Montr\u00e9al", "http://dbpedia.org/resource/Ohio_State_Buckeyes_women's_ice_hockey", "http://dbpedia.org/resource/DVTK_Jegesmedv\u00e9k", "http://dbpedia.org/resource/High1", "http://dbpedia.org/resource/Bakersfield_Condors_(1998\u20132015)", "http://dbpedia.org/resource/Mikkelin_Jukurit", "http://dbpedia.org/resource/Boston_University_Terriers_women's_ice_hockey", "http://dbpedia.org/resource/Connecticut_Whale_(PHF)", "http://dbpedia.org/resource/Worcester_Blades", "http://dbpedia.org/resource/Obihiro_Ladies", "http://dbpedia.org/resource/Peliitat_Heinola", "http://dbpedia.org/resource/Almtuna_IS", "http://dbpedia.org/resource/Wiener_EV", "http://dbpedia.org/resource/EC_VSV", "http://dbpedia.org/resource/EHC_Lustenau", "http://dbpedia.org/resource/ESV_Kaufbeuren", "http://dbpedia.org/resource/Springfield_Thunderbirds", "http://dbpedia.org/resource/AIK_Hockey_Dam", "http://dbpedia.org/resource/Segeltorps_IF", "http://dbpedia.org/resource/Boston_College_Eagles_women's_ice_hockey", "http://dbpedia.org/resource/Mississauga_Chiefs", "http://dbpedia.org/resource/Toronto_Furies", "http://dbpedia.org/resource/Professional_Women's_Hockey_Players_Association", "http://dbpedia.org/resource/Kallinge-Ronneby_IF", "http://dbpedia.org/resource/HC_Trento", "http://dbpedia.org/resource/London_Racers", "http://dbpedia.org/resource/San_Diego_Gulls", "http://dbpedia.org/resource/Lehigh_Valley_Phantoms", "http://dbpedia.org/resource/Manitoba_Bisons_women's_ice_hockey", "http://dbpedia.org/resource/Frisk_Asker_Ishockey", "http://dbpedia.org/resource/Toledo_Walleye", "http://dbpedia.org/resource/Borl\u00e4nge_HF", "http://dbpedia.org/resource/Clarkson_Golden_Knights_women's_ice_hockey", "http://dbpedia.org/resource/Manglerud_Star_Ishockey", "http://dbpedia.org/resource/Grasshopper_Club_Z\u00fcrich", "http://dbpedia.org/resource/K\u00e4rp\u00e4t_Naiset", "http://dbpedia.org/resource/OSC_Eisladies_Berlin", "http://dbpedia.org/resource/HYC_Herentals", "http://dbpedia.org/resource/Indy_Fuel", "http://dbpedia.org/resource/CSM_Corona_Bra\u0219ov_(ice_hockey)", "http://dbpedia.org/resource/China_Dragon", "http://dbpedia.org/resource/Copenhagen_Hockey", "http://dbpedia.org/resource/Hampton_Roads_Admirals", "http://dbpedia.org/resource/Richmond_Renegades", "http://dbpedia.org/resource/London_Knights_(UK)", "http://dbpedia.org/resource/Valleyfield_Braves_(defunct)", "http://dbpedia.org/resource/New_Haven_Eagles", "http://dbpedia.org/resource/Muskegon_Zephyrs", "http://dbpedia.org/resource/New_York_Rovers", "http://dbpedia.org/resource/Chicoutimi_Saguen\u00e9ens", "http://dbpedia.org/resource/Quebec_Senior_Hockey_League", "http://dbpedia.org/resource/Cleveland_Barons_(NHL)", "http://dbpedia.org/resource/Abbotsford_Heat", "http://dbpedia.org/resource/Seattle_Metropolitans", "http://dbpedia.org/resource/Portland_Rosebuds_(ice_hockey)", "http://dbpedia.org/resource/Lada_Togliatti", "http://dbpedia.org/resource/Amarillo_Gorillas", "http://dbpedia.org/resource/Western_Professional_Hockey_League", "http://dbpedia.org/resource/Pensacola_Ice_Pilots", "http://dbpedia.org/resource/Knoxville_Speed", "http://dbpedia.org/resource/Bees_IHC", "http://dbpedia.org/resource/HC_Pre\u0161ov_Penguins", "http://dbpedia.org/resource/Peterborough_Phantoms", "http://dbpedia.org/resource/MHK_Ru\u017eomberok", "http://dbpedia.org/resource/Kalix_UHC", "http://dbpedia.org/resource/Nice_hockey_C\u00f4te_d'Azur", "http://dbpedia.org/resource/Zag\u0142\u0119bie_Sosnowiec", "http://dbpedia.org/resource/GKS_Katowice_(ice_hockey)", "http://dbpedia.org/resource/Eindhoven_Kemphanen", "http://dbpedia.org/resource/Tyumenskie_Lisitsy", "http://dbpedia.org/resource/New_Hampshire_Wildcats_women's_ice_hockey", "http://dbpedia.org/resource/IHK_Naiset", "http://dbpedia.org/resource/Porvoo-Borg\u00e5_Hunters", "http://dbpedia.org/resource/Hamilton_Canucks", "http://dbpedia.org/resource/Stockton_Thunder", "http://dbpedia.org/resource/Augusta_Lynx", "http://dbpedia.org/resource/San_Antonio_Dragons", "http://dbpedia.org/resource/San_Diego_Gulls_(1990\u20131995)", "http://dbpedia.org/resource/Jacksonville_Lizard_Kings", "http://dbpedia.org/resource/Port_Huron_Icehawks", "http://dbpedia.org/resource/Elite_Ice_Hockey_League", "http://dbpedia.org/resource/Louisiana_IceGators_(ECHL)", "http://dbpedia.org/resource/Baltimore_Bandits", "http://dbpedia.org/resource/CS_Progym_Gheorgheni", "http://dbpedia.org/resource/Binghamton_Whalers", "http://dbpedia.org/resource/American_Hockey_Association_(1992\u201393)", "http://dbpedia.org/resource/St._Thomas_Wildcats", "http://dbpedia.org/resource/Kiekko-Pojat", "http://dbpedia.org/resource/Starbulls_Rosenheim", "http://dbpedia.org/resource/HC_RT_Torax_Poruba", "http://dbpedia.org/resource/HC_ZUBR_P\u0159erov", "http://dbpedia.org/resource/Kootenay_Ice", "http://dbpedia.org/resource/HC_Vrchlab\u00ed", "http://dbpedia.org/resource/LHK_Jest\u0159\u00e1bi_Prost\u011bjov", "http://dbpedia.org/resource/Edmonton_Oil_Kings", "http://dbpedia.org/resource/Swiss_League", "http://dbpedia.org/resource/EHC_B\u00fclach", "http://dbpedia.org/resource/Orlik_Opole", "http://dbpedia.org/resource/HC_Prievidza", "http://dbpedia.org/resource/HC_Lev_Poprad", "http://dbpedia.org/resource/Portland_Winterhawks", "http://dbpedia.org/resource/Lethbridge_Broncos", "http://dbpedia.org/resource/Toledo_Goaldiggers", "http://dbpedia.org/resource/Montana_Magic", "http://dbpedia.org/resource/St._John's_Maple_Leafs", "http://dbpedia.org/resource/Innsbrucker_EV", "http://dbpedia.org/resource/G\u00f6teborg_HC", "http://dbpedia.org/resource/HC_Slovan_Moravsk\u00e1_T\u0159ebov\u00e1", "http://dbpedia.org/resource/HC_Uni\u010dov", "http://dbpedia.org/resource/RoKi_Naiset", "http://dbpedia.org/resource/Guildford_Flames", "http://dbpedia.org/resource/Raiders_IHC", "http://dbpedia.org/resource/Wisconsin_Badgers_men's_ice_hockey", "http://dbpedia.org/resource/Anyang_Halla", "http://dbpedia.org/resource/Erie_Panthers", "http://dbpedia.org/resource/South_Carolina_Stingrays", "http://dbpedia.org/resource/Charlotte_Checkers_(1993\u20132010)", "http://dbpedia.org/resource/Carolina_Thunderbirds", "http://dbpedia.org/resource/New_Haven_Senators", "http://dbpedia.org/resource/Prince_Edward_Island_Senators", "http://dbpedia.org/resource/Louisville_Icehawks", "http://dbpedia.org/resource/Ravensburg_Towerstars", "http://dbpedia.org/resource/Colorado_Eagles", "http://dbpedia.org/resource/St._John's_IceCaps", "http://dbpedia.org/resource/IK_Oskarshamn", "http://dbpedia.org/resource/Oklahoma_City_Blazers_(1965\u20131977)", "http://dbpedia.org/resource/Northeastern_Huskies_men's_ice_hockey", "http://dbpedia.org/resource/Richmond_RiverDogs", "http://dbpedia.org/resource/Richmond_Renegades_(SPHL)", "http://dbpedia.org/resource/Atlanta_Gladiators", "http://dbpedia.org/resource/Wipptal_Broncos", "http://dbpedia.org/resource/Saginaw_Hawks", "http://dbpedia.org/resource/Indianapolis_Checkers", "http://dbpedia.org/resource/Hockey_Club_de_Reims", "http://dbpedia.org/resource/Y\u00e9tis_du_Mont-Blanc", "http://dbpedia.org/resource/Cincinnati_Swords", "http://dbpedia.org/resource/Beauce_Jaros", "http://dbpedia.org/resource/Tulsa_Oilers_(1964\u20131984)", "http://dbpedia.org/resource/Cornell_Big_Red_women's_ice_hockey", "http://dbpedia.org/resource/HC_Gherd\u00ebina", "http://dbpedia.org/resource/JKH_GKS_Jastrz\u0119bie", "http://dbpedia.org/resource/\u00c9toile_Noire_de_Strasbourg", "http://dbpedia.org/resource/Czech_Extraliga", "http://dbpedia.org/resource/Odessa_Jackalopes", "http://dbpedia.org/resource/Texas_Wildcatters", "http://dbpedia.org/resource/Peoria_Rivermen_(ECHL)", "http://dbpedia.org/resource/Long_Beach_Ice_Dogs", "http://dbpedia.org/resource/Dayton_Gems_(2009\u20132012)", "http://dbpedia.org/resource/Hockey_Milano_Rossoblu", "http://dbpedia.org/resource/Gamyo_d'\u00c9pinal", "http://dbpedia.org/resource/TH_Unia_O\u015bwi\u0119cim", "http://dbpedia.org/resource/Toronto_Roadrunners", "http://dbpedia.org/resource/Nikk\u014d_Ice_Bucks", "http://dbpedia.org/resource/CSS_Prague", "http://dbpedia.org/resource/EHC_Bayreuth", "http://dbpedia.org/resource/SC_Herisau", "http://dbpedia.org/resource/Haukat", "http://dbpedia.org/resource/Kiekko-Vantaa", "http://dbpedia.org/resource/Dynamo_Balashikha", "http://dbpedia.org/resource/HC_Salamat", "http://dbpedia.org/resource/Iisalmen_Peli-Karhut", "http://dbpedia.org/resource/Kokkolan_Hermes", "http://dbpedia.org/resource/GKS_Tychy_(ice_hockey)", "http://dbpedia.org/resource/HC_Kobra_Praha", "http://dbpedia.org/resource/Fayetteville_Force", "http://dbpedia.org/resource/Birmingham_Bulls_(ECHL)", "http://dbpedia.org/resource/Ice_Hockey_Superleague", "http://dbpedia.org/resource/Las_Vegas_Wranglers", "http://dbpedia.org/resource/Omaha_Ak-Sar-Ben_Knights", "http://dbpedia.org/resource/JYP-Akatemia", "http://dbpedia.org/resource/Cornwall_River_Kings", "http://dbpedia.org/resource/Bloomington_PrairieThunder", "http://dbpedia.org/resource/Frankfurt_Lions", "http://dbpedia.org/resource/Kentucky_Thoroughblades", "http://dbpedia.org/resource/F\u00fcchse_Duisburg", "http://dbpedia.org/resource/Oberliga_(ice_hockey)", "http://dbpedia.org/resource/Stjernen_Hockey", "http://dbpedia.org/resource/Rhode_Island_Eagles", "http://dbpedia.org/resource/HC_Berounsk\u00e9_Lvice", "http://dbpedia.org/resource/HC_Cherokees", "http://dbpedia.org/resource/Tingsryds_AIF", "http://dbpedia.org/resource/JYP_Naiset", "http://dbpedia.org/resource/\u0141KS_\u0141\u00f3d\u017a", "http://dbpedia.org/resource/AZS_Warsaw", "http://dbpedia.org/resource/Ferencv\u00e1rosi_TC", "http://dbpedia.org/resource/Saint_John_Flames", "http://dbpedia.org/resource/Brown_Bears_men's_ice_hockey", "http://dbpedia.org/resource/Princeton_Tigers_women's_ice_hockey", "http://dbpedia.org/resource/Brantford_Indians", "http://dbpedia.org/resource/Sydney_Millionaires_(MaPHL)", "http://dbpedia.org/resource/Ottawa_Nationals", "http://dbpedia.org/resource/Nacka_HK", "http://dbpedia.org/resource/Columbus_Cottonmouths", "http://dbpedia.org/resource/Johnstown_Chiefs", "http://dbpedia.org/resource/ICE_Hockey_League", "http://dbpedia.org/resource/Herlev_Eagles", "http://dbpedia.org/resource/Muskegon_Lumberjacks", "http://dbpedia.org/resource/Baton_Rouge_Kingfish", "http://dbpedia.org/resource/Bossier-Shreveport_Mudbugs", "http://dbpedia.org/resource/R\u00f8dovre_Mighty_Bulls", "http://dbpedia.org/resource/Western_Hockey_League", "http://dbpedia.org/resource/Calgary_Centennials", "http://dbpedia.org/resource/Billings_Bighorns", "http://dbpedia.org/resource/Reading_Royals", "http://dbpedia.org/resource/Hull_Stingrays", "http://dbpedia.org/resource/Nijmegen_Devils", "http://dbpedia.org/resource/EV_Landsberg", "http://dbpedia.org/resource/Colgate_Raiders_women's_ice_hockey", "http://dbpedia.org/resource/EHV_Sabres_Wien", "http://dbpedia.org/resource/Ice_Avengers", "http://dbpedia.org/resource/Corsaires_de_Dunkerque", "http://dbpedia.org/resource/Scorpions_de_Mulhouse", "http://dbpedia.org/resource/Jokers_de_Cergy-Pontoise", "http://dbpedia.org/resource/SK_Hor\u00e1ck\u00e1_Slavia_T\u0159eb\u00ed\u010d", "http://dbpedia.org/resource/Bayreuth_Tigers", "http://dbpedia.org/resource/Tierps_HK", "http://dbpedia.org/resource/Spektrum_Flyers", "http://dbpedia.org/resource/Carolina_Monarchs", "http://dbpedia.org/resource/Arkansas_RiverBlades", "http://dbpedia.org/resource/Visby/Roma_HK", "http://dbpedia.org/resource/HK_95_Panthers_Pova\u017esk\u00e1_Bystrica", "http://dbpedia.org/resource/Toledo_Blades", "http://dbpedia.org/resource/Dayton_Gems", "http://dbpedia.org/resource/Omaha_Knights", "http://dbpedia.org/resource/Clarkson_University", "http://dbpedia.org/resource/National_Collegiate_Athletic_Association", "http://dbpedia.org/resource/Wisconsin_Badgers_women's_ice_hockey", "http://dbpedia.org/resource/Edmonton_Chimos", "http://dbpedia.org/resource/Lule\u00e5_HF/MSSK", "http://dbpedia.org/resource/Pittsburgh_Shamrocks", "http://dbpedia.org/resource/International_Hockey_League_(1929\u20131936)", "http://dbpedia.org/resource/Canadian\u2013American_Hockey_League", "http://dbpedia.org/resource/Cleveland_Falcons", "http://dbpedia.org/resource/Windsor_Bulldogs", "http://dbpedia.org/resource/Stony_Plain_Eagles", "http://dbpedia.org/resource/Greensboro_Generals", "http://dbpedia.org/resource/Remparts_de_Tours", "http://dbpedia.org/resource/Clermont-Lyon-Roanne", "http://dbpedia.org/resource/London_Tecumsehs", "http://dbpedia.org/resource/Quebec_Castors", "http://dbpedia.org/resource/Ottawa_Senators_(senior_hockey)", "http://dbpedia.org/resource/Philadelphia_Arrows", "http://dbpedia.org/resource/Providence_Friars_women's_ice_hockey", "http://dbpedia.org/resource/EC_Bergkamener_B\u00e4ren", "http://dbpedia.org/resource/American_Hockey_Association_(1926\u20131942)", "http://dbpedia.org/resource/Boston_Olympics", "http://dbpedia.org/resource/Pittsburgh_Hornets", "http://dbpedia.org/resource/Johnstown_Blue_Birds", "http://dbpedia.org/resource/St._Paul_Saints_(AHA)", "http://dbpedia.org/resource/Calgary_Tigers", "http://dbpedia.org/resource/Neftyanik_Leninogorsk", "http://dbpedia.org/resource/Burlington_Barracudas", "http://dbpedia.org/resource/VEU_Feldkirch", "http://dbpedia.org/resource/Team_Boro", "http://dbpedia.org/resource/Ski_IL", "http://dbpedia.org/resource/ERSC_Ottobrunn", "http://dbpedia.org/resource/Frankfurt_Young_Lions", "http://dbpedia.org/resource/MERC_Wild_Cats", "http://dbpedia.org/resource/TV_Kornwestheim", "http://dbpedia.org/resource/Des_Moines_Oak_Leafs", "http://dbpedia.org/resource/Shawinigan-Falls_Cataracts", "http://dbpedia.org/resource/Victoria_Maple_Leafs", "http://dbpedia.org/resource/Hull-Ottawa_Canadiens", "http://dbpedia.org/resource/Eastern_Professional_Hockey_League_(1959\u20131963)", "http://dbpedia.org/resource/Winnipeg_Monarchs_(senior)", "http://dbpedia.org/resource/London_Panthers", "http://dbpedia.org/resource/Victoria_Salmon_Kings", "http://dbpedia.org/resource/Eredivisie_(ice_hockey)", "http://dbpedia.org/resource/Pont_Rouge_Lois_Jeans", "http://dbpedia.org/resource/UNIS_Flyers", "http://dbpedia.org/resource/Trenton_Titans", "http://dbpedia.org/resource/Sorel-Tracy_\u00c9perviers", "http://dbpedia.org/resource/Ligue_Nord-Am\u00e9ricaine_de_Hockey", "http://dbpedia.org/resource/Tohoku_Free_Blades", "http://dbpedia.org/resource/Berlin_Dutchmen", "http://dbpedia.org/resource/Pittsburgh_Athletic_Club", "http://dbpedia.org/resource/Calumet_Miners", "http://dbpedia.org/resource/Pittsburgh_Professionals", "http://dbpedia.org/resource/Glace_Bay_Miners", "http://dbpedia.org/resource/Kansas_City_Pla-Mors", "http://dbpedia.org/resource/Oklahoma_City_Warriors_(ice_hockey)", "http://dbpedia.org/resource/Arizona_Sundogs", "http://dbpedia.org/resource/HIFK", "http://dbpedia.org/resource/STS_Sanok", "http://dbpedia.org/resource/Dresdner_Eisl\u00f6wen", "http://dbpedia.org/resource/KooKoo", "http://dbpedia.org/resource/KRS-BSU", "http://dbpedia.org/resource/DEC_Salzburg_Eagles", "http://dbpedia.org/resource/Ontario_Reign", "http://dbpedia.org/resource/Bay_State_Breakers", "http://dbpedia.org/resource/Chelmsford_Chieftains", "http://dbpedia.org/resource/Rio_Grande_Valley_Killer_Bees_(CHL)", "http://dbpedia.org/resource/JHT_Kalajoki", "http://dbpedia.org/resource/Northeastern_Huskies_women's_ice_hockey", "http://dbpedia.org/resource/Neuch\u00e2tel_Hockey_Academy", "http://dbpedia.org/resource/EV_Zug_Damen", "http://dbpedia.org/resource/SC_Reinach_Damen", "http://dbpedia.org/resource/Newcastle_Jesters", "http://dbpedia.org/resource/Bisons_de_Neuilly-sur-Marne", "http://dbpedia.org/resource/Buffalo_Beauts", "http://dbpedia.org/resource/Toronto_Aeros", "http://dbpedia.org/resource/Yale_Bulldogs_women's_ice_hockey", "http://dbpedia.org/resource/Shakers_Kerava", "http://dbpedia.org/resource/Tiikerit_H\u00e4meenlinna", "http://dbpedia.org/resource/It\u00e4-Helsingin_Kiekko", "http://dbpedia.org/resource/British_Hockey_League", "http://dbpedia.org/resource/Manchester_Storm_(1995\u20132002)", "http://dbpedia.org/resource/Dayton_Bombers", "http://dbpedia.org/resource/Virginia_Lancers", "http://dbpedia.org/resource/Albany_Choppers", "http://dbpedia.org/resource/Port_Huron_Beacons", "http://dbpedia.org/resource/Bor\u00e5s_HC", "http://dbpedia.org/resource/Adirondack_Frostbite", "http://dbpedia.org/resource/Maine_Mariners_(ECHL)", "http://dbpedia.org/resource/Major_League_Roller_Hockey", "http://dbpedia.org/resource/Odessa_Jackalopes_(1997\u20132011)", "http://dbpedia.org/resource/Buffalo_Wings_(inline_hockey)", "http://dbpedia.org/resource/Roller_Hockey_International", "http://dbpedia.org/resource/El_Paso_Buzzards", "http://dbpedia.org/resource/Winnipeg_Saints", "http://dbpedia.org/resource/Northern_Michigan_Wildcats_men's_ice_hockey", "http://dbpedia.org/resource/Bakersfield_Condors", "http://dbpedia.org/resource/Winnipeg_Wild", "http://dbpedia.org/resource/Mississippi_Sea_Wolves", "http://dbpedia.org/resource/Jackson_Bandits", "http://dbpedia.org/resource/Adirondack_Red_Wings", "http://dbpedia.org/resource/Harvard_Crimson_men's_ice_hockey", "http://dbpedia.org/resource/V\u00e4sterviks_IK", "http://dbpedia.org/resource/Adirondack_Flames", "http://dbpedia.org/resource/Laredo_Bucks", "http://dbpedia.org/resource/HK_Generals_Kiev", "http://dbpedia.org/resource/Kiekko-Espoo", "http://dbpedia.org/resource/International_Hockey_League_(1992\u20131996)", "http://dbpedia.org/resource/Soviet_Championship_League", "http://dbpedia.org/resource/Gornyak_Rudny", "http://dbpedia.org/resource/HK_Ozolnieki/Monarhs", "http://dbpedia.org/resource/HK_Riga_2000", "http://dbpedia.org/resource/ASK/Ogre", "http://dbpedia.org/resource/Juniors_Riga", "http://dbpedia.org/resource/HC_CSKA_Moscow_(1996\u20132002)", "http://dbpedia.org/resource/HK_Concept_Riga", "http://dbpedia.org/resource/HK_Vital_Riga", "http://dbpedia.org/resource/Norfolk_Admirals_(ECHL)", "http://dbpedia.org/resource/Roanoke_Rail_Yard_Dawgs", "http://dbpedia.org/resource/Atlantic_Coast_Hockey_League", "http://dbpedia.org/resource/Erie_Golden_Blades", "http://dbpedia.org/resource/HC_Dynamo_Saint_Petersburg", "http://dbpedia.org/resource/Laval_Le_Mistral", "http://dbpedia.org/resource/EHV_Sabres_Vienna", "http://dbpedia.org/resource/DEC_Graz", "http://dbpedia.org/resource/HC_Eppan_Pirates", "http://dbpedia.org/resource/HK_Iskra_Partiz\u00e1nske", "http://dbpedia.org/resource/HC_Topo\u013e\u010dany", "http://dbpedia.org/resource/MHK_Doln\u00fd_Kub\u00edn", "http://dbpedia.org/resource/Tipos_Extraliga", "http://dbpedia.org/resource/Spokane_Clippers", "http://dbpedia.org/resource/Yale_Bulldogs_men's_ice_hockey", "http://dbpedia.org/resource/Montreal_Royals", "http://dbpedia.org/resource/Baltimore_Orioles_(ice_hockey)", "http://dbpedia.org/resource/Worcester_Warriors_(ice_hockey)", "http://dbpedia.org/resource/HC_46_Bardejov", "http://dbpedia.org/resource/MHK_Dubnica_nad_V\u00e1hom", "http://dbpedia.org/resource/HD_Hidria_Jesenice", "http://dbpedia.org/resource/New_Westminster_Royals", "http://dbpedia.org/resource/Grand_Rapids_Rockets", "http://dbpedia.org/resource/Huntington_Hornets", "http://dbpedia.org/resource/Brooklyn_Crescents", "http://dbpedia.org/resource/Irish_American_Athletic_Club", "http://dbpedia.org/resource/New_York_Hockey_Club", "http://dbpedia.org/resource/New_York_Wanderers", "http://dbpedia.org/resource/Houston_Apollos", "http://dbpedia.org/resource/Baltimore_Clippers", "http://dbpedia.org/resource/Grums_IK", "http://dbpedia.org/resource/V\u00e4nersborgs_HC", "http://dbpedia.org/resource/HK_Mogo", "http://dbpedia.org/resource/SC_Rapperswil-Jona_Lakers_Damen", "http://dbpedia.org/resource/ZSC_Lions_Frauen", "http://dbpedia.org/resource/KSC_K\u00fcssnacht_am_Rigi_Damen", "http://dbpedia.org/resource/HK_2016_Trebi\u0161ov", "http://dbpedia.org/resource/HK_M\u0160K_Indian_\u017diar_nad_Hronom", "http://dbpedia.org/resource/IFK_Lepplax", "http://dbpedia.org/resource/Muik_Hockey", "http://dbpedia.org/resource/Kulager_Petropavl", "http://dbpedia.org/resource/Missouri_River_Otters", "http://dbpedia.org/resource/Newcastle_Northstars", "http://dbpedia.org/resource/EC_Bad_T\u00f6lz", "http://dbpedia.org/resource/Rovaniemen_Kiekko", "http://dbpedia.org/resource/2._Divisioona", "http://dbpedia.org/resource/KieHa", "http://dbpedia.org/resource/SiiHT", "http://dbpedia.org/resource/Columbia_Inferno", "http://dbpedia.org/resource/SC_Riessersee", "http://dbpedia.org/resource/Atlanta_Knights", "http://dbpedia.org/resource/Saint-Georges_Cool_FM_103.5", "http://dbpedia.org/resource/Saint-Hyacinthe_Chiefs", "http://dbpedia.org/resource/Sorel_Royaux", "http://dbpedia.org/resource/Japan_Ice_Hockey_League", "http://dbpedia.org/resource/Hammarby_Hockey", "http://dbpedia.org/resource/Stoczniowiec_Gda\u0144sk", "http://dbpedia.org/resource/KH_Zag\u0142\u0119bie_Sosnowiec", "http://dbpedia.org/resource/Gatineau_Olympiques", "http://dbpedia.org/resource/Syracuse_Eagles", "http://dbpedia.org/resource/Quebec_Citadelles", "http://dbpedia.org/resource/Harvard_Crimson_women's_ice_hockey", "http://dbpedia.org/resource/Pittsburgh_Victorias", "http://dbpedia.org/resource/Minnesota_Golden_Gophers_women's_ice_hockey", "http://dbpedia.org/resource/Brown_Bears_women's_ice_hockey", "http://dbpedia.org/resource/Iwakura_Peregrine", "http://dbpedia.org/resource/1987\u201388_Canada_men's_national_ice_hockey_team", "http://dbpedia.org/resource/Murrayfield_Racers", "http://dbpedia.org/resource/Hull_Thunder", "http://dbpedia.org/resource/Fischtown_Pinguins", "http://dbpedia.org/resource/St._Albert_Saints", "http://dbpedia.org/resource/SC_Riessersee_Frauen", "http://dbpedia.org/resource/TuS_Geretsried", "http://dbpedia.org/resource/SC_Reinach", "http://dbpedia.org/resource/EHC_Illnau", "http://dbpedia.org/resource/New_York_Athletic_Club", "http://dbpedia.org/resource/Yale_University", "http://dbpedia.org/resource/Serie_A", "http://dbpedia.org/resource/EHC_Uzwil", "http://dbpedia.org/resource/Pionniers_de_Chamonix_Mont-Blanc", "http://dbpedia.org/resource/Ottawa_Cliffsides", "http://dbpedia.org/resource/Ottawa_New_Edinburghs", "http://dbpedia.org/resource/Colorado_Flames", "http://dbpedia.org/resource/Albuquerque_Six-Guns", "http://dbpedia.org/resource/Jersey_Devils", "http://dbpedia.org/resource/Porin_Karhut", "http://dbpedia.org/resource/Dawson_College_Blues_women's_ice_hockey", "http://dbpedia.org/resource/RPI_Engineers_men's_ice_hockey", "http://dbpedia.org/resource/HC_Kl\u00e1\u0161terec_nad_Oh\u0159\u00ed", "http://dbpedia.org/resource/HC_Slavia_Praha_\u017eeny", "http://dbpedia.org/resource/Stanstead_College", "http://dbpedia.org/resource/Djurg\u00e5rdens_IF_Hockey_(women)", "http://dbpedia.org/resource/Merrimack_Warriors_women's_ice_hockey", "http://dbpedia.org/resource/Lethbridge_Maple_Leafs", "http://dbpedia.org/resource/Middlebury_Panthers_men's_ice_hockey", "http://dbpedia.org/resource/Edmonton_Flyers", "http://dbpedia.org/resource/2nd_Bundesliga_(ice_hockey)", "http://dbpedia.org/resource/HC_Neumarkt-Egna", "http://dbpedia.org/resource/Roanoke_Express", "http://dbpedia.org/resource/Central_Texas_Stampede", "http://dbpedia.org/resource/Waco_Wizards", "http://dbpedia.org/resource/Odense_IK_Kvinder", "http://dbpedia.org/resource/Frederikshavn_IK_Kvinder", "http://dbpedia.org/resource/Herning_IK_Kvinder", "http://dbpedia.org/resource/Leksands_IF_Dam", "http://dbpedia.org/resource/Silkeborg_Sk\u00f8jtel\u00f8berforening_af_1896", "http://dbpedia.org/resource/Sherbrooke_Jets", "http://dbpedia.org/resource/Prince_Albert_Raiders", "http://dbpedia.org/resource/Fredericton_Express", "http://dbpedia.org/resource/EV_Bomo_Thun", "http://dbpedia.org/resource/EHC_Visp_Lions", "http://dbpedia.org/resource/Modo_Hockey_Dam", "http://dbpedia.org/resource/Quad_City_Mallards_(1995\u20132007)", "http://dbpedia.org/resource/New_Brunswick_Hawks", "http://dbpedia.org/resource/Cincinnati_Tigers", "http://dbpedia.org/resource/Hamburg_Crocodiles", "http://dbpedia.org/resource/Rotterdam_Panda's", "http://dbpedia.org/resource/Utrecht_Dragons", "http://dbpedia.org/resource/Osby_IK", "http://dbpedia.org/resource/Trondheim_Black_Panthers", "http://dbpedia.org/resource/Warroad_Lakers", "http://dbpedia.org/resource/Port_Arthur_Bearcats", "http://dbpedia.org/resource/Marquette_Iron_Rangers", "http://dbpedia.org/resource/Michigan_Tech_Huskies_men's_ice_hockey", "http://dbpedia.org/resource/Naprz\u00f3d_Jan\u00f3w", "http://dbpedia.org/resource/Pittsburgh_Yellow_Jackets", "http://dbpedia.org/resource/Nippon_Paper_Cranes", "http://dbpedia.org/resource/Seibu_Prince_Rabbits", "http://dbpedia.org/resource/HC_Slavia_Praha_-_\u017eeny", "http://dbpedia.org/resource/HC_Ban\u00edk_P\u0159\u00edbram", "http://dbpedia.org/resource/Sandvikens_IK", "http://dbpedia.org/resource/HK_Prizma_Riga", "http://dbpedia.org/resource/HC_Levy", "http://dbpedia.org/resource/Columbus_Owls", "http://dbpedia.org/resource/Jersey/Hampton_Aces", "http://dbpedia.org/resource/Eastern_Hockey_League_(1978\u20131981)", "http://dbpedia.org/resource/Broome_Dusters", "http://dbpedia.org/resource/Di\u00f6_GoIF", "http://dbpedia.org/resource/BK_Star", "http://dbpedia.org/resource/GAIS_HK", "http://dbpedia.org/resource/IFK_Norrk\u00f6ping_(ice_hockey)", "http://dbpedia.org/resource/Hammarby_Hockey_(1921\u20132008)", "http://dbpedia.org/resource/Tyringe_SoSS", "http://dbpedia.org/resource/Linz_EHC", "http://dbpedia.org/resource/Vancouver_VooDoo", "http://dbpedia.org/resource/Orlando_Jackals", "http://dbpedia.org/resource/Baildon_Katowice", "http://dbpedia.org/resource/Eishockey-Bundesliga", "http://dbpedia.org/resource/ERC_Freiburg", "http://dbpedia.org/resource/FC_Girondins_de_Bordeaux", "http://dbpedia.org/resource/BIK_Karlskoga", "http://dbpedia.org/resource/Chicago_Hounds", "http://dbpedia.org/resource/Winnipeg_61st_Battalion", "http://dbpedia.org/resource/EHC_Winterthur", "http://dbpedia.org/resource/HC_Villars", "http://dbpedia.org/resource/Buffalo_Bisons", "http://dbpedia.org/resource/Indianapolis_Capitals", "http://dbpedia.org/resource/Cincinnati_Mohawks", "http://dbpedia.org/resource/Atlas_Diesels_IF", "http://dbpedia.org/resource/EHC_Saastal", "http://dbpedia.org/resource/Sion_HC", "http://dbpedia.org/resource/EHC_Visp", "http://dbpedia.org/resource/Arystan_Temirtau", "http://dbpedia.org/resource/HK_Gomel", "http://dbpedia.org/resource/Boston_Tigers_(CAHL)", "http://dbpedia.org/resource/Syracuse_Stars_(ice_hockey)", "http://dbpedia.org/resource/Buffalo_Bisons_(IHL)", "http://dbpedia.org/resource/Beast_of_New_Haven", "http://dbpedia.org/resource/Louisville_Panthers", "http://dbpedia.org/resource/IFK_Lule\u00e5", "http://dbpedia.org/resource/Tran\u00e5s_AIF", "http://dbpedia.org/resource/Lindl\u00f6vens_IF", "http://dbpedia.org/resource/Kumla_Hockey", "http://dbpedia.org/resource/Revierl\u00f6wen_Oberhausen", "http://dbpedia.org/resource/Canadian_Professional_Hockey_League", "http://dbpedia.org/resource/Cleveland_Indians_(ice_hockey)", "http://dbpedia.org/resource/Niagara_Falls_Cataracts", "http://dbpedia.org/resource/Penn_State_Nittany_Lions_women's_ice_hockey", "http://dbpedia.org/resource/Memphis_Wings", "http://dbpedia.org/resource/Johnstown_Jets", "http://dbpedia.org/resource/Amarillo_Wranglers_(1968\u20131971)", "http://dbpedia.org/resource/Chicago_Cardinals_(ice_hockey)", "http://dbpedia.org/resource/Markham_Thunder", "http://dbpedia.org/resource/Calgary_Oval_X-Treme", "http://dbpedia.org/resource/Manitoba_Maple_Leafs", "http://dbpedia.org/resource/Richmond_Rifles", "http://dbpedia.org/resource/Birmingham_South_Stars", "http://dbpedia.org/resource/Philadelphia_Ramblers", "http://dbpedia.org/resource/Chatham_Wheels", "http://dbpedia.org/resource/AIK", "http://dbpedia.org/resource/Ratinger_L\u00f6wen", "http://dbpedia.org/resource/IK_Pantern", "http://dbpedia.org/resource/\u00d6rebro_IK", "http://dbpedia.org/resource/Milwaukee_Chiefs_(ice_hockey)", "http://dbpedia.org/resource/Long_Island_Ducks_(ice_hockey)", "http://dbpedia.org/resource/Troy_Uncle_Sam_Trojans", "http://dbpedia.org/resource/Clinton_Comets", "http://dbpedia.org/resource/Hamilton_Red_Wings", "http://dbpedia.org/resource/Virginia_Wings", "http://dbpedia.org/resource/Bristol_Bulldogs", "http://dbpedia.org/resource/Flint_Bulldogs", "http://dbpedia.org/resource/Streatham_IHC", "http://dbpedia.org/resource/Milton_Keynes_Kings", "http://dbpedia.org/resource/HC_\u0160KP_Bratislava", "http://dbpedia.org/resource/\u017dHK_\u0160ari\u0161anka_Pre\u0161ov", "http://dbpedia.org/resource/Maddogs_M\u00fcnchen", "http://dbpedia.org/resource/Czechoslovak_First_Ice_Hockey_League", "http://dbpedia.org/resource/DEL2", "http://dbpedia.org/resource/HK_Nik's_Brih_Riga", "http://dbpedia.org/resource/HK_Lido_Nafta_Riga", "http://dbpedia.org/resource/HC_Izhstal", "http://dbpedia.org/resource/Latvijas_Zelts_Riga", "http://dbpedia.org/resource/US_Riga", "http://dbpedia.org/resource/Arktik-Universitet_Ukhta", "http://dbpedia.org/resource/SK_Gorny", "http://dbpedia.org/resource/Kelowna_Rockets", "http://dbpedia.org/resource/Saskatoon_Blades", "http://dbpedia.org/resource/Moose_Jaw_Warriors", "http://dbpedia.org/resource/Fargo_Force", "http://dbpedia.org/resource/Club_des_Sports_de_Meg\u00e8ve", "http://dbpedia.org/resource/LIU_Sharks_women's_ice_hockey", "http://dbpedia.org/resource/Cape_Cod_Freedoms", "http://dbpedia.org/resource/KJT_Haukat", "http://dbpedia.org/resource/Energija/GV_Elektr\u0117nai", "http://dbpedia.org/resource/HC_Temirtau", "http://dbpedia.org/resource/Hamilton_Bulldogs", "http://dbpedia.org/resource/Nyk\u00f6pings_Hockey", "http://dbpedia.org/resource/KTH_Krynica", "http://dbpedia.org/resource/KSC_K\u00fcssnacht", "http://dbpedia.org/resource/Sapporo_Snow_Brand", "http://dbpedia.org/resource/Rosenlewin_Urheilijat-38", "http://dbpedia.org/resource/Stade_Fran\u00e7ais_(ice_hockey)", "http://dbpedia.org/resource/Young-Sprinters_Hockey_Club", "http://dbpedia.org/resource/Racing_Club_de_France_(ice_hockey)", "http://dbpedia.org/resource/HC_Stadion_Litom\u011b\u0159ice", "http://dbpedia.org/resource/Seattle_Thunderbirds", "http://dbpedia.org/resource/Swift_Current_Broncos", "http://dbpedia.org/resource/Denver_Rangers", "http://dbpedia.org/resource/Draci_\u0160umperk", "http://dbpedia.org/resource/Princes_Ice_Hockey_Club", "http://dbpedia.org/resource/London_Lions_(ice_hockey)", "http://dbpedia.org/resource/Peterborough_Petes", "http://dbpedia.org/resource/HC_Vlci_Jablonec_nad_Nisou", "http://dbpedia.org/resource/NED_Hockey_Nymburk", "http://dbpedia.org/resource/SDE_Hockey", "http://dbpedia.org/resource/Sioux_City_Musketeers", "http://dbpedia.org/resource/Corpus_Christi_IceRays", "http://dbpedia.org/resource/Keravan_Shakers", "http://dbpedia.org/resource/Mj\u00f6lby_HC", "http://dbpedia.org/resource/Danderyd/T\u00e4by", "http://dbpedia.org/resource/Brampton_Beast", "http://dbpedia.org/resource/HC_Dinamo_Saint_Petersburg", "http://dbpedia.org/resource/Columbus_Stars", "http://dbpedia.org/resource/Wis\u0142a_Krak\u00f3w_(ice_hockey)", "http://dbpedia.org/resource/Spartak_Lw\u00f3w", "http://dbpedia.org/resource/Czarni_Lw\u00f3w_(ice_hockey)", "http://dbpedia.org/resource/Gornyak-UGMK", "http://dbpedia.org/resource/Moncton_Victorias", "http://dbpedia.org/resource/Denver_Pioneers_men's_ice_hockey", "http://dbpedia.org/resource/Cochrane_Crunch", "http://dbpedia.org/resource/Hasle-L\u00f8ren_IL", "http://dbpedia.org/resource/Boston_Pride", "http://dbpedia.org/resource/Mitsuboshi_Daito_Perigrine", "http://dbpedia.org/resource/HK_Levice", "http://dbpedia.org/resource/Spokane_Canaries", "http://dbpedia.org/resource/Hockey_Pergine", "http://dbpedia.org/resource/HC_Red_Ice", "http://dbpedia.org/resource/HC_Ceresio", "http://dbpedia.org/resource/HC_Pieve_di_Cadore", "http://dbpedia.org/resource/Castors_d'Avignon", "http://dbpedia.org/resource/Brockville_Braves", "http://dbpedia.org/resource/Biryusa_Krasnoyarsk", "http://dbpedia.org/resource/Diables_Noirs_de_Tours", "http://dbpedia.org/resource/Atlantic_City_Sea_Gulls", "http://dbpedia.org/resource/EHC_St._Moritz", "http://dbpedia.org/resource/IK_G\u00f6ta", "http://dbpedia.org/resource/Rockford_IceHogs_(UHL)", "http://dbpedia.org/resource/Peterborough_Pirates", "http://dbpedia.org/resource/SC_Weinfelden_Ladies", "http://dbpedia.org/resource/Hvidovre_Ishockey_Klub_Kvinder", "http://dbpedia.org/resource/Newark_Bulldogs", "http://dbpedia.org/resource/W\u0142\u00f3kniarz_Zgierz", "http://dbpedia.org/resource/Pite\u00e5_IF", "http://dbpedia.org/resource/SC_Weinfelden", "http://dbpedia.org/resource/TSV_Erding", "http://dbpedia.org/resource/Port_Huron_Border_Cats", "http://dbpedia.org/resource/Blackpool_Seagulls", "http://dbpedia.org/resource/New_Orleans_Brass", "http://dbpedia.org/resource/Fredericton_Canadiens", "http://dbpedia.org/resource/HC_Lions_Courmaosta", "http://dbpedia.org/resource/Jacksonville_Rockets", "http://dbpedia.org/resource/Stocksunds_IF", "http://dbpedia.org/resource/IK_Vita_H\u00e4sten", "http://dbpedia.org/resource/Des_Moines_Capitols", "http://dbpedia.org/resource/Winston-Salem_IceHawks", "http://dbpedia.org/resource/Minneapolis_Bruins", "http://dbpedia.org/resource/Boston_College_Eagles_men's_ice_hockey", "http://dbpedia.org/resource/HC_Devils_Milano", "http://dbpedia.org/resource/Nashville_South_Stars", "http://dbpedia.org/resource/Halifax_Citadels", "http://dbpedia.org/resource/Ron_Flockhart_(ice_hockey)", "http://dbpedia.org/resource/BC_Samara", "http://dbpedia.org/resource/Newfoundland_Growlers", "http://dbpedia.org/resource/HKMK_Bled", "http://dbpedia.org/resource/Moose_Jaw_Maroons", "http://dbpedia.org/resource/Winnipeg_Maroons_(ice_hockey)", "http://dbpedia.org/resource/Winnipeg_Falcons", "http://dbpedia.org/resource/Miami_Matadors", "http://dbpedia.org/resource/HIFK_Naiset", "http://dbpedia.org/resource/SaiPa_Naiset", "http://dbpedia.org/resource/York_Lions_women's_ice_hockey", "http://dbpedia.org/resource/Acadie\u2013Bathurst_Titan", "http://dbpedia.org/resource/Drummondville_Voltigeurs", "http://dbpedia.org/resource/Thetford_Assurancia", "http://dbpedia.org/resource/Trois-Rivi\u00e8res_Draveurs_(LNAH)", "http://dbpedia.org/resource/M\u00f6rrums_GoIS_IK", "http://dbpedia.org/resource/HK_Aktobe", "http://dbpedia.org/resource/Sollefte\u00e5_HK", "http://dbpedia.org/resource/San_Francisco_Bulls", "http://dbpedia.org/resource/HK_Vojvodina", "http://dbpedia.org/resource/Utrecht_Rheem_Racers", "http://dbpedia.org/resource/Brantford_Blast", "http://dbpedia.org/resource/North_Sea_Cup", "http://dbpedia.org/resource/Motor_City_Mechanics", "http://dbpedia.org/resource/Steaua_Rangers", "http://dbpedia.org/resource/Romanian_Hockey_League", "http://dbpedia.org/resource/Allan_Cup_Hockey_League", "http://dbpedia.org/resource/Humboldt_Broncos", "http://dbpedia.org/resource/Ferris_State_University", "http://dbpedia.org/resource/Nova_Scotia_Oilers", "http://dbpedia.org/resource/Haninge_HC", "http://dbpedia.org/resource/East_Helsinki_Hockey", "http://dbpedia.org/resource/Utica_Blizzard", "http://dbpedia.org/resource/Hokeja_Centrs_Riga", "http://dbpedia.org/resource/UMass_Minutemen_women's_ice_hockey", "http://dbpedia.org/resource/Penn_State_women's_ice_hockey_club", "http://dbpedia.org/resource/Southern_Hockey_League_(1995\u201396)", "http://dbpedia.org/resource/Jacksonville_Bullets", "http://dbpedia.org/resource/Lakeland_Prowlers", "http://dbpedia.org/resource/Sunshine_Hockey_League", "http://dbpedia.org/resource/Munich_Barons", "http://dbpedia.org/resource/Modr\u00e9_kr\u00eddla_Slovan", "http://dbpedia.org/resource/United_Team_of_Germany_at_the_Olympics", "http://dbpedia.org/resource/Porvoo_Hunters", "http://dbpedia.org/resource/Progress_Glazov", "http://dbpedia.org/resource/HC_Keski-Uusimaa", "http://dbpedia.org/resource/Kovlands_IF", "http://dbpedia.org/resource/Olimpiya_Kirovo-Chepetsk", "http://dbpedia.org/resource/Valbo_HC", "http://dbpedia.org/resource/San_Francisco_Seals_(ice_hockey)", "http://dbpedia.org/resource/Colorado_Rangers", "http://dbpedia.org/resource/Nottingham_Lions", "http://dbpedia.org/resource/Solihull_Kings", "http://dbpedia.org/resource/Sydney_Ice_Dogs", "http://dbpedia.org/resource/Hamburger_SV_(ice_hockey)", "http://dbpedia.org/resource/KJT_Haukat_Naiset", "http://dbpedia.org/resource/Tivali_Minsk", "http://dbpedia.org/resource/Cardiff_wet_place", "http://dbpedia.org/resource/ASK_R\u012bga_(ice_hockey)", "http://dbpedia.org/resource/Dartmouth_Big_Green_men's_ice_hockey", "http://dbpedia.org/resource/Toronto_Balmy_Beach_Beachers", "http://dbpedia.org/resource/M\u00e4larh\u00f6jden/Bred\u00e4ng_Hockey", "http://dbpedia.org/resource/HK_ATEK_Kyiv", "http://dbpedia.org/resource/ShVSM_Kyiv", "http://dbpedia.org/resource/Yuzhny_Ural_Orsk", "http://dbpedia.org/resource/Vanke_Rays", "http://dbpedia.org/resource/Cedar_Rapids_RoughRiders"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/magazine> <http://dbpedia.org/resource/Jump_Square> . ?x <http://dbpedia.org/ontology/author> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Nisio_Isin", "http://dbpedia.org/resource/Tsugumi_Ohba", "http://dbpedia.org/resource/Clamp_(manga_artists)", "http://dbpedia.org/resource/Usamaru_Furuya", "http://dbpedia.org/resource/Mari_Okada", "http://dbpedia.org/resource/Nobuhiro_Watsuki", "http://dbpedia.org/resource/Stan_Lee", "http://dbpedia.org/resource/Tomohiro_Matsu", "http://dbpedia.org/resource/Takeshi_Konomi", "http://dbpedia.org/resource/Takaya_Kagami", "http://dbpedia.org/resource/Hiroshi_Sakurazaka", "http://dbpedia.org/resource/Jin_Kobayashi", "http://dbpedia.org/resource/Katsura_Hoshino", "http://dbpedia.org/resource/Tatsuya_Endo", "http://dbpedia.org/resource/Saki_Hasemi", "http://dbpedia.org/resource/Fuyumi_Ono", "http://dbpedia.org/resource/Kazue_Kato", "http://dbpedia.org/resource/Kentar\u014d_Katayama"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/order> <http://dbpedia.org/resource/Bacillales> } "}, "answers": ["http://dbpedia.org/resource/Aeribacillus", "http://dbpedia.org/resource/Aquibacillus", "http://dbpedia.org/resource/Aquibacillus_albus", "http://dbpedia.org/resource/Aquibacillus_halophilus", "http://dbpedia.org/resource/Aquibacillus_salifodinae", "http://dbpedia.org/resource/Aquisalibacillus", "http://dbpedia.org/resource/Caryophanaceae", "http://dbpedia.org/resource/Compostibacillus", "http://dbpedia.org/resource/Desmospora", "http://dbpedia.org/resource/Desmospora_activa", "http://dbpedia.org/resource/Desmospora_profundinema", "http://dbpedia.org/resource/Domibacillus", "http://dbpedia.org/resource/Domibacillus_antri", "http://dbpedia.org/resource/Domibacillus_enclensis", "http://dbpedia.org/resource/Domibacillus_indicus", "http://dbpedia.org/resource/Domibacillus_iocasae", "http://dbpedia.org/resource/Domibacillus_robiginosus", "http://dbpedia.org/resource/Domibacillus_tundrae", "http://dbpedia.org/resource/Fictibacillus", "http://dbpedia.org/resource/Fictibacillus_arsenicus", "http://dbpedia.org/resource/Fictibacillus_barbaricus", "http://dbpedia.org/resource/Fictibacillus_enclensis", "http://dbpedia.org/resource/Fictibacillus_gelatini", "http://dbpedia.org/resource/Fictibacillus_halophilus", "http://dbpedia.org/resource/Fictibacillus_macauensis", "http://dbpedia.org/resource/Fictibacillus_nanhaiensis", "http://dbpedia.org/resource/Fictibacillus_phosphorivorans", "http://dbpedia.org/resource/Fictibacillus_rigui", "http://dbpedia.org/resource/Fictibacillus_solisalsi", "http://dbpedia.org/resource/Filobacillus", "http://dbpedia.org/resource/Filobacillus_milensis", "http://dbpedia.org/resource/Milky_spore", "http://dbpedia.org/resource/Gemella", "http://dbpedia.org/resource/Gemella_morbillorum", "http://dbpedia.org/resource/Gemella_palaticanis", "http://dbpedia.org/resource/Gemella_sanguinis", "http://dbpedia.org/resource/Geobacillus", "http://dbpedia.org/resource/Geobacillus_jurassicus", "http://dbpedia.org/resource/Geobacillus_stearothermophilus", "http://dbpedia.org/resource/Geobacillus_thermoglucosidasius", "http://dbpedia.org/resource/Geobacillus_toebii", "http://dbpedia.org/resource/Macrococcus_lamae", "http://dbpedia.org/resource/Hydrogenibacillus", "http://dbpedia.org/resource/Hydrogenibacillus_schlegelii", "http://dbpedia.org/resource/Jeotgalicoccus_marinus", "http://dbpedia.org/resource/Jeotgalicoccus_pinnipedialis", "http://dbpedia.org/resource/Jeotgalibacillus", "http://dbpedia.org/resource/Jeotgalibacillus_alkaliphilus", "http://dbpedia.org/resource/Jeotgalibacillus_campisalis", "http://dbpedia.org/resource/Jeotgalibacillus_malaysiensis", "http://dbpedia.org/resource/Jeotgalibacillus_marinus", "http://dbpedia.org/resource/Jeotgalibacillus_salarius", "http://dbpedia.org/resource/Jeotgalibacillus_soli", "http://dbpedia.org/resource/Jeotgalicoccus", "http://dbpedia.org/resource/Jeotgalicoccus_aerolatus", "http://dbpedia.org/resource/Jeotgalicoccus_coquinae", "http://dbpedia.org/resource/Jeotgalicoccus_halophilus", "http://dbpedia.org/resource/Jeotgalicoccus_schoeneichii", "http://dbpedia.org/resource/Oceanobacillus_kimchii", "http://dbpedia.org/resource/Kurthia", "http://dbpedia.org/resource/Kurthia_huakuii", "http://dbpedia.org/resource/Kurthia_massiliensis", "http://dbpedia.org/resource/Kurthia_populi", "http://dbpedia.org/resource/Kurthia_senegalensis", "http://dbpedia.org/resource/Kyrpidia", "http://dbpedia.org/resource/Kyrpidia_spormannii", "http://dbpedia.org/resource/Kyrpidia_tusciae", "http://dbpedia.org/resource/Nosocomiicoccus", "http://dbpedia.org/resource/Paenibacillaceae", "http://dbpedia.org/resource/Lentibacillus", "http://dbpedia.org/resource/Lentibacillus_alimentarius", "http://dbpedia.org/resource/Lentibacillus_amyloliquefaciens", "http://dbpedia.org/resource/Lentibacillus_cibarius", "http://dbpedia.org/resource/Lentibacillus_garicola", "http://dbpedia.org/resource/Lentibacillus_halodurans", "http://dbpedia.org/resource/Lentibacillus_halophilus", "http://dbpedia.org/resource/Lentibacillus_jeotgali", "http://dbpedia.org/resource/Lentibacillus_juripiscarius", "http://dbpedia.org/resource/Lentibacillus_kapialis", "http://dbpedia.org/resource/Lentibacillus_lacisalsi", "http://dbpedia.org/resource/Lentibacillus_lipolyticus", "http://dbpedia.org/resource/Lentibacillus_panjinensis", "http://dbpedia.org/resource/Lentibacillus_persicus", "http://dbpedia.org/resource/Lentibacillus_salarius", "http://dbpedia.org/resource/Lentibacillus_salicampi", "http://dbpedia.org/resource/Lentibacillus_salinarum", "http://dbpedia.org/resource/Lentibacillus_saliphilus", "http://dbpedia.org/resource/Lentibacillus_salis", "http://dbpedia.org/resource/Lentibacillus_sediminis", "http://dbpedia.org/resource/Paenisporosarcina_quisquiliarum", "http://dbpedia.org/resource/Planifilum_composti", "http://dbpedia.org/resource/Planifilum_fimeticola", "http://dbpedia.org/resource/Planifilum_fulgidum", "http://dbpedia.org/resource/Planifilum_yunnanense", "http://dbpedia.org/resource/Planomicrobium_alkanoclasticum", "http://dbpedia.org/resource/Polycladomyces_abyssicola", "http://dbpedia.org/resource/Pontibacillus_salipaludis", "http://dbpedia.org/resource/Thalassobacillus", "http://dbpedia.org/resource/Thalassobacillus_devorans", "http://dbpedia.org/resource/Thalassobacillus_hwangdonensis", "http://dbpedia.org/resource/Thalassobacillus_pellis", "http://dbpedia.org/resource/Parageobacillus", "http://dbpedia.org/resource/Parageobacillus_caldoxylosilyticus", "http://dbpedia.org/resource/Paraliobacillus", "http://dbpedia.org/resource/Piscibacillus", "http://dbpedia.org/resource/Piscibacillus_halophilus", "http://dbpedia.org/resource/Piscibacillus_salipiscarius", "http://dbpedia.org/resource/Planifilum", "http://dbpedia.org/resource/Planomicrobium_chinense", "http://dbpedia.org/resource/Planomicrobium_flavidum", "http://dbpedia.org/resource/Polycladomyces", "http://dbpedia.org/resource/Polygonibacillus", "http://dbpedia.org/resource/Pontibacillus", "http://dbpedia.org/resource/Pontibacillus_chungwhensis", "http://dbpedia.org/resource/Pontibacillus_halophilus", "http://dbpedia.org/resource/Pontibacillus_litoralis", "http://dbpedia.org/resource/Pontibacillus_marinus", "http://dbpedia.org/resource/Pontibacillus_salicampi", "http://dbpedia.org/resource/Pontibacillus_yanchengensis", "http://dbpedia.org/resource/Saccharibacillus", "http://dbpedia.org/resource/Saccharibacillus_kuerlensis", "http://dbpedia.org/resource/Saccharibacillus_sacchari", "http://dbpedia.org/resource/Saccharococcus", "http://dbpedia.org/resource/Aidingibacillus", "http://dbpedia.org/resource/Paenibacillus_vulneris", "http://dbpedia.org/resource/Melghiribacillus", "http://dbpedia.org/resource/Thermicanus_aegyptius", "http://dbpedia.org/resource/Thermoflavimicrobium_dichotomicum", "http://dbpedia.org/resource/Paucisalibacillus", "http://dbpedia.org/resource/Paucisalibacillus_algeriensis", "http://dbpedia.org/resource/Cytobacillus", "http://dbpedia.org/resource/Ferdinandcohnia", "http://dbpedia.org/resource/Fermentibacillus", "http://dbpedia.org/resource/Pasteuria", "http://dbpedia.org/resource/Salinicoccus_jeotgali", "http://dbpedia.org/resource/Virgibacillus_chiguensis", "http://dbpedia.org/resource/Virgibacillus_salexigens", "http://dbpedia.org/resource/Macrococcus_canis", "http://dbpedia.org/resource/Virgibacillus_soli", "http://dbpedia.org/resource/Laceyella", "http://dbpedia.org/resource/Laceyella_putida", "http://dbpedia.org/resource/Laceyella_sacchari", "http://dbpedia.org/resource/Laceyella_sediminis", "http://dbpedia.org/resource/Laceyella_tengchongensis", "http://dbpedia.org/resource/Marininema", "http://dbpedia.org/resource/Marinococcus_halophilus", "http://dbpedia.org/resource/Marinococcus_halotolerans", "http://dbpedia.org/resource/Marinococcus_luteus", "http://dbpedia.org/resource/Marinococcus_salis", "http://dbpedia.org/resource/Marinococcus_tarijensis", "http://dbpedia.org/resource/Virgibacillus_byunsanensis", "http://dbpedia.org/resource/Virgibacillus_campisalis", "http://dbpedia.org/resource/Virgibacillus_dokdonensis", "http://dbpedia.org/resource/Virgibacillus_flavescens", "http://dbpedia.org/resource/Virgibacillus_halophilus", "http://dbpedia.org/resource/Virgibacillus_halotolerans", "http://dbpedia.org/resource/Virgibacillus_indicus", "http://dbpedia.org/resource/Virgibacillus_kekensis", "http://dbpedia.org/resource/Virgibacillus_litoralis", "http://dbpedia.org/resource/Virgibacillus_marismortui", "http://dbpedia.org/resource/Virgibacillus_natechei", "http://dbpedia.org/resource/Virgibacillus_ndiopensis", "http://dbpedia.org/resource/Virgibacillus_oceani", "http://dbpedia.org/resource/Virgibacillus_olivae", "http://dbpedia.org/resource/Virgibacillus_phasianinus", "http://dbpedia.org/resource/Virgibacillus_profundi", "http://dbpedia.org/resource/Virgibacillus_salarius", "http://dbpedia.org/resource/Virgibacillus_salinus", "http://dbpedia.org/resource/Virgibacillus_sediminis", "http://dbpedia.org/resource/Virgibacillus_subterraneus", "http://dbpedia.org/resource/Virgibacillus_xinjiangensis", "http://dbpedia.org/resource/Bacillus_aminovorans", "http://dbpedia.org/resource/Bacillus_boroniphilus", "http://dbpedia.org/resource/Bacillus_firmus", "http://dbpedia.org/resource/Bacillus_flexus", "http://dbpedia.org/resource/Bacillus_fumarioli", "http://dbpedia.org/resource/Bacillus_gaemokensis", "http://dbpedia.org/resource/Bacillus_gibsonii", "http://dbpedia.org/resource/Bacillus_halodurans", "http://dbpedia.org/resource/Bacillus_horikoshii", "http://dbpedia.org/resource/Bacillus_mesentericus", "http://dbpedia.org/resource/Bacillus_nealsonii", "http://dbpedia.org/resource/Bacillus_odysseyi", "http://dbpedia.org/resource/Bacillus_oleronius", "http://dbpedia.org/resource/Bacillus_pseudalcalophilus", "http://dbpedia.org/resource/Bacillus_pseudofirmus", "http://dbpedia.org/resource/Bacillus_selenitireducens", "http://dbpedia.org/resource/Bacillus_sporothermodurans", "http://dbpedia.org/resource/Bacillus_thuringiensis_kurstaki", "http://dbpedia.org/resource/Camelliibacillus", "http://dbpedia.org/resource/Jeotgalicoccus_nanhaiensis", "http://dbpedia.org/resource/Oceanobacillus_iheyensis", "http://dbpedia.org/resource/Lihuaxuella", "http://dbpedia.org/resource/Lihuaxuella_thermophila", "http://dbpedia.org/resource/Paenibacillus_koreensis", "http://dbpedia.org/resource/Paenibacillus_vortex", "http://dbpedia.org/resource/Alicyclobacillus_fodiniaquatilis", "http://dbpedia.org/resource/Alicyclobacillus_herbarius", "http://dbpedia.org/resource/Alicyclobacillus_hesperidum", "http://dbpedia.org/resource/Alicyclobacillus_kakegawensis", "http://dbpedia.org/resource/Alicyclobacillus_macrosporangiidus", "http://dbpedia.org/resource/Alicyclobacillus_montanus", "http://dbpedia.org/resource/Alicyclobacillus_pomorum", "http://dbpedia.org/resource/Alicyclobacillus_sacchari", "http://dbpedia.org/resource/Alicyclobacillus_sendaiensis", "http://dbpedia.org/resource/Alicyclobacillus_shizuokensis", "http://dbpedia.org/resource/Alicyclobacillus_tengchongensis", "http://dbpedia.org/resource/Alicyclobacillus_tolerans", "http://dbpedia.org/resource/Alicyclobacillus_vulcanalis", "http://dbpedia.org/resource/Aliibacillus", "http://dbpedia.org/resource/Alkalicoccus", "http://dbpedia.org/resource/Alkalicoccus_chagannorensis", "http://dbpedia.org/resource/Alkalicoccus_daliensis", "http://dbpedia.org/resource/Alkalicoccus_halolimnae", "http://dbpedia.org/resource/Alkalicoccus_luteus", "http://dbpedia.org/resource/Alkalicoccus_saliphilus", "http://dbpedia.org/resource/Alkalicoccus_urumqiensis", "http://dbpedia.org/resource/Alkalihalobacillus_akibai", "http://dbpedia.org/resource/Alkalihalobacillus_algicola", "http://dbpedia.org/resource/Alkalihalobacillus_alkalilacus", "http://dbpedia.org/resource/Alkalihalobacillus_alkalinitrilicus", "http://dbpedia.org/resource/Alkalihalobacillus_alkalisediminis", "http://dbpedia.org/resource/Alkalihalobacillus_berkeleyi", "http://dbpedia.org/resource/Alkalihalobacillus_bogoriensis", "http://dbpedia.org/resource/Alkalihalobacillus_caeni", "http://dbpedia.org/resource/Alkalihalobacillus_haemicellulosilyticus", "http://dbpedia.org/resource/Alkalihalobacillus_haemicentroti", "http://dbpedia.org/resource/Alkalihalobacillus_hunanensis", "http://dbpedia.org/resource/Alkalihalobacillus_hwajinpoensis", "http://dbpedia.org/resource/Alkalihalobacillus_kiskunsagensis", "http://dbpedia.org/resource/Alkalihalobacillus_krulwichiae", "http://dbpedia.org/resource/Alkalihalobacillus_lehensis", "http://dbpedia.org/resource/Alkalihalobacillus_ligniniphilus", "http://dbpedia.org/resource/Alkalihalobacillus_lindianensis", "http://dbpedia.org/resource/Alkalihalobacillus_lonarensis", "http://dbpedia.org/resource/Alkalihalobacillus_macyae", "http://dbpedia.org/resource/Alkalihalobacillus_marmarensis", "http://dbpedia.org/resource/Alkalihalobacillus_miscanthi", "http://dbpedia.org/resource/Alkalihalobacillus_murimartini", "http://dbpedia.org/resource/Alkalihalobacillus_nanhaiisediminis", "http://dbpedia.org/resource/Alkalihalobacillus_okhensis", "http://dbpedia.org/resource/Alkalihalobacillus_oshimensis", "http://dbpedia.org/resource/Alkalihalobacillus_patagoniensis", "http://dbpedia.org/resource/Alkalihalobacillus_plakortidis", "http://dbpedia.org/resource/Alkalihalobacillus_rhizosphaerae", "http://dbpedia.org/resource/Alkalihalobacillus_shacheensis", "http://dbpedia.org/resource/Alkalihalobacillus_trypoxylicola", "http://dbpedia.org/resource/Alkalihalobacillus_urbisdiaboli", "http://dbpedia.org/resource/Alkalihalobacillus_wakoensis", "http://dbpedia.org/resource/Alkalihalobacillus_xiaoxiensis", "http://dbpedia.org/resource/Alkalilactibacillus", "http://dbpedia.org/resource/Allobacillus", "http://dbpedia.org/resource/Ammoniphilus", "http://dbpedia.org/resource/Ammoniphilus_oxalivorans", "http://dbpedia.org/resource/Ammoniphilus_resinae", "http://dbpedia.org/resource/Amphibacillus", "http://dbpedia.org/resource/Amphibacillus_xylanus", "http://dbpedia.org/resource/Amylobacillus", "http://dbpedia.org/resource/Aureibacillus", "http://dbpedia.org/resource/Falsibacillus", "http://dbpedia.org/resource/Macrococcus_hajekii", "http://dbpedia.org/resource/Sporosarcina_ureae", "http://dbpedia.org/resource/Oxalophagus", "http://dbpedia.org/resource/Sporosarcina_pasteurii", "http://dbpedia.org/resource/Ureibacillus_terrenus", "http://dbpedia.org/resource/Jilinibacillus", "http://dbpedia.org/resource/Paenibacillus_dendritiformis", "http://dbpedia.org/resource/Aneurinibacillus", "http://dbpedia.org/resource/Aneurinibacillus_danicus", "http://dbpedia.org/resource/Aneurinibacillus_humi", "http://dbpedia.org/resource/Aneurinibacillus_migulanus", "http://dbpedia.org/resource/Aneurinibacillus_sediminis", "http://dbpedia.org/resource/Aneurinibacillus_soli", "http://dbpedia.org/resource/Aneurinibacillus_terranovensis", "http://dbpedia.org/resource/Aneurinibacillus_thermoaerophilus", "http://dbpedia.org/resource/Aneurinibacillus_tyrosinisolvens", "http://dbpedia.org/resource/Chryseomicrobium", "http://dbpedia.org/resource/Chryseomicrobium_amylolyticum", "http://dbpedia.org/resource/Chryseomicrobium_aureum", "http://dbpedia.org/resource/Chryseomicrobium_deserti", "http://dbpedia.org/resource/Chryseomicrobium_excrementi", "http://dbpedia.org/resource/Chryseomicrobium_imtechense", "http://dbpedia.org/resource/Chryseomicrobium_palamuruense", "http://dbpedia.org/resource/Oceanobacillus_kapialis", "http://dbpedia.org/resource/Pseudogracilibacillus", "http://dbpedia.org/resource/Pseudogracilibacillus_auburnensis", "http://dbpedia.org/resource/Pseudogracilibacillus_endophyticus", "http://dbpedia.org/resource/Psychrobacillus", "http://dbpedia.org/resource/Psychrobacillus_insolitus", "http://dbpedia.org/resource/Psychrobacillus_psychrodurans", "http://dbpedia.org/resource/Psychrobacillus_soli", "http://dbpedia.org/resource/Pueribacillus", "http://dbpedia.org/resource/Radiobacillus", "http://dbpedia.org/resource/Schinkia", "http://dbpedia.org/resource/Sediminibacillus", "http://dbpedia.org/resource/Sediminibacillus_albus", "http://dbpedia.org/resource/Sediminibacillus_halophilus", "http://dbpedia.org/resource/Sediminibacillus_massiliensis", "http://dbpedia.org/resource/Seinonella", "http://dbpedia.org/resource/Virgibacillus_necropolis", "http://dbpedia.org/resource/Macrococcus_brunensis", "http://dbpedia.org/resource/Jeotgalicoccus_huakuii", "http://dbpedia.org/resource/Abyssicoccus", "http://dbpedia.org/resource/Abyssicoccus_albus", "http://dbpedia.org/resource/Jeotgalicoccus_psychrophilus", "http://dbpedia.org/resource/Oceanobacillus_chironomi", "http://dbpedia.org/resource/Heyndrickxia", "http://dbpedia.org/resource/Oxalophagus_oxalicus", "http://dbpedia.org/resource/Sporosarcina_aquimarina", "http://dbpedia.org/resource/Pasteuriaceae", "http://dbpedia.org/resource/Virgibacillus_arcticus", "http://dbpedia.org/resource/Numidum", "http://dbpedia.org/resource/Priestia", "http://dbpedia.org/resource/Robertmurraya", "http://dbpedia.org/resource/Sporosarcina_contaminans", "http://dbpedia.org/resource/Sporosarcina_luteola", "http://dbpedia.org/resource/Sporosarcina_newyorkensis", "http://dbpedia.org/resource/Sporosarcina_siberiensis", "http://dbpedia.org/resource/Sporosarcina_soli", "http://dbpedia.org/resource/Streptohalobacillus", "http://dbpedia.org/resource/Tumebacillus", "http://dbpedia.org/resource/Tumebacillus_algifaecis", "http://dbpedia.org/resource/Tumebacillus_avium", "http://dbpedia.org/resource/Tumebacillus_flagellatus", "http://dbpedia.org/resource/Tumebacillus_ginsengisoli", "http://dbpedia.org/resource/Tumebacillus_lipolyticus", "http://dbpedia.org/resource/Tumebacillus_luteolus", "http://dbpedia.org/resource/Tumebacillus_permanentifrigoris", "http://dbpedia.org/resource/Tumebacillus_soli", "http://dbpedia.org/resource/Cohnella_hongkongensis", "http://dbpedia.org/resource/Cohnella_thermotolerans", "http://dbpedia.org/resource/Paenibacillus_alvei", "http://dbpedia.org/resource/Sporolactobacillus", "http://dbpedia.org/resource/Jeotgalibacillus_alimentarius", "http://dbpedia.org/resource/Oceanobacillus_neutriphilus", "http://dbpedia.org/resource/Virgibacillus_proomii", "http://dbpedia.org/resource/Ureibacillus_composti", "http://dbpedia.org/resource/Ureibacillus_defluvii", "http://dbpedia.org/resource/Ureibacillus_suwonensis", "http://dbpedia.org/resource/Vulcanibacillus", "http://dbpedia.org/resource/Anoxybacillus", "http://dbpedia.org/resource/Anoxybacillus_gonensis", "http://dbpedia.org/resource/Brevibacillus", "http://dbpedia.org/resource/Brevibacillus_borstelensis", "http://dbpedia.org/resource/Brevibacillus_brevis", "http://dbpedia.org/resource/Caenibacillus", "http://dbpedia.org/resource/Calculibacillus", "http://dbpedia.org/resource/Caldalkalibacillus", "http://dbpedia.org/resource/Caldalkalibacillus_thermarum", "http://dbpedia.org/resource/Caldalkalibacillus_uzonensis", "http://dbpedia.org/resource/Caldibacillus", "http://dbpedia.org/resource/Calditerricola", "http://dbpedia.org/resource/Calditerricola_satsumensis", "http://dbpedia.org/resource/Cerasibacillus", "http://dbpedia.org/resource/Virgibacillus", "http://dbpedia.org/resource/Paenibacillus_polymyxa", "http://dbpedia.org/resource/Paenibacillus_tylopili", "http://dbpedia.org/resource/Alteribacter", "http://dbpedia.org/resource/Pasteuria_nishizawae", "http://dbpedia.org/resource/Virgibacillus_siamensis", "http://dbpedia.org/resource/Lederbergia", "http://dbpedia.org/resource/Sporosarcina_globispora", "http://dbpedia.org/resource/Litchfieldia", "http://dbpedia.org/resource/Macrococcus", "http://dbpedia.org/resource/Salibacterium", "http://dbpedia.org/resource/Salibacterium_halochares", "http://dbpedia.org/resource/Salibacterium_halotolerans", "http://dbpedia.org/resource/Salibacterium_lacus", "http://dbpedia.org/resource/Salibacterium_qingdaonense", "http://dbpedia.org/resource/Salimicrobium_album", "http://dbpedia.org/resource/Salimicrobium_flavidum", "http://dbpedia.org/resource/Salimicrobium_halophilum", "http://dbpedia.org/resource/Salimicrobium_salexigens", "http://dbpedia.org/resource/Salinibacillus", "http://dbpedia.org/resource/Salipaludibacillus", "http://dbpedia.org/resource/Salirhabdus", "http://dbpedia.org/resource/Salirhabdus_euzebyi", "http://dbpedia.org/resource/Salirhabdus_salicampi", "http://dbpedia.org/resource/Salisediminibacterium", "http://dbpedia.org/resource/Salisediminibacterium_haloalkalitolerans", "http://dbpedia.org/resource/Salisediminibacterium_halotolerans", "http://dbpedia.org/resource/Salisediminibacterium_locisalis", "http://dbpedia.org/resource/Saliterribacillus", "http://dbpedia.org/resource/Salsuginibacillus", "http://dbpedia.org/resource/Salsuginibacillus_halophilus", "http://dbpedia.org/resource/Salsuginibacillus_kocurii", "http://dbpedia.org/resource/Anaerobacillus", "http://dbpedia.org/resource/Anaerobacillus_alkalidiazotrophicus", "http://dbpedia.org/resource/Effusibacillus", "http://dbpedia.org/resource/Effusibacillus_consociatus", "http://dbpedia.org/resource/Effusibacillus_lacus", "http://dbpedia.org/resource/Effusibacillus_pohliae", "http://dbpedia.org/resource/Virgibacillus_alimentarius", "http://dbpedia.org/resource/Shimazuella_kribbensis", "http://dbpedia.org/resource/Pasteuria_ramosa", "http://dbpedia.org/resource/Siminovitchia", "http://dbpedia.org/resource/Sinibacillus", "http://dbpedia.org/resource/Sinobaca", "http://dbpedia.org/resource/Solibacillus_silvestris", "http://dbpedia.org/resource/Ectobacillus", "http://dbpedia.org/resource/Edaphobacillus", "http://dbpedia.org/resource/Gottfriedia", "http://dbpedia.org/resource/Gracilibacillus", "http://dbpedia.org/resource/Gracilibacillus_boraciitolerans", "http://dbpedia.org/resource/Gracilibacillus_halotolerans", "http://dbpedia.org/resource/Gracilibacillus_massiliensis", "http://dbpedia.org/resource/Gracilibacillus_ureilyticus", "http://dbpedia.org/resource/Halalkalibacillus", "http://dbpedia.org/resource/Halolactibacillus", "http://dbpedia.org/resource/Halolactibacillus_alkaliphilus", "http://dbpedia.org/resource/Halolactibacillus_halophilus", "http://dbpedia.org/resource/Jeotgalicoccus_halotolerans", "http://dbpedia.org/resource/ST8:USA300", "http://dbpedia.org/resource/Oceanobacillus_oncorhynchi", "http://dbpedia.org/resource/Marininema_halotolerans", "http://dbpedia.org/resource/Marininema_mesophilum", "http://dbpedia.org/resource/Marinococcus", "http://dbpedia.org/resource/Margalitia", "http://dbpedia.org/resource/Margalitia_camelliae", "http://dbpedia.org/resource/Margalitia_shackletonii", "http://dbpedia.org/resource/Ornithinibacillus_bavariensis", "http://dbpedia.org/resource/Ornithinibacillus_californiensis", "http://dbpedia.org/resource/Ornithinibacillus_contaminans", "http://dbpedia.org/resource/Ornithinibacillus_halophilus", "http://dbpedia.org/resource/Ornithinibacillus_scapharcae", "http://dbpedia.org/resource/Microaerobacter", "http://dbpedia.org/resource/Peribacillus", "http://dbpedia.org/resource/Sporosarcina_saromensis", "http://dbpedia.org/resource/Sporosarcina_terrae", "http://dbpedia.org/resource/Salinicoccus", "http://dbpedia.org/resource/Virgibacillus_carmonensis", "http://dbpedia.org/resource/Pseudogracilibacillus_marinus", "http://dbpedia.org/resource/Saccharibacillus_deserti", "http://dbpedia.org/resource/Saccharibacillus_endophyticus", "http://dbpedia.org/resource/Saccharibacillus_qingshengii", "http://dbpedia.org/resource/Salimicrobium", "http://dbpedia.org/resource/Salimicrobium_jeotgali", "http://dbpedia.org/resource/Salimicrobium_luteum", "http://dbpedia.org/resource/Salinibacillus_aidingensis", "http://dbpedia.org/resource/Salinibacillus_xinjiangensis", "http://dbpedia.org/resource/Salipaludibacillus_agaradhaerens", "http://dbpedia.org/resource/Salipaludibacillus_aurantiacus", "http://dbpedia.org/resource/Salipaludibacillus_neizhouensis", "http://dbpedia.org/resource/Seinonella_peptonophila", "http://dbpedia.org/resource/Ornithinibacillus", "http://dbpedia.org/resource/Ornithinibacillus_heyuanensis", "http://dbpedia.org/resource/Virgibacillus_kapii", "http://dbpedia.org/resource/Pradoshia", "http://dbpedia.org/resource/Tepidibacillus", "http://dbpedia.org/resource/Terribacillus", "http://dbpedia.org/resource/Terrilactibacillus", "http://dbpedia.org/resource/Texcoconibacillus", "http://dbpedia.org/resource/Thermicanus", "http://dbpedia.org/resource/Thermoflavimicrobium", "http://dbpedia.org/resource/Thermolongibacillus", "http://dbpedia.org/resource/Thermolongibacillus_altinsuensis", "http://dbpedia.org/resource/Paenibacillus_macerans", "http://dbpedia.org/resource/Kroppenstedtia", "http://dbpedia.org/resource/Kroppenstedtia_eburnea", "http://dbpedia.org/resource/Kroppenstedtia_guangzhouensis", "http://dbpedia.org/resource/Sporolactobacillaceae", "http://dbpedia.org/resource/Planomicrobium_koreense", "http://dbpedia.org/resource/Paenibacillus", "http://dbpedia.org/resource/Planomicrobium", "http://dbpedia.org/resource/Mechercharimyces", "http://dbpedia.org/resource/Mesobacillus", "http://dbpedia.org/resource/Metabacillus", "http://dbpedia.org/resource/Natribacillus", "http://dbpedia.org/resource/Natronobacillus", "http://dbpedia.org/resource/Niallia", "http://dbpedia.org/resource/Solibacillus_isronensis", "http://dbpedia.org/resource/Solibacillus_kalamii", "http://dbpedia.org/resource/Tepidibacillus_decaturensis", "http://dbpedia.org/resource/Tepidibacillus_fermentans", "http://dbpedia.org/resource/Tepidibacillus_infernus", "http://dbpedia.org/resource/Terribacillus_aidingensis", "http://dbpedia.org/resource/Terribacillus_goriensis", "http://dbpedia.org/resource/Terribacillus_halophilus", "http://dbpedia.org/resource/Paenisporosarcina", "http://dbpedia.org/resource/Paenisporosarcina_antarctica", "http://dbpedia.org/resource/Paenisporosarcina_indica", "http://dbpedia.org/resource/Paenisporosarcina_macmurdoensis", "http://dbpedia.org/resource/Mechercharimyces_asporophorigenens", "http://dbpedia.org/resource/Mechercharimyces_mesophilus", "http://dbpedia.org/resource/Melghirimyces", "http://dbpedia.org/resource/Melghirimyces_algeriensis", "http://dbpedia.org/resource/Melghirimyces_profundicolus", "http://dbpedia.org/resource/Melghirimyces_thermohalophilus", "http://dbpedia.org/resource/Paraliobacillus_quinghaiensis", "http://dbpedia.org/resource/Paraliobacillus_ryukyuensis", "http://dbpedia.org/resource/Paraliobacillus_sediminis", "http://dbpedia.org/resource/Paucisalibacillus_globulus", "http://dbpedia.org/resource/Sutcliffiella", "http://dbpedia.org/resource/Swionibacillus", "http://dbpedia.org/resource/Weizmannia", "http://dbpedia.org/resource/Pelagirhabdus", "http://dbpedia.org/resource/Pelagirhabdus_alkalitolerans", "http://dbpedia.org/resource/Pelagirhabdus_fermentum", "http://dbpedia.org/resource/Rossellomorea", "http://dbpedia.org/resource/Shimazuella"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/All_I_Need_Is_Your_Sweet_Lovin'> <http://dbpedia.org/ontology/writer> ?uri } "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lagos_Preparatory_School> <http://dbpedia.org/property/sport> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/origin> <http://dbpedia.org/resource/England> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Beverage>}"}, "answers": ["http://dbpedia.org/resource/Plymouth_Gin", "http://dbpedia.org/resource/Broker's_Gin", "http://dbpedia.org/resource/King's_Ginger", "http://dbpedia.org/resource/Tynt_Meadow", "http://dbpedia.org/resource/Stones_Bitter", "http://dbpedia.org/resource/Evoca_Cola", "http://dbpedia.org/resource/Fuller's_ESB", "http://dbpedia.org/resource/Bombay_Sapphire", "http://dbpedia.org/resource/Worthington's_White_Shield", "http://dbpedia.org/resource/Old_Rosie"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/On_Air_with_Ryan_Seacrest> <http://dbpedia.org/ontology/starring> ?uri } "}, "answers": ["http://dbpedia.org/resource/Manny_Guevara", "http://dbpedia.org/resource/Ryan_Seacrest", "http://dbpedia.org/resource/Patty_Rodriguez"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Franklin_W._Olin> <http://dbpedia.org/property/almaMater> ?uri . <http://dbpedia.org/resource/Patty_Lin> <http://dbpedia.org/ontology/education> ?uri} "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/athletics> <http://dbpedia.org/resource/Hockey> . ?x <http://dbpedia.org/ontology/sport> ?uri }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/restingplace> <http://dbpedia.org/resource/Little_Easton> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Royalty>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/operatingSystem> <http://dbpedia.org/resource/Microsoft_Windows> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Software>}"}, "answers": ["2571"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/related> <http://dbpedia.org/resource/Doctor_Who_Extra> . ?uri <http://dbpedia.org/property/related> ?x . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/largestCity> <http://dbpedia.org/resource/Lima> . }"}, "answers": ["http://dbpedia.org/resource/Andean_Community", "http://dbpedia.org/resource/Peru\u2013Bolivian_Confederation"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Robert_S._Hall> <http://dbpedia.org/ontology/institution> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Laurie_Johnson> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": ["http://dbpedia.org/resource/And_Soon_the_Darkness", "http://dbpedia.org/resource/You_Must_Be_Joking!_(1965_film)", "http://dbpedia.org/resource/What_a_Whopper", "http://dbpedia.org/resource/The_Beauty_Jungle", "http://dbpedia.org/resource/The_Belstone_Fox", "http://dbpedia.org/resource/The_Lady_and_the_Highwayman", "http://dbpedia.org/resource/Captain_Kronos_\u2013_Vampire_Hunter", "http://dbpedia.org/resource/The_Good_Companions_(1957_film)", "http://dbpedia.org/resource/The_Maids_(film)", "http://dbpedia.org/resource/The_Moonraker", "http://dbpedia.org/resource/Girls_at_Sea_(1958_film)", "http://dbpedia.org/resource/It's_Alive_III:_Island_of_the_Alive", "http://dbpedia.org/resource/It_Lives_Again", "http://dbpedia.org/resource/It_Shouldn't_Happen_to_a_Vet", "http://dbpedia.org/resource/Mister_Jerico", "http://dbpedia.org/resource/Hot_Millions", "http://dbpedia.org/resource/Dr._Strangelove", "http://dbpedia.org/resource/Hedda_(film)", "http://dbpedia.org/resource/The_Firechasers", "http://dbpedia.org/resource/Tiger_Bay_(1959_film)", "http://dbpedia.org/resource/East_of_Sudan", "http://dbpedia.org/resource/Siege_of_the_Saxons", "http://dbpedia.org/resource/Spare_the_Rod", "http://dbpedia.org/resource/Bitter_Harvest_(1963_film)", "http://dbpedia.org/resource/I_Aim_at_the_Stars", "http://dbpedia.org/resource/Operation_Bullshine", "http://dbpedia.org/resource/No_Trees_in_the_Street"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/successor> <http://dbpedia.org/resource/PlayStation_2> . }"}, "answers": ["http://dbpedia.org/resource/PlayStation_(console)"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Doctor_Who:_Evacuation_Earth> <http://dbpedia.org/ontology/series> ?uri } "}, "answers": ["http://dbpedia.org/resource/Doctor_Who"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Entertainment_One_Music> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Band>}"}, "answers": ["http://dbpedia.org/resource/Boss_Hogg_Outlawz", "http://dbpedia.org/resource/Waka_Flocka_Flame", "http://dbpedia.org/resource/Bell_Biv_DeVoe", "http://dbpedia.org/resource/Darkest_Hour_(band)", "http://dbpedia.org/resource/'68_(band)", "http://dbpedia.org/resource/112_(band)", "http://dbpedia.org/resource/Enterprise_Earth", "http://dbpedia.org/resource/Boyz_II_Men", "http://dbpedia.org/resource/The_Contortionist", "http://dbpedia.org/resource/K-Ci_&_JoJo", "http://dbpedia.org/resource/Toxic_Holocaust", "http://dbpedia.org/resource/CKY_(band)", "http://dbpedia.org/resource/Chief_Keef", "http://dbpedia.org/resource/The_Dayton_Family", "http://dbpedia.org/resource/8Ball_&_MJG", "http://dbpedia.org/resource/Skyharbor", "http://dbpedia.org/resource/Hey_Marseilles", "http://dbpedia.org/resource/Far_East_Movement", "http://dbpedia.org/resource/Fit_for_an_Autopsy", "http://dbpedia.org/resource/Burn_Halo", "http://dbpedia.org/resource/Black_Crown_Initiate", "http://dbpedia.org/resource/Ronnie_Bowman", "http://dbpedia.org/resource/Goodie_Mob"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Radio_Philippines_Network> <http://dbpedia.org/ontology/broadcastArea> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/region> <http://dbpedia.org/resource/Ashanti_Region> . ?x <http://dbpedia.org/property/religion> ?uri . }"}, "answers": ["Islam"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cheasty_Boulevard_South> <http://dbpedia.org/ontology/maintainedBy> ?uri . <http://dbpedia.org/resource/Soccer_Bowl> <http://dbpedia.org/property/city> ?uri} "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/1993_European_Grand_Prix> <http://dbpedia.org/property/firstDriver> ?uri } "}, "answers": ["http://dbpedia.org/resource/Ayrton_Senna"]}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/ingredient> <http://dbpedia.org/resource/Sclafani_Foods> . ?x <http://dbpedia.org/property/editing> ?uri }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/launch> <http://dbpedia.org/resource/Vandenerg_Air_Base> . ?x <http://dbpedia.org/property/launch> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/FedExField> <http://dbpedia.org/ontology/operator> ?uri } "}, "answers": ["http://dbpedia.org/resource/Washington_Commanders"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/conn> <http://dbpedia.org/resource/Foxconn> . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/state> <http://dbpedia.org/resource/Shallot> . ?x <http://dbpedia.org/property/country> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/hairColor> <http://dbpedia.org/resource/Royal_blue> . ?x <http://dbpedia.org/property/nicknames> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/almaMater> <http://dbpedia.org/resource/Somerville_College,_Oxford> . ?x <http://dbpedia.org/property/party> ?uri . }"}, "answers": ["None", "http://dbpedia.org/resource/Liberal_Democrats_(UK)", "http://dbpedia.org/resource/Labour_Party_(UK)", "http://dbpedia.org/resource/Conservative_Party_(UK)", "http://dbpedia.org/resource/Welsh_Labour_Party", "http://dbpedia.org/resource/Labour_and_Co-operative"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jos\u00e9_Rivera_(playwright)> <http://dbpedia.org/property/awards> ?uri } "}, "answers": ["http://dbpedia.org/resource/Obie_Award", "http://dbpedia.org/resource/Academy_Award", "http://dbpedia.org/resource/Goya_Award"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/award> <http://dbpedia.org/resource/Screen_Actors_Guild_Life_Achievement_Award> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/OfficeHolder>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kenya_national_under-20_football_team> <http://dbpedia.org/ontology/ground> ?uri . <http://dbpedia.org/resource/Matin_Suji> <http://dbpedia.org/property/birthPlace> ?uri} "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/nearestCity> <http://dbpedia.org/resource/Kenya> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/ProtectedArea>}"}, "answers": ["http://dbpedia.org/resource/Kariandusi_prehistoric_site"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/leaderName> <http://dbpedia.org/resource/Elizabeth> . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Luke_List_(golfer)> <http://dbpedia.org/property/college> ?uri . <http://dbpedia.org/resource/K._Terry_Dornbush> <http://dbpedia.org/ontology/almaMater> ?uri} "}, "answers": ["http://dbpedia.org/resource/Vanderbilt_University"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/company> <http://dbpedia.org/resource/FremantleMedia> . ?x <http://dbpedia.org/ontology/producer> ?uri . }"}, "answers": ["9"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Haunted_House_(1929_film)> <http://dbpedia.org/ontology/director> ?uri } "}, "answers": ["http://dbpedia.org/resource/Walt_Disney"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/athletics> <http://dbpedia.org/resource/Oakland_Athletics> . ?x <http://dbpedia.org/ontology/builder> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Solidus_mark> <http://dbpedia.org/ontology/usedInWar> ?uri . <http://dbpedia.org/resource/Aurus_veneratedIn> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/hubAirport> <http://dbpedia.org/resource/Dubai> . ?x <http://dbpedia.org/property/owner> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ford_Y-block_engine> <http://dbpedia.org/ontology/manufacturer> ?uri } "}, "answers": ["http://dbpedia.org/resource/Ford_Motor_Company"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lumberjack_100> <http://dbpedia.org/ontology/region> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/royalAnthem> . ?x <http://dbpedia.org/property/awards> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Abdel_Bouckar> <http://dbpedia.org/ontology/team> ?uri } "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/nationalteam> <http://dbpedia.org/resource/Tanzania_national_football_team> . ?x <http://dbpedia.org/ontology/team> ?uri }"}, "answers": ["http://dbpedia.org/resource/Stellenbosch_F.C.", "http://dbpedia.org/resource/Kinondoni_Municipal_Council_F.C.", "http://dbpedia.org/resource/Tanzania_national_football_team", "http://dbpedia.org/resource/Lipuli_F.C.", "http://dbpedia.org/resource/Ruvu_Shooting_F.C.", "http://dbpedia.org/resource/Kagera_Sugar_F.C.", "http://dbpedia.org/resource/Young_Africans_S.C.", "http://dbpedia.org/resource/African_Lyon_F.C.", "http://dbpedia.org/resource/F.C._Kariobangi_Sharks", "http://dbpedia.org/resource/Mt_Kenya_United_F.C.", "http://dbpedia.org/resource/Chemelil_Sugar_F.C.", "http://dbpedia.org/resource/Namungo_FC", "http://dbpedia.org/resource/Moro_United_F.C.", "http://dbpedia.org/resource/Mwadui_United", "http://dbpedia.org/resource/Mtibwa_Sugar_F.C.", "http://dbpedia.org/resource/Toto_African", "http://dbpedia.org/resource/Simba_S.C.", "http://dbpedia.org/resource/Friends_Rangers_F.C.", "http://dbpedia.org/resource/3_de_Fevereiro", "http://dbpedia.org/resource/Al-Tadamon_SC_(Kuwait)", "http://dbpedia.org/resource/Arusha_F.C.", "http://dbpedia.org/resource/Maji_Maji_F.C.", "http://dbpedia.org/resource/Long_An_FC", "http://dbpedia.org/resource/SHB_Danang_FC", "http://dbpedia.org/resource/Polisi_S.C.", "http://dbpedia.org/resource/Njombe_Mji_F.C.", "http://dbpedia.org/resource/Mbeya_Kwanza_F.C.", "http://dbpedia.org/resource/Azam_F.C.", "http://dbpedia.org/resource/Mbao_F.C.", "http://dbpedia.org/resource/Al-Ittihad_Club_(Salalah)", "http://dbpedia.org/resource/University_of_Pretoria_F.C.", "http://dbpedia.org/resource/Singida_United_F.C.", "http://dbpedia.org/resource/Mbeya_City_F.C.", "http://dbpedia.org/resource/Geita_Gold_Mine_FC", "http://dbpedia.org/resource/Alliance_Schools_F.C.", "http://dbpedia.org/resource/Shepshed_Dynamo_F.C.", "http://dbpedia.org/resource/Spalding_United_F.C.", "http://dbpedia.org/resource/Rugby_Town_F.C.", "http://dbpedia.org/resource/SV_Wilhelmshaven", "http://dbpedia.org/resource/Tanzania_national_under-20_football_team", "http://dbpedia.org/resource/Coastal_Union_F.C.", "http://dbpedia.org/resource/Villa_Squad", "http://dbpedia.org/resource/JKT_Mgambo", "http://dbpedia.org/resource/JKT_Ruvu_Stars", "http://dbpedia.org/resource/Prisons_F.C.", "http://dbpedia.org/resource/Saraswoti_Youth_Club", "http://dbpedia.org/resource/Rayon_Sports_F.C.", "http://dbpedia.org/resource/Mseto_Sports", "http://dbpedia.org/resource/Weymouth_F.C.", "http://dbpedia.org/resource/England_national_under-17_football_team", "http://dbpedia.org/resource/Portsmouth_F.C.", "http://dbpedia.org/resource/Bromley_F.C.", "http://dbpedia.org/resource/Bognor_Regis_Town_F.C.", "http://dbpedia.org/resource/APR_F.C.", "http://dbpedia.org/resource/Clube_Ferrovi\u00e1rio_de_Nampula", "http://dbpedia.org/resource/Stand_United", "http://dbpedia.org/resource/Gefle_IF", "http://dbpedia.org/resource/Stand_United_F.C.", "http://dbpedia.org/resource/Nkana_F.C.", "http://dbpedia.org/resource/Shangani_F.C.", "http://dbpedia.org/resource/F.C._Bravos_do_Maquis", "http://dbpedia.org/resource/Difa\u00e2_Hassani_El_Jadidi", "http://dbpedia.org/resource/Al_Qadsiah_FC", "http://dbpedia.org/resource/Wydad_AC", "http://dbpedia.org/resource/Mwadui_United_F.C.", "http://dbpedia.org/resource/Rhino_Rangers_F.C.", "http://dbpedia.org/resource/Vital'O_FC", "http://dbpedia.org/resource/A.F.C_Arusha", "http://dbpedia.org/resource/Ashanti_United_S.C.", "http://dbpedia.org/resource/Red_Arrows_F.C.", "http://dbpedia.org/resource/Power_Dynamos_F.C.", "http://dbpedia.org/resource/Tanzania_national_under-17_football_team", "http://dbpedia.org/resource/K.R.C._Genk", "http://dbpedia.org/resource/Geita_Gold", "http://dbpedia.org/resource/Polisi_Tanzania", "http://dbpedia.org/resource/Zanzibar_Ocean_View_F.C.", "http://dbpedia.org/resource/Zanzibar_national_football_team", "http://dbpedia.org/resource/Miembeni_S.C.", "http://dbpedia.org/resource/Aston_Villa_F.C.", "http://dbpedia.org/resource/TP_Mazembe", "http://dbpedia.org/resource/Fenerbah\u00e7e_S.K._(football)", "http://dbpedia.org/resource/Royal_Antwerp_F.C.", "http://dbpedia.org/resource/Kenya_Commercial_Bank_S.C.", "http://dbpedia.org/resource/Bandari_F.C._(Kenya)", "http://dbpedia.org/resource/Biashara_United", "http://dbpedia.org/resource/Police_Tanzania_F.C.", "http://dbpedia.org/resource/Young_African_S.C", "http://dbpedia.org/resource/Biashara_United_F.C.", "http://dbpedia.org/resource/La_Passe_FC", "http://dbpedia.org/resource/Anse_R\u00e9union_FC", "http://dbpedia.org/resource/Botswana_Defence_Force_XI_F.C.", "http://dbpedia.org/resource/TS_Galaxy_F.C.", "http://dbpedia.org/resource/FC_Le_Mont", "http://dbpedia.org/resource/FC_Baulmes", "http://dbpedia.org/resource/FC_Bavois", "http://dbpedia.org/resource/Yverdon-Sport_FC", "http://dbpedia.org/resource/FC_Valmont", "http://dbpedia.org/resource/Vancouver_Whitecaps_(1986\u20132010)", "http://dbpedia.org/resource/Vancouver_Whitecaps_FC", "http://dbpedia.org/resource/Tadamon_Sour_SC", "http://dbpedia.org/resource/Pamba_S.C.", "http://dbpedia.org/resource/Beitar_Tel_Aviv_Bat_Yam_F.C.", "http://dbpedia.org/resource/Maccabi_Tel_Aviv_F.C.", "http://dbpedia.org/resource/S.V._Zulte_Waregem", "http://dbpedia.org/resource/Abajalo_F.C.", "http://dbpedia.org/resource/Bandari_F.C._(Tanzania)", "http://dbpedia.org/resource/Toto_Africa_F.C.", "http://dbpedia.org/resource/Saint_George_S.C.", "http://dbpedia.org/resource/Gor_Mahia_F.C.", "http://dbpedia.org/resource/F.C._West_Ham_United", "http://dbpedia.org/resource/Mlandege_FC", "http://dbpedia.org/resource/Al-Shaab_Hadramaut", "http://dbpedia.org/resource/Free_State_Stars_F.C.", "http://dbpedia.org/resource/Fanja_SC", "http://dbpedia.org/resource/Azam_Fc", "http://dbpedia.org/resource/Al-Markhiya_SC", "http://dbpedia.org/resource/Simba_SC_Simba", "http://dbpedia.org/resource/Malindi_S.C.", "http://dbpedia.org/resource/Whitecaps_FC_Academy", "http://dbpedia.org/resource/Ndanda_F.C.", "http://dbpedia.org/resource/Zimamoto_F.C.", "http://dbpedia.org/resource/Baroka_F.C.", "http://dbpedia.org/resource/Chippa_United_F.C.", "http://dbpedia.org/resource/Highlands_Park_F.C.", "http://dbpedia.org/resource/UiTM_FC", "http://dbpedia.org/resource/KMKM_F.C.", "http://dbpedia.org/resource/Jang'ombe_Boys_F.C.", "http://dbpedia.org/resource/Mafunzo_F.C.", "http://dbpedia.org/resource/Taifa_ya_Jang'ombe_S.C.", "http://dbpedia.org/resource/Sofapaka_F.C.", "http://dbpedia.org/resource/Royal_AM_F.C.", "http://dbpedia.org/resource/Arusha_United_F.C.", "http://dbpedia.org/resource/Gainsborough_Trinity_F.C.", "http://dbpedia.org/resource/Harrogate_Town_A.F.C.", "http://dbpedia.org/resource/Tamworth_F.C.", "http://dbpedia.org/resource/Barrow_A.F.C.", "http://dbpedia.org/resource/Burton_Albion_F.C.", "http://dbpedia.org/resource/Solihull_Moors_F.C.", "http://dbpedia.org/resource/Crawley_Town_F.C.", "http://dbpedia.org/resource/Grimsby_Town_F.C.", "http://dbpedia.org/resource/Histon_F.C.", "http://dbpedia.org/resource/Mansfield_Town_F.C.", "http://dbpedia.org/resource/Leicester_City_F.C.", "http://dbpedia.org/resource/Lincoln_City_F.C.", "http://dbpedia.org/resource/St_Joseph's_F.C.", "http://dbpedia.org/resource/Blackpool_F.C.", "http://dbpedia.org/resource/Oxford_City_F.C.", "http://dbpedia.org/resource/OC_Bukavu_Dawa", "http://dbpedia.org/resource/New_York_Eagles", "http://dbpedia.org/resource/Al-Nasr_SC_(Dubai)", "http://dbpedia.org/resource/FC_St._Veit", "http://dbpedia.org/resource/Heracles_Almelo", "http://dbpedia.org/resource/Pan_African_S.C.", "http://dbpedia.org/resource/Kongsvinger_IL_Toppfotball", "http://dbpedia.org/resource/Petrojet_SC", "http://dbpedia.org/resource/ENPPI_SC", "http://dbpedia.org/resource/CD_Tenerife_B", "http://dbpedia.org/resource/JKU_S.C.", "http://dbpedia.org/resource/Youssoufia_Berrechid", "http://dbpedia.org/resource/Al-Hilal_Club_(Omdurman)", "http://dbpedia.org/resource/AFC_Eskilstuna", "http://dbpedia.org/resource/JS_Saoura", "http://dbpedia.org/resource/FK_Sloboda_Tuzla", "http://dbpedia.org/resource/Tanzania_national_under-23_football_team", "http://dbpedia.org/resource/Tanzania_Soccer_Academy", "http://dbpedia.org/resource/Dhofar_Club", "http://dbpedia.org/resource/Saham_Club", "http://dbpedia.org/resource/AS_Kigali_FC", "http://dbpedia.org/resource/Nakambala_Leopards_F.C.", "http://dbpedia.org/resource/F.C._Platinum", "http://dbpedia.org/resource/ZESCO_United_F.C.", "http://dbpedia.org/resource/GIF_Sundsvall", "http://dbpedia.org/resource/Montego_Bay_United_F.C.", "http://dbpedia.org/resource/Kajumulo_FC", "http://dbpedia.org/resource/Seattle_Saints", "http://dbpedia.org/resource/Moghreb_T\u00e9touan", "http://dbpedia.org/resource/CD_Izarra", "http://dbpedia.org/resource/CD_Tenerife", "http://dbpedia.org/resource/AS_Cannes", "http://dbpedia.org/resource/Morogoro_Youth_Academy", "http://dbpedia.org/resource/Police_F.C._(Tanzania)", "http://dbpedia.org/resource/JKT_Oljoro_F.C.", "http://dbpedia.org/resource/FC_Hirnyk-Sport_Horishni_Plavni", "http://dbpedia.org/resource/FC_Inhulets_Petrove", "http://dbpedia.org/resource/FC_Vorskla_Poltava", "http://dbpedia.org/resource/\u00c9toile_Sportive_du_Sahel", "http://dbpedia.org/resource/Manang_Marshyangdi_Club"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/East_Tilbury> <http://dbpedia.org/ontology/ceremonialCounty> ?uri } "}, "answers": ["http://dbpedia.org/resource/Essex"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Laemmle_Theatres> <http://dbpedia.org/property/service> ?x . ?x <http://dbpedia.org/ontology/award> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/choreographer> <http://dbpedia.org/resource/Catarina_Lindgren> . ?uri <http://dbpedia.org/ontology/parternedPerson> ?x . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/Siege_of_Santiago> . ?x <http://dbpedia.org/ontology/commander> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/California> . ?uri <http://dbpedia.org/property/publisher> ?x . }"}, "answers": ["http://dbpedia.org/resource/Airlock_(video_game)", "http://dbpedia.org/resource/Sssnake", "http://dbpedia.org/resource/Frankenstein's_Monster_(video_game)", "http://dbpedia.org/resource/Catfight_(video_game)", "http://dbpedia.org/resource/The_Men_in_Black_(comics)", "http://dbpedia.org/resource/I,_Robot_(video_game)", "http://dbpedia.org/resource/Die_Hard_Trilogy", "http://dbpedia.org/resource/Die_Hard_Trilogy_2:_Viva_Las_Vegas", "http://dbpedia.org/resource/Alien_Resurrection_(video_game)", "http://dbpedia.org/resource/Aliens_Versus_Predator_(1999_video_game)", "http://dbpedia.org/resource/Fox_Sports_College_Hoops_'99", "http://dbpedia.org/resource/Sanity:_Aiken's_Artifact", "http://dbpedia.org/resource/The_Operative:_No_One_Lives_Forever", "http://dbpedia.org/resource/The_Pagemaster_(video_game)", "http://dbpedia.org/resource/The_Simpsons:_Virtual_Springfield", "http://dbpedia.org/resource/The_Tick_(video_game)", "http://dbpedia.org/resource/The_X-Files_Game", "http://dbpedia.org/resource/Alien_(Atari_2600)", "http://dbpedia.org/resource/Aliens_Online", "http://dbpedia.org/resource/NBA_Basketball_2000", "http://dbpedia.org/resource/NHL_Championship_2000", "http://dbpedia.org/resource/Croc:_Legend_of_the_Gobbos", "http://dbpedia.org/resource/The_Simpsons:_Cartoon_Studio", "http://dbpedia.org/resource/Anastasia:_Adventures_with_Pooka_and_Bartok", "http://dbpedia.org/resource/Icebreaker_(video_game)", "http://dbpedia.org/resource/Independence_Day_(video_game)", "http://dbpedia.org/resource/Venus_(Teenage_Mutant_Ninja_Turtles)", "http://dbpedia.org/resource/Bush_vs._Kerry_Boxing", "http://dbpedia.org/resource/Driver:_Vegas", "http://dbpedia.org/resource/Driver_3", "http://dbpedia.org/resource/AstroPop", "http://dbpedia.org/resource/Family_Guy:_Uncensored", "http://dbpedia.org/resource/Zuma_(video_game)", "http://dbpedia.org/resource/Arcomage", "http://dbpedia.org/resource/Vegas_Games_2000", "http://dbpedia.org/resource/WarJetz", "http://dbpedia.org/resource/Sammy_Sosa_High_Heat_Baseball_2001", "http://dbpedia.org/resource/Army_Men:_Operation_Green", "http://dbpedia.org/resource/Army_Men:_World_War_-_Team_Assault", "http://dbpedia.org/resource/Army_Men_Advance", "http://dbpedia.org/resource/Army_Men", "http://dbpedia.org/resource/Uprising:_Join_or_Die", "http://dbpedia.org/resource/Uprising_2:_Lead_and_Destroy", "http://dbpedia.org/resource/Uprising_X", "http://dbpedia.org/resource/Killing_Time_(video_game)", "http://dbpedia.org/resource/Meridian_59", "http://dbpedia.org/resource/Requiem:_Avenging_Angel", "http://dbpedia.org/resource/Heroes_of_Might_and_Magic", "http://dbpedia.org/resource/Heroes_Chronicles", "http://dbpedia.org/resource/Cubix_Robots_for_Everyone:_Showdown", "http://dbpedia.org/resource/Heroes_of_Might_and_Magic:_Quest_for_the_Dragon_Bone_Staff", "http://dbpedia.org/resource/Heroes_of_Might_and_Magic_(Game_Boy_Color)", "http://dbpedia.org/resource/Heroes_of_Might_and_Magic_II", "http://dbpedia.org/resource/Heroes_of_Might_and_Magic_III", "http://dbpedia.org/resource/Heroes_of_Might_and_Magic_III:_Armageddon's_Blade", "http://dbpedia.org/resource/Heroes_of_Might_and_Magic_IV", "http://dbpedia.org/resource/High_Heat_Baseball_1999", "http://dbpedia.org/resource/High_Heat_Baseball_2000", "http://dbpedia.org/resource/High_Heat_Major_League_Baseball_2002", "http://dbpedia.org/resource/High_Heat_Major_League_Baseball_2003", "http://dbpedia.org/resource/High_Heat_Major_League_Baseball_2004", "http://dbpedia.org/resource/Jonny_Moseley_Mad_Trix", "http://dbpedia.org/resource/Might_and_Magic", "http://dbpedia.org/resource/Station_Invasion", "http://dbpedia.org/resource/Blade_Force", "http://dbpedia.org/resource/Might_and_Magic_IX", "http://dbpedia.org/resource/Might_and_Magic_VI:_The_Mandate_of_Heaven", "http://dbpedia.org/resource/Top_Gun:_Combat_Zones", "http://dbpedia.org/resource/Heavy_Fire", "http://dbpedia.org/resource/Major_League_Eating:_The_Game", "http://dbpedia.org/resource/Space_Raiders_(video_game)", "http://dbpedia.org/resource/Journal_of_Historical_Review", "http://dbpedia.org/resource/Waifs_and_Strays_(poetry_collection)", "http://dbpedia.org/resource/Portions_from_a_Wine-stained_Notebook:_Short_Stories_and_Essays", "http://dbpedia.org/resource/Colorblind_(book)", "http://dbpedia.org/resource/More_Notes_of_a_Dirty_Old_Man", "http://dbpedia.org/resource/Between_Barack_and_a_Hard_Place", "http://dbpedia.org/resource/Book_of_Dreams_(novel)", "http://dbpedia.org/resource/DeathKeep", "http://dbpedia.org/resource/Archon_Ultra", "http://dbpedia.org/resource/Carrier_Strike", "http://dbpedia.org/resource/Computer_Ambush", "http://dbpedia.org/resource/Computer_Quarterback", "http://dbpedia.org/resource/Conflict:_Middle_East", "http://dbpedia.org/resource/Demon's_Winter", "http://dbpedia.org/resource/Warhammer_40,000:_Chaos_Gate", "http://dbpedia.org/resource/Warhammer_40,000:_Rites_of_War", "http://dbpedia.org/resource/Warlords_Battlecry", "http://dbpedia.org/resource/Warship_(video_game)", "http://dbpedia.org/resource/Fighter_Command:_The_Battle_of_Britain", "http://dbpedia.org/resource/Fighting_Steel", "http://dbpedia.org/resource/Southern_Command_(video_game)", "http://dbpedia.org/resource/Gemstone_Healer", "http://dbpedia.org/resource/Gemstone_Warrior", "http://dbpedia.org/resource/Geopolitique_1990", "http://dbpedia.org/resource/The_Dark_Queen_of_Krynn", "http://dbpedia.org/resource/Veil_of_Darkness", "http://dbpedia.org/resource/Luftwaffe_Commander", "http://dbpedia.org/resource/Medieval_Lords:_Soldier_Kings_of_Europe", "http://dbpedia.org/resource/Al-Qadim:_The_Genie's_Curse", "http://dbpedia.org/resource/Alien_Logic:_A_Skyrealms_of_Jorune_Adventure", "http://dbpedia.org/resource/Galactic_Adventures", "http://dbpedia.org/resource/Gateway_to_the_Savage_Frontier", "http://dbpedia.org/resource/Cosmic_Balance_II", "http://dbpedia.org/resource/Team_Apache", "http://dbpedia.org/resource/Dark_Legions", "http://dbpedia.org/resource/Wargame_Construction_Set", "http://dbpedia.org/resource/Germany_1985", "http://dbpedia.org/resource/Gettysburg:_The_Turning_Point", "http://dbpedia.org/resource/DragonStrike_(video_game)", "http://dbpedia.org/resource/Guadalcanal_Campaign_(video_game)", "http://dbpedia.org/resource/No_Greater_Glory:_The_American_Civil_War", "http://dbpedia.org/resource/Breakthrough_in_the_Ardennes", "http://dbpedia.org/resource/Broadsides_(video_game)", "http://dbpedia.org/resource/Menzoberranzan_(video_game)", "http://dbpedia.org/resource/Shadow_Sorcerer", "http://dbpedia.org/resource/Operation_Apocalypse", "http://dbpedia.org/resource/Operation_Market_Garden_(video_game)", "http://dbpedia.org/resource/North_Atlantic_'86", "http://dbpedia.org/resource/Norway_1985", "http://dbpedia.org/resource/Objective:_Kursk", "http://dbpedia.org/resource/Red_Lightning_(video_game)", "http://dbpedia.org/resource/Ringside_Seat", "http://dbpedia.org/resource/Fortress_(1983_video_game)", "http://dbpedia.org/resource/Pursuit_of_the_Graf_Spee_(video_game)", "http://dbpedia.org/resource/Questron_(video_game)", "http://dbpedia.org/resource/Questron_II", "http://dbpedia.org/resource/Renegade:_The_Battle_for_Jacob's_Star", "http://dbpedia.org/resource/S._E._U._I._S.", "http://dbpedia.org/resource/Colonial_Conquest", "http://dbpedia.org/resource/Fantasy_Empires", "http://dbpedia.org/resource/Great_Naval_Battles", "http://dbpedia.org/resource/Great_Naval_Battles:_Guadalcanal_1942-1943", "http://dbpedia.org/resource/Shard_of_Spring", "http://dbpedia.org/resource/The_Eternal_Dagger", "http://dbpedia.org/resource/Neverwinter_Nights_(1991_video_game)", "http://dbpedia.org/resource/Baltic_1985:_Corridor_to_Berlin", "http://dbpedia.org/resource/Battle_Cruiser_(video_game)", "http://dbpedia.org/resource/Combat_Leader", "http://dbpedia.org/resource/Cyber_Empires", "http://dbpedia.org/resource/Tony_La_Russa's_Ultimate_Baseball", "http://dbpedia.org/resource/Treasures_of_the_Savage_Frontier", "http://dbpedia.org/resource/Second_Front:_Germany_Turns_East", "http://dbpedia.org/resource/Advanced_Dungeons_&_Dragons:_Heroes_of_the_Lance", "http://dbpedia.org/resource/Su-27_Flanker_(video_game)", "http://dbpedia.org/resource/Stronghold_(1993_video_game)", "http://dbpedia.org/resource/The_Summoning_(video_game)", "http://dbpedia.org/resource/Carrier_Force", "http://dbpedia.org/resource/Battle_of_Antietam_(video_game)", "http://dbpedia.org/resource/Battles_of_Napoleon", "http://dbpedia.org/resource/First_Over_Germany", "http://dbpedia.org/resource/Galactic_Gladiators", "http://dbpedia.org/resource/Storm_Across_Europe", "http://dbpedia.org/resource/Nam_(1986_video_game)", "http://dbpedia.org/resource/Napoleon's_Campaigns:_1813_&_1815", "http://dbpedia.org/resource/Dragons_of_Flame_(video_game)", "http://dbpedia.org/resource/Dungeon_Hack", "http://dbpedia.org/resource/War_Wind_II:_Human_Onslaught", "http://dbpedia.org/resource/Imperialism_II:_Age_of_Exploration", "http://dbpedia.org/resource/Imperium_Galactum", "http://dbpedia.org/resource/50_Mission_Crush", "http://dbpedia.org/resource/CyClones", "http://dbpedia.org/resource/Cytron_Masters", "http://dbpedia.org/resource/Hillsfar", "http://dbpedia.org/resource/Roadwar_2000", "http://dbpedia.org/resource/President_Elect_(video_game)", "http://dbpedia.org/resource/Eye_of_the_Beholder_II:_The_Legend_of_Darkmoon", "http://dbpedia.org/resource/Final_Liberation:_Warhammer_Epic_40,000", "http://dbpedia.org/resource/Battle_Group_(video_game)", "http://dbpedia.org/resource/Battle_for_Normandy_(video_game)", "http://dbpedia.org/resource/RDF_1985", "http://dbpedia.org/resource/Epidemic!", "http://dbpedia.org/resource/Silent_Hunter_(video_game)", "http://dbpedia.org/resource/Spelljammer:_Pirates_of_Realmspace", "http://dbpedia.org/resource/Star_Command_(1988_video_game)", "http://dbpedia.org/resource/Star_General", "http://dbpedia.org/resource/Steel_Panthers_(video_game)", "http://dbpedia.org/resource/Steel_Panthers_II:_Modern_Battles", "http://dbpedia.org/resource/Stellar_Crusade", "http://dbpedia.org/resource/Knights_of_the_Desert", "http://dbpedia.org/resource/Rails_West!", "http://dbpedia.org/resource/Rebel_Charge_at_Chickamauga", "http://dbpedia.org/resource/Shiloh:_Grant's_Trial_in_the_West", "http://dbpedia.org/resource/Imperialism_(video_game)", "http://dbpedia.org/resource/Buccaneer_(video_game)", "http://dbpedia.org/resource/Panzer_Commander", "http://dbpedia.org/resource/Forgotten_Realms:_Unlimited_Adventures", "http://dbpedia.org/resource/Field_of_Fire_(video_game)", "http://dbpedia.org/resource/Phantasie", "http://dbpedia.org/resource/Bomb_Alley", "http://dbpedia.org/resource/President_Elect:_1988_Edition", "http://dbpedia.org/resource/Professional_Tour_Golf", "http://dbpedia.org/resource/The_Road_to_Gettysburg", "http://dbpedia.org/resource/Overrun!", "http://dbpedia.org/resource/The_Battle_of_Shiloh_(video_game)", "http://dbpedia.org/resource/Torpedo_Fire", "http://dbpedia.org/resource/Tony_La_Russa_Baseball", "http://dbpedia.org/resource/Wizard's_Crown", "http://dbpedia.org/resource/Sons_of_Liberty_(video_game)", "http://dbpedia.org/resource/Mech_Brigade", "http://dbpedia.org/resource/Six-Gun_Shootout", "http://dbpedia.org/resource/Phantasie_II", "http://dbpedia.org/resource/Phantasie_III", "http://dbpedia.org/resource/War_in_the_South_Pacific", "http://dbpedia.org/resource/Western_Front:_The_Liberation_of_Europe_1944\u20131945", "http://dbpedia.org/resource/Tanarus_(video_game)", "http://dbpedia.org/resource/TeenSet", "http://dbpedia.org/resource/Sword_of_Saros", "http://dbpedia.org/resource/Party_Mix_(video_game)", "http://dbpedia.org/resource/Communist_Mutants_from_Space", "http://dbpedia.org/resource/Dragonstomper", "http://dbpedia.org/resource/Phaser_Patrol", "http://dbpedia.org/resource/War_of_the_Worlds_(video_game)", "http://dbpedia.org/resource/Star_Castle", "http://dbpedia.org/resource/Zzyzzyxx", "http://dbpedia.org/resource/Baseball_The_Season_II", "http://dbpedia.org/resource/Sundance_(video_game)", "http://dbpedia.org/resource/Tail_Gunner", "http://dbpedia.org/resource/Dragon's_Lair", "http://dbpedia.org/resource/Solar_Quest", "http://dbpedia.org/resource/Cosmic_Chasm", "http://dbpedia.org/resource/Rip_Off_(video_game)", "http://dbpedia.org/resource/Space_Ace", "http://dbpedia.org/resource/Rumble_Pak_(comics)", "http://dbpedia.org/resource/Mr._Maximillian_Bacchus_and_His_Travelling_Circus", "http://dbpedia.org/resource/Playboy"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Philadelphia_Rage> <http://dbpedia.org/ontology/stadium> ?uri } "}, "answers": ["http://dbpedia.org/resource/Philadelphia"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/license> <http://dbpedia.org/resource/Software_as_a_service> . ?uri <http://dbpedia.org/property/license> ?x . }"}, "answers": ["1"]}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/literaryGenre> <http://dbpedia.org/resource/Racism> . ?x <http://dbpedia.org/ontology/nonFictionSubject> ?uri }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/route> <http://dbpedia.org/resource/U.S._Route_59> . ?x <http://dbpedia.org/property/junction> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/service> <http://dbpedia.org/resource/OneDrive> } "}, "answers": ["http://dbpedia.org/resource/21Vianet", "http://dbpedia.org/resource/Microsoft"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bob_Adams_(American_football)> <http://dbpedia.org/property/knownFor> ?uri } "}, "answers": ["http://dbpedia.org/resource/Tight_end", "http://dbpedia.org/resource/National_Football_League", "Scientology official"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Chelsea_F.C> . <http://dbpedia.org/property/owner> ?uri } "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Monroe_Carell_Jr._Children's_Hospital_at_Vanderbilt> <http://dbpedia.org/property/affiliation> ?uri . <http://dbpedia.org/resource/Duncan_U._Fletcher> <http://dbpedia.org/ontology/almaMater> ?uri} "}, "answers": ["http://dbpedia.org/resource/Vanderbilt_University"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bachelor_(artist)> <http://dbpedia.org/ontology/board> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Liv_Ullmann> <http://dbpedia.org/ontology/partner> ?x . ?x <http://dbpedia.org/property/awards> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Goethe_Prize", "http://dbpedia.org/resource/BAFTA_Fellowship", "http://dbpedia.org/resource/Praemium_Imperiale", "http://dbpedia.org/resource/Academy_Award", ""]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/products> <http://dbpedia.org/resource/Cross_Platform_for_Softwares> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/battle> <http://dbpedia.org/resource/Operation_Dragoon> . ?x <http://dbpedia.org/property/title> ?uri . }"}, "answers": ["28"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/firstTeam> <http://dbpedia.org/resource/Williams_Grand_Prix_Engineering> . ?x <http://dbpedia.org/property/poleDriver> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Michael_M._Sears> <http://dbpedia.org/ontology/employer> ?uri } "}, "answers": ["http://dbpedia.org/resource/McDonnell_Aircraft_Corporation", "http://dbpedia.org/resource/Boeing"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/artist> <http://dbpedia.org/resource/McClain_(band)> . ?x <http://dbpedia.org/ontology/artist> ?uri }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/engine> <http://dbpedia.org/resource/Front-engine> . ?x <http://dbpedia.org/ontology/layout> ?uri }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Gatwick_Airport> . ?x <http://dbpedia.org/ontology/destinations> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/WPC_Dynamo_Moscow> <http://dbpedia.org/property/arena> ?uri } "}, "answers": ["Dynamo, Moscow"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/leader> <http://dbpedia.org/resource/Venkatraman_Ramakrishnan> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/commander> <http://dbpedia.org/resource/The_Jacket> . ?x <http://dbpedia.org/property/territory> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Celluloid_Records> <http://dbpedia.org/property/label> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/network> <http://dbpedia.org/resource/Tokyo_Broadcasting_System> . ?uri <http://dbpedia.org/property/author> ?x . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/inflow> <http://dbpedia.org/resource/Marmara> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Sea>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Geneva> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/institution> <http://dbpedia.org/resource/AeroKlub_Wroc\u0142aw> . ?x <http://dbpedia.org/property/nationality> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Ukraine", "http://dbpedia.org/resource/Canada"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Arkansas_wine> <http://dbpedia.org/property/officialName> ?uri } "}, "answers": ["http://dbpedia.org/resource/Arkansas"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/routeStart> <http://dbpedia.org/resource/Seberang_Perai> . ?x <http://dbpedia.org/property/crosses> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Malaysia", "http://dbpedia.org/resource/South_Channel,_Malaysia", "http://dbpedia.org/resource/Penang_Strait"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/purpose> <http://dbpedia.org/resource/Maharashtran> } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/river> <http://dbpedia.org/resource/Mota-Engil> . ?x <http://dbpedia.org/property/crosses> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/fields> <http://dbpedia.org/resource/Mathematics> . ?x <http://dbpedia.org/property/fields> ?uri }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jimmie_Lou_Fisher> <http://dbpedia.org/property/governor> ?uri } "}, "answers": ["http://dbpedia.org/resource/Frank_D._White", "http://dbpedia.org/resource/Jim_Guy_Tucker", "http://dbpedia.org/resource/Bill_Clinton", "http://dbpedia.org/resource/Mike_Huckabee"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/birthPlace> <http://dbpedia.org/resource/England> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/child> <http://dbpedia.org/resource/Luke_Scott_(director)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Gustavo_Rojas_Pinilla> <http://dbpedia.org/ontology/relation> ?x . ?x <http://dbpedia.org/property/education> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/nationality> <http://dbpedia.org/resource/Americans> . }"}, "answers": ["5586"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lucifer's_Hammer> <http://dbpedia.org/ontology/publisher> ?uri } "}, "answers": ["http://dbpedia.org/resource/Del_Rey_Books"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/label> <http://dbpedia.org/resource/MapleMusic_Recordings> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Pennsylvania> . ?uri <http://dbpedia.org/property/formerTeam> ?x . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/primeminister> <http://dbpedia.org/resource/History_of_Trier> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Country>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/owner> <http://dbpedia.org/resource/Roman_Abramovich> . ?uri <http://dbpedia.org/property/company> ?x . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/foundationBy> <http://dbpedia.org/resource/Toronto> . ?x <http://dbpedia.org/property/locations> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/spouse> <http://dbpedia.org/resource/Uncle_Henry_(Oz)> . }"}, "answers": ["http://dbpedia.org/resource/Aunt_Em"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Blytheville_High_School> <http://dbpedia.org/property/mascot> ?uri } "}, "answers": ["http://dbpedia.org/resource/Chickasaw"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/voices> <http://dbpedia.org/resource/Eliza_Schneider> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": ["http://dbpedia.org/resource/Squirrel_Boy"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/J._Bennett_Johnston> <http://dbpedia.org/ontology/related> ?x . ?x <http://dbpedia.org/property/state> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/occupation> <http://dbpedia.org/resource/Homestead_Grays> . ?x <http://dbpedia.org/property/birthPlace> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Simpsons_Ride> <http://dbpedia.org/property/starring> ?uri } "}, "answers": ["", "Kelsey Grammer", "Nancy Cartwright", "Hank Azaria", "Julie Kavner", "Dan Castellaneta", "Yeardley Smith"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/IPhone> <http://dbpedia.org/ontology/os> ?uri . <http://dbpedia.org/resource/XNU> <http://dbpedia.org/property/developer> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/kingdom> <http://dbpedia.org/resource/Bacillales> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Bacteria>}"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Alice's_Wonderland> <http://dbpedia.org/property/director> ?uri } "}, "answers": ["Walt Disney", "", "Ub Iwerks"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/garrison> <http://dbpedia.org/resource/Pentagon> . ?uri <http://dbpedia.org/ontology/commandStructure> <http://dbpedia.org/resource/United_States_Department_of_Defense> } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/designer> <http://dbpedia.org/resource/Cambodian_Democrats> . ?x <http://dbpedia.org/ontology/bridgeCarries> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/state> <http://dbpedia.org/resource/Nazi_Germany> . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/doctoralAdvisor> <http://dbpedia.org/resource/Mary_Ainsworth> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}"}, "answers": ["http://dbpedia.org/resource/Patricia_McKinsey_Crittenden"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/placeOfBirth> <http://dbpedia.org/resource/Europe> } "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/2008_Summer_Olympics_\u2013_Women's_400_metre_individual_medley> <http://dbpedia.org/property/silverMedley> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/doctoralStudent> <http://dbpedia.org/resource/\u00c9tienne_(film)> . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/predecessor> <http://dbpedia.org/resource/BMW_M10> . ?x <http://dbpedia.org/property/engine> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/operatingSystem> <http://dbpedia.org/resource/Macintosh_Quadra_660AV> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Software>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/guests> <http://dbpedia.org/resource/Brian_d'Arcy_James> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/He's_a_Pirate> <http://dbpedia.org/ontology/writer> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/recordLabel> <http://dbpedia.org/resource/RCA_Records> . ?uri <http://dbpedia.org/property/musicComposer> ?x . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/compiler> <http://dbpedia.org/resource/Stephen_Law> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Philosophy>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/lastAppearance> <http://dbpedia.org/resource/The_Avengers_(1998_film)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/FictionalCharacter>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Palang_Dharma_Party> <http://dbpedia.org/property/ideology> ?uri . <http://dbpedia.org/resource/Miao> <http://dbpedia.org/ontology/denomination> ?uri} "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/producer> <http://dbpedia.org/resource/Michael_Deeley> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": ["http://dbpedia.org/resource/The_Case_of_the_Mukkinese_Battle-Horn", "http://dbpedia.org/resource/The_Italian_Job", "http://dbpedia.org/resource/The_Man_Who_Fell_to_Earth", "http://dbpedia.org/resource/The_Other_People", "http://dbpedia.org/resource/Conduct_Unbecoming_(1975_film)", "http://dbpedia.org/resource/Murphy's_War", "http://dbpedia.org/resource/Crosstrap", "http://dbpedia.org/resource/Robbery_(1967_film)", "http://dbpedia.org/resource/One_Way_Pendulum_(film)", "http://dbpedia.org/resource/Blade_Runner"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/predecessor> <http://dbpedia.org/resource/Jenny_Macklin> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Politician>}"}, "answers": ["5"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Taekwondo> <http://dbpedia.org/property/athletics> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/placeofburial> <http://dbpedia.org/resource/Arlington_National_Cemetery> . }"}, "answers": ["http://dbpedia.org/resource/Allen_B._Reed", "http://dbpedia.org/resource/Allen_Buchanan_(Medal_of_Honor)", "http://dbpedia.org/resource/Allen_J._Greer", "http://dbpedia.org/resource/Allyn_Capron", "http://dbpedia.org/resource/Allyn_K._Capron", "http://dbpedia.org/resource/Almond_E._Fisher", "http://dbpedia.org/resource/Alva_J._Brasted", "http://dbpedia.org/resource/Alva_R._Fitch", "http://dbpedia.org/resource/Alvan_Cullem_Gillem_II", "http://dbpedia.org/resource/Amor_L._Sims", "http://dbpedia.org/resource/Amos_Fries", "http://dbpedia.org/resource/Andre_W._Brewster", "http://dbpedia.org/resource/Andrew_Chambers", "http://dbpedia.org/resource/Andrew_D._Turner", "http://dbpedia.org/resource/Andrew_Hero_Jr.", "http://dbpedia.org/resource/Andrew_Moses", "http://dbpedia.org/resource/Andrew_P._O'Meara", "http://dbpedia.org/resource/Alfred_Gorham", "http://dbpedia.org/resource/Dan_Christie_Kingman", "http://dbpedia.org/resource/Daniel_Ammen", "http://dbpedia.org/resource/Daniel_Augustus_Joseph_Sullivan", "http://dbpedia.org/resource/Daniel_H._Rucker", "http://dbpedia.org/resource/Daniel_Huston_Jr.", "http://dbpedia.org/resource/Daniel_J._Murphy", "http://dbpedia.org/resource/Daniel_James_Jr.", "http://dbpedia.org/resource/Daniel_M._McGurl", "http://dbpedia.org/resource/Daniel_O._Graham", "http://dbpedia.org/resource/Daniel_V._Gallery", "http://dbpedia.org/resource/Daniel_W._Burke", "http://dbpedia.org/resource/Daniel_Webster_Flagler", "http://dbpedia.org/resource/David_Ayres_Depue_Ogden", "http://dbpedia.org/resource/David_B._Harmony", "http://dbpedia.org/resource/David_B._McKibbin", "http://dbpedia.org/resource/David_C._Dolby", "http://dbpedia.org/resource/David_C._Schilling", "http://dbpedia.org/resource/David_C._Shanks", "http://dbpedia.org/resource/David_Dixon_Porter_(Medal_of_Honor)", "http://dbpedia.org/resource/David_E._Buckingham", "http://dbpedia.org/resource/David_F._O'Neill", "http://dbpedia.org/resource/David_F._Wherley_Jr.", "http://dbpedia.org/resource/David_H._Bagley", "http://dbpedia.org/resource/David_Hackworth", "http://dbpedia.org/resource/David_Harrington_(Medal_of_Honor)", "http://dbpedia.org/resource/David_J._McCloud", "http://dbpedia.org/resource/David_L._Brainard", "http://dbpedia.org/resource/David_M._Jones", "http://dbpedia.org/resource/David_M._Shoup", "http://dbpedia.org/resource/David_McCampbell", "http://dbpedia.org/resource/David_R._Kingsley", "http://dbpedia.org/resource/Death_of_Logan_Melgar", "http://dbpedia.org/resource/Van_D._Bell", "http://dbpedia.org/resource/Vermont_Garrison", "http://dbpedia.org/resource/Vernon_Baker", "http://dbpedia.org/resource/Vernon_E._Megee", "http://dbpedia.org/resource/Victor_Prather", "http://dbpedia.org/resource/Vincent_O'Rourke", "http://dbpedia.org/resource/Vincent_R._Kramer", "http://dbpedia.org/resource/Virgil_L._Peterson", "http://dbpedia.org/resource/Virgil_R._Miller", "http://dbpedia.org/resource/Wager_Swayne", "http://dbpedia.org/resource/Wallace_M._Greene", "http://dbpedia.org/resource/Walter_Atlee_Edwards", "http://dbpedia.org/resource/Walter_C._Monegan_Jr.", "http://dbpedia.org/resource/Walter_I._Lawson", "http://dbpedia.org/resource/Walter_Irvine_Jordan", "http://dbpedia.org/resource/Walter_James_Sabalauski", "http://dbpedia.org/resource/Walter_L._Reed", "http://dbpedia.org/resource/Walter_McCaw", "http://dbpedia.org/resource/Walter_Newell_Hill", "http://dbpedia.org/resource/Walter_Reed", "http://dbpedia.org/resource/Walter_Reed_Weaver", "http://dbpedia.org/resource/Walter_S._Schuyler", "http://dbpedia.org/resource/Walter_Stratton_Anderson", "http://dbpedia.org/resource/Walter_Thorn", "http://dbpedia.org/resource/Walter_W._Wensinger", "http://dbpedia.org/resource/Warner_B._Bayley", "http://dbpedia.org/resource/Warner_Norton_Grubb", "http://dbpedia.org/resource/Warren_Whitside", "http://dbpedia.org/resource/Washington_Irving_Chambers", "http://dbpedia.org/resource/Washington_L._Capps", "http://dbpedia.org/resource/Delbert_Black", "http://dbpedia.org/resource/Delbert_O._Jennings", "http://dbpedia.org/resource/Delk_M._Oden", "http://dbpedia.org/resource/Deming_Bronson", "http://dbpedia.org/resource/Dennis_Bell_(Medal_of_Honor)", "http://dbpedia.org/resource/Dennis_E._Nolan", "http://dbpedia.org/resource/Dennis_T._Kirby", "http://dbpedia.org/resource/Devol_Brett", "http://dbpedia.org/resource/Diego_E._Hern\u00e1ndez", "http://dbpedia.org/resource/Dieter_Dengler", "http://dbpedia.org/resource/Dion_Williams", "http://dbpedia.org/resource/Dixie_Kiefer", "http://dbpedia.org/resource/Verna_Grahek_Mize", "http://dbpedia.org/resource/Alan_G._Rogers", "http://dbpedia.org/resource/Alan_Louis_Eggers", "http://dbpedia.org/resource/Albert_Blithe", "http://dbpedia.org/resource/Albert_Boyd", "http://dbpedia.org/resource/Albert_Clayton_Dalton", "http://dbpedia.org/resource/Albert_Coady_Wedemeyer", "http://dbpedia.org/resource/Albert_Cushing_Read", "http://dbpedia.org/resource/Albert_E._Milloy", "http://dbpedia.org/resource/Albert_G._Winterhalter", "http://dbpedia.org/resource/Albert_Gleaves", "http://dbpedia.org/resource/Albert_Jesse_Bowley_Sr.", "http://dbpedia.org/resource/Albert_Kautz", "http://dbpedia.org/resource/Albert_S._Barker", "http://dbpedia.org/resource/Albert_S._McLemore", "http://dbpedia.org/resource/Albertus_W._Catlin", "http://dbpedia.org/resource/Alden_Partridge_Colvocoresses", "http://dbpedia.org/resource/Alex_Gard", "http://dbpedia.org/resource/Alexander_Asboth", "http://dbpedia.org/resource/Alexander_Gordon_Lyle", "http://dbpedia.org/resource/Alexander_Henry_Hoff", "http://dbpedia.org/resource/Alexander_Jardine_(Medal_of_Honor)", "http://dbpedia.org/resource/Alexander_K._Tyree", "http://dbpedia.org/resource/Alexander_Peters", "http://dbpedia.org/resource/Alexander_R._Nininger", "http://dbpedia.org/resource/Alexander_Scott_(Medal_of_Honor)", "http://dbpedia.org/resource/Alexander_Vandegrift", "http://dbpedia.org/resource/Alfred_A._Cunningham", "http://dbpedia.org/resource/Alfred_C._Richmond", "http://dbpedia.org/resource/Alfred_Gruenther", "http://dbpedia.org/resource/Alfred_Judson_Force_Moody", "http://dbpedia.org/resource/Alfred_M._Pride", "http://dbpedia.org/resource/Alfred_Starbird", "http://dbpedia.org/resource/Alfred_T._Smith", "http://dbpedia.org/resource/Alfred_W._Chandler", "http://dbpedia.org/resource/Alfred_Wilkinson_Johnson", "http://dbpedia.org/resource/Arthur_C._Davis", "http://dbpedia.org/resource/Arthur_D._Nicholson", "http://dbpedia.org/resource/Arthur_E._Henn", "http://dbpedia.org/resource/Arthur_Henry_Dutton", "http://dbpedia.org/resource/Arthur_Japy_Hepburn", "http://dbpedia.org/resource/Arthur_K._Cebrowski", "http://dbpedia.org/resource/Arthur_K._Ladd", "http://dbpedia.org/resource/Arthur_L._Willard", "http://dbpedia.org/resource/Arthur_M._Ferguson", "http://dbpedia.org/resource/Arthur_Murray_(United_States_Army_officer)", "http://dbpedia.org/resource/Arthur_Murray_Preston", "http://dbpedia.org/resource/Arthur_P._Fairfield", "http://dbpedia.org/resource/Arthur_R._Gralla", "http://dbpedia.org/resource/Arthur_S._Carpender", "http://dbpedia.org/resource/Arthur_S._Moreau_Jr.", "http://dbpedia.org/resource/Arthur_S._Thomas", "http://dbpedia.org/resource/Arthur_W._Radford", "http://dbpedia.org/resource/Ashley_Chadbourne_McKinley", "http://dbpedia.org/resource/Audie_Murphy", "http://dbpedia.org/resource/August_Kautz", "http://dbpedia.org/resource/August_Schomburg", "http://dbpedia.org/resource/Augustine_Warner_Robins", "http://dbpedia.org/resource/Augustus_F._Fechteler", "http://dbpedia.org/resource/Augustus_P._Blocksom", "http://dbpedia.org/resource/Avery_D._Andrews", "http://dbpedia.org/resource/Beauford_T._Anderson", "http://dbpedia.org/resource/Ben_Moreell", "http://dbpedia.org/resource/Benedict_L._Stabile", "http://dbpedia.org/resource/Benjamin_Alvord_Jr.", "http://dbpedia.org/resource/Benjamin_B._Talley", "http://dbpedia.org/resource/Benjamin_F._Hardaway", "http://dbpedia.org/resource/Benjamin_F._Rittenhouse", "http://dbpedia.org/resource/Benjamin_F._Sands", "http://dbpedia.org/resource/Benjamin_Franklin_Kelley", "http://dbpedia.org/resource/Benjamin_H._Cheever_Jr.", "http://dbpedia.org/resource/Benjamin_M._Chiswell", "http://dbpedia.org/resource/Benjamin_O._Davis_Jr.", "http://dbpedia.org/resource/Benjamin_O._Davis_Sr.", "http://dbpedia.org/resource/Benjamin_P._Lamberton", "http://dbpedia.org/resource/Benjamin_Piatt_Runkle", "http://dbpedia.org/resource/Benjamin_Thurman_Hacker", "http://dbpedia.org/resource/Bennie_G._Adkins", "http://dbpedia.org/resource/Berger_Loman", "http://dbpedia.org/resource/Bernard_A._Byrne", "http://dbpedia.org/resource/Bernard_Schriever", "http://dbpedia.org/resource/Ford_O._Rogers", "http://dbpedia.org/resource/Forrest_E._Everhart", "http://dbpedia.org/resource/Forrest_L._Vosler", "http://dbpedia.org/resource/Forrest_S._Petersen", "http://dbpedia.org/resource/Forrest_Sherman", "http://dbpedia.org/resource/Fran_McKee", "http://dbpedia.org/resource/Frances_Shea-Buckley", "http://dbpedia.org/resource/Francis_Asbury_Roe", "http://dbpedia.org/resource/Francis_C._Hammond", "http://dbpedia.org/resource/Francis_Cogswell", "http://dbpedia.org/resource/Francis_G._Brink", "http://dbpedia.org/resource/Francis_Greenlief", "http://dbpedia.org/resource/Francis_J._Higginson", "http://dbpedia.org/resource/Francis_Joseph_Kernan", "http://dbpedia.org/resource/Francis_K._Newcomer", "http://dbpedia.org/resource/Francis_L._Garrett", "http://dbpedia.org/resource/Francis_M._McAlister", "http://dbpedia.org/resource/Francis_S._Dodge", "http://dbpedia.org/resource/Francis_T._Ryan", "http://dbpedia.org/resource/Francis_Thomas_Evans_Sr.", "http://dbpedia.org/resource/Francis_William_Farrell", "http://dbpedia.org/resource/Frank_A._Armstrong", "http://dbpedia.org/resource/Frank_A._Tobey", "http://dbpedia.org/resource/Frank_B._James", "http://dbpedia.org/resource/Frank_Baldwin", "http://dbpedia.org/resource/Frank_Baldwin_(admiral)", "http://dbpedia.org/resource/Frank_Buckles", "http://dbpedia.org/resource/Frank_Drew", "http://dbpedia.org/resource/Frank_E._Beatty", "http://dbpedia.org/resource/Frank_E._Petersen", "http://dbpedia.org/resource/Frank_Edmund_Beatty_Jr.", "http://dbpedia.org/resource/Frank_Ellis_Bamford", "http://dbpedia.org/resource/Frank_Friday_Fletcher", "http://dbpedia.org/resource/Frank_G._Fahrion", "http://dbpedia.org/resource/Frank_Herman_Schofield", "http://dbpedia.org/resource/Frank_Jack_Fletcher", "http://dbpedia.org/resource/Frank_Mahin", "http://dbpedia.org/resource/Frank_Matteson_Bostwick", "http://dbpedia.org/resource/Frank_Maxwell_Andrews", "http://dbpedia.org/resource/Frank_McIntyre", "http://dbpedia.org/resource/Frank_Monroe_Upton", "http://dbpedia.org/resource/Frank_Ross_McCoy", "http://dbpedia.org/resource/Frank_Sherwood_Cocheu", "http://dbpedia.org/resource/Frank_W._Coe", "http://dbpedia.org/resource/Frank_Wesley_Fenno_Jr.", "http://dbpedia.org/resource/Frank_West_(Medal_of_Honor)", "http://dbpedia.org/resource/Frank_Wheaton", "http://dbpedia.org/resource/Franklin_A._Hart", "http://dbpedia.org/resource/Franklin_E._Sigler", "http://dbpedia.org/resource/Franklin_Guest_Smith", "http://dbpedia.org/resource/Franklin_J._Drake", "http://dbpedia.org/resource/Fred_C._Ainsworth", "http://dbpedia.org/resource/Fred_C._Sheffey", "http://dbpedia.org/resource/Fred_E._Haynes_Jr.", "http://dbpedia.org/resource/Fred_Jurgen_Schnepel", "http://dbpedia.org/resource/Fred_K._Mahaffey", "http://dbpedia.org/resource/Fred_Thaddeus_Austin", "http://dbpedia.org/resource/Fred_V._Cherry", "http://dbpedia.org/resource/Frederic_Dahl_Evans", "http://dbpedia.org/resource/Frederic_H._Smith_Jr.", "http://dbpedia.org/resource/Frederick_B._Shaw", "http://dbpedia.org/resource/Frederick_C._Blesse", "http://dbpedia.org/resource/Frederick_C._Turner", "http://dbpedia.org/resource/Frederick_I._Eglin", "http://dbpedia.org/resource/Frederick_J._Becton", "http://dbpedia.org/resource/Frederick_J._Clarke", "http://dbpedia.org/resource/Frederick_Kroesen", "http://dbpedia.org/resource/Frederick_L._Wieseman", "http://dbpedia.org/resource/Frederick_Martin_(general)", "http://dbpedia.org/resource/Frederick_Muller", "http://dbpedia.org/resource/Frederick_S._Strong", "http://dbpedia.org/resource/Frederick_W._F\u00fcger", "http://dbpedia.org/resource/Frederick_W._Mausert_III", "http://dbpedia.org/resource/Frederick_W._Sibley", "http://dbpedia.org/resource/Freeman_V._Horner", "http://dbpedia.org/resource/Frieda_Hardin", "http://dbpedia.org/resource/Gabriel_Ren\u00e9_Paul", "http://dbpedia.org/resource/Gaines_Lawson", "http://dbpedia.org/resource/Gary_W._Johnston", "http://dbpedia.org/resource/George_A._Converse", "http://dbpedia.org/resource/George_A._Dodd", "http://dbpedia.org/resource/George_Alexander_Forsyth", "http://dbpedia.org/resource/George_Andrews_(adjutant_general)", "http://dbpedia.org/resource/George_B._Turner", "http://dbpedia.org/resource/George_Barnett", "http://dbpedia.org/resource/George_Bray_McMillan", "http://dbpedia.org/resource/George_Breeman", "http://dbpedia.org/resource/George_C._Day", "http://dbpedia.org/resource/George_C._Remey", "http://dbpedia.org/resource/George_C._Shaw", "http://dbpedia.org/resource/George_C._Thorpe", "http://dbpedia.org/resource/George_Charrette", "http://dbpedia.org/resource/George_Cregan", "http://dbpedia.org/resource/George_Croghan_Reid", "http://dbpedia.org/resource/George_Crook", "http://dbpedia.org/resource/George_D._Libby", "http://dbpedia.org/resource/George_D._Murray", "http://dbpedia.org/resource/George_D._Ruggles", "http://dbpedia.org/resource/George_D._Webster_(USMC)", "http://dbpedia.org/resource/George_Dilboy", "http://dbpedia.org/resource/George_E._Albee", "http://dbpedia.org/resource/George_E._Stewart", "http://dbpedia.org/resource/George_F._Elliott", "http://dbpedia.org/resource/George_F._Pearson", "http://dbpedia.org/resource/George_F._Rixey", "http://dbpedia.org/resource/George_H._Morgan", "http://dbpedia.org/resource/George_H._Plowman", "http://dbpedia.org/resource/George_H._Wanton", "http://dbpedia.org/resource/George_H._Weems", "http://dbpedia.org/resource/George_Hendricks_Beverley", "http://dbpedia.org/resource/George_Henry_Shelton", "http://dbpedia.org/resource/George_Herbert_Harries", "http://dbpedia.org/resource/George_Huber_Wheeler", "http://dbpedia.org/resource/George_J._Walker", "http://dbpedia.org/resource/George_Jacobson", "http://dbpedia.org/resource/George_Juskalian", "http://dbpedia.org/resource/George_K._McGunnegle", "http://dbpedia.org/resource/George_Kenney", "http://dbpedia.org/resource/George_King_Hunter", "http://dbpedia.org/resource/George_L._Street_III", "http://dbpedia.org/resource/George_M._Neal", "http://dbpedia.org/resource/George_McCall_Courts", "http://dbpedia.org/resource/George_Miller_Sternberg", "http://dbpedia.org/resource/George_O._Van_Orden", "http://dbpedia.org/resource/George_Owen_Squier", "http://dbpedia.org/resource/George_Patton_IV", "http://dbpedia.org/resource/George_Ramsey_Clark", "http://dbpedia.org/resource/George_Ritter_Burnett", "http://dbpedia.org/resource/George_Rose_(Navy_member)", "http://dbpedia.org/resource/George_Sabin_Gibbs", "http://dbpedia.org/resource/George_Scratchley_Brown", "http://dbpedia.org/resource/George_W._Casey_Sr.", "http://dbpedia.org/resource/George_W._Dunaway", "http://dbpedia.org/resource/George_W._Smith_(USMC)", "http://dbpedia.org/resource/George_Washington_Burr", "http://dbpedia.org/resource/George_Welch_(pilot)", "http://dbpedia.org/resource/George_William_Goddard", "http://dbpedia.org/resource/George_Windle_Read_Jr.", "http://dbpedia.org/resource/Halstead_C._Fowler", "http://dbpedia.org/resource/Harley_H._Christy", "http://dbpedia.org/resource/Harold_B._Sallada", "http://dbpedia.org/resource/Harold_D._Campbell", "http://dbpedia.org/resource/Harold_D._Hansen", "http://dbpedia.org/resource/Harold_E._Rosecrans", "http://dbpedia.org/resource/Harold_Fischer", "http://dbpedia.org/resource/Harold_G._Bowen_Sr.", "http://dbpedia.org/resource/Harold_Huglin", "http://dbpedia.org/resource/Harold_Huston_George", "http://dbpedia.org/resource/Harold_J._Greene", "http://dbpedia.org/resource/Harold_Keith_Johnson", "http://dbpedia.org/resource/Harold_M._McClelland", "http://dbpedia.org/resource/Harold_Medberry_Bemis", "http://dbpedia.org/resource/Harold_Percival_Norton", "http://dbpedia.org/resource/Harold_Robert_Aaron", "http://dbpedia.org/resource/Harold_S._Roise", "http://dbpedia.org/resource/Harris_W._Hollis", "http://dbpedia.org/resource/Harry_C._Egbert", "http://dbpedia.org/resource/Harry_D._Felt", "http://dbpedia.org/resource/Harry_G._Hamlet", "http://dbpedia.org/resource/Harry_Jeremiah_Parks", "http://dbpedia.org/resource/Harry_Kinnard", "http://dbpedia.org/resource/Harry_L._Hawthorne", "http://dbpedia.org/resource/Harry_L._Steele", "http://dbpedia.org/resource/Harry_Lipscomb", "http://dbpedia.org/resource/Harry_Lovejoy_Rogers", "http://dbpedia.org/resource/Harry_M._P._Huse", "http://dbpedia.org/resource/Harry_Reuben_Anderson", "http://dbpedia.org/resource/Harry_Taylor_(engineer)", "http://dbpedia.org/resource/Harvey_C._Tschirgi", "http://dbpedia.org/resource/Hawthorne_C._Gray", "http://dbpedia.org/resource/Haydon_L._Boatner", "http://dbpedia.org/resource/Salve_H._Matheson", "http://dbpedia.org/resource/Samuel_Baldwin_Marks_Young", "http://dbpedia.org/resource/Samuel_D._Sturgis", "http://dbpedia.org/resource/Samuel_D._Sturgis_Jr._(1861\u20131933)", "http://dbpedia.org/resource/Samuel_G._Fuqua", "http://dbpedia.org/resource/Samuel_H._Starr", "http://dbpedia.org/resource/Samuel_L._Gravely_Jr.", "http://dbpedia.org/resource/Samuel_L._Howard", "http://dbpedia.org/resource/Samuel_Nathan_Blatchford", "http://dbpedia.org/resource/Samuel_Ovenshine", "http://dbpedia.org/resource/Samuel_Rhoads_Franklin", "http://dbpedia.org/resource/Samuel_Rockenbach", "http://dbpedia.org/resource/Samuel_S._Sumner", "http://dbpedia.org/resource/Samuel_Whitside", "http://dbpedia.org/resource/Samuel_Woodfill", "http://dbpedia.org/resource/Samuel_Woodson_Price", "http://dbpedia.org/resource/Waverly_B._Woodson_Jr.", "http://dbpedia.org/resource/Wayne_E._Meyer", "http://dbpedia.org/resource/Wayne_Maurice_Caron", "http://dbpedia.org/resource/Welborn_G._Dolvin", "http://dbpedia.org/resource/Wendell_Cushing_Neville", "http://dbpedia.org/resource/Wesley_L._Fox", "http://dbpedia.org/resource/Wesley_L._McDonald", "http://dbpedia.org/resource/Wheeler_Bryson_Lipes", "http://dbpedia.org/resource/Wilbur_L._Creech", "http://dbpedia.org/resource/Wilhelm_D._Styer", "http://dbpedia.org/resource/Will_C._Barnes", "http://dbpedia.org/resource/Willard_A._Kitts", "http://dbpedia.org/resource/Willard_J._Smith", "http://dbpedia.org/resource/Willard_Miller", "http://dbpedia.org/resource/William_A._Campbell_(Tuskegee_Airman)", "http://dbpedia.org/resource/William_A._Enemark", "http://dbpedia.org/resource/William_A._Glassford", "http://dbpedia.org/resource/William_A._Hammond", "http://dbpedia.org/resource/William_A._Moffett", "http://dbpedia.org/resource/William_Abram_Mann", "http://dbpedia.org/resource/William_B._Rosson", "http://dbpedia.org/resource/William_B._Royall", "http://dbpedia.org/resource/William_Babcock_Hazen", "http://dbpedia.org/resource/William_Banks_Caperton", "http://dbpedia.org/resource/William_C._Chip", "http://dbpedia.org/resource/William_C._Gorgas", "http://dbpedia.org/resource/William_Campbell_Langfitt", "http://dbpedia.org/resource/William_Crozier_(artillerist)", "http://dbpedia.org/resource/William_Crumm", "http://dbpedia.org/resource/William_D._Port", "http://dbpedia.org/resource/William_D._Shields", "http://dbpedia.org/resource/William_Dugald_MacDougall", "http://dbpedia.org/resource/William_E._Barber", "http://dbpedia.org/resource/William_E._Birkhimer", "http://dbpedia.org/resource/William_E._Bryan_Jr.", "http://dbpedia.org/resource/William_E._Snyder_(Medal_of_Honor)", "http://dbpedia.org/resource/William_Edward_Bergin", "http://dbpedia.org/resource/William_Edwin_Harvey_(United_States_Army_officer)", "http://dbpedia.org/resource/William_Estel_Potts", "http://dbpedia.org/resource/William_Evens_Hall", "http://dbpedia.org/resource/William_F._Hamberger", "http://dbpedia.org/resource/William_F._Marquat", "http://dbpedia.org/resource/William_F._McKee", "http://dbpedia.org/resource/William_Farrar_Smith", "http://dbpedia.org/resource/William_Fechteler", "http://dbpedia.org/resource/William_Frederick_Hase", "http://dbpedia.org/resource/William_G._Bainbridge", "http://dbpedia.org/resource/William_G._Farrow", "http://dbpedia.org/resource/William_G._Walsh", "http://dbpedia.org/resource/William_G._Windrich", "http://dbpedia.org/resource/William_George_Thordsen", "http://dbpedia.org/resource/William_H._Brown_(Medal_of_Honor)", "http://dbpedia.org/resource/William_H._Forwood", "http://dbpedia.org/resource/William_H._Harrison_(USMC)", "http://dbpedia.org/resource/William_H._P._Blandy", "http://dbpedia.org/resource/William_H._Penrose", "http://dbpedia.org/resource/William_H._Raymond", "http://dbpedia.org/resource/William_H._Sage", "http://dbpedia.org/resource/William_H._Tunner", "http://dbpedia.org/resource/William_Halsey_Jr.", "http://dbpedia.org/resource/William_Harding_Carter", "http://dbpedia.org/resource/William_Harrington_Leahy", "http://dbpedia.org/resource/William_Henry_Burt", "http://dbpedia.org/resource/William_Herbert_Bixby", "http://dbpedia.org/resource/William_J._Hovde", "http://dbpedia.org/resource/William_J._Maddox_Jr", "http://dbpedia.org/resource/William_J._McCaffrey", "http://dbpedia.org/resource/William_J._Scheyer", "http://dbpedia.org/resource/William_J._Wallace_(USMC)", "http://dbpedia.org/resource/William_J._Whaling", "http://dbpedia.org/resource/William_Johnson_(Medal_of_Honor)", "http://dbpedia.org/resource/William_Johnston_Jr.", "http://dbpedia.org/resource/William_Jones_Nicholson", "http://dbpedia.org/resource/William_K._James", "http://dbpedia.org/resource/William_K._Jones", "http://dbpedia.org/resource/William_Kelly_Harrison", "http://dbpedia.org/resource/William_Kelly_Harrison_Jr.", "http://dbpedia.org/resource/William_L._Haskin", "http://dbpedia.org/resource/William_L._Leverette", "http://dbpedia.org/resource/William_L._Uanna", "http://dbpedia.org/resource/William_Louis_Marshall", "http://dbpedia.org/resource/William_Ludlow", "http://dbpedia.org/resource/William_McBryar", "http://dbpedia.org/resource/William_McGonagle", "http://dbpedia.org/resource/William_N._Cogan", "http://dbpedia.org/resource/William_N._Leonard", "http://dbpedia.org/resource/William_Nolde", "http://dbpedia.org/resource/William_O._Gallery", "http://dbpedia.org/resource/William_P._Biddle", "http://dbpedia.org/resource/William_P._Ennis", "http://dbpedia.org/resource/William_P._Maclay_(Medal_of_Honor)", "http://dbpedia.org/resource/William_P._Potter", "http://dbpedia.org/resource/William_Preble_Hall", "http://dbpedia.org/resource/William_R._Collins", "http://dbpedia.org/resource/William_R._Smedberg_III", "http://dbpedia.org/resource/William_Renwick_Smedberg_Jr.", "http://dbpedia.org/resource/William_Richard_Arnold_(bishop)", "http://dbpedia.org/resource/William_S._Benson", "http://dbpedia.org/resource/William_S._Harney", "http://dbpedia.org/resource/William_S._Pye", "http://dbpedia.org/resource/William_Sample", "http://dbpedia.org/resource/William_Seach", "http://dbpedia.org/resource/William_Sidney_Shacklette", "http://dbpedia.org/resource/William_Sterling_Parsons", "http://dbpedia.org/resource/William_T._Fairbourn", "http://dbpedia.org/resource/William_T._Sexton", "http://dbpedia.org/resource/William_V._Judson", "http://dbpedia.org/resource/William_W._Hartzog", "http://dbpedia.org/resource/William_W._Stickney_(USMC)", "http://dbpedia.org/resource/William_Wallace_Burns", "http://dbpedia.org/resource/William_Wallace_Wotherspoon", "http://dbpedia.org/resource/William_Ward_Burrows_I", "http://dbpedia.org/resource/William_Weigel", "http://dbpedia.org/resource/Ezra_A._Carman", "http://dbpedia.org/resource/Anna_Der-Vartanian", "http://dbpedia.org/resource/Anson_Mills", "http://dbpedia.org/resource/Anthony_McAuliffe", "http://dbpedia.org/resource/Anthony_T._Shtogren", "http://dbpedia.org/resource/Apollo_Soucek", "http://dbpedia.org/resource/Archie_Miller_(Medal_of_Honor)", "http://dbpedia.org/resource/Archimedes_Patti", "http://dbpedia.org/resource/Arent_S._Crowninshield", "http://dbpedia.org/resource/Armour_G._McDaniel", "http://dbpedia.org/resource/Arno_H._Luehman", "http://dbpedia.org/resource/Arnold_J._Funk", "http://dbpedia.org/resource/Arnold_W._Jacobsen", "http://dbpedia.org/resource/Elwood_Richard_Quesada", "http://dbpedia.org/resource/Emerson_H._Liscum", "http://dbpedia.org/resource/Emile_P._Moses", "http://dbpedia.org/resource/Emory_S._Land", "http://dbpedia.org/resource/Ennis_Whitehead", "http://dbpedia.org/resource/Enoch_Crowder", "http://dbpedia.org/resource/Erasmus_Corwin_Gilbreath", "http://dbpedia.org/resource/Erasmus_M._Weaver_Jr.", "http://dbpedia.org/resource/Ernest_Albert_Garlington", "http://dbpedia.org/resource/Ernest_C._Fiebelkorn", "http://dbpedia.org/resource/Ernest_Dichmann_Peek", "http://dbpedia.org/resource/Ernest_Graves_Jr.", "http://dbpedia.org/resource/Ernest_James_Harrell", "http://dbpedia.org/resource/Ernest_T._Cragg", "http://dbpedia.org/resource/Eugene_Frederick_Ladd", "http://dbpedia.org/resource/Eugene_Henry_Cozzens_Leutze", "http://dbpedia.org/resource/Eugene_Hoy_Barksdale", "http://dbpedia.org/resource/Eugene_Peyton_Deatrick", "http://dbpedia.org/resource/Eugene_R._Brady", "http://dbpedia.org/resource/Evan_W._Scott", "http://dbpedia.org/resource/Evans_Carlson", "http://dbpedia.org/resource/Everett_Busch", "http://dbpedia.org/resource/Everett_P._Pope", "http://dbpedia.org/resource/Gerald_C._Thomas", "http://dbpedia.org/resource/Gerald_F._Russell", "http://dbpedia.org/resource/Gerald_O._Young", "http://dbpedia.org/resource/Gerald_W._Johnson_(military_officer)", "http://dbpedia.org/resource/Gerhardt_W._Hyatt", "http://dbpedia.org/resource/Glen_Edgar_Edgerton", "http://dbpedia.org/resource/Glenn_B._Davis", "http://dbpedia.org/resource/Glenn_E._Duncan", "http://dbpedia.org/resource/Glenn_T._Eagleston", "http://dbpedia.org/resource/Godfrey_McHugh", "http://dbpedia.org/resource/Gordon_Byrom_Rogers", "http://dbpedia.org/resource/Gordon_Graham_Heiner", "http://dbpedia.org/resource/Gordon_Johnston_(soldier)", "http://dbpedia.org/resource/Gordon_M._Graham", "http://dbpedia.org/resource/Manuel_J._Fernandez", "http://dbpedia.org/resource/Marc_Mitscher", "http://dbpedia.org/resource/Marcelite_J._Harris", "http://dbpedia.org/resource/Marcus_P._Miller", "http://dbpedia.org/resource/Marie_Rossi", "http://dbpedia.org/resource/Marion_Eugene_Carl", "http://dbpedia.org/resource/Marion_Frederic_Ram\u00edrez_de_Arellano", "http://dbpedia.org/resource/Marion_L._Boswell", "http://dbpedia.org/resource/Marion_Perry_Maus", "http://dbpedia.org/resource/Mark_L._Hersey", "http://dbpedia.org/resource/Mark_Matthews", "http://dbpedia.org/resource/Marshall_Carter", "http://dbpedia.org/resource/Marshall_I._Ludington", "http://dbpedia.org/resource/Martin_Conboy", "http://dbpedia.org/resource/Martin_F._Scanlon", "http://dbpedia.org/resource/Martin_T._McMahon", "http://dbpedia.org/resource/Martin_T._Torgerson", "http://dbpedia.org/resource/Mar\u00eda_In\u00e9s_Ortiz", "http://dbpedia.org/resource/Presley_Marion_Rixey", "http://dbpedia.org/resource/Terence_Hildner", "http://dbpedia.org/resource/Thaddeus_Harlan_Stanton", "http://dbpedia.org/resource/Ulysses_G._McAlexander", "http://dbpedia.org/resource/Urban_L._Drew", "http://dbpedia.org/resource/William_N._McKelvy_Sr.", "http://dbpedia.org/resource/Bowman_H._McCalla", "http://dbpedia.org/resource/Bradley_A._Fiske", "http://dbpedia.org/resource/Brooke_Nihart", "http://dbpedia.org/resource/Bruce_C._Clarke", "http://dbpedia.org/resource/Bruce_Magruder", "http://dbpedia.org/resource/Bruce_Palmer_Jr.", "http://dbpedia.org/resource/Bruce_W._Carr", "http://dbpedia.org/resource/Bruce_W._Carter", "http://dbpedia.org/resource/Bruno_Albert_Forsterer", "http://dbpedia.org/resource/Bryant_L._Boatner", "http://dbpedia.org/resource/Buckey_O'Neill", "http://dbpedia.org/resource/Bud_Mahurin", "http://dbpedia.org/resource/Jackson_C._Pharris", "http://dbpedia.org/resource/Jacob_F._Raub", "http://dbpedia.org/resource/Jacob_L._Devers", "http://dbpedia.org/resource/Jacques_Michael_Swaab", "http://dbpedia.org/resource/James_A._Graham", "http://dbpedia.org/resource/James_Agustin_Greer", "http://dbpedia.org/resource/James_Alexander_Ulio", "http://dbpedia.org/resource/James_Armand_Meissner", "http://dbpedia.org/resource/James_B._Aleshire", "http://dbpedia.org/resource/James_B._McGovern_Jr.", "http://dbpedia.org/resource/James_B._Morehead", "http://dbpedia.org/resource/James_B._Ricketts", "http://dbpedia.org/resource/James_Basevi_Ord", "http://dbpedia.org/resource/James_C._Binnicker", "http://dbpedia.org/resource/James_C._Fry", "http://dbpedia.org/resource/James_D._Hittle", "http://dbpedia.org/resource/James_Denver_Glennan", "http://dbpedia.org/resource/James_Dunne_O'Connell", "http://dbpedia.org/resource/James_E._Mahoney", "http://dbpedia.org/resource/James_Edward_Moore", "http://dbpedia.org/resource/James_F._Hollingsworth", "http://dbpedia.org/resource/James_F._Lawrence_Jr.", "http://dbpedia.org/resource/James_F._Low", "http://dbpedia.org/resource/James_Fechet", "http://dbpedia.org/resource/James_Ferguson_(general)", "http://dbpedia.org/resource/James_Fife_Jr.", "http://dbpedia.org/resource/James_Francis_Collins", "http://dbpedia.org/resource/James_Garesche_Ord", "http://dbpedia.org/resource/James_H._Glennon", "http://dbpedia.org/resource/James_H._Harris", "http://dbpedia.org/resource/James_H._Howard", "http://dbpedia.org/resource/James_H._Polk", "http://dbpedia.org/resource/James_H._Sands", "http://dbpedia.org/resource/James_Hirshfield", "http://dbpedia.org/resource/James_J._Keating", "http://dbpedia.org/resource/James_J._Purman", "http://dbpedia.org/resource/James_J._Raby", "http://dbpedia.org/resource/James_Jabara", "http://dbpedia.org/resource/James_Joseph_Hornbrook", "http://dbpedia.org/resource/James_K._Johnson", "http://dbpedia.org/resource/James_K._Parsons", "http://dbpedia.org/resource/James_L._Baldwin", "http://dbpedia.org/resource/James_Lawton_Collins", "http://dbpedia.org/resource/James_Lawton_Collins_Jr.", "http://dbpedia.org/resource/James_M._J._Sanno", "http://dbpedia.org/resource/James_M._Masters_Sr.", "http://dbpedia.org/resource/James_McConnell_(Medal_of_Honor)", "http://dbpedia.org/resource/James_McCormack", "http://dbpedia.org/resource/James_Monroe_Williams", "http://dbpedia.org/resource/James_N._Rowe", "http://dbpedia.org/resource/James_P._Hagerstrom", "http://dbpedia.org/resource/James_Parks_(freed_slave)", "http://dbpedia.org/resource/James_Patrick_Lannon", "http://dbpedia.org/resource/James_Pipes", "http://dbpedia.org/resource/James_R._Allen", "http://dbpedia.org/resource/James_R._Durham", "http://dbpedia.org/resource/James_R._Lockett", "http://dbpedia.org/resource/James_Richmond_(Medal_of_Honor)", "http://dbpedia.org/resource/James_Robb_Church", "http://dbpedia.org/resource/James_Robinson_Risner", "http://dbpedia.org/resource/James_Smith_(Medal_of_Honor,_1864)", "http://dbpedia.org/resource/James_T._Stewart", "http://dbpedia.org/resource/James_Taggart_Kerr", "http://dbpedia.org/resource/James_W._McAndrew", "http://dbpedia.org/resource/James_W._McMillan", "http://dbpedia.org/resource/James_W._Sutherland", "http://dbpedia.org/resource/Jay_Leland_Benedict", "http://dbpedia.org/resource/Jay_Zeamer_Jr.", "http://dbpedia.org/resource/Jean_E._Engler", "http://dbpedia.org/resource/Jean_J._Beaufort", "http://dbpedia.org/resource/Jedediah_Hyde_Baxter", "http://dbpedia.org/resource/Keith_B._McCutcheon", "http://dbpedia.org/resource/Keith_K._Compton", "http://dbpedia.org/resource/Keith_L._Ware", "http://dbpedia.org/resource/Keller_E._Rockey", "http://dbpedia.org/resource/Kenneth_A._Walsh", "http://dbpedia.org/resource/Kenneth_B._Wolfe", "http://dbpedia.org/resource/Kenneth_F._Cramer", "http://dbpedia.org/resource/Kenneth_J._Hodson", "http://dbpedia.org/resource/Kenneth_L._Peek_Jr.", "http://dbpedia.org/resource/Kenneth_M._Taylor", "http://dbpedia.org/resource/Kenneth_Nichols", "http://dbpedia.org/resource/Matt_Urban", "http://dbpedia.org/resource/Matthew_Arlington_Batson", "http://dbpedia.org/resource/Matthew_C._Horner", "http://dbpedia.org/resource/Matthew_H._Kingman", "http://dbpedia.org/resource/Maurice_C._Gregory", "http://dbpedia.org/resource/Maurice_E._Curts", "http://dbpedia.org/resource/Maurice_E._Shearer", "http://dbpedia.org/resource/Maxon_S._Lough", "http://dbpedia.org/resource/Maxwell_Murray", "http://dbpedia.org/resource/Maxwell_R._Thurman", "http://dbpedia.org/resource/Means_Johnston_Jr.", "http://dbpedia.org/resource/Megan_McClung", "http://dbpedia.org/resource/Melvin_Maas", "http://dbpedia.org/resource/Merlyn_Hans_Dethlefsen", "http://dbpedia.org/resource/Merritt_A._Edson", "http://dbpedia.org/resource/Merritt_B._Curtis", "http://dbpedia.org/resource/Merton_J._Batchelder", "http://dbpedia.org/resource/Merwin_H._Silverthorn", "http://dbpedia.org/resource/Ralph_A._Ofstie", "http://dbpedia.org/resource/Ralph_B._DeWitt", "http://dbpedia.org/resource/Ralph_Canine", "http://dbpedia.org/resource/Ralph_T._Browning", "http://dbpedia.org/resource/Ralph_Wise_Zwicker", "http://dbpedia.org/resource/Ramon_S._Subejano", "http://dbpedia.org/resource/Randolph_C._Berkeley", "http://dbpedia.org/resource/Randolph_M._Pate", "http://dbpedia.org/resource/Rathvon_M._Tompkins", "http://dbpedia.org/resource/Raymond_Albert_Wheeler", "http://dbpedia.org/resource/Raymond_Harvey", "http://dbpedia.org/resource/Raymond_P._Coffman", "http://dbpedia.org/resource/Raymond_P._Rodgers", "http://dbpedia.org/resource/Raymond_Stanton_Patton", "http://dbpedia.org/resource/Raymond_T._Odierno", "http://dbpedia.org/resource/Raymond_W._Bliss", "http://dbpedia.org/resource/Reginald_F._Nicholson", "http://dbpedia.org/resource/Reginald_H._Ridgely_Jr.", "http://dbpedia.org/resource/Reginald_R._Belknap", "http://dbpedia.org/resource/Reginald_R._Myers", "http://dbpedia.org/resource/Rembrandt_C._Robinson", "http://dbpedia.org/resource/Rene_Edward_De_Russy_Hoyle", "http://dbpedia.org/resource/Eugene_Beauharnais_Payne", "http://dbpedia.org/resource/A._B._Barber", "http://dbpedia.org/resource/Noel_F._Parrish", "http://dbpedia.org/resource/Norman_Hatch", "http://dbpedia.org/resource/Norman_M._Miller", "http://dbpedia.org/resource/Norman_von_Heldreich_Farquhar", "http://dbpedia.org/resource/Odell_M._Conoley", "http://dbpedia.org/resource/Felix_Z._Longoria_Jr.", "http://dbpedia.org/resource/Claire_E._Hutchin_Jr.", "http://dbpedia.org/resource/Clarence_E._Sutton", "http://dbpedia.org/resource/Clarence_Edmund_Bennett", "http://dbpedia.org/resource/Clarence_Edward_Mathias", "http://dbpedia.org/resource/Clarence_M._Condon", "http://dbpedia.org/resource/Clarence_R._Huebner", "http://dbpedia.org/resource/Clark_H._Woodward", "http://dbpedia.org/resource/Claude_Birkett_Ferenbaugh", "http://dbpedia.org/resource/Claude_C._Bloch", "http://dbpedia.org/resource/Clayton_Barney_Vogel", "http://dbpedia.org/resource/Clayton_C._Jerome", "http://dbpedia.org/resource/Clayton_K._Slack", "http://dbpedia.org/resource/Clement_Flagler", "http://dbpedia.org/resource/Clifton_B._Cates", "http://dbpedia.org/resource/Clint_Calvin_Hearn", "http://dbpedia.org/resource/Clinton_A._Pierce", "http://dbpedia.org/resource/Clinton_A._Puckett", "http://dbpedia.org/resource/Clyde_A._Thomason", "http://dbpedia.org/resource/Clyde_D._Eddleman", "http://dbpedia.org/resource/Colby_Mitchell_Chester", "http://dbpedia.org/resource/Colden_Ruggles", "http://dbpedia.org/resource/John_J._Davis_(general)", "http://dbpedia.org/resource/John_J._Tominac", "http://dbpedia.org/resource/John_J._Yeosock", "http://dbpedia.org/resource/John_K._Cannon", "http://dbpedia.org/resource/John_Kelvin_Koelsch", "http://dbpedia.org/resource/John_Kizirian", "http://dbpedia.org/resource/John_L._Canley", "http://dbpedia.org/resource/John_L._DeWitt", "http://dbpedia.org/resource/John_L._Hines_Jr.", "http://dbpedia.org/resource/John_L._Throckmorton", "http://dbpedia.org/resource/John_Levitow", "http://dbpedia.org/resource/John_M._B._Clitz", "http://dbpedia.org/resource/John_M._K._Davis", "http://dbpedia.org/resource/John_M._Wright", "http://dbpedia.org/resource/John_McAuley_Palmer_(United_States_Army_officer)", "http://dbpedia.org/resource/John_McCloy_(Medal_of_Honor)", "http://dbpedia.org/resource/John_Moore_(physician)", "http://dbpedia.org/resource/John_N._Abrams", "http://dbpedia.org/resource/John_Osborne_(Medal_of_Honor)", "http://dbpedia.org/resource/John_P._Costello", "http://dbpedia.org/resource/John_P._Johanson", "http://dbpedia.org/resource/John_P._Lucas", "http://dbpedia.org/resource/John_Patten_Story", "http://dbpedia.org/resource/John_Paul_Vann", "http://dbpedia.org/resource/John_Porter_Hatch", "http://dbpedia.org/resource/John_R._Alison", "http://dbpedia.org/resource/John_R._Brooke", "http://dbpedia.org/resource/John_R._Kane", "http://dbpedia.org/resource/John_R._Lanigan", "http://dbpedia.org/resource/John_Raymond_Rice", "http://dbpedia.org/resource/John_Rodgers_Meigs", "http://dbpedia.org/resource/John_S._Lekson", "http://dbpedia.org/resource/John_S._Mason", "http://dbpedia.org/resource/John_S._McCain_Jr.", "http://dbpedia.org/resource/John_S._McCain_Sr.", "http://dbpedia.org/resource/John_S._Walmsley_Jr.", "http://dbpedia.org/resource/John_Shalikashvili", "http://dbpedia.org/resource/John_Smith_(flying_ace)", "http://dbpedia.org/resource/John_Stanford_(general)", "http://dbpedia.org/resource/John_Stokes_(Medal_of_Honor)", "http://dbpedia.org/resource/John_T._Axton", "http://dbpedia.org/resource/John_T._Cole", "http://dbpedia.org/resource/John_T._Hayward", "http://dbpedia.org/resource/John_T._Selden", "http://dbpedia.org/resource/John_Thomas_Blackburn", "http://dbpedia.org/resource/John_Thomas_Kennedy", "http://dbpedia.org/resource/John_Tweedale", "http://dbpedia.org/resource/John_U._D._Page", "http://dbpedia.org/resource/John_W._Barlow", "http://dbpedia.org/resource/John_W._Collier", "http://dbpedia.org/resource/John_W._Gulick", "http://dbpedia.org/resource/John_W._Heavey", "http://dbpedia.org/resource/John_W._Leonard", "http://dbpedia.org/resource/John_W._Meagher", "http://dbpedia.org/resource/John_Wainwright_(soldier)", "http://dbpedia.org/resource/John_William_Barker", "http://dbpedia.org/resource/John_Wynn_Davidson", "http://dbpedia.org/resource/Johnny_Micheal_Spann", "http://dbpedia.org/resource/Jon_E._Swanson", "http://dbpedia.org/resource/Jon_R._Cavaiani", "http://dbpedia.org/resource/Jonas_H._Ingram", "http://dbpedia.org/resource/Jonas_M._Platt", "http://dbpedia.org/resource/Jonathan_Letterman", "http://dbpedia.org/resource/Jonathan_M._Wainwright_(general)", "http://dbpedia.org/resource/Joseph_A._Haskin", "http://dbpedia.org/resource/Joseph_A._Mower", "http://dbpedia.org/resource/Joseph_B._Plummer", "http://dbpedia.org/resource/Joseph_Beyrle", "http://dbpedia.org/resource/Joseph_C._Burger", "http://dbpedia.org/resource/Joseph_Carroll_(DIA)", "http://dbpedia.org/resource/Joseph_Clancy_(Medal_of_Honor)", "http://dbpedia.org/resource/Joseph_Coghlan", "http://dbpedia.org/resource/Joseph_E._Carter", "http://dbpedia.org/resource/Joseph_E._Kuhn", "http://dbpedia.org/resource/Joseph_F._Carter", "http://dbpedia.org/resource/Joseph_F._Enright", "http://dbpedia.org/resource/Joseph_F._Farley", "http://dbpedia.org/resource/Joseph_Gabriel_Harner", "http://dbpedia.org/resource/Joseph_J._Bartlett", "http://dbpedia.org/resource/Joseph_J._Cappucci", "http://dbpedia.org/resource/Joseph_J._Clark", "http://dbpedia.org/resource/Joseph_J._Kruzel", "http://dbpedia.org/resource/Joseph_J._McCarthy", "http://dbpedia.org/resource/Joseph_J._Reynolds", "http://dbpedia.org/resource/Joseph_M._Heiser_Jr.", "http://dbpedia.org/resource/Joseph_P._O'Neil", "http://dbpedia.org/resource/Joseph_P._Sanger", "http://dbpedia.org/resource/Joseph_R._Jelinek", "http://dbpedia.org/resource/Joseph_S._Skerrett", "http://dbpedia.org/resource/Joseph_Strauss_(admiral)", "http://dbpedia.org/resource/Joseph_T._Dickman", "http://dbpedia.org/resource/Joseph_Taussig", "http://dbpedia.org/resource/Joseph_Xavier_Grant", "http://dbpedia.org/resource/Josephine_Beatrice_Bowman", "http://dbpedia.org/resource/Josephus_S._Cecil", "http://dbpedia.org/resource/Joshua_L._Goldberg", "http://dbpedia.org/resource/Joshua_Wheeler", "http://dbpedia.org/resource/Joy_Bright_Hancock", "http://dbpedia.org/resource/Juanita_Redmond_Hipps", "http://dbpedia.org/resource/Jules_Garesche_Ord", "http://dbpedia.org/resource/Scott_Stearney", "http://dbpedia.org/resource/Scott_Studenmund", "http://dbpedia.org/resource/John_Navarre_Macomb,_Jr.", "http://dbpedia.org/resource/Barbara_Allen_Rainey", "http://dbpedia.org/resource/Barnwell_R._Legge", "http://dbpedia.org/resource/Barry_K._Atkins", "http://dbpedia.org/resource/Bartholomew_Diggins", "http://dbpedia.org/resource/Bartholomew_W._Hogan", "http://dbpedia.org/resource/Barton_Kyle_Yount", "http://dbpedia.org/resource/Ingram_C._Sowell", "http://dbpedia.org/resource/Innis_N._Palmer", "http://dbpedia.org/resource/Ira_C._Eaker", "http://dbpedia.org/resource/Ira_Coray_Abbott", "http://dbpedia.org/resource/Ira_E._McMillian", "http://dbpedia.org/resource/Ira_L._Kimes", "http://dbpedia.org/resource/Irma_Dryden", "http://dbpedia.org/resource/Irving_J._Carr", "http://dbpedia.org/resource/Irwin_H._Dregne", "http://dbpedia.org/resource/Isaac_Gause", "http://dbpedia.org/resource/Isaac_S._Catlin", "http://dbpedia.org/resource/Isadore_Nordstrom", "http://dbpedia.org/resource/J._Edward_Snyder", "http://dbpedia.org/resource/J._William_Kime", "http://dbpedia.org/resource/Jack_E._Conger", "http://dbpedia.org/resource/Montgomery_C._Meigs", "http://dbpedia.org/resource/Montgomery_M._Macomb", "http://dbpedia.org/resource/Montgomery_M._Taylor", "http://dbpedia.org/resource/Morgan_Lewis_Smith", "http://dbpedia.org/resource/Morton_C._Mumma", "http://dbpedia.org/resource/Muir_S._Fairchild", "http://dbpedia.org/resource/Murder_of_Lemuel_Penn", "http://dbpedia.org/resource/Nathan_Bedford_Forrest_III", "http://dbpedia.org/resource/Nathan_Crook_Twining", "http://dbpedia.org/resource/Nathan_Dudley", "http://dbpedia.org/resource/Nathan_F._Twining", "http://dbpedia.org/resource/Townsend_F._Dodd", "http://dbpedia.org/resource/Trevor_N._Dupuy", "http://dbpedia.org/resource/James_Stewart_(artilleryman)", "http://dbpedia.org/resource/John_Rush_(Medal_of_Honor)", "http://dbpedia.org/resource/Joseph_Conrad_(general)", "http://dbpedia.org/resource/Abner_Doubleday", "http://dbpedia.org/resource/Absalom_Baird", "http://dbpedia.org/resource/Adelbert_Rinaldo_Buffington", "http://dbpedia.org/resource/Adlai_H._Gilkeson", "http://dbpedia.org/resource/Adna_Chaffee", "http://dbpedia.org/resource/Adna_R._Chaffee_Jr.", "http://dbpedia.org/resource/Adolph_G._Schwenk", "http://dbpedia.org/resource/Adolph_Marix", "http://dbpedia.org/resource/Adolphus_Greely", "http://dbpedia.org/resource/Adolphus_Staton", "http://dbpedia.org/resource/Burns_Tracy_Walling", "http://dbpedia.org/resource/C._T._Singleton_Jr.", "http://dbpedia.org/resource/Caleb_Swan", "http://dbpedia.org/resource/Caleb_V._Haynes", "http://dbpedia.org/resource/Calvin_Waller", "http://dbpedia.org/resource/Cecil_Clay", "http://dbpedia.org/resource/Cecil_E._Harris", "http://dbpedia.org/resource/Cecil_G._Foster", "http://dbpedia.org/resource/Charles_A._Coolidge", "http://dbpedia.org/resource/Charles_A._Doyen", "http://dbpedia.org/resource/Charles_A._Gabriel", "http://dbpedia.org/resource/Charles_A._Willoughby", "http://dbpedia.org/resource/Charles_Andrew_MacGillivary", "http://dbpedia.org/resource/Charles_B._Gatewood", "http://dbpedia.org/resource/Charles_Bendire", "http://dbpedia.org/resource/Charles_Bryant_Drake", "http://dbpedia.org/resource/Charles_C._Campbell_(general)", "http://dbpedia.org/resource/Charles_C._Drake", "http://dbpedia.org/resource/Charles_C._Noble", "http://dbpedia.org/resource/Charles_Calvin_Rogers", "http://dbpedia.org/resource/Charles_Candy", "http://dbpedia.org/resource/Charles_Chaill\u00e9-Long", "http://dbpedia.org/resource/Charles_Conway_Hartigan", "http://dbpedia.org/resource/Charles_D._Barrett", "http://dbpedia.org/resource/Charles_D._Franklin", "http://dbpedia.org/resource/Charles_D._W._Canham", "http://dbpedia.org/resource/Charles_DuVal_Roberts", "http://dbpedia.org/resource/Charles_Dudley_Rhodes", "http://dbpedia.org/resource/Charles_Dwight_Sigsbee", "http://dbpedia.org/resource/Charles_E._Capehart", "http://dbpedia.org/resource/Charles_E._Hart", "http://dbpedia.org/resource/Charles_Ewing_(general)", "http://dbpedia.org/resource/Charles_F._Blair_Jr.", "http://dbpedia.org/resource/Charles_F._Humphrey_Jr.", "http://dbpedia.org/resource/Charles_F._Thompson", "http://dbpedia.org/resource/Charles_Frederic_Humphrey_Sr.", "http://dbpedia.org/resource/Charles_Frederick_Hughes", "http://dbpedia.org/resource/Charles_G._Cleveland", "http://dbpedia.org/resource/Charles_G._Long", "http://dbpedia.org/resource/Charles_Gould_Morton", "http://dbpedia.org/resource/Charles_H._Bonesteel_III", "http://dbpedia.org/resource/Charles_H._Hayes", "http://dbpedia.org/resource/Charles_H._Heyl", "http://dbpedia.org/resource/Charles_H._Houghton", "http://dbpedia.org/resource/Charles_Hartwell_Bonesteel_Jr.", "http://dbpedia.org/resource/Charles_Henry_Alden", "http://dbpedia.org/resource/Charles_Henry_Muir", "http://dbpedia.org/resource/Charles_Henry_Smith_(Army_Medal_of_Honor)", "http://dbpedia.org/resource/Charles_Heywood", "http://dbpedia.org/resource/Charles_Higbee_Bridges", "http://dbpedia.org/resource/Charles_J._Girard", "http://dbpedia.org/resource/Charles_J._Loring_Jr.", "http://dbpedia.org/resource/Charles_J._Stolbrand", "http://dbpedia.org/resource/Charles_J._Timmes", "http://dbpedia.org/resource/Charles_J._Watters", "http://dbpedia.org/resource/Charles_Johnston_Badger", "http://dbpedia.org/resource/Charles_L._Donnelly_Jr.", "http://dbpedia.org/resource/Charles_L._Hodges", "http://dbpedia.org/resource/Charles_L._Southward", "http://dbpedia.org/resource/Charles_Lane_Fitzhugh", "http://dbpedia.org/resource/Charles_Leonard", "http://dbpedia.org/resource/Charles_Luers_Nordsiek", "http://dbpedia.org/resource/Charles_M._Gettys", "http://dbpedia.org/resource/Charles_McKinley_Saltzman", "http://dbpedia.org/resource/Charles_Momsen", "http://dbpedia.org/resource/Charles_P._Cabell", "http://dbpedia.org/resource/Charles_P._Cecil", "http://dbpedia.org/resource/Charles_P._Murray_Jr.", "http://dbpedia.org/resource/Charles_P._Stone", "http://dbpedia.org/resource/Charles_Pelot_Summerall", "http://dbpedia.org/resource/Charles_Peshall_Plunkett", "http://dbpedia.org/resource/Charles_Q._Williams", "http://dbpedia.org/resource/Charles_Rieseck_Krauthoff", "http://dbpedia.org/resource/Charles_Ross_Greening", "http://dbpedia.org/resource/Charles_S._Lawrence", "http://dbpedia.org/resource/Charles_Sutherland_(Surgeon_General)", "http://dbpedia.org/resource/Charles_T._Horner_Jr.", "http://dbpedia.org/resource/Charles_W._Davis", "http://dbpedia.org/resource/Charles_W._Dryden", "http://dbpedia.org/resource/Charles_W._Fisher_Jr.", "http://dbpedia.org/resource/Charles_Wesley_Shilling", "http://dbpedia.org/resource/Charles_Willauer_Kutz", "http://dbpedia.org/resource/Charles_Young_(United_States_Army_officer)", "http://dbpedia.org/resource/Chase_Wilmot_Kennedy", "http://dbpedia.org/resource/Chauncey_Brooke_Baker", "http://dbpedia.org/resource/Chester_E._McCarty", "http://dbpedia.org/resource/Chester_R._Allen", "http://dbpedia.org/resource/Christian_F._Schilt", "http://dbpedia.org/resource/Christopher_C._Augur", "http://dbpedia.org/resource/Christopher_Magee_(fighter_pilot)", "http://dbpedia.org/resource/Christopher_Raymond_Perry_Rodgers", "http://dbpedia.org/resource/Cipriano_Andrade", "http://dbpedia.org/resource/Stewart_Van_Vliet", "http://dbpedia.org/resource/Stimson_Joseph_Brown", "http://dbpedia.org/resource/Stonewall_Jackson_(20th_century_general)", "http://dbpedia.org/resource/Stuart_E._Barstad", "http://dbpedia.org/resource/Sue_Sarafian_Jehl", "http://dbpedia.org/resource/Carl_A._Youngdale", "http://dbpedia.org/resource/Carl_C._Turner", "http://dbpedia.org/resource/Carl_J._Seiberlich", "http://dbpedia.org/resource/Carl_Jerrold_Peterson", "http://dbpedia.org/resource/Carl_Kimmons", "http://dbpedia.org/resource/Carl_L._Sitter", "http://dbpedia.org/resource/Carl_Rogers_Darnall", "http://dbpedia.org/resource/Carl_Theodore_Vogelgesang", "http://dbpedia.org/resource/Carl_W._Hoffman", "http://dbpedia.org/resource/Carlos_C._Ogden", "http://dbpedia.org/resource/Carlos_Clark_Van_Leer", "http://dbpedia.org/resource/Carlos_Talbott", "http://dbpedia.org/resource/Carmen_Contreras-Bozak", "http://dbpedia.org/resource/Carroll_W._McColpin", "http://dbpedia.org/resource/Carson_Abel_Roberts", "http://dbpedia.org/resource/Carter_B._Magruder", "http://dbpedia.org/resource/Carter_W._Clarke", "http://dbpedia.org/resource/Cary_DeVall_Langhorne", "http://dbpedia.org/resource/Casey_Owens", "http://dbpedia.org/resource/Casper_H._Conrad_Jr.", "http://dbpedia.org/resource/Holden_C._Richardson", "http://dbpedia.org/resource/Horace_Meek_Hickam", "http://dbpedia.org/resource/Horatio_L._Birdsall", "http://dbpedia.org/resource/Horatio_Wright", "http://dbpedia.org/resource/Howard_H._Cooksey", "http://dbpedia.org/resource/Howard_H._J._Benson", "http://dbpedia.org/resource/Howard_L._Vickery", "http://dbpedia.org/resource/Howard_R._Johnson", "http://dbpedia.org/resource/Howard_W._Leaf", "http://dbpedia.org/resource/Hugh_Aloysius_Drum", "http://dbpedia.org/resource/Hugh_Carroll_Frazer", "http://dbpedia.org/resource/Hugh_J._Knerr", "http://dbpedia.org/resource/Hugh_John_Casey", "http://dbpedia.org/resource/Hugh_M._Elwood", "http://dbpedia.org/resource/Hugh_P._Harris", "http://dbpedia.org/resource/Hugo_Osterhaus", "http://dbpedia.org/resource/Hulon_B._Whittington", "http://dbpedia.org/resource/L._Fletcher_Prouty", "http://dbpedia.org/resource/Larry_E._Smedley", "http://dbpedia.org/resource/Laszlo_Rabel", "http://dbpedia.org/resource/Laurance_T._DuBose", "http://dbpedia.org/resource/Lauri_T\u00f6rni", "http://dbpedia.org/resource/Lauris_Norstad", "http://dbpedia.org/resource/Lawrence_Dickson", "http://dbpedia.org/resource/Lawrence_J._Fuller", "http://dbpedia.org/resource/Lawrence_Joel", "http://dbpedia.org/resource/Lawrence_Russell_Dewey", "http://dbpedia.org/resource/Lawson_H._M._Sanderson", "http://dbpedia.org/resource/Lawson_P._Ramage", "http://dbpedia.org/resource/LeRoy_Eltinge", "http://dbpedia.org/resource/LeRoy_Lutes", "http://dbpedia.org/resource/LeRoy_Springs_Lyon", "http://dbpedia.org/resource/Henry_Post", "http://dbpedia.org/resource/Don_C._Faith_Jr.", "http://dbpedia.org/resource/Don_Holleder", "http://dbpedia.org/resource/Don_P._Moon", "http://dbpedia.org/resource/Donald_Blackburn", "http://dbpedia.org/resource/Donald_Blakeslee", "http://dbpedia.org/resource/Donald_D._Engen", "http://dbpedia.org/resource/Donald_Erwin_Wilson", "http://dbpedia.org/resource/Donald_H._Balch", "http://dbpedia.org/resource/Donald_L._Harlow", "http://dbpedia.org/resource/Donald_M._Weller", "http://dbpedia.org/resource/Donald_McIntosh", "http://dbpedia.org/resource/Donald_Prentice_Booth", "http://dbpedia.org/resource/Donald_R._Keith", "http://dbpedia.org/resource/Donald_S._Lopez_Sr.", "http://dbpedia.org/resource/Donald_Schmuck", "http://dbpedia.org/resource/Donald_W._McGowan", "http://dbpedia.org/resource/Donn_F._Porter", "http://dbpedia.org/resource/Donn_J._Robertson", "http://dbpedia.org/resource/Donn_R._Pepke", "http://dbpedia.org/resource/Douglas_A._Zembiec", "http://dbpedia.org/resource/Douglas_Lafayette_Weart", "http://dbpedia.org/resource/Douglas_T._Jacobson", "http://dbpedia.org/resource/Duane_Beeson", "http://dbpedia.org/resource/Duane_H._Cassidy", "http://dbpedia.org/resource/Dudley_S._Brown", "http://dbpedia.org/resource/Dudley_Wright_Knox", "http://dbpedia.org/resource/Dwight_Edward_Aultman", "http://dbpedia.org/resource/Dwight_H._Johnson", "http://dbpedia.org/resource/E._Ann_Hoefly", "http://dbpedia.org/resource/Geraldine_Pratt_May", "http://dbpedia.org/resource/Cornelius_H._Charlton", "http://dbpedia.org/resource/Cornelius_H._Mack", "http://dbpedia.org/resource/Corydon_M._Wassell", "http://dbpedia.org/resource/Courtney_Hodges", "http://dbpedia.org/resource/Creed_Burlingame", "http://dbpedia.org/resource/Creighton_Abrams", "http://dbpedia.org/resource/Cyrus_B._Lower", "http://dbpedia.org/resource/Cyrus_Bussey", "http://dbpedia.org/resource/Grace_Hopper", "http://dbpedia.org/resource/Grandison_Gardner", "http://dbpedia.org/resource/Granville_Roland_Fortescue", "http://dbpedia.org/resource/Graves_B._Erskine", "http://dbpedia.org/resource/Green_Berry_Raum", "http://dbpedia.org/resource/Grote_Hutcheson", "http://dbpedia.org/resource/Guy_S._Meloy_Jr.", "http://dbpedia.org/resource/Guy_Vernor_Henry", "http://dbpedia.org/resource/Guy_W._S._Castle", "http://dbpedia.org/resource/H._H._Caldwell", "http://dbpedia.org/resource/Hazel_Johnson-Brown", "http://dbpedia.org/resource/Hector_de_Zayas", "http://dbpedia.org/resource/Henry_Aurand", "http://dbpedia.org/resource/Henry_Balding_Lewis", "http://dbpedia.org/resource/Henry_Blanchard_Freeman", "http://dbpedia.org/resource/Henry_C._Hodges", "http://dbpedia.org/resource/Henry_C._Merriam", "http://dbpedia.org/resource/Henry_C._Mustin_(1874\u20131923)", "http://dbpedia.org/resource/Henry_Capehart", "http://dbpedia.org/resource/Henry_Clark_Corbin", "http://dbpedia.org/resource/Henry_Clay_Drexler", "http://dbpedia.org/resource/Henry_Clay_Taylor", "http://dbpedia.org/resource/Henry_Clay_Wood", "http://dbpedia.org/resource/Henry_Conger_Pratt", "http://dbpedia.org/resource/Henry_D._Linscott", "http://dbpedia.org/resource/Henry_D._Todd_Jr.", "http://dbpedia.org/resource/Henry_Doctor_Jr.", "http://dbpedia.org/resource/Henry_E._Emerson", "http://dbpedia.org/resource/Henry_Granville_Sharpe", "http://dbpedia.org/resource/Henry_H._Arnold", "http://dbpedia.org/resource/Henry_Howard_Whitney", "http://dbpedia.org/resource/Henry_Hughes_Hough", "http://dbpedia.org/resource/Henry_J._Reilly", "http://dbpedia.org/resource/Henry_Jervey_Jr.", "http://dbpedia.org/resource/Henry_Johnson_(Buffalo_Soldier)", "http://dbpedia.org/resource/Henry_Johnson_(World_War_I_soldier)", "http://dbpedia.org/resource/Henry_L._Hulbert", "http://dbpedia.org/resource/Henry_Martyn_Robert", "http://dbpedia.org/resource/Henry_P._Russell", "http://dbpedia.org/resource/Henry_R._Tilton", "http://dbpedia.org/resource/Henry_Romeyn", "http://dbpedia.org/resource/Henry_T._Elrod", "http://dbpedia.org/resource/Henry_Tureman_Allen", "http://dbpedia.org/resource/Henry_V._Boynton", "http://dbpedia.org/resource/Henry_W._Closson", "http://dbpedia.org/resource/Henry_Williams_Hise", "http://dbpedia.org/resource/Herbert_B._Crosby", "http://dbpedia.org/resource/Herbert_B._Powell", "http://dbpedia.org/resource/Herbert_Emery_Schonland", "http://dbpedia.org/resource/Herbert_G._Hopwood", "http://dbpedia.org/resource/Herbert_N._Houck", "http://dbpedia.org/resource/Herbert_T._Perrin", "http://dbpedia.org/resource/Herman_Osman_Stickney", "http://dbpedia.org/resource/Hewitt_T._Wheless", "http://dbpedia.org/resource/Hiram_Berdan", "http://dbpedia.org/resource/Malcolm_C._Grow", "http://dbpedia.org/resource/Richard_Antrim", "http://dbpedia.org/resource/Richard_C._Drum", "http://dbpedia.org/resource/Richard_C._Lindsay", "http://dbpedia.org/resource/Richard_C._Mangrum", "http://dbpedia.org/resource/Richard_E._Byrd", "http://dbpedia.org/resource/Richard_G._Colbert", "http://dbpedia.org/resource/Richard_G._Shaffer", "http://dbpedia.org/resource/Richard_G._Weede", "http://dbpedia.org/resource/Richard_H._Carmichael", "http://dbpedia.org/resource/Richard_H._Jeschke", "http://dbpedia.org/resource/Richard_Halsey_Best", "http://dbpedia.org/resource/Richard_Henry_Pratt", "http://dbpedia.org/resource/Richard_Horner_Thompson", "http://dbpedia.org/resource/Richard_Irving_Dodge", "http://dbpedia.org/resource/Richard_L._Conolly", "http://dbpedia.org/resource/Richard_L._Hoxie", "http://dbpedia.org/resource/Richard_Mattern_Montgomery", "http://dbpedia.org/resource/Richard_Napoleon_Batchelder", "http://dbpedia.org/resource/Richard_O'Kane", "http://dbpedia.org/resource/Richard_O._Culver_Jr.", "http://dbpedia.org/resource/Richard_P._Ross_Jr.", "http://dbpedia.org/resource/Richard_T._Knowles", "http://dbpedia.org/resource/Richard_W._Mayo", "http://dbpedia.org/resource/Richard_Wainwright_(Spanish\u2013American_War_naval_officer)", "http://dbpedia.org/resource/Richard_Worsam_Meade_III", "http://dbpedia.org/resource/Richardson_Clover", "http://dbpedia.org/resource/Ridgely_Gaither", "http://dbpedia.org/resource/Ridley_McLean", "http://dbpedia.org/resource/Robert_Alfred_Theobald", "http://dbpedia.org/resource/Robert_B._Carney_Jr.", "http://dbpedia.org/resource/Robert_Baird_(flying_ace)", "http://dbpedia.org/resource/Robert_Blume", "http://dbpedia.org/resource/Robert_C._Forbes", "http://dbpedia.org/resource/Robert_Campbell_Van_Vliet", "http://dbpedia.org/resource/Robert_Carney", "http://dbpedia.org/resource/Robert_Courtney_Davis", "http://dbpedia.org/resource/Robert_D._Bohn", "http://dbpedia.org/resource/Robert_D._Knapp", "http://dbpedia.org/resource/Robert_D._Reem", "http://dbpedia.org/resource/Robert_D._Russ", "http://dbpedia.org/resource/Robert_E._Gerstung", "http://dbpedia.org/resource/Robert_E._Haebel", "http://dbpedia.org/resource/Robert_E._Huyser", "http://dbpedia.org/resource/Robert_E._Roeder", "http://dbpedia.org/resource/Robert_F._Travis", "http://dbpedia.org/resource/Robert_F._Worley", "http://dbpedia.org/resource/Robert_Francis_Anthony_Studds", "http://dbpedia.org/resource/Robert_G._Carter", "http://dbpedia.org/resource/Robert_G._Owens_Jr.", "http://dbpedia.org/resource/Robert_G._Robinson", "http://dbpedia.org/resource/Robert_Grimes_Coman", "http://dbpedia.org/resource/Robert_H._Dunlap", "http://dbpedia.org/resource/Robert_H._Pepper", "http://dbpedia.org/resource/Robert_H._Soule", "http://dbpedia.org/resource/Robert_H._Stanley", "http://dbpedia.org/resource/Robert_Henry_English", "http://dbpedia.org/resource/Robert_J._T._Joy", "http://dbpedia.org/resource/Robert_Kingston", "http://dbpedia.org/resource/Robert_L._Ghormley", "http://dbpedia.org/resource/Robert_L._Nichols", "http://dbpedia.org/resource/Robert_Lee_Scott_Jr.", "http://dbpedia.org/resource/Robert_Maitland_O'Reilly", "http://dbpedia.org/resource/Robert_McGowan_Littlejohn", "http://dbpedia.org/resource/Robert_Miller_Montague", "http://dbpedia.org/resource/Robert_Nicholas_Young", "http://dbpedia.org/resource/Robert_O._Bisson", "http://dbpedia.org/resource/Robert_Ray_Scott", "http://dbpedia.org/resource/Robert_Selway", "http://dbpedia.org/resource/Robert_Sink", "http://dbpedia.org/resource/Robert_Stethem", "http://dbpedia.org/resource/Robert_Taplett", "http://dbpedia.org/resource/Robert_Tills", "http://dbpedia.org/resource/Robert_W._Bazley", "http://dbpedia.org/resource/Robert_W._Cone", "http://dbpedia.org/resource/Robert_W._Hayler", "http://dbpedia.org/resource/Robert_Webster_Cary", "http://dbpedia.org/resource/Robert_Whitney_Burns", "http://dbpedia.org/resource/Robert_Williams_(adjutant_general)", "http://dbpedia.org/resource/Roderick_R._Allen", "http://dbpedia.org/resource/Roger_Jones_(Inspector_General)", "http://dbpedia.org/resource/Roger_N._Stembel", "http://dbpedia.org/resource/F._Michael_Rogers", "http://dbpedia.org/resource/Felix_A._Reeve", "http://dbpedia.org/resource/Felix_Brannigan", "http://dbpedia.org/resource/Ferdinand_Thomas_Unger", "http://dbpedia.org/resource/Fernando_E._Rodr\u00edguez_Vargas", "http://dbpedia.org/resource/Floyd_Bennett", "http://dbpedia.org/resource/Floyd_Lavinius_Parks", "http://dbpedia.org/resource/Jeff_W._Mathis_III", "http://dbpedia.org/resource/Jeffrey_L._Bannister", "http://dbpedia.org/resource/Jerauld_R._Gentry", "http://dbpedia.org/resource/Jerome_F._O'Malley", "http://dbpedia.org/resource/Jerry_Yellin", "http://dbpedia.org/resource/Jesse_D._Auton", "http://dbpedia.org/resource/Jimmy_Doolittle", "http://dbpedia.org/resource/Joe_Hooper_(Medal_of_Honor)", "http://dbpedia.org/resource/Joe_R._Baldonado", "http://dbpedia.org/resource/Johan_J._Johansson", "http://dbpedia.org/resource/John_A._B._Dillard", "http://dbpedia.org/resource/John_A._Dramesi", "http://dbpedia.org/resource/John_Allen_Campbell", "http://dbpedia.org/resource/John_Arthur_Hughes", "http://dbpedia.org/resource/John_B._England", "http://dbpedia.org/resource/John_B._Frazier", "http://dbpedia.org/resource/John_Bacon_McDonald", "http://dbpedia.org/resource/John_Basilone", "http://dbpedia.org/resource/John_Boyd_(military_strategist)", "http://dbpedia.org/resource/John_Brown_Kerr", "http://dbpedia.org/resource/John_C._Arrowsmith", "http://dbpedia.org/resource/John_C._Bates", "http://dbpedia.org/resource/John_C._Daniel", "http://dbpedia.org/resource/John_C._Delaney", "http://dbpedia.org/resource/John_C._H._Lee", "http://dbpedia.org/resource/John_C._Meyer", "http://dbpedia.org/resource/John_C._Miller_Jr.", "http://dbpedia.org/resource/John_C._Morgan", "http://dbpedia.org/resource/John_C._Watson", "http://dbpedia.org/resource/John_Carson_Febiger", "http://dbpedia.org/resource/John_Clem", "http://dbpedia.org/resource/John_Cook_(Medal_of_Honor,_1847)", "http://dbpedia.org/resource/John_Coughlin_(soldier)", "http://dbpedia.org/resource/John_Cridland_Latham", "http://dbpedia.org/resource/John_D._Bulkeley", "http://dbpedia.org/resource/John_D._Lavelle", "http://dbpedia.org/resource/John_Davenport_Barrette", "http://dbpedia.org/resource/John_Davis_(Medal_of_Honor,_1898)", "http://dbpedia.org/resource/John_E._Pillsbury", "http://dbpedia.org/resource/John_E._Wilkes", "http://dbpedia.org/resource/John_F._Baker_Jr.", "http://dbpedia.org/resource/John_F._Shafroth_Jr.", "http://dbpedia.org/resource/John_F._Weston", "http://dbpedia.org/resource/John_F._Williams", "http://dbpedia.org/resource/John_Francis_Burnes", "http://dbpedia.org/resource/John_Francis_Uncles", "http://dbpedia.org/resource/John_Fugh", "http://dbpedia.org/resource/John_G._Burkhalter", "http://dbpedia.org/resource/John_G._Hill_Jr.", "http://dbpedia.org/resource/John_Galvin_(general)", "http://dbpedia.org/resource/John_Gibbon", "http://dbpedia.org/resource/John_Grady_(Medal_of_Honor)", "http://dbpedia.org/resource/John_Gregory_Bourke", "http://dbpedia.org/resource/John_H._Brown_Jr.", "http://dbpedia.org/resource/John_H._Cassady", "http://dbpedia.org/resource/John_H._Ebersole", "http://dbpedia.org/resource/John_H._Hughes_(United_States_Army_officer)", "http://dbpedia.org/resource/John_H._King", "http://dbpedia.org/resource/John_H._Leims", "http://dbpedia.org/resource/John_H._Michaelis", "http://dbpedia.org/resource/John_H._Russell_Jr.", "http://dbpedia.org/resource/John_Harties_Brown", "http://dbpedia.org/resource/John_Hood_(naval_officer)", "http://dbpedia.org/resource/John_Hoskins_(officer)", "http://dbpedia.org/resource/John_Irvin_Gregg", "http://dbpedia.org/resource/John_Irwin_(admiral)", "http://dbpedia.org/resource/Lee_Archer_(pilot)", "http://dbpedia.org/resource/Lee_S._Gerow", "http://dbpedia.org/resource/Leigh_Noyes", "http://dbpedia.org/resource/Leland_T._Kennedy", "http://dbpedia.org/resource/Lenah_Higbee", "http://dbpedia.org/resource/Leo_A._Walton", "http://dbpedia.org/resource/Leo_H._Schweiter", "http://dbpedia.org/resource/Leon_W._Johnson", "http://dbpedia.org/resource/Leonard_A._Funk_Jr.", "http://dbpedia.org/resource/Leonard_B._Cresswell", "http://dbpedia.org/resource/Leonard_B._Keller", "http://dbpedia.org/resource/Leonard_C._Ward", "http://dbpedia.org/resource/Leonard_F._Chapman_Jr.", "http://dbpedia.org/resource/Leonard_Porter_Ayres", "http://dbpedia.org/resource/Leslie_Skinner", "http://dbpedia.org/resource/Lester_A._Dessez", "http://dbpedia.org/resource/Lester_J._Whitlock", "http://dbpedia.org/resource/Leverett_M._Kelley", "http://dbpedia.org/resource/Lew_Allen", "http://dbpedia.org/resource/Lewie_G._Merritt", "http://dbpedia.org/resource/Lewis_Burwell_Puller_Jr.", "http://dbpedia.org/resource/Lewis_C._Beebe", "http://dbpedia.org/resource/Lewis_C._Lucas", "http://dbpedia.org/resource/Lewis_H._Brereton", "http://dbpedia.org/resource/Lewis_J._Fields", "http://dbpedia.org/resource/Lewis_Merrill", "http://dbpedia.org/resource/Lewis_Smith_Parks", "http://dbpedia.org/resource/Lincoln_D._Faurer", "http://dbpedia.org/resource/Nels_H._Nelson", "http://dbpedia.org/resource/Nelson_A._Miles", "http://dbpedia.org/resource/Newton_E._Mason", "http://dbpedia.org/resource/Nicholas_H._Heck", "http://dbpedia.org/resource/Niels_Drustrup", "http://dbpedia.org/resource/Pedro_Rodr\u00edguez_(soldier)", "http://dbpedia.org/resource/Peirce_Crosby", "http://dbpedia.org/resource/Percy_A._Decker", "http://dbpedia.org/resource/Percy_Moreau_Ashburn", "http://dbpedia.org/resource/Percy_Poe_Bishop", "http://dbpedia.org/resource/Peter_C._Hains_III", "http://dbpedia.org/resource/Peter_Conover_Hains", "http://dbpedia.org/resource/Peter_Grace", "http://dbpedia.org/resource/Peter_H._Allabach", "http://dbpedia.org/resource/Peter_H._Quinn", "http://dbpedia.org/resource/Peter_Huchthausen", "http://dbpedia.org/resource/Peter_J._Ortiz", "http://dbpedia.org/resource/Peter_M._Boehm", "http://dbpedia.org/resource/Peyton_C._March", "http://dbpedia.org/resource/Phil_H._Bucklew", "http://dbpedia.org/resource/Phil_Rasmussen", "http://dbpedia.org/resource/Philip_Andrews_(admiral)", "http://dbpedia.org/resource/Philip_B._Keefer", "http://dbpedia.org/resource/Philip_D._Gallery", "http://dbpedia.org/resource/Philip_Kearny", "http://dbpedia.org/resource/Philip_Sheridan", "http://dbpedia.org/resource/Philip_W._Nuber", "http://dbpedia.org/resource/Phillip_Davidson", "http://dbpedia.org/resource/Pierre_N._Charbonnet_Jr.", "http://dbpedia.org/resource/Theodore_Anderson_Baldwin", "http://dbpedia.org/resource/Theodore_C._Lyster", "http://dbpedia.org/resource/Theodore_Frelinghuysen_Jewell", "http://dbpedia.org/resource/Theodore_H._Winters_Jr.", "http://dbpedia.org/resource/Theodore_Leslie_Futch", "http://dbpedia.org/resource/Theodore_Schwan", "http://dbpedia.org/resource/Theodore_Stark_Wilkinson", "http://dbpedia.org/resource/Thomas_A._Pope", "http://dbpedia.org/resource/Thomas_B._Larkin", "http://dbpedia.org/resource/Thomas_C._Kinkaid", "http://dbpedia.org/resource/Thomas_C._Turner", "http://dbpedia.org/resource/Thomas_Cahey", "http://dbpedia.org/resource/Thomas_Cruse", "http://dbpedia.org/resource/Thomas_Duncan_(general)", "http://dbpedia.org/resource/Thomas_E._Bourke", "http://dbpedia.org/resource/Thomas_E._Jones_(doctor)", "http://dbpedia.org/resource/Thomas_F._Riley", "http://dbpedia.org/resource/Thomas_Francis_Hickey_(United_States_Army_officer)", "http://dbpedia.org/resource/Thomas_Gamble_Pitcher", "http://dbpedia.org/resource/Thomas_George_Lanphier_Sr.", "http://dbpedia.org/resource/Thomas_H._Miller", "http://dbpedia.org/resource/Thomas_H._Stevens_Jr.", "http://dbpedia.org/resource/Thomas_Hinman_Moorer", "http://dbpedia.org/resource/Thomas_Holcomb", "http://dbpedia.org/resource/Thomas_J._Hanley_Jr.", "http://dbpedia.org/resource/Thomas_J._Hudner_Jr.", "http://dbpedia.org/resource/Thomas_J._Kelly_(Medal_of_Honor)", "http://dbpedia.org/resource/Thomas_J._Ryan_(admiral)", "http://dbpedia.org/resource/Thomas_Jefferson_Cowie", "http://dbpedia.org/resource/Thomas_L._Hayes_Jr.", "http://dbpedia.org/resource/Thomas_Leonard_Harrold", "http://dbpedia.org/resource/Thomas_M._Anderson", "http://dbpedia.org/resource/Thomas_McGuire", "http://dbpedia.org/resource/Thomas_O._Osborn", "http://dbpedia.org/resource/Thomas_P._Gere", "http://dbpedia.org/resource/Thomas_P._Magruder", "http://dbpedia.org/resource/Thomas_Patrick_Gerrity", "http://dbpedia.org/resource/Thomas_Phelps", "http://dbpedia.org/resource/Thomas_R._Sargent_III", "http://dbpedia.org/resource/Thomas_Shaw_(Medal_of_Honor)", "http://dbpedia.org/resource/Thomas_T._Handy", "http://dbpedia.org/resource/Thomas_Tackaberry", "http://dbpedia.org/resource/Thomas_Turpin_Crittenden", "http://dbpedia.org/resource/Thomas_W._Herren", "http://dbpedia.org/resource/Thomas_W._Wigle", "http://dbpedia.org/resource/Thomas_Walter_Darrah", "http://dbpedia.org/resource/Thomas_Washington", "http://dbpedia.org/resource/Thomas_Withers", "http://dbpedia.org/resource/Thornton_A._Jenkins", "http://dbpedia.org/resource/Thorvald_A._Solberg", "http://dbpedia.org/resource/Timothy_F._O'Keefe", "http://dbpedia.org/resource/Timothy_I._Ahern", "http://dbpedia.org/resource/Timothy_Maude", "http://dbpedia.org/resource/Willis_Augustus_Lee", "http://dbpedia.org/resource/Williston_B._Palmer", "http://dbpedia.org/resource/Wilson_Vance", "http://dbpedia.org/resource/Winant_Sidle", "http://dbpedia.org/resource/Winfield_S._Harpe", "http://dbpedia.org/resource/Winfield_Scott_Edgerly", "http://dbpedia.org/resource/Winfield_Scott_Schley", "http://dbpedia.org/resource/Winifred_Collins", "http://dbpedia.org/resource/Woodrow_Swancutt", "http://dbpedia.org/resource/Worth_H._Bagley", "http://dbpedia.org/resource/W\u0142odzimierz_Krzy\u017canowski", "http://dbpedia.org/resource/Yates_Stirling", "http://dbpedia.org/resource/Yates_Stirling_Jr.", "http://dbpedia.org/resource/Earl_Hancock_Ellis", "http://dbpedia.org/resource/Earle_Wheeler", "http://dbpedia.org/resource/Edgar_Erskine_Hume", "http://dbpedia.org/resource/Edgar_Jadwin", "http://dbpedia.org/resource/Edmund_B._Gregory", "http://dbpedia.org/resource/Edmund_Colhoun", "http://dbpedia.org/resource/Edmund_Ernest_Garc\u00eda", "http://dbpedia.org/resource/Edmund_L._Gruber", "http://dbpedia.org/resource/Edmund_P._Easterbrook", "http://dbpedia.org/resource/Edmund_Rice_(Medal_of_Honor)", "http://dbpedia.org/resource/Edmund_Wittenmyer", "http://dbpedia.org/resource/Edward_A._Carter_Jr.", "http://dbpedia.org/resource/Edward_A._Silk", "http://dbpedia.org/resource/Edward_Albert_Ostermann", "http://dbpedia.org/resource/Edward_Anderson_(United_States_Army_officer,_born_1864)", "http://dbpedia.org/resource/Edward_Bancroft_Williston", "http://dbpedia.org/resource/Edward_Burr", "http://dbpedia.org/resource/Edward_C._Dyer", "http://dbpedia.org/resource/Edward_C._Kalbfus", "http://dbpedia.org/resource/Edward_D._Robie", "http://dbpedia.org/resource/Edward_F._Rector", "http://dbpedia.org/resource/Edward_F._Welch_Jr.", "http://dbpedia.org/resource/Edward_F._Younger", "http://dbpedia.org/resource/Edward_Fuller_Witsell", "http://dbpedia.org/resource/Edward_H._Forney", "http://dbpedia.org/resource/Edward_H._Hurst", "http://dbpedia.org/resource/Edward_Hale_Campbell", "http://dbpedia.org/resource/Edward_J._Miller_(USMC)", "http://dbpedia.org/resource/Edward_J._O'Neill_(general)", "http://dbpedia.org/resource/Edward_John_McClernand", "http://dbpedia.org/resource/Edward_Lyman_Munson", "http://dbpedia.org/resource/Edward_Ord", "http://dbpedia.org/resource/Edward_Settle_Godfrey", "http://dbpedia.org/resource/Edward_Sigerfoos", "http://dbpedia.org/resource/Edward_Walter_Eberle", "http://dbpedia.org/resource/Edwin_A._Loberg", "http://dbpedia.org/resource/Edwin_A._Zundel", "http://dbpedia.org/resource/Edwin_Anderson_Jr.", "http://dbpedia.org/resource/Edwin_B._Wheeler", "http://dbpedia.org/resource/Edwin_Burr_Babbitt", "http://dbpedia.org/resource/Edwin_Eugene_Aldrin_Sr.", "http://dbpedia.org/resource/Edwin_H._Brainard", "http://dbpedia.org/resource/Edwin_M._Shepard", "http://dbpedia.org/resource/Edwin_M._Truell", "http://dbpedia.org/resource/Edwin_Shepard_Chickering", "http://dbpedia.org/resource/Edwin_St._John_Greble", "http://dbpedia.org/resource/Einar_Axel_Malmstrom", "http://dbpedia.org/resource/Eli_Thompson_Fryer", "http://dbpedia.org/resource/Elizabeth_P._Hoisington", "http://dbpedia.org/resource/Ellery_W._Stone", "http://dbpedia.org/resource/Ellis_Spear", "http://dbpedia.org/resource/Ellis_W._Williamson", "http://dbpedia.org/resource/Elmer_Fowler_Stone", "http://dbpedia.org/resource/Elmer_Gedeon", "http://dbpedia.org/resource/Elmer_H._Salzman", "http://dbpedia.org/resource/Julian_Cunningham", "http://dbpedia.org/resource/Julian_E._Yates", "http://dbpedia.org/resource/Julian_Ewell", "http://dbpedia.org/resource/Julius_A._Furer", "http://dbpedia.org/resource/Julius_Curtis_Townsend", "http://dbpedia.org/resource/Julius_Ochs_Adler", "http://dbpedia.org/resource/Julius_Schou", "http://dbpedia.org/resource/Julius_Stahel", "http://dbpedia.org/resource/Justice_M._Chambers", "http://dbpedia.org/resource/Kara_Hultgreen", "http://dbpedia.org/resource/Kareem_Rashad_Sultan_Khan", "http://dbpedia.org/resource/Karl_S._Day", "http://dbpedia.org/resource/Karl_Truesdell", "http://dbpedia.org/resource/Karl_Westa", "http://dbpedia.org/resource/Lloyd_B._Ramsey", "http://dbpedia.org/resource/Lloyd_Chalker", "http://dbpedia.org/resource/Lloyd_E._Jones", "http://dbpedia.org/resource/Lloyd_L._Burke", "http://dbpedia.org/resource/Lloyd_Milton_Brett", "http://dbpedia.org/resource/Loren_D._Hagen", "http://dbpedia.org/resource/Louis_Chapin_Covell", "http://dbpedia.org/resource/Louis_Cukela", "http://dbpedia.org/resource/Louis_Dreller", "http://dbpedia.org/resource/Louis_E._Denfeld", "http://dbpedia.org/resource/Louis_Gonzaga_Mendez_Jr.", "http://dbpedia.org/resource/Louis_H._Wilson_Jr.", "http://dbpedia.org/resource/Louis_La_Garde", "http://dbpedia.org/resource/Louis_M._Little", "http://dbpedia.org/resource/Louis_R._Jones", "http://dbpedia.org/resource/Louis_R._de_Steiguer", "http://dbpedia.org/resource/Louis_Van_Iersel", "http://dbpedia.org/resource/Lowell_Smith", "http://dbpedia.org/resource/Lucien_Conein", "http://dbpedia.org/resource/Luta_Mae_McGrath", "http://dbpedia.org/resource/Luther_D._Miller", "http://dbpedia.org/resource/Luther_Hare", "http://dbpedia.org/resource/Luther_Prentice_Bradley", "http://dbpedia.org/resource/Luther_Skaggs_Jr.", "http://dbpedia.org/resource/Lutz_Wahl", "http://dbpedia.org/resource/Lyal_A._Davidson", "http://dbpedia.org/resource/Lyman_W._V._Kennon", "http://dbpedia.org/resource/Olaf_M._Hustvedt", "http://dbpedia.org/resource/Olinto_M._Barsanti", "http://dbpedia.org/resource/Oliver_F._Naquin", "http://dbpedia.org/resource/Oliver_Lyman_Spaulding_(general)", "http://dbpedia.org/resource/Ollie_Josephine_Prescott_Baird_Bennett", "http://dbpedia.org/resource/Onslow_S._Rolfe", "http://dbpedia.org/resource/Orde_Wingate", "http://dbpedia.org/resource/Orindatus_Simon_Bolivar_Wall", "http://dbpedia.org/resource/Orlando_B._Willcox", "http://dbpedia.org/resource/Orlando_Metcalfe_Poe", "http://dbpedia.org/resource/Orson_Leon_Crandall", "http://dbpedia.org/resource/Orval_R._Cook", "http://dbpedia.org/resource/Orvil_A._Anderson", "http://dbpedia.org/resource/Orville_E._Babcock", "http://dbpedia.org/resource/Oscar_C._Badger", "http://dbpedia.org/resource/Oscar_C._Badger_II", "http://dbpedia.org/resource/Oscar_Koch", "http://dbpedia.org/resource/Oscar_R._Cauldwell", "http://dbpedia.org/resource/Oscar_Schmidt_Jr.", "http://dbpedia.org/resource/Oscar_Westover", "http://dbpedia.org/resource/Oswald_Herbert_Ernst", "http://dbpedia.org/resource/Seth_Williams_(USMC)", "http://dbpedia.org/resource/Shannon_M._Kent", "http://dbpedia.org/resource/Sherrod_E._Skinner_Jr.", "http://dbpedia.org/resource/Silas_B._Hays", "http://dbpedia.org/resource/Spencer_S._Wood", "http://dbpedia.org/resource/St._Clair_Streett", "http://dbpedia.org/resource/St._Julien_R._Marshall", "http://dbpedia.org/resource/Stanley_Dunbar_Embick", "http://dbpedia.org/resource/Stephen_G._Burbridge", "http://dbpedia.org/resource/Stephen_Holden_Doane", "http://dbpedia.org/resource/Stephen_O._Fuqua", "http://dbpedia.org/resource/Stephen_Vincent_Benet_(general)", "http://dbpedia.org/resource/Bill_Bower", "http://dbpedia.org/resource/Bill_Stearns", "http://dbpedia.org/resource/Billy_M._Minter", "http://dbpedia.org/resource/Billy_Walkabout", "http://dbpedia.org/resource/Blackburn_B._Dovener", "http://dbpedia.org/resource/Bobbie_E._Brown", "http://dbpedia.org/resource/Kurt_Chew-Een_Lee", "http://dbpedia.org/resource/Littleton_Waller", "http://dbpedia.org/resource/Michael_Boorda", "http://dbpedia.org/resource/Michael_Crescenz", "http://dbpedia.org/resource/Michael_J._Galvin", "http://dbpedia.org/resource/Michael_J._Novosel", "http://dbpedia.org/resource/Michael_Joseph_Hayes", "http://dbpedia.org/resource/Michael_P._Ryan_(USMC)", "http://dbpedia.org/resource/Michael_R._Yunck", "http://dbpedia.org/resource/Michael_Strank", "http://dbpedia.org/resource/Micheal_E._Urell", "http://dbpedia.org/resource/Mildred_Inez_Caroon_Bailey", "http://dbpedia.org/resource/Miles_Browning", "http://dbpedia.org/resource/Military_career_of_Audie_Murphy", "http://dbpedia.org/resource/Milton_M._Holland", "http://dbpedia.org/resource/Pappy_Boyington", "http://dbpedia.org/resource/Patrick_McGunigal", "http://dbpedia.org/resource/Patrick_N._L._Bellinger", "http://dbpedia.org/resource/Patrick_Shanahan_(Medal_of_Honor)", "http://dbpedia.org/resource/Paul_Blasingame", "http://dbpedia.org/resource/Paul_F._Smith", "http://dbpedia.org/resource/Paul_Foley_(admiral)", "http://dbpedia.org/resource/Paul_Frederick_Foster", "http://dbpedia.org/resource/Paul_J._Fontana", "http://dbpedia.org/resource/Paul_L._Bates", "http://dbpedia.org/resource/Paul_Ramsey_Hawley", "http://dbpedia.org/resource/Paul_Ray_Smith", "http://dbpedia.org/resource/Paul_W._Airey", "http://dbpedia.org/resource/Paul_W._Beck", "http://dbpedia.org/resource/Paul_Wurtsmith", "http://dbpedia.org/resource/Paul_X._Kelley", "http://dbpedia.org/resource/Romeyn_B._Ayres", "http://dbpedia.org/resource/Ronald_J._Shurer", "http://dbpedia.org/resource/Roscoe_Cartwright", "http://dbpedia.org/resource/Roscoe_Robinson_Jr.", "http://dbpedia.org/resource/Ross_A._McGinnis", "http://dbpedia.org/resource/Ross_E._Rowell", "http://dbpedia.org/resource/Roy_Alexander_Gano", "http://dbpedia.org/resource/Roy_H._Parker", "http://dbpedia.org/resource/Roy_M._Gulick", "http://dbpedia.org/resource/Roy_Thurman", "http://dbpedia.org/resource/Royal_Emerson_Whitman", "http://dbpedia.org/resource/Royal_Reynolds_Jr.", "http://dbpedia.org/resource/Ruby_Bradley", "http://dbpedia.org/resource/Rudolph_B._Davila", "http://dbpedia.org/resource/Rudolph_W._Riefkohl", "http://dbpedia.org/resource/Rufus_Ingalls", "http://dbpedia.org/resource/Rufus_Saxton", "http://dbpedia.org/resource/Rufus_Zenas_Johnston", "http://dbpedia.org/resource/Russel_Burton_Reynolds", "http://dbpedia.org/resource/Russell_R._Waesche", "http://dbpedia.org/resource/Ruth_A._Lucas", "http://dbpedia.org/resource/Zachariah_T._Woodall", "http://dbpedia.org/resource/Zenas_Bliss", "http://dbpedia.org/resource/Zera_Luther_Tanner"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/notableInstruments> <http://dbpedia.org/resource/Drums> . ?x <http://dbpedia.org/ontology/genre> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/bandMember> <http://dbpedia.org/resource/Guy_(band)> . ?x <http://dbpedia.org/property/associatedBand> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/headquarters> <http://dbpedia.org/resource/Queen_Noor_of_Jordan> . ?x <http://dbpedia.org/property/president> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/televisionSeries> <http://dbpedia.org/resource/NTSC> . ?uri <http://dbpedia.org/property/cinematography> <http://dbpedia.org/resource/5.1_> surround_sound . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kala_Pani_(1958_film)> <http://dbpedia.org/ontology/director> ?x . ?x <http://dbpedia.org/property/placeOfDeath> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/hairColor> <http://dbpedia.org/resource/Red_hair> . ?x <http://dbpedia.org/ontology/deathPlace> ?uri . }"}, "answers": ["http://dbpedia.org/resource/France", "http://dbpedia.org/resource/Paris", "http://dbpedia.org/resource/Saxonburg,_Pennsylvania"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/militaryUnit> <http://dbpedia.org/resource/Second_Lieutenants> . ?x <http://dbpedia.org/property/religion> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/maintainedBy> <http://dbpedia.org/resource/Public_Transport_Authority_(Western_Australia)> . ?x <http://dbpedia.org/property/railway> lines ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/nationality> <http://dbpedia.org/resource/American_citizens> . ?uri <http://dbpedia.org/property/publisher> ?x . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/inflow> <http://dbpedia.org/resource/Upper_Half> . ?x <http://dbpedia.org/property/cities> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/nationality> <http://dbpedia.org/resource/Swedish> . ?uri <http://dbpedia.org/property/notableInArea> ?x . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/artist> <http://dbpedia.org/resource/Muse_discography> . ?uri <http://dbpedia.org/property/artist> ?x . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/location> <http://dbpedia.org/resource/Herzogenaurach> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}"}, "answers": ["http://dbpedia.org/resource/Five_Ten_Footwear", "http://dbpedia.org/resource/Puma_(brand)", "http://dbpedia.org/resource/Hydra_Ventures"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Lawrence_Realization_Stakes> <http://dbpedia.org/property/race> ?x . ?x <http://dbpedia.org/ontology/award> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/editing> <http://dbpedia.org/resource/Mark_Stevens> . ?uri <http://dbpedia.org/property/director> <http://dbpedia.org/resource/Joel_Schumacher> . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/author> <http://dbpedia.org/resource/Luther:_The_Calling> . ?x <http://dbpedia.org/ontology/author> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/mainInterests> <http://dbpedia.org/resource/Natural_philosophy> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Philosopher>}"}, "answers": ["http://dbpedia.org/resource/Anaxagoras", "http://dbpedia.org/resource/Alcmaeon_of_Croton", "http://dbpedia.org/resource/Marsilius_of_Inghen", "http://dbpedia.org/resource/Cleanthes", "http://dbpedia.org/resource/John_Philoponus", "http://dbpedia.org/resource/Strato_of_Lampsacus", "http://dbpedia.org/resource/Rodrigo_de_Arriaga", "http://dbpedia.org/resource/Roger_Bacon", "http://dbpedia.org/resource/Miura_Baien", "http://dbpedia.org/resource/Johannes_Nikolaus_Tetens", "http://dbpedia.org/resource/William_of_Ockham", "http://dbpedia.org/resource/Xenophanes"]}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { ?x . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/OfficeHolder>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Victor_Entertainment> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Album>}"}, "answers": ["176"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/veneratedIn> <http://dbpedia.org/resource/Judaism> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Saint>}"}, "answers": ["28"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/notableWork> <http://dbpedia.org/resource/Gibson_Les_Paul> . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/phylum> <http://dbpedia.org/resource/Chordate> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Mammal>}"}, "answers": ["http://dbpedia.org/resource/Allacerops", "http://dbpedia.org/resource/Altungulata", "http://dbpedia.org/resource/Darocasorex", "http://dbpedia.org/resource/Deccanolestes", "http://dbpedia.org/resource/Archonta", "http://dbpedia.org/resource/Valentinella", "http://dbpedia.org/resource/Dilambdogale", "http://dbpedia.org/resource/Pebble-mound_mouse", "http://dbpedia.org/resource/Betonnia", "http://dbpedia.org/resource/Geolabididae", "http://dbpedia.org/resource/Sahnitherium", "http://dbpedia.org/resource/Widanelfarasia", "http://dbpedia.org/resource/Kryoryctes", "http://dbpedia.org/resource/Arcantiodelphys", "http://dbpedia.org/resource/Argentodites", "http://dbpedia.org/resource/Eotheroides", "http://dbpedia.org/resource/Erlianomys", "http://dbpedia.org/resource/Uintaceras", "http://dbpedia.org/resource/Ukhaatherium", "http://dbpedia.org/resource/Sorex_araneus_grantii", "http://dbpedia.org/resource/Kaupitherium", "http://dbpedia.org/resource/Kennalestes", "http://dbpedia.org/resource/Mesatirhinus", "http://dbpedia.org/resource/Metarhinus", "http://dbpedia.org/resource/Metatelmatherium", "http://dbpedia.org/resource/Metaxytherium", "http://dbpedia.org/resource/Caribosiren", "http://dbpedia.org/resource/Repomys", "http://dbpedia.org/resource/Notiotitanops", "http://dbpedia.org/resource/Phalangerida", "http://dbpedia.org/resource/Scalaridelphys", "http://dbpedia.org/resource/Basirepomys", "http://dbpedia.org/resource/Batodonoides", "http://dbpedia.org/resource/Batodonoides_vanhouteni", "http://dbpedia.org/resource/Mondegodon", "http://dbpedia.org/resource/Morenelaphus", "http://dbpedia.org/resource/Mulkrajanops", "http://dbpedia.org/resource/Nanolestes", "http://dbpedia.org/resource/Seggeurius", "http://dbpedia.org/resource/Ageitonomys", "http://dbpedia.org/resource/Cambaytherium", "http://dbpedia.org/resource/Caviodon", "http://dbpedia.org/resource/Chacopterygus", "http://dbpedia.org/resource/Sthenodectes", "http://dbpedia.org/resource/Tahr", "http://dbpedia.org/resource/Junggaroperadectes", "http://dbpedia.org/resource/Mimoperadectes", "http://dbpedia.org/resource/Priscosiren", "http://dbpedia.org/resource/Dolinasorex", "http://dbpedia.org/resource/Sinodonomys", "http://dbpedia.org/resource/Telmatherium", "http://dbpedia.org/resource/Cricetulodon", "http://dbpedia.org/resource/Greniodon", "http://dbpedia.org/resource/Guiomys", "http://dbpedia.org/resource/Chacomylus", "http://dbpedia.org/resource/Maelestes", "http://dbpedia.org/resource/Phoxomylus", "http://dbpedia.org/resource/Protitanotherium", "http://dbpedia.org/resource/Prototherium", "http://dbpedia.org/resource/Qatranilestes", "http://dbpedia.org/resource/Radinskya", "http://dbpedia.org/resource/Eosiren", "http://dbpedia.org/resource/Eparctocyona", "http://dbpedia.org/resource/Edworthia", "http://dbpedia.org/resource/Kahawamys", "http://dbpedia.org/resource/Kalimantsia", "http://dbpedia.org/resource/Omoiosicista", "http://dbpedia.org/resource/Stegodibelodon", "http://dbpedia.org/resource/Stegosiren", "http://dbpedia.org/resource/Dorcopsis", "http://dbpedia.org/resource/Hyotheridium", "http://dbpedia.org/resource/Miocnus", "http://dbpedia.org/resource/Parelasmotherium", "http://dbpedia.org/resource/Parikimys", "http://dbpedia.org/resource/Eridanosaurus", "http://dbpedia.org/resource/Yingabalanara", "http://dbpedia.org/resource/Leptalestes"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/associatedMusicalArtist> <http://dbpedia.org/resource/Carolyn_Dennis> . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/ground> <http://dbpedia.org/resource/Rosario> . ?uri <http://dbpedia.org/property/youthclubs> ?x . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/company> <http://dbpedia.org/resource/Playtone> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": ["http://dbpedia.org/resource/The_2000s_(miniseries)", "http://dbpedia.org/resource/The_Eighties_(miniseries)", "http://dbpedia.org/resource/The_Movies_(miniseries)", "http://dbpedia.org/resource/The_Nineties_(miniseries)", "http://dbpedia.org/resource/The_Pacific_(miniseries)", "http://dbpedia.org/resource/The_Seventies_(miniseries)", "http://dbpedia.org/resource/The_Sixties_(miniseries)", "http://dbpedia.org/resource/Band_of_Brothers_(miniseries)", "http://dbpedia.org/resource/My_Big_Fat_Greek_Life", "http://dbpedia.org/resource/Electric_City_(web_series)", "http://dbpedia.org/resource/Olive_Kitteridge_(miniseries)"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/county> <http://dbpedia.org/resource/Wisconsin> . ?x <http://dbpedia.org/property/restingplace> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/publications> <http://dbpedia.org/resource/SAGE> . ?x <http://dbpedia.org/ontology/academicArea> ?uri }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pontiac_Building> <http://dbpedia.org/property/architecturalStyle> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/league> <http://dbpedia.org/resource/National_Basketball_Association> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/BasketballPlayer>}"}, "answers": ["http://dbpedia.org/resource/Alize_Johnson", "http://dbpedia.org/resource/Alondes_Williams", "http://dbpedia.org/resource/Alonzo_Mourning", "http://dbpedia.org/resource/Alperen_\u015eeng\u00fcn", "http://dbpedia.org/resource/Andre_Drummond", "http://dbpedia.org/resource/Andrew_Nembhard", "http://dbpedia.org/resource/Andy_Greer", "http://dbpedia.org/resource/Damian_Lillard", "http://dbpedia.org/resource/Damon_Stoudamire", "http://dbpedia.org/resource/Dan_Burke_(basketball)", "http://dbpedia.org/resource/Dan_Craig", "http://dbpedia.org/resource/Daniel_Gafford", "http://dbpedia.org/resource/Daniel_Theis", "http://dbpedia.org/resource/Danko_Cvjeti\u0107anin", "http://dbpedia.org/resource/Danny_Ainge", "http://dbpedia.org/resource/Danuel_House", "http://dbpedia.org/resource/Dario_\u0160ari\u0107", "http://dbpedia.org/resource/Darius_Bazley", "http://dbpedia.org/resource/Darius_Days", "http://dbpedia.org/resource/Darius_Garland", "http://dbpedia.org/resource/Darko_Rajakovi\u0107", "http://dbpedia.org/resource/Darnell_Lazare", "http://dbpedia.org/resource/Darrell_Armstrong", "http://dbpedia.org/resource/Darren_Erman", "http://dbpedia.org/resource/Darvin_Ham", "http://dbpedia.org/resource/Dave_Joerger", "http://dbpedia.org/resource/David_Duke_Jr.", "http://dbpedia.org/resource/David_Griffin_(basketball)", "http://dbpedia.org/resource/David_Johnson_(basketball)", "http://dbpedia.org/resource/David_McClure_(basketball)", "http://dbpedia.org/resource/David_Roddy", "http://dbpedia.org/resource/Davion_Mitchell", "http://dbpedia.org/resource/Davon_Reed", "http://dbpedia.org/resource/Day'Ron_Sharpe", "http://dbpedia.org/resource/De'Aaron_Fox", "http://dbpedia.org/resource/De'Andre_Hunter", "http://dbpedia.org/resource/De'Anthony_Melton", "http://dbpedia.org/resource/DeAndre_Jordan", "http://dbpedia.org/resource/Deandre_Ayton", "http://dbpedia.org/resource/Usman_Garuba", "http://dbpedia.org/resource/Vernon_Carey_Jr.", "http://dbpedia.org/resource/Victor_Oladipo", "http://dbpedia.org/resource/Vince_Williams_Jr.", "http://dbpedia.org/resource/Vitaly_Potapenko", "http://dbpedia.org/resource/Vlatko_\u010can\u010dar", "http://dbpedia.org/resource/V\u00edt_Krej\u010d\u00ed", "http://dbpedia.org/resource/Walker_Kessler", "http://dbpedia.org/resource/Dejan_Milojevi\u0107", "http://dbpedia.org/resource/Dejounte_Murray", "http://dbpedia.org/resource/Dell_Demps", "http://dbpedia.org/resource/Deni_Avdija", "http://dbpedia.org/resource/Dereon_Seabron", "http://dbpedia.org/resource/Derrick_Favors", "http://dbpedia.org/resource/Derrick_Jones_Jr.", "http://dbpedia.org/resource/Derrick_Rose", "http://dbpedia.org/resource/Derrick_White_(basketball)", "http://dbpedia.org/resource/Desmond_Bane", "http://dbpedia.org/resource/Devin_Booker", "http://dbpedia.org/resource/Devin_Cannady", "http://dbpedia.org/resource/Devin_Vassell", "http://dbpedia.org/resource/Devontae_Cacok", "http://dbpedia.org/resource/Devonte'_Graham", "http://dbpedia.org/resource/Dewayne_Dedmon", "http://dbpedia.org/resource/Didi_Louzada", "http://dbpedia.org/resource/Dillon_Brooks", "http://dbpedia.org/resource/Dirk_Nowitzki", "http://dbpedia.org/resource/Al_Attles", "http://dbpedia.org/resource/Al_Horford", "http://dbpedia.org/resource/Alec_Burks", "http://dbpedia.org/resource/Aleksej_Poku\u0161evski", "http://dbpedia.org/resource/Alex_Jensen", "http://dbpedia.org/resource/Alex_Len", "http://dbpedia.org/resource/Alex_McKechnie", "http://dbpedia.org/resource/Art\u016bras_Karni\u0161ovas", "http://dbpedia.org/resource/Austin_Ainge", "http://dbpedia.org/resource/Austin_Reaves", "http://dbpedia.org/resource/Ayo_Dosunmu", "http://dbpedia.org/resource/Ben_Simmons", "http://dbpedia.org/resource/Ben_Sullivan_(basketball)", "http://dbpedia.org/resource/Ben_Wallace_(basketball)", "http://dbpedia.org/resource/Beno_Udrih", "http://dbpedia.org/resource/Frank_Kaminsky", "http://dbpedia.org/resource/Frank_Ntilikina", "http://dbpedia.org/resource/Frank_Vogel", "http://dbpedia.org/resource/Fred_VanVleet", "http://dbpedia.org/resource/Fred_Vinson_(basketball)", "http://dbpedia.org/resource/Garrett_Jackson", "http://dbpedia.org/resource/Garrison_Mathews", "http://dbpedia.org/resource/Gary_Clark_(basketball)", "http://dbpedia.org/resource/Gary_Harris", "http://dbpedia.org/resource/Gary_Payton_II", "http://dbpedia.org/resource/Gary_Trent_Jr.", "http://dbpedia.org/resource/Harrison_Barnes", "http://dbpedia.org/resource/Saben_Lee", "http://dbpedia.org/resource/Sachin_Gupta_(executive)", "http://dbpedia.org/resource/Saddiq_Bey", "http://dbpedia.org/resource/Sam_Cassell", "http://dbpedia.org/resource/Sandro_Mamukelashvili", "http://dbpedia.org/resource/T._J._McConnell", "http://dbpedia.org/resource/T._J._Warren", "http://dbpedia.org/resource/Tari_Eason", "http://dbpedia.org/resource/Taurean_Prince", "http://dbpedia.org/resource/Taylor_Jenkins", "http://dbpedia.org/resource/Wendell_Carter_Jr.", "http://dbpedia.org/resource/Wendell_Moore_Jr.", "http://dbpedia.org/resource/Wenyen_Gabriel", "http://dbpedia.org/resource/Wes_Unseld_Jr.", "http://dbpedia.org/resource/Wesley_Johnson_(basketball)", "http://dbpedia.org/resource/Wesley_Matthews", "http://dbpedia.org/resource/Will_Barton", "http://dbpedia.org/resource/Will_Hardy", "http://dbpedia.org/resource/Anfernee_Simons", "http://dbpedia.org/resource/Anthony_Davis", "http://dbpedia.org/resource/Anthony_Edwards_(basketball)", "http://dbpedia.org/resource/Anthony_Lamb_(basketball)", "http://dbpedia.org/resource/Anthony_Morrow", "http://dbpedia.org/resource/Anthony_Parker", "http://dbpedia.org/resource/Antonio_Lang", "http://dbpedia.org/resource/Elston_Turner", "http://dbpedia.org/resource/Eric_Bledsoe", "http://dbpedia.org/resource/Eric_Gordon", "http://dbpedia.org/resource/Eric_Hughes_(basketball)", "http://dbpedia.org/resource/Eric_Paschall", "http://dbpedia.org/resource/Erik_Spoelstra", "http://dbpedia.org/resource/Ermal_Kuqo", "http://dbpedia.org/resource/Eugene_Omoruyi", "http://dbpedia.org/resource/Evan_Fournier", "http://dbpedia.org/resource/Evan_Mobley", "http://dbpedia.org/resource/Evan_Turner", "http://dbpedia.org/resource/Giannis_Antetokounmpo", "http://dbpedia.org/resource/God_Shammgod", "http://dbpedia.org/resource/Goga_Bitadze", "http://dbpedia.org/resource/Goran_Dragi\u0107", "http://dbpedia.org/resource/Gordon_Hayward", "http://dbpedia.org/resource/Gorgui_Dieng", "http://dbpedia.org/resource/MarJon_Beauchamp", "http://dbpedia.org/resource/Marcus_Garrett", "http://dbpedia.org/resource/Marcus_Georges-Hunt", "http://dbpedia.org/resource/Marcus_Smart", "http://dbpedia.org/resource/Mark_Bryant_(basketball)", "http://dbpedia.org/resource/Mark_Daigneault", "http://dbpedia.org/resource/Mark_Williams_(basketball)", "http://dbpedia.org/resource/Markelle_Fultz", "http://dbpedia.org/resource/Markieff_Morris", "http://dbpedia.org/resource/Marko_Simonovi\u0107_(basketball,_born_1999)", "http://dbpedia.org/resource/Marlon_Garnett", "http://dbpedia.org/resource/Marquese_Chriss", "http://dbpedia.org/resource/Marvin_Williams", "http://dbpedia.org/resource/Popeye_Jones", "http://dbpedia.org/resource/Precious_Achiuwa", "http://dbpedia.org/resource/Predrag_Drobnjak", "http://dbpedia.org/resource/Primo\u017e_Brezec", "http://dbpedia.org/resource/Terence_Davis", "http://dbpedia.org/resource/Teresa_Weatherspoon", "http://dbpedia.org/resource/Terry_Rozier", "http://dbpedia.org/resource/Terry_Taylor_(basketball)", "http://dbpedia.org/resource/Thaddeus_Young", "http://dbpedia.org/resource/Thanasis_Antetokounmpo", "http://dbpedia.org/resource/Udoka_Azubuike", "http://dbpedia.org/resource/Udonis_Haslem", "http://dbpedia.org/resource/Jeff_Weltman", "http://dbpedia.org/resource/Monte_McNair", "http://dbpedia.org/resource/Bo\u0161tjan_Nachbar", "http://dbpedia.org/resource/Brandon_Boston_Jr.", "http://dbpedia.org/resource/Brandon_Clarke", "http://dbpedia.org/resource/Brandon_Goodwin_(basketball)", "http://dbpedia.org/resource/Brandon_Ingram", "http://dbpedia.org/resource/Brandon_Williams_(basketball,_born_1975)", "http://dbpedia.org/resource/Brandon_Williams_(basketball,_born_1999)", "http://dbpedia.org/resource/Braxton_Key", "http://dbpedia.org/resource/Brendan_Malone", "http://dbpedia.org/resource/Bret_Brielmaier", "http://dbpedia.org/resource/Brett_Brown", "http://dbpedia.org/resource/Brian_Adams_(basketball)", "http://dbpedia.org/resource/Brian_Keefe", "http://dbpedia.org/resource/Brian_Shaw", "http://dbpedia.org/resource/Brodric_Thomas", "http://dbpedia.org/resource/Brook_Lopez", "http://dbpedia.org/resource/Bruce_Fraser_(basketball)", "http://dbpedia.org/resource/Bruce_Kreutzer", "http://dbpedia.org/resource/Bruno_Fernando", "http://dbpedia.org/resource/Bryan_Gates", "http://dbpedia.org/resource/Bryce_McGowens", "http://dbpedia.org/resource/Bryn_Forbes", "http://dbpedia.org/resource/Buddy_Boeheim", "http://dbpedia.org/resource/Buddy_Hield", "http://dbpedia.org/resource/Jack_White_(basketball)", "http://dbpedia.org/resource/Jacque_Vaughn", "http://dbpedia.org/resource/Jaden_Hardy", "http://dbpedia.org/resource/Jaden_Ivey", "http://dbpedia.org/resource/Jaden_Springer", "http://dbpedia.org/resource/Jae'Sean_Tate", "http://dbpedia.org/resource/Jake_LaRavia", "http://dbpedia.org/resource/Jakob_P\u00f6ltl", "http://dbpedia.org/resource/Jalen_Brunson", "http://dbpedia.org/resource/Jalen_Duren", "http://dbpedia.org/resource/Jalen_Green", "http://dbpedia.org/resource/Jalen_Johnson", "http://dbpedia.org/resource/Jalen_Suggs", "http://dbpedia.org/resource/Jalen_Williams", "http://dbpedia.org/resource/Jamaal_Magloire", "http://dbpedia.org/resource/Jamahl_Mosley", "http://dbpedia.org/resource/Jamal_Cain", "http://dbpedia.org/resource/Jamal_Murray", "http://dbpedia.org/resource/James_Borrego", "http://dbpedia.org/resource/James_Bouknight", "http://dbpedia.org/resource/James_Harden", "http://dbpedia.org/resource/James_Wiseman", "http://dbpedia.org/resource/Jamie_Young_(basketball)", "http://dbpedia.org/resource/Jared_Butler", "http://dbpedia.org/resource/Jared_Dudley", "http://dbpedia.org/resource/Jared_Harper", "http://dbpedia.org/resource/Jaren_Jackson_Jr.", "http://dbpedia.org/resource/Jarred_Vanderbilt", "http://dbpedia.org/resource/Jarrett_Allen", "http://dbpedia.org/resource/Jarrett_Jack", "http://dbpedia.org/resource/Jarron_Collins", "http://dbpedia.org/resource/Jason_Kidd", "http://dbpedia.org/resource/Jason_Preston", "http://dbpedia.org/resource/Jason_Terry", "http://dbpedia.org/resource/Javonte_Green", "http://dbpedia.org/resource/Jaxson_Hayes", "http://dbpedia.org/resource/Jay_Larranaga", "http://dbpedia.org/resource/Jay_Triano", "http://dbpedia.org/resource/Jaylen_Brown", "http://dbpedia.org/resource/Jaylin_Williams", "http://dbpedia.org/resource/Jayson_Tatum", "http://dbpedia.org/resource/Jeenathan_Williams", "http://dbpedia.org/resource/Keegan_Murray", "http://dbpedia.org/resource/Keita_Bates-Diop", "http://dbpedia.org/resource/Kelly_Olynyk", "http://dbpedia.org/resource/Kelly_Oubre_Jr.", "http://dbpedia.org/resource/Kendall_Brown_(basketball)", "http://dbpedia.org/resource/Kendrick_Nunn", "http://dbpedia.org/resource/Kennedy_Chandler", "http://dbpedia.org/resource/Kenneth_Lofton_Jr.", "http://dbpedia.org/resource/Kenny_Atkinson", "http://dbpedia.org/resource/Kenrich_Williams", "http://dbpedia.org/resource/Kenyon_Martin_Jr.", "http://dbpedia.org/resource/Keon_Ellis", "http://dbpedia.org/resource/Keon_Johnson_(basketball,_born_2002)", "http://dbpedia.org/resource/Kessler_Edwards", "http://dbpedia.org/resource/Kevin_Burleson", "http://dbpedia.org/resource/Kevin_Durant", "http://dbpedia.org/resource/Kevin_Huerter", "http://dbpedia.org/resource/Kevin_Love", "http://dbpedia.org/resource/Kevin_Porter_Jr.", "http://dbpedia.org/resource/Kevin_Pritchard", "http://dbpedia.org/resource/Kevon_Harris_(basketball)", "http://dbpedia.org/resource/Kevon_Looney", "http://dbpedia.org/resource/Keyon_Dooling", "http://dbpedia.org/resource/Khris_Middleton", "http://dbpedia.org/resource/Killian_Hayes", "http://dbpedia.org/resource/Killian_Tillie", "http://dbpedia.org/resource/Matina_Kolokotronis", "http://dbpedia.org/resource/Matisse_Thybulle", "http://dbpedia.org/resource/Matt_Ryan_(basketball)", "http://dbpedia.org/resource/Matt_Thomas_(basketball)", "http://dbpedia.org/resource/Matthew_Dellavedova", "http://dbpedia.org/resource/Maurice_Cheeks", "http://dbpedia.org/resource/Maurice_Harkless", "http://dbpedia.org/resource/Max_Christie_(basketball)", "http://dbpedia.org/resource/Max_Strus", "http://dbpedia.org/resource/Maxi_Kleber", "http://dbpedia.org/resource/Melvin_Frazier", "http://dbpedia.org/resource/Melvin_Hunt", "http://dbpedia.org/resource/Randy_Ayers", "http://dbpedia.org/resource/Raul_Neto", "http://dbpedia.org/resource/Reggie_Bullock", "http://dbpedia.org/resource/Rex_Kalamian", "http://dbpedia.org/resource/A._J._Green_(basketball)", "http://dbpedia.org/resource/A._J._Lawson", "http://dbpedia.org/resource/AJ_Griffin", "http://dbpedia.org/resource/Nikola_Vu\u010devi\u0107", "http://dbpedia.org/resource/Noah_Vonleh", "http://dbpedia.org/resource/Norman_Powell", "http://dbpedia.org/resource/OG_Anunoby", "http://dbpedia.org/resource/Obi_Toppin", "http://dbpedia.org/resource/Ochai_Agbaji", "http://dbpedia.org/resource/Octavio_De_La_Grana", "http://dbpedia.org/resource/Scott_Layden", "http://dbpedia.org/resource/Clifford_Ray", "http://dbpedia.org/resource/Clint_Capela", "http://dbpedia.org/resource/Coby_White", "http://dbpedia.org/resource/Cole_Anthony", "http://dbpedia.org/resource/Cole_Swider", "http://dbpedia.org/resource/Collin_Gillespie", "http://dbpedia.org/resource/John_Konchar", "http://dbpedia.org/resource/John_Lucas_II", "http://dbpedia.org/resource/John_Paxson", "http://dbpedia.org/resource/John_Wall", "http://dbpedia.org/resource/Johnnie_Bryant", "http://dbpedia.org/resource/Johnny_Davis_(basketball,_born_2002)", "http://dbpedia.org/resource/Johnny_Juzang", "http://dbpedia.org/resource/Jon_Horst", "http://dbpedia.org/resource/Jonas_Valan\u010di\u016bnas", "http://dbpedia.org/resource/Jonathan_Isaac", "http://dbpedia.org/resource/Jonathan_Kuminga", "http://dbpedia.org/resource/Jordan_Clarkson", "http://dbpedia.org/resource/Jordan_Hall_(basketball)", "http://dbpedia.org/resource/Jordan_McLaughlin", "http://dbpedia.org/resource/Jordan_Schakel", "http://dbpedia.org/resource/Jordi_Fern\u00e1ndez", "http://dbpedia.org/resource/Jose_Alvarado_(basketball)", "http://dbpedia.org/resource/Joseph_Blair", "http://dbpedia.org/resource/Josh_Christopher", "http://dbpedia.org/resource/Josh_Giddey", "http://dbpedia.org/resource/Josh_Green_(basketball)", "http://dbpedia.org/resource/Josh_Hart", "http://dbpedia.org/resource/Josh_Jackson_(basketball)", "http://dbpedia.org/resource/Josh_Minott", "http://dbpedia.org/resource/Josh_Oppenheimer", "http://dbpedia.org/resource/Josh_Richardson", "http://dbpedia.org/resource/Joshua_Primo", "http://dbpedia.org/resource/Jos\u00e9_Calder\u00f3n_(basketball)", "http://dbpedia.org/resource/Jrue_Holiday", "http://dbpedia.org/resource/Juancho_Hernang\u00f3mez", "http://dbpedia.org/resource/Juhann_Begarin", "http://dbpedia.org/resource/Santi_Aldama", "http://dbpedia.org/resource/Scott_Brooks", "http://dbpedia.org/resource/Scott_Perry_(basketball)", "http://dbpedia.org/resource/Scottie_Barnes", "http://dbpedia.org/resource/Scotty_Pippen_Jr.", "http://dbpedia.org/resource/Serge_Ibaka", "http://dbpedia.org/resource/Gillian_Zucker", "http://dbpedia.org/resource/Jim_Eyen", "http://dbpedia.org/resource/John_Rinehart_(basketball)", "http://dbpedia.org/resource/Justin_Zanik", "http://dbpedia.org/resource/Bam_Adebayo", "http://dbpedia.org/resource/Isaac_Okoro", "http://dbpedia.org/resource/Isaiah_Hartenstein", "http://dbpedia.org/resource/Isaiah_Joe", "http://dbpedia.org/resource/Isaiah_Livers", "http://dbpedia.org/resource/Isaiah_Mobley", "http://dbpedia.org/resource/Isaiah_Roby", "http://dbpedia.org/resource/Isaiah_Stewart", "http://dbpedia.org/resource/Isaiah_Todd", "http://dbpedia.org/resource/Ish_Wainright", "http://dbpedia.org/resource/Iverson_Molinar", "http://dbpedia.org/resource/Ivica_Dukan", "http://dbpedia.org/resource/JD_Davison", "http://dbpedia.org/resource/JT_Thor", "http://dbpedia.org/resource/JaMychal_Green", "http://dbpedia.org/resource/JaVale_McGee", "http://dbpedia.org/resource/Ja_Morant", "http://dbpedia.org/resource/Jabari_Smith_Jr.", "http://dbpedia.org/resource/Jabari_Walker", "http://dbpedia.org/resource/Mitchell_Robinson", "http://dbpedia.org/resource/Monty_Williams", "http://dbpedia.org/resource/Mont\u00e9_Morris", "http://dbpedia.org/resource/Moritz_Wagner_(basketball)", "http://dbpedia.org/resource/Moses_Brown_(basketball)", "http://dbpedia.org/resource/Moses_Moody", "http://dbpedia.org/resource/Moussa_Diabat\u00e9", "http://dbpedia.org/resource/Myles_Turner", "http://dbpedia.org/resource/Naji_Marshall", "http://dbpedia.org/resource/Nassir_Little", "http://dbpedia.org/resource/Nate_Hinton", "http://dbpedia.org/resource/Nate_McMillan", "http://dbpedia.org/resource/Nate_Reinking", "http://dbpedia.org/resource/Nathan_Knight", "http://dbpedia.org/resource/Tony_Brown_(basketball)", "http://dbpedia.org/resource/Trae_Young", "http://dbpedia.org/resource/Trajan_Langdon", "http://dbpedia.org/resource/Travis_Bader", "http://dbpedia.org/resource/Tre_Mann", "http://dbpedia.org/resource/Trendon_Watford", "http://dbpedia.org/resource/Trent_Forrest", "http://dbpedia.org/resource/Trevelin_Queen", "http://dbpedia.org/resource/Trevor_Keels", "http://dbpedia.org/resource/Trey_Burke", "http://dbpedia.org/resource/Trey_Murphy_III", "http://dbpedia.org/resource/Troy_Weaver", "http://dbpedia.org/resource/TyTy_Washington", "http://dbpedia.org/resource/Tyler_Cook", "http://dbpedia.org/resource/Tyler_Dorsey", "http://dbpedia.org/resource/Tyrese_Haliburton", "http://dbpedia.org/resource/Tyrese_Martin", "http://dbpedia.org/resource/Tyrese_Maxey", "http://dbpedia.org/resource/John_Gabriel_(basketball)", "http://dbpedia.org/resource/John_Abbamondi", "http://dbpedia.org/resource/Aaron_Brooks_(basketball)", "http://dbpedia.org/resource/Aaron_Gordon", "http://dbpedia.org/resource/Aaron_Gray", "http://dbpedia.org/resource/Aaron_Holiday", "http://dbpedia.org/resource/Aaron_Miles_(basketball)", "http://dbpedia.org/resource/Aaron_Nesmith", "http://dbpedia.org/resource/Aaron_Wiggins", "http://dbpedia.org/resource/Adam_Caporn", "http://dbpedia.org/resource/Admiral_Schofield", "http://dbpedia.org/resource/Adrian_Griffin", "http://dbpedia.org/resource/CJ_McCollum", "http://dbpedia.org/resource/Cade_Cunningham", "http://dbpedia.org/resource/Caleb_Houstan", "http://dbpedia.org/resource/Caleb_Martin_(basketball)", "http://dbpedia.org/resource/Cam_Reddish", "http://dbpedia.org/resource/Cameron_Johnson", "http://dbpedia.org/resource/Cedi_Osman", "http://dbpedia.org/resource/Chad_Forcier", "http://dbpedia.org/resource/Chandler_Hutchison", "http://dbpedia.org/resource/Charles_Bassey", "http://dbpedia.org/resource/Charles_Lee_(basketball)", "http://dbpedia.org/resource/Charlie_Brown_Jr._(basketball)", "http://dbpedia.org/resource/Chauncey_Billups", "http://dbpedia.org/resource/Chaundee_Brown", "http://dbpedia.org/resource/Chet_Holmgren", "http://dbpedia.org/resource/Chimezie_Metu", "http://dbpedia.org/resource/Chip_Engelland", "http://dbpedia.org/resource/Chris_Boucher_(basketball)", "http://dbpedia.org/resource/Chris_Chiozza", "http://dbpedia.org/resource/Chris_Duarte_(basketball)", "http://dbpedia.org/resource/Chris_Fleming_(basketball)", "http://dbpedia.org/resource/Chris_Paul", "http://dbpedia.org/resource/Chris_Quinn", "http://dbpedia.org/resource/Christian_Braun_(basketball)", "http://dbpedia.org/resource/Christian_Koloko", "http://dbpedia.org/resource/Christian_Wood", "http://dbpedia.org/resource/Chuma_Okeke", "http://dbpedia.org/resource/Steve_Clifford", "http://dbpedia.org/resource/Steve_Kerr", "http://dbpedia.org/resource/Steve_Koonin", "http://dbpedia.org/resource/Steve_Nash", "http://dbpedia.org/resource/Steven_Adams", "http://dbpedia.org/resource/Sviatoslav_Mykhailiuk", "http://dbpedia.org/resource/Fred_Whitfield_(executive)", "http://dbpedia.org/resource/Caris_LeVert", "http://dbpedia.org/resource/Casey_Hill", "http://dbpedia.org/resource/LaMelo_Ball", "http://dbpedia.org/resource/Lamar_Stevens", "http://dbpedia.org/resource/Landry_Shamet", "http://dbpedia.org/resource/Larry_Drew", "http://dbpedia.org/resource/Larry_Nance_Jr.", "http://dbpedia.org/resource/Lauri_Markkanen", "http://dbpedia.org/resource/Lawrence_Frank", "http://dbpedia.org/resource/LeBron_James", "http://dbpedia.org/resource/Leandro_Bolmaro", "http://dbpedia.org/resource/Gary_Wortman", "http://dbpedia.org/resource/Doc_Rivers", "http://dbpedia.org/resource/Domantas_Sabonis", "http://dbpedia.org/resource/Dominick_Barlow", "http://dbpedia.org/resource/Dominique_Wilkins", "http://dbpedia.org/resource/Don_Casey", "http://dbpedia.org/resource/Donnie_Walsh", "http://dbpedia.org/resource/Donovan_Mitchell", "http://dbpedia.org/resource/Donte_DiVincenzo", "http://dbpedia.org/resource/Dorian_Finney-Smith", "http://dbpedia.org/resource/Doug_Christie", "http://dbpedia.org/resource/Draymond_Green", "http://dbpedia.org/resource/Drew_Eubanks", "http://dbpedia.org/resource/Duane_Ticknor", "http://dbpedia.org/resource/Duane_Washington_Jr.", "http://dbpedia.org/resource/Duncan_Robinson_(basketball)", "http://dbpedia.org/resource/Dwane_Casey", "http://dbpedia.org/resource/Dwayne_Jones_(basketball)", "http://dbpedia.org/resource/Dwight_Powell", "http://dbpedia.org/resource/Dylan_Windler", "http://dbpedia.org/resource/Dyson_Daniels", "http://dbpedia.org/resource/D\u0101vis_Bert\u0101ns", "http://dbpedia.org/resource/E._J._Liddell", "http://dbpedia.org/resource/Simone_Fontecchio", "http://dbpedia.org/resource/Skylar_Mays", "http://dbpedia.org/resource/Sonia_Raman", "http://dbpedia.org/resource/Corey_Brewer", "http://dbpedia.org/resource/Cory_Joseph", "http://dbpedia.org/resource/Cynt_Marshall", "http://dbpedia.org/resource/D'Angelo_Russell", "http://dbpedia.org/resource/D._J._Wilson", "http://dbpedia.org/resource/Daishen_Nix", "http://dbpedia.org/resource/Dalano_Banton", "http://dbpedia.org/resource/Dalen_Terry", "http://dbpedia.org/resource/Grant_Golden_(basketball)", "http://dbpedia.org/resource/Grant_Hill", "http://dbpedia.org/resource/Grant_Williams_(basketball)", "http://dbpedia.org/resource/Grayson_Allen", "http://dbpedia.org/resource/Greg_Brown_(basketball,_born_2001)", "http://dbpedia.org/resource/Greg_Buckner", "http://dbpedia.org/resource/Gregg_Popovich", "http://dbpedia.org/resource/Gui_Santos", "http://dbpedia.org/resource/Haywood_Highsmith", "http://dbpedia.org/resource/Herbert_Jones_(basketball)", "http://dbpedia.org/resource/Mahmoud_Abdelfattah", "http://dbpedia.org/resource/Malachi_Flynn", "http://dbpedia.org/resource/Malaki_Branham", "http://dbpedia.org/resource/Malcolm_Hill_(basketball)", "http://dbpedia.org/resource/Malik_Allen", "http://dbpedia.org/resource/Malik_Beasley", "http://dbpedia.org/resource/Malik_Fitts", "http://dbpedia.org/resource/Malik_Monk", "http://dbpedia.org/resource/Manu_Gin\u00f3bili", "http://dbpedia.org/resource/Rich_Cho", "http://dbpedia.org/resource/Rich_Gotham", "http://dbpedia.org/resource/Rick_Welts", "http://dbpedia.org/resource/Ricky_Rubio", "http://dbpedia.org/resource/Robert_Covington", "http://dbpedia.org/resource/Robert_Williams_III", "http://dbpedia.org/resource/Robin_Lopez", "http://dbpedia.org/resource/Rodney_Billups", "http://dbpedia.org/resource/Rodney_Hood", "http://dbpedia.org/resource/Feron_Hunt", "http://dbpedia.org/resource/Jeff_Green_(basketball)", "http://dbpedia.org/resource/Jeff_Teague", "http://dbpedia.org/resource/Jerami_Grant", "http://dbpedia.org/resource/Jeremiah_Robinson-Earl", "http://dbpedia.org/resource/Jeremy_Lamb", "http://dbpedia.org/resource/Jeremy_Sochan", "http://dbpedia.org/resource/Jericho_Sims", "http://dbpedia.org/resource/Jerome_Allen_(basketball)", "http://dbpedia.org/resource/Jerry_West", "http://dbpedia.org/resource/Jesse_Mermuys", "http://dbpedia.org/resource/Jevon_Carter", "http://dbpedia.org/resource/Jimmy_Butler", "http://dbpedia.org/resource/Joakim_Noah", "http://dbpedia.org/resource/Jock_Landale", "http://dbpedia.org/resource/Joe_Harris_(basketball)", "http://dbpedia.org/resource/Joe_Ingles", "http://dbpedia.org/resource/Joe_Lacob", "http://dbpedia.org/resource/Joe_Mazzulla", "http://dbpedia.org/resource/Joe_Prunty", "http://dbpedia.org/resource/Joe_Wieskamp", "http://dbpedia.org/resource/John_Beilein", "http://dbpedia.org/resource/John_Butler_(basketball)", "http://dbpedia.org/resource/John_Collins_(basketball)", "http://dbpedia.org/resource/Len_Komoroski", "http://dbpedia.org/resource/Leon_Rose", "http://dbpedia.org/resource/Lester_Qui\u00f1ones", "http://dbpedia.org/resource/Lindell_Wigginton", "http://dbpedia.org/resource/Lindy_Waters_III", "http://dbpedia.org/resource/Lionel_Chalmers", "http://dbpedia.org/resource/Lionel_Hollins", "http://dbpedia.org/resource/Neemias_Queta", "http://dbpedia.org/resource/Nerlens_Noel", "http://dbpedia.org/resource/Nic_Claxton", "http://dbpedia.org/resource/Nick_Collison", "http://dbpedia.org/resource/Nick_Nurse", "http://dbpedia.org/resource/Nickeil_Alexander-Walker", "http://dbpedia.org/resource/Nico_Harrison", "http://dbpedia.org/resource/Nik_Stauskas", "http://dbpedia.org/resource/Payton_Pritchard", "http://dbpedia.org/resource/Peyton_Watson", "http://dbpedia.org/resource/Phil_Handy", "http://dbpedia.org/resource/Quin_Snyder", "http://dbpedia.org/resource/Quinndary_Weatherspoon", "http://dbpedia.org/resource/R._J._Hampton", "http://dbpedia.org/resource/RJ_Barrett", "http://dbpedia.org/resource/RJ_Nembhard", "http://dbpedia.org/resource/Theo_Pinson", "http://dbpedia.org/resource/Thomas_Bryant_(basketball)", "http://dbpedia.org/resource/Th\u00e9o_Maledon", "http://dbpedia.org/resource/Tiago_Splitter", "http://dbpedia.org/resource/Tim_Hardaway_Jr.", "http://dbpedia.org/resource/Timoth\u00e9_Luwawu-Cabarrot", "http://dbpedia.org/resource/Tobias_Harris", "http://dbpedia.org/resource/Tom_Sterner", "http://dbpedia.org/resource/Tom_Thibodeau", "http://dbpedia.org/resource/Tommy_Sheppard_(basketball)", "http://dbpedia.org/resource/Willie_Green", "http://dbpedia.org/resource/Willy_Hernang\u00f3mez", "http://dbpedia.org/resource/Xavier_Moon", "http://dbpedia.org/resource/Xavier_Sneed", "http://dbpedia.org/resource/Xavier_Tillman", "http://dbpedia.org/resource/Earl_Barron", "http://dbpedia.org/resource/Edmond_Sumner", "http://dbpedia.org/resource/Edniesha_Curry", "http://dbpedia.org/resource/Eduardo_N\u00e1jera", "http://dbpedia.org/resource/Andrea_Williams_(sports_executive)", "http://dbpedia.org/resource/Julian_Champagnie", "http://dbpedia.org/resource/Justin_Champagnie", "http://dbpedia.org/resource/Justin_Holiday", "http://dbpedia.org/resource/Justin_Lewis_(basketball)", "http://dbpedia.org/resource/Justise_Winslow", "http://dbpedia.org/resource/Juwan_Morgan", "http://dbpedia.org/resource/KZ_Okpala", "http://dbpedia.org/resource/Kai_Jones", "http://dbpedia.org/resource/Karen_Stack_Umlauf", "http://dbpedia.org/resource/Karl-Anthony_Towns", "http://dbpedia.org/resource/Luca_Vildoza", "http://dbpedia.org/resource/Luguentz_Dort", "http://dbpedia.org/resource/Luka_Don\u010di\u0107", "http://dbpedia.org/resource/Luke_Kennard_(basketball)", "http://dbpedia.org/resource/Luke_Kornet", "http://dbpedia.org/resource/Luke_Walton", "http://dbpedia.org/resource/Ognjen_Stojakovi\u0107", "http://dbpedia.org/resource/Onyeka_Okongwu", "http://dbpedia.org/resource/Orlando_Robinson", "http://dbpedia.org/resource/Oshae_Brissett", "http://dbpedia.org/resource/Otto_Porter_Jr.", "http://dbpedia.org/resource/Ousmane_Dieng", "http://dbpedia.org/resource/Seth_Curry", "http://dbpedia.org/resource/Shaedon_Sharpe", "http://dbpedia.org/resource/Shai_Gilgeous-Alexander", "http://dbpedia.org/resource/Shake_Milton", "http://dbpedia.org/resource/Shane_Battier", "http://dbpedia.org/resource/Shaun_Livingston", "http://dbpedia.org/resource/Sidney_Lowe", "http://dbpedia.org/resource/Spencer_Dinwiddie", "http://dbpedia.org/resource/Stacey_Augmon", "http://dbpedia.org/resource/Stephen_Curry", "http://dbpedia.org/resource/Stephen_Silas", "http://dbpedia.org/resource/Sterling_Brown_(basketball)", "http://dbpedia.org/resource/Rick_Fuson", "http://dbpedia.org/resource/Blake_Ahearn", "http://dbpedia.org/resource/Blake_Wesley_(basketball)", "http://dbpedia.org/resource/Bob_Bender", "http://dbpedia.org/resource/Bob_Love", "http://dbpedia.org/resource/Bob_Weiss", "http://dbpedia.org/resource/Boban_Marjanovi\u0107", "http://dbpedia.org/resource/Bobby_Portis", "http://dbpedia.org/resource/Bojan_Bogdanovi\u0107", "http://dbpedia.org/resource/Bones_Hyland", "http://dbpedia.org/resource/Igor_Koko\u0161kov", "http://dbpedia.org/resource/Ime_Udoka", "http://dbpedia.org/resource/Immanuel_Quickley", "http://dbpedia.org/resource/Kira_Lewis_Jr.", "http://dbpedia.org/resource/Koby_Altman", "http://dbpedia.org/resource/Kofi_Cockburn", "http://dbpedia.org/resource/Kris_Dunn", "http://dbpedia.org/resource/Kristaps_Porzi\u0146\u0123is", "http://dbpedia.org/resource/Kyle_Anderson_(basketball)", "http://dbpedia.org/resource/Kyle_Korver", "http://dbpedia.org/resource/Kyle_Kuzma", "http://dbpedia.org/resource/Kyle_Lowry", "http://dbpedia.org/resource/Kyler_Edwards", "http://dbpedia.org/resource/Kyrie_Irving", "http://dbpedia.org/resource/Mfiondu_Kabengele", "http://dbpedia.org/resource/Michael_Batiste", "http://dbpedia.org/resource/Michael_Devoe", "http://dbpedia.org/resource/Michael_Foster_(basketball)", "http://dbpedia.org/resource/Michael_Jordan", "http://dbpedia.org/resource/Michael_Lee_(basketball,_born_1983)", "http://dbpedia.org/resource/Michael_Malone_(basketball)", "http://dbpedia.org/resource/Michael_Porter_Jr.", "http://dbpedia.org/resource/Mikal_Bridges", "http://dbpedia.org/resource/Mike_Brown_(basketball,_born_1970)", "http://dbpedia.org/resource/Mike_Conley_Jr.", "http://dbpedia.org/resource/Mike_D'Antoni", "http://dbpedia.org/resource/Mike_Dunlap", "http://dbpedia.org/resource/Mike_Dunleavy_Jr.", "http://dbpedia.org/resource/Mike_Longabardi", "http://dbpedia.org/resource/Mike_Miller_(basketball,_born_1964)", "http://dbpedia.org/resource/Mike_Muscala", "http://dbpedia.org/resource/Mike_Terpstra", "http://dbpedia.org/resource/Mike_Wilhelm_(basketball)", "http://dbpedia.org/resource/Miles_McBride", "http://dbpedia.org/resource/Milt_Palacio", "http://dbpedia.org/resource/P._J._Tucker", "http://dbpedia.org/resource/P._J._Washington", "http://dbpedia.org/resource/Pablo_Prigioni", "http://dbpedia.org/resource/Pascal_Siakam", "http://dbpedia.org/resource/Pat_Connaughton", "http://dbpedia.org/resource/Pat_Riley", "http://dbpedia.org/resource/Pat_Spencer_(basketball)", "http://dbpedia.org/resource/Patrick_Baldwin_Jr.", "http://dbpedia.org/resource/Patrick_Williams_(basketball)", "http://dbpedia.org/resource/Patty_Mills", "http://dbpedia.org/resource/Paul_George", "http://dbpedia.org/resource/Paul_Millsap", "http://dbpedia.org/resource/Paul_Reed_(basketball)", "http://dbpedia.org/resource/Romeo_Langford", "http://dbpedia.org/resource/Ron_Adams", "http://dbpedia.org/resource/Ron_Harper_Jr.", "http://dbpedia.org/resource/Roy_Rogers_(basketball)", "http://dbpedia.org/resource/Royal_Ivey", "http://dbpedia.org/resource/Royce_O'Neale", "http://dbpedia.org/resource/Rudy_Gobert", "http://dbpedia.org/resource/Rudy_Tomjanovich", "http://dbpedia.org/resource/Rui_Hachimura", "http://dbpedia.org/resource/Russell_Westbrook", "http://dbpedia.org/resource/Ryan_Arcidiacono", "http://dbpedia.org/resource/Ryan_Bowen", "http://dbpedia.org/resource/Ryan_Forehan-Kelly", "http://dbpedia.org/resource/Ryan_McDonough_(NBA_executive)", "http://dbpedia.org/resource/Ryan_Rollins", "http://dbpedia.org/resource/\u017darko_\u0110uri\u0161i\u0107", "http://dbpedia.org/resource/Zach_Collins", "http://dbpedia.org/resource/Zach_Kleiman", "http://dbpedia.org/resource/Zavier_Simpson", "http://dbpedia.org/resource/Zeke_Nnaji", "http://dbpedia.org/resource/Ziaire_Williams", "http://dbpedia.org/resource/Zion_Williamson", "http://dbpedia.org/resource/\u00d6mer_Yurtseven", "http://dbpedia.org/resource/Thad_Sheely", "http://dbpedia.org/resource/Tim_Connelly", "http://dbpedia.org/resource/Travis_Schlenk"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/restingPlace> <http://dbpedia.org/resource/London> . ?x <http://dbpedia.org/ontology/opponent> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/HistoricPlace>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Captain_EO> <http://dbpedia.org/ontology/producer> ?uri } "}, "answers": ["http://dbpedia.org/resource/George_Lucas", "http://dbpedia.org/resource/Rusty_Lemorande"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/mother> <http://dbpedia.org/resource/Maria_Ludwika_Krasi\u0144ska> . ?x <http://dbpedia.org/property/deathPlace> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/parent> <http://dbpedia.org/resource/Alcal\u00e1_de_Henares_Cathedral> . ?x <http://dbpedia.org/property/author> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Paphos_International_Airport> <http://dbpedia.org/property/owner> ?uri } "}, "answers": ["http://dbpedia.org/resource/Republic_of_Cyprus"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/occupation> <http://dbpedia.org/resource/Screenwriter> . ?x <http://dbpedia.org/ontology/award> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Writers_Guild_of_America_Awards", "http://dbpedia.org/resource/Gladiator_(2000_film)", "http://dbpedia.org/resource/BAFTA_Award_for_Best_Film", "http://dbpedia.org/resource/Academy_Award_for_Best_Picture", "http://dbpedia.org/resource/Saturn_Award_for_Best_Writing", "http://dbpedia.org/resource/Hugo_Award_for_Best_Dramatic_Presentation", "http://dbpedia.org/resource/Festival_international_du_film_fantastique_de_G\u00e9rardmer", "http://dbpedia.org/resource/Pulitzer_Prize_for_Drama", "http://dbpedia.org/resource/Recife_Cinema_Festival", "http://dbpedia.org/resource/Academy_Awards", "http://dbpedia.org/resource/Grande_Pr\u00eamio_do_Cinema_Brasileiro", "http://dbpedia.org/resource/BAFTA_Award_for_Best_British_Screenplay", "http://dbpedia.org/resource/The_Day_the_Earth_Caught_Fire", "http://dbpedia.org/resource/Lovers_(1991_film)", "http://dbpedia.org/resource/Buxtehude_Bull", "http://dbpedia.org/resource/Boston_International_Film_Festival", "http://dbpedia.org/resource/Dragons_and_Tigers_Award", "http://dbpedia.org/resource/Vancouver_International_Film_Festival", "http://dbpedia.org/resource/Trap_Street_(film)", "http://dbpedia.org/resource/Medal_%22For_Battle_Merit%22", "http://dbpedia.org/resource/Order_of_the_Red_Star", "http://dbpedia.org/resource/Beijing_Bicycle", "http://dbpedia.org/resource/Berlin_International_Film_Festival", "http://dbpedia.org/resource/The_Days_(1993_film)", "http://dbpedia.org/resource/Thessaloniki_International_Film_Festival", "http://dbpedia.org/resource/Shanghai_Dreams", "http://dbpedia.org/resource/In_Love_We_Trust", "http://dbpedia.org/resource/Jury_Prize_(Cannes_Film_Festival)", "http://dbpedia.org/resource/C\u00e9sar_Award_for_Best_Writing", "http://dbpedia.org/resource/The_Barbarian_Invasions", "http://dbpedia.org/resource/Canadian_Screen_Award_for_Best_Director", "http://dbpedia.org/resource/Canadian_Screen_Award_for_Best_Screenplay", "http://dbpedia.org/resource/The_Decline_of_the_American_Empire", "http://dbpedia.org/resource/C\u00e9sar_Award_for_Best_Director", "http://dbpedia.org/resource/C\u00e9sar_Award_for_Best_Film", "http://dbpedia.org/resource/Jesus_of_Montreal", "http://dbpedia.org/resource/Alfred_Fagon_Award", "http://dbpedia.org/resource/National_Endowment_for_the_Arts", "http://dbpedia.org/resource/Doctor_of_Letters", "http://dbpedia.org/resource/University_of_Leicester", "http://dbpedia.org/resource/Guardian_Children's_Fiction_Prize", "http://dbpedia.org/resource/Scottish_Arts_Council", "http://dbpedia.org/resource/Saturn_Awards", "http://dbpedia.org/resource/Honorary_Golden_Bear", "http://dbpedia.org/resource/Golden_Lion", "http://dbpedia.org/resource/Palme_d'Or", "http://dbpedia.org/resource/National_Order_of_Quebec", "http://dbpedia.org/resource/Order_of_Canada", "http://dbpedia.org/resource/Governor_General's_Awards", "http://dbpedia.org/resource/USSR_State_Prize", "http://dbpedia.org/resource/Baeksang_Arts_Awards", "http://dbpedia.org/resource/Nigar_Awards", "http://dbpedia.org/resource/Kerala_State_Film_Award_for_Best_Article_on_Cinema", "http://dbpedia.org/resource/National_Film_Award_for_Best_Direction", "http://dbpedia.org/resource/Tony_Awards", "http://dbpedia.org/resource/Drama_Desk_Award", "http://dbpedia.org/resource/National_Film_Award_for_Best_Screenplay", "http://dbpedia.org/resource/Kerala_State_Film_Award_for_Best_Screenplay", "http://dbpedia.org/resource/Grand_prix_des_lectrices_de_Elle", "http://dbpedia.org/resource/Se_le_movi\u00f3_el_piso:_A_portrait_of_Managua", "http://dbpedia.org/resource/My_Neighbor,_My_Killer", "http://dbpedia.org/resource/National_Film_Awards_(Bangladesh)", "http://dbpedia.org/resource/Gullruten", "http://dbpedia.org/resource/Carl_von_Ossietzky", "http://dbpedia.org/resource/Kosmorama", "http://dbpedia.org/resource/Nesta_(charity)", "http://dbpedia.org/resource/Order_of_Honour_(Russia)", "http://dbpedia.org/resource/Order_of_Friendship", "http://dbpedia.org/resource/Laurence_Olivier_Awards", "http://dbpedia.org/resource/Padma_Shri", "http://dbpedia.org/resource/Blue_Dragon_Film_Awards", "http://dbpedia.org/resource/Filmfare_Award_for_Best_Dialogue", "http://dbpedia.org/resource/Sahitya_Akademi_Award", "http://dbpedia.org/resource/Karnataka_State_Film_Awards", "http://dbpedia.org/resource/Daytime_Emmy_Awards", "http://dbpedia.org/resource/Frankenstein_(2015_film)", "http://dbpedia.org/resource/Brussels_International_Fantastic_Film_Festival", "http://dbpedia.org/resource/Fantasporto", "http://dbpedia.org/resource/Paperhouse_(film)", "http://dbpedia.org/resource/Oldenburg_International_Film_Festival", "http://dbpedia.org/resource/Pillow_Talk_(film)", "http://dbpedia.org/resource/Academy_Award_for_Best_Original_Screenplay", "http://dbpedia.org/resource/The_Go-Between_(1971_film)", "http://dbpedia.org/resource/Monsieur_Klein", "http://dbpedia.org/resource/Accident_(1967_film)", "http://dbpedia.org/resource/C\u00e9sar_Awards", "http://dbpedia.org/resource/Legion_of_Honour", "http://dbpedia.org/resource/Ordre_national_du_M\u00e9rite", "http://dbpedia.org/resource/Obie_Award", "http://dbpedia.org/resource/Goya_Awards", "http://dbpedia.org/resource/Silver_Lion", "http://dbpedia.org/resource/Zee_Kannada", "http://dbpedia.org/resource/Sangeet_Natak_Akademi_Award", "http://dbpedia.org/resource/Antonovych_prize", "http://dbpedia.org/resource/Shevchenko_National_Prize", "http://dbpedia.org/resource/Order_of_Prince_Yaroslav_the_Wise", "http://dbpedia.org/resource/Order_of_the_Red_Banner_of_Labour", "http://dbpedia.org/resource/Hero_of_Ukraine", "http://dbpedia.org/resource/Coming_Home_(1978_film)", "http://dbpedia.org/resource/St._Louis_Literary_Award", "http://dbpedia.org/resource/Primetime_Emmy_Award_for_Outstanding_Writing_for_a_Limited_or_Anthology_Series_or_Movie", "http://dbpedia.org/resource/Tony_Award_for_Best_Play", "http://dbpedia.org/resource/The_River_(1997_film)", "http://dbpedia.org/resource/Silver_Bear_Grand_Jury_Prize", "http://dbpedia.org/resource/Dadasaheb_Phalke_Award", "http://dbpedia.org/resource/Padma_Vibhushan", "http://dbpedia.org/resource/Kossuth_Prize", "http://dbpedia.org/resource/Esquire_(magazine)", "http://dbpedia.org/resource/O._Henry_Award", "http://dbpedia.org/resource/Cannes_Film_Festival", "http://dbpedia.org/resource/Nandi_Awards", "http://dbpedia.org/resource/Filmfare_Award_for_Best_Story", "http://dbpedia.org/resource/Inkpot_Award", "http://dbpedia.org/resource/Di_Balik_Kelambu", "http://dbpedia.org/resource/Bachsas_Awards", "http://dbpedia.org/resource/Grand_prix_litt\u00e9raire_d'Afrique_noire", "http://dbpedia.org/resource/4_Months,_3_Weeks_and_2_Days", "http://dbpedia.org/resource/Katrin_Cartlidge_Foundation", "http://dbpedia.org/resource/British_Academy_of_Film_and_Television_Arts", "http://dbpedia.org/resource/Lenin_Prize", "http://dbpedia.org/resource/Directors_Guild_of_America", "http://dbpedia.org/resource/BAFTA_Award_for_Best_Adapted_Screenplay", "http://dbpedia.org/resource/Jean_de_Florette", "http://dbpedia.org/resource/Writers_Guild_of_America", "http://dbpedia.org/resource/Glenn_Gould_Prize", "http://dbpedia.org/resource/Festival_du_Film_Policier_de_Cognac", "http://dbpedia.org/resource/Gemini_Awards", "http://dbpedia.org/resource/Cin\u00e9fest_Sudbury_International_Film_Festival", "http://dbpedia.org/resource/Balthus_Through_the_Looking_Glass", "http://dbpedia.org/resource/Banff_World_Media_Festival", "http://dbpedia.org/resource/Fellini:_I'm_a_Born_Liar", "http://dbpedia.org/resource/Medal_of_Merit_(Czech_Republic)", "http://dbpedia.org/resource/Australian_Film_Institute_Award_for_Best_Screenplay", "http://dbpedia.org/resource/Muriel's_Wedding", "http://dbpedia.org/resource/AACTA_Award_for_Best_Direction", "http://dbpedia.org/resource/AACTA_Award_for_Best_Film", "http://dbpedia.org/resource/Proof_(1991_film)", "http://dbpedia.org/resource/Bratislava_International_Film_Festival", "http://dbpedia.org/resource/Hong_Kong_International_Film_Festival", "http://dbpedia.org/resource/Deauville_Asian_Film_Festival", "http://dbpedia.org/resource/Venice_Film_Festival", "http://dbpedia.org/resource/MTV_Movie_Award_for_Best_New_Filmmaker", "http://dbpedia.org/resource/Amanda_Award", "http://dbpedia.org/resource/AWGIE_Awards", "http://dbpedia.org/resource/National_Board_of_Review", "http://dbpedia.org/resource/All_in_the_Family", "http://dbpedia.org/resource/Asia-Pacific_Film_Festival", "http://dbpedia.org/resource/Evening_Bell_(film)", "http://dbpedia.org/resource/Myanmar_Motion_Picture_Academy_Awards", "http://dbpedia.org/resource/Une_grenade_avec_\u00e7a%3F", "http://dbpedia.org/resource/Fan_Club_(TV_series)", "http://dbpedia.org/resource/Prix_G\u00e9meaux", "http://dbpedia.org/resource/National_Artist_of_the_Philippines", "http://dbpedia.org/resource/National_Film_Award_for_Best_Cinematography", "http://dbpedia.org/resource/Network_for_the_Promotion_of_Asian_Cinema", "http://dbpedia.org/resource/Shanghai_International_Film_Festival", "http://dbpedia.org/resource/National_Film_Award_\u2013_Special_Mention_(feature_film)", "http://dbpedia.org/resource/ANR_National_Award", "http://dbpedia.org/resource/1976_Cannes_Film_Festival", "http://dbpedia.org/resource/Padma_Bhushan", "http://dbpedia.org/resource/Bronze_Wrangler", "http://dbpedia.org/resource/BAFTA_Award_for_Outstanding_British_Film", "http://dbpedia.org/resource/Directors_Guild_of_Canada", "http://dbpedia.org/resource/National_Film_Award_for_Best_Film_on_Other_Social_Issues", "http://dbpedia.org/resource/Order_%22For_Merit_to_the_Fatherland%22", "http://dbpedia.org/resource/Order_of_Australia", "http://dbpedia.org/resource/American_Black_Film_Festival", "http://dbpedia.org/resource/Japan_Academy_Film_Prize_for_Director_of_the_Year", "http://dbpedia.org/resource/House_on_Fire_(film)", "http://dbpedia.org/resource/Crest_of_Betrayal", "http://dbpedia.org/resource/Dotonbori_River", "http://dbpedia.org/resource/International_Federation_of_Film_Critics", "http://dbpedia.org/resource/Emmy_Awards", "http://dbpedia.org/resource/Humanitas_Prize", "http://dbpedia.org/resource/Alliance_for_Women_in_Media", "http://dbpedia.org/resource/Order_of_the_Three_Stars", "http://dbpedia.org/resource/Filmfare_Awards_South", "http://dbpedia.org/resource/Merited_Artist_of_the_Russian_Federation", "http://dbpedia.org/resource/Nika_Award", "http://dbpedia.org/resource/Toronto_International_Film_Festival", "http://dbpedia.org/resource/San_Sebasti\u00e1n_International_Film_Festival", "http://dbpedia.org/resource/Stockholm_International_Film_Festival"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/veneratedIn> <http://dbpedia.org/resource/Joshua> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Saint>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ramiro_Pe\u00f1a> <http://dbpedia.org/ontology/team> ?uri } "}, "answers": ["http://dbpedia.org/resource/Sultanes_de_Monterrey"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/literaryGenre> <http://dbpedia.org/resource/Fantasy> . ?x <http://dbpedia.org/ontology/subject> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Thanong_Bidaya> <http://dbpedia.org/property/primeminister> ?uri } "}, "answers": ["http://dbpedia.org/resource/Thaksin_Shinawatra", "http://dbpedia.org/resource/Chavalit_Yongchaiyudh"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cyril_Hume> <http://dbpedia.org/ontology/school> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Me_&_U_(song)> <http://dbpedia.org/ontology/album> ?x . ?x <http://dbpedia.org/property/artist> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/architectural_Digest> . ?x <http://dbpedia.org/ontology/destination> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Parliament_Security_Services> <http://dbpedia.org/property/houses> ?uri } "}, "answers": ["http://dbpedia.org/resource/Rajya_Sabha", "http://dbpedia.org/resource/Lok_Sabha", ""]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/commander> <http://dbpedia.org/resource/Andrew_Jackson> . ?uri <http://dbpedia.org/property/nationality> ?x . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/kingdom> <http://dbpedia.org/resource/Israel> . ?x <http://dbpedia.org/property/reign> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dornier_Aerodyne> <http://dbpedia.org/ontology/origin> ?x . ?x <http://dbpedia.org/property/country> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/I_Can't_Change_the_World> <http://dbpedia.org/property/album> ?x . ?x <http://dbpedia.org/ontology/artist> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Demis_Roussos> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": ["http://dbpedia.org/resource/The_Taking_of_Flight_847:_The_Uli_Derickson_Story"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/placeOfDeath> <http://dbpedia.org/resource/England> . ?x <http://dbpedia.org/ontology/place> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/beatifiedBy> <http://dbpedia.org/resource/Pope_Pius_X> . ?x <http://dbpedia.org/ontology/placeOfDeath> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/venue> <http://dbpedia.org/resource/San_Diego_Convention_Center> . ?x <http://dbpedia.org/property/venue> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/nationality> <http://dbpedia.org/resource/Filipinos> . }"}, "answers": ["987"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/child> <http://dbpedia.org/resource/William_C._Breckinridge> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/placeOfBirth> <http://dbpedia.org/resource/British_Columbia> . ?x <http://dbpedia.org/ontology/religion> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Heydar> <http://dbpedia.org/ontology/meaning> ?uri } "}, "answers": ["Lion"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/chairman> <http://dbpedia.org/resource/Ronaldo> . ?x <http://dbpedia.org/property/ground> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/team> <http://dbpedia.org/resource/John_Tortorella> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/IceHockeyPlayer>}"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jack_McGregor> <http://dbpedia.org/ontology/study> ?uri . <http://dbpedia.org/resource/Philip_Pillsbury> <http://dbpedia.org/property/studio> ?uri} "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/formerTeam> <http://dbpedia.org/resource/Fleisher_Yarn> . ?x <http://dbpedia.org/property/debutteam> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/locationCountry> <http://dbpedia.org/resource/England> . ?x <http://dbpedia.org/property/building> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/locatedInArea> <http://dbpedia.org/resource/California> . ?x <http://dbpedia.org/property/mountain> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/creators> <http://dbpedia.org/resource/Joe_Shuster> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/ComicsCharacter>}"}, "answers": ["17"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Persona_(1966_film)> <http://dbpedia.org/ontology/writer> ?x . ?x <http://dbpedia.org/property/awards> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Goethe_Prize", "http://dbpedia.org/resource/BAFTA_Fellowship", "http://dbpedia.org/resource/Praemium_Imperiale", "http://dbpedia.org/resource/Academy_Award", ""]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/highschool> <http://dbpedia.org/resource/Robert_Morris_Colonials_football> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/AmericanFootballPlayer>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/training> <http://dbpedia.org/resource/University_of_Queensland> . ?x <http://dbpedia.org/property/awards> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/type> <http://dbpedia.org/resource/Rhaetian_Alps> . ?x <http://dbpedia.org/ontology/country> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/genre> <http://dbpedia.org/resource/Mind_based_games> . ?x <http://dbpedia.org/ontology/boardGame> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/manufacturer> <http://dbpedia.org/resource/Eristoff> . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Citi_Trends> <http://dbpedia.org/ontology/country> ?uri . <http://dbpedia.org/resource/Malik_Al-Hassan_Yakubu> <http://dbpedia.org/property/constituency> ?uri} "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/position> <http://dbpedia.org/resource/Running_back> . ?x <http://dbpedia.org/ontology/formerTeam> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Arizona_Outlaws", "http://dbpedia.org/resource/Arizona_Wranglers", "http://dbpedia.org/resource/Buffalo_Bills", "http://dbpedia.org/resource/Green_Bay_Packers", "http://dbpedia.org/resource/New_England_Patriots", "http://dbpedia.org/resource/Washington_Commanders", "http://dbpedia.org/resource/Philadelphia_/_Baltimore_Stars", "http://dbpedia.org/resource/Jacksonville_Jaguars", "http://dbpedia.org/resource/Cleveland_Browns", "http://dbpedia.org/resource/Baltimore_Ravens", "http://dbpedia.org/resource/New_York_Giants", "http://dbpedia.org/resource/St._Louis_Rams", "http://dbpedia.org/resource/Indianapolis_Colts", "http://dbpedia.org/resource/Philadelphia_Eagles", "http://dbpedia.org/resource/Steagles", "http://dbpedia.org/resource/Dallas_Cowboys", "http://dbpedia.org/resource/Pittsburgh_Steelers", "http://dbpedia.org/resource/Tennessee_Titans", "http://dbpedia.org/resource/Chicago_Bears", "http://dbpedia.org/resource/Ottawa_Redblacks", "http://dbpedia.org/resource/Washington_Commandos", "http://dbpedia.org/resource/San_Francisco_49ers", "http://dbpedia.org/resource/Edmonton_Elks", "http://dbpedia.org/resource/Indiana_Firebirds", "http://dbpedia.org/resource/New_Orleans_Saints", "http://dbpedia.org/resource/Detroit_Lions", "http://dbpedia.org/resource/Seattle_Seahawks", "http://dbpedia.org/resource/Carolina_Panthers", "http://dbpedia.org/resource/Las_Vegas_Raiders", "http://dbpedia.org/resource/Minnesota_Vikings", "http://dbpedia.org/resource/BC_Lions", "http://dbpedia.org/resource/Montreal_Alouettes", "http://dbpedia.org/resource/1982_San_Francisco_49ers_season", "http://dbpedia.org/resource/Atlanta_Falcons", "http://dbpedia.org/resource/Denver_Broncos", "http://dbpedia.org/resource/Houston_Texans", "http://dbpedia.org/resource/Hartford_Colonials", "http://dbpedia.org/resource/Sacramento_Mountain_Lions", "http://dbpedia.org/resource/Calgary_Stampeders", "http://dbpedia.org/resource/FXFL_Blacktips", "http://dbpedia.org/resource/Tampa_Bay_Buccaneers", "http://dbpedia.org/resource/Arizona_Cardinals", "http://dbpedia.org/resource/Omaha_Nighthawks", "http://dbpedia.org/resource/San_Diego_Chargers", "http://dbpedia.org/resource/Houston_Roughnecks", "http://dbpedia.org/resource/Los_Angeles_Chargers", "http://dbpedia.org/resource/Houston_Gamblers_(2022)", "http://dbpedia.org/resource/Oakland_Raiders", "http://dbpedia.org/resource/Cincinnati_Bengals", "http://dbpedia.org/resource/New_York_Jets", "http://dbpedia.org/resource/Kansas_City_Chiefs", "http://dbpedia.org/resource/New_Mexico_Stars", "http://dbpedia.org/resource/Hamilton_Tiger-Cats", "http://dbpedia.org/resource/New_Jersey_Generals_(2022)", "http://dbpedia.org/resource/New_York_Guardians", "http://dbpedia.org/resource/Dallas_Renegades", "http://dbpedia.org/resource/The_Spring_League", "http://dbpedia.org/resource/Philadelphia_Stars_(2022)", "http://dbpedia.org/resource/XFL_(2020)", "http://dbpedia.org/resource/Los_Angeles_Rams", "http://dbpedia.org/resource/Toronto_Argonauts", "http://dbpedia.org/resource/Orlando_Thunder", "http://dbpedia.org/resource/San_Antonio_Commanders", "http://dbpedia.org/resource/New_York_Brickley_Giants", "http://dbpedia.org/resource/Los_Angeles_Raiders", "http://dbpedia.org/resource/Saskatchewan_Roughriders", "http://dbpedia.org/resource/Winnipeg_Blue_Bombers", "http://dbpedia.org/resource/Miami_Dolphins", "http://dbpedia.org/resource/Pittsburgh_Maulers_(2022)", "http://dbpedia.org/resource/Orlando_Apollos", "http://dbpedia.org/resource/Orlando_XFL_team", "http://dbpedia.org/resource/Michigan_Panthers_(2022)", "http://dbpedia.org/resource/Frankfurt_Galaxy_(NFL_Europe)", "http://dbpedia.org/resource/Las_Vegas_Locomotives", "http://dbpedia.org/resource/San_Francisco_Demons", "http://dbpedia.org/resource/Scottish_Claymores", "http://dbpedia.org/resource/Houston_Oilers", "http://dbpedia.org/resource/Ottawa_Rough_Riders", "http://dbpedia.org/resource/Shreveport_Steamer", "http://dbpedia.org/resource/Shreveport_Pirates", "http://dbpedia.org/resource/Detroit_Wheels", "http://dbpedia.org/resource/Arizona_Hotshots", "http://dbpedia.org/resource/Tri-Cities_Fever", "http://dbpedia.org/resource/Brooklyn_Bolts", "http://dbpedia.org/resource/St._Louis_Ramblers", "http://dbpedia.org/resource/St._Louis_Gunners", "http://dbpedia.org/resource/Your_Call_Football", "http://dbpedia.org/resource/Dayton_Triangles", "http://dbpedia.org/resource/Miami_Seahawks", "http://dbpedia.org/resource/Brooklyn_Dodgers_(NFL)", "http://dbpedia.org/resource/Chicago_Cardinals", "http://dbpedia.org/resource/Arizona_Rattlers", "http://dbpedia.org/resource/New_York/New_Jersey_Hitmen", "http://dbpedia.org/resource/Atlanta_Legends", "http://dbpedia.org/resource/Philadelphia_Bell", "http://dbpedia.org/resource/Oakland_Invaders", "http://dbpedia.org/resource/Michigan_Panthers", "http://dbpedia.org/resource/Virginia_Destroyers", "http://dbpedia.org/resource/Jacksonville_Express", "http://dbpedia.org/resource/Jacksonville_Sharks", "http://dbpedia.org/resource/Orlando_Renegades", "http://dbpedia.org/resource/Memphis_Maniax", "http://dbpedia.org/resource/Panasonic_Impulse", "http://dbpedia.org/resource/Baltimore_Colts", "http://dbpedia.org/resource/Frankford_Yellow_Jackets", "http://dbpedia.org/resource/Cleveland_Bulldogs", "http://dbpedia.org/resource/Canton_Bulldogs", "http://dbpedia.org/resource/Erie_Vets", "http://dbpedia.org/resource/Denver_Dynamite_(arena_football)", "http://dbpedia.org/resource/Charlotte_Rage", "http://dbpedia.org/resource/New_England_Steamrollers", "http://dbpedia.org/resource/Buffalo_Bills_(AAFC)", "http://dbpedia.org/resource/Chicago_Rockets", "http://dbpedia.org/resource/Rhein_Fire_(NFL_Europe)", "http://dbpedia.org/resource/Sioux_City_Bandits", "http://dbpedia.org/resource/Memphis_Showboats", "http://dbpedia.org/resource/Marion_Blue_Racers", "http://dbpedia.org/resource/Portsmouth_Spartans", "http://dbpedia.org/resource/Cincinnati_Reds_(NFL)", "http://dbpedia.org/resource/1956_Detroit_Lions_season", "http://dbpedia.org/resource/Tampa_Bay_Bandits", "http://dbpedia.org/resource/Akron_Pros", "http://dbpedia.org/resource/Boston_Shamrocks_(AFL)", "http://dbpedia.org/resource/Los_Angeles_Dons", "http://dbpedia.org/resource/Denver_Gold", "http://dbpedia.org/resource/Los_Angeles_Xtreme", "http://dbpedia.org/resource/Spring_Football_League", "http://dbpedia.org/resource/Houston_Gamblers", "http://dbpedia.org/resource/New_Orleans_Breakers_(2022)", "http://dbpedia.org/resource/Boston_Yanks", "http://dbpedia.org/resource/Los_Angeles_Bulldogs", "http://dbpedia.org/resource/Philadelphia_Soul", "http://dbpedia.org/resource/Los_Angeles_Avengers", "http://dbpedia.org/resource/Los_Angeles_Express_(USFL)", "http://dbpedia.org/resource/Portland_Breakers", "http://dbpedia.org/resource/Boston_Breakers", "http://dbpedia.org/resource/Memphis_Express", "http://dbpedia.org/resource/All_American_Football_League", "http://dbpedia.org/resource/Cologne_Centurions_(NFL_Europe)", "http://dbpedia.org/resource/Berlin_Thunder_(NFL_Europe)", "http://dbpedia.org/resource/Cleveland_Thunderbolts", "http://dbpedia.org/resource/New_York/New_Jersey_Knights", "http://dbpedia.org/resource/Staten_Island_Stapletons", "http://dbpedia.org/resource/St._P\u00f6lten_Invaders", "http://dbpedia.org/resource/Seattle_Dragons", "http://dbpedia.org/resource/Massachusetts_Marauders", "http://dbpedia.org/resource/Kentucky_Drillers", "http://dbpedia.org/resource/New_Orleans_VooDoo", "http://dbpedia.org/resource/History_of_the_Washington_Commanders", "http://dbpedia.org/resource/San_Antonio_Wings", "http://dbpedia.org/resource/Chicago_Fire_(WFL)", "http://dbpedia.org/resource/Chicago_Winds", "http://dbpedia.org/resource/Pittsburgh_Power", "http://dbpedia.org/resource/Cleveland_Gladiators", "http://dbpedia.org/resource/Shreveport_Knights", "http://dbpedia.org/resource/Colorado_Crush", "http://dbpedia.org/resource/Carolina_Cobras", "http://dbpedia.org/resource/Carolina_Speed", "http://dbpedia.org/resource/St._Louis_Cardinals_(NFL)", "http://dbpedia.org/resource/San_Diego_Fleet", "http://dbpedia.org/resource/Jacksonville_Tomcats", "http://dbpedia.org/resource/Salt_Lake_Stallions", "http://dbpedia.org/resource/History_of_the_Indianapolis_Colts", "http://dbpedia.org/resource/Georgia_Rampage", "http://dbpedia.org/resource/Washington_Valor", "http://dbpedia.org/resource/Portland_Steel", "http://dbpedia.org/resource/Iowa_Barnstormers", "http://dbpedia.org/resource/Wyoming_Cavalry", "http://dbpedia.org/resource/Spokane_Shock", "http://dbpedia.org/resource/History_of_the_Tennessee_Titans", "http://dbpedia.org/resource/Charlotte_Hornets_(WFL)", "http://dbpedia.org/resource/Southern_California_Sun", "http://dbpedia.org/resource/Amsterdam_Admirals", "http://dbpedia.org/resource/Gold_Coast_Titans", "http://dbpedia.org/resource/Parramatta_Eels", "http://dbpedia.org/resource/Bismarck_Bucks", "http://dbpedia.org/resource/Dallas_Texans_(arena)", "http://dbpedia.org/resource/London_Monarchs", "http://dbpedia.org/resource/St._Louis_BattleHawks", "http://dbpedia.org/resource/Birmingham_Barracudas", "http://dbpedia.org/resource/Birmingham_Stallions", "http://dbpedia.org/resource/Pacific_Coast_Professional_Football_League", "http://dbpedia.org/resource/Chicago_Slaughter", "http://dbpedia.org/resource/Brooklyn_Lions_/_Horsemen_(1926)", "http://dbpedia.org/resource/New_Jersey_Generals", "http://dbpedia.org/resource/Sacramento_Surge", "http://dbpedia.org/resource/Kentucky_Wildcats_football", "http://dbpedia.org/resource/Baltimore_Colts_(1947\u20131950)", "http://dbpedia.org/resource/Texas_Revolution_(indoor_football)", "http://dbpedia.org/resource/CenTex_Cavalry", "http://dbpedia.org/resource/Sioux_Falls_Storm", "http://dbpedia.org/resource/Rio_Grande_Valley_Dorados", "http://dbpedia.org/resource/Rio_Grande_Valley_Magic", "http://dbpedia.org/resource/Nebraska_Danger", "http://dbpedia.org/resource/Fan_Controlled_Football", "http://dbpedia.org/resource/New_York_Yankees_(AAFC)", "http://dbpedia.org/resource/The_Marshals_(NIFL)", "http://dbpedia.org/resource/Cincinnati_Commandos", "http://dbpedia.org/resource/Cleveland_Rams", "http://dbpedia.org/resource/Florida_Blazers", "http://dbpedia.org/resource/Cologne_Centurions_(ELF)", "http://dbpedia.org/resource/Jacksonville_Bulls", "http://dbpedia.org/resource/Pottsville_Maroons", "http://dbpedia.org/resource/Buffalo_Indians", "http://dbpedia.org/resource/Duluth_Eskimos", "http://dbpedia.org/resource/Milwaukee_Badgers", "http://dbpedia.org/resource/Birmingham_Vulcans", "http://dbpedia.org/resource/Clifton_Heights_Orange_&_Black", "http://dbpedia.org/resource/Atlantic_City_Tornadoes", "http://dbpedia.org/resource/Paterson_Night_Hawks", "http://dbpedia.org/resource/Upper_Darby_Greenbacks", "http://dbpedia.org/resource/Bloomington_Edge", "http://dbpedia.org/resource/Albany_Empire_(AFL)", "http://dbpedia.org/resource/Elecom_Kobe_Finies", "http://dbpedia.org/resource/Birmingham_Stallions_(2022)", "http://dbpedia.org/resource/Wichita_Falls_Nighthawks", "http://dbpedia.org/resource/Milwaukee_Mustangs_(2009\u20132012)", "http://dbpedia.org/resource/Bergamo_Lions", "http://dbpedia.org/resource/Evansville_BlueCats", "http://dbpedia.org/resource/Ottawa_Renegades", "http://dbpedia.org/resource/Raleigh\u2013Durham_Skyhawks", "http://dbpedia.org/resource/Columbus_Destroyers", "http://dbpedia.org/resource/Tampa_Bay_Bandits_(2022)", "http://dbpedia.org/resource/Racine_Legion", "http://dbpedia.org/resource/San_Antonio_Riders", "http://dbpedia.org/resource/Providence_Steamrollers_(NFL)", "http://dbpedia.org/resource/Oorang_Indians", "http://dbpedia.org/resource/Sacramento_Gold_Miners", "http://dbpedia.org/resource/San_Antonio_Texans", "http://dbpedia.org/resource/San_Jose_SaberCats", "http://dbpedia.org/resource/Berlin_Adler", "http://dbpedia.org/resource/Hamburg_Sea_Devils_(NFL_Europe)", "http://dbpedia.org/resource/Dresden_Monarchs", "http://dbpedia.org/resource/Vienna_Vikings", "http://dbpedia.org/resource/Omaha_Beef", "http://dbpedia.org/resource/Fort_Wayne_FireHawks", "http://dbpedia.org/resource/San_Diego_Strike_Force", "http://dbpedia.org/resource/Birmingham_Iron", "http://dbpedia.org/resource/Utah_Blaze", "http://dbpedia.org/resource/Istanbul_Rams", "http://dbpedia.org/resource/Barcelona_Dragons_(NFL_Europe)", "http://dbpedia.org/resource/Newark_Bears_(AFL)", "http://dbpedia.org/resource/Oglethorpe_Stormy_Petrels_football", "http://dbpedia.org/resource/Michigan_Wolverines_football", "http://dbpedia.org/resource/Orlando_Predators", "http://dbpedia.org/resource/Chicago_Blitz", "http://dbpedia.org/resource/San_Jose_Apaches", "http://dbpedia.org/resource/Arkansas_Stars", "http://dbpedia.org/resource/Montgomery_Bears", "http://dbpedia.org/resource/Las_Vegas_Outlaws_(XFL)", "http://dbpedia.org/resource/El_Toro_Marines", "http://dbpedia.org/resource/San_Diego_Bombers", "http://dbpedia.org/resource/Fort_Worth_Cavalry", "http://dbpedia.org/resource/Omaha_Mammoths", "http://dbpedia.org/resource/1979_NFL_season", "http://dbpedia.org/resource/1981_NFL_season", "http://dbpedia.org/resource/San_Antonio_Gunslingers_(USFL_team)", "http://dbpedia.org/resource/Los_Angeles_Wildcats_(XFL)", "http://dbpedia.org/resource/Florida_Bobcats", "http://dbpedia.org/resource/Chicago_Enforcers", "http://dbpedia.org/resource/Amarillo_Venom", "http://dbpedia.org/resource/DC_Defenders", "http://dbpedia.org/resource/Jersey_Jays", "http://dbpedia.org/resource/Bridgeport_Jets", "http://dbpedia.org/resource/2013_UIFL_season", "http://dbpedia.org/resource/Northern_Kentucky_River_Monsters", "http://dbpedia.org/resource/Owensboro_Rage", "http://dbpedia.org/resource/Huntington_Hammer", "http://dbpedia.org/resource/New_York_Yanks", "http://dbpedia.org/resource/Hammond_Pros", "http://dbpedia.org/resource/Chicago_Tigers", "http://dbpedia.org/resource/Toledo_Maroons", "http://dbpedia.org/resource/Hartford_Blues", "http://dbpedia.org/resource/Kansas_City_Cowboys_(NFL)", "http://dbpedia.org/resource/Orange/Newark_Tornadoes", "http://dbpedia.org/resource/1988_CFL_season", "http://dbpedia.org/resource/The_Hawaiians_(WFL)", "http://dbpedia.org/resource/Birmingham_Thunderbolts", "http://dbpedia.org/resource/Detroit_(1920s_NFL_teams)", "http://dbpedia.org/resource/Columbus_Panhandles", "http://dbpedia.org/resource/Buffalo_team_(NFL)", "http://dbpedia.org/resource/Minneapolis_Marines/Red_Jackets", "http://dbpedia.org/resource/Newtown_Jets", "http://dbpedia.org/resource/San_Antonio_Matadors", "http://dbpedia.org/resource/Ohio_Cannon", "http://dbpedia.org/resource/FCF_Beasts", "http://dbpedia.org/resource/M\u00f6nchengladbach_Mavericks", "http://dbpedia.org/resource/Kiel_Baltic_Hurricanes", "http://dbpedia.org/resource/London_Olympians", "http://dbpedia.org/resource/IBM_Big_Blue", "http://dbpedia.org/resource/Union_Quakers_of_Philadelphia", "http://dbpedia.org/resource/Rochester_Jeffersons", "http://dbpedia.org/resource/Tampa_Cardinals", "http://dbpedia.org/resource/Cleveland_Tigers_(NFL)", "http://dbpedia.org/resource/Rock_Island_Independents", "http://dbpedia.org/resource/Chicago_Bulls_(AFL)", "http://dbpedia.org/resource/New_York_Dragons", "http://dbpedia.org/resource/Columbus_Bullies", "http://dbpedia.org/resource/Massachusetts_Pirates", "http://dbpedia.org/resource/Columbus_Lions", "http://dbpedia.org/resource/West_Virginia_State_University", "http://dbpedia.org/resource/Jacksonville_Sharks_(WFL)", "http://dbpedia.org/resource/Montreal_Machine", "http://dbpedia.org/resource/Birmingham_Fire", "http://dbpedia.org/resource/San_Diego_State_Aztecs", "http://dbpedia.org/resource/Bossier\u2013Shreveport_Battle_Wings", "http://dbpedia.org/resource/Lafayette_Roughnecks", "http://dbpedia.org/resource/Lake_Charles_Land_Sharks", "http://dbpedia.org/resource/New_Orleans_Thunder", "http://dbpedia.org/resource/Louisiana_Swashbucklers", "http://dbpedia.org/resource/Baltimore_Stallions", "http://dbpedia.org/resource/Mobile_Admirals", "http://dbpedia.org/resource/Union_Club_of_Phoenixville", "http://dbpedia.org/resource/Massillon_Tigers", "http://dbpedia.org/resource/Youngstown_Patricians", "http://dbpedia.org/resource/History_of_the_New_England_Patriots", "http://dbpedia.org/resource/History_of_the_Kansas_City_Chiefs", "http://dbpedia.org/resource/Memphis_Southmen", "http://dbpedia.org/resource/St._Louis_Cardinals", "http://dbpedia.org/resource/Portland_Loggers", "http://dbpedia.org/resource/Orange_County_Ramblers", "http://dbpedia.org/resource/Grand_Rapids_Rampage", "http://dbpedia.org/resource/Memphis_Mad_Dogs", "http://dbpedia.org/resource/Birmingham_Americans", "http://dbpedia.org/resource/Continental_Football_League", "http://dbpedia.org/resource/Portland_Thunder_(WFL)"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/publisher> <http://dbpedia.org/resource/Interplay_Entertainment> . ?x <http://dbpedia.org/property/genre> ?uri . }"}, "answers": ["144"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Goya_Awards> <http://dbpedia.org/property/awards> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/grandsire> <http://dbpedia.org/resource/The_Wild> . ?x <http://dbpedia.org/property/race> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/broadcaster> <http://dbpedia.org/resource/BBC_HD> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/ScienceShow>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/opponent> <http://dbpedia.org/resource/Tom_McLaury> . ?uri <http://dbpedia.org/ontology/person> <http://dbpedia.org/resource/Ike_Clanton> . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/locatedInArea> <http://dbpedia.org/resource/California> . ?x <http://dbpedia.org/property/crosses> ?uri . }"}, "answers": ["Dinkey Creek", "http://dbpedia.org/resource/San_Joaquin_River", "New Melones Lake", "http://dbpedia.org/resource/Golden_Gate", "http://dbpedia.org/resource/Shasta_Lake", "http://dbpedia.org/resource/Colorado_River", "http://dbpedia.org/resource/Noyo_River", "http://dbpedia.org/resource/Sweetwater_River_(California)", "Metrolink tracks, Los Angeles River, Union Pacific Railroad tracks, Santa Ana Freeway, Golden State Freeway, several local streets", "http://dbpedia.org/resource/San_Francisco_Bay", "http://dbpedia.org/resource/Sacramento_River", "San Lorenzo River", "San Francisco Bay east of Yerba Buena Island", "Sacramento River", "San Diego Trolley and San Diego & Arizona Eastern Railroad tracks in San Diego, California"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pat_Kirkwood_(racing_driver)> <http://dbpedia.org/property/birthplace> ?x . ?x <http://dbpedia.org/ontology/largestCity> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Houston"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/team> <http://dbpedia.org/resource/Phoenix_Suns> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/BasketballPlayer>}"}, "answers": ["http://dbpedia.org/resource/Alton_Ford", "http://dbpedia.org/resource/Alvan_Adams", "http://dbpedia.org/resource/Alvin_Scott", "http://dbpedia.org/resource/Alvin_Sims", "http://dbpedia.org/resource/Amar'e_Stoudemire", "http://dbpedia.org/resource/Andre_Barrett", "http://dbpedia.org/resource/Andrew_Lang_(basketball)", "http://dbpedia.org/resource/Damian_Jones_(basketball)", "http://dbpedia.org/resource/Damion_Lee", "http://dbpedia.org/resource/Dan_Langhi", "http://dbpedia.org/resource/Dan_Majerle", "http://dbpedia.org/resource/Daniel_Santiago", "http://dbpedia.org/resource/Danny_Ainge", "http://dbpedia.org/resource/Danny_Manning", "http://dbpedia.org/resource/Danny_Schayes", "http://dbpedia.org/resource/Danuel_House", "http://dbpedia.org/resource/Dario_\u0160ari\u0107", "http://dbpedia.org/resource/Dave_Lattin", "http://dbpedia.org/resource/David_Thirdkill", "http://dbpedia.org/resource/David_Wood_(basketball)", "http://dbpedia.org/resource/Davon_Reed", "http://dbpedia.org/resource/De'Anthony_Melton", "http://dbpedia.org/resource/Deandre_Ayton", "http://dbpedia.org/resource/Dee_Brown_(basketball,_born_1984)", "http://dbpedia.org/resource/Viacheslav_Kravtsov", "http://dbpedia.org/resource/Vince_Carter", "http://dbpedia.org/resource/Vinny_Del_Negro", "http://dbpedia.org/resource/Walt_Wesley", "http://dbpedia.org/resource/Walter_Davis_(basketball)", "http://dbpedia.org/resource/Walter_McCarty", "http://dbpedia.org/resource/Dennis_Awtrey", "http://dbpedia.org/resource/Dennis_Johnson", "http://dbpedia.org/resource/Dennis_Scott_(basketball)", "http://dbpedia.org/resource/Derrick_Jones_Jr.", "http://dbpedia.org/resource/Devin_Booker", "http://dbpedia.org/resource/Devin_Durrant", "http://dbpedia.org/resource/Dexter_Boney", "http://dbpedia.org/resource/Diante_Garrett", "http://dbpedia.org/resource/Dick_Snyder", "http://dbpedia.org/resource/Dick_Van_Arsdale", "http://dbpedia.org/resource/Dijon_Thompson", "http://dbpedia.org/resource/Dionte_Christmas", "http://dbpedia.org/resource/Alan_Williams_(basketball)", "http://dbpedia.org/resource/Alando_Tucker", "http://dbpedia.org/resource/Alec_Peters", "http://dbpedia.org/resource/Alex_Len", "http://dbpedia.org/resource/Alex_Stivrins", "http://dbpedia.org/resource/Art_Harris", "http://dbpedia.org/resource/Bayard_Forrest", "http://dbpedia.org/resource/Ben_Davis_(basketball)", "http://dbpedia.org/resource/Bernard_Thompson", "http://dbpedia.org/resource/Frank_Johnson_(basketball)", "http://dbpedia.org/resource/Frank_Kaminsky", "http://dbpedia.org/resource/Fred_Saunders", "http://dbpedia.org/resource/Fred_Taylor_(basketball_player)", "http://dbpedia.org/resource/Gabriel_Lundberg", "http://dbpedia.org/resource/Gail_Goodrich", "http://dbpedia.org/resource/Gani_Lawal", "http://dbpedia.org/resource/Gar_Heard", "http://dbpedia.org/resource/Garret_Siler", "http://dbpedia.org/resource/Gary_Gregor", "http://dbpedia.org/resource/Gary_Melchionni", "http://dbpedia.org/resource/George_King_(basketball,_born_1994)", "http://dbpedia.org/resource/George_McCloud", "http://dbpedia.org/resource/George_Wilson_(basketball,_born_1942)", "http://dbpedia.org/resource/Georgi_Glouchkov", "http://dbpedia.org/resource/Hakim_Warrick", "http://dbpedia.org/resource/Hamed_Haddadi", "http://dbpedia.org/resource/Sam_Cassell", "http://dbpedia.org/resource/T._J._Warren", "http://dbpedia.org/resource/T._R._Dunn", "http://dbpedia.org/resource/Tariq_Owens", "http://dbpedia.org/resource/Taylor_Griffin", "http://dbpedia.org/resource/Ted_McClain", "http://dbpedia.org/resource/Wayman_Tisdale", "http://dbpedia.org/resource/Wesley_Johnson_(basketball)", "http://dbpedia.org/resource/Wesley_Person", "http://dbpedia.org/resource/William_Bedford_(basketball)", "http://dbpedia.org/resource/Anthony_Tolliver", "http://dbpedia.org/resource/Antonio_Lang", "http://dbpedia.org/resource/Antonio_McDyess", "http://dbpedia.org/resource/Archie_Goodwin_(basketball)", "http://dbpedia.org/resource/Armen_Gilliam", "http://dbpedia.org/resource/Aron_Baynes", "http://dbpedia.org/resource/Emanuel_Terry", "http://dbpedia.org/resource/Eric_Bledsoe", "http://dbpedia.org/resource/Eric_Moreland", "http://dbpedia.org/resource/Eric_Piatkowski", "http://dbpedia.org/resource/Gerald_Brown_(basketball)", "http://dbpedia.org/resource/Gerald_Green", "http://dbpedia.org/resource/Goran_Dragi\u0107", "http://dbpedia.org/resource/Gordan_Giri\u010dek", "http://dbpedia.org/resource/Marcin_Gortat", "http://dbpedia.org/resource/Marcus_Banks", "http://dbpedia.org/resource/Marcus_Morris", "http://dbpedia.org/resource/Marcus_Thornton_(basketball,_born_1987)", "http://dbpedia.org/resource/Mario_Elie", "http://dbpedia.org/resource/Mark_Bryant_(basketball)", "http://dbpedia.org/resource/Mark_Davis_(basketball,_born_1963)", "http://dbpedia.org/resource/Mark_West_(basketball)", "http://dbpedia.org/resource/Markieff_Morris", "http://dbpedia.org/resource/Marko_Mili\u010d", "http://dbpedia.org/resource/Marquese_Chriss", "http://dbpedia.org/resource/Marty_Byrnes", "http://dbpedia.org/resource/Terrence_Rencher", "http://dbpedia.org/resource/Boris_Diaw", "http://dbpedia.org/resource/Brandan_Wright", "http://dbpedia.org/resource/Brandon_Knight_(basketball)", "http://dbpedia.org/resource/Brevin_Knight", "http://dbpedia.org/resource/Brian_Grant", "http://dbpedia.org/resource/Brian_Skinner", "http://dbpedia.org/resource/Brooks_Thompson", "http://dbpedia.org/resource/Bryce_Cotton", "http://dbpedia.org/resource/Jackson_Vroman", "http://dbpedia.org/resource/Jahidi_White", "http://dbpedia.org/resource/Jake_Tsakalidis", "http://dbpedia.org/resource/Jake_Voskuhl", "http://dbpedia.org/resource/Jalen_Lecque", "http://dbpedia.org/resource/Jalen_Rose", "http://dbpedia.org/resource/Jalen_Smith", "http://dbpedia.org/resource/Jamal_Crawford", "http://dbpedia.org/resource/James_Bailey_(basketball)", "http://dbpedia.org/resource/James_Edwards_(basketball)", "http://dbpedia.org/resource/James_Jones_(basketball,_born_1980)", "http://dbpedia.org/resource/Jared_Dudley", "http://dbpedia.org/resource/Jared_Harper", "http://dbpedia.org/resource/Jarell_Eddie", "http://dbpedia.org/resource/Jarron_Collins", "http://dbpedia.org/resource/Jason_Kidd", "http://dbpedia.org/resource/Jason_Richardson", "http://dbpedia.org/resource/Jawun_Evans", "http://dbpedia.org/resource/Jay_Humphries", "http://dbpedia.org/resource/Keith_Erickson", "http://dbpedia.org/resource/Kelly_Oubre_Jr.", "http://dbpedia.org/resource/Kendall_Marshall", "http://dbpedia.org/resource/Kenny_Battle", "http://dbpedia.org/resource/Kenny_Gattison", "http://dbpedia.org/resource/Matt_Barnes", "http://dbpedia.org/resource/Maurice_Lucas", "http://dbpedia.org/resource/McCoy_McLemore", "http://dbpedia.org/resource/Mel_Counts", "http://dbpedia.org/resource/Raja_Bell", "http://dbpedia.org/resource/Randy_Brown_(basketball)", "http://dbpedia.org/resource/Randy_Livingston", "http://dbpedia.org/resource/Ray_Spalding", "http://dbpedia.org/resource/Reggie_Bullock", "http://dbpedia.org/resource/Rex_Chapman", "http://dbpedia.org/resource/A.C._Green", "http://dbpedia.org/resource/A._J._Price", "http://dbpedia.org/resource/Nikoloz_Tskitishvili", "http://dbpedia.org/resource/Clem_Haskins", "http://dbpedia.org/resource/Clifford_Robinson_(basketball,_born_1966)", "http://dbpedia.org/resource/Connie_Hawkins", "http://dbpedia.org/resource/John_Jenkins_(basketball)", "http://dbpedia.org/resource/John_McCullough_(basketball)", "http://dbpedia.org/resource/John_Shumate", "http://dbpedia.org/resource/John_Wallace_(basketball)", "http://dbpedia.org/resource/John_Wetzel_(basketball)", "http://dbpedia.org/resource/Johnny_High", "http://dbpedia.org/resource/Jon_Leuer", "http://dbpedia.org/resource/Jonah_Bolden", "http://dbpedia.org/resource/Jordan_McRae", "http://dbpedia.org/resource/Josh_Childress", "http://dbpedia.org/resource/Josh_Davis_(basketball,_born_1980)", "http://dbpedia.org/resource/Josh_Gray_(basketball)", "http://dbpedia.org/resource/Josh_Jackson_(basketball)", "http://dbpedia.org/resource/Josh_Okogie", "http://dbpedia.org/resource/Jud_Buechler", "http://dbpedia.org/resource/Scott_English_(basketball)", "http://dbpedia.org/resource/Scott_Williams_(basketball)", "http://dbpedia.org/resource/Sean_Marks", "http://dbpedia.org/resource/Sean_Singletary", "http://dbpedia.org/resource/Sebastian_Telfair", "http://dbpedia.org/resource/Sedric_Toney", "http://dbpedia.org/resource/Ira_Terrell", "http://dbpedia.org/resource/Isaiah_Canaan", "http://dbpedia.org/resource/Isaiah_Thomas_(basketball)", "http://dbpedia.org/resource/Ish_Wainright", "http://dbpedia.org/resource/JaVale_McGee", "http://dbpedia.org/resource/Mo_Layton", "http://dbpedia.org/resource/Nate_Hawthorne", "http://dbpedia.org/resource/Tony_Delk", "http://dbpedia.org/resource/Tony_Dumas", "http://dbpedia.org/resource/Tony_Smith_(basketball)", "http://dbpedia.org/resource/Torrey_Craig", "http://dbpedia.org/resource/Trevor_Ariza", "http://dbpedia.org/resource/Trevor_Ruffin", "http://dbpedia.org/resource/Troy_Daniels", "http://dbpedia.org/resource/Truck_Robinson", "http://dbpedia.org/resource/Ty-Shon_Alexander", "http://dbpedia.org/resource/Ty_Jerome", "http://dbpedia.org/resource/Tyler_Ennis_(basketball)", "http://dbpedia.org/resource/Tyler_Johnson_(basketball)", "http://dbpedia.org/resource/Tyler_Ulis", "http://dbpedia.org/resource/Tyrone_Corbin", "http://dbpedia.org/resource/Tyson_Chandler", "http://dbpedia.org/resource/Aaron_Brooks_(basketball)", "http://dbpedia.org/resource/Aaron_Holiday", "http://dbpedia.org/resource/Aaron_Swinson", "http://dbpedia.org/resource/Abdel_Nader", "http://dbpedia.org/resource/Butch_Feher", "http://dbpedia.org/resource/Cameron_Johnson", "http://dbpedia.org/resource/Cameron_Payne", "http://dbpedia.org/resource/Cedric_Ceballos", "http://dbpedia.org/resource/Cezary_Tryba\u0144ski", "http://dbpedia.org/resource/Chandler_Hutchison", "http://dbpedia.org/resource/Channing_Frye", "http://dbpedia.org/resource/Charles_Barkley", "http://dbpedia.org/resource/Charles_Jones_(basketball,_born_1962)", "http://dbpedia.org/resource/Charles_Pittman_(basketball)", "http://dbpedia.org/resource/Charlie_Bell_(basketball)", "http://dbpedia.org/resource/Charlie_Scott_(basketball)", "http://dbpedia.org/resource/Chase_Budinger", "http://dbpedia.org/resource/Cheick_Diallo", "http://dbpedia.org/resource/Chris_Carr_(basketball)", "http://dbpedia.org/resource/Chris_Morris_(basketball)", "http://dbpedia.org/resource/Chris_Paul", "http://dbpedia.org/resource/Chucky_Brown", "http://dbpedia.org/resource/Steve_Kerr", "http://dbpedia.org/resource/Steve_Nash", "http://dbpedia.org/resource/Steven_Hunter", "http://dbpedia.org/resource/Stromile_Swift", "http://dbpedia.org/resource/Casey_Jacobsen", "http://dbpedia.org/resource/Horacio_Llamas", "http://dbpedia.org/resource/Howard_Eisley", "http://dbpedia.org/resource/Lamar_Green", "http://dbpedia.org/resource/Landry_Shamet", "http://dbpedia.org/resource/Langston_Galloway", "http://dbpedia.org/resource/Larry_Nance", "http://dbpedia.org/resource/Leandro_Barbosa", "http://dbpedia.org/resource/Don_Buse", "http://dbpedia.org/resource/Don_MacLean_(basketball)", "http://dbpedia.org/resource/Donnell_Harvey", "http://dbpedia.org/resource/Dragan_Bender", "http://dbpedia.org/resource/Duane_Cooper", "http://dbpedia.org/resource/Duane_Washington_Jr.", "http://dbpedia.org/resource/Dudley_Bradley", "http://dbpedia.org/resource/Dwayne_Jones_(basketball)", "http://dbpedia.org/resource/E'Twaun_Moore", "http://dbpedia.org/resource/Skeeter_Henry", "http://dbpedia.org/resource/Smush_Parker", "http://dbpedia.org/resource/Sonny_Weems", "http://dbpedia.org/resource/Corie_Blount", "http://dbpedia.org/resource/Corky_Calhoun", "http://dbpedia.org/resource/Cory_Jefferson", "http://dbpedia.org/resource/Courtney_Sims", "http://dbpedia.org/resource/Craig_Dykema", "http://dbpedia.org/resource/Curtis_Perry", "http://dbpedia.org/resource/D._J._Strawberry", "http://dbpedia.org/resource/Dale_Schlueter", "http://dbpedia.org/resource/Grant_Gondrezick", "http://dbpedia.org/resource/Grant_Hill", "http://dbpedia.org/resource/Greg_Grant_(basketball,_born_1966)", "http://dbpedia.org/resource/Greg_Griffin", "http://dbpedia.org/resource/Greg_Howard_(basketball)", "http://dbpedia.org/resource/Greg_Jackson_(basketball,_born_1952)", "http://dbpedia.org/resource/Greg_Monroe", "http://dbpedia.org/resource/Hedo_T\u00fcrko\u011flu", "http://dbpedia.org/resource/M._J._Walker", "http://dbpedia.org/resource/Maciej_Lampe", "http://dbpedia.org/resource/Malcolm_Mackey", "http://dbpedia.org/resource/Rich_Kelley", "http://dbpedia.org/resource/Richard_Dumas", "http://dbpedia.org/resource/Richaun_Holmes", "http://dbpedia.org/resource/Rick_Robey", "http://dbpedia.org/resource/Ricky_Rubio", "http://dbpedia.org/resource/Ricky_Sobers", "http://dbpedia.org/resource/Robert_Archibald", "http://dbpedia.org/resource/Robert_Horry", "http://dbpedia.org/resource/Robin_Lopez", "http://dbpedia.org/resource/Rod_Foster", "http://dbpedia.org/resource/Rod_Knowles", "http://dbpedia.org/resource/Rodney_Rogers", "http://dbpedia.org/resource/Jeff_Cook_(basketball)", "http://dbpedia.org/resource/Jeff_Hornacek", "http://dbpedia.org/resource/Jeff_Webb_(basketball)", "http://dbpedia.org/resource/Jerel_McNeal", "http://dbpedia.org/resource/Jermaine_O'Neal", "http://dbpedia.org/resource/Jerrod_Mustaf", "http://dbpedia.org/resource/Jerry_Chambers", "http://dbpedia.org/resource/Jevon_Carter", "http://dbpedia.org/resource/Jim_Fox_(basketball,_born_1943)", "http://dbpedia.org/resource/Jim_Jackson_(basketball)", "http://dbpedia.org/resource/Jim_Owens_(basketball,_born_1950)", "http://dbpedia.org/resource/Jimmer_Fredette", "http://dbpedia.org/resource/Jock_Landale", "http://dbpedia.org/resource/Joe_Barry_Carroll", "http://dbpedia.org/resource/Joe_Courtney_(basketball)", "http://dbpedia.org/resource/Joe_Crispin", "http://dbpedia.org/resource/Joe_Johnson_(basketball)", "http://dbpedia.org/resource/Joe_Kleine", "http://dbpedia.org/resource/Joe_Reaves", "http://dbpedia.org/resource/Joe_Thomas_(basketball)", "http://dbpedia.org/resource/Joel_Kramer", "http://dbpedia.org/resource/John_%22Hot_Rod%22_Williams", "http://dbpedia.org/resource/John_Coker_(basketball)", "http://dbpedia.org/resource/Linton_Johnson", "http://dbpedia.org/resource/Neal_Walk", "http://dbpedia.org/resource/Negele_Knight", "http://dbpedia.org/resource/Neil_Johnson_(basketball)", "http://dbpedia.org/resource/Nick_Vanos", "http://dbpedia.org/resource/Penny_Hardaway", "http://dbpedia.org/resource/Phil_Lumpkin", "http://dbpedia.org/resource/Phil_Pressey", "http://dbpedia.org/resource/Quentin_Richardson", "http://dbpedia.org/resource/Quincy_Acy", "http://dbpedia.org/resource/Rafael_Addison", "http://dbpedia.org/resource/Tim_Kempton", "http://dbpedia.org/resource/Tim_Legler", "http://dbpedia.org/resource/Tim_Perry", "http://dbpedia.org/resource/Tim_Thomas_(basketball)", "http://dbpedia.org/resource/Toby_Bailey", "http://dbpedia.org/resource/Todd_Day", "http://dbpedia.org/resource/Tom_Chambers_(basketball)", "http://dbpedia.org/resource/Tom_Gugliotta", "http://dbpedia.org/resource/Tom_Van_Arsdale", "http://dbpedia.org/resource/Winston_Crite", "http://dbpedia.org/resource/Xavier_McDaniel", "http://dbpedia.org/resource/Earl_Barron", "http://dbpedia.org/resource/Earl_Clark", "http://dbpedia.org/resource/Earl_Williams_(basketball_player)", "http://dbpedia.org/resource/Ed_Nealy", "http://dbpedia.org/resource/Ed_Pinckney", "http://dbpedia.org/resource/Eddie_Biedenbach", "http://dbpedia.org/resource/Eddie_House", "http://dbpedia.org/resource/Eddie_Johnson_(basketball,_born_1959)", "http://dbpedia.org/resource/Elfrid_Payton_(basketball)", "http://dbpedia.org/resource/Elijah_Millsap", "http://dbpedia.org/resource/Elliot_Perry", "http://dbpedia.org/resource/Justin_Jackson_(basketball,_born_1995)", "http://dbpedia.org/resource/Loren_Meyer", "http://dbpedia.org/resource/Lorenzo_Brown", "http://dbpedia.org/resource/Lou_Amundson", "http://dbpedia.org/resource/Luc_Longley", "http://dbpedia.org/resource/Luis_Scola", "http://dbpedia.org/resource/Luke_Zeller", "http://dbpedia.org/resource/Oliver_Miller", "http://dbpedia.org/resource/Orlando_Johnson", "http://dbpedia.org/resource/Otto_Moore", "http://dbpedia.org/resource/Seth_Curry", "http://dbpedia.org/resource/Shannon_Brown", "http://dbpedia.org/resource/Shaquille_Harrison", "http://dbpedia.org/resource/Shaquille_O'Neal", "http://dbpedia.org/resource/Sharrod_Ford", "http://dbpedia.org/resource/Shavlik_Randolph", "http://dbpedia.org/resource/Shawn_Marion", "http://dbpedia.org/resource/Shawn_Respert", "http://dbpedia.org/resource/Stan_McKenzie_(basketball)", "http://dbpedia.org/resource/Stefano_Rusconi", "http://dbpedia.org/resource/Stephon_Marbury", "http://dbpedia.org/resource/Steve_Burtt_Sr.", "http://dbpedia.org/resource/Bill_Chamberlain", "http://dbpedia.org/resource/Bill_Martin_(basketball)", "http://dbpedia.org/resource/Bismack_Biyombo", "http://dbpedia.org/resource/Bo_Outlaw", "http://dbpedia.org/resource/Bob_Christian_(basketball)", "http://dbpedia.org/resource/Bob_Warlick", "http://dbpedia.org/resource/Ian_Lockhart", "http://dbpedia.org/resource/Kris_Humphries", "http://dbpedia.org/resource/Kurt_Rambis", "http://dbpedia.org/resource/Kurt_Thomas_(basketball)", "http://dbpedia.org/resource/Kyle_Macy", "http://dbpedia.org/resource/Michael_Beasley", "http://dbpedia.org/resource/Michael_Finley", "http://dbpedia.org/resource/Michael_Holton", "http://dbpedia.org/resource/Micheal_Williams", "http://dbpedia.org/resource/Micka\u00ebl_Pi\u00e9trus", "http://dbpedia.org/resource/Mikal_Bridges", "http://dbpedia.org/resource/Mike_Bantom", "http://dbpedia.org/resource/Mike_Bratz", "http://dbpedia.org/resource/Mike_Brown_(basketball,_born_1963)", "http://dbpedia.org/resource/Mike_James_(basketball,_born_1990)", "http://dbpedia.org/resource/Mike_McGee_(basketball)", "http://dbpedia.org/resource/Mike_Morrison_(basketball,_born_1967)", "http://dbpedia.org/resource/Mike_Niles", "http://dbpedia.org/resource/Mike_Sanders_(basketball)", "http://dbpedia.org/resource/Miles_Plumlee", "http://dbpedia.org/resource/Milt_Palacio", "http://dbpedia.org/resource/P._J._Tucker", "http://dbpedia.org/resource/Paris_Bass", "http://dbpedia.org/resource/Pat_Burke", "http://dbpedia.org/resource/Pat_Garrity", "http://dbpedia.org/resource/Pat_Riley", "http://dbpedia.org/resource/Patrick_Mutombo", "http://dbpedia.org/resource/Paul_McPherson", "http://dbpedia.org/resource/Paul_Shirley", "http://dbpedia.org/resource/Paul_Silas", "http://dbpedia.org/resource/Paul_Stovall", "http://dbpedia.org/resource/Paul_Westphal", "http://dbpedia.org/resource/Ron_Lee", "http://dbpedia.org/resource/Ronnie_Price", "http://dbpedia.org/resource/Rory_White", "http://dbpedia.org/resource/Rub\u00e9n_Garc\u00e9s", "http://dbpedia.org/resource/Rumeal_Robinson", "http://dbpedia.org/resource/Ryan_Anderson_(basketball,_born_1988)", "http://dbpedia.org/resource/\u017darko_\u010cabarkapa", "http://dbpedia.org/resource/Yuta_Tabuse", "http://dbpedia.org/resource/Zabian_Dowdell", "http://dbpedia.org/resource/Zoran_Dragi\u0107", "http://dbpedia.org/resource/\u00c9lie_Okobo"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/EXXV-TV> <http://dbpedia.org/ontology/licensee> ?uri } "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jimmy_Wales> <http://dbpedia.org/ontology/board> ?uri } "}, "answers": ["http://dbpedia.org/resource/Wikimedia_Foundation", "http://dbpedia.org/resource/Sunlight_Foundation", "http://dbpedia.org/resource/Creative_Commons", "http://dbpedia.org/resource/Guardian_Media_Group", "http://dbpedia.org/resource/MIT_Center_for_Collective_Intelligence"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/associatedBand> <http://dbpedia.org/resource/Steve_Winwood> . }"}, "answers": ["http://dbpedia.org/resource/Hollie_Farris", "http://dbpedia.org/resource/Will_Jennings", "http://dbpedia.org/resource/The_Memphis_Horns", "http://dbpedia.org/resource/James_Hooker_(musician)", "http://dbpedia.org/resource/Jos\u00e9_Neto_(musician)", "http://dbpedia.org/resource/Gigi_Gonaway", "http://dbpedia.org/resource/Muff_Winwood", "http://dbpedia.org/resource/Chuck_Kaye", "http://dbpedia.org/resource/Chaka_Khan", "http://dbpedia.org/resource/Carmine_Rojas", "http://dbpedia.org/resource/George_Shilling", "http://dbpedia.org/resource/Craig_Van_Tilbury", "http://dbpedia.org/resource/Jim_Capaldi", "http://dbpedia.org/resource/Ruby_Turner", "http://dbpedia.org/resource/Junior_Marvin__Junior_Marvin__1"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/associatedBand> <http://dbpedia.org/resource/Ziggi_Recado> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MusicalArtist>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jovan_Vladimir> <http://dbpedia.org/property/majorShrine> ?uri } "}, "answers": ["Monastery of St Jovan Vladimir, near Elbasan, Albania"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/engineer> <http://dbpedia.org/resource/Start_+_Flug> . ?x <http://dbpedia.org/property/origin> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/family> <http://dbpedia.org/resource/Hominidae> . ?x <http://dbpedia.org/property/family> ?uri }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/coach> <http://dbpedia.org/resource/2006_Oakland_Raiders_season> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/FootballPlayer>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/painter> <http://dbpedia.org/resource/The_Sarah_Jane_Adventures_Collection> . ?x <http://dbpedia.org/property/importantThings> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/I_Pray_on_Christmas> <http://dbpedia.org/property/label> ?uri } "}, "answers": ["http://dbpedia.org/resource/Columbia_Records", "http://dbpedia.org/resource/Sony"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/guests> <http://dbpedia.org/resource/The_Other_Side_(The_Outer_Limits)> . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/hubAirport> <http://dbpedia.org/resource/Los_Angeles_International_Airport> } "}, "answers": ["http://dbpedia.org/resource/American_Airlines", "http://dbpedia.org/resource/American_Eagle_(airline_brand)", "http://dbpedia.org/resource/AeroUnion", "http://dbpedia.org/resource/Virgin_America", "http://dbpedia.org/resource/Delta_Air_Lines", "http://dbpedia.org/resource/Delta_Connection", "http://dbpedia.org/resource/Mas_Air", "http://dbpedia.org/resource/Alaska_Airlines", "http://dbpedia.org/resource/Atlas_Air", "http://dbpedia.org/resource/Western_Airlines", "http://dbpedia.org/resource/Polar_Air_Cargo", "http://dbpedia.org/resource/United_Airlines", "http://dbpedia.org/resource/United_Express", "http://dbpedia.org/resource/Braniff_International_Airways", "http://dbpedia.org/resource/Republic_Airlines", "http://dbpedia.org/resource/Kalitta_Air", "http://dbpedia.org/resource/Ted_(airline)", "http://dbpedia.org/resource/Wings_West_Airlines", "http://dbpedia.org/resource/Hughes_Airwest", "http://dbpedia.org/resource/SkyWest_Airlines", "http://dbpedia.org/resource/Southern_Air", "http://dbpedia.org/resource/Southern_Airways_Express", "http://dbpedia.org/resource/Great_Lakes_Airlines", "http://dbpedia.org/resource/Pacific_Southwest_Airlines"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Vadodara_Junction_railway_station> <http://dbpedia.org/property/line> ?uri } "}, "answers": ["http://dbpedia.org/resource/Ahmedabad\u2013Mumbai_main_line", "http://dbpedia.org/resource/New_Delhi\u2013Mumbai_main_line", "Vadodara\u2013Chhota Udaipur line", "Ahmedabad\u2013Chennai main line,", "Ahmedabad\u2013Howrah main line,"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jon_Curran> <http://dbpedia.org/ontology/college> ?uri } "}, "answers": ["http://dbpedia.org/resource/Vanderbilt_University"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/notableworks> <http://dbpedia.org/resource/Scott_Haran> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/breeder> <http://dbpedia.org/resource/De_La_Rose> . ?x <http://dbpedia.org/ontology/birthPlace> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Madagascar:_Operation_Penguin> <http://dbpedia.org/property/artist> ?uri } "}, "answers": ["http://dbpedia.org/resource/Hans_Zimmer"]}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/wineRegion> <http://dbpedia.org/resource/Michigan> . ?x wineRegion ?uri }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/athletics> <http://dbpedia.org/resource/International_Athletics> . ?x <http://dbpedia.org/ontology/university> ?uri }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/branch> <http://dbpedia.org/resource/United_States_Army_Contracting_Command> . ?x <http://dbpedia.org/ontology/battle> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Tandem_Computers> <http://dbpedia.org/property/founder> ?uri . <http://dbpedia.org/resource/Jim_Harris> <http://dbpedia.org/ontology/subsidiary> ?uri} "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/restingPlace> <http://dbpedia.org/resource/The_Convent_(film)> . ?uri <http://dbpedia.org/property/author> ?x . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/monarch> <http://dbpedia.org/resource/Willem-Alexander_of_the_Netherlands> . ?uri <http://dbpedia.org/property/leader> ?x . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ionian_Sea> <http://dbpedia.org/property/inflow> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/order> <http://dbpedia.org/resource/Primate> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Mammal>}"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/child> <http://dbpedia.org/resource/Marvin_Bush> . ?x <http://dbpedia.org/property/children> ?uri . }"}, "answers": ["http://dbpedia.org/resource/George_W._Bush", "http://dbpedia.org/resource/Marvin_Bush", "http://dbpedia.org/resource/Jeb_Bush", "http://dbpedia.org/resource/Dorothy_Bush_Koch", "http://dbpedia.org/resource/Neil_Bush", "http://dbpedia.org/resource/Pauline_Robinson_Bush", ""]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Elliott_Bay> <http://dbpedia.org/ontology/nearestCity> ?uri } "}, "answers": ["http://dbpedia.org/resource/Seattle"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/ground> <http://dbpedia.org/resource/Riverside_Stadium> . ?x <http://dbpedia.org/property/manager> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Chris_Wilder", "http://dbpedia.org/resource/Neil_Warnock", "", "http://dbpedia.org/resource/Gareth_Southgate", "Gordon Strachan", "http://dbpedia.org/resource/Bryan_Robson", "http://dbpedia.org/resource/Tony_Pulis", "http://dbpedia.org/resource/Jonathan_Woodgate", "Neil Warnock", "http://dbpedia.org/resource/Tony_Mowbray", "http://dbpedia.org/resource/Mark_Venus", "Aitor Karanka", "http://dbpedia.org/resource/Aitor_Karanka", "http://dbpedia.org/resource/Steve_Agnew", "--03-16", "http://dbpedia.org/resource/Garry_Monk", "http://dbpedia.org/resource/Terry_Venables"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Julius_C._Burrows> <http://dbpedia.org/property/order> ?uri } "}, "answers": ["http://dbpedia.org/resource/United_States_Senator", "from Michigan"]}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Mika_H\u00e4kkinen> <http://dbpedia.org/property/firstDriver> ?uri } "}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/archipelago> <http://dbpedia.org/resource/Papeete> . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/cross-platform> <http://dbpedia.org/resource/Cross-platform> . ?x <http://dbpedia.org/ontology/developer> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/employer> <http://dbpedia.org/resource/Birdman_Enterprises> . ?x <http://dbpedia.org/property/country> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Oskar_Blues_Brewery> <http://dbpedia.org/ontology/location> ?uri } "}, "answers": ["http://dbpedia.org/resource/Colorado", "http://dbpedia.org/resource/Longmont,_Colorado"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lovelace_Medal> <http://dbpedia.org/property/awards> ?uri . <http://dbpedia.org/resource/Norbert_Wiener> <http://dbpedia.org/ontology/award> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dick_Redding> <http://dbpedia.org/ontology/birthPlace> ?uri } "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/characters> <http://dbpedia.org/resource/Catwoman> } "}, "answers": ["1"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/hometown> <http://dbpedia.org/resource/Volos> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/services> <http://dbpedia.org/resource/Data_center> . ?x <http://dbpedia.org/ontology/service> ?uri }"}, "answers": ["12"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/fields> <http://dbpedia.org/resource/University_of_Queensland> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/South_Shore_Plaza> <http://dbpedia.org/ontology/address> ?uri } "}, "answers": ["250 Granite Street,Braintree, Massachusetts, US"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Waddy_Wachtel> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": ["http://dbpedia.org/resource/Dickie_Roberts:_Former_Child_Star", "http://dbpedia.org/resource/The_Benchwarmers", "http://dbpedia.org/resource/Up_in_Smoke", "http://dbpedia.org/resource/Bucky_Larson:_Born_to_Be_a_Star", "http://dbpedia.org/resource/The_House_Bunny", "http://dbpedia.org/resource/Strange_Wilderness", "http://dbpedia.org/resource/Grandma's_Boy_(2006_film)", "http://dbpedia.org/resource/Jimi:_All_Is_by_My_Side", "http://dbpedia.org/resource/Joe_Dirt", "http://dbpedia.org/resource/Joe_Dirt_2:_Beautiful_Loser", "http://dbpedia.org/resource/Paul_Blart:_Mall_Cop"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Celluloid_Heroes> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MusicalArtist>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/writer> <http://dbpedia.org/resource/Terry_Pratchett> . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/choreographer> <http://dbpedia.org/resource/Catarina_Lindgren> . ?x <http://dbpedia.org/ontology/formerPartner> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Niklas_Hogner", "http://dbpedia.org/resource/Anzhelika_Pylkina"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/managerClub> <http://dbpedia.org/resource/England_national_under-20_football_team> . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/guests> <http://dbpedia.org/resource/Michael_Cristofer> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/lieutenant> <http://dbpedia.org/resource/Joe_Purcell> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/President>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/majorShrine> <http://dbpedia.org/resource/Hebron> . ?x <http://dbpedia.org/property/veneratedIn> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Judaism", "http://dbpedia.org/resource/Bah\u00e1\u02bc\u00ed_Faith", "http://dbpedia.org/resource/Islam", "http://dbpedia.org/resource/Christianity"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dartington_College_of_Arts> <http://dbpedia.org/property/affiliates> ?x . ?x <http://dbpedia.org/ontology/chancellor> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Sune_Agerschou> <http://dbpedia.org/property/nationality> ?uri } "}, "answers": ["Danish"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Paul_Demi\u00e9ville> <http://dbpedia.org/property/fields> ?uri } "}, "answers": ["http://dbpedia.org/resource/Chinese_poetry", "http://dbpedia.org/resource/Buddhism"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/canonizedBy> <http://dbpedia.org/resource/Pope_Paul_VI> . }"}, "answers": ["http://dbpedia.org/resource/Ambrose_Barlow", "http://dbpedia.org/resource/David_Lewis_(Jesuit_priest)", "http://dbpedia.org/resource/Denis_Ssebuggwawo_Wasswa", "http://dbpedia.org/resource/Vicenta_Mar\u00eda_L\u00f3pez_i_Vicu\u00f1a", "http://dbpedia.org/resource/Alban_Roe", "http://dbpedia.org/resource/Alexander_Briant", "http://dbpedia.org/resource/Benildus_Roman\u00e7on", "http://dbpedia.org/resource/Saint_Kizito", "http://dbpedia.org/resource/Anne_Line", "http://dbpedia.org/resource/Andrew_Kaggwa", "http://dbpedia.org/resource/Margaret_Clitherow", "http://dbpedia.org/resource/Margaret_Ward", "http://dbpedia.org/resource/Maria_Soledad_Torres_y_Acosta", "http://dbpedia.org/resource/Teresa_Jornet_Ibars", "http://dbpedia.org/resource/Polydore_Plasden", "http://dbpedia.org/resource/John_Macias", "http://dbpedia.org/resource/Thomas_Garnet", "http://dbpedia.org/resource/Adolphus_Ludigo-Mkasa", "http://dbpedia.org/resource/Eustace_White", "http://dbpedia.org/resource/Ralph_Sherwin", "http://dbpedia.org/resource/Robert_Lawrence_(martyr)", "http://dbpedia.org/resource/Augustine_Webster", "http://dbpedia.org/resource/John_Payne_(martyr)", "http://dbpedia.org/resource/John_Rigby_(martyr)", "http://dbpedia.org/resource/John_Southworth_(martyr)", "http://dbpedia.org/resource/John_Stone_(martyr)", "http://dbpedia.org/resource/Juan_Garc\u00eda_L\u00f3pez-Rico", "http://dbpedia.org/resource/Edmund_Gennings", "http://dbpedia.org/resource/John_Jones_(martyr)", "http://dbpedia.org/resource/John_Kemble_(martyr)", "http://dbpedia.org/resource/John_Roberts_(martyr)", "http://dbpedia.org/resource/John_Wall_(priest_and_martyr)", "http://dbpedia.org/resource/John_Houghton_(martyr)", "http://dbpedia.org/resource/Achilleus_Kewanuka", "http://dbpedia.org/resource/Charbel_Makhlouf", "http://dbpedia.org/resource/Charles_Lwanga", "http://dbpedia.org/resource/Swithun_Wells", "http://dbpedia.org/resource/Beatrice_of_Silva", "http://dbpedia.org/resource/Laurence_Humphreys", "http://dbpedia.org/resource/Nicholas_Owen_(Jesuit)", "http://dbpedia.org/resource/Joseph_Mukasa_Balikuddembe", "http://dbpedia.org/resource/Nicholas_Tavelic", "http://dbpedia.org/resource/Henry_Morse", "http://dbpedia.org/resource/Henry_Walpole", "http://dbpedia.org/resource/Richard_Gwyn", "http://dbpedia.org/resource/Robert_Southwell_(priest)", "http://dbpedia.org/resource/Ambrosio_Kibuuka", "http://dbpedia.org/resource/John_Almond_(martyr)", "http://dbpedia.org/resource/Leonardo_Murialdo", "http://dbpedia.org/resource/Rafaela_Porras_Ayll\u00f3n", "http://dbpedia.org/resource/Th\u00e9r\u00e8se_Couderc", "http://dbpedia.org/resource/Edmund_Campion", "http://dbpedia.org/resource/Elizabeth_Ann_Seton", "http://dbpedia.org/resource/Julie_Billiart", "http://dbpedia.org/resource/Oliver_Plunkett", "http://dbpedia.org/resource/Dorothea_of_Montau", "http://dbpedia.org/resource/Edmund_Arrowsmith", "http://dbpedia.org/resource/Matiya_Mulumba", "http://dbpedia.org/resource/John_of_\u00c1vila__John_of_\u00c1vila__1"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/programmingLanguage> <http://dbpedia.org/resource/The_GNOME_Project> . ?x <http://dbpedia.org/property/developer> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/architect> <http://dbpedia.org/resource/Francis_Palmer_Smith> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Building>}"}, "answers": ["http://dbpedia.org/resource/American_National_Bank_Building_(Sarasota,_Florida)", "http://dbpedia.org/resource/W._W._Orr_Building", "http://dbpedia.org/resource/Episcopal_Cathedral_of_Saint_Philip_(Atlanta)", "http://dbpedia.org/resource/Hotel_Indigo_Atlanta_Midtown", "http://dbpedia.org/resource/Donaldson-Bannister_House_and_Cemetery", "http://dbpedia.org/resource/Druid_Hills_Presbyterian_Church", "http://dbpedia.org/resource/Crescent_Farm", "http://dbpedia.org/resource/Grace_United_Methodist_Church_(Atlanta)", "http://dbpedia.org/resource/William\u2013Oliver_Building"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bobby_Skinstad> <http://dbpedia.org/ontology/school> ?uri } "}, "answers": ["http://dbpedia.org/resource/Hilton_College_(South_Africa)"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/name> <http://dbpedia.org/resource/Alabama_Crimson_Tide> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/University>}"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/placeOfDeath> <http://dbpedia.org/resource/Ethics> . ?x <http://dbpedia.org/ontology/deathPlace> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/associatedBook> <http://dbpedia.org/resource/Jazz> . ?x <http://dbpedia.org/property/publisher> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Trial_of_the_Incredible_Hulk> <http://dbpedia.org/property/narrated> ?x . ?x <http://dbpedia.org/ontology/writer> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/school> <http://dbpedia.org/resource/Parsons_School_of_Design> . ?uri <http://dbpedia.org/property/director> ?x . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/placeOfDeath> <http://dbpedia.org/resource/Hyderabad> . ?x <http://dbpedia.org/property/party> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/champion> <http://dbpedia.org/resource/Kansas_City,_Missouri> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/AmericanFootballLeague>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Western_Naval_Command> <http://dbpedia.org/ontology/garrison> ?uri } "}, "answers": ["http://dbpedia.org/resource/Mumbai", "http://dbpedia.org/resource/Maharashtra"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/successor> <http://dbpedia.org/resource/Samsu-iluna> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": ["http://dbpedia.org/resource/Hammurabi"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/city> <http://dbpedia.org/resource/Maharashtra> . ?x <http://dbpedia.org/property/athletics> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/league> <http://dbpedia.org/resource/2013_National_Premier_Leagues> . ?x <http://dbpedia.org/ontology/owner> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/residence> <http://dbpedia.org/resource/Beverly_Hills,_California> . }"}, "answers": ["7"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/archipelago> <http://dbpedia.org/resource/Pacific_Ocean> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Island>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/state> <http://dbpedia.org/resource/North_Carolina> . ?x <http://dbpedia.org/property/broadcastArea> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/regionServed> <http://dbpedia.org/resource/Australia> . ?x <http://dbpedia.org/ontology/regionRegion> ?uri }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/sisterStations> <http://dbpedia.org/resource/WBCQ-FM> . ?x <http://dbpedia.org/ontology/area> ?uri }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/launchSite> <http://dbpedia.org/resource/Cape_Canaveral_Air_Force_Station> . ?x <http://dbpedia.org/property/manufacturer> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/cities> <http://dbpedia.org/resource/Kaliningrad> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Sea>}"}, "answers": ["http://dbpedia.org/resource/Baltic_Sea"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/designer> <http://dbpedia.org/resource/Ursula_H\u00e4nle> . ?x <http://dbpedia.org/ontology/origin> ?uri . }"}, "answers": ["http://dbpedia.org/resource/West_Germany"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/commandStructure> <http://dbpedia.org/resource/United_States_Department_of_the_Navy> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MilitaryUnit>}"}, "answers": ["http://dbpedia.org/resource/Assault_Craft_Unit_5", "http://dbpedia.org/resource/United_States_Marine_Corps_Military_Police", "http://dbpedia.org/resource/United_States_Marine_Corps_Reserve", "http://dbpedia.org/resource/United_States_Navy_Judge_Advocate_General's_Corps", "http://dbpedia.org/resource/United_States_Navy_Reserve", "http://dbpedia.org/resource/Master-at-arms_(United_States_Navy)", "http://dbpedia.org/resource/Bureau_of_Medicine_and_Surgery", "http://dbpedia.org/resource/Chesapeake_Bay_Flotilla"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Marvin_Bush> <http://dbpedia.org/ontology/parent> ?x . ?x <http://dbpedia.org/property/children> ?uri . }"}, "answers": ["http://dbpedia.org/resource/George_W._Bush", "http://dbpedia.org/resource/Marvin_Bush", "http://dbpedia.org/resource/Jeb_Bush", "http://dbpedia.org/resource/Dorothy_Bush_Koch", "http://dbpedia.org/resource/Neil_Bush", "http://dbpedia.org/resource/Pauline_Robinson_Bush", ""]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Temptation_Waits> <http://dbpedia.org/ontology/recordedIn> ?uri } "}, "answers": ["http://dbpedia.org/resource/Madison,_Wisconsin", "http://dbpedia.org/resource/Wisconsin", "http://dbpedia.org/resource/Smart_Studios"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Clay_Aiken> <http://dbpedia.org/property/relatives> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Claudia_Moro> <http://dbpedia.org/property/awards> ?x . ?x <http://dbpedia.org/ontology/award> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Federal_Reserve_Bank_Building_(Seattle)> <http://dbpedia.org/ontology/address> ?uri } "}, "answers": ["Seattle,Washington", "1015 2nd Avenue"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/route> <http://dbpedia.org/resource/E39> . ?uri <http://dbpedia.org/property/country> <http://dbpedia.org/resource/Europe> . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/genre> <http://dbpedia.org/resource/Rhythm_and_blues> . ?x <http://dbpedia.org/property/writer> ?uri }"}, "answers": ["http://dbpedia.org/resource/Jagger/Richards", "*Allee Willis\n*Joni Sledge\n*Lisa Walden", "http://dbpedia.org/resource/Elvis_Presley", "http://dbpedia.org/resource/Otis_Blackwell", "", "Allee Willis", "Franne Golde", "http://dbpedia.org/resource/El_DeBarge", "http://dbpedia.org/resource/Jimmy_Jam_and_Terry_Lewis", "http://dbpedia.org/resource/Barry,_Robin_&_Maurice_Gibb", "Van Morrison", "Shelly Peiken, Guy Roche, LeToya Luckett, Jermaine Dupri, Ali Vaskabi-Waski-Jones and Gipp", "James Ingram, Keith Diamond", "http://dbpedia.org/resource/Rod_Temperton", "Rod Temperton", "http://dbpedia.org/resource/Amanda_Black", "Christer Kobedi", "http://dbpedia.org/resource/Jester_Hairston", "Gilbert Moorer, Bill Sheppard", "http://dbpedia.org/resource/Van_Morrison", "http://dbpedia.org/resource/Alejandro_Lerner", "Ignacio \"Kiko\" Cibrian", "Prince", "Greg Johnston, Luke McMaster, Sherry St. Germain, Scott Jacoby", "Marquis Collins, Sisq\u00f3, Rich Shelton, Loren Hill, Kevin Veney and James Travis", "Koda Kumi, her0ism \u2022 Ziggy \u2022 Melanie Fontana", "http://dbpedia.org/resource/Brian_Wilson", "http://dbpedia.org/resource/Mike_Love", "http://dbpedia.org/resource/Travis_McCoy", "http://dbpedia.org/resource/Bobby_Womack", "Harold Payne", "*Luther Vandross\n*Marcus Miller", "Alfred McCrary, Linda McCrary", "Barry Gibb", "http://dbpedia.org/resource/Rodney_Jerkins", "Anesha Birchett", "Antea Birchett", "Delisha Thomas", "Lashawn Daniels", "http://dbpedia.org/resource/Pleasure_P", "http://dbpedia.org/resource/Rico_Love", "http://dbpedia.org/resource/Jim_Jonsin", "http://dbpedia.org/resource/Bigg_D", "http://dbpedia.org/resource/Beverley_Knight", "Neville Thomas", "Pule Pheto", "Baddar Chowdhry", "R. C. Robinson", "http://dbpedia.org/resource/Sezen_Aksu", "http://dbpedia.org/resource/Maurice_White", "http://dbpedia.org/resource/Philip_Bailey", "http://dbpedia.org/resource/Giovanna_Joyce_Imbesi", "http://dbpedia.org/resource/Narada_Michael_Walden", "Shintar\u014d Hirai", "Carolyn Hedrich", "Massimiliano Cal\u00f2, Giuseppe Romanelli, Diego Calvetti", "Lisa Peters", "William Jeffrey", "Antonio Hardy, Lisa Peters, William Jeffrey", "http://dbpedia.org/resource/Arc\u00e1ngel_(singer)", "http://dbpedia.org/resource/Maluma_(singer)", "Stiven Rojas", "Kevin Mauricio Jim\u00e9nez Londo\u00f1o", "Bryan Snaider Lezcano", "Andr\u00e9s Uribe", "Joel Antonio L\u00f3pez", "http://dbpedia.org/resource/Jimi_Hendrix", "Bruce Springsteen", "http://dbpedia.org/resource/Billy_Guy", "Charles Kipps", "http://dbpedia.org/resource/Hal_David", "http://dbpedia.org/resource/Burt_Bacharach", "*Burt Bacharach\n*Hal David", "http://dbpedia.org/resource/Barry_White", "http://dbpedia.org/resource/Barry_Mann", "http://dbpedia.org/resource/Cynthia_Weil", "http://dbpedia.org/resource/Phil_Spector", "http://dbpedia.org/resource/Bobby_Charles", "Fats Domino", "Dave Bartholomew", "Kellee Patterson, MC Hammer, Maurice White, Sheldon Reynolds, Verdine White", "Julian Otto", "Misia, Toshiaki Matsumoto, Hiroshi Matsui", "Momo \"Mocha\" N", "http://dbpedia.org/resource/Robert_Lee_Parker", "http://dbpedia.org/resource/Rufus_Thomas", "http://dbpedia.org/resource/Geoff_Stephens", "http://dbpedia.org/resource/Roger_Cook_(songwriter)", "http://dbpedia.org/resource/Roger_Greenaway", "http://dbpedia.org/resource/Phil_Phillips", "http://dbpedia.org/resource/George_Khoury_(record_producer)", "http://dbpedia.org/resource/Sylvia_Moy", "http://dbpedia.org/resource/Stevie_Wonder", "http://dbpedia.org/resource/Henry_Cosby", "D-Dot Angelettie; P. Brown; Jack Knight; Ron Lawrence; Keith Murray; Robert Rans; Norma Jean Wright", "Georges Padey, Kore & Skalp, M. Pokora and Da Team", "http://dbpedia.org/resource/Ivory_Joe_Hunter", "http://dbpedia.org/resource/Thomas_McClary_(musician)", "http://dbpedia.org/resource/Paul_McCartney", "Django Reinhardt, Stephane Grappelli, MacRae, Israel Cruz", "http://dbpedia.org/resource/Carl_Sturken_and_Evan_Rogers", "Chuck Jackson, Marvin Yancy, Natalie Cole", "*Azar Lawrence\n*Beloyd Taylor\n*Maurice White", "Greg Wright", "Karin Patterson", "Vince Willis", "http://dbpedia.org/resource/Holland\u2013Dozier\u2013Holland", "http://dbpedia.org/resource/Berry_Gordy,_Jr.", "Otis Williams", "Eddie Kendricks", "http://dbpedia.org/resource/Billy_Crawford", "Koda Kumi", "http://dbpedia.org/resource/Jade_MacRae", "http://dbpedia.org/resource/Israel_(musician)", "http://dbpedia.org/resource/Eugene_Record", "http://dbpedia.org/resource/Billy_Davis_(songwriter)", "http://dbpedia.org/resource/William_%22Mickey%22_Stevenson", "http://dbpedia.org/resource/Clarence_Paul", "Barney Ales", "http://dbpedia.org/resource/Bernie_Taupin", "http://dbpedia.org/resource/Elton_John", "http://dbpedia.org/resource/Andre_3000", "http://dbpedia.org/resource/Big_Boi", "Sam Cooke", "http://dbpedia.org/resource/Cris_Morena", "http://dbpedia.org/resource/Carlos_Nilson", "http://dbpedia.org/resource/Maurice_Gibb", "http://dbpedia.org/resource/Barry_Gibb", "http://dbpedia.org/resource/Robin_Gibb", "http://dbpedia.org/resource/Frank_Wilson_(musician)", "Vincent DiMirco", "http://dbpedia.org/resource/Allen_Toussaint", "Ben Raleigh, Dave Linden", "William \"Billy\" Beck, Leroy \"Sugarfoot\" Bonner, Marshall \"Rock\" Jones, Ralph \"Pee Wee\" Middlebrooks, Marvin Pierce, Clarence \"Satch\" Satchell, James \"Diamond\" Williams", "* :de:Hans Bradtke\n* Mike Stoller", "* Jerry Leiber\n* Mike Stoller", "http://dbpedia.org/resource/Angela_Winbush", "http://dbpedia.org/resource/Ren\u00e9_Moore", "http://dbpedia.org/resource/Hitomi_(singer)", "http://dbpedia.org/resource/Faze_(musician)", "Dickie Goodman, Sal Passantino", "J.B. Jefferson, C.B. Simmons, R. Roebuck", "Jefferson, Roebuck", "Jefferson, Simmons, Roebuck", "http://dbpedia.org/resource/Joe_Tex", "http://dbpedia.org/resource/Buddy_Killen", "http://dbpedia.org/resource/Warren_%22Pete%22_Moore", "http://dbpedia.org/resource/Marv_Tarplin", "http://dbpedia.org/resource/Smokey_Robinson", "http://dbpedia.org/resource/Bobby_Rogers", "Peter Andre, Dantae Johnson, Nait Rawknait Masuku", "http://dbpedia.org/resource/Adam_Pallin", "http://dbpedia.org/resource/Joey_Badass", "http://dbpedia.org/resource/Kirk_Knight", "http://dbpedia.org/resource/Powers_Pleasant", "Blanche Carter", "Rex Zamor, Noble Prince Hart", "http://dbpedia.org/resource/Harvey_Fuqua", "http://dbpedia.org/resource/Bo_Diddley", "http://dbpedia.org/resource/Willie_Dixon", "http://dbpedia.org/resource/Ellas_McDaniel", "http://dbpedia.org/resource/Donna_Summer", "Donna Summer", "Jerome Anthony Matthews, Reginald Marcellous Rucker", "http://dbpedia.org/resource/El_Guincho", "http://dbpedia.org/resource/Rosal\u00eda_(singer)", "Utada, C. \"Tricky\" Stewart", "* Mariana Esp\u00f3sito\n* Daniel Amarise Diaz\n* Mart\u00edn D'Agosto\n* Mauro De Tommaso", "Narada Michael Walden, Jeffrey Cohen", "David Bowie", "http://dbpedia.org/resource/Tsunku", "Freddie Perren, Christine Yarian", "Prince, Andre Cymone", "http://dbpedia.org/resource/Dan_Penn", "http://dbpedia.org/resource/Chips_Moman", "Carl Davis, Eugene Record", "http://dbpedia.org/resource/Norman_Whitfield", "Edward Holland Jr.", "and Eddie Kendricks", "http://dbpedia.org/resource/George_Jackson_(songwriter)", "*Mayme Watts\n*Robert Mosely", "*Maurice White\n*Verdine White", "http://dbpedia.org/resource/Buckwild_(music_producer)", "http://dbpedia.org/resource/Redman_(rapper)", "http://dbpedia.org/resource/Method_Man", "Warren Moore", "Robert Rogers", "Jessica Cornish, George Astasio, Jason Pebworth, Jon Shave, Carl Haley, Greg Haley, Rafael Haley, Charlie Platt", "Maurice White, Gregory Curtis", "http://dbpedia.org/resource/Chris_Brown", "1.0", "Michael Hernandez", "Caleb Nordelus", "Christopher Dotson", "Michael Dorsey", "Lyrica Anderson", "Bobby Joseph Turner Jr.", "http://dbpedia.org/resource/Walter_Jacobs", "Lance Finney, Willie Schofield, Bob West", "Billy Osborne, Zane Giles", "David Foster, Brenda Russell and Maurice White", "Rodney Jerkins, Danny Nixon, LaShawn Daniels, Fred Jerkins III, Delisha Thomas", "http://dbpedia.org/resource/Ray_Parker_Jr.", "http://dbpedia.org/resource/Chaka_Khan", "Reginald Hall, Joe Jones", "Rick James", "Luther Vandross, Skip Anderson", "http://dbpedia.org/resource/David_Porter_(musician)", "http://dbpedia.org/resource/Isaac_Hayes", "Antonio Carmona, Samuel Medina, Jan Nilson, Martha Pesante, Yotuel Romero", "http://dbpedia.org/resource/Marvin_Gaye", "http://dbpedia.org/resource/Sheila_E.", "*Dick Taylor", "Ivan Neville", "http://dbpedia.org/resource/Clarence_%22Frogman%22_Henry", "http://dbpedia.org/resource/Bill_Withers", "http://dbpedia.org/resource/Eddie_Holland", "Norman Whitfield", "Eddie Holland", "Francis Lai, Moos, Pascal Castro", "Bachir Baccour, Pascal Boniani Koeu, Adila Sedraia, Axel Tony", "http://dbpedia.org/resource/Ayra_Starr", "Oluwadamilare Aderibigbe", "http://dbpedia.org/resource/Sari_Abboud", "http://dbpedia.org/resource/Jeff_Barry", "http://dbpedia.org/resource/Ellie_Greenwich", "http://dbpedia.org/resource/Michael_Henderson", "http://dbpedia.org/resource/Yoo_Young-jin", "http://dbpedia.org/resource/Yolanda_Adams", "http://dbpedia.org/resource/Drathoven", "Kato", "Komori", "H. Kimura", "Miliyah Kato", "H. Kon", "M. Takesue", "Minoru Komori", "Shinnosuk8", "Twigy", "Sarah De Bono, J Cabrera", "P-Square", "Composition:", "Lyrics:", "Arrangement:", "http://dbpedia.org/resource/Beyonc\u00e9", "http://dbpedia.org/resource/Frankie_Beverly", "http://dbpedia.org/resource/Larry_Blackmon", "Jerome Temple", "Tomi Jenkins", "Ellas McDaniel Bo Diddley", "Misia, Chihiro Kurosu, Jun Sasaki", "* Maurice White\n* Al McKay", "Han Sang Won", "http://dbpedia.org/resource/Teddy_Powell", "Leonard Whitcup", "http://dbpedia.org/resource/Ed_Townsend", "Arthur Brooks, Richard Brooks and Jerry Butler", "http://dbpedia.org/resource/Kanye_West", "http://dbpedia.org/resource/Christopher_Breaux", "H\u00f8iberg Brinsmead", "Alex Gottlieb/Fred Karger/Ben Weisman", "Traditional, arranged by Brook Benton", "traditional, arr. Johnny Cash", "* Aubrey Graham\n* Jhen\u00e9 Chilombo\n* Noah Shebib\n* Jason Beck", "Nelly Furtado, Alex Cuba, James Bryan", "Tom Browne, Toni Smith", "http://dbpedia.org/resource/Johnny_Mercer", "Daisuke Imai", "Takashi Tsushimi", "D.A.I", "Jun Natsume", "* Anita Blay\n* Edvard F\u00f8rre Erfjord\n* Iain James\n* Henrik Michelsen\n* Camille Purcell\n* Sean Paul Henriques", "http://dbpedia.org/resource/2nd_II_None", "http://dbpedia.org/resource/DJ_Quik", "http://dbpedia.org/resource/El_Debarge", "http://dbpedia.org/resource/Mike_d'Abo", "Koda Kumi, Katsumi Ohnishi", "http://dbpedia.org/resource/Jay_McShann", "*Wes Farrell\n*Bert Berns", "Starboy Nathan, Clayton Morrison, Jermaine Scott, Ali Tennant", "http://dbpedia.org/resource/Michel_Legrand", "Stevie Wonder", "Donald Baldwin, Jeffrey Bowen, Lionel Richie", "http://dbpedia.org/resource/Sanja_Vu\u010di\u0107", "http://dbpedia.org/resource/Nemanja_Antoni\u0107", "Kosana Stoji\u0107", "http://dbpedia.org/resource/Misia_(singer)", "Andrew Tierney/ Michael Tierney/ Vince DeGiorgio", "http://dbpedia.org/resource/Barry_Eastmond", "Jolyon Skinner", "Terry Stubbs, Derrick Pearson, Jonathan Burks", "http://dbpedia.org/resource/Barbara_Acklin", "MC Hammer", "http://dbpedia.org/resource/Bernie_Worrell", "http://dbpedia.org/resource/George_Clinton_(funk_musician)", "http://dbpedia.org/resource/Bootsy_Collins", "Charles Simmons", "Bruce Hawes", "Joseph B. Jefferson", "Joseph B. Jefferson, Bruce Hawes, and Charles Simmons", "http://dbpedia.org/resource/Daniel_Wilson_(musician)", "http://dbpedia.org/resource/Joji_(musician)", "http://dbpedia.org/resource/Justin_Raisen", "Luke Niccoli", "Skylark", "http://dbpedia.org/resource/Leon_Payne", "http://dbpedia.org/resource/Jack_Splash", "http://dbpedia.org/resource/Cee_Lo_Green", "Keshia Chant\u00e9, Adam Alexander, Jay Botalla, Alex Vujic, Josh Cohen & Alex Greggs", "http://dbpedia.org/resource/Hiro_(music_producer)", "Kumi Koda", "Franne Golde, Dennis Lambert, Andy Goldmark", "Jordan Davis", "Jacob Davis", "Jason Gantt", "http://dbpedia.org/resource/Brian_Holland", "http://dbpedia.org/resource/Lamont_Dozier", "http://dbpedia.org/resource/Missy_Elliott", "Howard Hewett", "Dana L. Meyers", "http://dbpedia.org/resource/Michael_McDonald_(singer)", "http://dbpedia.org/resource/Joe_Seneca", "*Marriott\n*Lane", "Tony Bruno", "Bruno, Bellini", "Tony Bruno, Brenda Bruno, Sanford Bellini", "George Davis", "Lee Diamond", "* Avril Lavigne\n* Melissa Bel\n* Ryan Cabrera\n* Johan Carlsson\n* Justin Gray", "Francisco Bautista, Jr., David Sanchez, Claude Kelly, Nathan Perez, Steve Valdez", "http://dbpedia.org/resource/Kenny_Gamble_&_Leon_Huff", "Ben E. King, James Bethea", "*Dino Fekaris\n*Freddie Perren", "Robert Carr, Johnny Mitchell, Hy Weiss", "James Phillips", "Jermaine Dupri", "Delmar Arnaud", "Melvyn Matthews", "http://dbpedia.org/resource/Luther_Dixon", "http://dbpedia.org/resource/Al_Cleveland", "http://dbpedia.org/resource/Renaldo_Benson", "http://dbpedia.org/resource/Jerry_Leiber_and_Mike_Stoller", "Fred Jay, Art Harris", "http://dbpedia.org/resource/Hamish_Stuart", "http://dbpedia.org/resource/Ned_Doheny", "William \"Mickey\" Stevenson, Alphonso Higdon", "* Danny Schofield\n* Ali Gatie\n* Samuel Wishkoski", "http://dbpedia.org/resource/Daniel_Jones_(musician)", "http://dbpedia.org/resource/Jim_Beanz", "http://dbpedia.org/resource/Timbaland", "http://dbpedia.org/resource/Ray_Whitley_(songwriter)", "Lay, CC", "http://dbpedia.org/resource/Sam_Dew", "http://dbpedia.org/resource/Matt_Hales", "http://dbpedia.org/resource/Akon", "http://dbpedia.org/resource/Giorgio_Tuinfort", "http://dbpedia.org/resource/Mase", "http://dbpedia.org/resource/Sean_Combs", "Curtis Mayfield", "Nashiem Myrick", "Keisha Spivey", "http://dbpedia.org/resource/Rod_Argent", "Kamaljeet Singh Jhooti, J-Remy, Bobby Bass", "http://dbpedia.org/resource/George_Pajon", "http://dbpedia.org/resource/Taboo_(rapper)", "http://dbpedia.org/resource/Will.i.am", "http://dbpedia.org/resource/Apl.de.ap", "http://dbpedia.org/resource/The_Game_(rapper)", "http://dbpedia.org/resource/ASAP_Rocky", "http://dbpedia.org/resource/DJ_Khaled", "http://dbpedia.org/resource/Printz_Board", "http://dbpedia.org/resource/Justin_Timberlake", "Michael Fratantuno", "http://dbpedia.org/resource/Ray_Davies", "E. McDaniels Bo Diddley", "http://dbpedia.org/resource/Dave_Bartholomew", "http://dbpedia.org/resource/Fats_Domino", "Dave \"Curlee\" Williams", "Dave \"Curlee\" Williams, James Faye \"Roy\" Hall", "http://dbpedia.org/resource/Deke_Richards", "http://dbpedia.org/resource/Sherlie_Matthews", "http://dbpedia.org/resource/Porl_Thompson", "http://dbpedia.org/resource/Boris_Williams", "http://dbpedia.org/resource/Simon_Gallup", "http://dbpedia.org/resource/Robert_Smith_(musician)", "http://dbpedia.org/resource/Lol_Tolhurst", "http://dbpedia.org/resource/Papa_Dee_Allen", "http://dbpedia.org/resource/Harold_Ray_Brown", "http://dbpedia.org/resource/B._B._Dickerson", "http://dbpedia.org/resource/Charles_Miller_(musician)", "http://dbpedia.org/resource/Howard_E._Scott", "http://dbpedia.org/resource/Jerry_Goldstein_(producer)", "http://dbpedia.org/resource/Lee_Oskar", "http://dbpedia.org/resource/Lonnie_Jordan", "Papa Dee Allen, Harold Ray Brown, B. B. Dickerson, Lonnie Jordan, Charles Miller, Lee Oskar, Howard E. Scott", "http://dbpedia.org/resource/Jason_Derulo", "http://dbpedia.org/resource/John_Ryan_(musician)", "http://dbpedia.org/resource/Sean_Douglas_(songwriter)", "http://dbpedia.org/resource/Snoop_Dogg", "http://dbpedia.org/resource/Ricky_Reed", "http://dbpedia.org/resource/Andreas_Schuller", "Jacob Kasher", "Joe Spargur", "Crowder", "David Crowder", "Solomon Olds", "Rebecca Lauren Olds", "* David Crowder\n* Rebecca Lauren Olds\n* Solomon Olds", "http://dbpedia.org/resource/Arnthor_Birgisson", "Ali Tennant", "http://dbpedia.org/resource/Arthur_Alexander", "Natsumi Watanabe, Bounceback", "Cynthia Wilson, D. Rodriguez, Kataya Anderson", "Shanice Knox, Mark A. Knox", "T. Minister, R. Garcia", "http://dbpedia.org/resource/Jerry_Wexler", "Bert Berns", "Solomon Burke", "* J. R. Bailey\n* Rudy Clark\n* Ken Williams", "* J.R. Bailey\n* Rudy Clark\n* Ken Williams", "Philip Bailey, Attala Zane Giles, Allee Willis", "http://dbpedia.org/resource/Waldo_Holmes", "Jimmy Duncan, Bill Farley", "http://dbpedia.org/resource/Prince_(musician)", "http://dbpedia.org/resource/Bunny_Sigler", "http://dbpedia.org/resource/Carol_Davis_(songwriter)", "http://dbpedia.org/resource/Scott_Walker_(singer)", "http://dbpedia.org/resource/Paul_Gayten", "Burt Bacharach, Hal David", "Burt Bacharach and Hal David", "Luther Vandross, Marcus Miller", "http://dbpedia.org/resource/Isley_Brothers", "http://dbpedia.org/resource/Chris_Jasper", "http://dbpedia.org/resource/R._Kelly", "Chris Jasper", "Ernie Isley", "Marvin Isley", "O'Kelly Isley", "Ronald Isley", "Rudolph Isley", "Dessie Rozier", "Rufus Thomas", "Len Ron Hanks, Zane Grey", "David Blake, Adina Howard", "http://dbpedia.org/resource/Bobby_Troup", "http://dbpedia.org/resource/Bernie_Lowe", "http://dbpedia.org/resource/Kal_Mann", "Jerry Leiber and Mike Stoller", "Kal Mann and Bernie Lowe", "http://dbpedia.org/resource/Herb_Lance", "Johnny Wallace", "James Brown", "http://dbpedia.org/resource/Richard_Morris_(songwriter)", "http://dbpedia.org/resource/Buck_Ram", "* Henry Glover\n* Lois Mann", "http://dbpedia.org/resource/Sam_Cooke", "http://dbpedia.org/resource/Debbie_Gibson", "L Tate, Joe Morris", "http://dbpedia.org/resource/Joe_Little_III", "Mike Ferguson", "Edwin \"Tony\" Nicholas", "Ada Edolo", "Tonye Garrick", "Errol Brown, Tony Wilson", "http://dbpedia.org/resource/Ivy_Queen", "Pesante", "*Shawn Carter\n*Kanye West\n*John Lennon\n*Paul McCartney", "Teemu Brunila", "http://dbpedia.org/resource/Amir_Tataloo", "Roberto Carlos", "Joe Simon, Raeford Gerald", "http://dbpedia.org/resource/Marcus_Miller", "http://dbpedia.org/resource/Luther_Vandross", "Derrick Martin", "Derrick Joshua", "http://dbpedia.org/resource/Nate_Dogg", "http://dbpedia.org/resource/Eve_(entertainer)", "Johnny Taylor, Gilbert Moorer, Bill Sheppard", "http://dbpedia.org/resource/Teddy_Riley_(producer)", "Michael Jackson", "Alfred Smith, Joe Hooven, Jerry Winn", "Smith, Hooven, Winn", "Douglas Jack Agu", "Michael Elemba", "Oluwaseyi Odedere", "*Steve Winwood\n*Spencer Davis\n*Muff Winwood", "Jaron Boyer", "Michael Tyler", "Josh Mirenda", "Keni St. Lewis", "http://dbpedia.org/resource/Keisha_Buchanan", "http://dbpedia.org/resource/Ronnie_White", "http://dbpedia.org/resource/The_Pipettes", "Buchanan", "Jenkinson", "McDonald", "Toussaint", "Nicole Jenkinson", "http://dbpedia.org/resource/Tinie_Tempah", "http://dbpedia.org/resource/Zara_Larsson", "Aleisha Bennett", "Tony Hester", "Chris Barbosa, Ed Chisholm", "http://dbpedia.org/resource/David_Eriksen", "http://dbpedia.org/resource/Wayne_Hector", "Michael Stokes", "Emanuel \"E.J.\" Johnson", "Terry Lewis, Melanie Andrews, Janet Jackson", "Jerry Peters, Anita Poree", "http://dbpedia.org/resource/Anthony_Newley", "http://dbpedia.org/resource/John_Barry_(composer)", "http://dbpedia.org/resource/Leslie_Bricusse", "Fraser T Smith", "Kimbra Johnson", "http://dbpedia.org/resource/Ike_Turner", "* Sol\u00e1na Rowe\n* Carlos Mu\u00f1oz\n* Carter Lang\n* Christopher Ruelas\n* Jacob Collier", "http://dbpedia.org/resource/Clint_Ballard,_Jr.", "http://dbpedia.org/resource/Fred_Tobias", "Brian Wilson", "Love", "Mike Love", "Wilson", "* Brian Wilson\n* Mike Love", "Tony Asher", "http://dbpedia.org/resource/John_Marascalco", "http://dbpedia.org/resource/George_Motola", "http://dbpedia.org/resource/Dave_Bayley", "http://dbpedia.org/resource/Rudy_Clark", "http://dbpedia.org/resource/Elliot_Willensky", "http://dbpedia.org/resource/Lennon\u2013McCartney", "http://dbpedia.org/resource/Chad_Hugo", "http://dbpedia.org/resource/Sleepy_Brown", "http://dbpedia.org/resource/Pharrell_Williams", "Denise LaSalle", "Frances Miller", "Francis Miler", "Nick Jonas", "Andy Marvel", "Jonas Jeberg", "Jason Desrouleaux", "Marlin \"Hookman\" Bonds", "Kwon Yun-jung, Lee Jae-myoung", "http://dbpedia.org/resource/Bryson_Tiller", "http://dbpedia.org/resource/Kelly_Rowland", "http://dbpedia.org/resource/Fred_Jerkins_III", "http://dbpedia.org/resource/Summer_Walker", "http://dbpedia.org/resource/LaShawn_Daniels", "http://dbpedia.org/resource/LaTavia_Roberson", "http://dbpedia.org/resource/LeToya_Luckett", "http://dbpedia.org/resource/London_on_da_Track", "Cameron Griffin", "Roark Bailey", "Aubrey Robinson", "Brown, Terry", "* James Brown\n* Johnny Terry", "http://dbpedia.org/resource/Harry_Wayne_Casey", "http://dbpedia.org/resource/Richard_Finch_(musician)", "Harry Wayne Casey", "Richard Finch", "Harry Wayne Casey / Richard Finch", "Damon Albarn, Bobby Womack", "Georgia Dobbins, William Garrett, Freddie Gorman, Brian Holland, Robert Bateman", "*Georgia Dobbins\n*William Garrett\n*Brianbert", "Percy Mayfield", "Ferdinand Washington, Don Robey", "http://dbpedia.org/resource/Tony_Joe_White", "http://dbpedia.org/resource/Marilyn_McLeod", "http://dbpedia.org/resource/Pam_Sawyer", "* Daniel Breland\n* Julian Bunetta\n* David Garcia\n* Jacob Durrett\n* Jessie Jo Dillon\n* Kyle Fishman\n* Michael Hardy\n* Rocky Block\n* Thomas Rhett", "* Courtney Shenade Salter\n* Anthony Parrino\n* Jai'Len Josey\n* Bryan-Michael Cox\n* Jermaine Dupri\n* Johnt\u00e1 Austin", "* Melissa Jefferson\n* Melissa Elliott\n* Theron Thomas\n* Raymond Scott\n* Dan Farber\n* Eric Frederic\n* Antonio Cuna\n* Tobias Wincorn", "Werner Scharfenberger, Fini Busch", "http://dbpedia.org/resource/Roy_Alfred", "Del Serino", "Sam Cooke, J. W. Alexander", "http://dbpedia.org/resource/Frankie_J", "http://dbpedia.org/resource/Chamillionaire", "http://dbpedia.org/resource/Play-N-Skillz", "http://dbpedia.org/resource/Mannie_Fresh", "http://dbpedia.org/resource/Ernie_Isley", "http://dbpedia.org/resource/Marvin_Isley", "http://dbpedia.org/resource/O'Kelly_Isley_Jr.", "http://dbpedia.org/resource/Ronald_Isley", "http://dbpedia.org/resource/Rudolph_Isley", "Isley Jr.", "Ron. Isley", "Rud. Isley", "http://dbpedia.org/resource/Billy_Page", "http://dbpedia.org/resource/Billy_Ward_(singer)", "* Billy Ward\n* Rose Marks", "http://dbpedia.org/resource/Jamie_(singer)", "http://dbpedia.org/resource/Park_Jin-young", "Jinri", "http://dbpedia.org/resource/Harlan_Howard", "* Shaffer Smith\n* Jeremy Phillip Felton\n* James Mtume\n* Larry Troutman\n* Leon Youngblood Jr.\n* Roger\n* Shirley Murdock\n* Teddy Pena", "http://dbpedia.org/resource/Robbie_Robertson", "http://dbpedia.org/resource/Ashford_&_Simpson", "Robert Sharp Jr., Teddy Powell", "http://dbpedia.org/resource/Paul_Politi", "http://dbpedia.org/resource/Matt_Bellamy", "http://dbpedia.org/resource/Irving_Gordon", "http://dbpedia.org/resource/Halle_Bailey", "http://dbpedia.org/resource/Disclosure_(band)", "http://dbpedia.org/resource/Chloe_Bailey", "Johnny Ruffo, Cliff Raux, Michael Tan, Gary Pinto", "http://dbpedia.org/resource/Sister_Rosetta_Tharpe", "http://dbpedia.org/resource/Ari_Lennox", "Justin Bryant", "Kojo Asamoah", "Nicholas Venezia", "Oliver Bergqvist", "http://dbpedia.org/resource/Willie_Denson", "http://dbpedia.org/resource/Ray_Charles", "* Brian Holland\n* Daniel Rey\n* Dee Dee King\n* Freddie Gorman\n* Georgia Dobbins\n* Kal Mann\n* Robert Bateman\n* William Garrett", "http://dbpedia.org/resource/Emtee_(rapper)", "http://dbpedia.org/resource/Tiwa_Savage", "Gregg Diamond", "Davide Romani, Mauro Malavasi, Tanyayette Willoughby", "http://dbpedia.org/resource/Berry_Gordy_Jr.", "http://dbpedia.org/resource/Gladys_Horton", "http://dbpedia.org/resource/Robert_Bateman_(songwriter)", "http://dbpedia.org/resource/Mickey_Stevenson", "Anthony George Anderson, Dane Deviller, Sean Hosein, Adam Hurstfield, Steven Smith", "Gerry Goffin and Carole King", "http://dbpedia.org/resource/Giorgio_Moroder", "http://dbpedia.org/resource/Pete_Bellotte", "http://dbpedia.org/resource/Nat_Adderley,_Jr.", "Luther Vandross", "Greg Perry, Barney Perkins, and General Norman Johnson", "Lemar Obika, Sam Watters, Jim Jonsin and Louis Biancaniello", "Scott Carter", "Tyrese Gibson", "Trevor Jobs", "Barry White", "E. Holland, Jr., B. Holland", "Nick Zesses, Dino Fekaris", "http://dbpedia.org/resource/Tiziano_Ferro", "Benny Latimore", "Benny Latimore, Dallas Austin", "http://dbpedia.org/resource/Gamble_and_Huff", "Bobby Womack, Darryl Carter", "http://dbpedia.org/resource/Jude_Gitamondoc", "Chris Rene, Gabriel Rene, Gina Rene, Claude Kelly, Chuck Harmony", "Larry Marcus", "Gordon", "Felix Cavaliere and Eddie Brigati", "Ike Turner", "Buck Ram", "Tristin Sigerson, Davitt Sigerson, and Bob Thiele", "Bonnie Pink", "http://dbpedia.org/resource/Terry_Thompson_(songwriter)", "Terry Thompson", "http://dbpedia.org/resource/Tom_Petty", "http://dbpedia.org/resource/Mike_Campbell_(musician)", "http://dbpedia.org/resource/Stanley_Benton", "Smith, T.", "Broadus, C.", "Camon, D.", "Curry, T.", "Hale, N.", "Lamb, D.", "Parker, D.", "Stanley Benton", "Thiam, A.", "Young, A.", "Tarkan, Devrim Karao\u011flu, Pete \"Boxta\" Martin, Elijah Wells, Lionel Bermingham", "http://dbpedia.org/resource/Wes_Farrell", "http://dbpedia.org/resource/Belly_(rapper)", "http://dbpedia.org/resource/Massari", "http://dbpedia.org/resource/Ovi_Bistriceanu", "http://dbpedia.org/resource/Tony_Sal", "http://dbpedia.org/resource/Marvin_Hamlisch", "http://dbpedia.org/resource/Carole_Bayer_Sager", "http://dbpedia.org/resource/Donnie_Fritts", "http://dbpedia.org/resource/Eddie_Hinton", "http://dbpedia.org/resource/Chuck_Berry", "Chuck Berry", "Elizabeth Somerville", "Megan Markwick", "Negin, Brian Kierulf, Joshua Schwartz", "http://dbpedia.org/resource/Nil_Karaibrahimgil", "Nil Karaibrahimgil", "Tufan Bayraktar, Ozan \u00c7olako\u011flu, Serkan Din\u00e7er", "Verdine White, Robert White", "http://dbpedia.org/resource/Van_McCoy", "http://dbpedia.org/resource/Marlon_Jackson", "Alonzo Tucker, Jackie Wilson", "Frankie Beverly.", "Al McKay and Maurice White", "IAM", "Akhenaton", "http://dbpedia.org/resource/J-Flexx", "Tiwatope Savage", "http://dbpedia.org/resource/Little_Walter", "http://dbpedia.org/resource/Tre_Jean-Marie", "http://dbpedia.org/resource/A*M*E", "http://dbpedia.org/resource/MNEK", "http://dbpedia.org/resource/Blonde_(duo)", "Bowman", "Campbell", "Jean-Marie", "Emenike", "April Bender", "Brayton Bowman", "Donna Simmal", "Drew Moore", "Ryan Campbell", "http://dbpedia.org/resource/Jackie_DeShannon", "http://dbpedia.org/resource/Sharon_Sheeley", "G-Dragon, Jimmy Th\u00f6rnfeldt", "http://dbpedia.org/resource/Yo_Yo_Honey_Singh,_Diljit_Dosanjh", "Nicolas Brisson, Diam's, DJ Ma\u00eetre, Elio, Dominique Gauriaud, William Geslin, Jurij Prette, Tefa, Vitaa, Micha\u00ebl Youn", "Lecrae Moore, Justin Scott, Ashthon Jones, Lincoln Morris, Torrence Esmond, Khalil Abdul-Rahman, Pran Injeti, Columbus T-Smith, Daniel Tannenbaum", "* Meghan Trainor\n* Eric Frederic\n* Jacob Kasher Hindlin\n* Jason Desrouleaux\n* Peter Svensson", "http://dbpedia.org/resource/David_Lasley", "http://dbpedia.org/resource/Roxanne_Seeman", "Kendrick Duckworth", "Maurice Jordan", "Clifford Harris", "Victoria Mon\u00e9t McCants", "Bobby Ray Simmons", "Lou Baxter, Johnny Moore", "Kanata Okajima & Sara Sakurai", "http://dbpedia.org/resource/Al_Green", "http://dbpedia.org/resource/Al_Jackson_Jr.", "http://dbpedia.org/resource/Willie_Mitchell_(musician)", "Jason Brett Levine, Jonathan David Levine", "http://dbpedia.org/resource/Tony_Macaulay", "R. Kelly", "http://dbpedia.org/resource/Alex_Hope_(songwriter)", "http://dbpedia.org/resource/M-Phazes", "http://dbpedia.org/resource/Ruel_(singer)", "http://dbpedia.org/resource/Amy_Winehouse", "Kamel Houairi, Vinia Mojica,", "M. Darmon, F. Henri,", "Nicolas Vadon", "David James Mattis", "http://dbpedia.org/resource/Savan_Kotecha", "http://dbpedia.org/resource/Steve_Mac", "http://dbpedia.org/resource/Richard_Rodgers", "http://dbpedia.org/resource/Oscar_Hammerstein_II", "Andrew Frampton", "*Mafly\n*ZigZagNote", "http://dbpedia.org/resource/Greg_Champion", "http://dbpedia.org/resource/Stan_Jones_(songwriter)", "Champion", "Wayne Burt", "Burt", "Frank F. Robinson", "*Solomon Linda", "*Solomon Linda\n*Hugo Peretti\n*Luigi Creatore\n*George David Weiss\n*Albert Stanton", "*Hugo Peretti\n*Luigi Creatore\n*George David Weiss\n*Albert Stanton\n*Solomon Linda", "http://dbpedia.org/resource/Gerry_Goffin", "http://dbpedia.org/resource/Carole_King", "http://dbpedia.org/resource/Georges_Aber", "French adaptation:", "Verbal and Taku Takahashi", "http://dbpedia.org/resource/Curtis_Mayfield", "http://dbpedia.org/resource/Lincoln_Chase", "Lincoln Chase", "Shirley Ellis", "http://dbpedia.org/resource/Damon_Albarn", "http://dbpedia.org/resource/Remi_Kabaka_Jr.", "http://dbpedia.org/resource/6lack", "Damon Albarn", "http://dbpedia.org/resource/Dorothy_Fields", "http://dbpedia.org/resource/Nickolas_Ashford", "http://dbpedia.org/resource/Valerie_Simpson", "http://dbpedia.org/resource/Cy_Coleman", "http://dbpedia.org/resource/Spooner_Oldham", "http://dbpedia.org/resource/Dave_Appell", "Jimmy McCracklin, Bob Garlic", "*Johnny Otis\n*Hank Ballard\n*Etta James", "http://dbpedia.org/resource/Ernie_Maresca", "Gerry Roslie", "http://dbpedia.org/resource/Lotti_Golden", "http://dbpedia.org/resource/Richard_Scher", "Warren Davis", "Charles Patrick", "George Malone", "Jimmy Jam & Terry Lewis", "Lemar Obika, Claude Kelly, Tariq Belrouge", "Skip Scarborough, Jerry Peters, Anita Poree", "http://dbpedia.org/resource/Chuck_Willis", "O'Kelly Isley, Jr.", "Alan Jansson, Chris Ma'ia'i, Mike Paton", "Karen Poole, Lene Nystr\u00f8m, Lucas Secon", "Henry Glover and Syd Nathan", "Toshinori Yonekura", "http://dbpedia.org/resource/Phil_Collins", "Kenny Gamble, Cary Gilbert, Leon Huff", "Sam Mizell, Matthew West", "Don Covay, John Berry", "http://dbpedia.org/resource/Beyonce_Knowles", "http://dbpedia.org/resource/OZ_(record_producer)", "http://dbpedia.org/resource/Scott_Storch", "http://dbpedia.org/resource/Nija_Charles", "http://dbpedia.org/resource/Ella_Mai", "Williams", "Andrew Franklin", "Austin Schindler", "Eyobed Getachew", "Robert Waller", "http://dbpedia.org/resource/Mark_Batson", "http://dbpedia.org/resource/Alicia_Keys", "http://dbpedia.org/resource/Harold_Lilly_(songwriter)", "http://dbpedia.org/resource/Rudy_Toombs", "http://dbpedia.org/resource/Eddie_Floyd", "Steve Cropper", "http://dbpedia.org/resource/Marcella_Araica", "http://dbpedia.org/resource/Danja_(musician)", "Missy Elliott", "http://dbpedia.org/resource/Daryl_Simmons", "Toru Watanabe, h-wonder", "Elisabeth Withers, Gordon Chambers, Barry Eastmond", "http://dbpedia.org/resource/John_McLaughlin_(musician)", "Alan Ross", "Dave James", "Tshegofatso Ketshabile", "Celeste Buckingham, Andrej Hru\u0161ka, Martin \u0160r\u00e1mek", "http://dbpedia.org/resource/O'Kelly_Isley,_Jr.", "Marcus Miller, Mark Stephens", "http://dbpedia.org/resource/Kenzie_(songwriter)", "Paul Slayton, Eugene Record", "Edward Holland, Jr.", "J. Blees", "K. Johnsson", "P. Bj\u00f6rklund", "http://dbpedia.org/resource/Adrian_Newman_(producer)", "http://dbpedia.org/resource/Arthur_Resnick", "Jeffrey Scott Silverman, Leon Marcus Michels, Nicholas Anthony Movshon, E. Nathaniel Dawkins", "http://dbpedia.org/resource/Felix_Cavaliere", "http://dbpedia.org/resource/Eddie_Brigati", "http://dbpedia.org/resource/Wyclef_Jean", "http://dbpedia.org/resource/Earl_Nelson_(singer)", "http://dbpedia.org/resource/Bob_Relf", "Bob Relf, Earl Nelson", "Claude M'Barali", "Alain J", "Eric K-Roz", "Kurser", "http://dbpedia.org/resource/Barrett_Strong", "http://dbpedia.org/resource/Tijs_Verwest", "Kamini", "http://dbpedia.org/resource/Eddie_Hazel", "http://dbpedia.org/resource/Barbara_Lewis", "B. Barnes, Brian McKnight", "http://dbpedia.org/resource/Steve_Marriott", "http://dbpedia.org/resource/Ronnie_Lane", "Sonny Gordon", "http://dbpedia.org/resource/Percy_Mayfield", "http://dbpedia.org/resource/Tim_&_Bob", "Constance Guzman, Eddie Minnifield, Sheila E.", "Davide Romani, Mauro Malavasi, Paul Slade", "http://dbpedia.org/resource/Dick_Lee", "Richard Morris", "http://dbpedia.org/resource/Clyde_McPhatter", "Jimmie Crane, Al Jacobs", "Al Jacobs", "Jimmie Crane", "http://dbpedia.org/resource/Ivy_Jo_Hunter", "http://dbpedia.org/resource/Brook_Benton", "http://dbpedia.org/resource/Linda_Creed", "http://dbpedia.org/resource/Thom_Bell", "Ike Turner, Jane Bossung", "Thom Bell, William Hart", "Calvin Lane, Philip Reese", "Philip Reese, Calvin Lane", "http://dbpedia.org/resource/Allee_Willis", "http://dbpedia.org/resource/David_Foster", "http://dbpedia.org/resource/Jerome_Farah", "Willie Mabon", "http://dbpedia.org/resource/Gotye", "http://dbpedia.org/resource/Reed_Vertelney", "Barbara George", "* William DeBarge\n* Eldra DeBarge\n* Etterlene DeBarge", "Ian Green, Deni Hines", "Earl Simmons", "Dan Radclyffe, Maverick Sabre", "Mary Unobsky, Priscilla Coolidge, William Smith", "Callaway, Fraser T Smith, Jack Splash, VLJ", "Eliot Sloan, Joseph Carrier, David Corey", "Rachel Oden", "Chuck Jackson, Marvin Yancy", "http://dbpedia.org/resource/Soulhead", "http://dbpedia.org/resource/Leon_Carr", "Earl Shuman", "Ivory Joe Hunter", "Yvonne Gray, Sherman Marshall", "Mark Holden", "Hank Ballard", "Shirley Goodman, Leonard Lee", "2", "Elise Estrada, Adam Hurstfield, Davor Vulama", "Bilal Oliver", "Rudolph Isley, O'Kelly Isley, Ronald Isley, Ernie Isley, Marvin Isley and Chris Jasper", "Leslie Conn", "http://dbpedia.org/resource/Eden_Ahbez", "Shota Shimizu, Miliyah", "Wayne Anton Brathwaite, Barry J. Eastmond, Billy Ocean", "http://dbpedia.org/resource/David_Cole_(record_producer)", "http://dbpedia.org/resource/Skip_Scarborough", "http://dbpedia.org/resource/Robert_Clivill\u00e9s", "http://dbpedia.org/resource/Michelle_Visage", "Bill Withers", "* Bill Withers\n* Skip Scarborough", "Tommy Never", "http://dbpedia.org/resource/Vegyn", "http://dbpedia.org/resource/Frank_Ocean", "Sherman Josiah", "Japanese Lyrics: H.U.B, Korean lyrics: Yoo Han Jin, Composition: Yoo Han Jin, JJ650, Yoo Young Jin", "http://dbpedia.org/resource/Leon_Huff", "http://dbpedia.org/resource/Kenneth_Gamble", "http://dbpedia.org/resource/Dee_Clark", "* Thom Bell\n* William Hart", "http://dbpedia.org/resource/Charles_Stepney", "Carl Smith", "Raynard Miner", "Fontella Bass", "\"Bruce Hawes\"", "Roger Ball, Malcolm \"Molly\" Duncan, Steve Ferrone, Alan Gorrie, Onnie McIntyre, Hamish Stuart", "http://dbpedia.org/resource/Richard_Lewis_Spencer", "Richard Lewis Spencer", "Athena Cage, Jerry Flowers, Keith Sweat", "http://dbpedia.org/resource/Teddy_Park", "http://dbpedia.org/resource/Future_Bounce", "Earl King", "Keith Sweat, Calvin Broadus, Curtis Jefferson", "http://dbpedia.org/resource/Joyce_Sims", "Todd Bridges", "Austin Michael Jenkins", "Chris Vivion", "Joshua Block", "http://dbpedia.org/resource/SZA_(singer)", "http://dbpedia.org/resource/Robyn_Fenty", "Tyran Donaldson", "Teron Beal, Delroy Pearson, Jesse Powell, Ian Prince", "Donald Storball", "Koda Kumi, George Frideric Handel, Taro Iwashiro, Hugo Lira, Ian-Paolo Lira, Negin, Nosheen, Thomas Gustafsson", "Lil' Eddie, Krys Ivory", "http://dbpedia.org/resource/Berry_Gordy", "http://dbpedia.org/resource/Gwen_Gordy", "http://dbpedia.org/resource/Michael_Lovesmith", "Wayne Vaughn, Wanda Vaughn, Wendi Vaughn and Maurice White", "Christophe Battaglia", "Cyril Tarquiny", "http://dbpedia.org/resource/Jam_Factory_(music_publisher)", "Hwang Yoo-bin", "Tay Jasper", "Zachary Chicoine", "Adrian Mckinnon", "Geoffrey McCray", "Marcus Scott", "Nasia Jones", "http://dbpedia.org/resource/Walter_Becker", "http://dbpedia.org/resource/Donald_Fagen", "Kim Dal Woo, Hwang Hyun", "* Ji-hoon\n* Park Se-jun", "http://dbpedia.org/resource/PnB_Rock", "http://dbpedia.org/resource/Brandon_Bell_(record_producer)", "http://dbpedia.org/resource/Needlz", "Liana Banks", "http://dbpedia.org/resource/Ollie_Jones_(songwriter)", "http://dbpedia.org/resource/Sjava", "http://dbpedia.org/resource/Al_McKay", "Buster Brown", "http://dbpedia.org/resource/Leon_Ware", "http://dbpedia.org/resource/Janie_Bradford", "http://dbpedia.org/resource/Don_%22Sugarcane%22_Harris", "Harris", "Terry", "Dewey Terry", "Dernst Emile II, Antea Birchett, Anesha Birchett, Delisha Thomas", "Anthony Sansault", "David Ployer", "Jean-Michel Padilla", "http://dbpedia.org/resource/Ron_Miller_(songwriter)", "http://dbpedia.org/resource/Holland-Dozier-Holland", "http://dbpedia.org/resource/R._Dean_Taylor", "http://dbpedia.org/resource/The_Valadiers", "http://dbpedia.org/resource/Lawrence_Horn", "http://dbpedia.org/resource/Ronald_Dunbar", "P. Bennet", "Brian Ray, Steve LeGassick", "Jeffrey Atkins, Marcus Vest, J Angel", "Mel Larson, Jerry Marcellino", "http://dbpedia.org/resource/Randy_Edelman", "Ekundayo Paris, Nelson Pigford", "Syl Johnson, Jimmy Jones, Glenn Watts", "Mai Kuraki, Aika Ohno", "Niomi Arleen McLean-Daley, Christian Karlsson, Pontus Winnberg, Henrik Jonback", "http://dbpedia.org/resource/Lionel_Richie", "*Bert Berns\n*Jerry Wexler\n*Edwin Starr\n*Johnny Bristol\n*Harvey Fuqua", "http://dbpedia.org/resource/Gwen_Gordy_Fuqua", "Hadise Acikg\u00f6z, Yves Jongen", "Tricky Stewart, Jermaine Dupri, Marques Houston, Tony Oliver", "http://dbpedia.org/resource/Tracy_Ackerman", "http://dbpedia.org/resource/Ray_Hedges", "Nigel Butler", "Abdul Nello", "Batti Baas, Aaron Blackmon", "http://dbpedia.org/resource/Luther_Ingram", "John Mc Farland", "* Jhen\u00e9 Aiko Chilombo\n* Sean Anderson\n* Brian Warfield\n* Gabriella Wilson\n* Mac Robinson", "http://dbpedia.org/resource/Galt_MacDermot", "http://dbpedia.org/resource/Omen_(musician)", "http://dbpedia.org/resource/Elite_(producer)", "Ron Gilmore Jr.", "Nao'ymt", "Gerald Levert and Marc Gordon", "Mai Kuraki, YOKO Black. Stone, Jeffrey Qwest, Tomoo Kasahara", "James Moore Slim Harpo", "*Goetzman\n*Piccirillo", "Joe Tex", "* Joe Tex\n* James Brown", "Misia, Sakoshin, Yudai Suzuki", "*Leon Huff\n*Gene McFadden\n*John Whitehead", "http://dbpedia.org/resource/Wilko_Johnson", "http://dbpedia.org/resource/Larry_Williams", "Larry Williams", "Harish Joya", "Robert Parker", "Peter Tufel, Kenny Lehman", "Billy Austin, Louis Jordan", "Ian Green, Michelle Lewis", "Adya", "J. Seneca, J. Lee, Rose Marie McCoy", "Clyde Otis", "Brook Benton", "Belford Hendricks", "*Brook Benton\n*Belford Hendricks\n*Clyde Otis", "Nickolas Ashford", "Valerie Simpson", "Bryon Jones, John Kenny", "http://dbpedia.org/resource/Ezekiel_Lewis", "http://dbpedia.org/resource/The_Clutch", "http://dbpedia.org/resource/J._Que", "B. Muhammad", "B. Seals-Kennedy", "C. Nelson", "http://dbpedia.org/resource/Dennis_Lambert", "http://dbpedia.org/resource/Brian_Potter_(musician)", "Rauli Eskolin", "Jimmy Hughes", "Nick Lowe", "Billy Boy Arnold", "JD McPherson", "Joseph Simeone", "Big Tiny Kennedy", "Dan Auerbach / JD McPherson", "JD McPherson & Doug Corcoran", "JD McPherson & Jason Smay", "JD McPherson & Lucie Silvas", "JD McPherson & Nicole Atkins", "JD McPherson & Raynier Jacob Jacildo", "JD McPherson & Trent Dabbs", "JD McPherson / Mark Neill", "McPherson / Corcoran / Sutton / Jacildo / Smay", "McPherson / Sutton", "Richard Edward Scott & Teddy Gentry", "McPherson / Aaron Lee Tasjan / Jacildo / Adam Molad / Sutton / Corcoran / Smay", "McPherson / Jacildo / Smay / Corcoran / Jeffrey Randall Bowman / Sutton", "JD McPherson / Corcoran / Molad / Sutton / Jacildo / Mandy McPherson / Smay / unknown writer", "McPherson / Corcoran / Sutton / Jacildo / Smay / Butch Walker", "JD McPherson / Doug Corcoran / Jason Smay / Ray Jacildo / Parker Millsap / Jimmy Sutton", "Nadir Khayat, AJ Junior, Cornell Haynes, Ilya, Mohombi", "Savuto Vakadewavosa & DJ Ritendra", "*Janie Bradford\n*Berry Gordy", "http://dbpedia.org/resource/Master_P", "http://dbpedia.org/resource/Michael_Jackson", "http://dbpedia.org/resource/Mack_Rice", "Hadise and Yves Jongen.", "Robert Spencer", "Johnny Roberts", "Robert Spencer, Barbie Gaye", "Chad Cates, Jason Walker, Tony Webster Wood", "*Smokey Robinson\n*Ronald White", "* Fats Domino\n* Dave Bartholomew", "* G-Dragon\n*Shoko Fujibayashi\n* Komu\n* Rina Moon", "* Lutricia McNeal\n* Jay G.\n* Daniel B\u00e4ckstr\u00f6m\n* Daniel Papalexis\n* Rami Yacoub\n* Josef Larossi", "* Kathy Wakefield\n* Leonard Caston", "David English", "Elbridge Bryant", "http://dbpedia.org/resource/Emanuel_Kiriakou", "http://dbpedia.org/resource/E._Kidd_Bogart", "http://dbpedia.org/resource/Oh_Land", "Bernard Edwards, Nile Rodgers, Princesa", "*J. J. Jackson\n*Pierre Tubbs\n*Sidney Barnes", "Marv Johnson", "http://dbpedia.org/resource/Ben_Tucker", "http://dbpedia.org/resource/Bob_Dorough", "Lemar, Alonzo Mario Stevenson, Eric Stamile, Tony Reyes", "http://dbpedia.org/resource/Shirley_Owens", "http://dbpedia.org/resource/Emcee_N.I.C.E.", "William \"Kelly Keys\" Armour", "http://dbpedia.org/resource/Kris_Kross", "http://dbpedia.org/resource/Eddie_Cornelius", "John Vallins, Nat Kipner", "Ritchie Adams, Malou Ren\u00e9", "http://dbpedia.org/resource/Usher_(musician)", "Richard Butler, Jr.", "Pierre Medor", "Roberts II", "Tiny Bradshaw, Howard Kay, Lois Mann", "Tiny Bradshaw, Lois Mann, Howie Kay", "Tiny Bradshaw, Lois Mann, Howard Kay", "Tiny Bradshaw, Lois Mann Syd Nathan", "Joe Shapiro, Lou Stallman", "http://dbpedia.org/resource/Eugene_Frank_Williams", "William Bell and Paul Mitchell", "*Jennifer Brown\n*Andy Marvel\n*Billy Mann", "Joseph Wade Scott, Deadric Malone Don Robey", "Buck Ram, Morty Nevins, Al Nevins, Artie Dunn", "Jack Conrad, Ray Kennedy", "http://dbpedia.org/resource/Lil'_Ronnie", "Jeremiah Bethea", "Tamia Hill", "Omar Walker", "Philip Lynah Jr.", "Benjamin Singh-Reynolds", "http://dbpedia.org/resource/Memphis_Curtis", "Eric Fearman, Bobby Harris", "http://dbpedia.org/resource/Verdine_White", "http://dbpedia.org/resource/Larry_Dunn", "http://dbpedia.org/resource/Phillip_Bailey", "http://dbpedia.org/resource/Apache_(rapper)", "Queen Latifah", "Virgil \"Pappy\" Stewart", "Fujibayashi, Imai", "Smokey Robinson", "Naomi Neville Allen Toussaint", "Smokey Robinson, Pete Moore, and Ronnie White", "Ahmad Balshe, Alex Gordon", "Gerald LeVert, Marc Gordon, Eddie LeVert Sr.", "http://dbpedia.org/resource/Esm\u00e9e_Denters", "http://dbpedia.org/resource/Toby_Gad", "http://dbpedia.org/resource/Jay_Graydon", "http://dbpedia.org/resource/Bill_Champlin", "http://dbpedia.org/resource/Allen_Ritter", "http://dbpedia.org/resource/Lil_Nas_X", "http://dbpedia.org/resource/Boi-1da", "Imran Abbas", "Jahaan Sweet", "Thomas Kessler", "http://dbpedia.org/resource/Frank_Dukes", "http://dbpedia.org/resource/The_Weeknd", "http://dbpedia.org/resource/Nicolas_Jaar", "http://dbpedia.org/resource/Ne-Yo", "* Robert Clivill\u00e9s\n* David Cole\n* Bryan Higgins\n* Duran Ramos\n* Trevor Smith", "http://dbpedia.org/resource/George_David_Weiss", "http://dbpedia.org/resource/Luigi_Creatore", "http://dbpedia.org/resource/Hugo_Peretti", "Bill Meyers, Maurice White, Allee Willis", "http://dbpedia.org/resource/Glasses_Malone", "Sam Cooke, Charles Cook, Jr.", "Sam Cooke, Charles Cook, Jr., Jerry Butler, Curtis Mayfield, Calvin Carter, Jerry Leiber & Mike Stoller", "http://dbpedia.org/resource/Don_Covay", "http://dbpedia.org/resource/Vishal_Dadlani", "http://dbpedia.org/resource/Niranjan_Iyengar", "http://dbpedia.org/resource/Jason_Evigan", "http://dbpedia.org/resource/Jonathan_Tucker", "http://dbpedia.org/resource/Nick_Jonas", "http://dbpedia.org/resource/PJ_Bianco", "http://dbpedia.org/resource/Jay-Z", "Jeff Barry, Ellie Greenwich and Phil Spector", "The Philosopher Kings", "http://dbpedia.org/resource/Cory_Rooney", "http://dbpedia.org/resource/Wes_King", "http://dbpedia.org/resource/Cindy_Morgan", "http://dbpedia.org/resource/Cindy_Morgan_(singer)", "Michael W. Smith", "http://dbpedia.org/resource/Matthew_West", "* General Johnson\n* Angelo Bond\n* Greg Perry", "http://dbpedia.org/resource/Nat_Adderley_Jr.", "Jimmy Grant, Allan Felder", "*David Garcia\n*Ben Glover\n*Christopher Stevens", "Jamie Houston", "http://dbpedia.org/resource/John_Leslie_McFarland", "http://dbpedia.org/resource/Aaron_Schroeder", "* Diane Warren", "Koda Kumi, Markie, Katsuhiko Sugiyama", "http://dbpedia.org/resource/T-Pain", "http://dbpedia.org/resource/Rick_Ross", "http://dbpedia.org/resource/Birdman_(rapper)", "Sheldon Reynolds, Maurice White and Allee Willis", "Justin Timberlake", "Tony Maiden", "http://dbpedia.org/resource/GZA", "http://dbpedia.org/resource/Ghostface_Killah", "http://dbpedia.org/resource/Inspectah_Deck", "http://dbpedia.org/resource/Jerry_Duplessis", "http://dbpedia.org/resource/Lil_Wayne", "http://dbpedia.org/resource/RZA", "Isaac Hayes", "Lamont Coleman", "Devon Golder", "K. Lancaster", "Allee Willis, Eduardo Del Barrio and Maurice White", "Dennis Yost, James Cobb, Buddy Buie", "H.U.B.", "Divine Brown, Nelly Furtado, Byram Joseph", "http://dbpedia.org/resource/Israel_(singer)", "Sam Cooke, Arthur Conley and Otis Redding", "http://dbpedia.org/resource/Sid_Wyche", "http://dbpedia.org/resource/Titus_Turner", "Titus Turner", "George Clinton/Daron Taylor", "D. Williams, C. McDonald, F. Baskett, L. Groves", "http://dbpedia.org/resource/Doc_Pomus", "http://dbpedia.org/resource/Fonzi_Thornton", "Rex Rideout", "Vandross", "Johnny Bragg and Robert Riley", "Peabo Bryson", "Karl Wolf", "Jessica Cornish, Farrah Fleurimond, Martin Kleveland, Natalie Walker", "*Kevin Jackson\n*Erik White", "http://dbpedia.org/resource/Mira_Craig", "Alan Maman, Albert Johnson, Nicole Albino, Natalie Albino, Gregory W. Jackson, Al Kooper", "Jeffrey Osborne, John T. McGhee", "*Michael Jackson\n*Brad Buxer\n*Teddy Riley", "* Pdogg\n* RM\n* Lauren Dyson\n* Tushar Apte\n* Suga\n* J-Hope\n* Krysta Youngs\n* Julia Ross\n* Bobby Chung\n* Song Jae-kyung\n* Adora", "Lou Willie Turner", "* Akil King\n* Anthony M. Jones\n* Bianca Atterberry\n* Daoud Anthony\n* Sabrina Carpenter", "Leon Carr, Earl Shuman", "http://dbpedia.org/resource/Sean_Garrett", "Raymond \"Clubba Langg\" Oglesby", "* Dan Hartman\n* Charlie Midnight", "Steve Goldman", "Christopher Bridges,Lloyd and Wood Works", "Marvin Gaye, William \"Mickey\" Stevenson, George Gordy", "Diego Calvetti, Marco Ciappelli", "http://dbpedia.org/resource/Auburn_(singer)", "http://dbpedia.org/resource/Iyaz", "http://dbpedia.org/resource/J._R._Rotem", "http://dbpedia.org/resource/Gary_Barlow", "http://dbpedia.org/resource/Eliot_Kennedy", "http://dbpedia.org/resource/James_%22J.T.%22_Taylor", "http://dbpedia.org/resource/Natasha_Hamilton", "http://dbpedia.org/resource/Robert_%22Kool%22_Bell", "http://dbpedia.org/resource/Claydes_Charles_Smith", "http://dbpedia.org/resource/Jeff_Lynne", "http://dbpedia.org/resource/John_Holt_(singer)", "http://dbpedia.org/resource/Jem_Godfrey", "http://dbpedia.org/resource/Bill_Padley", "http://dbpedia.org/resource/Ronald_Bell_(musician)", "Bell", "Kool & the Gang", "Brown", "George Brown", "George M. Brown", "Tim Woodcock", "Dennis Thomas", "Greg Wilson", "Martin Foster", "Tracey Carmen", "Kool and the Gang", "Howard Barrett", "Tyrone Evans", "Meekaaeel Muhammad", "Earl Toon, Jr.", "http://dbpedia.org/resource/Chris_Kenner", "http://dbpedia.org/resource/G-Dragon", "http://dbpedia.org/resource/T.O.P", "http://dbpedia.org/resource/Taeyang", "* Charles Axton\n* Jerry Lee Smith\n* Floyd Newman\n* Chips Moman\n* Gilbert C. Caple", "Stevie Wonder, DeVante Swing", "Lloyd Price", "http://dbpedia.org/resource/Tamia", "Salaam Remi", "Alicia Renee Williams", "Little Willie John, Titus Turner, James McDougal", "Holland\u2013Dozier\u2013Holland", "The Doors", "http://dbpedia.org/resource/Michael_Masser", "* Michael Masser\n* Linda Creed", "Richard Stannard, Ash Howes, Steve Malcolmson", "http://dbpedia.org/resource/Jhen\u00e9_Aiko", "Pharrell Williams", "Shawn Carter", "Brian Warfield", "Mac Robinson", "Chad Hugo", "Myron Birdsong", "Frank Romano", "Bob Steele", "Wilma Cosm\u00e9, Russ DeSalvo,", "Nathaniel Calhoun", "Lemar Obika, Harold Lily, Hart Dementi, Gerard Thomas", "Simi", "http://dbpedia.org/resource/Howard_Greenfield", "http://dbpedia.org/resource/Neil_Sedaka", "*Park Jin-young\n*Tupac Shakur\n*Johnny Jackson\n*Joseph Jefferson\n*Charles Simmons", "http://dbpedia.org/resource/Kenny_Gamble", "Misha B, Talay Riley", "Steve Horton", "http://dbpedia.org/resource/Lona_Stevens,_Zell_Sanders", "Lona Stevens, Zell Sanders", "http://dbpedia.org/resource/Don_Was", "http://dbpedia.org/resource/David_Was", "David Was, Don Was", "http://dbpedia.org/resource/Roger_Penzabene", "http://dbpedia.org/resource/Randy_Travis", "Alan Jackson", "http://dbpedia.org/resource/Jesse_Stone", "Parker", "http://dbpedia.org/resource/Stephen_Bray", "Dan Gilroy", "Ella Fitzgerald", "http://dbpedia.org/resource/Teddy_Riley", "M. Smith", "M. Jackson", "S. Blair", "Lil' C. Smith", "*Jeff Barry\n*Ellie Greenwich", "Joseph Stefano, Jon Secada, Miguel Morejon", "http://dbpedia.org/resource/Charles_Wright_(musician)", "http://dbpedia.org/resource/Lena_Agree", "http://dbpedia.org/resource/Nina_Sky_(group)", "http://dbpedia.org/resource/Cary_Gilbert", "* Kenneth Gamble\n* Leon Huff\n* Cary Gilbert", "Rory Bennett, Cedric R Hailey, Joel Hailey", "Jonah Ellis, Alisa Peoples and Cavin Yarbrough", "http://dbpedia.org/resource/Freddie_Perren", "Christine Yarian", "http://dbpedia.org/resource/David_Conley_(musician)", "http://dbpedia.org/resource/David_Townsend_(musician)", "Derrick Culler", "http://dbpedia.org/resource/Bobby_Worth", "* D. Smith\n* C. Vetter", "Bert Berns, Solomon Burke", "Bert Berns/Solomon Burke", "http://dbpedia.org/resource/Kim_Eana", "http://dbpedia.org/resource/Allan_Felder", "http://dbpedia.org/resource/Norman_Harris_(musician)", "http://dbpedia.org/resource/Ron_Tyson", "http://dbpedia.org/resource/Simi_(singer)", "http://dbpedia.org/resource/Gene_Chandler", "http://dbpedia.org/resource/Bernice_Williams", "http://dbpedia.org/resource/Earl_Edwards_(songwriter)", "Brandi Wells, Terry Price", "http://dbpedia.org/resource/Polow_da_Don", "http://dbpedia.org/resource/RM_(rapper)", "Charlie J. Perry", "Rod Gammons", "Hawk Wolinski", "E. Simmons", "* Ellie Goulding\n* Ari Staprans Leff\n* Brett McLaughlin\n* Joe Kearns \n* Oscar G\u00f6rres", "http://dbpedia.org/resource/Sam_Watters", "http://dbpedia.org/resource/Kevin_Thornton_(musician)", "Howard Thompson", "Bryan Abrams", "Mark Calderon", "http://dbpedia.org/resource/Chauncey_Hawkins", "http://dbpedia.org/resource/Ahmed_Balshe", "* Grady Martin\n* Alex Zanetis", "*Abel Tesfaye\n*Jason Quenneville\n*Carlo Montagnese\n*Ahmad Balshe", "http://dbpedia.org/resource/Johnny_Otis", "Johnny Otis", "Dkorie Terrell, Marvin Scandrick, Jasiel Roberts", "http://dbpedia.org/resource/Waje", "http://dbpedia.org/resource/Muna_(rapper)", "Emilio Castillo", "Stephen Kupka", "http://dbpedia.org/resource/Robert_Palmer_(singer)", "Jeff Fortgang", "http://dbpedia.org/resource/Richard_Barrett_(musician)", "Brenda Lee Eager, Prince, Hilliard Wilson", "http://dbpedia.org/resource/M\u00fda", "The Whole 9", "Vyshonn Miller", "http://dbpedia.org/resource/Johnny_Bristol", "Harvey Fuqua", "Jackey Beavers", "Etta James", "Pearl Woods", "Leroy Kirkland", "Ji Yu Ri", "Santiago Leyva", "Egbert Nathaniel Dawkins", "Nasir bin Olu Dara Jones", "http://dbpedia.org/resource/John_Hurley,_Ronnie_Wilkins", "Mitchell Bottler", "Ted McNamara", "Gary Zekley", "A. Paris", "E. Paris", "Mitchell Bottler, Edward McNamara, Adeniya Paris, Ekundayo Paris, Gary Zekley", "http://dbpedia.org/resource/George_Harrison", "http://dbpedia.org/resource/Nappy_Brown", "http://dbpedia.org/resource/Fred_Mendelsohn", "http://dbpedia.org/resource/Rose_Marie_McCoy", "Johnny Dee", "http://dbpedia.org/resource/John_Lee_Hooker", "Laura Izibor", "Billy Jackson / Jimmy Wisner", "http://dbpedia.org/resource/Patrick_Adams_(musician)", "http://dbpedia.org/resource/Leon_Sylvers_III", "M. Riley", "A. Dickey", "Edward Ferrell, Clifton Lighty, Darren Lighty, Balewa Muhammad", "http://dbpedia.org/resource/Cook_Classics", "http://dbpedia.org/resource/Charlie_Puth", "prev", "*Clarence Paul\n*Barney Ales\n*Dave Hamilton\n*William \"Mickey\" Stevenson", "Jeffrey Cohen", "Narada Michael Walden", "http://dbpedia.org/resource/Bobby_Day", "http://dbpedia.org/resource/Charles_Singleton_(songwriter)", "Beni, Fujibayashi, Imai", "Phil Spector, Leroy Bates", "http://dbpedia.org/resource/John_Mayer", "Gilbert Garfield", "Warren Griffin III", "http://dbpedia.org/resource/Franne_Golde", "Walter Orange", "Howard Barnes, Don Robertson", "Barnes, Robertson", "H. Barnes, D. Robertson", "Leon Ren\u00e9, as Jimmie Thomas", "Sherry Scott", "The Isley Brothers and Chris Jasper", "Ben Ofoedu / Jack Lucien", "http://dbpedia.org/resource/Duncan_Millar_(musician)", "http://dbpedia.org/resource/David_Titlow", "http://dbpedia.org/resource/Joseph_Brooks_(songwriter)", "http://dbpedia.org/resource/Max_Martin", "H. Hammerschmied", "Sammie, Sean Paul", "Chink Santana, Niomi McLean-Daley", "http://dbpedia.org/resource/Jerry_Goldstein_(record_producer,_musician)", "http://dbpedia.org/resource/War_(American_band)", "Sam Mizell, Matthew West, Clinton Lagerberg", "Bobby Womack, Jim Grisby, Joe Hicks", "http://dbpedia.org/resource/Tina_Turner", "Tina Turner, Leon Ware", "Rhonda Graam", "Tony Boyd, Archie Powell", "http://dbpedia.org/resource/Manfred_Mann_(musician)", "http://dbpedia.org/resource/Mike_Hugg", "http://dbpedia.org/resource/Paul_Jones_(singer)", "Cyril Kamar, Sonny Black", "Sam Cooke , Michael Zager", "Danny Fernandes, Alexander Vujic", "http://dbpedia.org/resource/Tony_Yayo", "Tsugumi", "Yoshika", "James \"Shep\" Sheppard, Clarence Bassett, Charles Baskerville", "James Sheppard, Clarence Bassett, Charles Baskerville", "Miwa Yoshida, Toshiki Kadomatsu, Aoyama Thelma", "http://dbpedia.org/resource/Yasushi_Akimoto", "http://dbpedia.org/resource/Booker_T._Jones", "http://dbpedia.org/resource/Steve_Cropper", "http://dbpedia.org/resource/Lewie_Steinberg", "http://dbpedia.org/resource/King_Floyd", "* Russell Lewis\n* Herman Davis", "Tony Maiden, Lalomie Washburn", "http://dbpedia.org/resource/Bernard_Edwards", "http://dbpedia.org/resource/Nile_Rodgers", "Bernard Edwards", "Nile Rodgers", "Traveling Wilburys", "http://dbpedia.org/resource/Wheesung", "Iggy", "Seo Yong-bae", "Jimmy Hogarth", "http://dbpedia.org/resource/Lin-Manuel_Miranda", "http://dbpedia.org/resource/50_Cent", "http://dbpedia.org/resource/Governor_(singer)", "http://dbpedia.org/resource/Red_Steagall", "http://dbpedia.org/resource/Don_Lanier", "David L. Elliott, Terry Steele, Charles White", "H. Matthews", "Eddie Holland & Shorty Long", "H. Matthews/N. Albright", "H. Matthews/P. Settle", "Richard Penniman Little Richard", "Jimi Hendrix", "112", "http://dbpedia.org/resource/Prodigy_(rapper)", "http://dbpedia.org/resource/Havoc_(Mobb_Deep)", "Misia, Toshitaka Sonoda, Chihiro Close, Jun Sasaki, Satoshi Shimano", "http://dbpedia.org/resource/No_Malice", "http://dbpedia.org/resource/Pusha_T", "http://dbpedia.org/resource/Runtown", "Knight, Drakes, Shorten, Noble", "*Don Powell\n*Rick Kelly\n*Linda Mallah", "Al Johnson and Joe Ruffino", "Chihiro Imai\n* Tsunku", "http://dbpedia.org/resource/Beverly_Jo_Scott", "Lo\u00efc Nottet", "http://dbpedia.org/resource/Dorothy_LaBostrie", "http://dbpedia.org/resource/McKinley_Millet", "http://dbpedia.org/resource/J._Vincent_Edwards", "http://dbpedia.org/resource/Pierre_Tubbs", "Pierre Tubbs and J. Vincent Edwards", "http://dbpedia.org/resource/Eric_Bellinger", "http://dbpedia.org/resource/Hit-Boy", "http://dbpedia.org/resource/Drake_(rapper)", "http://dbpedia.org/resource/Justin_Bieber", "*The Doors\n*Brian Carman & Bob Spickard\n*Vera Matson Ken Darby\n*Junior Parker\n*Sam Phillips\n*Elvis Presley", "Harold Crafton, Wendell Keane, Harold Bagby", "http://dbpedia.org/resource/Adele", "http://dbpedia.org/resource/Paul_Epworth", "Adele", "Paul Epworth", "Adele Adkins, Paul Epworth, Nickolas Ashford, Valerie Simpson", "Rob Peckman", "Luther Vandross, M. Miller", "http://dbpedia.org/resource/MC_Hammer", "http://dbpedia.org/resource/Robert_Brookins", "http://dbpedia.org/resource/Stephanie_Mills", "Claudio Cueni, Chris Stokes", "Roger McNair, Billy Lawrence, Rashad Smith, Armando Colon", "http://dbpedia.org/resource/Clint_Ballard_Jr.", "http://dbpedia.org/resource/Jim_Ford", "http://dbpedia.org/resource/Clifton_Davis", "Richard Berry", "http://dbpedia.org/resource/SoulJa", "http://dbpedia.org/resource/Bill_Medley", "Tiziano Ferro", "Tony Joe White", "Sting, David Hartley", "Ben E. King, Elmo Glick, Ollie Jones", "*Leroy Burgess\n*Patrick Adams", "Sally Jo Dakota", "Shanice Wilson", "http://dbpedia.org/resource/Wayne_Carson", "Wayne Carson", "Johnny Northern, Jimmy Bailay", "Harold Logan and Lloyd Price", "Cheyenne Fowler, Keg Johnson, June Deniece Williams", "Annette Tucker, Nancie Mantz", "Don and Dick Addrisi", "http://dbpedia.org/resource/Debbie_Dean_(singer)", "http://dbpedia.org/resource/Edward_Holland,_Jr.", "http://dbpedia.org/resource/Jo_Armstead", "http://dbpedia.org/resource/Nick_Ashford", "Wanda Hutchinson, Jeanette Hawes", "http://dbpedia.org/resource/William_Guest_(singer)", "http://dbpedia.org/resource/Gladys_Knight", "http://dbpedia.org/resource/Merald_%22Bubba%22_Knight", "http://dbpedia.org/resource/Katherine_Anderson", "Randy Newman", "Ray Charles, Renald Richard", "George Gordy", "Allen Story", "Billie-Jean Brown", "Margaret Johnson Gordy", "Ava Aldridge & Eddie Struzick", "http://dbpedia.org/resource/Henry_Glover", "http://dbpedia.org/resource/Lois_Mann", "* Eric Saade\n* Linnea Deb\n* Joy Deb\n* Jimmy \"Joker\" Th\u00f6rnfeldt", "Lou Stallman", "Misia", "http://dbpedia.org/resource/Buddah_Bless", "http://dbpedia.org/resource/City_Girls", "Charles Wright", "http://dbpedia.org/resource/Steven_%22Lenky%22_Marsden", "Anthony Kelly", "Mark Wolfe", "Wayne Passley", "*Kanye West\n*Tyrone Griffin\n*Austin Post\n*Anthony Kilhoffer\n*Michael Dean\n*Ryan Vojtesak\n*Noah Goldstein\n*Benjamin Benstead\n*Jerome Potter\n*Samuel Griesemer\n*Norman Whitfield\n*Edward Holland\n*Cornelius Grant\n*Larry Heard\n*Robert Owens\n*Luis Vega\n*Ronald Carroll\n*Barbara Tucker\n*Harold Matthews\n*Stephan Garrett\n*Eric Seats\n*Rapture Stewart\n*Malik Jones", "Ken Hirai, Uru", "* Ahmad Balshe\n* Jason Quenneville\n* Danny Fernandes", "http://dbpedia.org/resource/Eddie_del_Barrio", "Jesse Johnson", "George Michael", "Pino Massara, Rosella Conz", "John Davenport", "Peggy Lee", "Eddie Cooley", "*Peggy Lee\n*Eddie Cooley\n*John Davenport", "http://dbpedia.org/resource/Hank_Ballard", "Tessanne Chin, Balewa Muhammad, Perry Mapp", "Morris Day, James Harris III, Terry Lewis", "Danny Fernandes, GoodWill & MGI, Roderick Kerr, Brian Ellis, Richard Page, Steve George, John Lang", "http://dbpedia.org/resource/Red_Caf\u00e9", "http://dbpedia.org/resource/Ryan_Leslie", "http://dbpedia.org/resource/Ahmet_Ertegun", "Elvin Bishop", "http://dbpedia.org/resource/Helen_Miller_(songwriter)", "Don Davis, Kent Barker, Cam Wilson", "Marvin Gaye, Ed Townsend", "http://dbpedia.org/resource/Wilbert_Harrison", "Wilbert Harrison", "Gerry Goffin & eitherJack Keller or Carole King", "* David Crowder\n* Ed Cash", "Joe Sobotka, Johnny Wyker", "http://dbpedia.org/resource/Dee_Dee_Ford", "http://dbpedia.org/resource/Ralph_Johnson_(musician)", "Carl Spencer, Henry Glover", "Koda Kumi, Yanagiman", "http://dbpedia.org/resource/Freddie_Mercury", "Charles McCormick", "* Ben Kohn\n* Ed Drewett\n* Liam Payne\n* Ella Henderson\n* Jan\u00e9e Bennett\n* Peter Kelleher\n* Tom Barnes", "*William Edward John Little Willie John\n*Mertis John Jr.", "Misia, Ken Matsubara, Jun Sasaki", "Danny Fernandes, Ahmad Balshe, Alexander Vujic", "http://dbpedia.org/resource/Bryan_Adams", "http://dbpedia.org/resource/Andrea_Remanda", "http://dbpedia.org/resource/Joe_Scott_(musician)", "http://dbpedia.org/resource/Bill_Harvey_(bandleader)", "http://dbpedia.org/resource/Earl_Forest", "N. Brown", "*Oscar Washington\n*Lewis P. Simpkins\n*Jimmy Forrest", "* Oscar Washington\n* Lewis P. Simpkins\n* Jimmy Forrest", "http://dbpedia.org/resource/David_Frank_(music)", "http://dbpedia.org/resource/Mic_Murphy", "Marcella Detroit", "http://dbpedia.org/resource/Marc_Jordan", "http://dbpedia.org/resource/John_Capek", "http://dbpedia.org/resource/Hikaru_Utada", "http://dbpedia.org/resource/Danny_Fernandes", "http://dbpedia.org/resource/Jason_Quenneville", "http://dbpedia.org/resource/Andrew_Vowles", "http://dbpedia.org/resource/Tracey_Thorn", "http://dbpedia.org/resource/Daddy_G", "http://dbpedia.org/resource/Robert_Del_Naja", "Doltz, Rohff, Reego", "Brian Holland, Lamont Dozier, Eddie Holland, R. Dean Taylor", "Benjamin Nelson, Lover Patterson, George Treadwell", "Benjamin Nelson, Lover Patterson, George Treadwell, Jerry Leiber, Mike Stoller", "http://dbpedia.org/resource/Lou_Reed", "Otis Redding", "http://dbpedia.org/resource/Ted_White_(manager)", "Aretha Franklin", "http://dbpedia.org/resource/Lowman_Pauling", "Lowman Pauling", "* Nile Rodgers\n* Bernard Edwards", "* Donny Hathaway \n* Nadine Theresa McKinnor", "Donny Hathaway and Nadine Theresa McKinnor", "Doc Pomus and Mort Shuman", "http://dbpedia.org/resource/Leon_Russell", "Charlie Singleton", "http://dbpedia.org/resource/Haras_Fyre", "http://dbpedia.org/resource/Gwen_Guthrie", "* Belcalis Almanzar\n* Benjamin Levin\n* Jordan Thorpe\n* Justin Tranter\n* Alexandra Tamposi\n* Andrew Wotman", "Al McKay, Charles Wright, James Gadson, John Rayford, Melvin Dunlap", "* Hikaru Utada", "Norman Meade Jerry Ragovoy", "*Norman Meade Jerry Ragovoy\n*Jimmy Norman", "*Norman Meade a.k.a. Jerry Ragovoy\n*Jimmy Norman", "http://dbpedia.org/resource/Rob_Knox_(producer)", "http://dbpedia.org/resource/Sebastian_Kole", "http://dbpedia.org/resource/Alexander_Sowinski", "http://dbpedia.org/resource/Samuel_T._Herring", "http://dbpedia.org/resource/Matthew_Tavares", "http://dbpedia.org/resource/Chester_Hansen", "http://dbpedia.org/resource/Leland_Whitty", "* Alex van den Hoef\n* Chris van den Hoef\n* Andrew Bullimore\n* Benjamin Shubert\n* Christian Michael Dold\n* Golden Landis Von Jones\n* Matthew Musto", "Ken the 390, Thelma Aoyama, Mika Arata, Larry Morey", "Ayaka", "Kentar\u014d Kobuchi", "Shunsuke Kuroda", "June", "Slow Rabbit", "Changmo", "Suran", "http://dbpedia.org/resource/Jade_Thirlwall", "http://dbpedia.org/resource/Iain_James", "http://dbpedia.org/resource/Jesy_Nelson", "http://dbpedia.org/resource/Leigh-Anne_Pinnock", "http://dbpedia.org/resource/Perrie_Edwards", "http://dbpedia.org/resource/Michelle_Lewis", "Thomas Barnes", "Peter Kelleher", "Ben Kohn", "Mischke Butler", "Erika Nuri", "Heidi Rojas", "Sadiq Onifade", "Oluwaseyi Akerele", "Dave Bartholomew and Pearl King", "http://dbpedia.org/resource/Asian_Da_Brat", "http://dbpedia.org/resource/Jay_Sean", "http://dbpedia.org/resource/Gucci_Mane", "Khaid", "http://dbpedia.org/resource/Herb_Alpert", "http://dbpedia.org/resource/Lou_Adler", "Lou Adler, Herb Alpert, Sam Cooke", "Lukay aka \"Hit-mayka\"", "Barbara Mason", "http://dbpedia.org/resource/Banky_W", "Ron Miller, Bryan Wells", "Vernon Bullock, Jack Goga, Ivy Jo Hunter and Pam Sawyer.", "Marty Cooper, Lou Josie", "Skalp, Eloquence, Tony Parker", "A-side: Holland\u2013Dozier\u2013Holland", "B-side: Holland\u2013Dozier\u2013Gorman", "Eric Ben\u00e9t, George Nash, Jr.", "Allee Willis, David Foster and Maurice White", "*Darryl Carter\n*Bobby Womack\n*Linda Womack", "http://dbpedia.org/resource/Wayne_Vaughn", "Naomi Neville", "Harry Ray, Al Goodman, Lee Walter", "http://dbpedia.org/resource/Charlie_Smalls", "Al Yankovic", "David Foster, Larry Dunn, Brenda Russell, Verdine White and Maurice White", "Stephen Mitchell", "Marti Sharron", "Gary Skardina", "* Stephen Mitchell\n* Marti Sharron\n* Gary Skardina", "* Bobby Eli\n* John Freeman\n* Vinnie Barrett", "Bobby Eli, John Freeman, Vinnie Barrett", "JHETT, Koda Kumi, Lori Fine", "http://dbpedia.org/resource/Gregory_Carroll_(R&B_singer)", "http://dbpedia.org/resource/Doris_Troy", "http://dbpedia.org/resource/Colin_Blunstone", "Buddy Johnson", "Walter Jacobs Little Walter", "Disputed", "* Bill Withers\n* Ralph MacDonald\n* William Salter", "http://dbpedia.org/resource/Richard_Penniman", "Hikaru Utada", "Nariaki Obukuro", "Youki Kojima", "http://dbpedia.org/resource/Ua_(singer)", "http://dbpedia.org/resource/Shinichi_Osawa", "* Teddy\n* Taeyang\n* T.O.P\n* G-Dragon", "JQ", "Jo Yoon-kyung", "Seolim", "* Folarin\n* Antonio Palmer\n* Stokley Williams\n* Sam Dew", "Tetsuya Komuro", "Yasuhiro Abe", "Tsukasa", "Adelabu Alexander Adewunmi", "Bobby Womack", "*Donna Summer\n*Bruce Sudano\n*Michael Omartian", "Rose Marie McCoy and Luther Dixon", "Tony Tolbert, Lance Alexander", "http://dbpedia.org/resource/Deon_Jackson_(singer)", "http://dbpedia.org/resource/Ron_Holden", "http://dbpedia.org/resource/Bert_Keyes", "http://dbpedia.org/resource/Sylvia_Robinson", "Bert Keyes", "* Lee Chae-rin\n* Anne-Marie Nicholson\n* Freedo\n* Nafla\n* Cleo Tighe\n* Sarah Blanchard", "Paul Kim", "http://dbpedia.org/resource/Memphis_Edward_Curtis", "Adrian McKinnon", "Andrew Choi", "Jang Yeo-jin", "http://dbpedia.org/resource/Desmond_Child", "http://dbpedia.org/resource/Phoebus_(songwriter)", "M. Brown, James Bryan", "Jeff Miyahara.", "http://dbpedia.org/resource/Sam_Brown_III", "Ren\u00e9e Armand", "Dave Bartholomew, Pearl King, Anita Steinman", "Donna Summer, Bruce Sudano, Michael Omartian, Virgil Weber, John Bettis, Harold Faltermeyer", "Terry Williams", "Melissa Elliott", "Chad Elliot", "http://dbpedia.org/resource/Jessie_Hill", "http://dbpedia.org/resource/Mort_Garson", "http://dbpedia.org/resource/Bob_Hilliard", "Bob Hilliard", "Mort Garson", "Jonas Jeberg, Terence Abney, Tshawe Baqwa, Yosef Wolde-Mariam, Marcella Brailsford, Kasper Larsen, Ole Brodersen", "Anthony Egizii, Marvin Priest, David Musumeci", "Prince, Levi Seacer Jr., Tony M.", "http://dbpedia.org/resource/The_Chords_(American_band)", "http://dbpedia.org/resource/Charles_F._Calhoun", "Charles F. Calhoun Jesse Stone", "http://dbpedia.org/resource/Johnny_Kidd_(singer)", "Johnny Kidd, Guy Robinson", "Brilleaux, Martin, Mayo, Sparks", "http://dbpedia.org/resource/Henry_Ballard", "* Hank Ballard\n* James Brown", "http://dbpedia.org/resource/J._Cole", "Anthony Parrino", "Tim Schoegje", "http://dbpedia.org/resource/John_Fred_Gourrier", "Tommy Bryan", "Meisa, Clone, Jeff Miyahara, Shoko Fujibayashi, U-ka, June", "*O'Kelly Isley Jr.\n*Rudolph Isley\n*Ronald Isley", "http://dbpedia.org/resource/Vinnie_Barrett", "http://dbpedia.org/resource/Bobby_Eli", "Anthony Hamilton", "Kelvin Wooten", "Lavell Crump", "John Watson Johnny \"Guitar\" Watson", "Cha Cha Malone", "Pressha", "http://dbpedia.org/resource/Ben_E._King", "Shinjiroh Inoue, H.u.b.", "Curt Bedeau, Gerry Charles, Hugh L Clarke, Brian George, Lucien George, Paul George", "http://dbpedia.org/resource/Justin_Parker", "http://dbpedia.org/resource/Mikky_Ekko", "Elof Loelv", "Ken Gold, Billy Ocean", "7", "http://dbpedia.org/resource/Irv_Gotti", "http://dbpedia.org/resource/Ja_Rule", "http://dbpedia.org/resource/Charli_Baltimore", "Holmes, Leaosavaii, Patel, Tupa'i", "Christian Ballard, Andrew Ian Murray, Tom Nichols", "Little Richard, Enotris Johnson", "Sheila E., Pete Escoveda, Cat Gray", "Derek Safo, Dan Hartman, Lewis Fuller, Andrew Mutambira, Giorgio Tuinfort, David Wiggins", "http://dbpedia.org/resource/Mikey_Craig", "http://dbpedia.org/resource/Boy_George", "http://dbpedia.org/resource/Jon_Moss", "http://dbpedia.org/resource/Roy_Hay_(musician)", "http://dbpedia.org/resource/Gordon_Banks_musician", "http://dbpedia.org/resource/Jackie_Edwards_(musician)", "Curtis Johnson", "Chuck Brown", "Jon Sheldon", "Davies", "http://dbpedia.org/resource/General_Johnson_(musician)", "Angelo Bond", "Greg Perry", "http://dbpedia.org/resource/Marc_Gordon", "http://dbpedia.org/resource/Lula_Mae_Hardaway", "Don Hunter", "John Patton, Amiel Sommers", "* G-Dragon\n* Teddy \n* T.O.P", "Billy Hayes", "Jay W. Johnson", "http://dbpedia.org/resource/Dr._Freeze", "Ellas McDaniel a.k.a. Bo Diddley", "Ellas McDaniels Bo Diddley", "http://dbpedia.org/resource/Channel_7_(musician)", "http://dbpedia.org/resource/Rupert_Gayle", "Sari Abboud", "http://dbpedia.org/resource/Jesse_McCartney", "Corron Ty Cole", "James Bunton", "http://dbpedia.org/resource/Gamble_&_Huff", "McFadden & Whitehead", "http://dbpedia.org/resource/Tyran_Carlo", "http://dbpedia.org/resource/James_Brown", "http://dbpedia.org/resource/Mike_Jones_(rapper)", "Tommy James, Peter Lucia", "http://dbpedia.org/resource/Alan_Price", "http://dbpedia.org/resource/Eric_Burdon", "*Norman Whitfield\n*Joel Schumacher", "*M. Williams\n*J. McAllister\n*Chantay Savage", "* Brenton Brown\n* Chris McClarney\n* David Crowder\n* Hank Bentley", "* Curt Bedeau\n* Gerry Charles\n* Hugh L Clarke\n* Brian George\n* Lucien George\n* Paul George\n* James Brown", "http://dbpedia.org/resource/Esther_Nabaasa", "*Dave Bartholomew \n*Fats Domino", "Brian Holland, Lamont Dozier, and Edward Holland Jr.", "http://dbpedia.org/resource/Gordon_Mills", "* Robert Kelly\n* Raphael Ramos Oliveira", "http://dbpedia.org/resource/Johnny_Nash", "* James Brown\n* Bobby Byrd", "Fred Jay, Al Julia", "James Harris III", "Terry Lewis", "* La Toya Jackson\n* Jeffr\u00e9 Phillips\n* Thom Frood\n* David Frood\n* Michael Hoffman", "Michael Walker", "Johnny Flippin", "*Emcee N.I.C.E.\n*Richard Smallwood\n*Sam Peezy\n*BJ Luster", "Kashif", "Kenneth Gamble, Leon Huff", "* Sally Nix\n* Henry Glover", "* Guy Wood\n* Edward Seiler\n* Sol Marcus\n* Sally Nix\n* Henry Glover", "Berry Gordy, Mike Ossman, Al Abrams, John O'Den", "Master P, Silkk the Shocker, Pimp C, Charles Simmons, Joseph B. Jefferson", "http://dbpedia.org/resource/Masato_Nakamura", "http://dbpedia.org/resource/Mario_Winans", "http://dbpedia.org/resource/Adonis_Shropshire", "Chauncey Hawkins", "Michael Carlos Jones", "Frankie Romano", "http://dbpedia.org/resource/Jimmy_Castor", "http://dbpedia.org/resource/Jimmy_Smith_(musician)", "Jay Hawkins", "Herb Slotkin", "L. Vandross, M. Miller", "http://dbpedia.org/resource/Leroy_Swearingen", "Leroy Swearingen", "Larry Blackmon, Robert Smith, William Seth Allen", "Marvin Gaye", "Forest Hairston", "http://dbpedia.org/resource/Tori_Kelly", "http://dbpedia.org/resource/Ed_Sheeran", "* Dallas Austin\n* Michael Bivins", "Kurt Walker", "Nasir Jones", "Samuel Barnes", "J. Olivier", "Tremaine Neverson, Joseph Cartegena, Marcello Valenzano, Andre Christopher Lyon, August Rigo, Eddie Montilla", "http://dbpedia.org/resource/Benny_Andersson", "http://dbpedia.org/resource/Bj\u00f6rn_Ulvaeus", "http://dbpedia.org/resource/Brenda_Russell", "http://dbpedia.org/resource/Jermaine_Jackson", "http://dbpedia.org/resource/Billie_Hughes", "http://dbpedia.org/resource/Patrick_Moten", "http://dbpedia.org/resource/Sandra_Sully_(songwriter)", "Juan Luis Morena, Llandel Veguilla, Faheem Rasheed Najm, Victor Martinez, Ernesto Padilla", "Willie Hutch", "Terry Coffey, Jon Nettlesbey", "* Wilson Pickett\n* Steve Cropper", "MC Solaar", "Ira Tucker Jr.", "Dwight Myers", "Christopher Stevens, Ayiesha Woods", "Leroy Kirkland & Mamie Thomas", "http://dbpedia.org/resource/Fred_Weismantel", "Steve Martin", "Koda Kumi, Morimoto Kosuke", "Winfred Lovett", "* H.U.B.\n* Shingo.S", "http://dbpedia.org/resource/Shir\u014d_Sagisu", "http://dbpedia.org/resource/Bobby_Russell", "Verbal, Agent Kozel, Minami", "Lou Josie", "Miko Manguba", "Brian Lotho", "Chino David", "Cholo Dela Cruz", "Joshua Jacobe", "Louie Pedroso", "Martin De Vera", "Mico Cruz", "http://dbpedia.org/resource/Mariah_Carey", "http://dbpedia.org/resource/James_Poyser", "http://dbpedia.org/resource/Lester_Abrams", "http://dbpedia.org/resource/Flavour_N'abania", "Tiwa Savage", "Flavour N'abania and Tiwa Savage", "Zack Tabudlo", "http://dbpedia.org/resource/Sabrina_Carpenter", "http://dbpedia.org/resource/Brett_McLaughlin", "Micha\u00ebl Youn", "Dominique Gauriaud", "Jurij Prette", "Nicolas Brisson", "William Geslin", "http://dbpedia.org/resource/Clay_Hammond", "http://dbpedia.org/resource/Claudine_Clark", "http://dbpedia.org/resource/Walter_Afanasieff", "http://dbpedia.org/resource/Jeff_Cohen_(songwriter)", "Walden", "Afanasieff", "Liz Jackson", "http://dbpedia.org/resource/JonFX", "http://dbpedia.org/resource/XXXTentacion", "http://dbpedia.org/resource/Stefflon_Don", "http://dbpedia.org/resource/Ky-Mani_Marley", "Josh Humber", "Danger Mouse", "Cee-Lo Green", "Vincent Montana Jr., Ronnie James, Janice Gugliuzza", "http://dbpedia.org/resource/Robby_Krieger", "http://dbpedia.org/resource/Ivano_Fossati", "Van Morrison, Hugh Murphy", "Eddie Holland, Harold Beatty", "Lauren\u0163iu Du\u0163\u0103, Ovidiu Bistriceanu", "P-Money, Vince Harder, S Hansen", "Dan Sembello. Don Freeman, John Sembello & Michael Sembello", "Chaka Khan, Rhoda Roberts", "Dan Sembello, Don Freeman, John Sembello & Michael Sembello", "* Aubrey Graham\n* Jacques Webster II\n* Ozan Yildirim\n* Ebony Oshunrinde\n* Jahaan Sweet\n* Stephane Reibaldi\n* Charlotte Wilson\n* Kenneth Edmonds\n* Varrel Wade\n* Marcus Reddick\n* Brandon Banks\n* Kyla Moscovich\n* Michael Gordon\n* Dernst Emile II\n* Teo Halm", "Alan Kasirye", "Taio Cruz", "Yoshi, y@suo ohtani", "http://dbpedia.org/resource/Denise_Eisenberg_Rich", "http://dbpedia.org/resource/Stargate_(production_team)", "Hal Davis, Don Fletcher, Berry Gordy, Mel Larson, Jerry Marcellino", "Bernard \"Beloyd\" Taylor and Peter Cor Belenky", "http://dbpedia.org/resource/Tyra_Bolling", "http://dbpedia.org/resource/Steve_Porcaro", "R. Byrd and T. Terry", "http://dbpedia.org/resource/Ronnie_Freeman", "Ray Charles", "Rico Love, Dwayne Nesmith, Jean-Pierre Medor, Karina Malave", "http://dbpedia.org/resource/Patti_LaBelle", "Armstead Edwards", "James \"Budd\" Ellison", "http://dbpedia.org/resource/Vini_Poncia", "http://dbpedia.org/resource/William_Hart_(singer)", "Warren Peace", "Barbara Lynn Ozen", "J. W. Alexander, Zelda Samuels", "J.W. Alexander, Zelda Samuels", "http://dbpedia.org/resource/Henry_Krieger", "http://dbpedia.org/resource/Siedah_Garrett", "James Johnson, Ernestine Smith", "Roger Atkins, Helen Miller", "Jackie Members", "Richard Poindexter", "Robert Poindexter", "Narada Michael Walden, Sunny Hilden", "http://dbpedia.org/resource/Bobby_Nunn_(R&B_musician)", "http://dbpedia.org/resource/Chico_DeBarge", "http://dbpedia.org/resource/Paul_Kyser", "Barry, Robin and Maurice Gibb", "Ike Turner, Tina Turner", "Anita Poree", "Leonard Caston, Jr.", "Tsunku", "Bill Myers, Brenda Russell, Maurice White", "Peter Radcliffe, Tony Sepe, Barry White", "*Phil Spector\n*Barry Mann\n*Cynthia Weil", "Jackie Wilson, Norm Henry", "Arthur Alexander", "*Eddie Brigati\n*Felix Cavaliere", "Gerald Baillergeau, Cedric R Hailey, Joel Hailey", "Lennon\u2013McCartney", "http://dbpedia.org/resource/William_Bell_(singer)", "Dan Penn, Rick Hall, Oscar Franks", "Leiber/Stoller/Pomus", "http://dbpedia.org/resource/Dave_Crawford_(musician)", "http://dbpedia.org/resource/Trey_Songz", "Alja Jackson", "Kesia Hollins", "Indira Boodram", "Jazmyn Michel Roberts", "Sohshiroh Mizumasa", "http://dbpedia.org/resource/James_F._Hanley", "Wayne Anton Brathwaite, Barry James Eastmond, Billy Ocean", "Troy Taylor", "Tremaine Neverson", "Christopher Umana", "Najja McDwell", "http://dbpedia.org/resource/Teenie_Hodges", "Bob Robinson", "Brian McKnight", "Tim Kelley", "Larry Gottlieb, Marc Blatte", "Lloyd Chiate, L. Garrett, Eddie Money, R. Taylor", "Chris Malinchak, Marvin Gaye", "Jon Lind and Maurice White", "Arlene Matza, Howard McCrary, Maurice White", "Jean Hancock, Jerry Peters", "Al McKay, White", "Philip Bailey, Eddie del Barrio, Roxanne Seeman, White", "S\u01a1n T\u00f9ng M-TP", "http://dbpedia.org/resource/Freddie_Gorman", "Holland\u2013Dozier\u2013Holland\u2013Bradford\u2013Gorman", "*K. Jackson\n*E. White\n* B. Williams", "K. Jackson, E. White, B. Williams", "David Lewis, Wayne Lewis", "Norma Jean Wright, Kenneth M. Burke, Allan W. Felder", "http://dbpedia.org/resource/Richie_Barrett", "http://dbpedia.org/resource/Joe_Strummer", "http://dbpedia.org/resource/Mick_Jones_(The_Clash)", "http://dbpedia.org/resource/Andrew_Farriss", "http://dbpedia.org/resource/Garry_Gary_Beers", "http://dbpedia.org/resource/Jon_Farriss", "http://dbpedia.org/resource/Tim_Farriss", "http://dbpedia.org/resource/Kirk_Pengilly", "http://dbpedia.org/resource/Michael_Hutchence", "I. Clyne", "I. Clyne, G. Humphrys, R. Lovett", "Ian Clyne, Gerry Humphrys, Rob Lovett", "Derek \"D.O.A.\" Allen", "Gerald Isaac", "Phillip \"Taj\" Jackson", "http://dbpedia.org/resource/Stuart_Bascombe", "http://dbpedia.org/resource/Leroy_Burgess", "Maurice White, Verdine White", "Billy Ward, Rose Marks", "*Albert Hamilton\n*Richard Morris\n*Edwin Starr", "Tina Turner", "http://dbpedia.org/resource/Homer_Banks", "Carl Hampton", "*Frank Wildhorn\n*Jack Murphy", "Philip Bailey, Andrew Klippel, Alan Glass", "http://dbpedia.org/resource/Marvin_Yancy", "http://dbpedia.org/resource/The_Independents_(vocal_group)", "Nanna \u00d8land Fabricius", "Owen Beverly", "*Patrick Adams\n*Dave Jordan", "http://dbpedia.org/resource/Brenton_Wood", "Albert Hamilton", "Edward Wingate", "Ronnie Savoy"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Search_(2014_film)> <http://dbpedia.org/ontology/editing> ?x . ?x <http://dbpedia.org/property/awards> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Academy_Award", "http://dbpedia.org/resource/Academy_Award_for_Best_Director", "http://dbpedia.org/resource/C\u00e9sar_Award", "http://dbpedia.org/resource/C\u00e9sar_Award_for_Best_Director", "BAFTA for Best Director", "and other see ''[[#Awards"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/related> <http://dbpedia.org/resource/Yasmin_Paige> . ?x <http://dbpedia.org/ontology/series> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/executiveProducer> <http://dbpedia.org/resource/Steven_Moffat> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": ["20"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/predecessor> <http://dbpedia.org/resource/Sho_engine> . ?x <http://dbpedia.org/ontology/engine> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/draftTeam> <http://dbpedia.org/resource/Ontario> . ?x <http://dbpedia.org/property/team> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/academicAdvisor> <http://dbpedia.org/resource/St_George's_Hospital> . ?x <http://dbpedia.org/property/author> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/athletics> <http://dbpedia.org/resource/National_Collegiate_Athletic_Association> . ?uri <http://dbpedia.org/ontology/almaMater> ?x . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/creators> <http://dbpedia.org/resource/Paul_Dini> . }"}, "answers": ["15"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/family> <http://dbpedia.org/resource/Buccinidae> . }"}, "answers": ["282"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Aghasalim_Childagh> <http://dbpedia.org/ontology/deathPlace> ?uri } "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/John_B._Waldo> <http://dbpedia.org/property/successor> ?uri } "}, "answers": ["http://dbpedia.org/resource/William_Paine_Lord", "http://dbpedia.org/resource/Reuben_S._Strahan"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/occupation> <http://dbpedia.org/resource/Screenwriter> . ?x <http://dbpedia.org/ontology/award> ?uri . }"}, "answers": ["218"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/houses> <http://dbpedia.org/resource/Parliament_Security_Services> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/House>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/location> <http://dbpedia.org/resource/Alabama> . ?x <http://dbpedia.org/ontology/owner> ?uri . }"}, "answers": ["8"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/beatifiedBy> <http://dbpedia.org/resource/Pope_Pius_XI> . ?x <http://dbpedia.org/ontology/mountain>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/associatedBand> <http://dbpedia.org/resource/Foxy_Brown_(rapper)> } "}, "answers": ["http://dbpedia.org/resource/Amerie", "http://dbpedia.org/resource/Kid_Capri", "http://dbpedia.org/resource/Ren\u00e9_Moore", "http://dbpedia.org/resource/Simone_Hines", "http://dbpedia.org/resource/DJ_Clue", "http://dbpedia.org/resource/DJ_Envy", "http://dbpedia.org/resource/Queen_Pen", "http://dbpedia.org/resource/Total_(girl_group)"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/Chickasaw_Campaign_of_1736> . ?x <http://dbpedia.org/ontology/combatant> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/David_Ian_Salter> <http://dbpedia.org/ontology/editing> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/mouthMountain> <http://dbpedia.org/resource/Essex> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/River>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Roy_Walker_(production_designer)> <http://dbpedia.org/ontology/award> ?uri . <http://dbpedia.org/resource/Walt_Disney> <http://dbpedia.org/property/awards> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Marina_Pankova> <http://dbpedia.org/ontology/deathPlace> ?uri . <http://dbpedia.org/resource/Viktor_Ulyanich> <http://dbpedia.org/property/placeOfDeath> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/locationCity> <http://dbpedia.org/resource/Tehran> . ?x <http://dbpedia.org/property/products> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Explosive_weapon", "http://dbpedia.org/resource/Naval_ship", "http://dbpedia.org/resource/Combat_vehicle", "http://dbpedia.org/resource/Artillery", "Small arms", "Civil and military aerospace", "Defence electronics", "Munitions", "Gasoline, motor oils", "Cookies", "http://dbpedia.org/resource/Commemorative_coins", "http://dbpedia.org/resource/Bahar_Azadi_Coin", "", "Rial circulation coins, banknotes and cash cheques", "Mobile broadband services, and TD-LTE fixed wireless broadband services", "sugar, alcohol, wheat, barley, kraft paper, industrial coal, molasses, bagasse"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/office> <http://dbpedia.org/resource/Gold_Base> . ?x <http://dbpedia.org/ontology/religion> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/college> <http://dbpedia.org/resource/Midland_College> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/BasketballPlayer>}"}, "answers": ["1"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/hometown> <http://dbpedia.org/resource/New_York> . ?x <http://dbpedia.org/property/starring> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Hearth_and_Home> <http://dbpedia.org/ontology/editor> ?uri } "}, "answers": ["http://dbpedia.org/resource/Harriet_Beecher_Stowe", "http://dbpedia.org/resource/Donald_Grant_Mitchell"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/restingPlace> <http://dbpedia.org/resource/Convent_of_the_Barefoot_Trinitarians> . ?x <http://dbpedia.org/property/author> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/A_Barrel_of_Tears> <http://dbpedia.org/property/creator> ?x . ?x <http://dbpedia.org/ontology/award> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/position> <http://dbpedia.org/resource/Defenceman> . ?x <http://dbpedia.org/ontology/team> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Link\u00f6ping_HC", "http://dbpedia.org/resource/Buffalo_Beauts", "http://dbpedia.org/resource/Maine_Black_Bears_women's_ice_hockey", "http://dbpedia.org/resource/R\u00f8dovre_Mighty_Bulls_Q", "http://dbpedia.org/resource/HC_Dinamo_Saint_Petersburg", "http://dbpedia.org/resource/Fischtown_Pinguins", "http://dbpedia.org/resource/Cornell_Big_Red_men's_ice_hockey", "http://dbpedia.org/resource/Fr\u00f6lunda_HC", "http://dbpedia.org/resource/Colorado_Avalanche", "http://dbpedia.org/resource/V\u00e5lerenga_Ishockey", "http://dbpedia.org/resource/S\u00f6dert\u00e4lje_SK", "http://dbpedia.org/resource/SCL_Tigers", "http://dbpedia.org/resource/EC_Oilers_Salzburg", "http://dbpedia.org/resource/EHC_Chur", "http://dbpedia.org/resource/Yunost_Minsk", "http://dbpedia.org/resource/Scorpions_de_Mulhouse", "http://dbpedia.org/resource/Traktor_Chelyabinsk", "http://dbpedia.org/resource/Dizel_Penza", "http://dbpedia.org/resource/HC_Dynamo_Moscow", "http://dbpedia.org/resource/Lokomotiv_Yaroslavl", "http://dbpedia.org/resource/Yuzhny_Ural_Orsk", "http://dbpedia.org/resource/Arystan_Temirtau", "http://dbpedia.org/resource/HC_Nov\u00e9_Z\u00e1mky", "http://dbpedia.org/resource/HDD_Jesenice", "http://dbpedia.org/resource/Minnesota_Wild", "http://dbpedia.org/resource/N\u00fcrnberg_Ice_Tigers", "http://dbpedia.org/resource/Brantford_Blast", "http://dbpedia.org/resource/EC_Red_Bull_Salzburg", "http://dbpedia.org/resource/Columbus_Blue_Jackets", "http://dbpedia.org/resource/SKA_Saint_Petersburg", "http://dbpedia.org/resource/Hannover_Scorpions", "http://dbpedia.org/resource/New_York_Rangers", "http://dbpedia.org/resource/Manchester_Storm_(2015\u2013)", "http://dbpedia.org/resource/Nomad_Nur-Sultan", "http://dbpedia.org/resource/HKM_Zvolen", "http://dbpedia.org/resource/New_Jersey_Devils", "http://dbpedia.org/resource/\u00d6rebro_HK", "http://dbpedia.org/resource/Boston_Bruins", "http://dbpedia.org/resource/HC_\u0160koda_Plze\u0148", "http://dbpedia.org/resource/HK_Poprad", "http://dbpedia.org/resource/V\u00e4sterviks_IK", "http://dbpedia.org/resource/Djurg\u00e5rdens_IF_Hockey", "http://dbpedia.org/resource/HC_Slovan_Bratislava", "http://dbpedia.org/resource/PSG_Berani_Zl\u00edn", "http://dbpedia.org/resource/HC_Bozen\u2013Bolzano", "http://dbpedia.org/resource/HK_2016_Trebi\u0161ov", "http://dbpedia.org/resource/HC_Litv\u00ednov", "http://dbpedia.org/resource/HC_Slavia_Praha", "http://dbpedia.org/resource/HC_V\u00edtkovice_Ridera", "http://dbpedia.org/resource/HC_TWK_Innsbruck", "http://dbpedia.org/resource/Herning_Blue_Fox", "http://dbpedia.org/resource/IF_Bj\u00f6rkl\u00f6ven", "http://dbpedia.org/resource/HC_Sparta_Praha", "http://dbpedia.org/resource/Lule\u00e5_HF", "http://dbpedia.org/resource/Asiago_Hockey_1935", "http://dbpedia.org/resource/SC_Rapperswil-Jona_Lakers", "http://dbpedia.org/resource/Tampa_Bay_Lightning", "http://dbpedia.org/resource/Modo_Hockey_Dam", "http://dbpedia.org/resource/Vegas_Golden_Knights", "http://dbpedia.org/resource/Barys_Nur-Sultan", "http://dbpedia.org/resource/Nashville_Predators", "http://dbpedia.org/resource/Memmingen_Indians", "http://dbpedia.org/resource/Maine_Black_Bears", "http://dbpedia.org/resource/ZSC_Lions", "http://dbpedia.org/resource/Edmonton_Oilers", "http://dbpedia.org/resource/HC_CSKA_Moscow", "http://dbpedia.org/resource/Modo_Hockey", "http://dbpedia.org/resource/Coventry_Blaze", "http://dbpedia.org/resource/Chicago_Wolves", "http://dbpedia.org/resource/SC_Bern", "http://dbpedia.org/resource/HC_Dukla_Jihlava", "http://dbpedia.org/resource/HC_Ocel\u00e1\u0159i_T\u0159inec", "http://dbpedia.org/resource/HC_Energie_Karlovy_Vary", "http://dbpedia.org/resource/Oulun_K\u00e4rp\u00e4t", "http://dbpedia.org/resource/Vlci_\u017dilina", "http://dbpedia.org/resource/Montreal_Canadiens", "http://dbpedia.org/resource/HC_Ambr\u00ec-Piotta", "http://dbpedia.org/resource/Bryn\u00e4s_IF", "http://dbpedia.org/resource/ERC_Ingolstadt", "http://dbpedia.org/resource/Winnipeg_Jets", "http://dbpedia.org/resource/HC_Shakhtyor_Soligorsk", "http://dbpedia.org/resource/Avangard_Omsk", "http://dbpedia.org/resource/EVB_Eagles_S\u00fcdtirol", "http://dbpedia.org/resource/HC_Donbass", "http://dbpedia.org/resource/Metallurg_Magnitogorsk", "http://dbpedia.org/resource/Amur_Khabarovsk", "http://dbpedia.org/resource/Sokol_Krasnoyarsk", "http://dbpedia.org/resource/PSK_Sakhalin", "http://dbpedia.org/resource/Mikkelin_Jukurit", "http://dbpedia.org/resource/R\u00f6gle_BK", "http://dbpedia.org/resource/KalPa", "http://dbpedia.org/resource/HC_\u00c4ss\u00e4t_Pori_Oy", "http://dbpedia.org/resource/Ak_Bars_Kazan", "http://dbpedia.org/resource/Almtuna_IS", "http://dbpedia.org/resource/BIK_Karlskoga", "http://dbpedia.org/resource/Toronto_Maple_Leafs", "http://dbpedia.org/resource/Aalborg_Pirates", "http://dbpedia.org/resource/Arizona_Coyotes", "http://dbpedia.org/resource/Salavat_Yulaev_Ufa", "http://dbpedia.org/resource/EHC_Biel", "http://dbpedia.org/resource/HV71", "http://dbpedia.org/resource/Yermak_Angarsk", "http://dbpedia.org/resource/Lukko", "http://dbpedia.org/resource/Lahti_Pelicans", "http://dbpedia.org/resource/Iisalmen_Peli-Karhut", "http://dbpedia.org/resource/HPK", "http://dbpedia.org/resource/Ilves", "http://dbpedia.org/resource/F\u00e4rjestad_BK", "http://dbpedia.org/resource/HIFK", "http://dbpedia.org/resource/Rovaniemen_Kiekko", "http://dbpedia.org/resource/Seattle_Kraken", "http://dbpedia.org/resource/ESC_Planegg", "http://dbpedia.org/resource/Atlant_Moscow_Oblast", "http://dbpedia.org/resource/Rubin_Tyumen", "http://dbpedia.org/resource/Arlan_Kokshetau", "http://dbpedia.org/resource/HK_Martin", "http://dbpedia.org/resource/Ryt\u00ed\u0159i_Kladno", "http://dbpedia.org/resource/HC_Kometa_Brno", "http://dbpedia.org/resource/Avtomobilist_Yekaterinburg", "http://dbpedia.org/resource/Gornyak_Rudny", "http://dbpedia.org/resource/HC_Dynamo_Pardubice", "http://dbpedia.org/resource/HC_Ko\u0161ice", "http://dbpedia.org/resource/Tappara", "http://dbpedia.org/resource/HC_Astana", "http://dbpedia.org/resource/Gyergy\u00f3i_HK", "http://dbpedia.org/resource/HSC_Cs\u00edkszereda", "http://dbpedia.org/resource/HC_Kunlun_Red_Star", "http://dbpedia.org/resource/Yertis_Pavlodar", "http://dbpedia.org/resource/Stavanger_Oilers", "http://dbpedia.org/resource/Straubing_Tigers", "http://dbpedia.org/resource/Kassel_Huskies", "http://dbpedia.org/resource/San_Jose_Barracuda", "http://dbpedia.org/resource/ESV_Kaufbeuren", "http://dbpedia.org/resource/Ottawa_Senators", "http://dbpedia.org/resource/Cleveland_Monsters", "http://dbpedia.org/resource/EHC_Basel", "http://dbpedia.org/resource/HC_Spartak_Moscow", "http://dbpedia.org/resource/HC_Dinamo_Minsk", "http://dbpedia.org/resource/Anaheim_Ducks", "http://dbpedia.org/resource/Washington_Capitals", "http://dbpedia.org/resource/HK_Dukla_Michalovce", "http://dbpedia.org/resource/Calgary_Inferno", "http://dbpedia.org/resource/AIK_Hockey_Dam", "http://dbpedia.org/resource/DK_Peregrine", "http://dbpedia.org/resource/Detroit_Red_Wings", "http://dbpedia.org/resource/Dinamo_Riga", "http://dbpedia.org/resource/HC_TPS", "http://dbpedia.org/resource/Porin_\u00c4ss\u00e4t_(men's_ice_hockey)", "http://dbpedia.org/resource/Dallas_Stars", "http://dbpedia.org/resource/Anyang_Halla", "http://dbpedia.org/resource/Schwenninger_Wild_Wings", "http://dbpedia.org/resource/Metallurg_Novokuznetsk", "http://dbpedia.org/resource/HC_Lada_Togliatti", "http://dbpedia.org/resource/Los_Angeles_Kings", "http://dbpedia.org/resource/HC_Yugra", "http://dbpedia.org/resource/New_York_Islanders", "http://dbpedia.org/resource/HC_Vityaz", "http://dbpedia.org/resource/MAC_Budapest_(women)", "http://dbpedia.org/resource/Chamonix_HC", "http://dbpedia.org/resource/HC_Agidel_Ufa", "http://dbpedia.org/resource/Torpedo_Nizhny_Novgorod", "http://dbpedia.org/resource/Boston_College_Eagles_women's_ice_hockey", "http://dbpedia.org/resource/EV_Lindau_Islanders", "http://dbpedia.org/resource/Orli_Znojmo", "http://dbpedia.org/resource/Bracknell_Queen_Bees", "http://dbpedia.org/resource/San_Jose_Sharks", "http://dbpedia.org/resource/HC_Almaty", "http://dbpedia.org/resource/KooKoo_(ice_hockey_club)", "http://dbpedia.org/resource/Molot-Prikamye_Perm", "http://dbpedia.org/resource/EC_VSV", "http://dbpedia.org/resource/Skellefte\u00e5_AIK", "http://dbpedia.org/resource/HIFK_Naiset", "http://dbpedia.org/resource/Duna\u00fajv\u00e1rosi_Ac\u00e9lbik\u00e1k", "http://dbpedia.org/resource/Link\u00f6ping_HC_Dam", "http://dbpedia.org/resource/KHL_Medve\u0161\u010dak_Zagreb", "http://dbpedia.org/resource/Guildford_Flames", "http://dbpedia.org/resource/Feh\u00e9rv\u00e1r_AV19", "http://dbpedia.org/resource/DVTK_Jegesmedv\u00e9k", "http://dbpedia.org/resource/Deggendorf_Fire", "http://dbpedia.org/resource/Eisb\u00e4ren_Berlin", "http://dbpedia.org/resource/D\u00fcsseldorfer_EG", "http://dbpedia.org/resource/KMH_Budapest_(women)", "http://dbpedia.org/resource/Fort_Wayne_Komets", "http://dbpedia.org/resource/HC_21_Pre\u0161ov", "http://dbpedia.org/resource/AIK_IF", "http://dbpedia.org/resource/Seibu_Princess_Rabbits", "http://dbpedia.org/resource/G\u00f6teborg_HC", "http://dbpedia.org/resource/Vlada_Boleslav", "http://dbpedia.org/resource/Sheffield_Steelers", "http://dbpedia.org/resource/Leeds_Knights", "http://dbpedia.org/resource/Bryn\u00e4s_IF_Dam", "http://dbpedia.org/resource/MHk_32_Liptovsk\u00fd_Mikul\u00e1\u0161", "http://dbpedia.org/resource/JYP_Jyv\u00e4skyl\u00e4", "http://dbpedia.org/resource/Gen\u00e8ve-Servette_HC", "http://dbpedia.org/resource/Seattle_Thunderbirds", "http://dbpedia.org/resource/HC_Lugano", "http://dbpedia.org/resource/KalPa_Naiset", "http://dbpedia.org/resource/HC_Bob\u0159i_Vala\u0161sk\u00e9_Mezi\u0159\u00ed\u010d\u00ed", "http://dbpedia.org/resource/Yale_Bulldogs_women's_ice_hockey", "http://dbpedia.org/resource/MAC_Budapest", "http://dbpedia.org/resource/KISE", "http://dbpedia.org/resource/Minnesota_Whitecaps", "http://dbpedia.org/resource/Worcester_Blades", "http://dbpedia.org/resource/ETC_Crimmitschau", "http://dbpedia.org/resource/Pittsburgh_Penguins", "http://dbpedia.org/resource/Kiekko-Espoo_Naiset", "http://dbpedia.org/resource/Br\u00fbleurs_de_Loups", "http://dbpedia.org/resource/Adler_Mannheim", "http://dbpedia.org/resource/Carolina_Hurricanes", "http://dbpedia.org/resource/Boston_Pride", "http://dbpedia.org/resource/SKIF_Nizhny_Novgorod", "http://dbpedia.org/resource/Shenzhen_KRS_Vanke_Rays", "http://dbpedia.org/resource/Metropolitan_Riveters", "http://dbpedia.org/resource/Lule\u00e5_HF/MSSK", "http://dbpedia.org/resource/Minnesota_Blue_J's", "http://dbpedia.org/resource/HC_Tornado", "http://dbpedia.org/resource/Ferencv\u00e1rosi_TC_(ice_hockey)", "http://dbpedia.org/resource/TUTO_Hockey", "http://dbpedia.org/resource/Florida_Panthers", "http://dbpedia.org/resource/IK_Oskarshamn", "http://dbpedia.org/resource/Leksands_IF", "http://dbpedia.org/resource/Malm\u00f6_Redhawks", "http://dbpedia.org/resource/Free_agent", "http://dbpedia.org/resource/Toyota_Cygnus", "http://dbpedia.org/resource/Vaasan_Sport", "http://dbpedia.org/resource/HC_Pustertal_W\u00f6lfe", "http://dbpedia.org/resource/Grizzlys_Wolfsburg", "http://dbpedia.org/resource/Nice_hockey_C\u00f4te_d'Azur", "http://dbpedia.org/resource/Toronto_Six", "http://dbpedia.org/resource/St._Lawrence_Saints_women's_ice_hockey", "http://dbpedia.org/resource/Brampton_Beast", "http://dbpedia.org/resource/Storhamar_Ishockey", "http://dbpedia.org/resource/BK_Mlad\u00e1_Boleslav", "http://dbpedia.org/resource/Lacombe_Generals", "http://dbpedia.org/resource/Diables_Rouges_de_Brian\u00e7on", "http://dbpedia.org/resource/Augsburger_Panther", "http://dbpedia.org/resource/Vienna_Capitals", "http://dbpedia.org/resource/St._Louis_Blues", "http://dbpedia.org/resource/Frisk_Asker_Ishockey", "http://dbpedia.org/resource/GKS_Tychy_(ice_hockey)", "http://dbpedia.org/resource/CS_Progym_Gheorgheni", "http://dbpedia.org/resource/Graz_99ers", "http://dbpedia.org/resource/Lausanne_HC", "http://dbpedia.org/resource/Nottingham_Panthers", "http://dbpedia.org/resource/GKS_Hockey", "http://dbpedia.org/resource/SaiPa", "http://dbpedia.org/resource/HK_Nitra", "http://dbpedia.org/resource/EC_Peiting", "http://dbpedia.org/resource/IHC_P\u00edsek", "http://dbpedia.org/resource/HC_B\u00edl\u00ed_Tyg\u0159i_Liberec", "http://dbpedia.org/resource/EC_KAC", "http://dbpedia.org/resource/GKS_Katowice_(ice_hockey)", "http://dbpedia.org/resource/HC_Lev_Praha", "http://dbpedia.org/resource/HC_P\u0159\u00edbram", "http://dbpedia.org/resource/Leksands_IF_Dam", "http://dbpedia.org/resource/EHC_Olten", "http://dbpedia.org/resource/Vancouver_Canucks", "http://dbpedia.org/resource/Cardiff_Devils", "http://dbpedia.org/resource/V\u00e4xj\u00f6_Lakers", "http://dbpedia.org/resource/Daemyung_Killer_Whales", "http://dbpedia.org/resource/Minnesota_Golden_Gophers_men's_ice_hockey", "http://dbpedia.org/resource/Buffalo_Sabres", "http://dbpedia.org/resource/Timr\u00e5_IK", "http://dbpedia.org/resource/Motor_\u010cesk\u00e9_Bud\u011bjovice", "http://dbpedia.org/resource/SK_Trha\u010di_Kada\u0148", "http://dbpedia.org/resource/Trenton_Titans", "http://dbpedia.org/resource/EV_Landshut", "http://dbpedia.org/resource/HC_Davos", "http://dbpedia.org/resource/ZSC_Lions_Frauen", "http://dbpedia.org/resource/M\u00f6rrums_GoIS_IK", "http://dbpedia.org/resource/Esbjerg_Energy", "http://dbpedia.org/resource/Imatran_Ketter\u00e4", "http://dbpedia.org/resource/Prince_George_Cougars", "http://dbpedia.org/resource/HC_2001_Kladno", "http://dbpedia.org/resource/Red_Eagles_Hokkaido", "http://dbpedia.org/resource/Wisconsin_Badgers_women's_ice_hockey", "http://dbpedia.org/resource/Vaughan_Flames", "http://dbpedia.org/resource/Philadelphia_Flyers", "http://dbpedia.org/resource/HC_Valpellice", "http://dbpedia.org/resource/Ravensburg_Towerstars", "http://dbpedia.org/resource/Suwon_City_Hall_women's_ice_hockey_team", "http://dbpedia.org/resource/Dragons_de_Rouen", "http://dbpedia.org/resource/HK_Spi\u0161sk\u00e1_Nov\u00e1_Ves", "http://dbpedia.org/resource/Sparta_Warriors", "http://dbpedia.org/resource/Mora_IK", "http://dbpedia.org/resource/HC_'05_Bansk\u00e1_Bystrica", "http://dbpedia.org/resource/HC_Neftekhimik_Nizhnekamsk", "http://dbpedia.org/resource/HC_19_Humenn\u00e9", "http://dbpedia.org/resource/Boxers_de_Bordeaux", "http://dbpedia.org/resource/Cz:VHK_ROBE_Vset\u00edn", "http://dbpedia.org/resource/Espoo_Blues", "http://dbpedia.org/resource/Steinbach_Black_Wings_Linz", "http://dbpedia.org/resource/TPS_Naiset", "http://dbpedia.org/resource/Connecticut_Whale_(PHF)", "http://dbpedia.org/resource/EHC_Winterthur", "http://dbpedia.org/resource/Toronto_Furies", "http://dbpedia.org/resource/Dresdner_Eisl\u00f6wen", "http://dbpedia.org/resource/Herlev_Eagles", "http://dbpedia.org/resource/SC_Bietigheim_Steelers", "http://dbpedia.org/resource/Calgary_Flames", "http://dbpedia.org/resource/Toronto_Marlies", "http://dbpedia.org/resource/Prince_Albert_Raiders", "http://dbpedia.org/resource/Belfast_Giants", "http://dbpedia.org/resource/Admiral_Vladivostok", "http://dbpedia.org/resource/New_Hampshire_Wildcats_women's_ice_hockey", "http://dbpedia.org/resource/Chicago_Blackhawks", "http://dbpedia.org/resource/K\u00f6lner_Haie", "http://dbpedia.org/resource/R\u00f8dovre_Mighty_Bulls", "http://dbpedia.org/resource/Narvik_IK", "http://dbpedia.org/resource/HC_Vita_H\u00e4sten", "http://dbpedia.org/resource/Anglet_Hormadi_\u00c9lite", "http://dbpedia.org/resource/HC_Neman_Grodno", "http://dbpedia.org/resource/HIFK_Hockey", "http://dbpedia.org/resource/Tingsryds_AIF", "http://dbpedia.org/resource/Djurg\u00e5rdens_IF_Hockey_(women)", "http://dbpedia.org/resource/Malm\u00f6_Redhawks_Dam", "http://dbpedia.org/resource/Providence_Bruins", "http://dbpedia.org/resource/FK_Hajduk_Beograd", "http://dbpedia.org/resource/Serbian_White_Eagles_FC", "http://dbpedia.org/resource/FK_Vr\u0161ac", "http://dbpedia.org/resource/FC_Arda_Kardzhali", "http://dbpedia.org/resource/FK_BSK_Batajnica", "http://dbpedia.org/resource/FK_Be\u017eanija", "http://dbpedia.org/resource/FK_Brodarac", "http://dbpedia.org/resource/FK_Budu\u0107nost_Dobanovci", "http://dbpedia.org/resource/FK_Gorno_Lisi\u010de", "http://dbpedia.org/resource/FK_Rad", "http://dbpedia.org/resource/FK_Radni\u010dki_Beograd", "http://dbpedia.org/resource/FK_Smederevo_1924", "http://dbpedia.org/resource/FK_Zvezdara", "http://dbpedia.org/resource/POFC_Botev_Vratsa", "http://dbpedia.org/resource/Kiekko-Espoo", "http://dbpedia.org/resource/EV_Bomo_Thun", "http://dbpedia.org/resource/EC_Bad_T\u00f6lz", "http://dbpedia.org/resource/UMass_Minutemen_ice_hockey", "http://dbpedia.org/resource/Kongsvinger_Knights", "http://dbpedia.org/resource/HC_Thurgau", "http://dbpedia.org/resource/Iserlohn_Roosters", "http://dbpedia.org/resource/Severstal_Cherepovets", "http://dbpedia.org/resource/Belye_Medveditsy", "http://dbpedia.org/resource/DEAC_(ice_hockey)", "http://dbpedia.org/resource/KHL_Sisak", "http://dbpedia.org/resource/Beibarys_Atyrau", "http://dbpedia.org/resource/Lokomotiv_Orsha", "http://dbpedia.org/resource/Wilkes-Barre/Scranton_Penguins", "http://dbpedia.org/resource/Tri-City_Storm", "http://dbpedia.org/resource/HC_Fassa_Falcons", "http://dbpedia.org/resource/SC_Reinach_Damen", "http://dbpedia.org/resource/HK_Dukla_Tren\u010d\u00edn", "http://dbpedia.org/resource/Florida_Everblades", "http://dbpedia.org/resource/HC_Sibir_Novosibirsk", "http://dbpedia.org/resource/Rapaces_de_Gap", "http://dbpedia.org/resource/Toledo_Walleye", "http://dbpedia.org/resource/Dornbirn_Bulldogs", "http://dbpedia.org/resource/Rockford_IceHogs", "http://dbpedia.org/resource/Str\u00f6msbro_IF", "http://dbpedia.org/resource/Sheffield_Steeldogs", "http://dbpedia.org/resource/1._EV_Weiden", "http://dbpedia.org/resource/North_Bay_Battalion", "http://dbpedia.org/resource/SK_Hor\u00e1ck\u00e1_Slavia_T\u0159eb\u00ed\u010d", "http://dbpedia.org/resource/Ontario_Reign", "http://dbpedia.org/resource/UConn_Huskies_women's_ice_hockey", "http://dbpedia.org/resource/Vancouver_Giants", "http://dbpedia.org/resource/Providence_Friars_women's_ice_hockey", "http://dbpedia.org/resource/EV_Zug", "http://dbpedia.org/resource/Frederikshavn_White_Hawks", "http://dbpedia.org/resource/S\u00f8nderjyskE_Ishockey", "http://dbpedia.org/resource/Orlando_Solar_Bears", "http://dbpedia.org/resource/Calgary_Oval_X-Treme", "http://dbpedia.org/resource/Winnipeg_Ice", "http://dbpedia.org/resource/SC_Langenthal", "http://dbpedia.org/resource/Markham_Thunder", "http://dbpedia.org/resource/Les_Canadiennes_de_Montr\u00e9al", "http://dbpedia.org/resource/University_of_Ottawa", "http://dbpedia.org/resource/Pir\u00e1ti_Chomutov", "http://dbpedia.org/resource/Merrimack_Warriors_women's_ice_hockey", "http://dbpedia.org/resource/Princeton_Tigers_women's_ice_hockey", "http://dbpedia.org/resource/Saint-Georges_Cool_FM_103.5", "http://dbpedia.org/resource/Hamilton_Steelhawks_(senior)", "http://dbpedia.org/resource/Utica_Comets", "http://dbpedia.org/resource/Rungsted_Ishockey_Klub", "http://dbpedia.org/resource/Saint_Pierre_and_Miquelon_national_football_team", "http://dbpedia.org/resource/A.S._Saint_Pierraise", "http://dbpedia.org/resource/Hudiksvalls_HC", "http://dbpedia.org/resource/Bossier-Shreveport_Mudbugs", "http://dbpedia.org/resource/AaB_Ishockey_Damer", "http://dbpedia.org/resource/Vermont_Catamounts_women's_ice_hockey", "http://dbpedia.org/resource/Wisconsin_Badgers_men's_ice_hockey", "http://dbpedia.org/resource/Corsaires_de_Dunkerque", "http://dbpedia.org/resource/Harvard_Crimson_men's_ice_hockey", "http://dbpedia.org/resource/RPI_Engineers_women's_ice_hockey", "http://dbpedia.org/resource/HC_Red_Ice", "http://dbpedia.org/resource/Mountfield_HK", "http://dbpedia.org/resource/Nikk\u014d_Ice_Bucks", "http://dbpedia.org/resource/Mitsuboshi_Daito_Peregrine", "http://dbpedia.org/resource/Mikage_Gretz", "http://dbpedia.org/resource/Greenville_Swamp_Rabbits", "http://dbpedia.org/resource/HC_Sarov", "http://dbpedia.org/resource/HC_Ryazan", "http://dbpedia.org/resource/Cracovia_(ice_hockey)", "http://dbpedia.org/resource/HDD_Olimpija_Ljubljana", "http://dbpedia.org/resource/Manitoba_Moose", "http://dbpedia.org/resource/HC_Stadion_Litom\u011b\u0159ice", "http://dbpedia.org/resource/HC_Olomouc", "http://dbpedia.org/resource/HC_Sochi", "http://dbpedia.org/resource/Laval_Predators", "http://dbpedia.org/resource/Milton_Keynes_Lightning", "http://dbpedia.org/resource/Minnesota_State_Mavericks_women's_ice_hockey", "http://dbpedia.org/resource/Dinamo-Neva_Saint_Petersburg", "http://dbpedia.org/resource/Kamloops_Blazers", "http://dbpedia.org/resource/Hvidovre_IK_Kvinder", "http://dbpedia.org/resource/Minnesota_Golden_Gophers_women's_ice_hockey", "http://dbpedia.org/resource/V\u00e4ster\u00e5s_IK", "http://dbpedia.org/resource/Ducs_d'Angers", "http://dbpedia.org/resource/Tohoku_Free_Blades", "http://dbpedia.org/resource/Jokerit", "http://dbpedia.org/resource/Brest_Albatros_Hockey", "http://dbpedia.org/resource/St.Thomas_University,_Saint_Paul-MN_-_USA", "http://dbpedia.org/resource/Oulunkyl\u00e4n_Kiekko-Kerho", "http://dbpedia.org/resource/Saginaw_Spirit", "http://dbpedia.org/resource/Buran_Voronezh", "http://dbpedia.org/resource/Peliitat_Heinola", "http://dbpedia.org/resource/\u00dajpesti_TE_(ice_hockey)", "http://dbpedia.org/resource/MHK_Dubnica_nad_V\u00e1hom", "http://dbpedia.org/resource/Gr\u00e4storps_IK", "http://dbpedia.org/resource/HC_Banik_Sokolov", "http://dbpedia.org/resource/HC_Fribourg-Gott\u00e9ron", "http://dbpedia.org/resource/Bisons_de_Neuilly-sur-Marne", "http://dbpedia.org/resource/HC_Ajoie", "http://dbpedia.org/resource/Saryarka_Karagandy", "http://dbpedia.org/resource/BC_Samara", "http://dbpedia.org/resource/Biryusa_Krasnoyarsk", "http://dbpedia.org/resource/HV71_Dam", "http://dbpedia.org/resource/L\u00f8renskog_IK", "http://dbpedia.org/resource/EHC_Bregenzerwald", "http://dbpedia.org/resource/Bakersfield_Condors_(1998\u20132015)", "http://dbpedia.org/resource/Stoney_Creek_Generals", "http://dbpedia.org/resource/HPK_Kiekkonaiset", "http://dbpedia.org/resource/JKH_GKS_Jastrz\u0119bie", "http://dbpedia.org/resource/HK_M\u0160K_Indian_\u017diar_nad_Hronom", "http://dbpedia.org/resource/United_States_national_team", "http://dbpedia.org/resource/HC_T\u00e1bor", "http://dbpedia.org/resource/Daishin_Hockey", "http://dbpedia.org/resource/HC_Topo\u013e\u010dany", "http://dbpedia.org/resource/Colgate_Raiders_women's_ice_hockey", "http://dbpedia.org/resource/London_Knights", "http://dbpedia.org/resource/Meg\u00e8ve_HC", "http://dbpedia.org/resource/Michigan_Wolverines_men's_ice_hockey", "http://dbpedia.org/resource/Chevaliers_du_lac_d'Annecy", "http://dbpedia.org/resource/Mississauga_Steelheads", "http://dbpedia.org/resource/KeuPa_HT", "http://dbpedia.org/resource/Aspl\u00f6ven_HC", "http://dbpedia.org/resource/Dundas_Real_McCoys", "http://dbpedia.org/resource/Invicta_Dymamos", "http://dbpedia.org/resource/Lausitzer_F\u00fcchse", "http://dbpedia.org/resource/HT_Thurgau_Ladies", "http://dbpedia.org/resource/Starbulls_Rosenheim", "http://dbpedia.org/resource/SC_Riessersee", "http://dbpedia.org/resource/L\u00f6wen_Frankfurt", "http://dbpedia.org/resource/EHC_Red_Bull_M\u00fcnchen", "http://dbpedia.org/resource/Taesongsan_Sports_Club", "http://dbpedia.org/resource/HC_Tambov", "http://dbpedia.org/resource/HK_Riga", "http://dbpedia.org/resource/Krefeld_Pinguine", "http://dbpedia.org/resource/HK_Kurbads", "http://dbpedia.org/resource/Odense_Bulldogs", "http://dbpedia.org/resource/HC_Sion", "http://dbpedia.org/resource/HC_07_Detva", "http://dbpedia.org/resource/Koovee_(ice_hockey)", "http://dbpedia.org/resource/Glasgow_Clan", "http://dbpedia.org/resource/Brock_Badgers", "http://dbpedia.org/resource/HC_Slovan_\u00daste\u010dt\u00ed_Lvi", "http://dbpedia.org/resource/Varberg_Vipers", "http://dbpedia.org/resource/HC_RT_Torax_Poruba", "http://dbpedia.org/resource/Humo_Tashkent", "http://dbpedia.org/resource/Bor\u00e5s_HC", "http://dbpedia.org/resource/Cornell_Big_Red_women's_ice_hockey", "http://dbpedia.org/resource/Stony_Plain_Eagles", "http://dbpedia.org/resource/HK_Partizan", "http://dbpedia.org/resource/VEU_Feldkirch", "http://dbpedia.org/resource/Mitsuboshi_Daito_Perigrine", "http://dbpedia.org/resource/Sokil_Kyiv", "http://dbpedia.org/resource/Quinnipiac_Bobcats_men's_ice_hockey"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/president> <http://dbpedia.org/resource/Joseph_Stiglitz> } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/manufacturer> <http://dbpedia.org/resource/Sony> . ?uri <http://dbpedia.org/property/products> <http://dbpedia.org/resource/Foxconn> . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/programmeFormat> <http://dbpedia.org/resource/Religion> . ?x <http://dbpedia.org/property/city> ?uri }"}, "answers": ["http://dbpedia.org/resource/Grantsville,_Maryland", "http://dbpedia.org/resource/Bath,_Maine", "http://dbpedia.org/resource/New_Berlin,_Pennsylvania", "http://dbpedia.org/resource/San_Juan,_Puerto_Rico", "San Juan, Puerto Rico", "http://dbpedia.org/resource/Juana_Diaz,_Puerto_Rico", "http://dbpedia.org/resource/Puerto_Rico", "Juana Diaz, Puerto Rico", "http://dbpedia.org/resource/Port_St._Joe,_Florida", "http://dbpedia.org/resource/Easley,_South_Carolina", "http://dbpedia.org/resource/Cedar_Lake,_Michigan", "http://dbpedia.org/resource/Battle_Creek,_Michigan", "http://dbpedia.org/resource/Hammonton,_New_Jersey", "http://dbpedia.org/resource/Broussard,_Louisiana", "http://dbpedia.org/resource/Louisiana", "http://dbpedia.org/resource/North_Carolina", "http://dbpedia.org/resource/Clayton,_North_Carolina", "http://dbpedia.org/resource/Williamsburg,_Virginia", "http://dbpedia.org/resource/Culebra,_Puerto_Rico", "http://dbpedia.org/resource/Florida", "http://dbpedia.org/resource/Edgewater,_Volusia_County,_Florida", "http://dbpedia.org/resource/Frostburg,_Maryland", "http://dbpedia.org/resource/Bay_City,_Michigan", "http://dbpedia.org/resource/Emmitsburg,_Maryland", "http://dbpedia.org/resource/Maryland", "http://dbpedia.org/resource/Paducah,_Kentucky", "http://dbpedia.org/resource/Sandusky,_Michigan", "http://dbpedia.org/resource/Oak_Hill,_West_Virginia", "http://dbpedia.org/resource/Elkton,_Maryland", "http://dbpedia.org/resource/Montrose,_Pennsylvania", "Binghamton, New York", "Elmira, New York", "Sayre, Pennsylvania", "Endicott, New York", "http://dbpedia.org/resource/Danville,_Pennsylvania", "http://dbpedia.org/resource/Pe\u00f1uelas,_Puerto_Rico", "Ponce, Puerto Rico", "http://dbpedia.org/resource/Ponce,_Puerto_Rico", "Caguas, Puerto Rico", "Mayaguez, Puerto Rico", "http://dbpedia.org/resource/Chester,_Pennsylvania", "http://dbpedia.org/resource/Pennsylvania", "http://dbpedia.org/resource/Cypress_Quarters,_Florida", "Boca Raton, Florida", "Bonita Springs, Florida", "Clermont, Florida", "Fort Lauderdale, Florida", "Fort Meade, Florida", "Fort Myers, Florida", "Naples, Florida", "Palm Coast, Florida", "Port St. Lucie, Florida", "Altamonte Springs, Florida", "Belle Glade, Florida", "Lauderdale Lakes, Florida", "Port Charlotte, Florida", "Bayonet Point, Florida", "Grant, Florida", "Frostproof, Florida", "Gulfport, Florida", "Lehigh Acres, Florida", "Oakland Park, Florida", "Suncoast Estates, Florida", "Wesley Chapel, Florida", "Zolfo Springs, Florida", "Aurora, Florida", "Twentymile Bend, Florida", "http://dbpedia.org/resource/Chiefland,_Florida", "http://dbpedia.org/resource/Greenville,_South_Carolina", "http://dbpedia.org/resource/Lima,_Ohio", "http://dbpedia.org/resource/Ohio", "http://dbpedia.org/resource/Camden,_New_Jersey", "http://dbpedia.org/resource/New_Jersey", "http://dbpedia.org/resource/Aguadilla,_Puerto_Rico", "http://dbpedia.org/resource/Sterling_Heights,_Michigan", "http://dbpedia.org/resource/Burgaw,_North_Carolina", "http://dbpedia.org/resource/Baraga,_Michigan", "http://dbpedia.org/resource/Cocoa,_Florida", "Cocoa, Florida", "Melbourne, Florida", "http://dbpedia.org/resource/Red_Springs,_North_Carolina", "http://dbpedia.org/resource/North_Charleston,_South_Carolina", "http://dbpedia.org/resource/South_Carolina", "http://dbpedia.org/resource/June_Lake,_California", "http://dbpedia.org/resource/Altoona,_Pennsylvania", "http://dbpedia.org/resource/Austin,_Minnesota", "http://dbpedia.org/resource/Minnesota", "http://dbpedia.org/resource/Corpus_Christi,_Texas", "http://dbpedia.org/resource/Barstow,_California", "http://dbpedia.org/resource/United_States", "http://dbpedia.org/resource/Northern_Cambria,_Pennsylvania", "http://dbpedia.org/resource/Gaylord,_Michigan", "http://dbpedia.org/resource/Pasig", "http://dbpedia.org/resource/Pittsford,_Michigan", "http://dbpedia.org/resource/Schoolcraft,_Michigan", "http://dbpedia.org/resource/Twin_Falls,_Idaho", "http://dbpedia.org/resource/Idaho", "http://dbpedia.org/resource/Detroit_Lakes,_Minnesota", "http://dbpedia.org/resource/De_Soto,_Missouri", "http://dbpedia.org/resource/Missouri", "http://dbpedia.org/resource/Ponca,_Nebraska", "http://dbpedia.org/resource/Nebraska", "http://dbpedia.org/resource/Tyler,_Texas", "http://dbpedia.org/resource/Delta,_Colorado", "http://dbpedia.org/resource/Colorado", "http://dbpedia.org/resource/Grand_Island,_Nebraska", "http://dbpedia.org/resource/McCook,_Nebraska", "http://dbpedia.org/resource/Texas", "http://dbpedia.org/resource/Round_Rock,_Texas", "http://dbpedia.org/resource/Lander,_Wyoming", "http://dbpedia.org/resource/Wyoming", "http://dbpedia.org/resource/Bristow,_Oklahoma", "http://dbpedia.org/resource/Rancho_Simi", "http://dbpedia.org/resource/California", "http://dbpedia.org/resource/Cheyenne,_Wyoming", "http://dbpedia.org/resource/Worland,_Wyoming", "http://dbpedia.org/resource/Gladwin,_Michigan"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bertrada_of_Laon> <http://dbpedia.org/property/mother> ?uri } "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/AH141> <http://dbpedia.org/ontology/league> ?uri . <http://dbpedia.org/resource/Malaysia_Junior_Hockey_League> <http://dbpedia.org/property/country> ?uri} "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Celluloid_Records> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Artist>}"}, "answers": ["5"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/trainer> <http://dbpedia.org/resource/Henry_McDaniel_(racehorse_trainer)> . ?x <http://dbpedia.org/property/awards> ?uri . }"}, "answers": ["http://dbpedia.org/resource/American_Champion_Older_Male_Horse", "", "http://dbpedia.org/resource/American_Champion_Three-Year-Old_Male_Horse", "http://dbpedia.org/resource/Eclipse_Award_for_Horse_of_the_Year", "http://dbpedia.org/resource/American_Champion_Two-Year-Old_Colt", "http://dbpedia.org/resource/American_Champion_Older_Dirt_Male_Horse", "http://dbpedia.org/resource/American_Horse_of_the_Year"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Klang_Valley> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Cashion>}"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/owner> <http://dbpedia.org/resource/Tabriz> . ?x <http://dbpedia.org/property/builder> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/college> <http://dbpedia.org/resource/Arizona_State_Sun_Devils> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/GolfPlayer>}"}, "answers": ["http://dbpedia.org/resource/Anna_Nordqvist", "http://dbpedia.org/resource/Jeanne-Marie_Busuttil", "http://dbpedia.org/resource/Jon_Rahm", "http://dbpedia.org/resource/Carlota_Ciganda", "http://dbpedia.org/resource/Heather_Farr", "http://dbpedia.org/resource/Phil_Mickelson", "http://dbpedia.org/resource/Mike_Hill_(golfer)"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Saxophone> . ?uri <http://dbpedia.org/property/tenant> ?x . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/school> <http://dbpedia.org/resource/Protestant_Schools_Association> . ?x <http://dbpedia.org/property/games> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/William_Anthony_(artist)> <http://dbpedia.org/ontology/training> ?uri . <http://dbpedia.org/resource/Yale_Repertory_Theatre> <http://dbpedia.org/property/owner> ?uri} "}, "answers": ["http://dbpedia.org/resource/Yale_University"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/institution> <http://dbpedia.org/resource/Erica_Frank> . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kunsten_Museum_of_Modern_Art_Aalborg> <http://dbpedia.org/property/language> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/relatives> <http://dbpedia.org/resource/Ron_Cyrus> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": ["http://dbpedia.org/resource/Brandi_Cyrus", "http://dbpedia.org/resource/Trace_Cyrus"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/services> <http://dbpedia.org/resource/Web_hosting_service> . ?x <http://dbpedia.org/property/services> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/parent> <http://dbpedia.org/resource/Julius_Caesar> . ?x <http://dbpedia.org/property/successor> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Tiberius", "Augustus", "Tiberius, stepson by third wife, son-in-law, and adoptive son"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Voere> <http://dbpedia.org/ontology/predecessor> ?uri } "}, "answers": ["http://dbpedia.org/resource/West_Germany"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/editing> <http://dbpedia.org/resource/Mark_Stevens_(film_editor)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": ["http://dbpedia.org/resource/Freddy_vs._Jason", "http://dbpedia.org/resource/The_Collection_(film)", "http://dbpedia.org/resource/The_Final_Destination", "http://dbpedia.org/resource/The_Number_23", "http://dbpedia.org/resource/8mm_(film)", "http://dbpedia.org/resource/Batman_&_Robin_(film)", "http://dbpedia.org/resource/Flawless_(1999_film)", "http://dbpedia.org/resource/Leprechaun:_Origins", "http://dbpedia.org/resource/Phone_Booth_(film)", "http://dbpedia.org/resource/Tigerland", "http://dbpedia.org/resource/Setup_(2011_film)", "http://dbpedia.org/resource/Stay_Alive", "http://dbpedia.org/resource/Blood_Creek", "http://dbpedia.org/resource/Patient_Zero_(film)"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/tenants> <http://dbpedia.org/resource/Raptors_905> . ?x <http://dbpedia.org/ontology/tenant> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/battle> <http://dbpedia.org/resource/Croix_de_Guerre> . ?x <http://dbpedia.org/property/territory> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Royal_Society> <http://dbpedia.org/property/awards> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ford_SHO_V8_engine> <http://dbpedia.org/ontology/manufacturer> ?uri } "}, "answers": ["http://dbpedia.org/resource/Ford_Motor_Company", "http://dbpedia.org/resource/Yamaha_Motor_Company"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Mauritius_Broadcasting_Corporation> <http://dbpedia.org/ontology/broadcastArea> ?uri } "}, "answers": ["http://dbpedia.org/resource/Mauritius", "http://dbpedia.org/resource/Agal\u00e9ga", "http://dbpedia.org/resource/Rodrigues"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/cinematography> <http://dbpedia.org/resource/Gregg_Toland> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": ["http://dbpedia.org/resource/Dead_End_(1937_film)", "http://dbpedia.org/resource/Beloved_Enemy", "http://dbpedia.org/resource/Forsaking_All_Others", "http://dbpedia.org/resource/Enchantment_(1948_film)", "http://dbpedia.org/resource/Play_Girl_(1932_film)", "http://dbpedia.org/resource/The_Bat_(1926_film)", "http://dbpedia.org/resource/The_Best_Years_of_Our_Lives", "http://dbpedia.org/resource/The_Bishop's_Wife", "http://dbpedia.org/resource/The_Cowboy_and_the_Lady_(1938_film)", "http://dbpedia.org/resource/The_Dark_Angel_(1935_film)", "http://dbpedia.org/resource/The_Devil_to_Pay!", "http://dbpedia.org/resource/The_Goldwyn_Follies", "http://dbpedia.org/resource/The_Grapes_of_Wrath_(film)", "http://dbpedia.org/resource/The_Kid_from_Brooklyn", "http://dbpedia.org/resource/The_Kid_from_Spain", "http://dbpedia.org/resource/The_Little_Foxes_(film)", "http://dbpedia.org/resource/The_Long_Voyage_Home", "http://dbpedia.org/resource/The_Masquerader_(1933_film)", "http://dbpedia.org/resource/The_Nuisance_(1933_film)", "http://dbpedia.org/resource/The_Outlaw", "http://dbpedia.org/resource/The_Road_to_Glory", "http://dbpedia.org/resource/The_Tenderfoot_(film)", "http://dbpedia.org/resource/The_Trespasser_(1929_film)", "http://dbpedia.org/resource/The_Unholy_Garden", "http://dbpedia.org/resource/The_Washington_Masquerade", "http://dbpedia.org/resource/The_Wedding_Night", "http://dbpedia.org/resource/The_Westerner_(1940_film)", "http://dbpedia.org/resource/The_Winning_of_Barbara_Worth", "http://dbpedia.org/resource/Citizen_Kane", "http://dbpedia.org/resource/Come_and_Get_It_(1936_film)", "http://dbpedia.org/resource/Condemned_(1929_film)", "http://dbpedia.org/resource/Ball_of_Fire", "http://dbpedia.org/resource/Intermezzo_(1939_film)", "http://dbpedia.org/resource/Nana_(1934_film)", "http://dbpedia.org/resource/Tonight_or_Never_(1931_film)", "http://dbpedia.org/resource/Tugboat_Annie", "http://dbpedia.org/resource/A_Song_Is_Born", "http://dbpedia.org/resource/Bulldog_Drummond_(1922_film)", "http://dbpedia.org/resource/Bulldog_Drummond_(1929_film)", "http://dbpedia.org/resource/Street_Scene_(film)", "http://dbpedia.org/resource/Lazy_River_(film)", "http://dbpedia.org/resource/Song_of_the_South", "http://dbpedia.org/resource/Man_Wanted", "http://dbpedia.org/resource/Les_Mis\u00e9rables_(1935_film)", "http://dbpedia.org/resource/Public_Hero_\ufe5f1", "http://dbpedia.org/resource/Queen_Kelly", "http://dbpedia.org/resource/Raffles_(1930_film)", "http://dbpedia.org/resource/Raffles_(1939_film)", "http://dbpedia.org/resource/These_Three", "http://dbpedia.org/resource/This_Is_Heaven", "http://dbpedia.org/resource/Woman_Chases_Man", "http://dbpedia.org/resource/Wuthering_Heights_(1939_film)", "http://dbpedia.org/resource/One_Heavenly_Night", "http://dbpedia.org/resource/Splendor_(1935_film)", "http://dbpedia.org/resource/Indiscreet_(1931_film)", "http://dbpedia.org/resource/Palmy_Days", "http://dbpedia.org/resource/We_Live_Again"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/university> <http://dbpedia.org/resource/Penn_State_Nittany_Lions_football> . ?x <http://dbpedia.org/property/highschool> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/family> <http://dbpedia.org/resource/Balanidae> . ?x <http://dbpedia.org/property/authority> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/highschool> <http://dbpedia.org/resource/Ringgold_High_School_(Pennsylvania)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/AmericanFootballPlayer>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/battle> <http://dbpedia.org/resource/Afghanistan> . ?x <http://dbpedia.org/property/territory> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/relatives> <http://dbpedia.org/resource/Kendall_Jenner> . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/employer> <http://dbpedia.org/resource/CNN> . ?x <http://dbpedia.org/property/almaMater> ?uri . }"}, "answers": ["http://dbpedia.org/resource/American_University", "", "http://dbpedia.org/resource/University_of_Miami", "St. Thomas University", "http://dbpedia.org/resource/George_Washington_University", "http://dbpedia.org/resource/Bachelor_of_Arts", "Schulich School of Business, York University", "Northwestern University", "http://dbpedia.org/resource/University_of_Texas_at_Austin", "http://dbpedia.org/resource/George_Mason_University", "http://dbpedia.org/resource/Sciences_Po", "George Washington University", "http://dbpedia.org/resource/Colgate_University", "University of Massachusetts Amherst, Massachusetts", "http://dbpedia.org/resource/University_of_Missouri", "University of California, Berkeley", "http://dbpedia.org/resource/Wellesley_College", "University of Virginia", "University of Rhode Island", "Johns Hopkins University", "University of Texas at Austin", "http://dbpedia.org/resource/Pennsylvania_State_University", "http://dbpedia.org/resource/Vassar_College", "http://dbpedia.org/resource/London_School_of_Economics", "University of Technology Sydney", "http://dbpedia.org/resource/University_of_Dayton", "http://dbpedia.org/resource/Georgetown_University", "Cornell University", "http://dbpedia.org/resource/University_at_Buffalo", "Yale University", "University of Victoria, British Columbia"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/First_Church_of_Christ,_Scientist_(Pittsburgh)> <http://dbpedia.org/ontology/location> ?uri } "}, "answers": ["http://dbpedia.org/resource/Pittsburgh"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Henry_Bourchier> <http://dbpedia.org/ontology/spouse> ?x . ?x <http://dbpedia.org/property/restingplace> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/United_States> . ?uri <http://dbpedia.org/property/network> ?x . }"}, "answers": ["http://dbpedia.org/resource/Knicks\u2013Nuggets_brawl", "http://dbpedia.org/resource/Wrestlicious", "http://dbpedia.org/resource/1949_NFL_Championship_Game", "http://dbpedia.org/resource/1950_NFL_Championship_Game", "http://dbpedia.org/resource/1960_World_600", "http://dbpedia.org/resource/1961_World_600", "http://dbpedia.org/resource/1969_(TV_series)", "http://dbpedia.org/resource/1971_Daytona_500", "http://dbpedia.org/resource/1972_Carolina_500", "http://dbpedia.org/resource/1972_Daytona_500", "http://dbpedia.org/resource/1975_National_500", "http://dbpedia.org/resource/All-Star_Blitz", "http://dbpedia.org/resource/All_My_Children", "http://dbpedia.org/resource/Aloha_Paradise", "http://dbpedia.org/resource/America's_Funniest_Home_Videos", "http://dbpedia.org/resource/America's_Funniest_People", "http://dbpedia.org/resource/America_This_Morning", "http://dbpedia.org/resource/American_Bandstand", "http://dbpedia.org/resource/American_Crime_(TV_series)", "http://dbpedia.org/resource/American_Detective", "http://dbpedia.org/resource/American_Housewife", "http://dbpedia.org/resource/American_Idol", "http://dbpedia.org/resource/American_Idol_(season_16)", "http://dbpedia.org/resource/American_Idol_(season_17)", "http://dbpedia.org/resource/American_Idol_(season_18)", "http://dbpedia.org/resource/American_Idol_(season_19)", "http://dbpedia.org/resource/American_Idol_(season_20)", "http://dbpedia.org/resource/American_Inventor", "http://dbpedia.org/resource/American_Music_Awards", "http://dbpedia.org/resource/American_Music_Awards_of_1987", "http://dbpedia.org/resource/American_Music_Awards_of_1988", "http://dbpedia.org/resource/American_Music_Awards_of_1989", "http://dbpedia.org/resource/American_Music_Awards_of_1995", "http://dbpedia.org/resource/American_Music_Awards_of_1998", "http://dbpedia.org/resource/American_Music_Awards_of_2003_(November)", "http://dbpedia.org/resource/American_Music_Awards_of_2005", "http://dbpedia.org/resource/American_Music_Awards_of_2014", "http://dbpedia.org/resource/American_Music_Awards_of_2017", "http://dbpedia.org/resource/American_Music_Awards_of_2018", "http://dbpedia.org/resource/American_Music_Awards_of_2019", "http://dbpedia.org/resource/American_Music_Awards_of_2020", "http://dbpedia.org/resource/American_Music_Awards_of_2021", "http://dbpedia.org/resource/An_American_Christmas_Carol", "http://dbpedia.org/resource/Dalva", "http://dbpedia.org/resource/Dan_August", "http://dbpedia.org/resource/Dance_Machine", "http://dbpedia.org/resource/Dance_War:_Bruno_vs._Carrie_Ann", "http://dbpedia.org/resource/Dancing_with_the_Stars_(American_TV_series)", "http://dbpedia.org/resource/Dancing_with_the_Stars_(American_season_1)", "http://dbpedia.org/resource/Dancing_with_the_Stars_(American_season_10)", "http://dbpedia.org/resource/Dancing_with_the_Stars_(American_season_11)", "http://dbpedia.org/resource/Dancing_with_the_Stars_(American_season_12)", "http://dbpedia.org/resource/Dancing_with_the_Stars_(American_season_13)", "http://dbpedia.org/resource/Dancing_with_the_Stars_(American_season_14)", "http://dbpedia.org/resource/Dancing_with_the_Stars_(American_season_15)", "http://dbpedia.org/resource/Dancing_with_the_Stars_(American_season_16)", "http://dbpedia.org/resource/Dancing_with_the_Stars_(American_season_17)", "http://dbpedia.org/resource/Dancing_with_the_Stars_(American_season_18)", "http://dbpedia.org/resource/Dancing_with_the_Stars_(American_season_19)", "http://dbpedia.org/resource/Dancing_with_the_Stars_(American_season_2)", "http://dbpedia.org/resource/Dancing_with_the_Stars_(American_season_20)", "http://dbpedia.org/resource/Dancing_with_the_Stars_(American_season_21)", "http://dbpedia.org/resource/Dancing_with_the_Stars_(American_season_22)", "http://dbpedia.org/resource/Dancing_with_the_Stars_(American_season_23)", "http://dbpedia.org/resource/Dancing_with_the_Stars_(American_season_24)", "http://dbpedia.org/resource/Dancing_with_the_Stars_(American_season_25)", "http://dbpedia.org/resource/Dancing_with_the_Stars_(American_season_26)", "http://dbpedia.org/resource/Dancing_with_the_Stars_(American_season_27)", "http://dbpedia.org/resource/Dancing_with_the_Stars_(American_season_28)", "http://dbpedia.org/resource/Dancing_with_the_Stars_(American_season_29)", "http://dbpedia.org/resource/Dancing_with_the_Stars_(American_season_3)", "http://dbpedia.org/resource/Dancing_with_the_Stars_(American_season_30)", "http://dbpedia.org/resource/Dancing_with_the_Stars_(American_season_4)", "http://dbpedia.org/resource/Dancing_with_the_Stars_(American_season_5)", "http://dbpedia.org/resource/Dancing_with_the_Stars_(American_season_6)", "http://dbpedia.org/resource/Dancing_with_the_Stars_(American_season_7)", "http://dbpedia.org/resource/Dancing_with_the_Stars_(American_season_8)", "http://dbpedia.org/resource/Dancing_with_the_Stars_(American_season_9)", "http://dbpedia.org/resource/Dangerous_Minds_(TV_series)", "http://dbpedia.org/resource/Dark_Shadows", "http://dbpedia.org/resource/Darkroom_(TV_series)", "http://dbpedia.org/resource/Date_with_the_Angels", "http://dbpedia.org/resource/Dating_in_the_Dark_(American_TV_series)", "http://dbpedia.org/resource/Daughter_of_the_Mind", "http://dbpedia.org/resource/Davy_Crockett_(miniseries)", "http://dbpedia.org/resource/Day_Break", "http://dbpedia.org/resource/Deadly_Messages", "http://dbpedia.org/resource/Death_Cruise", "http://dbpedia.org/resource/Death_Sentence_(1974_film)", "http://dbpedia.org/resource/Death_Takes_a_Holiday_(1971_film)", "http://dbpedia.org/resource/Death_at_Love_House", "http://dbpedia.org/resource/Death_in_Small_Doses_(1995_film)", "http://dbpedia.org/resource/Deception_(2018_TV_series)", "http://dbpedia.org/resource/ArenaBowl_XII", "http://dbpedia.org/resource/ArenaBowl_XIII", "http://dbpedia.org/resource/ArenaBowl_XIV", "http://dbpedia.org/resource/ArenaBowl_XV", "http://dbpedia.org/resource/ArenaBowl_XVI", "http://dbpedia.org/resource/VIP_Television", "http://dbpedia.org/resource/VOMO:_Vote_or_Miss_Out", "http://dbpedia.org/resource/V_(2009_TV_series)", "http://dbpedia.org/resource/Valentine's_Day_(TV_series)", "http://dbpedia.org/resource/Vegas_(1978_TV_series)", "http://dbpedia.org/resource/Vengeance_Unlimited", "http://dbpedia.org/resource/Veritas:_The_Quest", "http://dbpedia.org/resource/Victims_(film)", "http://dbpedia.org/resource/Victory_at_Entebbe", "http://dbpedia.org/resource/Videos_After_Dark", "http://dbpedia.org/resource/Virtual_Obsession", "http://dbpedia.org/resource/Vor-Tech:_Undercover_Conversion_Squad", "http://dbpedia.org/resource/Voyage_to_the_Bottom_of_the_Sea_(TV_series)", "http://dbpedia.org/resource/WNBA_on_ABC", "http://dbpedia.org/resource/Walt:_The_Man_Behind_the_Myth", "http://dbpedia.org/resource/Warner_Bros._Presents", "http://dbpedia.org/resource/Washington:_Behind_Closed_Doors", "http://dbpedia.org/resource/Wasteland_(American_TV_series)", "http://dbpedia.org/resource/General_Foods_25th_Anniversary_Show:_A_Salute_to_Rodgers_and_Hammerstein", "http://dbpedia.org/resource/The_Paul_Lynde_Halloween_Special", "http://dbpedia.org/resource/Deliver_Us_from_Evil_(1973_film)", "http://dbpedia.org/resource/Delta_County,_U.S.A.", "http://dbpedia.org/resource/Designated_Survivor_(TV_series)", "http://dbpedia.org/resource/Designated_Survivor_(season_1)", "http://dbpedia.org/resource/Designated_Survivor_(season_2)", "http://dbpedia.org/resource/Desperate_Housewives", "http://dbpedia.org/resource/Desperate_Housewives_(season_1)", "http://dbpedia.org/resource/Desperate_Housewives_(season_2)", "http://dbpedia.org/resource/Desperate_Housewives_(season_3)", "http://dbpedia.org/resource/Desperate_Housewives_(season_4)", "http://dbpedia.org/resource/Desperate_Housewives_(season_5)", "http://dbpedia.org/resource/Desperate_Housewives_(season_6)", "http://dbpedia.org/resource/Desperate_Housewives_(season_7)", "http://dbpedia.org/resource/Desperate_Housewives_(season_8)", "http://dbpedia.org/resource/Destry_(TV_series)", "http://dbpedia.org/resource/Detention:_The_Siege_at_Johnson_High", "http://dbpedia.org/resource/Devlin_(TV_series)", "http://dbpedia.org/resource/Dharma_&_Greg", "http://dbpedia.org/resource/Dial_Hot_Line", "http://dbpedia.org/resource/Dick_Clark's_New_Year's_Rockin'_Eve", "http://dbpedia.org/resource/Diff'rent_Strokes", "http://dbpedia.org/resource/Dillinger_(1991_film)", "http://dbpedia.org/resource/Dinosaurs_(TV_series)", "http://dbpedia.org/resource/Dirty_Sexy_Money", "http://dbpedia.org/resource/Disney's_Freaky_Friday_(1995_film)", "http://dbpedia.org/resource/Disney_Parks_Christmas_Day_Parade", "http://dbpedia.org/resource/Divorce_Wars:_A_Love_Story", "http://dbpedia.org/resource/Do_Not_Fold,_Spindle_or_Mutilate", "http://dbpedia.org/resource/Walt_Disney_Presents:_Annette", "http://dbpedia.org/resource/Air_Time_'57", "http://dbpedia.org/resource/Alex,_Inc.", "http://dbpedia.org/resource/Alias_(TV_series)", "http://dbpedia.org/resource/Alias_(season_1)", "http://dbpedia.org/resource/Alias_(season_2)", "http://dbpedia.org/resource/Alias_(season_3)", "http://dbpedia.org/resource/Alias_(season_4)", "http://dbpedia.org/resource/Alias_(season_5)", "http://dbpedia.org/resource/Alias_Smith_and_Jones", "http://dbpedia.org/resource/Alice_in_Wonderland_or_What's_a_Nice_Kid_like_You_Doing_in_a_Place_like_This%3F", "http://dbpedia.org/resource/20th_Daytime_Emmy_Awards", "http://dbpedia.org/resource/21st_Tony_Awards", "http://dbpedia.org/resource/22nd_Primetime_Emmy_Awards", "http://dbpedia.org/resource/Assignment_Vienna", "http://dbpedia.org/resource/Automan", "http://dbpedia.org/resource/Battlestar_Galactica_(1978_TV_series)", "http://dbpedia.org/resource/Beach_Patrol_(film)", "http://dbpedia.org/resource/Beat_the_Clock", "http://dbpedia.org/resource/Becky_Worley", "http://dbpedia.org/resource/Being_Mick", "http://dbpedia.org/resource/Ben_Casey", "http://dbpedia.org/resource/Benji's_Very_Own_Christmas_Story", "http://dbpedia.org/resource/Benson_(TV_series)", "http://dbpedia.org/resource/Bert_D'Angelo/Superstar", "http://dbpedia.org/resource/Best_of_the_West", "http://dbpedia.org/resource/Betrayal_(TV_series)", "http://dbpedia.org/resource/Better_Living_TV_Theater", "http://dbpedia.org/resource/Better_Off_Ted", "http://dbpedia.org/resource/Better_with_You", "http://dbpedia.org/resource/Bewitched", "http://dbpedia.org/resource/For_Life_(TV_series)", "http://dbpedia.org/resource/Ford_Credit_125", "http://dbpedia.org/resource/Forever_(2014_TV_series)", "http://dbpedia.org/resource/Foul_Play_(TV_series)", "http://dbpedia.org/resource/Fraidy_Cat_(TV_series)", "http://dbpedia.org/resource/Freddie_(TV_series)", "http://dbpedia.org/resource/Freedom_(1981_film)", "http://dbpedia.org/resource/Freeman_(TV_pilot)", "http://dbpedia.org/resource/Fresh_Off_the_Boat", "http://dbpedia.org/resource/Fridays_(TV_series)", "http://dbpedia.org/resource/Friendly_Persuasion_(1975_film)", "http://dbpedia.org/resource/Friends_(1979_TV_series)", "http://dbpedia.org/resource/Frosty's_Winter_Wonderland", "http://dbpedia.org/resource/Full_House", "http://dbpedia.org/resource/Full_House_(season_1)", "http://dbpedia.org/resource/Full_House_(season_2)", "http://dbpedia.org/resource/Full_House_(season_3)", "http://dbpedia.org/resource/Full_House_(season_4)", "http://dbpedia.org/resource/Full_House_(season_5)", "http://dbpedia.org/resource/Full_House_(season_6)", "http://dbpedia.org/resource/Full_House_(season_7)", "http://dbpedia.org/resource/Full_House_(season_8)", "http://dbpedia.org/resource/GMA3:_What_You_Need_To_Know", "http://dbpedia.org/resource/Gabriel's_Fire", "http://dbpedia.org/resource/Galactica_1980", "http://dbpedia.org/resource/Garrison's_Gorillas", "http://dbpedia.org/resource/General_Hospital", "http://dbpedia.org/resource/General_Motors_Theatre", "http://dbpedia.org/resource/Generation_Gap_(game_show)", "http://dbpedia.org/resource/George_(1993_TV_series)", "http://dbpedia.org/resource/George_Lopez_(TV_series)", "http://dbpedia.org/resource/George_of_the_Jungle", "http://dbpedia.org/resource/Hail_to_the_Chief_(TV_series)", "http://dbpedia.org/resource/Halloween_Is_Grinch_Night", "http://dbpedia.org/resource/Hammerman", "http://dbpedia.org/resource/Hangin'_with_Mr._Cooper", "http://dbpedia.org/resource/Hank_(2009_TV_series)", "http://dbpedia.org/resource/Happy_Days", "http://dbpedia.org/resource/Happy_Days_(season_1)", "http://dbpedia.org/resource/Happy_Days_(season_10)", "http://dbpedia.org/resource/Happy_Days_(season_11)", "http://dbpedia.org/resource/Happy_Days_(season_2)", "http://dbpedia.org/resource/Happy_Days_(season_3)", "http://dbpedia.org/resource/Happy_Days_(season_4)", "http://dbpedia.org/resource/Happy_Days_(season_5)", "http://dbpedia.org/resource/Happy_Days_(season_6)", "http://dbpedia.org/resource/Happy_Days_(season_7)", "http://dbpedia.org/resource/Happy_Days_(season_8)", "http://dbpedia.org/resource/Happy_Days_(season_9)", "http://dbpedia.org/resource/Happy_Endings_(season_1)", "http://dbpedia.org/resource/Happy_Endings_(season_2)", "http://dbpedia.org/resource/Happy_Endings_(season_3)", "http://dbpedia.org/resource/Happy_Town_(TV_series)", "http://dbpedia.org/resource/Hardcase_(1972_film)", "http://dbpedia.org/resource/Hardcastle_and_McCormick", "http://dbpedia.org/resource/Harrigan_and_Son", "http://dbpedia.org/resource/Hart_to_Hart", "http://dbpedia.org/resource/Have_a_Little_Faith_(film)", "http://dbpedia.org/resource/Hawaiian_Eye", "http://dbpedia.org/resource/Hawaiian_Heat", "http://dbpedia.org/resource/SST:_Death_Flight", "http://dbpedia.org/resource/Saber_Rider_and_the_Star_Sheriffs", "http://dbpedia.org/resource/Sable_(TV_series)", "http://dbpedia.org/resource/Sabrina_Down_Under", "http://dbpedia.org/resource/Sabrina_Goes_to_Rome", "http://dbpedia.org/resource/Saga_of_Western_Man", "http://dbpedia.org/resource/Samantha_Who%3F", "http://dbpedia.org/resource/Samson_and_Delilah_(1984_film)", "http://dbpedia.org/resource/Country_Music_Association_Awards", "http://dbpedia.org/resource/T._J._Hooker", "http://dbpedia.org/resource/TV_Reader's_Digest", "http://dbpedia.org/resource/Tabitha_(TV_series)", "http://dbpedia.org/resource/Tales_of_Tomorrow", "http://dbpedia.org/resource/Tales_of_the_Gold_Monkey", "http://dbpedia.org/resource/Talk_to_Me_(American_TV_series)", "http://dbpedia.org/resource/Teacher's_Pet_(TV_series)", "http://dbpedia.org/resource/Teamo_Supremo", "http://dbpedia.org/resource/Teen_Angel_(1997_TV_series)", "http://dbpedia.org/resource/Telephone_Time", "http://dbpedia.org/resource/Telling_Secrets", "http://dbpedia.org/resource/Weekend_War", "http://dbpedia.org/resource/Weekend_of_Terror", "http://dbpedia.org/resource/Welcome_Back,_Kotter", "http://dbpedia.org/resource/Welcome_to_the_Neighborhood_(TV_series)", "http://dbpedia.org/resource/Wendy_and_Me", "http://dbpedia.org/resource/Westside_Medical", "http://dbpedia.org/resource/What's_Happening!!", "http://dbpedia.org/resource/What's_a_Nice_Girl_like_You...%3F", "http://dbpedia.org/resource/What_About_Brian", "http://dbpedia.org/resource/What_Would_You_Do%3F_(2008_TV_program)", "http://dbpedia.org/resource/When_Billie_Beat_Bobby", "http://dbpedia.org/resource/When_Michael_Calls", "http://dbpedia.org/resource/When_Nature_Calls_with_Helen_Mirren", "http://dbpedia.org/resource/When_Things_Were_Rotten", "http://dbpedia.org/resource/When_We_Rise", "http://dbpedia.org/resource/When_the_Whistle_Blows", "http://dbpedia.org/resource/Where_the_Action_Is", "http://dbpedia.org/resource/Whiskey_Cavalier", "http://dbpedia.org/resource/Who's_the_Boss%3F", "http://dbpedia.org/resource/Who_Do_You_Believe%3F", "http://dbpedia.org/resource/Who_Do_You_Trust%3F", "http://dbpedia.org/resource/Who_Said_That%3F", "http://dbpedia.org/resource/Who_Wants_to_Be_a_Millionaire_(American_game_show)", "http://dbpedia.org/resource/Whose_Line_Is_It_Anyway%3F_(American_season_1)", "http://dbpedia.org/resource/Whose_Line_Is_It_Anyway%3F_(American_season_2)", "http://dbpedia.org/resource/Whose_Line_Is_It_Anyway%3F_(American_season_3)", "http://dbpedia.org/resource/Whose_Line_Is_It_Anyway%3F_(American_season_4)", "http://dbpedia.org/resource/Whose_Line_Is_It_Anyway%3F_(American_season_5)", "http://dbpedia.org/resource/Whose_Line_Is_It_Anyway%3F_(American_season_6)", "http://dbpedia.org/resource/Wicked_City_(TV_series)", "http://dbpedia.org/resource/Wide_World_of_Sports_(American_TV_program)", "http://dbpedia.org/resource/Wild_Palms", "http://dbpedia.org/resource/Wild_Women_(1970_film)", "http://dbpedia.org/resource/Will_the_Real_Jerry_Lewis_Please_Sit_Down", "http://dbpedia.org/resource/...First_Do_No_Harm", "http://dbpedia.org/resource/10-8:_Officers_on_Duty", "http://dbpedia.org/resource/100_Grand_(game_show)", "http://dbpedia.org/resource/101_Dalmatians:_The_Series", "http://dbpedia.org/resource/101_Ways_to_Leave_a_Game_Show", "http://dbpedia.org/resource/10th_Annual_Grammy_Awards", "http://dbpedia.org/resource/11th_ALMA_Awards", "http://dbpedia.org/resource/12th_Annual_Grammy_Awards", "http://dbpedia.org/resource/13_Queens_Boulevard", "http://dbpedia.org/resource/14th_Annual_Grammy_Awards", "http://dbpedia.org/resource/14th_Daytime_Emmy_Awards", "http://dbpedia.org/resource/14th_Tony_Awards", "http://dbpedia.org/resource/Angie_(TV_series)", "http://dbpedia.org/resource/Animal_Crack-Ups", "http://dbpedia.org/resource/Animals,_Animals,_Animals", "http://dbpedia.org/resource/Annie:_A_Royal_Adventure!", "http://dbpedia.org/resource/Annie_(1999_film)", "http://dbpedia.org/resource/Anything_but_Love", "http://dbpedia.org/resource/Anything_to_Survive", "http://dbpedia.org/resource/Apple_Pie_(TV_series)", "http://dbpedia.org/resource/Arabian_Nights_(miniseries)", "http://dbpedia.org/resource/Are_You_Hot%3F", "http://dbpedia.org/resource/Arresting_Behavior", "http://dbpedia.org/resource/Elvis_(1990_TV_series)", "http://dbpedia.org/resource/Emergence_(TV_series)", "http://dbpedia.org/resource/Emergency_Call_(2020_TV_series)", "http://dbpedia.org/resource/Emily's_Reasons_Why_Not", "http://dbpedia.org/resource/Equal_Justice_(TV_series)", "http://dbpedia.org/resource/Escape_to_Witch_Mountain_(1995_film)", "http://dbpedia.org/resource/Geppetto_(film)", "http://dbpedia.org/resource/Get_Christie_Love!", "http://dbpedia.org/resource/Get_the_Message_(game_show)", "http://dbpedia.org/resource/Getting_Away_from_It_All", "http://dbpedia.org/resource/Gideon's_Crossing", "http://dbpedia.org/resource/Gideon_Oliver", "http://dbpedia.org/resource/Gidget_(TV_series)", "http://dbpedia.org/resource/Gidget_Gets_Married", "http://dbpedia.org/resource/Gidget_Grows_Up", "http://dbpedia.org/resource/Glenn_Riggs", "http://dbpedia.org/resource/Goldie_Gold_and_Action_Jack", "http://dbpedia.org/resource/Goober_and_the_Ghost_Chasers", "http://dbpedia.org/resource/Good_&_Evil_(TV_series)", "http://dbpedia.org/resource/Good_Morning_America", "http://dbpedia.org/resource/Goodtime_Girls", "http://dbpedia.org/resource/Marcus_Welby,_M.D.", "http://dbpedia.org/resource/Margie_(TV_series)", "http://dbpedia.org/resource/Married_to_the_Kellys", "http://dbpedia.org/resource/Martin_Block", "http://dbpedia.org/resource/Marvel's_ABC_television_series", "http://dbpedia.org/resource/Marvel's_Most_Wanted", "http://dbpedia.org/resource/Mary_Margaret_McBride", "http://dbpedia.org/resource/Mary_and_Rhoda", "http://dbpedia.org/resource/Pinocchio's_Christmas", "http://dbpedia.org/resource/Planet_Earth_(film)", "http://dbpedia.org/resource/Police_Squad!", "http://dbpedia.org/resource/Police_Story_(1973_TV_series)", "http://dbpedia.org/resource/Pontoffel_Pock,_Where_Are_You%3F", "http://dbpedia.org/resource/Popeye_Meets_the_Man_Who_Hated_Laughter", "http://dbpedia.org/resource/Port_Charles", "http://dbpedia.org/resource/Power_Rangers_RPM", "http://dbpedia.org/resource/Pray_for_the_Wildcats", "http://dbpedia.org/resource/Prep_&_Landing", "http://dbpedia.org/resource/Prep_&_Landing:_Naughty_vs._Nice", "http://dbpedia.org/resource/Prep_&_Landing:_Operation:_Secret_Santa", "http://dbpedia.org/resource/Press_Your_Luck", "http://dbpedia.org/resource/Primetime_(American_TV_program)", "http://dbpedia.org/resource/Primetime_Emmy_Awards", "http://dbpedia.org/resource/Princess_of_Thieves", "http://dbpedia.org/resource/That's_Incredible!", "http://dbpedia.org/resource/That's_Life_(1968_TV_series)", "http://dbpedia.org/resource/That's_Life_(1998_TV_series)", "http://dbpedia.org/resource/That's_My_Mama", "http://dbpedia.org/resource/That_Was_Then", "http://dbpedia.org/resource/The_13_Ghosts_of_Scooby-Doo", "http://dbpedia.org/resource/The_ABC_Saturday_Superstar_Movie", "http://dbpedia.org/resource/The_ABC_Sunday_Night_Movie", "http://dbpedia.org/resource/The_Addams_Family", "http://dbpedia.org/resource/The_Addams_Family_(1964_TV_series)", "http://dbpedia.org/resource/The_Adventures_of_Gulliver", "http://dbpedia.org/resource/The_Adventures_of_Jim_Bowie", "http://dbpedia.org/resource/The_Adventures_of_Ozzie_and_Harriet", "http://dbpedia.org/resource/The_Adventures_of_Paddy_the_Pelican", "http://dbpedia.org/resource/The_Adventures_of_Rin_Tin_Tin", "http://dbpedia.org/resource/The_Adventures_of_Robin_Hoodnik", "http://dbpedia.org/resource/The_Affair_(1973_film)", "http://dbpedia.org/resource/The_Alaskans", "http://dbpedia.org/resource/The_Alec_Baldwin_Show", "http://dbpedia.org/resource/The_All-New_Super_Friends_Hour", "http://dbpedia.org/resource/The_Ambiguously_Gay_Duo", "http://dbpedia.org/resource/The_Associates_(American_TV_series)", "http://dbpedia.org/resource/The_Audrey_Hepburn_Story", "http://dbpedia.org/resource/The_Babysitter_(1980_film)", "http://dbpedia.org/resource/The_Bachelor_(American_TV_series)", "http://dbpedia.org/resource/The_Bachelor_(American_season_1)", "http://dbpedia.org/resource/The_Bachelor_(American_season_10)", "http://dbpedia.org/resource/The_Bachelor_(American_season_11)", "http://dbpedia.org/resource/The_Bachelor_(American_season_12)", "http://dbpedia.org/resource/The_Bachelor_(American_season_13)", "http://dbpedia.org/resource/The_Bachelor_(American_season_14)", "http://dbpedia.org/resource/The_Bachelor_(American_season_15)", "http://dbpedia.org/resource/The_Bachelor_(American_season_16)", "http://dbpedia.org/resource/The_Bachelor_(American_season_17)", "http://dbpedia.org/resource/The_Bachelor_(American_season_18)", "http://dbpedia.org/resource/The_Bachelor_(American_season_19)", "http://dbpedia.org/resource/The_Bachelor_(American_season_2)", "http://dbpedia.org/resource/The_Bachelor_(American_season_20)", "http://dbpedia.org/resource/The_Bachelor_(American_season_21)", "http://dbpedia.org/resource/The_Bachelor_(American_season_22)", "http://dbpedia.org/resource/The_Bachelor_(American_season_23)", "http://dbpedia.org/resource/The_Bachelor_(American_season_24)", "http://dbpedia.org/resource/The_Bachelor_(American_season_25)", "http://dbpedia.org/resource/The_Bachelor_(American_season_26)", "http://dbpedia.org/resource/The_Bachelor_(American_season_5)", "http://dbpedia.org/resource/The_Bachelor_(American_season_9)", "http://dbpedia.org/resource/The_Bachelor_Presents:_Listen_to_Your_Heart", "http://dbpedia.org/resource/The_Bachelorette_(American_TV_series)", "http://dbpedia.org/resource/The_Bachelorette_(American_season_1)", "http://dbpedia.org/resource/The_Bachelorette_(American_season_10)", "http://dbpedia.org/resource/The_Bachelorette_(American_season_11)", "http://dbpedia.org/resource/The_Bachelorette_(American_season_12)", "http://dbpedia.org/resource/The_Bachelorette_(American_season_13)", "http://dbpedia.org/resource/The_Bachelorette_(American_season_14)", "http://dbpedia.org/resource/The_Bachelorette_(American_season_15)", "http://dbpedia.org/resource/The_Bachelorette_(American_season_16)", "http://dbpedia.org/resource/The_Bachelorette_(American_season_17)", "http://dbpedia.org/resource/The_Bachelorette_(American_season_18)", "http://dbpedia.org/resource/The_Bachelorette_(American_season_19)", "http://dbpedia.org/resource/The_Bachelorette_(American_season_2)", "http://dbpedia.org/resource/The_Bachelorette_(American_season_3)", "http://dbpedia.org/resource/The_Bachelorette_(American_season_4)", "http://dbpedia.org/resource/The_Bachelorette_(American_season_5)", "http://dbpedia.org/resource/The_Bachelorette_(American_season_6)", "http://dbpedia.org/resource/The_Bachelorette_(American_season_7)", "http://dbpedia.org/resource/The_Bachelorette_(American_season_8)", "http://dbpedia.org/resource/The_Bachelorette_(American_season_9)", "http://dbpedia.org/resource/The_Bad_Seed_(1985_film)", "http://dbpedia.org/resource/The_Baker_and_the_Beauty_(American_TV_series)", "http://dbpedia.org/resource/The_Baseball_Network", "http://dbpedia.org/resource/The_Beagles_(TV_series)", "http://dbpedia.org/resource/The_Benefactor_(TV_series)", "http://dbpedia.org/resource/The_Bermuda_Depths", "http://dbpedia.org/resource/The_Best_of_Everything_(TV_series)", "http://dbpedia.org/resource/The_Best_of_Times_(1981_film)", "http://dbpedia.org/resource/The_Better_Sex", "http://dbpedia.org/resource/The_Big_House_(TV_series)", "http://dbpedia.org/resource/The_Big_Moment", "http://dbpedia.org/resource/The_Big_Valley", "http://dbpedia.org/resource/The_Bing_Crosby_Show_(1964_TV_series)", "http://dbpedia.org/resource/The_Bionic_Woman", "http://dbpedia.org/resource/The_Bod_Squad", "http://dbpedia.org/resource/The_Bounty_Man", "http://dbpedia.org/resource/The_Boy_in_the_Plastic_Bubble", "http://dbpedia.org/resource/The_Brady_Bunch", "http://dbpedia.org/resource/The_Brady_Bunch_Hour", "http://dbpedia.org/resource/The_Brady_Kids", "http://dbpedia.org/resource/The_Bravos", "http://dbpedia.org/resource/The_Bride_in_Black", "http://dbpedia.org/resource/The_Byrds_of_Paradise", "http://dbpedia.org/resource/The_California_Kid", "http://dbpedia.org/resource/The_Cat_Creature", "http://dbpedia.org/resource/The_Catch_(TV_series)", "http://dbpedia.org/resource/The_Chair_(game_show)", "http://dbpedia.org/resource/The_Children's_Doctor", "http://dbpedia.org/resource/The_Christmas_Toy", "http://dbpedia.org/resource/The_Citadel_(1960_film)", "http://dbpedia.org/resource/The_City_(1995_TV_series)", "http://dbpedia.org/resource/Ugly_Betty", "http://dbpedia.org/resource/Ugly_Betty_(season_1)", "http://dbpedia.org/resource/Ugly_Betty_(season_2)", "http://dbpedia.org/resource/Ugly_Betty_(season_3)", "http://dbpedia.org/resource/Ugly_Betty_(season_4)", "http://dbpedia.org/resource/Uncle_Croc's_Block", "http://dbpedia.org/resource/United_We_Fall_(TV_series)", "http://dbpedia.org/resource/Bosom_Buddies", "http://dbpedia.org/resource/Boston_EMS_(TV_series)", "http://dbpedia.org/resource/Boston_Legal", "http://dbpedia.org/resource/Bourbon_Street_Beat", "http://dbpedia.org/resource/Bowling_Headliners", "http://dbpedia.org/resource/Boy_Meets_World", "http://dbpedia.org/resource/Brat_Camp", "http://dbpedia.org/resource/Brian's_Song", "http://dbpedia.org/resource/Brian's_Song_(2001_film)", "http://dbpedia.org/resource/Bride_of_Boogedy", "http://dbpedia.org/resource/Broadway_Bound_(film)", "http://dbpedia.org/resource/Bronco_(TV_series)", "http://dbpedia.org/resource/Brother's_Keeper_(1998_TV_series)", "http://dbpedia.org/resource/Brotherhood_of_Justice", "http://dbpedia.org/resource/Brothers_&_Sisters_(2006_TV_series)", "http://dbpedia.org/resource/Brothers_&_Sisters_(season_1)", "http://dbpedia.org/resource/Brothers_&_Sisters_(season_2)", "http://dbpedia.org/resource/Brothers_&_Sisters_(season_3)", "http://dbpedia.org/resource/Brothers_&_Sisters_(season_4)", "http://dbpedia.org/resource/Brothers_&_Sisters_(season_5)", "http://dbpedia.org/resource/Bruce_Forsyth's_Hot_Streak", "http://dbpedia.org/resource/Buck_James", "http://dbpedia.org/resource/Buddies_(TV_series)", "http://dbpedia.org/resource/Adams_of_Eagle_Lake", "http://dbpedia.org/resource/Jack_and_Mike", "http://dbpedia.org/resource/Jake_in_Progress", "http://dbpedia.org/resource/James_Paul_McCartney_(TV_program)", "http://dbpedia.org/resource/Jamie_(TV_series)", "http://dbpedia.org/resource/Jamie_Oliver's_Food_Revolution", "http://dbpedia.org/resource/Keep_On_Truckin'_(TV_series)", "http://dbpedia.org/resource/Kevin_(Probably)_Saves_the_World", "http://dbpedia.org/resource/Killdozer!_(film)", "http://dbpedia.org/resource/Killer_Women", "http://dbpedia.org/resource/Masquerade_(TV_series)", "http://dbpedia.org/resource/Master_of_Champions", "http://dbpedia.org/resource/Masters_of_Science_Fiction", "http://dbpedia.org/resource/Matlock_(TV_series)", "http://dbpedia.org/resource/Matlock_(season_7)", "http://dbpedia.org/resource/Matlock_(season_8)", "http://dbpedia.org/resource/Matlock_(season_9)", "http://dbpedia.org/resource/Matt_Helm_(TV_series)", "http://dbpedia.org/resource/Matt_Houston", "http://dbpedia.org/resource/Matt_Lincoln", "http://dbpedia.org/resource/Maverick_(TV_series)", "http://dbpedia.org/resource/Maximum_Bob_(TV_series)", "http://dbpedia.org/resource/Maybe_I'll_Come_Home_in_the_Spring", "http://dbpedia.org/resource/Mayhem_on_a_Sunday_Afternoon", "http://dbpedia.org/resource/McHale's_Navy", "http://dbpedia.org/resource/McKenna_(TV_series)", "http://dbpedia.org/resource/Me_and_the_Boys_(TV_series)", "http://dbpedia.org/resource/Men_(TV_series)", "http://dbpedia.org/resource/Men_in_Trees", "http://dbpedia.org/resource/Rango_(TV_series)", "http://dbpedia.org/resource/Rear_Window_(1998_film)", "http://dbpedia.org/resource/Rebel_(2021_TV_series)", "http://dbpedia.org/resource/Rebound_(American_TV_series)", "http://dbpedia.org/resource/Red_Widow", "http://dbpedia.org/resource/Reflections_of_Murder", "http://dbpedia.org/resource/Reggie_(TV_series)", "http://dbpedia.org/resource/Regular_Joe_(TV_series)", "http://dbpedia.org/resource/Relativity_(TV_series)", "http://dbpedia.org/resource/Remember_Sunday", "http://dbpedia.org/resource/Repeat_After_Me_(TV_series)", "http://dbpedia.org/resource/Revenge!", "http://dbpedia.org/resource/Revenge_(TV_series)", "http://dbpedia.org/resource/Revenge_(season_1)", "http://dbpedia.org/resource/Revenge_(season_2)", "http://dbpedia.org/resource/Revenge_(season_3)", "http://dbpedia.org/resource/Revenge_(season_4)", "http://dbpedia.org/resource/The_Colbys", "http://dbpedia.org/resource/The_Commish", "http://dbpedia.org/resource/The_Computer_Wore_Tennis_Shoes_(1995_film)", "http://dbpedia.org/resource/The_Con_(TV_series)", "http://dbpedia.org/resource/The_Conners", "http://dbpedia.org/resource/The_Court_(TV_series)", "http://dbpedia.org/resource/The_Courtship_of_Eddie's_Father", "http://dbpedia.org/resource/The_Critic", "http://dbpedia.org/resource/The_Crossing_(TV_series)", "http://dbpedia.org/resource/The_D.A._(2004_TV_series)", "http://dbpedia.org/resource/The_Dakotas_(TV_series)", "http://dbpedia.org/resource/The_Dana_Carvey_Show", "http://dbpedia.org/resource/The_Daughters_of_Joshua_Cabe", "http://dbpedia.org/resource/The_Days_(TV_series)", "http://dbpedia.org/resource/The_Deadly_Dream", "http://dbpedia.org/resource/The_Death_Squad_(film)", "http://dbpedia.org/resource/The_Deep_End_(TV_series)", "http://dbpedia.org/resource/The_Delphi_Bureau", "http://dbpedia.org/resource/The_Diary_of_Ellen_Rimbauer_(film)", "http://dbpedia.org/resource/The_Disney_Family_Singalong", "http://dbpedia.org/resource/The_Dollmaker", "http://dbpedia.org/resource/The_Donna_Summer_Special", "http://dbpedia.org/resource/The_Drew_Carey_Show", "http://dbpedia.org/resource/The_Drew_Pearson_Show", "http://dbpedia.org/resource/The_Earth_Day_Special", "http://dbpedia.org/resource/The_Easter_Bunny_Is_Comin'_to_Town", "http://dbpedia.org/resource/The_Edie_Adams_Show", "http://dbpedia.org/resource/The_Enchanted_World_of_Danny_Kaye", "http://dbpedia.org/resource/The_Evidence_(TV_series)", "http://dbpedia.org/resource/The_Ex-Wives_Club", "http://dbpedia.org/resource/The_F.B.I._(TV_series)", "http://dbpedia.org/resource/The_Facts_of_Life_Reunion", "http://dbpedia.org/resource/The_Failing_of_Raymond", "http://dbpedia.org/resource/The_Fall_Guy", "http://dbpedia.org/resource/The_Family_(2016_TV_series)", "http://dbpedia.org/resource/The_Family_Game_(game_show)", "http://dbpedia.org/resource/The_Fantastic_Miss_Piggy_Show", "http://dbpedia.org/resource/The_Fatal_Flaw:_A_Special_Edition_of_20/20", "http://dbpedia.org/resource/The_Final_Straw_(TV_series)", "http://dbpedia.org/resource/The_Fix_(2019_TV_series)", "http://dbpedia.org/resource/The_Flintstone_Kids", "http://dbpedia.org/resource/The_Fonz_and_the_Happy_Days_Gang", "http://dbpedia.org/resource/The_Forgotten_(TV_series)", "http://dbpedia.org/resource/The_Fourth_Wise_Man", "http://dbpedia.org/resource/The_Fugitive_(1963_TV_series)", "http://dbpedia.org/resource/The_Fugitive_(season_1)", "http://dbpedia.org/resource/The_Fugitive_(season_2)", "http://dbpedia.org/resource/The_Fugitive_(season_3)", "http://dbpedia.org/resource/The_Fugitive_(season_4)", "http://dbpedia.org/resource/The_Funky_Phantom", "http://dbpedia.org/resource/The_Gallant_Men", "http://dbpedia.org/resource/The_Gates_(TV_series)", "http://dbpedia.org/resource/The_Gathering_(1977_film)", "http://dbpedia.org/resource/The_Gay_Nineties_Revue", "http://dbpedia.org/resource/The_Geena_Davis_Show", "http://dbpedia.org/resource/The_Generation_Gap", "http://dbpedia.org/resource/The_Ghost_&_Mrs._Muir_(TV_series)", "http://dbpedia.org/resource/The_Girl_Most_Likely_To...", "http://dbpedia.org/resource/The_Girl_in_My_Life", "http://dbpedia.org/resource/The_Glass_House_(2012_TV_series)", "http://dbpedia.org/resource/The_Goldbergs_(2013_TV_series)", "http://dbpedia.org/resource/The_Gong_Show", "http://dbpedia.org/resource/The_Good_Doctor_(TV_series)", "http://dbpedia.org/resource/The_Goode_Family", "http://dbpedia.org/resource/The_Great_American_Baking_Show_(season_1)", "http://dbpedia.org/resource/The_Great_American_Baking_Show_(season_2)", "http://dbpedia.org/resource/The_Great_American_Baking_Show_(season_3)", "http://dbpedia.org/resource/The_Great_American_Baking_Show_(season_4)", "http://dbpedia.org/resource/The_Great_American_Baking_Show_(season_5)", "http://dbpedia.org/resource/The_Great_American_Dream_Vote", "http://dbpedia.org/resource/The_Great_Grape_Ape_Show", "http://dbpedia.org/resource/The_Green_Hornet_(TV_series)", "http://dbpedia.org/resource/The_Grinch_Grinches_the_Cat_in_the_Hat", "http://dbpedia.org/resource/The_Growing_Pains_Movie", "http://dbpedia.org/resource/The_Halloween_That_Almost_Wasn't", "http://dbpedia.org/resource/The_Halloween_Tree_(film)", "http://dbpedia.org/resource/The_Hanged_Man_(1974_film)", "http://dbpedia.org/resource/The_Hardy_Boys/Nancy_Drew_Mysteries", "http://dbpedia.org/resource/The_Hardy_Boys_(1969_TV_series)", "http://dbpedia.org/resource/The_Harvey_Korman_Show", "http://dbpedia.org/resource/The_Hathaways", "http://dbpedia.org/resource/The_Hound_of_the_Baskervilles_(1972_film)", "http://dbpedia.org/resource/The_House_That_Would_Not_Die", "http://dbpedia.org/resource/The_House_on_Garibaldi_Street", "http://dbpedia.org/resource/The_Hughleys", "http://dbpedia.org/resource/The_Hustler_(American_game_show)", "http://dbpedia.org/resource/The_Immortal_(1970_TV_series)", "http://dbpedia.org/resource/The_Incredible_Detectives", "http://dbpedia.org/resource/The_Initiation_of_Sarah", "http://dbpedia.org/resource/The_Insiders_(TV_series)", "http://dbpedia.org/resource/The_Islanders_(TV_series)", "http://dbpedia.org/resource/The_Ivory_Ape", "http://dbpedia.org/resource/The_Jackie_Thomas_Show", "http://dbpedia.org/resource/The_Jackson_5ive_(TV_series)", "http://dbpedia.org/resource/The_Jacksons:_An_American_Dream", "http://dbpedia.org/resource/The_Jeff_Foxworthy_Show", "http://dbpedia.org/resource/The_Jericho_Mile", "http://dbpedia.org/resource/The_Jetsons", "http://dbpedia.org/resource/The_Jimmy_Dean_Show", "http://dbpedia.org/resource/The_Job_(2001_TV_series)", "http://dbpedia.org/resource/The_Johnny_Cash_Show_(TV_series)", "http://dbpedia.org/resource/The_Kansas_City_Massacre", "http://dbpedia.org/resource/The_Kennedys_of_Massachusetts", "http://dbpedia.org/resource/The_Kids_Are_Alright_(TV_series)", "http://dbpedia.org/resource/The_King_Kong_Show", "http://dbpedia.org/resource/The_Kingdom_Chums:_Little_David's_Adventure", "http://dbpedia.org/resource/The_Knights_of_Prosperity", "http://dbpedia.org/resource/The_Krofft_Supershow", "http://dbpedia.org/resource/The_Krypton_Factor_(American_game_show)", "http://dbpedia.org/resource/The_Langoliers_(miniseries)", "http://dbpedia.org/resource/The_Last_Days_of_Pompeii_(miniseries)", "http://dbpedia.org/resource/The_Last_Defense", "http://dbpedia.org/resource/The_Lawrence_Welk_Show", "http://dbpedia.org/resource/The_Legend_of_Valentino", "http://dbpedia.org/resource/The_Letter_(1982_film)", "http://dbpedia.org/resource/The_Little_Clowns_of_Happytown", "http://dbpedia.org/resource/The_Little_Mermaid_Live!", "http://dbpedia.org/resource/The_Little_Rascals_(animated_TV_series)", "http://dbpedia.org/resource/The_Littles_(TV_series)", "http://dbpedia.org/resource/The_Lone_Ranger_(TV_series)", "http://dbpedia.org/resource/The_Lost_Saucer", "http://dbpedia.org/resource/The_Love_Boat", "http://dbpedia.org/resource/The_Love_Bug_(1997_film)", "http://dbpedia.org/resource/The_MacKenzies_of_Paradise_Cove", "http://dbpedia.org/resource/The_Mad,_Mad,_Mad_Comedians", "http://dbpedia.org/resource/The_Man_Who_Could_Talk_to_Kids", "http://dbpedia.org/resource/The_Man_Who_Never_Was_(TV_series)", "http://dbpedia.org/resource/The_Man_and_the_City", "http://dbpedia.org/resource/The_Mark_of_Zorro_(1974_film)", "http://dbpedia.org/resource/The_Marshal", "http://dbpedia.org/resource/The_Marshal_of_Gunsight_Pass", "http://dbpedia.org/resource/The_Middle_(TV_series)", "http://dbpedia.org/resource/The_Midnight_Hour", "http://dbpedia.org/resource/The_Mini-Munsters", "http://dbpedia.org/resource/The_Missiles_of_October", "http://dbpedia.org/resource/The_Mod_Squad", "http://dbpedia.org/resource/The_Mole_(American_TV_series)", "http://dbpedia.org/resource/The_Mole_(American_season_1)", "http://dbpedia.org/resource/The_Mole_(American_season_2)", "http://dbpedia.org/resource/The_Mole_(American_season_3)", "http://dbpedia.org/resource/The_Mole_(American_season_4)", "http://dbpedia.org/resource/The_Mole_(American_season_5)", "http://dbpedia.org/resource/The_Monchhichis/Little_Rascals/Richie_Rich_Show", "http://dbpedia.org/resource/The_Money_Maze", "http://dbpedia.org/resource/The_Monk_(1969_film)", "http://dbpedia.org/resource/The_Monroes_(1966_TV_series)", "http://dbpedia.org/resource/The_Monroes_(1995_TV_series)", "http://dbpedia.org/resource/The_Morning_After_(1974_film)", "http://dbpedia.org/resource/The_Mumbly_Cartoon_Show", "http://dbpedia.org/resource/The_Muppet_Show:_Sex_and_Violence", "http://dbpedia.org/resource/The_Muppets'_Wizard_of_Oz", "http://dbpedia.org/resource/The_Muppets_Go_to_the_Movies", "http://dbpedia.org/resource/The_Muppets_Valentine_Show", "http://dbpedia.org/resource/The_Music_Man_(2003_film)", "http://dbpedia.org/resource/The_Music_Scene_(TV_series)", "http://dbpedia.org/resource/The_Mystery_of_Natalie_Wood", "http://dbpedia.org/resource/The_Mystic_Warrior", "http://dbpedia.org/resource/The_Name's_the_Same", "http://dbpedia.org/resource/The_Nancy_Walker_Show", "http://dbpedia.org/resource/The_Nativity_(film)", "http://dbpedia.org/resource/The_Neighbors_(2012_TV_series)", "http://dbpedia.org/resource/The_Neighbors_(season_1)", "http://dbpedia.org/resource/The_Neighbors_(season_2)", "http://dbpedia.org/resource/The_New_Adventures_of_Beany_and_Cecil", "http://dbpedia.org/resource/The_New_Adventures_of_Gilligan", "http://dbpedia.org/resource/The_New_Adventures_of_Winnie_the_Pooh", "http://dbpedia.org/resource/The_New_Maverick", "http://dbpedia.org/resource/The_New_People", "http://dbpedia.org/resource/The_New_Scooby_Doo_Mysteries", "http://dbpedia.org/resource/The_Next_Best_Thing_(TV_series)", "http://dbpedia.org/resource/The_Night_Stalker_(1972_film)", "http://dbpedia.org/resource/The_Night_Strangler_(film)", "http://dbpedia.org/resource/The_Night_That_Panicked_America", "http://dbpedia.org/resource/The_Nine_(TV_series)", "http://dbpedia.org/resource/The_Norm_Show", "http://dbpedia.org/resource/The_Nurses_(TV_series)", "http://dbpedia.org/resource/The_Object_Is", "http://dbpedia.org/resource/The_Odd_Couple_(1970_TV_series)", "http://dbpedia.org/resource/The_Oddball_Couple", "http://dbpedia.org/resource/The_Old_Man_Who_Cried_Wolf", "http://dbpedia.org/resource/The_Osmonds_(TV_series)", "http://dbpedia.org/resource/The_Outer_Limits_(1963_TV_series)", "http://dbpedia.org/resource/The_Oz_Kids", "http://dbpedia.org/resource/The_Pac-Man/Little_Rascals/Richie_Rich_Show", "http://dbpedia.org/resource/The_Path_to_9/11", "http://dbpedia.org/resource/The_Paula_Poundstone_Show", "http://dbpedia.org/resource/The_Pearl_Bailey_Show", "http://dbpedia.org/resource/The_Phoenix_(1982_TV_series)", "http://dbpedia.org/resource/The_Pigeon_(1969_film)", "http://dbpedia.org/resource/The_Pink_Panther_in:_A_Pink_Christmas", "http://dbpedia.org/resource/The_Pink_Panther_in:_Olym-Pinks", "http://dbpedia.org/resource/The_Pink_Panther_in:_Pink_at_First_Sight", "http://dbpedia.org/resource/The_Pirate_(1978_film)", "http://dbpedia.org/resource/The_Point!", "http://dbpedia.org/resource/The_Practice", "http://dbpedia.org/resource/The_Price_Is_Right_(1956_American_game_show)", "http://dbpedia.org/resource/The_Proposal_(American_TV_series)", "http://dbpedia.org/resource/The_Pruitts_of_Southampton", "http://dbpedia.org/resource/The_Puppy's_Further_Adventures", "http://dbpedia.org/resource/The_Pursuit_of_Happiness_(1987_TV_series)", "http://dbpedia.org/resource/The_Queen_Family_Singalong", "http://dbpedia.org/resource/The_Rainbow_Warrior_(film)", "http://dbpedia.org/resource/The_Rat_Patrol", "http://dbpedia.org/resource/The_Real_McCoys", "http://dbpedia.org/resource/The_Real_O'Neals", "http://dbpedia.org/resource/The_Real_Roseanne_Show", "http://dbpedia.org/resource/The_Rear_Guard", "http://dbpedia.org/resource/The_Rebel_(American_TV_series)", "http://dbpedia.org/resource/The_Reel_Game", "http://dbpedia.org/resource/The_Renegades_(TV_series)", "http://dbpedia.org/resource/The_Return_of_the_King_(1980_film)", "http://dbpedia.org/resource/The_Return_of_the_Shaggy_Dog", "http://dbpedia.org/resource/The_Revolution_(TV_program)", "http://dbpedia.org/resource/The_Richie_Rich/Scooby-Doo_Show", "http://dbpedia.org/resource/The_Rise_and_Fall_of_the_Third_Reich", "http://dbpedia.org/resource/The_River_(American_TV_series)", "http://dbpedia.org/resource/The_Rookie_(TV_series)", "http://dbpedia.org/resource/The_Rootie_Kazootie_Club", "http://dbpedia.org/resource/The_Ropers", "http://dbpedia.org/resource/The_Rounders_(TV_series)", "http://dbpedia.org/resource/The_Roy_Rogers_and_Dale_Evans_Show", "http://dbpedia.org/resource/The_Ruggles", "http://dbpedia.org/resource/The_Scholar_(TV_series)", "http://dbpedia.org/resource/The_Scooby-Doo/Dynomutt_Hour", "http://dbpedia.org/resource/The_Scooby-Doo_Show", "http://dbpedia.org/resource/The_Scooby_&_Scrappy-Doo/Puppy_Hour", "http://dbpedia.org/resource/The_Screaming_Woman", "http://dbpedia.org/resource/The_Secret_Lives_of_Men", "http://dbpedia.org/resource/The_Secret_Millionaire", "http://dbpedia.org/resource/The_Secret_World_of_Og_(film)", "http://dbpedia.org/resource/The_Shaggy_Dog_(1994_film)", "http://dbpedia.org/resource/The_Shining_(miniseries)", "http://dbpedia.org/resource/The_Six_Million_Dollar_Man", "http://dbpedia.org/resource/The_Slap_Maxwell_Story", "http://dbpedia.org/resource/The_Smith_Family_(TV_series)", "http://dbpedia.org/resource/The_Sonny_Comedy_Revue", "http://dbpedia.org/resource/The_Spy_Killer", "http://dbpedia.org/resource/The_Stand_(1994_miniseries)", "http://dbpedia.org/resource/The_Steve_Allen_Show", "http://dbpedia.org/resource/The_Story_of_Diana", "http://dbpedia.org/resource/The_Story_of_Frozen:_Making_a_Disney_Animated_Classic", "http://dbpedia.org/resource/The_Stranger_Who_Looks_Like_Me", "http://dbpedia.org/resource/The_Streets_of_San_Francisco", "http://dbpedia.org/resource/The_Super_Powers_Team:_Galactic_Guardians", "http://dbpedia.org/resource/The_Surrogate_(1995_film)", "http://dbpedia.org/resource/The_Taking_of_Pelham_One_Two_Three_(1998_film)", "http://dbpedia.org/resource/The_Tammy_Grimes_Show", "http://dbpedia.org/resource/The_Texas_Wheelers", "http://dbpedia.org/resource/The_Thin_Blue_Line_(1966_film)", "http://dbpedia.org/resource/The_Third_Girl_from_the_Left", "http://dbpedia.org/resource/The_Thorn_Birds_(miniseries)", "http://dbpedia.org/resource/The_Thorns_(TV_series)", "http://dbpedia.org/resource/The_Three_Stooges_(2000_film)", "http://dbpedia.org/resource/The_Time_Tunnel", "http://dbpedia.org/resource/The_Tom_and_Jerry_Show_(1975_TV_series)", "http://dbpedia.org/resource/The_Tony_Randall_Show", "http://dbpedia.org/resource/The_Toy_Box", "http://dbpedia.org/resource/The_Trackers_(film)", "http://dbpedia.org/resource/The_Trial_of_Lee_Harvey_Oswald_(1977_film)", "http://dbpedia.org/resource/The_Trouble_with_Miss_Switch", "http://dbpedia.org/resource/The_Trouble_with_Normal_(TV_series)", "http://dbpedia.org/resource/The_Turn_of_the_Screw_(1974_film)", "http://dbpedia.org/resource/The_Tycoon_(TV_series)", "http://dbpedia.org/resource/The_Ugliest_Girl_in_Town", "http://dbpedia.org/resource/The_Ultimate_Surfer", "http://dbpedia.org/resource/The_Uncle_Al_Show", "http://dbpedia.org/resource/The_United_States_Steel_Hour", "http://dbpedia.org/resource/The_Unusuals", "http://dbpedia.org/resource/The_Vise_(1955_TV_series)", "http://dbpedia.org/resource/The_Walter_Winchell_File", "http://dbpedia.org/resource/The_Wave_(1981_film)", "http://dbpedia.org/resource/The_Wayne_Brady_Show", "http://dbpedia.org/resource/The_West_Point_Story_(TV_series)", "http://dbpedia.org/resource/The_Whereabouts_of_Jenny", "http://dbpedia.org/resource/The_Wind_in_the_Willows_(1987_film)", "http://dbpedia.org/resource/The_Winds_of_War_(miniseries)", "http://dbpedia.org/resource/The_Wizard_of_Oz_(TV_series)", "http://dbpedia.org/resource/The_Women_of_Brewster_Place_(miniseries)", "http://dbpedia.org/resource/The_Wonder_Years", "http://dbpedia.org/resource/The_Wonder_Years_(2021_TV_series)", "http://dbpedia.org/resource/The_Wonder_Years_(season_1)", "http://dbpedia.org/resource/The_Wonder_Years_(season_2)", "http://dbpedia.org/resource/The_Wonder_Years_(season_3)", "http://dbpedia.org/resource/The_Wonder_Years_(season_4)", "http://dbpedia.org/resource/The_Wonder_Years_(season_5)", "http://dbpedia.org/resource/The_Wonder_Years_(season_6)", "http://dbpedia.org/resource/The_Woody_Woodpecker_Show", "http://dbpedia.org/resource/The_World's_Greatest_SuperFriends", "http://dbpedia.org/resource/The_Year_Without_a_Santa_Claus", "http://dbpedia.org/resource/The_Young_Country", "http://dbpedia.org/resource/The_Young_Marrieds", "http://dbpedia.org/resource/The_Young_Pioneers_(miniseries)", "http://dbpedia.org/resource/The_Young_Rebels", "http://dbpedia.org/resource/The_Young_Riders", "http://dbpedia.org/resource/Their_Eyes_Were_Watching_God_(film)", "http://dbpedia.org/resource/Then_Came_You_(TV_series)", "http://dbpedia.org/resource/1997_Brickyard_400", "http://dbpedia.org/resource/1998_Brickyard_400", "http://dbpedia.org/resource/1999_Brickyard_400", "http://dbpedia.org/resource/1999_DieHard_500", "http://dbpedia.org/resource/20/20_(American_TV_program)", "http://dbpedia.org/resource/2000_Brickyard_400", "http://dbpedia.org/resource/2007_Country_Music_Association_Awards", "http://dbpedia.org/resource/2007_Ford_400", "http://dbpedia.org/resource/1970_NBA_All-Star_Game", "http://dbpedia.org/resource/2022_ESPY_Awards", "http://dbpedia.org/resource/21_Hours_at_Munich", "http://dbpedia.org/resource/240-Robert", "http://dbpedia.org/resource/27th_Daytime_Emmy_Awards", "http://dbpedia.org/resource/30th_Daytime_Emmy_Awards", "http://dbpedia.org/resource/31st_Primetime_Emmy_Awards", "http://dbpedia.org/resource/33rd_Daytime_Emmy_Awards", "http://dbpedia.org/resource/34th_Primetime_Emmy_Awards", "http://dbpedia.org/resource/35th_Daytime_Emmy_Awards", "http://dbpedia.org/resource/45th_Primetime_Emmy_Awards", "http://dbpedia.org/resource/46th_Primetime_Emmy_Awards", "http://dbpedia.org/resource/48th_Primetime_Emmy_Awards", "http://dbpedia.org/resource/500_Questions", "http://dbpedia.org/resource/52nd_Academy_Awards", "http://dbpedia.org/resource/52nd_Primetime_Emmy_Awards", "http://dbpedia.org/resource/56th_Primetime_Emmy_Awards", "http://dbpedia.org/resource/60th_Academy_Awards", "http://dbpedia.org/resource/60th_Primetime_Emmy_Awards", "http://dbpedia.org/resource/666_Park_Avenue", "http://dbpedia.org/resource/68th_Primetime_Emmy_Awards", "http://dbpedia.org/resource/72nd_Primetime_Emmy_Awards", "http://dbpedia.org/resource/77_Sunset_Strip", "http://dbpedia.org/resource/81st_Academy_Awards", "http://dbpedia.org/resource/84th_Academy_Awards", "http://dbpedia.org/resource/89th_Academy_Awards", "http://dbpedia.org/resource/8_Simple_Rules", "http://dbpedia.org/resource/8_Simple_Rules_(season_1)", "http://dbpedia.org/resource/90th_Academy_Awards", "http://dbpedia.org/resource/91st_Academy_Awards", "http://dbpedia.org/resource/92nd_Academy_Awards", "http://dbpedia.org/resource/93rd_Academy_Awards", "http://dbpedia.org/resource/A.E.S._Hudson_Street", "http://dbpedia.org/resource/A.T.F.", "http://dbpedia.org/resource/A.k.a._Pablo", "http://dbpedia.org/resource/ABC's_Nightlife", "http://dbpedia.org/resource/ABC's_Wide_World_of_Entertainment", "http://dbpedia.org/resource/ABC_2000_Today", "http://dbpedia.org/resource/ABC_Afterschool_Special", "http://dbpedia.org/resource/ABC_Barn_Dance", "http://dbpedia.org/resource/ABC_Funfit", "http://dbpedia.org/resource/ABC_Mystery_Theater", "http://dbpedia.org/resource/ABC_Olympic_broadcasts", "http://dbpedia.org/resource/ABC_Saturday_Movie_of_the_Week", "http://dbpedia.org/resource/ABC_Stage_67", "http://dbpedia.org/resource/ABC_Television_Players", "http://dbpedia.org/resource/ABC_Theater", "http://dbpedia.org/resource/ABC_Weekend_Special", "http://dbpedia.org/resource/ABC_World_News_Tonight", "http://dbpedia.org/resource/ALMA_Award", "http://dbpedia.org/resource/AM_America", "http://dbpedia.org/resource/No_Place_to_Run_(film)", "http://dbpedia.org/resource/No_Time_for_Sergeants", "http://dbpedia.org/resource/Nobody's_Perfect_(American_TV_series)", "http://dbpedia.org/resource/North_and_South_(miniseries)", "http://dbpedia.org/resource/Notes_from_the_Underbelly", "http://dbpedia.org/resource/Notorious_(2016_TV_series)", "http://dbpedia.org/resource/Number_Please_(game_show)", "http://dbpedia.org/resource/O._J._Simpson:_Juice_on_the_Loose", "http://dbpedia.org/resource/October_Road_(TV_series)", "http://dbpedia.org/resource/2018_ESPY_Awards", "http://dbpedia.org/resource/2019_ESPY_Awards", "http://dbpedia.org/resource/2021_ESPY_Awards", "http://dbpedia.org/resource/Civil_Wars_(TV_series)", "http://dbpedia.org/resource/Claim_to_Fame_(TV_series)", "http://dbpedia.org/resource/Cleopatra_(miniseries)", "http://dbpedia.org/resource/Clerks:_The_Animated_Series", "http://dbpedia.org/resource/Clueless_(TV_series)", "http://dbpedia.org/resource/Coach_(TV_series)", "http://dbpedia.org/resource/Colt_.45_(TV_series)", "http://dbpedia.org/resource/Columbo", "http://dbpedia.org/resource/Columbo_(season_10)", "http://dbpedia.org/resource/Columbo_(season_8)", "http://dbpedia.org/resource/Columbo_(season_9)", "http://dbpedia.org/resource/Combat!", "http://dbpedia.org/resource/Come_On_Get_Happy:_The_Partridge_Family_Story", "http://dbpedia.org/resource/Commander_in_Chief_(TV_series)", "http://dbpedia.org/resource/Complete_Savages", "http://dbpedia.org/resource/Condo_(TV_series)", "http://dbpedia.org/resource/Conflict_(American_TV_series)", "http://dbpedia.org/resource/Congratulations,_It's_a_Boy!", "http://dbpedia.org/resource/Consenting_Adult_(film)", "http://dbpedia.org/resource/Cop_Rock", "http://dbpedia.org/resource/American_Music_Awards_of_1975", "http://dbpedia.org/resource/American_Music_Awards_of_1976", "http://dbpedia.org/resource/American_Music_Awards_of_1977", "http://dbpedia.org/resource/American_Music_Awards_of_1978", "http://dbpedia.org/resource/American_Music_Awards_of_1979", "http://dbpedia.org/resource/American_Music_Awards_of_1980", "http://dbpedia.org/resource/American_Music_Awards_of_1981", "http://dbpedia.org/resource/American_Music_Awards_of_1982", "http://dbpedia.org/resource/American_Music_Awards_of_1983", "http://dbpedia.org/resource/American_Music_Awards_of_1984", "http://dbpedia.org/resource/American_Music_Awards_of_1985", "http://dbpedia.org/resource/American_Music_Awards_of_1986", "http://dbpedia.org/resource/American_Music_Awards_of_1990", "http://dbpedia.org/resource/American_Music_Awards_of_1991", "http://dbpedia.org/resource/American_Music_Awards_of_1993", "http://dbpedia.org/resource/American_Music_Awards_of_1994", "http://dbpedia.org/resource/American_Music_Awards_of_1996", "http://dbpedia.org/resource/American_Music_Awards_of_1997", "http://dbpedia.org/resource/American_Music_Awards_of_1999", "http://dbpedia.org/resource/American_Music_Awards_of_2000", "http://dbpedia.org/resource/American_Music_Awards_of_2001", "http://dbpedia.org/resource/American_Music_Awards_of_2002", "http://dbpedia.org/resource/American_Music_Awards_of_2003_(January)", "http://dbpedia.org/resource/American_Music_Awards_of_2004", "http://dbpedia.org/resource/American_Music_Awards_of_2006", "http://dbpedia.org/resource/American_Music_Awards_of_2007", "http://dbpedia.org/resource/American_Music_Awards_of_2008", "http://dbpedia.org/resource/American_Music_Awards_of_2009", "http://dbpedia.org/resource/American_Music_Awards_of_2010", "http://dbpedia.org/resource/American_Music_Awards_of_2011", "http://dbpedia.org/resource/American_Music_Awards_of_2012", "http://dbpedia.org/resource/American_Music_Awards_of_2013", "http://dbpedia.org/resource/American_Music_Awards_of_2015", "http://dbpedia.org/resource/American_Music_Awards_of_2016", "http://dbpedia.org/resource/Jonny_Quest_(TV_series)", "http://dbpedia.org/resource/Santa_Claus_Is_Comin'_to_Town_(film)", "http://dbpedia.org/resource/Satan's_School_for_Girls_(1973_film)", "http://dbpedia.org/resource/Satan's_School_for_Girls_(2000_film)", "http://dbpedia.org/resource/Satan's_Triangle", "http://dbpedia.org/resource/Saturday_Night_Football", "http://dbpedia.org/resource/Saturday_Night_Live_with_Howard_Cosell", "http://dbpedia.org/resource/Savages_(1974_film)", "http://dbpedia.org/resource/Save_My_Life:_Boston_Trauma", "http://dbpedia.org/resource/Say_Goodbye,_Maggie_Cole", "http://dbpedia.org/resource/Scandal_(TV_series)", "http://dbpedia.org/resource/Scandal_(season_1)", "http://dbpedia.org/resource/Scandal_(season_2)", "http://dbpedia.org/resource/Scandal_(season_3)", "http://dbpedia.org/resource/Scandal_(season_4)", "http://dbpedia.org/resource/Scandal_(season_5)", "http://dbpedia.org/resource/Scandal_(season_6)", "http://dbpedia.org/resource/Scandal_(season_7)", "http://dbpedia.org/resource/Scary_Scooby_Funnies", "http://dbpedia.org/resource/Schooled_(TV_series)", "http://dbpedia.org/resource/Schoolhouse_Rock!", "http://dbpedia.org/resource/Scooby's_All-Star_Laff-A-Lympics", "http://dbpedia.org/resource/Scooby's_Mystery_Funhouse", "http://dbpedia.org/resource/Scooby-Doo_and_Scrappy-Doo_(1979_TV_series)", "http://dbpedia.org/resource/Scooby-Doo_and_Scrappy-Doo_(1980_TV_series)", "http://dbpedia.org/resource/Scooby_Goes_Hollywood", "http://dbpedia.org/resource/Scotland_Yard_(film_series)", "http://dbpedia.org/resource/Scoundrels_(TV_series)", "http://dbpedia.org/resource/Scream,_Pretty_Peggy", "http://dbpedia.org/resource/Scrubs_(season_8)", "http://dbpedia.org/resource/Scrubs_(season_9)", "http://dbpedia.org/resource/Scruffy_(1980_film)", "http://dbpedia.org/resource/Search_for_the_Gods", "http://dbpedia.org/resource/Second_Chance_(game_show)", "http://dbpedia.org/resource/Second_Noah", "http://dbpedia.org/resource/Secrets_and_Lies_(American_TV_series)", "http://dbpedia.org/resource/Selma,_Lord,_Selma", "http://dbpedia.org/resource/1948_NFL_Championship_Game", "http://dbpedia.org/resource/Baby_Makes_Five", "http://dbpedia.org/resource/Bachelor_Pad", "http://dbpedia.org/resource/Bachelor_in_Paradise:_After_Paradise", "http://dbpedia.org/resource/Bachelor_in_Paradise_(American_TV_series)", "http://dbpedia.org/resource/Bachelor_in_Paradise_(American_season_1)", "http://dbpedia.org/resource/Bachelor_in_Paradise_(American_season_2)", "http://dbpedia.org/resource/Bachelor_in_Paradise_(American_season_3)", "http://dbpedia.org/resource/Bachelor_in_Paradise_(American_season_4)", "http://dbpedia.org/resource/Bachelor_in_Paradise_(American_season_5)", "http://dbpedia.org/resource/Bachelor_in_Paradise_(American_season_6)", "http://dbpedia.org/resource/Bachelor_in_Paradise_(American_season_7)", "http://dbpedia.org/resource/Bachelor_in_Paradise_(American_season_8)", "http://dbpedia.org/resource/Back_That_Fact", "http://dbpedia.org/resource/Back_in_the_Game_(2013_TV_series)", "http://dbpedia.org/resource/Backfield_in_Motion_(film)", "http://dbpedia.org/resource/Bad_Ronald", "http://dbpedia.org/resource/Ball_Boys", "http://dbpedia.org/resource/Barbara_Walters'_10_Most_Fascinating_People", "http://dbpedia.org/resource/Baretta", "http://dbpedia.org/resource/Barney_Miller", "http://dbpedia.org/resource/Barney_Miller_(season_1)", "http://dbpedia.org/resource/Barney_Miller_(season_2)", "http://dbpedia.org/resource/Barney_Miller_(season_3)", "http://dbpedia.org/resource/Barney_Miller_(season_4)", "http://dbpedia.org/resource/Barney_Miller_(season_5)", "http://dbpedia.org/resource/Barney_Miller_(season_6)", "http://dbpedia.org/resource/Barney_Miller_(season_7)", "http://dbpedia.org/resource/Barney_Miller_(season_8)", "http://dbpedia.org/resource/BattleBots_(season_6)", "http://dbpedia.org/resource/BattleBots_(season_7)", "http://dbpedia.org/resource/Inhumans_(TV_series)", "http://dbpedia.org/resource/Inside_the_Third_Reich_(film)", "http://dbpedia.org/resource/International_Airport_(film)", "http://dbpedia.org/resource/Intimate_Strangers_(1977_film)", "http://dbpedia.org/resource/Into_Thin_Air:_Death_on_Everest", "http://dbpedia.org/resource/Invasion_(2005_TV_series)", "http://dbpedia.org/resource/Invitation_to_Hell_(1984_film)", "http://dbpedia.org/resource/It's_All_Relative", "http://dbpedia.org/resource/It's_Like,_You_Know...", "http://dbpedia.org/resource/It's_Not_Easy", "http://dbpedia.org/resource/It_(miniseries)", "http://dbpedia.org/resource/It_Happened_One_Christmas", "http://dbpedia.org/resource/It_Takes_Two_(American_TV_series)", "http://dbpedia.org/resource/It_Takes_a_Thief_(1968_TV_series)", "http://dbpedia.org/resource/Jabberjaw", "http://dbpedia.org/resource/Jack's_Place_(TV_series)", "http://dbpedia.org/resource/Miss_Guided", "http://dbpedia.org/resource/Miss_Switch_to_the_Rescue", "http://dbpedia.org/resource/Missing_(American_TV_series)", "http://dbpedia.org/resource/Missing_Links_(game_show)", "http://dbpedia.org/resource/Missing_Persons_(TV_series)", "http://dbpedia.org/resource/Mission:_Impossible_(1988_TV_series)", "http://dbpedia.org/resource/Mission:_Magic!", "http://dbpedia.org/resource/Mistresses_(American_TV_series)", "http://dbpedia.org/resource/Mistresses_(American_season_1)", "http://dbpedia.org/resource/Mistresses_(American_season_2)", "http://dbpedia.org/resource/Mistresses_(American_season_3)", "http://dbpedia.org/resource/Mistresses_(American_season_4)", "http://dbpedia.org/resource/Mixed-ish", "http://dbpedia.org/resource/Model_Behavior", "http://dbpedia.org/resource/Modern_Family", "http://dbpedia.org/resource/Modern_Family_(season_10)", "http://dbpedia.org/resource/Modern_Family_(season_11)", "http://dbpedia.org/resource/Modern_Family_(season_2)", "http://dbpedia.org/resource/Modern_Family_(season_3)", "http://dbpedia.org/resource/Modern_Family_(season_4)", "http://dbpedia.org/resource/Modern_Family_(season_5)", "http://dbpedia.org/resource/Modern_Family_(season_6)", "http://dbpedia.org/resource/Modern_Family_(season_7)", "http://dbpedia.org/resource/Modern_Family_(season_8)", "http://dbpedia.org/resource/Modern_Family_(season_9)", "http://dbpedia.org/resource/Monchhichis_(TV_series)", "http://dbpedia.org/resource/Monday_Night_Football", "http://dbpedia.org/resource/Money_Talks_News", "http://dbpedia.org/resource/Monopoly_(game_show)", "http://dbpedia.org/resource/Moon_Over_Miami_(TV_series)", "http://dbpedia.org/resource/Moonlighting_(TV_series)", "http://dbpedia.org/resource/More_in_Common_(TV_series)", "http://dbpedia.org/resource/Mork_&_Mindy/Laverne_&_Shirley/Fonz_Hour", "http://dbpedia.org/resource/Mr._Belvedere", "http://dbpedia.org/resource/Mr._Deeds_Goes_to_Town_(TV_series)", "http://dbpedia.org/resource/Mr._St._Nick", "http://dbpedia.org/resource/Mr._Sunshine_(2011_TV_series)", "http://dbpedia.org/resource/Murder_One_(TV_series)", "http://dbpedia.org/resource/Murder_on_Flight_502", "http://dbpedia.org/resource/Murphy's_Law_(American_TV_series)", "http://dbpedia.org/resource/My_Date_with_the_President's_Daughter", "http://dbpedia.org/resource/My_Diet_Is_Better_Than_Yours", "http://dbpedia.org/resource/My_Generation_(TV_series)", "http://dbpedia.org/resource/My_Kind_of_Town_(TV_series)", "http://dbpedia.org/resource/My_Life_and_Times", "http://dbpedia.org/resource/My_Pet_Monster", "http://dbpedia.org/resource/My_So-Called_Life", "http://dbpedia.org/resource/My_Wife_and_Kids", "http://dbpedia.org/resource/Mysteries_of_Chinatown", "http://dbpedia.org/resource/NASCAR_in_Primetime", "http://dbpedia.org/resource/NBA_Saturday_Primetime", "http://dbpedia.org/resource/NBA_on_ABC", "http://dbpedia.org/resource/NFL_on_ABC", "http://dbpedia.org/resource/NHL_Game_of_the_Week", "http://dbpedia.org/resource/NHL_on_ABC", "http://dbpedia.org/resource/NYPD_Blue", "http://dbpedia.org/resource/NYPD_Blue_(season_1)", "http://dbpedia.org/resource/NYPD_Blue_(season_10)", "http://dbpedia.org/resource/NYPD_Blue_(season_11)", "http://dbpedia.org/resource/NYPD_Blue_(season_12)", "http://dbpedia.org/resource/NYPD_Blue_(season_2)", "http://dbpedia.org/resource/NYPD_Blue_(season_3)", "http://dbpedia.org/resource/NYPD_Blue_(season_4)", "http://dbpedia.org/resource/NYPD_Blue_(season_5)", "http://dbpedia.org/resource/NYPD_Blue_(season_6)", "http://dbpedia.org/resource/NYPD_Blue_(season_7)", "http://dbpedia.org/resource/NYPD_Blue_(season_8)", "http://dbpedia.org/resource/NYPD_Blue_(season_9)", "http://dbpedia.org/resource/Naked_City_(TV_series)", "http://dbpedia.org/resource/Nancy_Drew_(2002_film)", "http://dbpedia.org/resource/Nanny_and_the_Professor", "http://dbpedia.org/resource/Napoleon_and_Josephine:_A_Love_Story", "http://dbpedia.org/resource/Nashville_(season_1)", "http://dbpedia.org/resource/Nashville_(season_2)", "http://dbpedia.org/resource/Nashville_(season_3)", "http://dbpedia.org/resource/Nashville_(season_4)", "http://dbpedia.org/resource/Top_Cat", "http://dbpedia.org/resource/Tower_of_Terror_(1997_film)", "http://dbpedia.org/resource/Toy_Story_That_Time_Forgot", "http://dbpedia.org/resource/Toy_Story_of_Terror!", "http://dbpedia.org/resource/Trapped_(1973_film)", "http://dbpedia.org/resource/Trauma_Center_(TV_series)", "http://dbpedia.org/resource/Traveler_(American_TV_series)", "http://dbpedia.org/resource/Treasury_Men_in_Action", "http://dbpedia.org/resource/Tribes_(film)", "http://dbpedia.org/resource/Trilogy_of_Terror", "http://dbpedia.org/resource/Trivia_Trap", "http://dbpedia.org/resource/Trophy_Wife_(TV_series)", "http://dbpedia.org/resource/True_Beauty_(American_TV_series)", "http://dbpedia.org/resource/True_Beauty_(season_1)", "http://dbpedia.org/resource/True_Beauty_(season_2)", "http://dbpedia.org/resource/Trump_Unauthorized", "http://dbpedia.org/resource/Turbo_Teen", "http://dbpedia.org/resource/Turn-On", "http://dbpedia.org/resource/Turning_Point_(TV_program)", "http://dbpedia.org/resource/Two_of_a_Kind_(American_TV_series)", "http://dbpedia.org/resource/1976_National_500", "http://dbpedia.org/resource/1984_Firecracker_400", "http://dbpedia.org/resource/1986_Firecracker_400", "http://dbpedia.org/resource/1994_Brickyard_400", "http://dbpedia.org/resource/A_Charlie_Brown_Valentine", "http://dbpedia.org/resource/A_Cold_Night's_Death", "http://dbpedia.org/resource/A_Fine_Romance_(1989_TV_series)", "http://dbpedia.org/resource/A_Flame_in_the_Wind", "http://dbpedia.org/resource/A_Flintstone_Family_Christmas", "http://dbpedia.org/resource/A_Flintstones_Christmas_Carol", "http://dbpedia.org/resource/A_Little_Game_(1971_film)", "http://dbpedia.org/resource/A_Loss_of_Innocence", "http://dbpedia.org/resource/A_Man_Called_Hawk", "http://dbpedia.org/resource/A_Man_Called_Shenandoah", "http://dbpedia.org/resource/A_Million_Little_Things", "http://dbpedia.org/resource/A_Muppet_Family_Christmas", "http://dbpedia.org/resource/A_Pup_Named_Scooby-Doo", "http://dbpedia.org/resource/A_Question_of_Love", "http://dbpedia.org/resource/A_Raisin_in_the_Sun_(2008_film)", "http://dbpedia.org/resource/A_Saintly_Switch", "http://dbpedia.org/resource/A_Salute_to_the_Beatles:_Once_upon_a_Time", "http://dbpedia.org/resource/A_Smile_as_Big_as_the_Moon", "http://dbpedia.org/resource/A_Taste_of_Evil", "http://dbpedia.org/resource/A_Thousand_Heroes", "http://dbpedia.org/resource/A_Touch_of_Grace", "http://dbpedia.org/resource/A_Tour_of_the_White_House_with_Mrs._John_F._Kennedy", "http://dbpedia.org/resource/A_Vacation_in_Hell", "http://dbpedia.org/resource/A_Very_Boy_Band_Holiday", "http://dbpedia.org/resource/A_Whale_for_the_Killing", "http://dbpedia.org/resource/A_Whole_New_Ballgame", "http://dbpedia.org/resource/A_Wrinkle_in_Time_(2003_film)", "http://dbpedia.org/resource/Abbott_Elementary", "http://dbpedia.org/resource/About_Faces", "http://dbpedia.org/resource/According_to_Jim", "http://dbpedia.org/resource/Accused_(1958_TV_series)", "http://dbpedia.org/resource/Actors_Studio_(TV_series)", "http://dbpedia.org/resource/Adam's_Rib_(TV_series)", "http://dbpedia.org/resource/Adventures_in_Paradise_(TV_series)", "http://dbpedia.org/resource/Agent_Carter_(TV_series)", "http://dbpedia.org/resource/Agent_Carter_(season_1)", "http://dbpedia.org/resource/Agent_Carter_(season_2)", "http://dbpedia.org/resource/Agents_of_S.H.I.E.L.D.", "http://dbpedia.org/resource/Agents_of_S.H.I.E.L.D._(season_1)", "http://dbpedia.org/resource/Agents_of_S.H.I.E.L.D._(season_2)", "http://dbpedia.org/resource/Agents_of_S.H.I.E.L.D._(season_3)", "http://dbpedia.org/resource/Agents_of_S.H.I.E.L.D._(season_4)", "http://dbpedia.org/resource/Agents_of_S.H.I.E.L.D._(season_5)", "http://dbpedia.org/resource/Agents_of_S.H.I.E.L.D._(season_6)", "http://dbpedia.org/resource/Agents_of_S.H.I.E.L.D._(season_7)", "http://dbpedia.org/resource/Bump_in_the_Night_(TV_series)", "http://dbpedia.org/resource/But_I_Don't_Want_to_Get_Married!", "http://dbpedia.org/resource/C-16:_FBI", "http://dbpedia.org/resource/Cadets_(1988_TV_pilot)", "http://dbpedia.org/resource/Call_Me_Anna", "http://dbpedia.org/resource/Call_Your_Mother", "http://dbpedia.org/resource/Calvin_and_the_Colonel", "http://dbpedia.org/resource/Cavemen_(TV_series)", "http://dbpedia.org/resource/Center_Stage_(TV_series)", "http://dbpedia.org/resource/Challenge_of_the_Superfriends", "http://dbpedia.org/resource/Challenger_(1990_film)", "http://dbpedia.org/resource/Champs_(TV_series)", "http://dbpedia.org/resource/Chance_of_a_Lifetime_(TV_series)", "http://dbpedia.org/resource/Charles_&_Diana:_A_Royal_Love_Story", "http://dbpedia.org/resource/Charlie's_Angels", "http://dbpedia.org/resource/Charlie's_Angels_(2011_TV_series)", "http://dbpedia.org/resource/Charlie_Brown's_Christmas_Tales", "http://dbpedia.org/resource/Charlie_Grace_(TV_series)", "http://dbpedia.org/resource/Cher..._Special", "http://dbpedia.org/resource/Cheyenne_(TV_series)", "http://dbpedia.org/resource/Child_Support_(game_show)", "http://dbpedia.org/resource/China_Beach", "http://dbpedia.org/resource/Chopper_One", "http://dbpedia.org/resource/Christine_Cromwell", "http://dbpedia.org/resource/Christmas_Comes_to_Pac-Land", "http://dbpedia.org/resource/Christmas_in_Conway", "http://dbpedia.org/resource/Christmas_with_Holly", "http://dbpedia.org/resource/Cinderella_(1997_film)", "http://dbpedia.org/resource/Steve_Harvey's_Funderdome", "http://dbpedia.org/resource/Stick_Around_(TV_pilot)", "http://dbpedia.org/resource/Still_Star-Crossed", "http://dbpedia.org/resource/Stone_(TV_series)", "http://dbpedia.org/resource/Stop_the_Music_(American_game_show)", "http://dbpedia.org/resource/Storm_of_the_Century", "http://dbpedia.org/resource/Strange_New_World_(film)", "http://dbpedia.org/resource/Strange_World_(TV_series)", "http://dbpedia.org/resource/Street_Hawk", "http://dbpedia.org/resource/Street_Sharks", "http://dbpedia.org/resource/Strike_Force_(TV_series)", "http://dbpedia.org/resource/Student_Exchange", "http://dbpedia.org/resource/Stumptown_(TV_series)", "http://dbpedia.org/resource/Suburgatory", "http://dbpedia.org/resource/Sugar_Time!", "http://dbpedia.org/resource/Sugarfoot", "http://dbpedia.org/resource/Summer_Solstice_(1981_film)", "http://dbpedia.org/resource/Sunday_Afternoon_Baseball", "http://dbpedia.org/resource/Sunday_Drive_(film)", "http://dbpedia.org/resource/Sunset_Beat", "http://dbpedia.org/resource/Super_Friends", "http://dbpedia.org/resource/Super_Friends:_The_Legendary_Super_Powers_Show", "http://dbpedia.org/resource/Super_Friends_(1973_TV_series)", "http://dbpedia.org/resource/Super_Friends_(1980_TV_series)", "http://dbpedia.org/resource/Superdome_(film)", "http://dbpedia.org/resource/Superhuman_Samurai_Syber-Squad", "http://dbpedia.org/resource/Supermarket_Sweep", "http://dbpedia.org/resource/Superstar_(American_TV_series)", "http://dbpedia.org/resource/Surfside_6", "http://dbpedia.org/resource/Surviving_Suburbia", "http://dbpedia.org/resource/Sweet_Hostage", "http://dbpedia.org/resource/Swing_Vote_(1999_film)", "http://dbpedia.org/resource/Switching_Goals", "http://dbpedia.org/resource/2008_Country_Music_Association_Awards", "http://dbpedia.org/resource/2008_Dickies_500", "http://dbpedia.org/resource/2008_Ford_400", "http://dbpedia.org/resource/2009_AMP_Energy_500", "http://dbpedia.org/resource/2009_Country_Music_Association_Awards", "http://dbpedia.org/resource/2009_Dickies_500", "http://dbpedia.org/resource/2009_Ford_400", "http://dbpedia.org/resource/2009_NASCAR_Banking_500_only_from_Bank_of_America", "http://dbpedia.org/resource/2009_Pepsi_500", "http://dbpedia.org/resource/2009_Price_Chopper_400", "http://dbpedia.org/resource/2010_Air_Guard_400", "http://dbpedia.org/resource/2010_Bank_of_America_500", "http://dbpedia.org/resource/2010_Country_Music_Association_Awards", "http://dbpedia.org/resource/2010_Irwin_Tools_Night_Race", "http://dbpedia.org/resource/2011_Bank_of_America_500", "http://dbpedia.org/resource/2011_Billboard_Music_Awards", "http://dbpedia.org/resource/2011_Country_Music_Association_Awards", "http://dbpedia.org/resource/2012_Aaron's_312", "http://dbpedia.org/resource/2012_Bank_of_America_500", "http://dbpedia.org/resource/2012_Billboard_Music_Awards", "http://dbpedia.org/resource/2012_Country_Music_Association_Awards", "http://dbpedia.org/resource/2013_Aaron's_312", "http://dbpedia.org/resource/2013_Alliance_Truck_Parts_250", "http://dbpedia.org/resource/2013_Billboard_Music_Awards", "http://dbpedia.org/resource/2013_CNBC_Prime's_The_Profit_200", "http://dbpedia.org/resource/2013_Country_Music_Association_Awards", "http://dbpedia.org/resource/2013_History_300", "http://dbpedia.org/resource/2013_Zippo_200_at_The_Glen", "http://dbpedia.org/resource/53rd_Academy_Awards", "http://dbpedia.org/resource/53rd_Annual_Country_Music_Association_Awards", "http://dbpedia.org/resource/54th_Academy_Awards", "http://dbpedia.org/resource/55th_Academy_Awards", "http://dbpedia.org/resource/55th_Annual_Country_Music_Association_Awards", "http://dbpedia.org/resource/56th_Academy_Awards", "http://dbpedia.org/resource/56th_Annual_Country_Music_Association_Awards", "http://dbpedia.org/resource/57th_Academy_Awards", "http://dbpedia.org/resource/58th_Academy_Awards", "http://dbpedia.org/resource/59th_Academy_Awards", "http://dbpedia.org/resource/5th_Annual_Grammy_Awards", "http://dbpedia.org/resource/61st_Academy_Awards", "http://dbpedia.org/resource/62nd_Academy_Awards", "http://dbpedia.org/resource/63rd_Academy_Awards", "http://dbpedia.org/resource/64th_Academy_Awards", "http://dbpedia.org/resource/64th_Primetime_Emmy_Awards", "http://dbpedia.org/resource/65th_Academy_Awards", "http://dbpedia.org/resource/66th_Academy_Awards", "http://dbpedia.org/resource/67th_Academy_Awards", "http://dbpedia.org/resource/68th_Academy_Awards", "http://dbpedia.org/resource/69th_Academy_Awards", "http://dbpedia.org/resource/70th_Academy_Awards", "http://dbpedia.org/resource/71st_Academy_Awards", "http://dbpedia.org/resource/72nd_Academy_Awards", "http://dbpedia.org/resource/73rd_Academy_Awards", "http://dbpedia.org/resource/74th_Academy_Awards", "http://dbpedia.org/resource/75th_Academy_Awards", "http://dbpedia.org/resource/76th_Academy_Awards", "http://dbpedia.org/resource/77th_Academy_Awards", "http://dbpedia.org/resource/78th_Academy_Awards", "http://dbpedia.org/resource/79th_Academy_Awards", "http://dbpedia.org/resource/80th_Academy_Awards", "http://dbpedia.org/resource/82nd_Academy_Awards", "http://dbpedia.org/resource/83rd_Academy_Awards", "http://dbpedia.org/resource/85th_Academy_Awards", "http://dbpedia.org/resource/86th_Academy_Awards", "http://dbpedia.org/resource/87th_Academy_Awards", "http://dbpedia.org/resource/88th_Academy_Awards", "http://dbpedia.org/resource/8th_ALMA_Awards", "http://dbpedia.org/resource/8th_Annual_Grammy_Awards", "http://dbpedia.org/resource/8th_Daytime_Emmy_Awards", "http://dbpedia.org/resource/94th_Academy_Awards", "http://dbpedia.org/resource/95th_Academy_Awards", "http://dbpedia.org/resource/9th_ALMA_Awards", "http://dbpedia.org/resource/9th_Annual_Grammy_Awards", "http://dbpedia.org/resource/Academy_of_Country_Music_Awards", "http://dbpedia.org/resource/Capitol_Critters", "http://dbpedia.org/resource/Captain_Caveman_and_the_Teen_Angels", "http://dbpedia.org/resource/Caravan_of_Courage:_An_Ewok_Adventure", "http://dbpedia.org/resource/Card_Sharks", "http://dbpedia.org/resource/Caribe_(American_TV_series)", "http://dbpedia.org/resource/Carpoolers", "http://dbpedia.org/resource/Cartoon_All-Stars_to_the_Rescue", "http://dbpedia.org/resource/Cartoon_Teletales", "http://dbpedia.org/resource/Caryl_&_Marilyn:_Real_Friends", "http://dbpedia.org/resource/Casablanca_(1955_TV_series)", "http://dbpedia.org/resource/Cashmere_Mafia", "http://dbpedia.org/resource/Casino_(1980_film)", "http://dbpedia.org/resource/Castaways_(TV_series)", "http://dbpedia.org/resource/Castle_(TV_series)", "http://dbpedia.org/resource/Castle_(season_1)", "http://dbpedia.org/resource/Castle_(season_2)", "http://dbpedia.org/resource/Castle_(season_3)", "http://dbpedia.org/resource/Castle_(season_4)", "http://dbpedia.org/resource/Castle_(season_5)", "http://dbpedia.org/resource/Castle_(season_6)", "http://dbpedia.org/resource/Castle_(season_7)", "http://dbpedia.org/resource/Castle_(season_8)", "http://dbpedia.org/resource/Hit_Lady", "http://dbpedia.org/resource/Holey_Moley", "http://dbpedia.org/resource/Hollyrock-a-Bye_Baby", "http://dbpedia.org/resource/Hollywood_Beat", "http://dbpedia.org/resource/Holmes_&_Yoyo", "http://dbpedia.org/resource/Home_(1988_TV_program)", "http://dbpedia.org/resource/Home_Alone_4:_Taking_Back_the_House", "http://dbpedia.org/resource/Home_Economics_(TV_series)", "http://dbpedia.org/resource/Home_Free_(1993_TV_series)", "http://dbpedia.org/resource/Home_Improvement_(TV_series)", "http://dbpedia.org/resource/Home_for_the_Holidays_(1972_film)", "http://dbpedia.org/resource/Homefront_(American_TV_series)", "http://dbpedia.org/resource/Homeland_Security_USA", "http://dbpedia.org/resource/Honey_West_(TV_series)", "http://dbpedia.org/resource/Honeymoon_with_a_Stranger", "http://dbpedia.org/resource/Hong_Kong_Phooey", "http://dbpedia.org/resource/Hooperman", "http://dbpedia.org/resource/Hootenanny_(TV_series)", "http://dbpedia.org/resource/Hope_&_Faith", "http://dbpedia.org/resource/Hope_&_Faith_(season_1)", "http://dbpedia.org/resource/Hot_Properties_(TV_series)", "http://dbpedia.org/resource/Hot_Seat_(game_show)", "http://dbpedia.org/resource/Hot_Wheels_(TV_series)", "http://dbpedia.org/resource/Hot_l_Baltimore", "http://dbpedia.org/resource/Hotel_(American_TV_series)", "http://dbpedia.org/resource/Hothouse_(TV_series)", "http://dbpedia.org/resource/Houston_Medical", "http://dbpedia.org/resource/How's_Your_Mother-in-Law%3F", "http://dbpedia.org/resource/How_Awful_About_Allan", "http://dbpedia.org/resource/How_the_West_Was_Fun", "http://dbpedia.org/resource/How_the_West_Was_Won_(TV_series)", "http://dbpedia.org/resource/How_to_Get_Away_with_Murder_(season_1)", "http://dbpedia.org/resource/How_to_Get_Away_with_Murder_(season_2)", "http://dbpedia.org/resource/How_to_Get_Away_with_Murder_(season_3)", "http://dbpedia.org/resource/How_to_Get_Away_with_Murder_(season_4)", "http://dbpedia.org/resource/How_to_Get_Away_with_Murder_(season_5)", "http://dbpedia.org/resource/How_to_Get_Away_with_Murder_(season_6)", "http://dbpedia.org/resource/How_to_Live_with_Your_Parents_(For_the_Rest_of_Your_Life)", "http://dbpedia.org/resource/How_to_Pick_Up_Girls!", "http://dbpedia.org/resource/Huckleberry_Finn_(1975_film)", "http://dbpedia.org/resource/Human_Target_(1992_TV_series)", "http://dbpedia.org/resource/Lady_Blue_(TV_series)", "http://dbpedia.org/resource/Land_of_the_Giants", "http://dbpedia.org/resource/Land_of_the_Lost_(1991_TV_series)", "http://dbpedia.org/resource/Lassie's_Rescue_Rangers", "http://dbpedia.org/resource/Last_Man_Standing_(American_TV_series)", "http://dbpedia.org/resource/Last_Resort_(TV_series)", "http://dbpedia.org/resource/Laughs_For_Sale", "http://dbpedia.org/resource/Laverne_&_Shirley", "http://dbpedia.org/resource/Laverne_&_Shirley_(season_1)", "http://dbpedia.org/resource/Laverne_&_Shirley_(season_2)", "http://dbpedia.org/resource/Laverne_&_Shirley_(season_3)", "http://dbpedia.org/resource/Laverne_&_Shirley_(season_4)", "http://dbpedia.org/resource/Laverne_&_Shirley_(season_5)", "http://dbpedia.org/resource/Laverne_&_Shirley_(season_6)", "http://dbpedia.org/resource/Laverne_&_Shirley_(season_7)", "http://dbpedia.org/resource/Laverne_&_Shirley_(season_8)", "http://dbpedia.org/resource/Leave_It_to_Beaver_(season_2)", "http://dbpedia.org/resource/Leave_It_to_Beaver_(season_3)", "http://dbpedia.org/resource/Leave_It_to_Beaver_(season_4)", "http://dbpedia.org/resource/Leave_It_to_Beaver_(season_5)", "http://dbpedia.org/resource/Leave_It_to_Beaver_(season_6)", "http://dbpedia.org/resource/Leave_It_to_the_Girls", "http://dbpedia.org/resource/Leaving_L.A.", "http://dbpedia.org/resource/2014_Billboard_Music_Awards", "http://dbpedia.org/resource/2014_Blue_Jeans_Go_Green_200", "http://dbpedia.org/resource/2014_Country_Music_Association_Awards", "http://dbpedia.org/resource/2014_History_300", "http://dbpedia.org/resource/2014_Irwin_Tools_Night_Race", "http://dbpedia.org/resource/2015_Billboard_Music_Awards", "http://dbpedia.org/resource/2015_ESPY_Awards", "http://dbpedia.org/resource/2016_Billboard_Music_Awards", "http://dbpedia.org/resource/2016_ESPY_Awards", "http://dbpedia.org/resource/2017_Billboard_Music_Awards", "http://dbpedia.org/resource/2017_ESPY_Awards", "http://dbpedia.org/resource/Doc_Elliot", "http://dbpedia.org/resource/Dog_and_Cat", "http://dbpedia.org/resource/Dollar_a_Second", "http://dbpedia.org/resource/Dolly_(1987_TV_series)", "http://dbpedia.org/resource/Don't_(game_show)", "http://dbpedia.org/resource/Don't_Trust_the_B----_in_Apartment_23", "http://dbpedia.org/resource/Donny_&_Marie_(1976_TV_series)", "http://dbpedia.org/resource/Doogie_Howser,_M.D.", "http://dbpedia.org/resource/Doorways", "http://dbpedia.org/resource/Dot_Comedy", "http://dbpedia.org/resource/Double,_Double,_Toil_and_Trouble", "http://dbpedia.org/resource/Double_Indemnity_(1973_film)", "http://dbpedia.org/resource/Double_Platinum_(film)", "http://dbpedia.org/resource/Doug_(TV_series)", "http://dbpedia.org/resource/Down_You_Go", "http://dbpedia.org/resource/Downward_Dog_(TV_series)", "http://dbpedia.org/resource/Dr._Cook's_Garden", "http://dbpedia.org/resource/Dr._Shrinker", "http://dbpedia.org/resource/Dragnet_(franchise)", "http://dbpedia.org/resource/Dragon's_Lair_(TV_series)", "http://dbpedia.org/resource/Dreamkeeper", "http://dbpedia.org/resource/Duel_(1971_film)", "http://dbpedia.org/resource/Duel_(American_game_show)", "http://dbpedia.org/resource/Dumb_and_Dumber_(TV_series)", "http://dbpedia.org/resource/Dying_Room_Only", "http://dbpedia.org/resource/Dynasty:_The_Making_of_a_Guilty_Pleasure", "http://dbpedia.org/resource/Dynasty_(1981_TV_series)", "http://dbpedia.org/resource/Dynasty_(1981_TV_series,_season_1)", "http://dbpedia.org/resource/Dynasty_(1981_TV_series,_season_2)", "http://dbpedia.org/resource/Dynasty_(1981_TV_series,_season_3)", "http://dbpedia.org/resource/Dynasty_(1981_TV_series,_season_4)", "http://dbpedia.org/resource/Dynasty_(1981_TV_series,_season_5)", "http://dbpedia.org/resource/Dynasty_(1981_TV_series,_season_6)", "http://dbpedia.org/resource/Dynasty_(1981_TV_series,_season_7)", "http://dbpedia.org/resource/Dynasty_(1981_TV_series,_season_8)", "http://dbpedia.org/resource/Dynasty_(1981_TV_series,_season_9)", "http://dbpedia.org/resource/Dynomutt,_Dog_Wonder", "http://dbpedia.org/resource/Sinatra_\u2013_The_Main_Event_(TV_program)", "http://dbpedia.org/resource/Single_Parents_(TV_series)", "http://dbpedia.org/resource/Sirens_(1993_TV_series)", "http://dbpedia.org/resource/Sister,_Sister_(TV_series)", "http://dbpedia.org/resource/Six_Degrees_(TV_series)", "http://dbpedia.org/resource/Sky_King", "http://dbpedia.org/resource/Snatched_(1973_film)", "http://dbpedia.org/resource/Snoops_(1999_TV_series)", "http://dbpedia.org/resource/Snow_(2004_film)", "http://dbpedia.org/resource/Snow_White:_The_Fairest_of_Them_All", "http://dbpedia.org/resource/So_You_Want_to_Lead_a_Band", "http://dbpedia.org/resource/Soap_(TV_series)", "http://dbpedia.org/resource/Something_So_Right_(TV_series)", "http://dbpedia.org/resource/Somewhere_Between_(TV_series)", "http://dbpedia.org/resource/Sons_&_Daughters_(2006_TV_series)", "http://dbpedia.org/resource/Soul_Man_(TV_series)", "http://dbpedia.org/resource/Soul_of_a_Nation", "http://dbpedia.org/resource/South_Pacific_(2001_film)", "http://dbpedia.org/resource/19th_Primetime_Emmy_Awards", "http://dbpedia.org/resource/1st_Annual_Grammy_Awards", "http://dbpedia.org/resource/24th_Daytime_Emmy_Awards", "http://dbpedia.org/resource/25th_Primetime_Emmy_Awards", "http://dbpedia.org/resource/25th_Tony_Awards", "http://dbpedia.org/resource/26th_Tony_Awards", "http://dbpedia.org/resource/27th_Tony_Awards", "http://dbpedia.org/resource/28th_Primetime_Emmy_Awards", "http://dbpedia.org/resource/28th_Tony_Awards", "http://dbpedia.org/resource/29th_Tony_Awards", "http://dbpedia.org/resource/2nd_Daytime_Emmy_Awards", "http://dbpedia.org/resource/30th_Tony_Awards", "http://dbpedia.org/resource/31st_Tony_Awards", "http://dbpedia.org/resource/33rd_Academy_Awards", "http://dbpedia.org/resource/34th_Academy_Awards", "http://dbpedia.org/resource/35th_Academy_Awards", "http://dbpedia.org/resource/36th_Academy_Awards", "http://dbpedia.org/resource/37th_Academy_Awards", "http://dbpedia.org/resource/37th_Primetime_Emmy_Awards", "http://dbpedia.org/resource/38th_Academy_Awards", "http://dbpedia.org/resource/39th_Academy_Awards", "http://dbpedia.org/resource/3rd_Annual_Grammy_Awards", "http://dbpedia.org/resource/40th_Academy_Awards", "http://dbpedia.org/resource/41st_Academy_Awards", "http://dbpedia.org/resource/42nd_Academy_Awards", "http://dbpedia.org/resource/48th_Academy_Awards", "http://dbpedia.org/resource/49th_Academy_Awards", "http://dbpedia.org/resource/50th_Academy_Awards", "http://dbpedia.org/resource/50th_Grey_Cup", "http://dbpedia.org/resource/51st_Academy_Awards", "http://dbpedia.org/resource/52nd_Annual_Country_Music_Association_Awards", "http://dbpedia.org/resource/Cougar_Town_(season_1)", "http://dbpedia.org/resource/Cougar_Town_(season_2)", "http://dbpedia.org/resource/Cougar_Town_(season_3)", "http://dbpedia.org/resource/Cowboy_in_Africa", "http://dbpedia.org/resource/Cracker_(American_TV_series)", "http://dbpedia.org/resource/Crash_Course_(game_show)", "http://dbpedia.org/resource/Creature_(miniseries)", "http://dbpedia.org/resource/Crime_with_Father", "http://dbpedia.org/resource/Cristela", "http://dbpedia.org/resource/Cro_(TV_series)", "http://dbpedia.org/resource/Crossroads_(1992_TV_series)", "http://dbpedia.org/resource/Crowhaven_Farm", "http://dbpedia.org/resource/Crowned_and_Dangerous", "http://dbpedia.org/resource/Cruise_Into_Terror", "http://dbpedia.org/resource/Crumbs_(TV_series)", "http://dbpedia.org/resource/Cry_Panic", "http://dbpedia.org/resource/Cupid_(1998_TV_series)", "http://dbpedia.org/resource/Cupid_(2009_TV_series)", "http://dbpedia.org/resource/Curiosity_Shop", "http://dbpedia.org/resource/Curtain_Call_(American_TV_series)", "http://dbpedia.org/resource/Custer_(TV_series)", "http://dbpedia.org/resource/Cycling_on_ABC", "http://dbpedia.org/resource/Dads_(1986_TV_series)", "http://dbpedia.org/resource/Grace_Kelly_(film)", "http://dbpedia.org/resource/Grace_Under_Fire", "http://dbpedia.org/resource/Grammy_Awards", "http://dbpedia.org/resource/Grand_Hotel_(TV_series)", "http://dbpedia.org/resource/Greatest_Hits_(TV_series)", "http://dbpedia.org/resource/Grey's_Anatomy", "http://dbpedia.org/resource/Grey's_Anatomy_(season_1)", "http://dbpedia.org/resource/Grey's_Anatomy_(season_10)", "http://dbpedia.org/resource/Grey's_Anatomy_(season_11)", "http://dbpedia.org/resource/Grey's_Anatomy_(season_12)", "http://dbpedia.org/resource/Grey's_Anatomy_(season_13)", "http://dbpedia.org/resource/Grey's_Anatomy_(season_14)", "http://dbpedia.org/resource/Grey's_Anatomy_(season_15)", "http://dbpedia.org/resource/Grey's_Anatomy_(season_16)", "http://dbpedia.org/resource/Grey's_Anatomy_(season_17)", "http://dbpedia.org/resource/Grey's_Anatomy_(season_18)", "http://dbpedia.org/resource/Grey's_Anatomy_(season_19)", "http://dbpedia.org/resource/Grey's_Anatomy_(season_2)", "http://dbpedia.org/resource/Grey's_Anatomy_(season_3)", "http://dbpedia.org/resource/Grey's_Anatomy_(season_4)", "http://dbpedia.org/resource/Grey's_Anatomy_(season_5)", "http://dbpedia.org/resource/Grey's_Anatomy_(season_6)", "http://dbpedia.org/resource/Grey's_Anatomy_(season_7)", "http://dbpedia.org/resource/Grey's_Anatomy_(season_8)", "http://dbpedia.org/resource/Grey's_Anatomy_(season_9)", "http://dbpedia.org/resource/Growing_Pains", "http://dbpedia.org/resource/Growing_Pains:_Return_of_the_Seavers", "http://dbpedia.org/resource/Gruen_Playhouse", "http://dbpedia.org/resource/Gung_Ho_(TV_series)", "http://dbpedia.org/resource/H.E.L.P.", "http://dbpedia.org/resource/He's_a_Bully,_Charlie_Brown", "http://dbpedia.org/resource/He's_the_Mayor", "http://dbpedia.org/resource/Head_of_the_Class", "http://dbpedia.org/resource/HeartBeat_(1988_TV_series)", "http://dbpedia.org/resource/Heart_of_the_City_(TV_series)", "http://dbpedia.org/resource/Heartsounds", "http://dbpedia.org/resource/Heathcliff_(1980_TV_series)", "http://dbpedia.org/resource/Help_Me_Help_You_(TV_series)", "http://dbpedia.org/resource/Hercules_and_the_Princess_of_Troy", "http://dbpedia.org/resource/Here_Come_the_Double_Deckers", "http://dbpedia.org/resource/Here_Come_the_Newlyweds", "http://dbpedia.org/resource/Here_Comes_Peter_Cottontail", "http://dbpedia.org/resource/Here_We_Go_Again_(1973_TV_series)", "http://dbpedia.org/resource/High_Incident", "http://dbpedia.org/resource/High_School_Musical:_Get_in_the_Picture", "http://dbpedia.org/resource/Hijack_(1973_film)", "http://dbpedia.org/resource/Hiller_and_Diller", "http://dbpedia.org/resource/MDs_(TV_series)", "http://dbpedia.org/resource/MGM_Parade", "http://dbpedia.org/resource/MLS_on_ESPN", "http://dbpedia.org/resource/MacGruder_and_Loud", "http://dbpedia.org/resource/MacGyver_(1985_TV_series)", "http://dbpedia.org/resource/MacGyver_(1985_TV_series,_season_1)", "http://dbpedia.org/resource/MacGyver_(1985_TV_series,_season_2)", "http://dbpedia.org/resource/MacGyver_(1985_TV_series,_season_3)", "http://dbpedia.org/resource/MacGyver_(1985_TV_series,_season_4)", "http://dbpedia.org/resource/MacGyver_(1985_TV_series,_season_5)", "http://dbpedia.org/resource/MacGyver_(1985_TV_series,_season_6)", "http://dbpedia.org/resource/MacGyver_(1985_TV_series,_season_7)", "http://dbpedia.org/resource/Mad_Mad_Mad_Monsters", "http://dbpedia.org/resource/Madeline_(TV_series)", "http://dbpedia.org/resource/Madigan_Men", "http://dbpedia.org/resource/Maggie_(1981_American_TV_series)", "http://dbpedia.org/resource/Major_League_Baseball_on_ABC", "http://dbpedia.org/resource/Make_That_Spare", "http://dbpedia.org/resource/Makin'_It_(TV_series)", "http://dbpedia.org/resource/Making_the_Band", "http://dbpedia.org/resource/Malibu_U", "http://dbpedia.org/resource/Mama_Rosa", "http://dbpedia.org/resource/Man_Up!", "http://dbpedia.org/resource/Rhyme_and_Reason_(game_show)", "http://dbpedia.org/resource/Rich_Man,_Poor_Man_(miniseries)", "http://dbpedia.org/resource/Rich_Man,_Poor_Man_Book_II", "http://dbpedia.org/resource/Richie_Rich_(1980_TV_series)", "http://dbpedia.org/resource/Rickety_Rocket", "http://dbpedia.org/resource/Ripley's_Believe_It_or_Not!_(1982_TV_series)", "http://dbpedia.org/resource/Rising_Star_(American_TV_series)", "http://dbpedia.org/resource/Rock_Hudson_(film)", "http://dbpedia.org/resource/Rocky_Mountain_Holiday", "http://dbpedia.org/resource/Rodney_(TV_series)", "http://dbpedia.org/resource/Rolling_Man", "http://dbpedia.org/resource/Fol-de-Rol", "http://dbpedia.org/resource/World_Bowl_'91", "http://dbpedia.org/resource/Everybody's_Talking", "http://dbpedia.org/resource/Ewoks:_The_Battle_for_Endor", "http://dbpedia.org/resource/Ewoks_(TV_series)", "http://dbpedia.org/resource/Extreme_(1995_TV_series)", "http://dbpedia.org/resource/Extreme_Makeover:_Home_Edition", "http://dbpedia.org/resource/Extreme_Makeover:_Home_Edition_(season_1)", "http://dbpedia.org/resource/Extreme_Makeover:_Home_Edition_(season_2)", "http://dbpedia.org/resource/Extreme_Makeover:_Home_Edition_(season_3)", "http://dbpedia.org/resource/Extreme_Makeover:_Home_Edition_(season_4)", "http://dbpedia.org/resource/Extreme_Makeover:_Home_Edition_(season_5)", "http://dbpedia.org/resource/Extreme_Makeover:_Home_Edition_(season_6)", "http://dbpedia.org/resource/Extreme_Makeover:_Home_Edition_(season_7)", "http://dbpedia.org/resource/Extreme_Makeover:_Home_Edition_(season_8)", "http://dbpedia.org/resource/Extreme_Makeover:_Home_Edition_(season_9)", "http://dbpedia.org/resource/Eye_to_Eye_(American_TV_series)", "http://dbpedia.org/resource/Eyes_(TV_series)", "http://dbpedia.org/resource/Fame,_Fortune_and_Romance", "http://dbpedia.org/resource/Family_(1976_TV_series)", "http://dbpedia.org/resource/Family_Food_Fight_(American_TV_series)", "http://dbpedia.org/resource/Family_Matters_(season_1)", "http://dbpedia.org/resource/Family_Matters_(season_2)", "http://dbpedia.org/resource/Family_Matters_(season_3)", "http://dbpedia.org/resource/Family_Matters_(season_4)", "http://dbpedia.org/resource/Fangface", "http://dbpedia.org/resource/Fantastic_Four_(1967_TV_series)", "http://dbpedia.org/resource/Fantasy_Island", "http://dbpedia.org/resource/Fantasy_Island_(1998_TV_series)", "http://dbpedia.org/resource/Fast_Cars_and_Superstars:_The_Gillette_Young_Guns_Celebrity_Race", "http://dbpedia.org/resource/Fat_March", "http://dbpedia.org/resource/Father_Dowling_Mysteries", "http://dbpedia.org/resource/Fight_of_the_Week", "http://dbpedia.org/resource/Fillmore!", "http://dbpedia.org/resource/Firehouse_(TV_series)", "http://dbpedia.org/resource/Firelight_(2012_film)", "http://dbpedia.org/resource/FlashForward", "http://dbpedia.org/resource/Flash_Gordon_(1996_TV_series)", "http://dbpedia.org/resource/Fluppy_Dogs", "http://dbpedia.org/resource/Follow_the_Sun_(TV_series)", "http://dbpedia.org/resource/Jeopardy!_National_College_Championship", "http://dbpedia.org/resource/Jeopardy!_The_Greatest_of_All_Time", "http://dbpedia.org/resource/Jimmy_Kimmel_Live!", "http://dbpedia.org/resource/John_Denver_and_the_Muppets:_A_Christmas_Together", "http://dbpedia.org/resource/Legs_(film)", "http://dbpedia.org/resource/Less_than_Perfect", "http://dbpedia.org/resource/Let's_See_(1955_TV_series)", "http://dbpedia.org/resource/Let_the_World_See", "http://dbpedia.org/resource/Letters_from_Three_Lovers", "http://dbpedia.org/resource/Lidsville", "http://dbpedia.org/resource/Life's_Work", "http://dbpedia.org/resource/Life-Size", "http://dbpedia.org/resource/Life_Goes_On_(TV_series)", "http://dbpedia.org/resource/Life_as_We_Know_It_(TV_series)", "http://dbpedia.org/resource/Life_on_Mars_(American_TV_series)", "http://dbpedia.org/resource/Life_with_Bonnie", "http://dbpedia.org/resource/Life_with_Judy_Garland:_Me_and_My_Shadows", "http://dbpedia.org/resource/Life_with_Lucy", "http://dbpedia.org/resource/Line_of_Fire_(2003_TV_series)", "http://dbpedia.org/resource/Linus_the_Lionhearted", "http://dbpedia.org/resource/List_of_9_to_5_episodes", "http://dbpedia.org/resource/List_of_BattleBots_episodes", "http://dbpedia.org/resource/List_of_Beetlejuice_episodes", "http://dbpedia.org/resource/National_Bingo_Night_(American_game_show)", "http://dbpedia.org/resource/Nestor,_the_Long-Eared_Christmas_Donkey", "http://dbpedia.org/resource/New_Kids_on_the_Block_(TV_series)", "http://dbpedia.org/resource/News_Gal", "http://dbpedia.org/resource/Night_Stalker_(TV_series)", "http://dbpedia.org/resource/Nightline", "http://dbpedia.org/resource/Nightmare_Ned", "http://dbpedia.org/resource/Nightmare_in_Badham_County", "http://dbpedia.org/resource/Pearl_(miniseries)", "http://dbpedia.org/resource/Penny_to_a_Million", "http://dbpedia.org/resource/Perfect_Strangers_(TV_series)", "http://dbpedia.org/resource/Peter_Jennings_Reporting", "http://dbpedia.org/resource/Peter_and_the_Wolf_(TV_special)", "http://dbpedia.org/resource/Phenom_(TV_series)", "http://dbpedia.org/resource/Philip_Marlowe_(TV_series)", "http://dbpedia.org/resource/Philly_(TV_series)", "http://dbpedia.org/resource/Private_Practice_(season_1)", "http://dbpedia.org/resource/Private_Practice_(season_2)", "http://dbpedia.org/resource/Private_Practice_(season_3)", "http://dbpedia.org/resource/Private_Practice_(season_4)", "http://dbpedia.org/resource/Private_Practice_(season_5)", "http://dbpedia.org/resource/Private_Practice_(season_6)", "http://dbpedia.org/resource/Probe_(1988_TV_series)", "http://dbpedia.org/resource/Project_ALF", "http://dbpedia.org/resource/Pros_and_Cons_(TV_series)", "http://dbpedia.org/resource/Pursuit_(1972_American_film)", "http://dbpedia.org/resource/Push_(TV_series)", "http://dbpedia.org/resource/Pushing_Daisies", "http://dbpedia.org/resource/Pyramid_(game_show)", "http://dbpedia.org/resource/QB_VII_(miniseries)", "http://dbpedia.org/resource/Quantico_(TV_series)", "http://dbpedia.org/resource/Quantico_(season_1)", "http://dbpedia.org/resource/Quantico_(season_2)", "http://dbpedia.org/resource/Quantico_(season_3)", "http://dbpedia.org/resource/Quarantined_(film)", "http://dbpedia.org/resource/Queen_for_a_Day", "http://dbpedia.org/resource/Queens_(American_TV_series)", "http://dbpedia.org/resource/These_Old_Broads", "http://dbpedia.org/resource/Thirtysomething", "http://dbpedia.org/resource/This_House_Possessed", "http://dbpedia.org/resource/This_Is_Tom_Jones", "http://dbpedia.org/resource/This_Week_(American_TV_program)", "http://dbpedia.org/resource/Threat_Matrix", "http://dbpedia.org/resource/Three's_Company", "http://dbpedia.org/resource/Three's_a_Crowd", "http://dbpedia.org/resource/Three's_a_Crowd_(1969_film)", "http://dbpedia.org/resource/Thundarr_the_Barbarian", "http://dbpedia.org/resource/Thursday_Night_Baseball", "http://dbpedia.org/resource/Tidal_Wave:_No_Escape", "http://dbpedia.org/resource/Time_Machine_Chefs", "http://dbpedia.org/resource/Time_for_Timer", "http://dbpedia.org/resource/Titanic_(2012_TV_series)", "http://dbpedia.org/resource/To_Grandmother's_House_We_Go", "http://dbpedia.org/resource/Willie_Mays_and_the_Say-Hey_Kid", "http://dbpedia.org/resource/Wolf_Rock_TV", "http://dbpedia.org/resource/Women's_Murder_Club_(TV_series)", "http://dbpedia.org/resource/Women_of_the_Movement", "http://dbpedia.org/resource/Wonder_Woman_(1974_film)", "http://dbpedia.org/resource/Wonderbug", "http://dbpedia.org/resource/Wonderland_(American_TV_series)", "http://dbpedia.org/resource/World's_Funniest_Videos", "http://dbpedia.org/resource/World_News_Now", "http://dbpedia.org/resource/ESPN_College_Basketball_on_ABC", "http://dbpedia.org/resource/ESPN_College_Football_on_ABC", "http://dbpedia.org/resource/ESPN_Sports_Saturday", "http://dbpedia.org/resource/Earth_2100", "http://dbpedia.org/resource/Earth_II", "http://dbpedia.org/resource/Eastwick_(TV_series)", "http://dbpedia.org/resource/Eleanor_and_Franklin_(miniseries)", "http://dbpedia.org/resource/Electra_Woman_and_Dyna_Girl", "http://dbpedia.org/resource/Eli_Stone", "http://dbpedia.org/resource/Ellen_(TV_series)", "http://dbpedia.org/resource/Ellen_(season_1)", "http://dbpedia.org/resource/Ellen_(season_2)", "http://dbpedia.org/resource/Ellen_(season_3)", "http://dbpedia.org/resource/Ellen_(season_4)", "http://dbpedia.org/resource/Ellen_(season_5)", "http://dbpedia.org/resource/Julie_&_Carol:_Together_Again", "http://dbpedia.org/resource/Julie_Farr,_M.D.", "http://dbpedia.org/resource/Just_Our_Luck", "http://dbpedia.org/resource/Just_in_Time_(TV_series)", "http://dbpedia.org/resource/Karen_Sisco", "http://dbpedia.org/resource/Live_in_Front_of_a_Studio_Audience", "http://dbpedia.org/resource/Lois_&_Clark:_The_New_Adventures_of_Superman", "http://dbpedia.org/resource/Lois_&_Clark:_The_New_Adventures_of_Superman_(season_1)", "http://dbpedia.org/resource/Lois_&_Clark:_The_New_Adventures_of_Superman_(season_2)", "http://dbpedia.org/resource/Lois_&_Clark:_The_New_Adventures_of_Superman_(season_3)", "http://dbpedia.org/resource/Lois_&_Clark:_The_New_Adventures_of_Superman_(season_4)", "http://dbpedia.org/resource/Longstreet_(TV_series)", "http://dbpedia.org/resource/Look_What's_Happened_to_Rosemary's_Baby", "http://dbpedia.org/resource/Lost_(TV_series)", "http://dbpedia.org/resource/Lost_(season_1)", "http://dbpedia.org/resource/Lost_(season_2)", "http://dbpedia.org/resource/Lost_(season_3)", "http://dbpedia.org/resource/Lost_(season_4)", "http://dbpedia.org/resource/Lost_(season_5)", "http://dbpedia.org/resource/Lost_(season_6)", "http://dbpedia.org/resource/Love,_American_Style", "http://dbpedia.org/resource/Love_Among_Thieves", "http://dbpedia.org/resource/Love_Among_the_Ruins_(film)", "http://dbpedia.org/resource/Loving_(TV_series)", "http://dbpedia.org/resource/Lucky_7_(TV_series)", "http://dbpedia.org/resource/Lucy_Must_Be_Traded,_Charlie_Brown", "http://dbpedia.org/resource/Of_Kings_and_Prophets", "http://dbpedia.org/resource/Of_Many_Things", "http://dbpedia.org/resource/Off_the_Rack", "http://dbpedia.org/resource/Oh_Madeline", "http://dbpedia.org/resource/Ohara_(TV_series)", "http://dbpedia.org/resource/Oliver_Twist_(1997_film)", "http://dbpedia.org/resource/Oliver_and_the_Artful_Dodger", "http://dbpedia.org/resource/On_the_Air_(TV_series)", "http://dbpedia.org/resource/On_the_Rocks_(American_TV_series)", "http://dbpedia.org/resource/Onassis:_The_Richest_Man_in_the_World", "http://dbpedia.org/resource/Once_Upon_a_Mattress_(film)", "http://dbpedia.org/resource/Once_Upon_a_Time_(TV_series)", "http://dbpedia.org/resource/Once_Upon_a_Time_(season_1)", "http://dbpedia.org/resource/Once_Upon_a_Time_(season_2)", "http://dbpedia.org/resource/Once_Upon_a_Time_(season_3)", "http://dbpedia.org/resource/Once_Upon_a_Time_(season_4)", "http://dbpedia.org/resource/Once_Upon_a_Time_(season_5)", "http://dbpedia.org/resource/Once_Upon_a_Time_(season_6)", "http://dbpedia.org/resource/Once_Upon_a_Time_(season_7)", "http://dbpedia.org/resource/Once_Upon_a_Time_in_Wonderland", "http://dbpedia.org/resource/Once_Upon_a_Wheel", "http://dbpedia.org/resource/Once_a_Hero", "http://dbpedia.org/resource/Once_and_Again", "http://dbpedia.org/resource/One_Life_to_Live", "http://dbpedia.org/resource/One_in_a_Million_(American_TV_series)", "http://dbpedia.org/resource/One_of_My_Wives_Is_Missing", "http://dbpedia.org/resource/Only_with_Married_Men", "http://dbpedia.org/resource/Open_All_Night_(TV_series)", "http://dbpedia.org/resource/Open_Hearing_(American_TV_program)", "http://dbpedia.org/resource/Operation_Petticoat_(TV_series)", "http://dbpedia.org/resource/Opportunity_Knocks_(game_show)", "http://dbpedia.org/resource/Oprah's_Big_Give", "http://dbpedia.org/resource/Ordinary_Heroes_(1986_film)", "http://dbpedia.org/resource/Our_Family_Honor", "http://dbpedia.org/resource/Our_World_(1986_TV_program)", "http://dbpedia.org/resource/Out_of_the_Blue_(1979_TV_series)", "http://dbpedia.org/resource/Set_for_Life", "http://dbpedia.org/resource/Shadow_Chasers", "http://dbpedia.org/resource/Shadow_on_the_Land", "http://dbpedia.org/resource/Shaping_Up", "http://dbpedia.org/resource/Shaq's_Big_Challenge", "http://dbpedia.org/resource/Shaq_Vs.", "http://dbpedia.org/resource/Shark_Tank_(season_1)", "http://dbpedia.org/resource/Shark_Tank_(season_10)", "http://dbpedia.org/resource/Shark_Tank_(season_11)", "http://dbpedia.org/resource/Shark_Tank_(season_12)", "http://dbpedia.org/resource/Shark_Tank_(season_13)", "http://dbpedia.org/resource/Shark_Tank_(season_2)", "http://dbpedia.org/resource/Shark_Tank_(season_3)", "http://dbpedia.org/resource/Shark_Tank_(season_4)", "http://dbpedia.org/resource/Shark_Tank_(season_5)", "http://dbpedia.org/resource/Shark_Tank_(season_6)", "http://dbpedia.org/resource/Shark_Tank_(season_7)", "http://dbpedia.org/resource/Shark_Tank_(season_8)", "http://dbpedia.org/resource/Shark_Tank_(season_9)", "http://dbpedia.org/resource/She'll_Take_Romance", "http://dbpedia.org/resource/She's_in_the_Army_Now", "http://dbpedia.org/resource/Shenanigans_(game_show)", "http://dbpedia.org/resource/Shootout_in_a_One-Dog_Town", "http://dbpedia.org/resource/Show_Me_the_Money_(American_game_show)", "http://dbpedia.org/resource/Showoffs", "http://dbpedia.org/resource/Shrek_the_Halls", "http://dbpedia.org/resource/Sidekicks_(TV_series)", "http://dbpedia.org/resource/Space_Patrol_(1950_TV_series)", "http://dbpedia.org/resource/Speechless_(TV_series)", "http://dbpedia.org/resource/Spenser:_For_Hire", "http://dbpedia.org/resource/Spider-Woman_(TV_series)", "http://dbpedia.org/resource/Spin_City", "http://dbpedia.org/resource/Spin_and_Marty", "http://dbpedia.org/resource/Splash_(American_TV_series)", "http://dbpedia.org/resource/Split_Second_(game_show)", "http://dbpedia.org/resource/Splitting_Up_Together", "http://dbpedia.org/resource/Sports_Night", "http://dbpedia.org/resource/Spring_Fling!", "http://dbpedia.org/resource/Stanley,_the_Ugly_Duckling", "http://dbpedia.org/resource/Star_Wars:_Droids", "http://dbpedia.org/resource/Starsky_&_Hutch", "http://dbpedia.org/resource/Starsky_and_Hutch_on_Playboy_Island", "http://dbpedia.org/resource/Stat_(TV_series)", "http://dbpedia.org/resource/Station_19", "http://dbpedia.org/resource/Stephen_King's_Desperation", "http://dbpedia.org/resource/Big_Day", "http://dbpedia.org/resource/Big_Fan_(game_show)", "http://dbpedia.org/resource/Big_Shots_(TV_series)", "http://dbpedia.org/resource/Big_Sky_(American_TV_series)", "http://dbpedia.org/resource/Bigfoot_and_Wildboy", "http://dbpedia.org/resource/Billboard_Music_Awards", "http://dbpedia.org/resource/Birdland_(TV_series)", "http://dbpedia.org/resource/Black-ish", "http://dbpedia.org/resource/Black-ish_(season_7)", "http://dbpedia.org/resource/Black-ish_(season_8)", "http://dbpedia.org/resource/Black_Box_(TV_series)", "http://dbpedia.org/resource/Black_Water_Gold", "http://dbpedia.org/resource/Blankety_Blanks_(American_game_show)", "http://dbpedia.org/resource/Blansky's_Beauties", "http://dbpedia.org/resource/Bless_This_Mess_(TV_series)", "http://dbpedia.org/resource/Blind_Date_(American_game_show)", "http://dbpedia.org/resource/Blind_Justice_(TV_series)", "http://dbpedia.org/resource/Blondes_vs._Brunettes", "http://dbpedia.org/resource/Blood_&_Oil", "http://dbpedia.org/resource/Blue_Skies_(1994_TV_series)", "http://dbpedia.org/resource/Blue_Thunder_(TV_series)", "http://dbpedia.org/resource/Bob_Patterson_(TV_series)", "http://dbpedia.org/resource/Body_of_Proof", "http://dbpedia.org/resource/Body_of_Proof_(season_1)", "http://dbpedia.org/resource/Body_of_Proof_(season_2)", "http://dbpedia.org/resource/Body_of_Proof_(season_3)", "http://dbpedia.org/resource/Hustling_(film)", "http://dbpedia.org/resource/I'm_Dickens,_He's_Fenster", "http://dbpedia.org/resource/I'm_a_Celebrity...Get_Me_Out_of_Here!_(American_TV_series)", "http://dbpedia.org/resource/I'm_with_Her_(TV_series)", "http://dbpedia.org/resource/I-Caught", "http://dbpedia.org/resource/I_Survived_a_Japanese_Game_Show", "http://dbpedia.org/resource/I_Want_a_Dog_for_Christmas,_Charlie_Brown", "http://dbpedia.org/resource/I_Will_Fight_No_More_Forever", "http://dbpedia.org/resource/I_Yabba-Dabba_Do!", "http://dbpedia.org/resource/Ice_(1998_film)", "http://dbpedia.org/resource/Imaginary_Mary", "http://dbpedia.org/resource/In_Case_of_Emergency_(TV_series)", "http://dbpedia.org/resource/In_Concert_(American_TV_series)", "http://dbpedia.org/resource/In_Justice", "http://dbpedia.org/resource/In_My_Dreams_(film)", "http://dbpedia.org/resource/In_the_Custody_of_Strangers", "http://dbpedia.org/resource/In_the_Motherhood", "http://dbpedia.org/resource/Incident_in_San_Francisco", "http://dbpedia.org/resource/IndyCar_Series_on_ABC", "http://dbpedia.org/resource/King's_Crossing", "http://dbpedia.org/resource/King_of_the_World_(film)", "http://dbpedia.org/resource/Kingdom_Hospital", "http://dbpedia.org/resource/Kings_Row_(TV_series)", "http://dbpedia.org/resource/Kiss_of_a_Killer", "http://dbpedia.org/resource/Knightwatch", "http://dbpedia.org/resource/Kolchak:_The_Night_Stalker", "http://dbpedia.org/resource/List_of_Celebrity_Family_Feud_episodes", "http://dbpedia.org/resource/List_of_Clueless_episodes", "http://dbpedia.org/resource/List_of_Columbo_episodes", "http://dbpedia.org/resource/List_of_Cougar_Town_episodes", "http://dbpedia.org/resource/List_of_Darkwing_Duck_episodes", "http://dbpedia.org/resource/List_of_Designated_Survivor_episodes", "http://dbpedia.org/resource/List_of_Diff'rent_Strokes_episodes", "http://dbpedia.org/resource/List_of_Doug_episodes", "http://dbpedia.org/resource/List_of_Family_Matters_episodes", "http://dbpedia.org/resource/List_of_Father_Dowling_Mysteries_episodes", "http://dbpedia.org/resource/List_of_Hercules_(1998_TV_series)_episodes", "http://dbpedia.org/resource/List_of_House_of_Mouse_episodes", "http://dbpedia.org/resource/List_of_It's_a_Living_episodes", "http://dbpedia.org/resource/List_of_Last_Man_Standing_episodes", "http://dbpedia.org/resource/List_of_Lloyd_in_Space_episodes", "http://dbpedia.org/resource/List_of_Matlock_episodes", "http://dbpedia.org/resource/List_of_My_Three_Sons_episodes", "http://dbpedia.org/resource/List_of_Nashville_episodes", "http://dbpedia.org/resource/List_of_Peter_Gunn_episodes", "http://dbpedia.org/resource/List_of_Sabrina_the_Teenage_Witch_episodes", "http://dbpedia.org/resource/List_of_Schoolhouse_Rock!_episodes", "http://dbpedia.org/resource/List_of_Scooby-Doo,_Where_Are_You!_episodes", "http://dbpedia.org/resource/List_of_Scrubs_episodes", "http://dbpedia.org/resource/List_of_Sister,_Sister_episodes", "http://dbpedia.org/resource/List_of_Step_by_Step_episodes", "http://dbpedia.org/resource/List_of_Supernanny_(American_TV_series)_episodes", "http://dbpedia.org/resource/List_of_T._J._Hooker_episodes", "http://dbpedia.org/resource/List_of_Taxi_episodes", "http://dbpedia.org/resource/List_of_Teacher's_Pet_episodes", "http://dbpedia.org/resource/List_of_The_Bionic_Woman_episodes", "http://dbpedia.org/resource/List_of_The_Brady_Bunch_episodes", "http://dbpedia.org/resource/List_of_The_Critic_episodes", "http://dbpedia.org/resource/List_of_The_Danny_Thomas_Show_episodes", "http://dbpedia.org/resource/List_of_The_Ghost_&_Mrs._Muir_episodes", "http://dbpedia.org/resource/List_of_The_Hughleys_episodes", "http://dbpedia.org/resource/List_of_The_Jetsons_episodes", "http://dbpedia.org/resource/List_of_The_Naked_Truth_episodes", "http://dbpedia.org/resource/List_of_The_Real_Ghostbusters_episodes", "http://dbpedia.org/resource/List_of_The_Young_Indiana_Jones_Chronicles_episodes", "http://dbpedia.org/resource/List_of_Too_Close_for_Comfort_episodes", "http://dbpedia.org/resource/List_of_Twin_Peaks_episodes", "http://dbpedia.org/resource/List_of_Wagon_Train_episodes", "http://dbpedia.org/resource/List_of_Webster_episodes", "http://dbpedia.org/resource/List_of_Whose_Line_Is_It_Anyway%3F_(American_TV_series)_episodes", "http://dbpedia.org/resource/Little_House_on_the_Prairie_(miniseries)", "http://dbpedia.org/resource/Little_Ladies_of_the_Night", "http://dbpedia.org/resource/Little_Rosey", "http://dbpedia.org/resource/Little_Wizards", "http://dbpedia.org/resource/Mickey's_90th_Spectacular", "http://dbpedia.org/resource/Mighty_Orbots", "http://dbpedia.org/resource/Mike_Tyson:_The_Knockout", "http://dbpedia.org/resource/Mike_and_Maty", "http://dbpedia.org/resource/Mind_Games_(TV_series)", "http://dbpedia.org/resource/Miracle_Workers_(2006_TV_series)", "http://dbpedia.org/resource/Miracle_on_Ice_(1981_film)", "http://dbpedia.org/resource/Miracles_(TV_series)", "http://dbpedia.org/resource/Ozark_Jubilee", "http://dbpedia.org/resource/PGA_Tour_on_ABC", "http://dbpedia.org/resource/Pabst_Blue_Ribbon_Bouts", "http://dbpedia.org/resource/Pac-Man_(TV_series)", "http://dbpedia.org/resource/Pan_Am_(TV_series)", "http://dbpedia.org/resource/Pat_Paulsen's_Half_a_Comedy_Hour", "http://dbpedia.org/resource/Room_222", "http://dbpedia.org/resource/Room_for_One_More_(TV_series)", "http://dbpedia.org/resource/Room_for_Two_(American_TV_series)", "http://dbpedia.org/resource/Roots:_The_Gift", "http://dbpedia.org/resource/Roots:_The_Next_Generations", "http://dbpedia.org/resource/Roots_(1977_miniseries)", "http://dbpedia.org/resource/Roseanne", "http://dbpedia.org/resource/Roseanne_(season_10)", "http://dbpedia.org/resource/Rubik,_the_Amazing_Cube", "http://dbpedia.org/resource/Ryan's_Four", "http://dbpedia.org/resource/Ryan's_Hope", "http://dbpedia.org/resource/S.O.S._Titanic", "http://dbpedia.org/resource/Go/Nitro", "http://dbpedia.org/resource/Half_a_Dozen_Babies", "http://dbpedia.org/resource/NBA_Sunday_Showcase", "http://dbpedia.org/resource/Yogi's_Ark_Lark", "http://dbpedia.org/resource/Yogi's_Gang", "http://dbpedia.org/resource/You_Don't_Know_Jack_(game_show)", "http://dbpedia.org/resource/You_Wish_(TV_series)", "http://dbpedia.org/resource/Young_Pioneers_(film)", "http://dbpedia.org/resource/Yuma_(1971_film)", "http://dbpedia.org/resource/Zero_Hour_(2013_TV_series)", "http://dbpedia.org/resource/Ziggy's_Gift", "http://dbpedia.org/resource/Zorro_(1957_TV_series)", "http://dbpedia.org/resource/America's_Most_Smartest_Model", "http://dbpedia.org/resource/America's_Next_Top_Model_(season_23)", "http://dbpedia.org/resource/America's_Next_Top_Model_(season_24)", "http://dbpedia.org/resource/Daytime_Divas", "http://dbpedia.org/resource/VH1_Family_Reunion:_Love_&_Hip_Hop_Edition", "http://dbpedia.org/resource/VH1_ILL-ustrated", "http://dbpedia.org/resource/VH1_Live!", "http://dbpedia.org/resource/VH1_Storytellers", "http://dbpedia.org/resource/VH1_Top_20_Video_Countdown", "http://dbpedia.org/resource/Warning:_Parental_Advisory", "http://dbpedia.org/resource/Dice:_Undisputed", "http://dbpedia.org/resource/Al_TV", "http://dbpedia.org/resource/Behind_the_Music", "http://dbpedia.org/resource/For_the_Love_of_Ray_J", "http://dbpedia.org/resource/For_the_Love_of_Ray_J_(season_1)", "http://dbpedia.org/resource/For_the_Love_of_Ray_J_(season_2)", "http://dbpedia.org/resource/Frank_the_Entertainer_in_a_Basement_Affair", "http://dbpedia.org/resource/Free_Radio", "http://dbpedia.org/resource/T.I._&_Tiny:_Friends_&_Family_Hustle", "http://dbpedia.org/resource/T.I._&_Tiny:_The_Family_Hustle", "http://dbpedia.org/resource/Web_Junk_20", "http://dbpedia.org/resource/Where_Are_They_Now%3F_(American_TV_series)", "http://dbpedia.org/resource/Wicked_Single", "http://dbpedia.org/resource/Girls_Cruise", "http://dbpedia.org/resource/The_Bitch_Who_Stole_Christmas", "http://dbpedia.org/resource/The_Breaks_(2016_film)", "http://dbpedia.org/resource/The_Cho_Show", "http://dbpedia.org/resource/15th_Critics'_Choice_Awards", "http://dbpedia.org/resource/16th_Critics'_Choice_Awards", "http://dbpedia.org/resource/BET_Awards_2016", "http://dbpedia.org/resource/BET_Awards_2018", "http://dbpedia.org/resource/BET_Awards_2021", "http://dbpedia.org/resource/BET_Awards_2022", "http://dbpedia.org/resource/Master_of_the_Mix", "http://dbpedia.org/resource/Meat_Loaf:_To_Hell_and_Back", "http://dbpedia.org/resource/Megan_Wants_a_Millionaire", "http://dbpedia.org/resource/Real_Chance_of_Love", "http://dbpedia.org/resource/Real_Chance_of_Love_(season_1)", "http://dbpedia.org/resource/Real_Chance_of_Love_(season_2)", "http://dbpedia.org/resource/Real_and_Chance:_The_Legend_Hunters", "http://dbpedia.org/resource/Remy_&_Papoose:_Meet_the_Mackies", "http://dbpedia.org/resource/The_Drug_Years", "http://dbpedia.org/resource/The_Gossip_Game", "http://dbpedia.org/resource/The_Jenny_McCarthy_Show_(2013_talk_show)", "http://dbpedia.org/resource/The_Pickup_Artist_(TV_series)", "http://dbpedia.org/resource/The_Surreal_Life", "http://dbpedia.org/resource/The_Surreal_Life:_Fame_Games", "http://dbpedia.org/resource/The_T.O._Show", "http://dbpedia.org/resource/The_World_Series_of_Pop_Culture", "http://dbpedia.org/resource/The_X-Life", "http://dbpedia.org/resource/17th_Critics'_Choice_Awards", "http://dbpedia.org/resource/1st_Critics'_Choice_Real_TV_Awards", "http://dbpedia.org/resource/8-Track_Flashback", "http://dbpedia.org/resource/Ochocinco:_The_Ultimate_Catch", "http://dbpedia.org/resource/2018_Soul_Train_Music_Awards", "http://dbpedia.org/resource/2020_Soul_Train_Music_Awards", "http://dbpedia.org/resource/2021_Soul_Train_Music_Awards", "http://dbpedia.org/resource/Classic_Albums", "http://dbpedia.org/resource/Confessions_of_a_Teen_Idol", "http://dbpedia.org/resource/Scott_Baio_Is_45...and_Single", "http://dbpedia.org/resource/Scott_Baio_Is_46...and_Pregnant", "http://dbpedia.org/resource/BET_Awards_2019", "http://dbpedia.org/resource/Baller_Wives", "http://dbpedia.org/resource/Bands_on_the_Run", "http://dbpedia.org/resource/Barely_Famous", "http://dbpedia.org/resource/Basketball_Wives", "http://dbpedia.org/resource/Basketball_Wives_(season_1)", "http://dbpedia.org/resource/Basketball_Wives_(season_2)", "http://dbpedia.org/resource/Basketball_Wives_(season_3)", "http://dbpedia.org/resource/Basketball_Wives_(season_4)", "http://dbpedia.org/resource/Basketball_Wives_(season_5)", "http://dbpedia.org/resource/Basketball_Wives_(season_6)", "http://dbpedia.org/resource/Basketball_Wives_(season_7)", "http://dbpedia.org/resource/Basketball_Wives_(season_8)", "http://dbpedia.org/resource/Basketball_Wives_LA_(season_1)", "http://dbpedia.org/resource/Basketball_Wives_LA_(season_2)", "http://dbpedia.org/resource/Basketball_Wives_LA_(season_3)", "http://dbpedia.org/resource/Basketball_Wives_LA_(season_4)", "http://dbpedia.org/resource/Basketball_Wives_LA_(season_5)", "http://dbpedia.org/resource/Mission_Man_Band", "http://dbpedia.org/resource/Motormouth_(American_TV_program)", "http://dbpedia.org/resource/My_Fair_Brady", "http://dbpedia.org/resource/Tool_Academy_(American_TV_series)", "http://dbpedia.org/resource/Tool_Academy_(season_1)", "http://dbpedia.org/resource/Tool_Academy_(season_2)", "http://dbpedia.org/resource/Tool_Academy_(season_3)", "http://dbpedia.org/resource/Totally_Awesome", "http://dbpedia.org/resource/Tough_Love:_Co-Ed", "http://dbpedia.org/resource/Tough_Love_(season_1)", "http://dbpedia.org/resource/Tough_Love_(season_2)", "http://dbpedia.org/resource/Tough_Love_Couples", "http://dbpedia.org/resource/Tough_Love_Miami", "http://dbpedia.org/resource/Tough_Love_New_Orleans", "http://dbpedia.org/resource/Twinning_(TV_series)", "http://dbpedia.org/resource/Two_of_Us_(2000_film)", "http://dbpedia.org/resource/A_Diva's_Christmas_Carol", "http://dbpedia.org/resource/Acceptable.TV", "http://dbpedia.org/resource/Celebracadabra", "http://dbpedia.org/resource/Celebrity_Fit_Club_(American_TV_series)", "http://dbpedia.org/resource/Celebrity_Paranormal_Project", "http://dbpedia.org/resource/Celebrity_Rehab_Presents_Sober_House", "http://dbpedia.org/resource/Celebrity_Rehab_with_Dr._Drew", "http://dbpedia.org/resource/Charm_School_(TV_series)", "http://dbpedia.org/resource/Charm_School_with_Ricki_Lake", "http://dbpedia.org/resource/Chrissy_&_Mr._Jones", "http://dbpedia.org/resource/Stevie_J_&_Joseline:_Go_Hollywood", "http://dbpedia.org/resource/Stevie_TV", "http://dbpedia.org/resource/Strange_Love", "http://dbpedia.org/resource/Supergroup_(TV_series)", "http://dbpedia.org/resource/Cartel_Crew", "http://dbpedia.org/resource/Hollywood_Exes", "http://dbpedia.org/resource/La_La's_Full_Court_Wedding", "http://dbpedia.org/resource/Leave_It_to_Stevie", "http://dbpedia.org/resource/Drew_Pinsky", "http://dbpedia.org/resource/Drumline:_A_New_Beat", "http://dbpedia.org/resource/CrazySexyCool:_The_TLC_Story", "http://dbpedia.org/resource/Dad_Camp", "http://dbpedia.org/resource/Daisy_of_Love", "http://dbpedia.org/resource/MTV_Classic_(American_TV_channel)", "http://dbpedia.org/resource/Rock_of_Love:_Charm_School", "http://dbpedia.org/resource/Rock_of_Love_Bus_with_Bret_Michaels", "http://dbpedia.org/resource/Rock_of_Love_with_Bret_Michaels", "http://dbpedia.org/resource/Rock_of_Love_with_Bret_Michaels_(season_1)", "http://dbpedia.org/resource/Rock_of_Love_with_Bret_Michaels_(season_2)", "http://dbpedia.org/resource/Famous_Crime_Scene", "http://dbpedia.org/resource/Finding_Prince_Charming", "http://dbpedia.org/resource/Flavor_of_Love", "http://dbpedia.org/resource/Flavor_of_Love_(season_1)", "http://dbpedia.org/resource/Flavor_of_Love_(season_2)", "http://dbpedia.org/resource/Flavor_of_Love_(season_3)", "http://dbpedia.org/resource/Flavor_of_Love_Girls:_Charm_School", "http://dbpedia.org/resource/Football_Wives_(American_TV_series)", "http://dbpedia.org/resource/New_York_Goes_to_Hollywood", "http://dbpedia.org/resource/VH1_Big_in_'05_Awards", "http://dbpedia.org/resource/Ego_Trip's_Miss_Rap_Supreme", "http://dbpedia.org/resource/Ego_Trip's_The_(White)_Rapper_Show", "http://dbpedia.org/resource/K._Michelle:_My_Life", "http://dbpedia.org/resource/Live_from_Daryl's_House", "http://dbpedia.org/resource/Love_&_Hip_Hop:_Atlanta", "http://dbpedia.org/resource/Love_&_Hip_Hop:_Atlanta_(season_1)", "http://dbpedia.org/resource/Love_&_Hip_Hop:_Atlanta_(season_10)", "http://dbpedia.org/resource/Love_&_Hip_Hop:_Atlanta_(season_2)", "http://dbpedia.org/resource/Love_&_Hip_Hop:_Atlanta_(season_3)", "http://dbpedia.org/resource/Love_&_Hip_Hop:_Atlanta_(season_4)", "http://dbpedia.org/resource/Love_&_Hip_Hop:_Atlanta_(season_5)", "http://dbpedia.org/resource/Love_&_Hip_Hop:_Atlanta_(season_6)", "http://dbpedia.org/resource/Love_&_Hip_Hop:_Atlanta_(season_7)", "http://dbpedia.org/resource/Love_&_Hip_Hop:_Atlanta_(season_8)", "http://dbpedia.org/resource/Love_&_Hip_Hop:_Atlanta_(season_9)", "http://dbpedia.org/resource/Love_&_Hip_Hop:_Hollywood_(season_1)", "http://dbpedia.org/resource/Love_&_Hip_Hop:_Hollywood_(season_2)", "http://dbpedia.org/resource/Love_&_Hip_Hop:_Hollywood_(season_3)", "http://dbpedia.org/resource/Love_&_Hip_Hop:_Hollywood_(season_4)", "http://dbpedia.org/resource/Love_&_Hip_Hop:_Hollywood_(season_5)", "http://dbpedia.org/resource/Love_&_Hip_Hop:_Hollywood_(season_6)", "http://dbpedia.org/resource/Love_&_Hip_Hop:_Miami_(season_1)", "http://dbpedia.org/resource/Love_&_Hip_Hop:_Miami_(season_2)", "http://dbpedia.org/resource/Love_&_Hip_Hop:_Miami_(season_3)", "http://dbpedia.org/resource/Love_&_Hip_Hop:_Miami_(season_4)", "http://dbpedia.org/resource/Love_&_Hip_Hop:_New_York_(season_1)", "http://dbpedia.org/resource/Love_&_Hip_Hop:_New_York_(season_10)", "http://dbpedia.org/resource/Love_&_Hip_Hop:_New_York_(season_2)", "http://dbpedia.org/resource/Love_&_Hip_Hop:_New_York_(season_3)", "http://dbpedia.org/resource/Love_&_Hip_Hop:_New_York_(season_4)", "http://dbpedia.org/resource/Love_&_Hip_Hop:_New_York_(season_5)", "http://dbpedia.org/resource/Love_&_Hip_Hop:_New_York_(season_6)", "http://dbpedia.org/resource/Love_&_Hip_Hop:_New_York_(season_7)", "http://dbpedia.org/resource/Love_&_Hip_Hop:_New_York_(season_8)", "http://dbpedia.org/resource/Love_&_Hip_Hop:_New_York_(season_9)", "http://dbpedia.org/resource/One-Hit_Wonders_(American_TV_series)", "http://dbpedia.org/resource/Sex_Rehab_with_Dr._Drew", "http://dbpedia.org/resource/Shooting_Sizemore", "http://dbpedia.org/resource/When_Ruled_the_World", "http://dbpedia.org/resource/Black_Ink_Crew", "http://dbpedia.org/resource/Black_Ink_Crew:_Chicago", "http://dbpedia.org/resource/Black_Ink_Crew:_Chicago_(season_1)", "http://dbpedia.org/resource/Black_Ink_Crew:_Chicago_(season_2)", "http://dbpedia.org/resource/Black_Ink_Crew:_Chicago_(season_3)", "http://dbpedia.org/resource/Black_Ink_Crew:_Chicago_(season_4)", "http://dbpedia.org/resource/Black_Ink_Crew:_Chicago_(season_5)", "http://dbpedia.org/resource/Black_Ink_Crew:_Chicago_(season_6)", "http://dbpedia.org/resource/Black_Ink_Crew:_Compton", "http://dbpedia.org/resource/Black_Ink_Crew_(season_1)", "http://dbpedia.org/resource/Black_Ink_Crew_(season_2)", "http://dbpedia.org/resource/Black_Ink_Crew_(season_3)", "http://dbpedia.org/resource/Black_Ink_Crew_(season_4)", "http://dbpedia.org/resource/Black_Ink_Crew_(season_5)", "http://dbpedia.org/resource/Black_Ink_Crew_(season_6)", "http://dbpedia.org/resource/Black_Ink_Crew_(season_7)", "http://dbpedia.org/resource/Black_Ink_Crew_(season_8)", "http://dbpedia.org/resource/I'm_Married_to_a...", "http://dbpedia.org/resource/I_Hate_My_30's", "http://dbpedia.org/resource/I_Know_My_Kid's_a_Star", "http://dbpedia.org/resource/I_Love_Money", "http://dbpedia.org/resource/I_Love_Money_(season_1)", "http://dbpedia.org/resource/I_Love_Money_(season_2)", "http://dbpedia.org/resource/I_Love_Money_(season_4)", "http://dbpedia.org/resource/I_Love_New_York_(TV_series)", "http://dbpedia.org/resource/I_Love_New_York_(season_1)", "http://dbpedia.org/resource/I_Love_New_York_(season_2)", "http://dbpedia.org/resource/I_Want_to_Work_for_Diddy", "http://dbpedia.org/resource/I_Want_to_Work_for_Diddy_(season_1)", "http://dbpedia.org/resource/I_Want_to_Work_for_Diddy_2", "http://dbpedia.org/resource/Ice-T's_Rap_School", "http://dbpedia.org/resource/List_of_Hit_the_Floor_episodes", "http://dbpedia.org/resource/List_of_Scream_episodes", "http://dbpedia.org/resource/RuPaul's_Drag_Race", "http://dbpedia.org/resource/RuPaul's_Drag_Race:_Vegas_Revue", "http://dbpedia.org/resource/RuPaul's_Drag_Race_(season_10)", "http://dbpedia.org/resource/RuPaul's_Drag_Race_(season_11)", "http://dbpedia.org/resource/RuPaul's_Drag_Race_(season_12)", "http://dbpedia.org/resource/RuPaul's_Drag_Race_(season_13)", "http://dbpedia.org/resource/RuPaul's_Drag_Race_(season_14)", "http://dbpedia.org/resource/RuPaul's_Drag_Race_(season_9)", "http://dbpedia.org/resource/RuPaul's_Drag_Race_All_Stars_(season_2)", "http://dbpedia.org/resource/RuPaul's_Drag_Race_All_Stars_(season_3)", "http://dbpedia.org/resource/RuPaul's_Drag_Race_All_Stars_(season_4)", "http://dbpedia.org/resource/RuPaul's_Drag_Race_All_Stars_(season_5)", "http://dbpedia.org/resource/RuPaul's_Drag_Race_Holi-slay_Spectacular", "http://dbpedia.org/resource/RuPaul's_Secret_Celebrity_Drag_Race", "http://dbpedia.org/resource/RuPaul's_Secret_Celebrity_Drag_Race_(season_1)", "http://dbpedia.org/resource/RuPaul's_Secret_Celebrity_Drag_Race_(season_2)", "http://dbpedia.org/resource/Rumor_Has_It_(game_show)", "http://dbpedia.org/resource/VH1_Big_in_'06_Awards", "http://dbpedia.org/resource/You're_Cut_Off!", "http://dbpedia.org/resource/\u00a1Viva_Hollywood!", "http://dbpedia.org/resource/American_Casino", "http://dbpedia.org/resource/American_Chopper", "http://dbpedia.org/resource/American_Hot_Rod", "http://dbpedia.org/resource/Amish_Mafia", "http://dbpedia.org/resource/Ancient_Warriors", "http://dbpedia.org/resource/Dangerous_Flights", "http://dbpedia.org/resource/Deadliest_Catch", "http://dbpedia.org/resource/Deadliest_Catch:_Bloodline", "http://dbpedia.org/resource/Deadliest_Catch_(season_6)", "http://dbpedia.org/resource/Deadly_Women", "http://dbpedia.org/resource/Valley_of_the_T._rex", "http://dbpedia.org/resource/Desert_Car_Kings", "http://dbpedia.org/resource/Destroyed_in_Seconds", "http://dbpedia.org/resource/Dinosaur_Planet_(TV_series)", "http://dbpedia.org/resource/Dinosaur_Revolution", "http://dbpedia.org/resource/Dirty_Jobs", "http://dbpedia.org/resource/Dirty_Money_(2011_TV_series)", "http://dbpedia.org/resource/Discovery_Atlas", "http://dbpedia.org/resource/Airplane_Repo", "http://dbpedia.org/resource/Alaska:_The_Last_Frontier", "http://dbpedia.org/resource/Alien_Planet", "http://dbpedia.org/resource/Auction_Kings", "http://dbpedia.org/resource/Before_We_Ruled_the_Earth", "http://dbpedia.org/resource/Belief_(TV_series)", "http://dbpedia.org/resource/Bering_Sea_Gold", "http://dbpedia.org/resource/Fugitive_Strike_Force", "http://dbpedia.org/resource/Future_Weapons", "http://dbpedia.org/resource/Galapagos:_Beyond_Darwin", "http://dbpedia.org/resource/Harley_and_the_Davidsons", "http://dbpedia.org/resource/Swords_(TV_series)", "http://dbpedia.org/resource/Taking_On_Tyson", "http://dbpedia.org/resource/Weaponology", "http://dbpedia.org/resource/Weed_Country", "http://dbpedia.org/resource/Weed_Wars", "http://dbpedia.org/resource/Wheeler_Dealers", "http://dbpedia.org/resource/When_Dinosaurs_Roamed_America", "http://dbpedia.org/resource/When_We_Left_Earth:_The_NASA_Missions", "http://dbpedia.org/resource/Animal_Face-Off", "http://dbpedia.org/resource/Everest:_Beyond_the_Limit", "http://dbpedia.org/resource/Gold_Rush:_White_Water", "http://dbpedia.org/resource/Gold_Rush_(TV_series)", "http://dbpedia.org/resource/PitchMen", "http://dbpedia.org/resource/Pot_Cops", "http://dbpedia.org/resource/Unchained_Reaction", "http://dbpedia.org/resource/Undercover_Billionaire", "http://dbpedia.org/resource/Unsolved_History", "http://dbpedia.org/resource/Bounty_Wars", "http://dbpedia.org/resource/Killing_Fields_(TV_series)", "http://dbpedia.org/resource/Mega_Builders", "http://dbpedia.org/resource/Really_Big_Things", "http://dbpedia.org/resource/The_Colony_(American_season_1)", "http://dbpedia.org/resource/The_Colony_(American_season_2)", "http://dbpedia.org/resource/The_FBI_Files", "http://dbpedia.org/resource/The_Future_Is_Wild", "http://dbpedia.org/resource/The_Garage_(TV_series)", "http://dbpedia.org/resource/The_New_Detectives", "http://dbpedia.org/resource/The_Next_Step_(American_TV_program)", "http://dbpedia.org/resource/9/11:_The_Twin_Towers", "http://dbpedia.org/resource/North_America_(TV_series)", "http://dbpedia.org/resource/Ocean_of_Fear", "http://dbpedia.org/resource/Clash_of_the_Dinosaurs", "http://dbpedia.org/resource/Construction_Intervention", "http://dbpedia.org/resource/BattleBots_(season_10)", "http://dbpedia.org/resource/BattleBots_(season_11)", "http://dbpedia.org/resource/BattleBots_(season_8)", "http://dbpedia.org/resource/BattleBots_(season_9)", "http://dbpedia.org/resource/Inside_West_Coast_Customs", "http://dbpedia.org/resource/Into_the_Universe_with_Stephen_Hawking", "http://dbpedia.org/resource/Into_the_Unknown_with_Josh_Bernstein", "http://dbpedia.org/resource/Monster_House_(American_TV_series)", "http://dbpedia.org/resource/Moonshiners_(TV_series)", "http://dbpedia.org/resource/Most_Evil", "http://dbpedia.org/resource/Motor_City_Motors", "http://dbpedia.org/resource/MythBusters_(2003_season)", "http://dbpedia.org/resource/MythBusters_(2004_season)", "http://dbpedia.org/resource/MythBusters_(2005_season)", "http://dbpedia.org/resource/MythBusters_(2006_season)", "http://dbpedia.org/resource/MythBusters_(2007_season)", "http://dbpedia.org/resource/MythBusters_(2008_season)", "http://dbpedia.org/resource/MythBusters_(2009_season)", "http://dbpedia.org/resource/MythBusters_(2010_season)", "http://dbpedia.org/resource/MythBusters_(2011_season)", "http://dbpedia.org/resource/MythBusters_(2012_season)", "http://dbpedia.org/resource/MythBusters_(2013_season)", "http://dbpedia.org/resource/MythBusters_(2014_season)", "http://dbpedia.org/resource/MythBusters_(2015_season)", "http://dbpedia.org/resource/MythBusters_(2016_season)", "http://dbpedia.org/resource/Treasure_Quest:_Snake_Island", "http://dbpedia.org/resource/Treasure_Quest_(TV_series)", "http://dbpedia.org/resource/A_Baby_Story", "http://dbpedia.org/resource/A_Makeover_Story", "http://dbpedia.org/resource/Chasing_Zero:_Winning_the_War_on_Healthcare_Harm", "http://dbpedia.org/resource/Surfing_the_Healthcare_Tsunami", "http://dbpedia.org/resource/Surgery_Saved_My_Life", "http://dbpedia.org/resource/Surviving_the_Cut", "http://dbpedia.org/resource/Cash_Cab_(American_game_show)", "http://dbpedia.org/resource/How_Beer_Saved_the_World", "http://dbpedia.org/resource/How_Booze_Built_America", "http://dbpedia.org/resource/How_Do_They_Do_It%3F", "http://dbpedia.org/resource/Howe_&_Howe_Tech", "http://dbpedia.org/resource/La_estaci\u00f3n_de_la_Calle_Olvera", "http://dbpedia.org/resource/Dual_Survival", "http://dbpedia.org/resource/Cocktail_Kings", "http://dbpedia.org/resource/Smash_Lab", "http://dbpedia.org/resource/Some_Assembly_Required_(2007_TV_series)", "http://dbpedia.org/resource/Curiosity_(TV_series)", "http://dbpedia.org/resource/Great_Books_(TV_program)", "http://dbpedia.org/resource/Heirs_to_the_Dare", "http://dbpedia.org/resource/Highway_Thru_Hell", "http://dbpedia.org/resource/Hiroshima:_BBC_History_of_World_War_II", "http://dbpedia.org/resource/Man_vs._Wild", "http://dbpedia.org/resource/Manhunt_(2017_TV_series)", "http://dbpedia.org/resource/Fight_Quest", "http://dbpedia.org/resource/Final_24", "http://dbpedia.org/resource/Firehouse_USA:_Boston", "http://dbpedia.org/resource/Flying_Wild_Alaska", "http://dbpedia.org/resource/Natural_History_of_an_Alien", "http://dbpedia.org/resource/Never_Ever_Do_This_at_Home", "http://dbpedia.org/resource/Penn_&_Teller_Tell_a_Lie", "http://dbpedia.org/resource/Tickle_(TV_series)", "http://dbpedia.org/resource/Time_Warp_(TV_series)", "http://dbpedia.org/resource/Wreckreation_Nation", "http://dbpedia.org/resource/Egypt's_Ten_Greatest_Discoveries", "http://dbpedia.org/resource/Jungle_Gold", "http://dbpedia.org/resource/Lords_of_the_Car_Hoards", "http://dbpedia.org/resource/Off_Road_with_Gul_Panag", "http://dbpedia.org/resource/One_Man_Army_(TV_series)", "http://dbpedia.org/resource/Out_of_the_Wild", "http://dbpedia.org/resource/Shackleton:_Death_or_Glory", "http://dbpedia.org/resource/Big_Giant_Swords", "http://dbpedia.org/resource/Biker_Build-Off", "http://dbpedia.org/resource/I_Shouldn't_Be_Alive", "http://dbpedia.org/resource/Iditarod:_Toughest_Race_on_Earth", "http://dbpedia.org/resource/Klondike_(miniseries)", "http://dbpedia.org/resource/List_of_MythBusters_pilot_episodes", "http://dbpedia.org/resource/List_of_MythBusters_special_episodes", "http://dbpedia.org/resource/You_Spoof_Discovery", "http://dbpedia.org/resource/Alley_Cats_Strike", "http://dbpedia.org/resource/Amazing_Animals", "http://dbpedia.org/resource/American_Dragon:_Jake_Long", "http://dbpedia.org/resource/Amphibia_(TV_series)", "http://dbpedia.org/resource/Andi_Mack", "http://dbpedia.org/resource/Danger_Bay", "http://dbpedia.org/resource/Dave_the_Barbarian", "http://dbpedia.org/resource/Wander_Over_Yonder", "http://dbpedia.org/resource/Descendants_(2015_film)", "http://dbpedia.org/resource/Descendants_3", "http://dbpedia.org/resource/Disney_Channel_Games", "http://dbpedia.org/resource/Disney_Channel_in_Concert", "http://dbpedia.org/resource/Disney_Fam_Jam", "http://dbpedia.org/resource/Disney_Family_Album", "http://dbpedia.org/resource/Austin_&_Ally", "http://dbpedia.org/resource/Avalon_High_(film)", "http://dbpedia.org/resource/Best_Friends_Whenever", "http://dbpedia.org/resource/Freaky_Friday_(2018_film)", "http://dbpedia.org/resource/Frenemies_(film)", "http://dbpedia.org/resource/Full-Court_Miracle", "http://dbpedia.org/resource/Gabby_Duran_&_the_Unsittables", "http://dbpedia.org/resource/Geek_Charming", "http://dbpedia.org/resource/Genius_(1999_film)", "http://dbpedia.org/resource/Halloweentown_(film)", "http://dbpedia.org/resource/Halloweentown_High", "http://dbpedia.org/resource/Halloweentown_II:_Kalabar's_Revenge", "http://dbpedia.org/resource/Hamster_&_Gretel", "http://dbpedia.org/resource/Hannah_Montana_(season_1)", "http://dbpedia.org/resource/Hannah_Montana_(season_2)", "http://dbpedia.org/resource/Hannah_Montana_(season_3)", "http://dbpedia.org/resource/Hannah_Montana_(season_4)", "http://dbpedia.org/resource/Happy_Monster_Band", "http://dbpedia.org/resource/Harriet_the_Spy:_Blog_Wars", "http://dbpedia.org/resource/Have_a_Laugh!", "http://dbpedia.org/resource/Sydney_to_the_Max", "http://dbpedia.org/resource/T.O.T.S.", "http://dbpedia.org/resource/Tangled:_Before_Ever_After", "http://dbpedia.org/resource/Tangled:_The_Series_(season_1)", "http://dbpedia.org/resource/Tasty_Time_with_ZeFronk", "http://dbpedia.org/resource/Teen_Beach_2", "http://dbpedia.org/resource/Teen_Beach_Movie", "http://dbpedia.org/resource/We_Wish_You_a_Merry_Walrus", "http://dbpedia.org/resource/Welcome_to_Pooh_Corner", "http://dbpedia.org/resource/Wendy_Wu:_Homecoming_Warrior", "http://dbpedia.org/resource/Where's_My_Water%3F:_Swampy's_Underground_Adventures", "http://dbpedia.org/resource/'Twas_the_Night", "http://dbpedia.org/resource/1001_Nights_(TV_series)", "http://dbpedia.org/resource/Anne_of_Green_Gables:_The_Sequel", "http://dbpedia.org/resource/Even_Stevens", "http://dbpedia.org/resource/Get_a_Clue", "http://dbpedia.org/resource/Girl_Meets_World", "http://dbpedia.org/resource/Girl_vs._Monster", "http://dbpedia.org/resource/Go_Away,_Unicorn!", "http://dbpedia.org/resource/Go_Figure_(film)", "http://dbpedia.org/resource/Going_to_the_Mat", "http://dbpedia.org/resource/Gone_Are_the_Dayes", "http://dbpedia.org/resource/Good_Luck_Charlie", "http://dbpedia.org/resource/Good_Luck_Charlie,_It's_Christmas!", "http://dbpedia.org/resource/Good_Morning,_Miss_Bliss", "http://dbpedia.org/resource/Gotta_Kick_It_Up!", "http://dbpedia.org/resource/Marvel's_Moon_Girl_and_Devil_Dinosaur", "http://dbpedia.org/resource/Marvel_Super_Hero_Adventures", "http://dbpedia.org/resource/Pixel_Perfect", "http://dbpedia.org/resource/Pixie_Hollow_Bake_Off", "http://dbpedia.org/resource/Pixie_Hollow_Games", "http://dbpedia.org/resource/Princess_Protection_Program", "http://dbpedia.org/resource/That's_So_Raven", "http://dbpedia.org/resource/That's_So_Raven_(season_1)", "http://dbpedia.org/resource/That's_So_Raven_(season_2)", "http://dbpedia.org/resource/That's_So_Raven_(season_3)", "http://dbpedia.org/resource/That's_So_Raven_(season_4)", "http://dbpedia.org/resource/The_Buzz_on_Maggie", "http://dbpedia.org/resource/The_Cheetah_Girls:_One_World", "http://dbpedia.org/resource/The_Cheetah_Girls_(film)", "http://dbpedia.org/resource/The_Cheetah_Girls_2", "http://dbpedia.org/resource/Ultra_Violet_&_Black_Scorpion", "http://dbpedia.org/resource/Under_Wraps_(film)", "http://dbpedia.org/resource/Up,_Up_and_Away_(film)", "http://dbpedia.org/resource/Upside-Down_Magic_(film)", "http://dbpedia.org/resource/Booker_(1984_film)", "http://dbpedia.org/resource/Brandy_&_Mr._Whiskers", "http://dbpedia.org/resource/Brian_O'Brian", "http://dbpedia.org/resource/Brink!", "http://dbpedia.org/resource/Jake_and_the_Never_Land_Pirates", "http://dbpedia.org/resource/Kim_Possible", "http://dbpedia.org/resource/Kim_Possible:_A_Sitch_in_Time", "http://dbpedia.org/resource/Kim_Possible_(film)", "http://dbpedia.org/resource/Kim_Possible_Movie:_So_the_Drama", "http://dbpedia.org/resource/Rapunzel's_Tangled_Adventure", "http://dbpedia.org/resource/Rapunzel's_Tangled_Adventure_(season_2)", "http://dbpedia.org/resource/Rapunzel's_Tangled_Adventure_(season_3)", "http://dbpedia.org/resource/Raven's_Home", "http://dbpedia.org/resource/Read_It_and_Weep", "http://dbpedia.org/resource/Ready_to_Run_(film)", "http://dbpedia.org/resource/Return_to_Halloweentown", "http://dbpedia.org/resource/The_Color_of_Friendship", "http://dbpedia.org/resource/The_Ernest_Green_Story", "http://dbpedia.org/resource/The_Even_Stevens_Movie", "http://dbpedia.org/resource/The_Famous_Jett_Jackson", "http://dbpedia.org/resource/The_Ghost_and_Molly_McGee", "http://dbpedia.org/resource/The_Jennie_Project", "http://dbpedia.org/resource/The_Jersey", "http://dbpedia.org/resource/The_Kids_of_Degrassi_Street", "http://dbpedia.org/resource/The_New_Leave_It_to_Beaver", "http://dbpedia.org/resource/The_Other_Me", "http://dbpedia.org/resource/The_Owl_House", "http://dbpedia.org/resource/The_Parent_Trap_II", "http://dbpedia.org/resource/The_Poof_Point", "http://dbpedia.org/resource/The_Proud_Family", "http://dbpedia.org/resource/The_Proud_Family_Movie", "http://dbpedia.org/resource/The_Replacements_(TV_series)", "http://dbpedia.org/resource/The_Scream_Team", "http://dbpedia.org/resource/The_Secret_of_Lost_Creek", "http://dbpedia.org/resource/The_Suite_Life_Movie", "http://dbpedia.org/resource/The_Suite_Life_of_Zack_&_Cody", "http://dbpedia.org/resource/The_Suite_Life_of_Zack_&_Cody_(season_1)", "http://dbpedia.org/resource/The_Suite_Life_of_Zack_&_Cody_(season_2)", "http://dbpedia.org/resource/The_Suite_Life_of_Zack_&_Cody_(season_3)", "http://dbpedia.org/resource/The_Suite_Life_on_Deck", "http://dbpedia.org/resource/The_Thirteenth_Year", "http://dbpedia.org/resource/The_Ultimate_Christmas_Present", "http://dbpedia.org/resource/The_Villains_of_Valley_View", "http://dbpedia.org/resource/The_Wizards_Return:_Alex_vs._Alex", "http://dbpedia.org/resource/A.N.T._Farm", "http://dbpedia.org/resource/Clifford_the_Big_Red_Dog_(2000_TV_series)", "http://dbpedia.org/resource/Cloud_9_(2014_film)", "http://dbpedia.org/resource/Club_Penguin:_Monster_Beach_Party", "http://dbpedia.org/resource/Contraption_(game_show)", "http://dbpedia.org/resource/Coop_&_Cami_Ask_the_World", "http://dbpedia.org/resource/Johnny_Kapahala:_Back_on_Board", "http://dbpedia.org/resource/Johnny_Tsunami", "http://dbpedia.org/resource/Jonas_(season_1)", "http://dbpedia.org/resource/Jonas_(season_2)", "http://dbpedia.org/resource/Jonas_Brothers:_Living_the_Dream", "http://dbpedia.org/resource/Secrets_of_Sulphur_Springs", "http://dbpedia.org/resource/Back_Home_(film)", "http://dbpedia.org/resource/Back_to_Hannibal:_The_Return_of_Tom_Sawyer_and_Huckleberry_Finn", "http://dbpedia.org/resource/Bad_Hair_Day_(film)", "http://dbpedia.org/resource/Invisible_Sister", "http://dbpedia.org/resource/Molly:_An_American_Girl_on_the_Home_Front", "http://dbpedia.org/resource/Mom's_Got_a_Date_with_a_Vampire", "http://dbpedia.org/resource/Motocrossed", "http://dbpedia.org/resource/My_Little_Pony_Tales", "http://dbpedia.org/resource/Totally_Circus", "http://dbpedia.org/resource/Totally_Hoops", "http://dbpedia.org/resource/Totally_in_Tune", "http://dbpedia.org/resource/Toy_Story_Toons", "http://dbpedia.org/resource/Tru_Confessions", "http://dbpedia.org/resource/Twitches_(film)", "http://dbpedia.org/resource/Twitches_Too", "http://dbpedia.org/resource/A_Friendship_in_Vienna", "http://dbpedia.org/resource/A_Ring_of_Endless_Light_(film)", "http://dbpedia.org/resource/Adventures_in_Babysitting_(2016_film)", "http://dbpedia.org/resource/2015_Radio_Disney_Music_Awards", "http://dbpedia.org/resource/2016_Radio_Disney_Music_Awards", "http://dbpedia.org/resource/Buffalo_Dreams", "http://dbpedia.org/resource/Bug_Juice", "http://dbpedia.org/resource/Bug_Juice:_My_Adventures_at_Camp", "http://dbpedia.org/resource/Bunk'd", "http://dbpedia.org/resource/Bus_Life", "http://dbpedia.org/resource/Camp_Rock", "http://dbpedia.org/resource/Camp_Rock_2:_The_Final_Jam", "http://dbpedia.org/resource/Can_You_Teach_My_Alligator_Manners%3F", "http://dbpedia.org/resource/Still_Not_Quite_Human", "http://dbpedia.org/resource/Stuck_in_the_Middle_(TV_series)", "http://dbpedia.org/resource/Stuck_in_the_Suburbs", "http://dbpedia.org/resource/Supa_Strikas_(TV_series)", "http://dbpedia.org/resource/Care_Bears_Nutcracker_Suite", "http://dbpedia.org/resource/Cars_Toons", "http://dbpedia.org/resource/Horse_Sense", "http://dbpedia.org/resource/Hounded_(film)", "http://dbpedia.org/resource/How_to_Build_a_Better_Boy", "http://dbpedia.org/resource/Dog_with_a_Blog", "http://dbpedia.org/resource/Don't_Look_Under_the_Bed", "http://dbpedia.org/resource/Double_Teamed", "http://dbpedia.org/resource/Dumbo's_Circus", "http://dbpedia.org/resource/Smart_House", "http://dbpedia.org/resource/So_Weird", "http://dbpedia.org/resource/Sofia_the_First", "http://dbpedia.org/resource/Sonny_with_a_Chance_(season_1)", "http://dbpedia.org/resource/Sonny_with_a_Chance_(season_2)", "http://dbpedia.org/resource/Lantern_Hill_(film)", "http://dbpedia.org/resource/2017_Radio_Disney_Music_Awards", "http://dbpedia.org/resource/2018_Radio_Disney_Music_Awards", "http://dbpedia.org/resource/2019_Radio_Disney_Music_Awards", "http://dbpedia.org/resource/Cory_in_the_House", "http://dbpedia.org/resource/Cow_Belles", "http://dbpedia.org/resource/Dadnapped", "http://dbpedia.org/resource/Gravity_Falls_(season_1)", "http://dbpedia.org/resource/Groundling_Marsh", "http://dbpedia.org/resource/High_School_Musical", "http://dbpedia.org/resource/High_School_Musical_2", "http://dbpedia.org/resource/Mad_Libs_(game_show)", "http://dbpedia.org/resource/Rip_Girls", "http://dbpedia.org/resource/Fast_Layne", "http://dbpedia.org/resource/Fireball_(TV_series)", "http://dbpedia.org/resource/Fish_Hooks", "http://dbpedia.org/resource/Jessie_(2011_TV_series)", "http://dbpedia.org/resource/Lemonade_Mouth_(film)", "http://dbpedia.org/resource/Let_It_Shine_(film)", "http://dbpedia.org/resource/List_of_American_Dragon:_Jake_Long_episodes", "http://dbpedia.org/resource/Nightjohn_(film)", "http://dbpedia.org/resource/Phantom_of_the_Megaplex", "http://dbpedia.org/resource/Phil_of_the_Future", "http://dbpedia.org/resource/Phineas_and_Ferb", "http://dbpedia.org/resource/Phineas_and_Ferb_(season_1)", "http://dbpedia.org/resource/Phineas_and_Ferb_(season_2)", "http://dbpedia.org/resource/Phineas_and_Ferb_(season_3)", "http://dbpedia.org/resource/Phineas_and_Ferb_(season_4)", "http://dbpedia.org/resource/Phineas_and_Ferb_the_Movie:_Across_the_2nd_Dimension", "http://dbpedia.org/resource/Quints", "http://dbpedia.org/resource/Radio_Disney_Music_Awards", "http://dbpedia.org/resource/Radio_Rebel", "http://dbpedia.org/resource/Tiger_Cruise_(film)", "http://dbpedia.org/resource/Tiger_Town", "http://dbpedia.org/resource/Win,_Lose_or_Draw_(2014_game_show)", "http://dbpedia.org/resource/Wizards_of_Waverly_Place:_The_Movie", "http://dbpedia.org/resource/Wizards_of_Waverly_Place_(season_1)", "http://dbpedia.org/resource/Wizards_of_Waverly_Place_(season_2)", "http://dbpedia.org/resource/Wizards_of_Waverly_Place_(season_3)", "http://dbpedia.org/resource/Wizards_of_Waverly_Place_(season_4)", "http://dbpedia.org/resource/Wunschpunsch", "http://dbpedia.org/resource/Elena_and_the_Secret_of_Avalor", "http://dbpedia.org/resource/Jump_In!", "http://dbpedia.org/resource/Jumping_Ship", "http://dbpedia.org/resource/Just_Roll_with_It", "http://dbpedia.org/resource/K.C._Undercover", "http://dbpedia.org/resource/Lots_of_Luck", "http://dbpedia.org/resource/Off_the_Wall_(game_show)", "http://dbpedia.org/resource/Shake_It_Up_(season_1)", "http://dbpedia.org/resource/Shake_It_Up_(season_2)", "http://dbpedia.org/resource/Shake_It_Up_(season_3)", "http://dbpedia.org/resource/Sharpay's_Fabulous_Adventure", "http://dbpedia.org/resource/Shorty_McShorts'_Shorts", "http://dbpedia.org/resource/Special_Agent_Oso_(series_1)", "http://dbpedia.org/resource/Spin_(2021_film)", "http://dbpedia.org/resource/Star_Wars_Resistance", "http://dbpedia.org/resource/Star_vs._the_Forces_of_Evil", "http://dbpedia.org/resource/Starstruck_(2010_film)", "http://dbpedia.org/resource/Big_City_Greens", "http://dbpedia.org/resource/Big_Hero_6:_The_Series", "http://dbpedia.org/resource/Bizaardvark", "http://dbpedia.org/resource/I_Didn't_Do_It_(TV_series)", "http://dbpedia.org/resource/List_of_Gravity_Falls_episodes", "http://dbpedia.org/resource/List_of_Lilo_&_Stitch:_The_Series_episodes", "http://dbpedia.org/resource/List_of_Milo_Murphy's_Law_episodes", "http://dbpedia.org/resource/List_of_Star_vs._the_Forces_of_Evil_episodes", "http://dbpedia.org/resource/Liv_and_Maddie", "http://dbpedia.org/resource/Mickey_Mouse_(TV_series)", "http://dbpedia.org/resource/Milo_Murphy's_Law", "http://dbpedia.org/resource/Minutemen_(film)", "http://dbpedia.org/resource/Miracle_in_Lane_2", "http://dbpedia.org/resource/P._King_Duckling", "http://dbpedia.org/resource/Pass_the_Plate", "http://dbpedia.org/resource/You_Lucky_Dog", "http://dbpedia.org/resource/You_Wish!_(film)", "http://dbpedia.org/resource/Zapped_(2014_film)", "http://dbpedia.org/resource/Zenon:_Girl_of_the_21st_Century_(film)", "http://dbpedia.org/resource/Zenon:_The_Zequel", "http://dbpedia.org/resource/Zenon:_Z3", "http://dbpedia.org/resource/Zombies_(2018_film)", "http://dbpedia.org/resource/Zombies_2", "http://dbpedia.org/resource/Violetta_(season_1)", "http://dbpedia.org/resource/Bia_(TV_series)", "http://dbpedia.org/resource/Bia_(season_1)", "http://dbpedia.org/resource/Bia_(season_2)", "http://dbpedia.org/resource/Juacas", "http://dbpedia.org/resource/Soy_Luna", "http://dbpedia.org/resource/Plim_Plim", "http://dbpedia.org/resource/Nivis,_amigos_de_otro_mundo", "http://dbpedia.org/resource/Morko_y_Mali", "http://dbpedia.org/resource/El_Jard\u00edn_de_Claril\u00fa", "http://dbpedia.org/resource/Currents_News", "http://dbpedia.org/resource/ICTHuS.eQ", "http://dbpedia.org/resource/Fox_UFC", "http://dbpedia.org/resource/Boxing_on_Fox", "http://dbpedia.org/resource/NASCAR_on_Fox", "http://dbpedia.org/resource/Super_Bowl_LIV", "http://dbpedia.org/resource/Asia's_Next_Top_Model", "http://dbpedia.org/resource/Asia's_Next_Top_Model_(season_6)", "http://dbpedia.org/resource/Beach_Girls_(American_TV_series)", "http://dbpedia.org/resource/5_@Home", "http://dbpedia.org/resource/Street_Food_Around_the_World", "http://dbpedia.org/resource/Ties_(TV_series)", "http://dbpedia.org/resource/Kalki's_Great_Escape", "http://dbpedia.org/resource/America's_Election_Headquarters", "http://dbpedia.org/resource/America's_News_Headquarters", "http://dbpedia.org/resource/America_Reports", "http://dbpedia.org/resource/War_Stories_with_Oliver_North", "http://dbpedia.org/resource/Fox_&_Friends", "http://dbpedia.org/resource/Fox_&_Friends_First", "http://dbpedia.org/resource/Fox_News_@_Night", "http://dbpedia.org/resource/Fox_News_Live", "http://dbpedia.org/resource/Fox_News_Specialists", "http://dbpedia.org/resource/Fox_News_Sunday", "http://dbpedia.org/resource/Hannity_&_Colmes", "http://dbpedia.org/resource/Happening_Now", "http://dbpedia.org/resource/Weekend_Live", "http://dbpedia.org/resource/Red_Eye_(talk_show)", "http://dbpedia.org/resource/The_Ingraham_Angle", "http://dbpedia.org/resource/The_Story_with_Martha_MacCallum", "http://dbpedia.org/resource/The_\u00bd_Hour_News_Hour", "http://dbpedia.org/resource/Tucker_Carlson_Tonight", "http://dbpedia.org/resource/Gutfeld!", "http://dbpedia.org/resource/Life,_Liberty_&_Levin", "http://dbpedia.org/resource/Justice_with_Judge_Jeanine", "http://dbpedia.org/resource/Outnumbered_(American_TV_program)", "http://dbpedia.org/resource/American_Ninja_Warrior_(season_1)", "http://dbpedia.org/resource/Happy_Tree_Friends", "http://dbpedia.org/resource/Filter_(TV_series)", "http://dbpedia.org/resource/Clash!", "http://dbpedia.org/resource/American_Dad!_(season_12)", "http://dbpedia.org/resource/WCW_All_Nighter", "http://dbpedia.org/resource/WCW_Main_Event", "http://dbpedia.org/resource/WCW_Power_Hour", "http://dbpedia.org/resource/WCW_Saturday_Night", "http://dbpedia.org/resource/WCW_Thunder", "http://dbpedia.org/resource/Atomic_Twister", "http://dbpedia.org/resource/Best_of_World_Championship_Wrestling", "http://dbpedia.org/resource/Full_Frontal_with_Samantha_Bee", "http://dbpedia.org/resource/G-Force:_Guardians_of_Space", "http://dbpedia.org/resource/Go-Big_Show", "http://dbpedia.org/resource/Braves_TBS_Baseball", "http://dbpedia.org/resource/Kid's_Beat", "http://dbpedia.org/resource/Red_Water", "http://dbpedia.org/resource/The_Last_O.G.", "http://dbpedia.org/resource/The_Misery_Index_(TV_series)", "http://dbpedia.org/resource/The_Real_Gilligan's_Island", "http://dbpedia.org/resource/The_Sims_Spark'd", "http://dbpedia.org/resource/2_Stupid_Dogs", "http://dbpedia.org/resource/AEW_Dynamite", "http://dbpedia.org/resource/2020_NBA_All-Star_Game", "http://dbpedia.org/resource/Conan_(talk_show)", "http://dbpedia.org/resource/Cooperstown_(film)", "http://dbpedia.org/resource/Search_Party_(TV_series)", "http://dbpedia.org/resource/NASCAR_on_TBS", "http://dbpedia.org/resource/NCAA_March_Madness_(TV_program)", "http://dbpedia.org/resource/Celebrity_Show-Off", "http://dbpedia.org/resource/Chad_(TV_series)", "http://dbpedia.org/resource/27th_Critics'_Choice_Awards", "http://dbpedia.org/resource/Major_League_Baseball_on_TBS", "http://dbpedia.org/resource/Ripley's_Believe_It_or_Not!_(2000_TV_series)", "http://dbpedia.org/resource/Final_Space", "http://dbpedia.org/resource/Neighbors_from_Hell", "http://dbpedia.org/resource/Night_Tracks", "http://dbpedia.org/resource/Wipeout_(2021_game_show)", "http://dbpedia.org/resource/Earth_to_America_(TV_special)", "http://dbpedia.org/resource/Starcade", "http://dbpedia.org/resource/List_of_Conan_episodes_(2010\u201311)", "http://dbpedia.org/resource/List_of_Conan_episodes_(2012)", "http://dbpedia.org/resource/List_of_Conan_episodes_(2013)", "http://dbpedia.org/resource/List_of_Conan_episodes_(2014)", "http://dbpedia.org/resource/List_of_Conan_episodes_(2015)", "http://dbpedia.org/resource/List_of_Conan_episodes_(2016)", "http://dbpedia.org/resource/List_of_Conan_episodes_(2017)", "http://dbpedia.org/resource/List_of_Conan_episodes_(2018)", "http://dbpedia.org/resource/List_of_Conan_episodes_(2019)", "http://dbpedia.org/resource/List_of_Conan_episodes_(2020)", "http://dbpedia.org/resource/List_of_Conan_episodes_(2021)", "http://dbpedia.org/resource/List_of_Final_Space_episodes", "http://dbpedia.org/resource/List_of_Tyler_Perry's_House_of_Payne_episodes", "http://dbpedia.org/resource/Minding_the_Store", "http://dbpedia.org/resource/All_About_Sex", "http://dbpedia.org/resource/Darcey_&_Stacey", "http://dbpedia.org/resource/Forensic_Files_(season_1)", "http://dbpedia.org/resource/Forensic_Files_(season_2)", "http://dbpedia.org/resource/Forensic_Files_(season_3)", "http://dbpedia.org/resource/Forensic_Files_(season_4)", "http://dbpedia.org/resource/Salty's_Lighthouse", "http://dbpedia.org/resource/Welcome_to_Myrtle_Manor", "http://dbpedia.org/resource/Who_Do_You_Think_You_Are%3F_(American_TV_series)", "http://dbpedia.org/resource/1000-lb_Sisters", "http://dbpedia.org/resource/Get_Your_Face_On", "http://dbpedia.org/resource/Ghost_Brothers", "http://dbpedia.org/resource/The_Family_Chantel", "http://dbpedia.org/resource/The_Paz_Show", "http://dbpedia.org/resource/The_Willis_Family", "http://dbpedia.org/resource/19_Kids_and_Counting", "http://dbpedia.org/resource/90_Day_Fianc\u00e9", "http://dbpedia.org/resource/Seeking_Sister_Wife", "http://dbpedia.org/resource/My_600-lb_Life", "http://dbpedia.org/resource/My_Big_Fat_Fabulous_Life", "http://dbpedia.org/resource/My_Husband's_Not_Gay", "http://dbpedia.org/resource/Too_Close_to_Home_(TV_series)", "http://dbpedia.org/resource/Buying_Naked", "http://dbpedia.org/resource/LA_Ink", "http://dbpedia.org/resource/Late_Night_Joy", "http://dbpedia.org/resource/Dragnificent!", "http://dbpedia.org/resource/Skinnamarink_TV", "http://dbpedia.org/resource/Counting_On", "http://dbpedia.org/resource/Gypsy_Sisters", "http://dbpedia.org/resource/Here_Comes_Honey_Boo_Boo", "http://dbpedia.org/resource/Hi-5_(American_TV_series)", "http://dbpedia.org/resource/Extreme_Cougar_Wives", "http://dbpedia.org/resource/List_of_A_Haunting_episodes", "http://dbpedia.org/resource/List_of_Cake_Boss_episodes", "http://dbpedia.org/resource/Next_Great_Baker_(season_4)", "http://dbpedia.org/resource/Ni_Ni's_Treehouse", "http://dbpedia.org/resource/Pete_Rose:_Hits_&_Mrs.", "http://dbpedia.org/resource/Toddlers_&_Tiaras", "http://dbpedia.org/resource/Earth's_Fury", "http://dbpedia.org/resource/Long_Island_Medium", "http://dbpedia.org/resource/Long_Lost_Family_(American_TV_series)", "http://dbpedia.org/resource/On_the_Fly", "http://dbpedia.org/resource/OutDaughtered", "http://dbpedia.org/resource/Kindred_Spirits_(TV_series)", "http://dbpedia.org/resource/Andersonville_(film)", "http://dbpedia.org/resource/Dallas_(2012_TV_series)", "http://dbpedia.org/resource/Dark_Blue_(TV_series)", "http://dbpedia.org/resource/WCW_Monday_Nitro", "http://dbpedia.org/resource/Wanted_(2005_TV_series)", "http://dbpedia.org/resource/Avenger_(film)", "http://dbpedia.org/resource/Hanna-Barbera's_50th:_A_Yabba_Dabba_Doo_Celebration", "http://dbpedia.org/resource/Hard_Time_(film)", "http://dbpedia.org/resource/Hawthorne_(TV_series)", "http://dbpedia.org/resource/Salem's_Lot_(2004_miniseries)", "http://dbpedia.org/resource/T_Bone_N_Weasel", "http://dbpedia.org/resource/Will_(TV_series)", "http://dbpedia.org/resource/10th_Screen_Actors_Guild_Awards", "http://dbpedia.org/resource/11th_Screen_Actors_Guild_Awards", "http://dbpedia.org/resource/14_Hours_(2005_film)", "http://dbpedia.org/resource/Animal_Farm_(1999_film)", "http://dbpedia.org/resource/Animal_Kingdom_(TV_series)", "http://dbpedia.org/resource/Gifted_Hands:_The_Ben_Carson_Story", "http://dbpedia.org/resource/Glory_&_Honor", "http://dbpedia.org/resource/Good_Behavior_(TV_series)", "http://dbpedia.org/resource/Pirates_of_Silicon_Valley", "http://dbpedia.org/resource/The_Alienist_(TV_series)", "http://dbpedia.org/resource/The_Avenging_Angel", "http://dbpedia.org/resource/James_Dean_(2001_film)", "http://dbpedia.org/resource/Keep_the_Change_(film)", "http://dbpedia.org/resource/Memphis_Beat", "http://dbpedia.org/resource/Men_of_a_Certain_Age", "http://dbpedia.org/resource/Raising_the_Bar_(2008_TV_series)", "http://dbpedia.org/resource/The_Closer", "http://dbpedia.org/resource/The_Company_(miniseries)", "http://dbpedia.org/resource/The_Goodbye_Girl_(2004_film)", "http://dbpedia.org/resource/The_Grid_(TV_serial)", "http://dbpedia.org/resource/The_Heidi_Chronicles_(film)", "http://dbpedia.org/resource/The_Last_Ship_(TV_series)", "http://dbpedia.org/resource/The_Librarian:_Curse_of_the_Judas_Chalice", "http://dbpedia.org/resource/The_Librarian:_Quest_for_the_Spear", "http://dbpedia.org/resource/The_Man_Who_Captured_Eichmann", "http://dbpedia.org/resource/The_Mists_of_Avalon_(miniseries)", "http://dbpedia.org/resource/The_Pretender:_Island_of_the_Haunted", "http://dbpedia.org/resource/The_Pretender_2001", "http://dbpedia.org/resource/The_Ron_Clark_Story", "http://dbpedia.org/resource/The_Rudy_and_Gogo_World_Famous_Cartoon_Show", "http://dbpedia.org/resource/The_Water_Engine_(film)", "http://dbpedia.org/resource/The_Winning_Season_(2004_film)", "http://dbpedia.org/resource/The_Wool_Cap", "http://dbpedia.org/resource/4th_Screen_Actors_Guild_Awards", "http://dbpedia.org/resource/5th_Screen_Actors_Guild_Awards", "http://dbpedia.org/resource/6th_Screen_Actors_Guild_Awards", "http://dbpedia.org/resource/7th_Screen_Actors_Guild_Awards", "http://dbpedia.org/resource/8th_Platino_Awards", "http://dbpedia.org/resource/8th_Screen_Actors_Guild_Awards", "http://dbpedia.org/resource/9th_Platino_Awards", "http://dbpedia.org/resource/9th_Screen_Actors_Guild_Awards", "http://dbpedia.org/resource/AEW_Battle_of_the_Belts", "http://dbpedia.org/resource/AEW_Rampage", "http://dbpedia.org/resource/Claws_(TV_series)", "http://dbpedia.org/resource/Conagher", "http://dbpedia.org/resource/Jonny_Quest_vs._The_Cyber_Insects", "http://dbpedia.org/resource/Saved_(TV_series)", "http://dbpedia.org/resource/Saving_Grace_(TV_series)", "http://dbpedia.org/resource/Babylon_5:_A_Call_to_Arms", "http://dbpedia.org/resource/Babylon_5:_In_the_Beginning", "http://dbpedia.org/resource/Babylon_5:_The_River_of_Souls", "http://dbpedia.org/resource/Babylon_5:_Thirdspace", "http://dbpedia.org/resource/Into_the_West_(miniseries)", "http://dbpedia.org/resource/Ivory_Hunters", "http://dbpedia.org/resource/Miss_Lettie_and_Me", "http://dbpedia.org/resource/Mob_City", "http://dbpedia.org/resource/Monday_Night_Mayhem", "http://dbpedia.org/resource/Monte_Walsh_(2003_film)", "http://dbpedia.org/resource/Murder_in_the_First_(TV_series)", "http://dbpedia.org/resource/NASCAR_on_TNT", "http://dbpedia.org/resource/NBA_on_TNT", "http://dbpedia.org/resource/Two_for_Texas", "http://dbpedia.org/resource/A_Christmas_Carol_(1999_film)", "http://dbpedia.org/resource/A_Perfect_Day_(2006_film)", "http://dbpedia.org/resource/Agent_X_(TV_series)", "http://dbpedia.org/resource/Buffalo_Soldiers_(1997_film)", "http://dbpedia.org/resource/Bull_(2000_TV_series)", "http://dbpedia.org/resource/CHiPs", "http://dbpedia.org/resource/Call_Me_Claus", "http://dbpedia.org/resource/Chernobyl:_The_Final_Warning", "http://dbpedia.org/resource/Chowdaheads", "http://dbpedia.org/resource/Hope_(1997_film)", "http://dbpedia.org/resource/L.A._Heat_(TV_series)", "http://dbpedia.org/resource/Snowpiercer_(TV_series)", "http://dbpedia.org/resource/Crossfire_Trail", "http://dbpedia.org/resource/Crusade_(TV_series)", "http://dbpedia.org/resource/Heartland_(2007_American_TV_series)", "http://dbpedia.org/resource/Major_Crimes_(TV_series)", "http://dbpedia.org/resource/Rizzoli_&_Isles", "http://dbpedia.org/resource/Falling_Skies_(season_1)", "http://dbpedia.org/resource/Falling_Skies_(season_2)", "http://dbpedia.org/resource/Falling_Skies_(season_3)", "http://dbpedia.org/resource/Falling_Skies_(season_4)", "http://dbpedia.org/resource/Falling_Skies_(season_5)", "http://dbpedia.org/resource/Legends_(TV_series)", "http://dbpedia.org/resource/Leverage_(American_TV_series)", "http://dbpedia.org/resource/Nightbreaker_(film)", "http://dbpedia.org/resource/Nightmares_&_Dreamscapes:_From_the_Stories_of_Stephen_King", "http://dbpedia.org/resource/Perception_(American_TV_series)", "http://dbpedia.org/resource/Proof_(2015_TV_series)", "http://dbpedia.org/resource/Purgatory_(1999_film)", "http://dbpedia.org/resource/Witchblade_(2001_TV_series)", "http://dbpedia.org/resource/Witchblade_(film)", "http://dbpedia.org/resource/Word_of_Honor_(2003_film)", "http://dbpedia.org/resource/X_Factor_(Brazilian_TV_series)", "http://dbpedia.org/resource/Ebenezer_(film)", "http://dbpedia.org/resource/On_the_Menu", "http://dbpedia.org/resource/Southland_(TV_series)", "http://dbpedia.org/resource/I_Am_the_Night_(TV_series)", "http://dbpedia.org/resource/King_of_Texas", "http://dbpedia.org/resource/List_of_Cold_Justice_episodes", "http://dbpedia.org/resource/Running_Mates_(2000_film)", "http://dbpedia.org/resource/You_Know_My_Name_(film)", "http://dbpedia.org/resource/Soccer_on_Turner_Sports", "http://dbpedia.org/resource/This_Week_in_Tech", "http://dbpedia.org/resource/Fresh_Gear", "http://dbpedia.org/resource/Internet_Tonight", "http://dbpedia.org/resource/Titans_of_Tech", "http://dbpedia.org/resource/Eye_Drops", "http://dbpedia.org/resource/Nerd_Nation", "http://dbpedia.org/resource/Wired_For_Sex", "http://dbpedia.org/resource/Stadium_College_Football", "http://dbpedia.org/resource/Foursome_(2006_TV_series)", "http://dbpedia.org/resource/Sam's_Game", "http://dbpedia.org/resource/Around_the_World_in_80_Babes", "http://dbpedia.org/resource/Playboy_Prime", "http://dbpedia.org/resource/Playboy_Shootout", "http://dbpedia.org/resource/Porno_Valley", "http://dbpedia.org/resource/15th_AVN_Awards", "http://dbpedia.org/resource/16th_AVN_Awards", "http://dbpedia.org/resource/Brooklyn_Kinda_Love", "http://dbpedia.org/resource/21st_AVN_Awards", "http://dbpedia.org/resource/22nd_AVN_Awards", "http://dbpedia.org/resource/23rd_AVN_Awards", "http://dbpedia.org/resource/24th_AVN_Awards", "http://dbpedia.org/resource/69_Sexy_Things_2_Do_Before_You_Die", "http://dbpedia.org/resource/Search_for_the_Perfect_Girlfriend", "http://dbpedia.org/resource/Money_Talks_(TV_series)", "http://dbpedia.org/resource/Totally_Busted", "http://dbpedia.org/resource/AVN_Awards", "http://dbpedia.org/resource/Adult_Film_Association_of_America", "http://dbpedia.org/resource/Canoga_Park_(TV_series)", "http://dbpedia.org/resource/E-Rotic_(TV_series)", "http://dbpedia.org/resource/Jenna's_American_Sex_Star", "http://dbpedia.org/resource/Naughty_Amateur_Home_Videos", "http://dbpedia.org/resource/Night_Calls", "http://dbpedia.org/resource/World_of_Playboy", "http://dbpedia.org/resource/Electric_Blue_(TV_series)", "http://dbpedia.org/resource/Sex_Court", "http://dbpedia.org/resource/Sexcetera", "http://dbpedia.org/resource/Show_Us_Your_Wits", "http://dbpedia.org/resource/King_of_Clubs_(TV_series)", "http://dbpedia.org/resource/Playboy_TV_Double_Features", "http://dbpedia.org/resource/42nd_Daytime_Emmy_Awards", "http://dbpedia.org/resource/51st_NAACP_Image_Awards", "http://dbpedia.org/resource/Swedish_Dicks", "http://dbpedia.org/resource/53rd_NAACP_Image_Awards", "http://dbpedia.org/resource/52nd_NAACP_Image_Awards", "http://dbpedia.org/resource/Queens_of_Drama", "http://dbpedia.org/resource/Impact!_(TV_series)", "http://dbpedia.org/resource/List_of_One_Day_at_a_Time_(2017_TV_series)_episodes", "http://dbpedia.org/resource/Pointman", "http://dbpedia.org/resource/Island_City_(1994_film)", "http://dbpedia.org/resource/Time_Trax", "http://dbpedia.org/resource/Kung_Fu:_The_Legend_Continues", "http://dbpedia.org/resource/Destination_Tennis", "http://dbpedia.org/resource/2010_Premios_Juventud", "http://dbpedia.org/resource/2011_Premios_Juventud", "http://dbpedia.org/resource/2012_Premios_Juventud", "http://dbpedia.org/resource/2013_Premios_Juventud", "http://dbpedia.org/resource/Amas_de_casa_desesperadas_(American_TV_series)", "http://dbpedia.org/resource/Premio_Lo_Nuestro_2012", "http://dbpedia.org/resource/Al_Punto", "http://dbpedia.org/resource/2020_Premios_Juventud", "http://dbpedia.org/resource/21st_Annual_Latin_Grammy_Awards", "http://dbpedia.org/resource/22nd_Annual_Latin_Grammy_Awards", "http://dbpedia.org/resource/23rd_Annual_Latin_Grammy_Awards", "http://dbpedia.org/resource/10th_Annual_Latin_Grammy_Awards", "http://dbpedia.org/resource/11th_Annual_Latin_Grammy_Awards", "http://dbpedia.org/resource/12th_Annual_Latin_Grammy_Awards", "http://dbpedia.org/resource/13th_Annual_Latin_Grammy_Awards", "http://dbpedia.org/resource/14th_Annual_Latin_Grammy_Awards", "http://dbpedia.org/resource/Eva_Luna_(TV_series)", "http://dbpedia.org/resource/Premio_Lo_Nuestro_2013", "http://dbpedia.org/resource/Premio_Lo_Nuestro_2014", "http://dbpedia.org/resource/Premio_Lo_Nuestro_2015", "http://dbpedia.org/resource/Premio_Lo_Nuestro_2016", "http://dbpedia.org/resource/Premio_Lo_Nuestro_2017", "http://dbpedia.org/resource/Primer_Impacto", "http://dbpedia.org/resource/Premio_Lo_Nuestro_2011", "http://dbpedia.org/resource/Premio_Lo_Nuestro_2010", "http://dbpedia.org/resource/15th_Annual_Latin_Grammy_Awards", "http://dbpedia.org/resource/16th_Annual_Latin_Grammy_Awards", "http://dbpedia.org/resource/Rep\u00fablica_Deportiva", "http://dbpedia.org/resource/17th_Annual_Latin_Grammy_Awards", "http://dbpedia.org/resource/18th_Annual_Latin_Grammy_Awards", "http://dbpedia.org/resource/2022_Premios_Juventud", "http://dbpedia.org/resource/20th_Annual_Latin_Grammy_Awards", "http://dbpedia.org/resource/2005_Premios_Juventud", "http://dbpedia.org/resource/2006_Premios_Juventud", "http://dbpedia.org/resource/2007_Premios_Juventud", "http://dbpedia.org/resource/2008_Premios_Juventud", "http://dbpedia.org/resource/2009_Premios_Juventud", "http://dbpedia.org/resource/Noticiero_Univision", "http://dbpedia.org/resource/Nuestra_Belleza_Latina_2007", "http://dbpedia.org/resource/Nuestra_Belleza_Latina_2008", "http://dbpedia.org/resource/Nuestra_Belleza_Latina_2009", "http://dbpedia.org/resource/Nuestra_Belleza_Latina_2010", "http://dbpedia.org/resource/Nuestra_Belleza_Latina_2011", "http://dbpedia.org/resource/Nuestra_Belleza_Latina_2012", "http://dbpedia.org/resource/Nuestra_Belleza_Latina_2013", "http://dbpedia.org/resource/Nuestra_Belleza_Latina_2014", "http://dbpedia.org/resource/Nuestra_Belleza_Latina_2015", "http://dbpedia.org/resource/Nuestra_Belleza_Latina_2016", "http://dbpedia.org/resource/Nuestra_Belleza_Latina_2018", "http://dbpedia.org/resource/Premio_Lo_Nuestro_2009", "http://dbpedia.org/resource/2021_Premios_Juventud", "http://dbpedia.org/resource/Selena_\u00a1VIVE!", "http://dbpedia.org/resource/Bailando_por_un_Sue\u00f1o_(Mexican_TV_series)", "http://dbpedia.org/resource/Trato_Hecho_(American_game_show)", "http://dbpedia.org/resource/Tu_cara_me_suena_(American_season_1)", "http://dbpedia.org/resource/A_Mill\u00f3n", "http://dbpedia.org/resource/2014_Premios_Juventud", "http://dbpedia.org/resource/2015_Premios_Juventud", "http://dbpedia.org/resource/2016_Premios_Juventud", "http://dbpedia.org/resource/Su_nombre_era_Dolores,_la_Jenn_que_yo_conoc\u00ed", "http://dbpedia.org/resource/6th_Annual_Latin_Grammy_Awards", "http://dbpedia.org/resource/7th_Annual_Latin_Grammy_Awards", "http://dbpedia.org/resource/8th_Annual_Latin_Grammy_Awards", "http://dbpedia.org/resource/9th_Annual_Latin_Grammy_Awards", "http://dbpedia.org/resource/La_Banda_(American_season_1)", "http://dbpedia.org/resource/La_Banda_(American_season_2)", "http://dbpedia.org/resource/La_Banda_(TV_series)", "http://dbpedia.org/resource/La_Piloto_(season_1)", "http://dbpedia.org/resource/La_fuerza_de_creer", "http://dbpedia.org/resource/La_gran_sorpresa", "http://dbpedia.org/resource/La_mujer_de_mi_vida", "http://dbpedia.org/resource/Latin_Grammy_Awards", "http://dbpedia.org/resource/Premio_Lo_Nuestro_2018", "http://dbpedia.org/resource/Premio_Lo_Nuestro_2019", "http://dbpedia.org/resource/Premio_Lo_Nuestro_2020", "http://dbpedia.org/resource/Premio_Lo_Nuestro_2021", "http://dbpedia.org/resource/Premio_Lo_Nuestro_2022", "http://dbpedia.org/resource/Don_Francisco_Presenta", "http://dbpedia.org/resource/Duro_Y_Directo", "http://dbpedia.org/resource/Premio_Lo_Nuestro_2007", "http://dbpedia.org/resource/19th_Annual_Latin_Grammy_Awards", "http://dbpedia.org/resource/2004_Premios_Juventud", "http://dbpedia.org/resource/2017_Premios_Juventud", "http://dbpedia.org/resource/2019_Premios_Juventud", "http://dbpedia.org/resource/Dale_Replay", "http://dbpedia.org/resource/Feliz!_(TV_program)", "http://dbpedia.org/resource/Jennifer_Lopez_Presents:_Como_Ama_una_Mujer", "http://dbpedia.org/resource/Lente_Loco", "http://dbpedia.org/resource/Q'Viva!_The_Chosen", "http://dbpedia.org/resource/Que_te_perdone_Dios", "http://dbpedia.org/resource/Yago_(TV_series)", "http://dbpedia.org/resource/El_Chapo_(TV_series)", "http://dbpedia.org/resource/El_Gordo_y_la_Flaca", "http://dbpedia.org/resource/El_hotel_de_los_secretos", "http://dbpedia.org/resource/Olvidarte_jam\u00e1s", "http://dbpedia.org/resource/List_of_El_Drag\u00f3n:_Return_of_a_Warrior_episodes", "http://dbpedia.org/resource/List_of_La_Piloto_episodes", "http://dbpedia.org/resource/Mira_qui\u00e9n_baila_(American_TV_series)", "http://dbpedia.org/resource/Mira_qui\u00e9n_baila_(season_1)", "http://dbpedia.org/resource/Mira_qui\u00e9n_baila_(season_2)", "http://dbpedia.org/resource/Mira_qui\u00e9n_baila_(season_3)", "http://dbpedia.org/resource/Mira_qui\u00e9n_baila_(season_4)", "http://dbpedia.org/resource/Mira_qui\u00e9n_baila_(season_5)", "http://dbpedia.org/resource/Mira_qui\u00e9n_baila_(season_7)", "http://dbpedia.org/resource/Mira_qui\u00e9n_baila_(season_8)", "http://dbpedia.org/resource/Mira_qui\u00e9n_baila_(season_9)", "http://dbpedia.org/resource/Rub\u00ed_(2020_TV_series)", "http://dbpedia.org/resource/\u00a1Despierta_Am\u00e9rica!", "http://dbpedia.org/resource/\u00a1Viva_el_Sue\u00f1o!", "http://dbpedia.org/resource/Premio_Lo_Nuestro_2006", "http://dbpedia.org/resource/Premio_Lo_Nuestro_2008", "http://dbpedia.org/resource/Saints_&_Sinners_(2016_TV_series)", "http://dbpedia.org/resource/Faith_Heist", "http://dbpedia.org/resource/Family_Time_(TV_series)", "http://dbpedia.org/resource/In_the_Cut_(TV_series)", "http://dbpedia.org/resource/PBC:_The_Next_Round", "http://dbpedia.org/resource/Vanderpump_Rules:_Jax_And_Brittany_Take_Kentucky", "http://dbpedia.org/resource/Vanderpump_Rules_After_Show", "http://dbpedia.org/resource/Dirty_John_(TV_series)", "http://dbpedia.org/resource/Married_to_Medicine:_Houston", "http://dbpedia.org/resource/Married_to_Medicine:_Los_Angeles", "http://dbpedia.org/resource/Porsha's_Family_Matters", "http://dbpedia.org/resource/Porsha's_Having_a_Baby", "http://dbpedia.org/resource/Texicanas", "http://dbpedia.org/resource/Breaking_News_(TV_series)", "http://dbpedia.org/resource/The_Real_Housewives_of_Atlanta", "http://dbpedia.org/resource/The_Real_Housewives_of_Beverly_Hills", "http://dbpedia.org/resource/The_Real_Housewives_of_Beverly_Hills_(season_10)", "http://dbpedia.org/resource/The_Real_Housewives_of_Beverly_Hills_(season_11)", "http://dbpedia.org/resource/The_Real_Housewives_of_Beverly_Hills_(season_12)", "http://dbpedia.org/resource/The_Real_Housewives_of_D.C.", "http://dbpedia.org/resource/The_Real_Housewives_of_Dallas", "http://dbpedia.org/resource/The_Real_Housewives_of_Dubai", "http://dbpedia.org/resource/The_Real_Housewives_of_Miami", "http://dbpedia.org/resource/The_Real_Housewives_of_New_Jersey", "http://dbpedia.org/resource/The_Real_Housewives_of_New_Jersey_(season_10)", "http://dbpedia.org/resource/The_Real_Housewives_of_New_Jersey_(season_11)", "http://dbpedia.org/resource/The_Real_Housewives_of_New_Jersey_(season_12)", "http://dbpedia.org/resource/The_Real_Housewives_of_New_York_City", "http://dbpedia.org/resource/The_Real_Housewives_of_New_York_City_(season_12)", "http://dbpedia.org/resource/The_Real_Housewives_of_New_York_City_(season_13)", "http://dbpedia.org/resource/The_Real_Housewives_of_Orange_County", "http://dbpedia.org/resource/The_Real_Housewives_of_Orange_County_(season_15)", "http://dbpedia.org/resource/The_Real_Housewives_of_Orange_County_(season_16)", "http://dbpedia.org/resource/The_Real_Housewives_of_Potomac", "http://dbpedia.org/resource/The_Real_Housewives_of_Potomac_(season_1)", "http://dbpedia.org/resource/The_Real_Housewives_of_Potomac_(season_2)", "http://dbpedia.org/resource/The_Real_Housewives_of_Potomac_(season_5)", "http://dbpedia.org/resource/The_Real_Housewives_of_Potomac_(season_6)", "http://dbpedia.org/resource/The_Real_Housewives_of_Salt_Lake_City", "http://dbpedia.org/resource/The_Real_Housewives_of_Salt_Lake_City_(season_2)", "http://dbpedia.org/resource/44th_People's_Choice_Awards", "http://dbpedia.org/resource/Top_Chef:_All-Stars", "http://dbpedia.org/resource/Top_Chef:_All-Stars_L.A.", "http://dbpedia.org/resource/Top_Chef:_Boston", "http://dbpedia.org/resource/Top_Chef:_California", "http://dbpedia.org/resource/Top_Chef:_Charleston", "http://dbpedia.org/resource/Top_Chef:_Chicago", "http://dbpedia.org/resource/Top_Chef:_Colorado", "http://dbpedia.org/resource/Top_Chef:_D.C.", "http://dbpedia.org/resource/Top_Chef:_Houston", "http://dbpedia.org/resource/Top_Chef:_Kentucky", "http://dbpedia.org/resource/Top_Chef:_Las_Vegas", "http://dbpedia.org/resource/Top_Chef:_Los_Angeles", "http://dbpedia.org/resource/Top_Chef:_Miami", "http://dbpedia.org/resource/Top_Chef:_New_Orleans", "http://dbpedia.org/resource/Top_Chef:_New_York", "http://dbpedia.org/resource/Top_Chef:_Portland", "http://dbpedia.org/resource/Top_Chef:_San_Francisco", "http://dbpedia.org/resource/Top_Chef:_Seattle", "http://dbpedia.org/resource/Top_Chef:_Texas", "http://dbpedia.org/resource/Top_Chef:_World_All-Stars", "http://dbpedia.org/resource/Xscape:_Still_Kickin'_It", "http://dbpedia.org/resource/Kandi_&_The_Gang", "http://dbpedia.org/resource/Kandi_Koated_Nights", "http://dbpedia.org/resource/Gordon_Center_for_Medical_Imaging", "http://dbpedia.org/resource/Athinoula_A._Martinos_Center_for_Biomedical_Imaging", "http://dbpedia.org/resource/The_Happy_Prince_(1974_film)", "http://dbpedia.org/resource/WRRD_(FM)", "http://dbpedia.org/resource/Motorz_TV", "http://dbpedia.org/resource/State_of_the_Culture", "http://dbpedia.org/resource/The_Dan_Patrick_Show", "http://dbpedia.org/resource/AT&T_SportsNet_Pittsburgh", "http://dbpedia.org/resource/AT&T_SportsNet_Rocky_Mountain", "http://dbpedia.org/resource/AT&T_SportsNet_Southwest", "http://dbpedia.org/resource/Root_Sports_Northwest", "http://dbpedia.org/resource/Kevin_Eschenfelder", "http://dbpedia.org/resource/Model_Latina", "http://dbpedia.org/resource/Operation_Osmin", "http://dbpedia.org/resource/Alternatino_with_Arturo_Castro", "http://dbpedia.org/resource/American_Body_Shop", "http://dbpedia.org/resource/Viva_Variety", "http://dbpedia.org/resource/Vs._(game_show)", "http://dbpedia.org/resource/Wanda_Does_It", "http://dbpedia.org/resource/Demetri_Martin._Person.", "http://dbpedia.org/resource/Detroiters_(TV_series)", "http://dbpedia.org/resource/Atom_TV", "http://dbpedia.org/resource/Awkwafina_Is_Nora_from_Queens", "http://dbpedia.org/resource/Frank_Leaves_for_the_Orient", "http://dbpedia.org/resource/Freak_Show_(TV_series)", "http://dbpedia.org/resource/Futurama", "http://dbpedia.org/resource/Futurama_(season_5)", "http://dbpedia.org/resource/Futurama_(season_6)", "http://dbpedia.org/resource/Futurama_(season_7)", "http://dbpedia.org/resource/Gabriel_Iglesias_Presents_Stand_Up_Revolution", "http://dbpedia.org/resource/Gamekings", "http://dbpedia.org/resource/Halfway_Home_(TV_series)", "http://dbpedia.org/resource/TV_Funhouse", "http://dbpedia.org/resource/List_of_The_Colbert_Report_episodes_(2007)", "http://dbpedia.org/resource/List_of_The_Colbert_Report_episodes_(2009)", "http://dbpedia.org/resource/List_of_The_Colbert_Report_episodes_(2010)", "http://dbpedia.org/resource/List_of_The_Colbert_Report_episodes_(2011)", "http://dbpedia.org/resource/List_of_The_Colbert_Report_episodes_(2012)", "http://dbpedia.org/resource/List_of_The_Colbert_Report_episodes_(2013)", "http://dbpedia.org/resource/List_of_The_Daily_Show_episodes_(1996)", "http://dbpedia.org/resource/List_of_The_Daily_Show_episodes_(1997)", "http://dbpedia.org/resource/List_of_The_Daily_Show_episodes_(1998)", "http://dbpedia.org/resource/List_of_The_Daily_Show_episodes_(1999)", "http://dbpedia.org/resource/List_of_The_Daily_Show_episodes_(2000)", "http://dbpedia.org/resource/List_of_The_Daily_Show_episodes_(2001)", "http://dbpedia.org/resource/List_of_The_Daily_Show_episodes_(2002)", "http://dbpedia.org/resource/List_of_The_Daily_Show_episodes_(2003)", "http://dbpedia.org/resource/List_of_The_Daily_Show_episodes_(2004)", "http://dbpedia.org/resource/List_of_The_Daily_Show_episodes_(2005)", "http://dbpedia.org/resource/List_of_The_Daily_Show_episodes_(2006)", "http://dbpedia.org/resource/List_of_The_Daily_Show_episodes_(2007)", "http://dbpedia.org/resource/List_of_The_Daily_Show_episodes_(2008)", "http://dbpedia.org/resource/List_of_The_Daily_Show_episodes_(2009)", "http://dbpedia.org/resource/List_of_The_Daily_Show_episodes_(2010)", "http://dbpedia.org/resource/List_of_The_Daily_Show_episodes_(2011)", "http://dbpedia.org/resource/List_of_The_Daily_Show_episodes_(2012)", "http://dbpedia.org/resource/Epitome_of_Hyperbole", "http://dbpedia.org/resource/Gerhard_Reinke's_Wanderlust", "http://dbpedia.org/resource/Premium_Blend", "http://dbpedia.org/resource/The_Benson_Interruption", "http://dbpedia.org/resource/Upright_Citizens_Brigade_(TV_series)", "http://dbpedia.org/resource/Brickleberry", "http://dbpedia.org/resource/Broad_City", "http://dbpedia.org/resource/Broad_City_(season_1)", "http://dbpedia.org/resource/Key_&_Peele", "http://dbpedia.org/resource/Reality_Bites_Back", "http://dbpedia.org/resource/The_Colbert_Report", "http://dbpedia.org/resource/The_Comedy_Jam", "http://dbpedia.org/resource/The_Daily_Show", "http://dbpedia.org/resource/The_Gong_Show_with_Dave_Attell", "http://dbpedia.org/resource/The_High_Court_with_Doug_Benson", "http://dbpedia.org/resource/The_Jeselnik_Offensive", "http://dbpedia.org/resource/The_Man_Show", "http://dbpedia.org/resource/The_News_Hole", "http://dbpedia.org/resource/The_Nightly_Show_with_Larry_Wilmore", "http://dbpedia.org/resource/The_Opposition_with_Jordan_Klepper", "http://dbpedia.org/resource/The_Other_Two", "http://dbpedia.org/resource/The_President_Show", "http://dbpedia.org/resource/The_Sarah_Silverman_Program", "http://dbpedia.org/resource/The_Showbiz_Show_with_David_Spade", "http://dbpedia.org/resource/6_Days_to_Air", "http://dbpedia.org/resource/Not_Safe_with_Nikki_Glaser", "http://dbpedia.org/resource/Comedy_Central_Roast", "http://dbpedia.org/resource/Comedy_Central_Stand-Up_Presents", "http://dbpedia.org/resource/Secret_Girlfriend", "http://dbpedia.org/resource/BET_Awards_2017", "http://dbpedia.org/resource/BattleBots_(season_1)", "http://dbpedia.org/resource/Insomniac_with_Dave_Attell", "http://dbpedia.org/resource/Comedy_Central_(British_TV_channel)", "http://dbpedia.org/resource/Comedy_Central_(Swedish_TV_channel)", "http://dbpedia.org/resource/Too_Late_with_Adam_Carolla", "http://dbpedia.org/resource/Tough_Crowd_with_Colin_Quinn", "http://dbpedia.org/resource/Typical_Rick", "http://dbpedia.org/resource/A_Colbert_Christmas:_The_Greatest_Gift_of_All!", "http://dbpedia.org/resource/Adam_Devine's_House_Party", "http://dbpedia.org/resource/Chappelle's_Show", "http://dbpedia.org/resource/Chocolate_News", "http://dbpedia.org/resource/Strangers_with_Candy", "http://dbpedia.org/resource/Strip_Mall", "http://dbpedia.org/resource/Hot_Comedy_Central", "http://dbpedia.org/resource/Dog_Bites_Man", "http://dbpedia.org/resource/Drawn_Together", "http://dbpedia.org/resource/Drunk_History", "http://dbpedia.org/resource/South_Park", "http://dbpedia.org/resource/South_Park_(season_1)", "http://dbpedia.org/resource/South_Park_(season_10)", "http://dbpedia.org/resource/South_Park_(season_11)", "http://dbpedia.org/resource/South_Park_(season_12)", "http://dbpedia.org/resource/South_Park_(season_13)", "http://dbpedia.org/resource/South_Park_(season_14)", "http://dbpedia.org/resource/South_Park_(season_15)", "http://dbpedia.org/resource/South_Park_(season_16)", "http://dbpedia.org/resource/South_Park_(season_17)", "http://dbpedia.org/resource/South_Park_(season_18)", "http://dbpedia.org/resource/South_Park_(season_19)", "http://dbpedia.org/resource/South_Park_(season_2)", "http://dbpedia.org/resource/South_Park_(season_20)", "http://dbpedia.org/resource/South_Park_(season_21)", "http://dbpedia.org/resource/South_Park_(season_22)", "http://dbpedia.org/resource/South_Park_(season_23)", "http://dbpedia.org/resource/South_Park_(season_24)", "http://dbpedia.org/resource/South_Park_(season_25)", "http://dbpedia.org/resource/South_Park_(season_3)", "http://dbpedia.org/resource/South_Park_(season_4)", "http://dbpedia.org/resource/South_Park_(season_5)", "http://dbpedia.org/resource/South_Park_(season_6)", "http://dbpedia.org/resource/South_Park_(season_7)", "http://dbpedia.org/resource/South_Park_(season_8)", "http://dbpedia.org/resource/South_Park_(season_9)", "http://dbpedia.org/resource/South_Side_(TV_series)", "http://dbpedia.org/resource/Crank_Yankers", "http://dbpedia.org/resource/Crossballs:_The_Debate_Show", "http://dbpedia.org/resource/Robbie_(TV_series)", "http://dbpedia.org/resource/Exit_57", "http://dbpedia.org/resource/Fairview_(TV_series)", "http://dbpedia.org/resource/Jeff_Ross_Presents_Roast_Battle", "http://dbpedia.org/resource/Lewis_Black's_Root_of_All_Evil", "http://dbpedia.org/resource/Lil'_Bush", "http://dbpedia.org/resource/List_of_@midnight_episodes_(2013\u201314)", "http://dbpedia.org/resource/List_of_@midnight_episodes_(2015)", "http://dbpedia.org/resource/List_of_@midnight_episodes_(2016)", "http://dbpedia.org/resource/List_of_@midnight_episodes_(2017)", "http://dbpedia.org/resource/Nick_Swardson's_Pretend_Time", "http://dbpedia.org/resource/This_Is_Not_Happening_(TV_series)", "http://dbpedia.org/resource/Time_Traveling_Bong", "http://dbpedia.org/resource/Win_Ben_Stein's_Money", "http://dbpedia.org/resource/Workaholics", "http://dbpedia.org/resource/Workaholics_(season_1)", "http://dbpedia.org/resource/Workaholics_(season_2)", "http://dbpedia.org/resource/Workaholics_(season_3)", "http://dbpedia.org/resource/Workaholics_(season_4)", "http://dbpedia.org/resource/Workaholics_(season_5)", "http://dbpedia.org/resource/Workaholics_(season_6)", "http://dbpedia.org/resource/Workaholics_(season_7)", "http://dbpedia.org/resource/Loafy", "http://dbpedia.org/resource/Onion_SportsDome", "http://dbpedia.org/resource/Shorties_Watchin'_Shorties", "http://dbpedia.org/resource/Sports_Show_with_Norm_Macdonald", "http://dbpedia.org/resource/Standup_Comedian", "http://dbpedia.org/resource/Stella_(American_TV_series)", "http://dbpedia.org/resource/Idiotsitter", "http://dbpedia.org/resource/Important_Things_with_Demetri_Martin", "http://dbpedia.org/resource/Klepper_(TV_series)", "http://dbpedia.org/resource/List_of_Futurama_episodes", "http://dbpedia.org/resource/List_of_Mystery_Science_Theater_3000_episodes", "http://dbpedia.org/resource/List_of_Reno_911!_episodes", "http://dbpedia.org/resource/List_of_South_Park_episodes", "http://dbpedia.org/resource/List_of_The_Colbert_Report_episodes_(2005\u201306)", "http://dbpedia.org/resource/List_of_The_Colbert_Report_episodes_(2008)", "http://dbpedia.org/resource/List_of_The_Colbert_Report_episodes_(2014)", "http://dbpedia.org/resource/List_of_The_Daily_Show_episodes_(2013)", "http://dbpedia.org/resource/List_of_The_Daily_Show_episodes_(2014)", "http://dbpedia.org/resource/List_of_The_Daily_Show_episodes_(2015)", "http://dbpedia.org/resource/List_of_The_Daily_Show_episodes_(2016)", "http://dbpedia.org/resource/List_of_The_Daily_Show_episodes_(2017)", "http://dbpedia.org/resource/List_of_The_Daily_Show_episodes_(2018)", "http://dbpedia.org/resource/List_of_The_Daily_Show_episodes_(2019)", "http://dbpedia.org/resource/List_of_The_Daily_Show_episodes_(2020)", "http://dbpedia.org/resource/List_of_The_Daily_Show_episodes_(2021)", "http://dbpedia.org/resource/List_of_The_Daily_Show_episodes_(2022)", "http://dbpedia.org/resource/List_of_The_Nightly_Show_with_Larry_Wilmore_episodes_(2015)", "http://dbpedia.org/resource/List_of_The_Nightly_Show_with_Larry_Wilmore_episodes_(2016)", "http://dbpedia.org/resource/List_of_The_Sarah_Silverman_Program_episodes", "http://dbpedia.org/resource/Michael_&_Michael_Have_Issues", "http://dbpedia.org/resource/Mind_of_Mencia", "http://dbpedia.org/resource/Talking_Movies", "http://dbpedia.org/resource/Killing_Eve", "http://dbpedia.org/resource/The_Living_and_the_Dead_(TV_series)", "http://dbpedia.org/resource/The_Secret_of_Crickley_Hall_(TV_series)", "http://dbpedia.org/resource/The_State_Within", "http://dbpedia.org/resource/Copper_(TV_series)", "http://dbpedia.org/resource/Top_Gear_America", "http://dbpedia.org/resource/Joel_Johnson_(journalist)", "http://dbpedia.org/resource/Chris_Harris_on_Cars", "http://dbpedia.org/resource/Doctor_Who_Confidential", "http://dbpedia.org/resource/Criptales", "http://dbpedia.org/resource/Britannia_Awards", "http://dbpedia.org/resource/Richard_Hammond's_Crash_Course", "http://dbpedia.org/resource/Fleming:_The_Man_Who_Would_Be_Bond", "http://dbpedia.org/resource/The_Parker_Andersons", "http://dbpedia.org/resource/The_Wizard_of_Paws", "http://dbpedia.org/resource/Studio_C", "http://dbpedia.org/resource/Qubo", "http://dbpedia.org/resource/Chasing_Classic_Cars", "http://dbpedia.org/resource/Bitchin'_Rides", "http://dbpedia.org/resource/100_latinos_dijeron", "http://dbpedia.org/resource/Noticias_MundoFox", "http://dbpedia.org/resource/El_Capit\u00e1n_Camacho", "http://dbpedia.org/resource/American_Heiress", "http://dbpedia.org/resource/Dateline_NBC", "http://dbpedia.org/resource/Watch_Over_Me", "http://dbpedia.org/resource/Desire_(TV_series)", "http://dbpedia.org/resource/Saints_&_Sinners_(2007_TV_series)", "http://dbpedia.org/resource/Wicked_Wicked_Games", "http://dbpedia.org/resource/Under_One_Roof_(2008_TV_series)", "http://dbpedia.org/resource/Breaking_the_Magician's_Code:_Magic's_Biggest_Secrets_Finally_Revealed", "http://dbpedia.org/resource/Jail_(TV_series)", "http://dbpedia.org/resource/Masters_of_Illusion_(TV_series)", "http://dbpedia.org/resource/The_Tony_Rock_Project", "http://dbpedia.org/resource/MyNetworkTV_telenovelas", "http://dbpedia.org/resource/Fashion_House", "http://dbpedia.org/resource/Paradise_Hotel", "http://dbpedia.org/resource/1975_Winston_500", "http://dbpedia.org/resource/1975_World_600", "http://dbpedia.org/resource/1999_Kmart_400", "http://dbpedia.org/resource/1999_Pepsi_400", "http://dbpedia.org/resource/1999_Primestar_500", "http://dbpedia.org/resource/2000_Chevy_Silverado_200", "http://dbpedia.org/resource/2000_Kmart_400", "http://dbpedia.org/resource/2000_Pepsi_400", "http://dbpedia.org/resource/1976_Dixie_500", "http://dbpedia.org/resource/1976_Los_Angeles_Times_500", "http://dbpedia.org/resource/1976_Riverside_400", "http://dbpedia.org/resource/1976_Winston_500", "http://dbpedia.org/resource/1976_World_600", "http://dbpedia.org/resource/1977_Talladega_500", "http://dbpedia.org/resource/1977_Winston_500", "http://dbpedia.org/resource/1977_World_600", "http://dbpedia.org/resource/1978_Talladega_500", "http://dbpedia.org/resource/1978_World_600", "http://dbpedia.org/resource/1979_Talladega_500", "http://dbpedia.org/resource/1979_World_600", "http://dbpedia.org/resource/1980_Talladega_500", "http://dbpedia.org/resource/1981_Daytona_500", "http://dbpedia.org/resource/1981_Talladega_500", "http://dbpedia.org/resource/1981_World_600", "http://dbpedia.org/resource/1982_Daytona_500", "http://dbpedia.org/resource/1983_Talladega_500", "http://dbpedia.org/resource/1984_Talladega_500", "http://dbpedia.org/resource/1985_Daytona_500", "http://dbpedia.org/resource/1995_Total_Petroleum_200", "http://dbpedia.org/resource/2005_NBA_All-Star_Game", "http://dbpedia.org/resource/2006_NBA_All-Star_Game", "http://dbpedia.org/resource/2007_NBA_All-Star_Game", "http://dbpedia.org/resource/2003_NBA_All-Star_Game", "http://dbpedia.org/resource/2004_NBA_All-Star_Game", "http://dbpedia.org/resource/All_Is_Forgiven_(TV_series)", "http://dbpedia.org/resource/All_Star_Secrets", "http://dbpedia.org/resource/Allegiance_(TV_series)", "http://dbpedia.org/resource/Alvin_and_the_Chipmunks_(1983_TV_series)", "http://dbpedia.org/resource/Amazing_Stories_(1985_TV_series)", "http://dbpedia.org/resource/Amelia_Earhart_(film)", "http://dbpedia.org/resource/Amen_(TV_series)", "http://dbpedia.org/resource/America's_Got_Talent", "http://dbpedia.org/resource/America's_Got_Talent:_Extreme", "http://dbpedia.org/resource/America's_Got_Talent:_The_Champions", "http://dbpedia.org/resource/America's_Got_Talent_(season_1)", "http://dbpedia.org/resource/America's_Got_Talent_(season_10)", "http://dbpedia.org/resource/America's_Got_Talent_(season_11)", "http://dbpedia.org/resource/America's_Got_Talent_(season_12)", "http://dbpedia.org/resource/America's_Got_Talent_(season_13)", "http://dbpedia.org/resource/America's_Got_Talent_(season_14)", "http://dbpedia.org/resource/America's_Got_Talent_(season_15)", "http://dbpedia.org/resource/America's_Got_Talent_(season_16)", "http://dbpedia.org/resource/America's_Got_Talent_(season_17)", "http://dbpedia.org/resource/America's_Got_Talent_(season_2)", "http://dbpedia.org/resource/America's_Got_Talent_(season_3)", "http://dbpedia.org/resource/America's_Got_Talent_(season_4)", "http://dbpedia.org/resource/America's_Got_Talent_(season_5)", "http://dbpedia.org/resource/America's_Got_Talent_(season_6)", "http://dbpedia.org/resource/America's_Got_Talent_(season_7)", "http://dbpedia.org/resource/America's_Got_Talent_(season_8)", "http://dbpedia.org/resource/America's_Got_Talent_(season_9)", "http://dbpedia.org/resource/America's_Most_Talented_Kid", "http://dbpedia.org/resource/America's_Next_Great_Restaurant", "http://dbpedia.org/resource/America's_Toughest_Jobs", "http://dbpedia.org/resource/America_Alive!", "http://dbpedia.org/resource/American_Auto", "http://dbpedia.org/resource/American_Dreams", "http://dbpedia.org/resource/American_Gladiators_(2008_TV_series)", "http://dbpedia.org/resource/American_Gladiators_(2008_TV_series,_season_1)", "http://dbpedia.org/resource/American_Gladiators_(2008_TV_series,_season_2)", "http://dbpedia.org/resource/American_Ninja_Warrior_(season_10)", "http://dbpedia.org/resource/American_Ninja_Warrior_(season_11)", "http://dbpedia.org/resource/American_Ninja_Warrior_(season_12)", "http://dbpedia.org/resource/American_Ninja_Warrior_(season_13)", "http://dbpedia.org/resource/American_Ninja_Warrior_(season_14)", "http://dbpedia.org/resource/American_Ninja_Warrior_(season_4)", "http://dbpedia.org/resource/American_Ninja_Warrior_(season_5)", "http://dbpedia.org/resource/American_Ninja_Warrior_(season_6)", "http://dbpedia.org/resource/American_Ninja_Warrior_(season_7)", "http://dbpedia.org/resource/American_Ninja_Warrior_(season_8)", "http://dbpedia.org/resource/American_Ninja_Warrior_(season_9)", "http://dbpedia.org/resource/American_Odyssey", "http://dbpedia.org/resource/American_Song_Contest", "http://dbpedia.org/resource/Amityville_4:_The_Evil_Escapes", "http://dbpedia.org/resource/Amnesia_(game_show)", "http://dbpedia.org/resource/Amy_Fisher:_My_Story", "http://dbpedia.org/resource/Amy_Prentiss", "http://dbpedia.org/resource/An_American_Girl:_Saige_Paints_the_Sky", "http://dbpedia.org/resource/An_Early_Frost", "http://dbpedia.org/resource/An_Evening_with_Fred_Astaire", "http://dbpedia.org/resource/And_the_Band_Played_On_(film)", "http://dbpedia.org/resource/Andy_Barker,_P.I.", "http://dbpedia.org/resource/Danger_Island_(TV_series)", "http://dbpedia.org/resource/Danger_Island_(film)", "http://dbpedia.org/resource/Dangerous_Assignment", "http://dbpedia.org/resource/Daniel_Boone_(1964_TV_series)", "http://dbpedia.org/resource/Danielle_Steel's_'Palomino'", "http://dbpedia.org/resource/Dark_Shadows_(1991_TV_series)", "http://dbpedia.org/resource/Dark_Skies", "http://dbpedia.org/resource/David_Mizejewski", "http://dbpedia.org/resource/Dawn:_Portrait_of_a_Teenage_Runaway", "http://dbpedia.org/resource/Day-O_(film)", "http://dbpedia.org/resource/Day_by_Day_(American_TV_series)", "http://dbpedia.org/resource/Days_of_Our_Lives", "http://dbpedia.org/resource/Dead_of_Night_(1977_film)", "http://dbpedia.org/resource/Deadline_(2000_TV_series)", "http://dbpedia.org/resource/Dear_John_(American_TV_series)", "http://dbpedia.org/resource/Death_of_a_Centerfold", "http://dbpedia.org/resource/Debris_(TV_series)", "http://dbpedia.org/resource/Deception_(2013_American_TV_series)", "http://dbpedia.org/resource/Deck_the_Halls_with_Wacky_Walls", "http://dbpedia.org/resource/ArenaBowl_XVII", "http://dbpedia.org/resource/ArenaBowl_XVIII", "http://dbpedia.org/resource/V_(1983_miniseries)", "http://dbpedia.org/resource/V_(1984_TV_series)", "http://dbpedia.org/resource/V_The_Final_Battle", "http://dbpedia.org/resource/Van_Dyke_and_Company", "http://dbpedia.org/resource/Veronica's_Closet", "http://dbpedia.org/resource/Victoria_Beckham:_Coming_to_America", "http://dbpedia.org/resource/Victoria_Regina_(film)", "http://dbpedia.org/resource/Victory_at_Sea", "http://dbpedia.org/resource/Viper_(TV_series)", "http://dbpedia.org/resource/Voyagers!", "http://dbpedia.org/resource/WNBA_on_NBC", "http://dbpedia.org/resource/WWE_Tribute_to_the_Troops", "http://dbpedia.org/resource/WWF_The_Main_Event", "http://dbpedia.org/resource/Walter_&_Emily", "http://dbpedia.org/resource/Watch_Mr._Wizard", "http://dbpedia.org/resource/Watching_Ellie", "http://dbpedia.org/resource/Diary_of_a_Young_Comic", "http://dbpedia.org/resource/Ding_Dong_School", "http://dbpedia.org/resource/Do_No_Harm_(TV_series)", "http://dbpedia.org/resource/Alexander:_The_Other_Side_of_Dawn", "http://dbpedia.org/resource/Alfred_Hitchcock_Presents", "http://dbpedia.org/resource/Alfred_Hitchcock_Presents_(1985_TV_series)", "http://dbpedia.org/resource/Alice_in_Wonderland_(1999_film)", "http://dbpedia.org/resource/20th_Primetime_Emmy_Awards", "http://dbpedia.org/resource/22nd_Tony_Awards", "http://dbpedia.org/resource/23rd_Primetime_Emmy_Awards", "http://dbpedia.org/resource/23rd_Tony_Awards", "http://dbpedia.org/resource/Arsenic_&_Old_Lace", "http://dbpedia.org/resource/Atomic_Train", "http://dbpedia.org/resource/Aurora_(1984_film)", "http://dbpedia.org/resource/Average_Joe_(TV_series)", "http://dbpedia.org/resource/Awake_(TV_series)", "http://dbpedia.org/resource/Battlestars_(game_show)", "http://dbpedia.org/resource/Bay_City_Blues", "http://dbpedia.org/resource/Beastmaster_III:_The_Eye_of_Braxus", "http://dbpedia.org/resource/Behind_the_Camera:_The_Unauthorized_Story_of_Charlie's_Angels", "http://dbpedia.org/resource/Believe_(TV_series)", "http://dbpedia.org/resource/Bent_(TV_series)", "http://dbpedia.org/resource/Best_Friends_Forever_(American_TV_series)", "http://dbpedia.org/resource/Best_Time_Ever_with_Neil_Patrick_Harris", "http://dbpedia.org/resource/Better_Late_Than_Never_(TV_series)", "http://dbpedia.org/resource/Betty_White's_Off_Their_Rockers", "http://dbpedia.org/resource/Beulah_Land_(miniseries)", "http://dbpedia.org/resource/Beverly_Hills_Buntz", "http://dbpedia.org/resource/For_Love_or_Money_(American_TV_series)", "http://dbpedia.org/resource/For_Your_Love_(TV_series)", "http://dbpedia.org/resource/Four_Kings", "http://dbpedia.org/resource/Fraggle_Rock:_The_Animated_Series", "http://dbpedia.org/resource/Frank_Sinatra:_A_Man_and_His_Music", "http://dbpedia.org/resource/Frasier", "http://dbpedia.org/resource/Frasier_(season_3)", "http://dbpedia.org/resource/Freaks_and_Geeks", "http://dbpedia.org/resource/Fred_Allen", "http://dbpedia.org/resource/Fred_and_Barney_Meet_the_Shmoo", "http://dbpedia.org/resource/Fred_and_Barney_Meet_the_Thing", "http://dbpedia.org/resource/Free_Agents_(American_TV_series)", "http://dbpedia.org/resource/Freedom_Road", "http://dbpedia.org/resource/Friday_Night_Lights_(TV_series)", "http://dbpedia.org/resource/Friday_Night_Lights_(season_1)", "http://dbpedia.org/resource/Friday_Night_Lights_(season_2)", "http://dbpedia.org/resource/Friday_Night_Lights_(season_3)", "http://dbpedia.org/resource/Friday_Night_Lights_(season_4)", "http://dbpedia.org/resource/Friday_Night_Lights_(season_5)", "http://dbpedia.org/resource/Friday_Night_Videos", "http://dbpedia.org/resource/Friends", "http://dbpedia.org/resource/Friends_(season_1)", "http://dbpedia.org/resource/Friends_(season_10)", "http://dbpedia.org/resource/Friends_(season_2)", "http://dbpedia.org/resource/Friends_(season_3)", "http://dbpedia.org/resource/Friends_(season_4)", "http://dbpedia.org/resource/Friends_(season_5)", "http://dbpedia.org/resource/Friends_(season_6)", "http://dbpedia.org/resource/Friends_(season_7)", "http://dbpedia.org/resource/Friends_(season_8)", "http://dbpedia.org/resource/Friends_(season_9)", "http://dbpedia.org/resource/From_Here_to_Eternity_(miniseries)", "http://dbpedia.org/resource/Full_Moon_Over_Miami", "http://dbpedia.org/resource/Galaxy_Goof-Ups", "http://dbpedia.org/resource/Gambit_(game_show)", "http://dbpedia.org/resource/Game_of_Silence_(American_TV_series)", "http://dbpedia.org/resource/Gavilan_(TV_series)", "http://dbpedia.org/resource/Gemini_Division", "http://dbpedia.org/resource/Gemini_Man_(TV_series)", "http://dbpedia.org/resource/Generations_(American_TV_series)", "http://dbpedia.org/resource/Haggis_Baggis", "http://dbpedia.org/resource/Hairspray_Live!", "http://dbpedia.org/resource/Half_Nelson_(TV_series)", "http://dbpedia.org/resource/Halloween_with_the_New_Addams_Family", "http://dbpedia.org/resource/Hang_Time_(TV_series)", "http://dbpedia.org/resource/Hank_(1965_TV_series)", "http://dbpedia.org/resource/Hannibal_(TV_series)", "http://dbpedia.org/resource/Hannibal_(season_1)", "http://dbpedia.org/resource/Hannibal_(season_2)", "http://dbpedia.org/resource/Hannibal_(season_3)", "http://dbpedia.org/resource/Hans_Brinker_and_the_Silver_Skates_(film)", "http://dbpedia.org/resource/Happy_Family_(American_TV_series)", "http://dbpedia.org/resource/Hardball_(1989_TV_series)", "http://dbpedia.org/resource/Harper_Valley_PTA_(TV_series)", "http://dbpedia.org/resource/Harris_Against_the_World", "http://dbpedia.org/resource/Harris_and_Company", "http://dbpedia.org/resource/Harry's_Law", "http://dbpedia.org/resource/Harry's_Law_(season_1)", "http://dbpedia.org/resource/Harry's_Law_(season_2)", "http://dbpedia.org/resource/Hawaii_(TV_series)", "http://dbpedia.org/resource/Billy_V", "http://dbpedia.org/resource/Sammy_(TV_series)", "http://dbpedia.org/resource/Samson_&_Goliath", "http://dbpedia.org/resource/San_Francisco_International_Airport_(TV_series)", "http://dbpedia.org/resource/Sanford_(TV_series)", "http://dbpedia.org/resource/Sanford_Arms", "http://dbpedia.org/resource/Sanford_and_Son", "http://dbpedia.org/resource/Santa_Barbara_(TV_series)", "http://dbpedia.org/resource/TV_Nation", "http://dbpedia.org/resource/Talk_Stoop", "http://dbpedia.org/resource/Tate_(TV_series)", "http://dbpedia.org/resource/Tattingers", "http://dbpedia.org/resource/Teachers_(2006_TV_series)", "http://dbpedia.org/resource/Teachers_Only", "http://dbpedia.org/resource/Weakest_Link_(American_game_show)", "http://dbpedia.org/resource/Weekend_Today", "http://dbpedia.org/resource/Welcome_to_the_Family_(American_TV_series)", "http://dbpedia.org/resource/What's_This_Song%3F", "http://dbpedia.org/resource/Wheelie_and_the_Chopper_Bunch", "http://dbpedia.org/resource/When_the_Bough_Breaks_(1986_film)", "http://dbpedia.org/resource/Where_the_Girls_Are_(TV_program)", "http://dbpedia.org/resource/Whitney_(TV_series)", "http://dbpedia.org/resource/Who's_Watching_the_Kids%3F", "http://dbpedia.org/resource/Who_Is_Simon_Miller%3F", "http://dbpedia.org/resource/Who_Is_the_Black_Dahlia%3F", "http://dbpedia.org/resource/Whoopi_(TV_series)", "http://dbpedia.org/resource/Wichita_Town", "http://dbpedia.org/resource/Wild_Kingdom", "http://dbpedia.org/resource/Will_&_Grace", "http://dbpedia.org/resource/Will_&_Grace_(season_1)", "http://dbpedia.org/resource/Will_&_Grace_(season_10)", "http://dbpedia.org/resource/Will_&_Grace_(season_11)", "http://dbpedia.org/resource/Will_&_Grace_(season_2)", "http://dbpedia.org/resource/Will_&_Grace_(season_3)", "http://dbpedia.org/resource/Will_&_Grace_(season_4)", "http://dbpedia.org/resource/Will_&_Grace_(season_5)", "http://dbpedia.org/resource/Will_&_Grace_(season_6)", "http://dbpedia.org/resource/Will_&_Grace_(season_7)", "http://dbpedia.org/resource/Will_&_Grace_(season_8)", "http://dbpedia.org/resource/Will_&_Grace_(season_9)", "http://dbpedia.org/resource/Mail_Order_Family", "http://dbpedia.org/resource/$25_Million_Dollar_Hoax", "http://dbpedia.org/resource/100_Questions", "http://dbpedia.org/resource/10th_Primetime_Emmy_Awards", "http://dbpedia.org/resource/11th_Annual_Grammy_Awards", "http://dbpedia.org/resource/11th_Primetime_Emmy_Awards", "http://dbpedia.org/resource/12th_ALMA_Awards", "http://dbpedia.org/resource/12th_Primetime_Emmy_Awards", "http://dbpedia.org/resource/13th_ALMA_Awards", "http://dbpedia.org/resource/13th_Daytime_Emmy_Awards", "http://dbpedia.org/resource/13th_Primetime_Emmy_Awards", "http://dbpedia.org/resource/14th_Primetime_Emmy_Awards", "http://dbpedia.org/resource/Animalympics", "http://dbpedia.org/resource/Ann_Jillian_(TV_series)", "http://dbpedia.org/resource/Annie_Live!", "http://dbpedia.org/resource/Another_World_(TV_series)", "http://dbpedia.org/resource/Aquarius_(American_TV_series)", "http://dbpedia.org/resource/Archer_(1975_TV_series)", "http://dbpedia.org/resource/Archie:_To_Riverdale_and_Back_Again", "http://dbpedia.org/resource/Are_You_There,_Chelsea%3F", "http://dbpedia.org/resource/Elvis_(1968_TV_program)", "http://dbpedia.org/resource/Emerald_City_(TV_series)", "http://dbpedia.org/resource/Emergency!", "http://dbpedia.org/resource/Emergency_+4", "http://dbpedia.org/resource/Emeril_(TV_series)", "http://dbpedia.org/resource/Empire_(1962_TV_series)", "http://dbpedia.org/resource/Empty_Nest", "http://dbpedia.org/resource/Encore!_Encore!", "http://dbpedia.org/resource/Enola_Gay:_The_Men,_the_Mission,_the_Atomic_Bomb", "http://dbpedia.org/resource/Ensign_O'Toole", "http://dbpedia.org/resource/Evergreen_(miniseries)", "http://dbpedia.org/resource/Gillette_Cavalcade_of_Sports", "http://dbpedia.org/resource/Gimme_a_Break!", "http://dbpedia.org/resource/Go_(game_show)", "http://dbpedia.org/resource/Go_Fish_(TV_series)", "http://dbpedia.org/resource/Go_On_(TV_series)", "http://dbpedia.org/resource/God,_the_Devil_and_Bob", "http://dbpedia.org/resource/Going_Bananas_(American_TV_series)", "http://dbpedia.org/resource/Goldilocks_(film)", "http://dbpedia.org/resource/Golf_on_NBC", "http://dbpedia.org/resource/Good_Morning,_Miami", "http://dbpedia.org/resource/Marlon_(TV_series)", "http://dbpedia.org/resource/Marry_Me_(American_TV_series)", "http://dbpedia.org/resource/Mary,_Mother_of_Jesus_(film)", "http://dbpedia.org/resource/Players_(1997_TV_series)", "http://dbpedia.org/resource/Please_Don't_Eat_the_Daisies_(TV_series)", "http://dbpedia.org/resource/Poker_After_Dark", "http://dbpedia.org/resource/Police_Woman_(TV_series)", "http://dbpedia.org/resource/Polly_(film)", "http://dbpedia.org/resource/Poor_Little_Rich_Girl:_The_Barbara_Hutton_Story", "http://dbpedia.org/resource/Powerless_(TV_series)", "http://dbpedia.org/resource/Pride_&_Joy_(TV_series)", "http://dbpedia.org/resource/Prime_Suspect_(American_TV_series)", "http://dbpedia.org/resource/Prince_Street_(TV_series)", "http://dbpedia.org/resource/Temple_Houston_(TV_series)", "http://dbpedia.org/resource/Tennis_on_NBC", "http://dbpedia.org/resource/Thank_God_You're_Here_(American_TV_series)", "http://dbpedia.org/resource/The_100_Lives_of_Black_Jack_Savage", "http://dbpedia.org/resource/The_A-Team", "http://dbpedia.org/resource/The_A-Team_(season_1)", "http://dbpedia.org/resource/The_A-Team_(season_2)", "http://dbpedia.org/resource/The_A-Team_(season_3)", "http://dbpedia.org/resource/The_A-Team_(season_4)", "http://dbpedia.org/resource/The_A-Team_(season_5)", "http://dbpedia.org/resource/The_Addams_Family_(1973_TV_series)", "http://dbpedia.org/resource/The_Apprentice:_Martha_Stewart", "http://dbpedia.org/resource/The_Apprentice_(American_TV_series)", "http://dbpedia.org/resource/The_Apprentice_(American_season_1)", "http://dbpedia.org/resource/The_Apprentice_(American_season_10)", "http://dbpedia.org/resource/The_Apprentice_(American_season_11)", "http://dbpedia.org/resource/The_Apprentice_(American_season_12)", "http://dbpedia.org/resource/The_Apprentice_(American_season_13)", "http://dbpedia.org/resource/The_Apprentice_(American_season_14)", "http://dbpedia.org/resource/The_Apprentice_(American_season_2)", "http://dbpedia.org/resource/The_Apprentice_(American_season_3)", "http://dbpedia.org/resource/The_Apprentice_(American_season_4)", "http://dbpedia.org/resource/The_Apprentice_(American_season_5)", "http://dbpedia.org/resource/The_Apprentice_(American_season_6)", "http://dbpedia.org/resource/The_Apprentice_(American_season_7)", "http://dbpedia.org/resource/The_Apprentice_(American_season_8)", "http://dbpedia.org/resource/The_Apprentice_(American_season_9)", "http://dbpedia.org/resource/The_Aquarians", "http://dbpedia.org/resource/The_Archer:_Fugitive_from_the_Empire", "http://dbpedia.org/resource/The_Armed_Forces_Hour", "http://dbpedia.org/resource/The_Atom_Ant/Secret_Squirrel_Show", "http://dbpedia.org/resource/The_Banana_Splits", "http://dbpedia.org/resource/The_Beasts_Are_on_the_Streets", "http://dbpedia.org/resource/The_Berenstain_Bears'_Christmas_Tree", "http://dbpedia.org/resource/The_Berenstain_Bears'_Comic_Valentine", "http://dbpedia.org/resource/The_Berenstain_Bears'_Easter_Surprise", "http://dbpedia.org/resource/The_Berenstain_Bears_Meet_Bigpaw", "http://dbpedia.org/resource/The_Berenstain_Bears_Play_Ball", "http://dbpedia.org/resource/The_Betty_White_Show_(1952_TV_series)", "http://dbpedia.org/resource/The_Big_Payoff", "http://dbpedia.org/resource/The_Biggest_Loser_(American_TV_series)", "http://dbpedia.org/resource/The_Biggest_Loser_(Dutch_TV_series)", "http://dbpedia.org/resource/The_Biggest_Loser_(season_1)", "http://dbpedia.org/resource/The_Biggest_Loser_(season_10)", "http://dbpedia.org/resource/The_Biggest_Loser_(season_11)", "http://dbpedia.org/resource/The_Biggest_Loser_(season_12)", "http://dbpedia.org/resource/The_Biggest_Loser_(season_13)", "http://dbpedia.org/resource/The_Biggest_Loser_(season_14)", "http://dbpedia.org/resource/The_Biggest_Loser_(season_15)", "http://dbpedia.org/resource/The_Biggest_Loser_(season_16)", "http://dbpedia.org/resource/The_Biggest_Loser_(season_17)", "http://dbpedia.org/resource/The_Biggest_Loser_(season_2)", "http://dbpedia.org/resource/The_Biggest_Loser_(season_3)", "http://dbpedia.org/resource/The_Biggest_Loser_(season_4)", "http://dbpedia.org/resource/The_Biggest_Loser_(season_5)", "http://dbpedia.org/resource/The_Biggest_Loser_(season_6)", "http://dbpedia.org/resource/The_Biggest_Loser_(season_7)", "http://dbpedia.org/resource/The_Biggest_Loser_(season_8)", "http://dbpedia.org/resource/The_Biggest_Loser_(season_9)", "http://dbpedia.org/resource/The_Bill_Cosby_Show", "http://dbpedia.org/resource/The_Black_Donnellys", "http://dbpedia.org/resource/The_Blacklist", "http://dbpedia.org/resource/The_Blacklist:_Redemption", "http://dbpedia.org/resource/The_Blacklist_(season_1)", "http://dbpedia.org/resource/The_Blacklist_(season_2)", "http://dbpedia.org/resource/The_Blacklist_(season_3)", "http://dbpedia.org/resource/The_Blacklist_(season_4)", "http://dbpedia.org/resource/The_Blacklist_(season_5)", "http://dbpedia.org/resource/The_Blacklist_(season_6)", "http://dbpedia.org/resource/The_Blacklist_(season_7)", "http://dbpedia.org/resource/The_Blacklist_(season_8)", "http://dbpedia.org/resource/The_Blacklist_(season_9)", "http://dbpedia.org/resource/The_Blue_Knight_(film)", "http://dbpedia.org/resource/The_Bob_Crosby_Show", "http://dbpedia.org/resource/The_Bob_Cummings_Show", "http://dbpedia.org/resource/The_Bob_Newhart_Show_(1961_TV_series)", "http://dbpedia.org/resource/The_Bold_Men", "http://dbpedia.org/resource/The_Bold_Ones", "http://dbpedia.org/resource/The_Bold_Ones:_The_Lawyers", "http://dbpedia.org/resource/The_Bold_Ones:_The_New_Doctors", "http://dbpedia.org/resource/The_Bold_Ones:_The_Protectors", "http://dbpedia.org/resource/The_Bold_Ones:_The_Senator", "http://dbpedia.org/resource/The_Book_of_Daniel_(TV_series)", "http://dbpedia.org/resource/The_Boy_Who_Talked_to_Badgers", "http://dbpedia.org/resource/The_Brave_(TV_series)", "http://dbpedia.org/resource/The_Bronx_Zoo_(TV_series)", "http://dbpedia.org/resource/The_Bugaloos", "http://dbpedia.org/resource/The_Buick_Circus_Hour", "http://dbpedia.org/resource/The_Burning_Bed", "http://dbpedia.org/resource/The_Californians_(TV_series)", "http://dbpedia.org/resource/The_Cape_(2011_TV_series)", "http://dbpedia.org/resource/The_Carmichael_Show", "http://dbpedia.org/resource/The_Celebrity_Apprentice", "http://dbpedia.org/resource/UC:_Undercover", "http://dbpedia.org/resource/Uncle_Sam_Magoo", "http://dbpedia.org/resource/Undateable", "http://dbpedia.org/resource/Undercovers_(TV_series)", "http://dbpedia.org/resource/Union_Square_(TV_series)", "http://dbpedia.org/resource/Universo_(TV_channel)", "http://dbpedia.org/resource/Up_All_Night_(TV_series)", "http://dbpedia.org/resource/Uprising_(2001_film)", "http://dbpedia.org/resource/Saturday_Roundup", "http://dbpedia.org/resource/1600_Penn", "http://dbpedia.org/resource/16th_Daytime_Emmy_Awards", "http://dbpedia.org/resource/15th_Primetime_Emmy_Awards", "http://dbpedia.org/resource/16th_Primetime_Emmy_Awards", "http://dbpedia.org/resource/Boomtown_(2002_TV_series)", "http://dbpedia.org/resource/Born_Too_Soon", "http://dbpedia.org/resource/Born_to_the_Wind", "http://dbpedia.org/resource/Boss_Lady", "http://dbpedia.org/resource/Boston_Common_(TV_series)", "http://dbpedia.org/resource/Bowling_on_NBC", "http://dbpedia.org/resource/Brand_New_Life", "http://dbpedia.org/resource/Branded_(TV_series)", "http://dbpedia.org/resource/Brave_New_World_(1980_film)", "http://dbpedia.org/resource/Bret_Maverick", "http://dbpedia.org/resource/Bret_Maverick:_The_Lazy_Ace", "http://dbpedia.org/resource/Bridge_Across_Time", "http://dbpedia.org/resource/Bring_the_Funny", "http://dbpedia.org/resource/Broadway_Open_House", "http://dbpedia.org/resource/Brooklyn_Nine-Nine_(season_6)", "http://dbpedia.org/resource/Brooklyn_Nine-Nine_(season_7)", "http://dbpedia.org/resource/Brooklyn_Nine-Nine_(season_8)", "http://dbpedia.org/resource/Brotherly_Love_(1995_TV_series)", "http://dbpedia.org/resource/Buck_Rogers_in_the_25th_Century_(TV_series)", "http://dbpedia.org/resource/Jackie,_Ethel,_Joan:_The_Women_of_Camelot", "http://dbpedia.org/resource/Jackpot_(game_show)", "http://dbpedia.org/resource/Jackpot_Bowling", "http://dbpedia.org/resource/Jana_of_the_Jungle", "http://dbpedia.org/resource/Kate's_Secret", "http://dbpedia.org/resource/Kath_&_Kim_(American_TV_series)", "http://dbpedia.org/resource/Kelvin_Keech", "http://dbpedia.org/resource/Kenan_(TV_series)", "http://dbpedia.org/resource/Kennedy_(miniseries)", "http://dbpedia.org/resource/Key_West_(film)", "http://dbpedia.org/resource/Kid_'n_Play_(TV_series)", "http://dbpedia.org/resource/Kidd_Video", "http://dbpedia.org/resource/Kidnapped:_In_the_Line_of_Duty", "http://dbpedia.org/resource/Kidnapped_(American_TV_series)", "http://dbpedia.org/resource/Kidz_in_the_Wood", "http://dbpedia.org/resource/Killer_Instinct_(1988_film)", "http://dbpedia.org/resource/Killing_Mr._Griffin_(film)", "http://dbpedia.org/resource/Match_Game-Hollywood_Squares_Hour", "http://dbpedia.org/resource/Matlock_(season_1)", "http://dbpedia.org/resource/Matlock_(season_2)", "http://dbpedia.org/resource/Matlock_(season_3)", "http://dbpedia.org/resource/Matlock_(season_4)", "http://dbpedia.org/resource/Matlock_(season_5)", "http://dbpedia.org/resource/Matlock_(season_6)", "http://dbpedia.org/resource/Max_Liebman_Presents", "http://dbpedia.org/resource/Maya_&_Marty", "http://dbpedia.org/resource/Maya_(American_TV_series)", "http://dbpedia.org/resource/McClain's_Law", "http://dbpedia.org/resource/McClain's_Law_(film)", "http://dbpedia.org/resource/McCloud_(TV_series)", "http://dbpedia.org/resource/McDuff,_the_Talking_Dog", "http://dbpedia.org/resource/McKeever_and_the_Colonel", "http://dbpedia.org/resource/McMillan_&_Wife", "http://dbpedia.org/resource/Medical_Investigation", "http://dbpedia.org/resource/Medical_Story", "http://dbpedia.org/resource/Medium_(season_1)", "http://dbpedia.org/resource/Medium_(season_2)", "http://dbpedia.org/resource/Medium_(season_3)", "http://dbpedia.org/resource/Medium_(season_4)", "http://dbpedia.org/resource/Medium_(season_5)", "http://dbpedia.org/resource/Meet_My_Folks", "http://dbpedia.org/resource/Meet_the_Press", "http://dbpedia.org/resource/Megyn_Kelly_Today", "http://dbpedia.org/resource/Memory_Game", "http://dbpedia.org/resource/Men_Behaving_Badly_(American_TV_series)", "http://dbpedia.org/resource/Mercy_(TV_series)", "http://dbpedia.org/resource/Merlin_(miniseries)", "http://dbpedia.org/resource/Merry_Madagascar", "http://dbpedia.org/resource/Raines", "http://dbpedia.org/resource/Reach_for_the_Stars_(game_show)", "http://dbpedia.org/resource/Ready_for_Love_(TV_series)", "http://dbpedia.org/resource/Reasonable_Doubts", "http://dbpedia.org/resource/Remington_Steele", "http://dbpedia.org/resource/Return_to_Mayberry", "http://dbpedia.org/resource/Return_to_Peyton_Place_(TV_series)", "http://dbpedia.org/resource/Return_to_the_Planet_of_the_Apes", "http://dbpedia.org/resource/Revelations_(2005_TV_series)", "http://dbpedia.org/resource/Revenge_of_the_Stepford_Wives", "http://dbpedia.org/resource/Reverie_(TV_series)", "http://dbpedia.org/resource/Revolution_(TV_series)", "http://dbpedia.org/resource/The_Contender_(season_1)", "http://dbpedia.org/resource/The_Cosby_Mysteries", "http://dbpedia.org/resource/The_Cosby_Show", "http://dbpedia.org/resource/The_Count_of_Monte_Cristo_(1975_film)", "http://dbpedia.org/resource/The_Covenant_(1985_film)", "http://dbpedia.org/resource/The_Crisis_(TV_series)", "http://dbpedia.org/resource/The_D.A.'s_Man", "http://dbpedia.org/resource/The_Danny_Thomas_Hour", "http://dbpedia.org/resource/The_Dark_Secret_of_Harvest_Home", "http://dbpedia.org/resource/The_David_Letterman_Show", "http://dbpedia.org/resource/The_David_Niven_Show", "http://dbpedia.org/resource/The_David_S._Pumpkins_Halloween_Special", "http://dbpedia.org/resource/The_Deadly_Tower", "http://dbpedia.org/resource/The_Death_of_Richie", "http://dbpedia.org/resource/The_Death_of_the_Incredible_Hulk", "http://dbpedia.org/resource/The_Deliberate_Stranger", "http://dbpedia.org/resource/The_Desperate_Mission_(1969_film)", "http://dbpedia.org/resource/The_Devlin_Connection", "http://dbpedia.org/resource/The_Dick_Powell_Show", "http://dbpedia.org/resource/The_Dinah_Shore_Chevy_Show", "http://dbpedia.org/resource/The_Dirty_Dozen:_Next_Mission", "http://dbpedia.org/resource/The_Dirty_Dozen:_The_Fatal_Mission", "http://dbpedia.org/resource/The_Disappearance_of_Aimee", "http://dbpedia.org/resource/The_Disappearance_of_Flight_412", "http://dbpedia.org/resource/The_Doctors_(1963_TV_series)", "http://dbpedia.org/resource/The_Duck_Factory", "http://dbpedia.org/resource/The_Ed_Wynn_Show_(1958_TV_series)", "http://dbpedia.org/resource/The_Endgame", "http://dbpedia.org/resource/The_Enemy_Within_(TV_series)", "http://dbpedia.org/resource/The_Event", "http://dbpedia.org/resource/The_Facts_of_Life_(TV_series)", "http://dbpedia.org/resource/The_Facts_of_Life_Down_Under", "http://dbpedia.org/resource/The_Facts_of_Life_Goes_to_Paris", "http://dbpedia.org/resource/The_Family_Holvak", "http://dbpedia.org/resource/The_Family_Tree_(TV_series)", "http://dbpedia.org/resource/The_Fanelli_Boys", "http://dbpedia.org/resource/The_Fighting_Fitzgeralds", "http://dbpedia.org/resource/The_Firm_(2012_TV_series)", "http://dbpedia.org/resource/The_First_Christmas:_The_Story_of_the_First_Christmas_Snow", "http://dbpedia.org/resource/The_First_Easter_Rabbit", "http://dbpedia.org/resource/The_First_Olympics:_Athens_1896", "http://dbpedia.org/resource/The_Flintstone_Comedy_Show", "http://dbpedia.org/resource/The_Flintstone_Funnies", "http://dbpedia.org/resource/The_Flintstone_Primetime_Specials", "http://dbpedia.org/resource/The_Flintstones'_New_Neighbors", "http://dbpedia.org/resource/The_Flintstones:_Fred's_Final_Fling", "http://dbpedia.org/resource/The_Flintstones:_Jogging_Fever", "http://dbpedia.org/resource/The_Flintstones:_Little_Big_League", "http://dbpedia.org/resource/The_Flintstones:_Wind-Up_Wilma", "http://dbpedia.org/resource/The_Flintstones_Meet_Rockula_and_Frankenstone", "http://dbpedia.org/resource/The_Flip_Wilson_Show", "http://dbpedia.org/resource/The_Fresh_Prince_of_Bel-Air", "http://dbpedia.org/resource/The_Fresh_Prince_of_Bel-Air_(season_1)", "http://dbpedia.org/resource/The_Fresh_Prince_of_Bel-Air_(season_2)", "http://dbpedia.org/resource/The_Fresh_Prince_of_Bel-Air_(season_3)", "http://dbpedia.org/resource/The_Fresh_Prince_of_Bel-Air_(season_4)", "http://dbpedia.org/resource/The_Fresh_Prince_of_Bel-Air_(season_5)", "http://dbpedia.org/resource/The_Fresh_Prince_of_Bel-Air_(season_6)", "http://dbpedia.org/resource/The_Funny_Side", "http://dbpedia.org/resource/The_Funtastic_World_of_Hanna-Barbera_Arena_Show", "http://dbpedia.org/resource/The_Gambler_(film_series)", "http://dbpedia.org/resource/The_Gangster_Chronicles", "http://dbpedia.org/resource/The_Gary_Coleman_Show", "http://dbpedia.org/resource/The_Ghosts_of_Buxley_Hall", "http://dbpedia.org/resource/The_Girl_from_U.N.C.L.E.", "http://dbpedia.org/resource/The_Godfather_Saga", "http://dbpedia.org/resource/The_Golden_Girls", "http://dbpedia.org/resource/The_Golden_Girls_(season_1)", "http://dbpedia.org/resource/The_Golden_Girls_(season_2)", "http://dbpedia.org/resource/The_Golden_Girls_(season_3)", "http://dbpedia.org/resource/The_Golden_Girls_(season_4)", "http://dbpedia.org/resource/The_Golden_Girls_(season_5)", "http://dbpedia.org/resource/The_Golden_Girls_(season_6)", "http://dbpedia.org/resource/The_Golden_Girls_(season_7)", "http://dbpedia.org/resource/The_Good_Life_(1994_TV_series)", "http://dbpedia.org/resource/The_Good_Place", "http://dbpedia.org/resource/The_Good_Place_(season_1)", "http://dbpedia.org/resource/The_Good_Place_(season_2)", "http://dbpedia.org/resource/The_Good_Place_(season_3)", "http://dbpedia.org/resource/The_Good_Place_(season_4)", "http://dbpedia.org/resource/The_Great_American_Road_Trip", "http://dbpedia.org/resource/The_Great_American_Traffic_Jam", "http://dbpedia.org/resource/The_Hanged_Man_(1964_film)", "http://dbpedia.org/resource/The_Hero_(1966_TV_series)", "http://dbpedia.org/resource/The_High_Chaparral", "http://dbpedia.org/resource/The_Highwayman_(TV_series)", "http://dbpedia.org/resource/The_Hijacking_of_the_Achille_Lauro", "http://dbpedia.org/resource/The_Hobbit_(1977_film)", "http://dbpedia.org/resource/The_Home_Court", "http://dbpedia.org/resource/The_Houndcats", "http://dbpedia.org/resource/The_Huntley\u2013Brinkley_Report", "http://dbpedia.org/resource/The_InBetween", "http://dbpedia.org/resource/The_Incredible_Hulk_(1982_TV_series)", "http://dbpedia.org/resource/The_Incredible_Hulk_Returns", "http://dbpedia.org/resource/The_Invisible_Woman_(1983_film)", "http://dbpedia.org/resource/The_Island_(American_TV_series)", "http://dbpedia.org/resource/The_Jack_Benny_Program", "http://dbpedia.org/resource/The_Jack_Benny_Program_(season_15)", "http://dbpedia.org/resource/The_Jane_Whitney_Show", "http://dbpedia.org/resource/The_Jay_Leno_Show", "http://dbpedia.org/resource/The_Jesse_Ventura_Story", "http://dbpedia.org/resource/The_Jimmy_Stewart_Show", "http://dbpedia.org/resource/The_John_Larroquette_Show", "http://dbpedia.org/resource/The_Kaiser_Aluminum_Hour", "http://dbpedia.org/resource/The_Kid_Super_Power_Hour_with_Shazam!", "http://dbpedia.org/resource/The_Kid_with_the_Broken_Halo", "http://dbpedia.org/resource/The_Kids_From_C.A.P.E.R.", "http://dbpedia.org/resource/The_Krofft_Superstar_Hour", "http://dbpedia.org/resource/The_Last_Hurrah_(1977_film)", "http://dbpedia.org/resource/The_Legend_of_Sleepy_Hollow_(1980_film)", "http://dbpedia.org/resource/The_Lieutenant", "http://dbpedia.org/resource/The_Life_and_Times_of_Grizzly_Adams", "http://dbpedia.org/resource/The_Little_Drummer_Boy_(TV_special)", "http://dbpedia.org/resource/The_Little_Rascals_Christmas_Special", "http://dbpedia.org/resource/The_Long_Island_Incident", "http://dbpedia.org/resource/The_Long_Summer_of_George_Adams", "http://dbpedia.org/resource/The_Lyon's_Den", "http://dbpedia.org/resource/The_Magic_Clown", "http://dbpedia.org/resource/The_Magical_Legend_of_the_Leprechauns", "http://dbpedia.org/resource/The_Magician_(American_TV_series)", "http://dbpedia.org/resource/The_Magnificent_Marble_Machine", "http://dbpedia.org/resource/The_Man_from_U.N.C.L.E.", "http://dbpedia.org/resource/The_Marriage_Ref_(American_TV_series)", "http://dbpedia.org/resource/The_Martin_Short_Show_(1994_TV_series)", "http://dbpedia.org/resource/The_Mask_of_Sheba", "http://dbpedia.org/resource/The_Master_(American_TV_series)", "http://dbpedia.org/resource/The_Matthew_Shepard_Story", "http://dbpedia.org/resource/The_McLean_Stevenson_Show", "http://dbpedia.org/resource/The_Michael_J._Fox_Show", "http://dbpedia.org/resource/The_Michael_Richards_Show", "http://dbpedia.org/resource/The_Mighty_Hercules", "http://dbpedia.org/resource/The_Misadventures_of_Sheriff_Lobo", "http://dbpedia.org/resource/The_Mommies_(TV_series)", "http://dbpedia.org/resource/The_Mouse_on_the_Mayflower", "http://dbpedia.org/resource/The_Munsters'_Revenge", "http://dbpedia.org/resource/The_Mysteries_of_Laura", "http://dbpedia.org/resource/The_Mysterious_Origins_of_Man", "http://dbpedia.org/resource/The_Mystery_of_the_Sphinx", "http://dbpedia.org/resource/The_Name_of_the_Game_(TV_series)", "http://dbpedia.org/resource/The_New_Adventures_of_Flash_Gordon", "http://dbpedia.org/resource/The_New_Adventures_of_Huckleberry_Finn", "http://dbpedia.org/resource/The_New_Archie_and_Sabrina_Hour", "http://dbpedia.org/resource/The_New_Archies", "http://dbpedia.org/resource/The_New_Celebrity_Apprentice", "http://dbpedia.org/resource/The_New_Fantastic_Four", "http://dbpedia.org/resource/The_New_Fred_and_Barney_Show", "http://dbpedia.org/resource/The_New_Normal_(TV_series)", "http://dbpedia.org/resource/The_New_Show", "http://dbpedia.org/resource/The_News_Is_the_News", "http://dbpedia.org/resource/The_Night_Shift_(TV_series)", "http://dbpedia.org/resource/The_Night_the_Bridge_Fell_Down", "http://dbpedia.org/resource/The_Norliss_Tapes", "http://dbpedia.org/resource/The_Nutt_House", "http://dbpedia.org/resource/The_Odyssey_(1997_miniseries)", "http://dbpedia.org/resource/The_Office_(American_TV_series)", "http://dbpedia.org/resource/The_Office_(American_season_1)", "http://dbpedia.org/resource/The_Office_(American_season_2)", "http://dbpedia.org/resource/The_Office_(American_season_3)", "http://dbpedia.org/resource/The_Office_(American_season_4)", "http://dbpedia.org/resource/The_Office_(American_season_5)", "http://dbpedia.org/resource/The_Office_(American_season_6)", "http://dbpedia.org/resource/The_Office_(American_season_7)", "http://dbpedia.org/resource/The_Office_(American_season_8)", "http://dbpedia.org/resource/The_Office_(American_season_9)", "http://dbpedia.org/resource/The_Old_Man_and_the_Sea_(1990_film)", "http://dbpedia.org/resource/The_Ordeal_of_Dr._Shannon", "http://dbpedia.org/resource/The_Oregon_Trail_(TV_series)", "http://dbpedia.org/resource/The_Others_(TV_series)", "http://dbpedia.org/resource/The_Outsider_(1968_TV_series)", "http://dbpedia.org/resource/The_Paul_Reiser_Show", "http://dbpedia.org/resource/The_Phantom_of_the_Opera_(miniseries)", "http://dbpedia.org/resource/The_Philanthropist_(TV_series)", "http://dbpedia.org/resource/The_Pied_Piper_of_Hamelin_(1957_film)", "http://dbpedia.org/resource/The_Pink_Panther_Show", "http://dbpedia.org/resource/The_Playboy_Club", "http://dbpedia.org/resource/The_Player_(2015_TV_series)", "http://dbpedia.org/resource/The_Poseidon_Adventure_(2005_film)", "http://dbpedia.org/resource/The_Possessed_(1977_film)", "http://dbpedia.org/resource/The_Powers_That_Be_(TV_series)", "http://dbpedia.org/resource/The_Powers_of_Matthew_Star", "http://dbpedia.org/resource/The_Pretender_(TV_series)", "http://dbpedia.org/resource/The_Psychiatrist_(TV_series)", "http://dbpedia.org/resource/The_Pursuit_of_Happiness_(1995_TV_series)", "http://dbpedia.org/resource/The_Questor_Tapes", "http://dbpedia.org/resource/The_Real_Wedding_Crashers", "http://dbpedia.org/resource/The_Red_Pony_(1973_film)", "http://dbpedia.org/resource/The_Restaurant_(American_TV_series)", "http://dbpedia.org/resource/The_Restless_Gun", "http://dbpedia.org/resource/The_Revlon_Mirror_Theater", "http://dbpedia.org/resource/The_Richard_Pryor_Show", "http://dbpedia.org/resource/The_Rockford_Files", "http://dbpedia.org/resource/The_Rockford_Files_(season_1)", "http://dbpedia.org/resource/The_Rockford_Files_(season_2)", "http://dbpedia.org/resource/The_Rockford_Files_(season_3)", "http://dbpedia.org/resource/The_Rockford_Files_(season_4)", "http://dbpedia.org/resource/The_Rockford_Files_(season_5)", "http://dbpedia.org/resource/The_Rockford_Files_(season_6)", "http://dbpedia.org/resource/The_Rogues_(TV_series)", "http://dbpedia.org/resource/The_Roller_Girls", "http://dbpedia.org/resource/The_Round_Table_(TV_series)", "http://dbpedia.org/resource/The_Rousters", "http://dbpedia.org/resource/The_Ruff_and_Reddy_Show", "http://dbpedia.org/resource/The_Savage_Bees", "http://dbpedia.org/resource/The_Scarlett_O'Hara_War", "http://dbpedia.org/resource/The_Second_Half", "http://dbpedia.org/resource/The_Secret_Lives_of_Waldo_Kitty", "http://dbpedia.org/resource/The_Shari_Lewis_Show", "http://dbpedia.org/resource/The_Sing-Off_(season_1)", "http://dbpedia.org/resource/The_Sing-Off_(season_2)", "http://dbpedia.org/resource/The_Sing-Off_(season_3)", "http://dbpedia.org/resource/The_Sing-Off_(season_4)", "http://dbpedia.org/resource/The_Singing_Bee_(American_game_show)", "http://dbpedia.org/resource/The_Single_Guy", "http://dbpedia.org/resource/The_Sky's_the_Limit_(1975_film)", "http://dbpedia.org/resource/The_Smurfs_(1981_TV_series)", "http://dbpedia.org/resource/The_Snoop_Sisters", "http://dbpedia.org/resource/The_Space_Kidettes", "http://dbpedia.org/resource/The_Special_London_Bridge_Special", "http://dbpedia.org/resource/The_Spell_(1977_film)", "http://dbpedia.org/resource/The_Spike_Jones_Show_(series)", "http://dbpedia.org/resource/The_Stepford_Children", "http://dbpedia.org/resource/The_StoryTeller_(TV_series)", "http://dbpedia.org/resource/The_Strange_Possession_of_Mrs._Oliver", "http://dbpedia.org/resource/The_Straw_Hat_Matinee", "http://dbpedia.org/resource/The_Super_Globetrotters", "http://dbpedia.org/resource/The_Temptations_(miniseries)", "http://dbpedia.org/resource/The_Thing_About_Pam", "http://dbpedia.org/resource/The_Titan_Games", "http://dbpedia.org/resource/The_Tomorrow_Show", "http://dbpedia.org/resource/The_Tonight_Show_Starring_Jimmy_Fallon", "http://dbpedia.org/resource/The_Tonight_Show_Starring_Johnny_Carson", "http://dbpedia.org/resource/The_Tonight_Show_with_Conan_O'Brien", "http://dbpedia.org/resource/The_Tonight_Show_with_Jay_Leno", "http://dbpedia.org/resource/The_Tony_Danza_Show_(1997_TV_series)", "http://dbpedia.org/resource/The_Torkelsons", "http://dbpedia.org/resource/The_Tortellis", "http://dbpedia.org/resource/The_Town_Santa_Forgot", "http://dbpedia.org/resource/The_Trial_of_the_Incredible_Hulk", "http://dbpedia.org/resource/The_Vegas_Strip_War", "http://dbpedia.org/resource/The_Village_(2019_TV_series)", "http://dbpedia.org/resource/The_Virginian_(TV_series)", "http://dbpedia.org/resource/The_Voice_(American_season_1)", "http://dbpedia.org/resource/The_Voice_(American_season_10)", "http://dbpedia.org/resource/The_Voice_(American_season_11)", "http://dbpedia.org/resource/The_Voice_(American_season_12)", "http://dbpedia.org/resource/The_Voice_(American_season_13)", "http://dbpedia.org/resource/The_Voice_(American_season_14)", "http://dbpedia.org/resource/The_Voice_(American_season_15)", "http://dbpedia.org/resource/The_Voice_(American_season_16)", "http://dbpedia.org/resource/The_Voice_(American_season_17)", "http://dbpedia.org/resource/The_Voice_(American_season_18)", "http://dbpedia.org/resource/The_Voice_(American_season_19)", "http://dbpedia.org/resource/The_Voice_(American_season_2)", "http://dbpedia.org/resource/The_Voice_(American_season_20)", "http://dbpedia.org/resource/The_Voice_(American_season_21)", "http://dbpedia.org/resource/The_Voice_(American_season_22)", "http://dbpedia.org/resource/The_Voice_(American_season_3)", "http://dbpedia.org/resource/The_Voice_(American_season_4)", "http://dbpedia.org/resource/The_Voice_(American_season_5)", "http://dbpedia.org/resource/The_Voice_(American_season_6)", "http://dbpedia.org/resource/The_Voice_(American_season_7)", "http://dbpedia.org/resource/The_Voice_(American_season_8)", "http://dbpedia.org/resource/The_Voice_(American_season_9)", "http://dbpedia.org/resource/The_Wall_(American_game_show)", "http://dbpedia.org/resource/The_Waverly_Wonders", "http://dbpedia.org/resource/The_West_Wing", "http://dbpedia.org/resource/The_West_Wing_(season_1)", "http://dbpedia.org/resource/The_West_Wing_(season_2)", "http://dbpedia.org/resource/The_West_Wing_(season_3)", "http://dbpedia.org/resource/The_West_Wing_(season_4)", "http://dbpedia.org/resource/The_West_Wing_(season_5)", "http://dbpedia.org/resource/The_West_Wing_(season_6)", "http://dbpedia.org/resource/The_West_Wing_(season_7)", "http://dbpedia.org/resource/The_Who,_What,_or_Where_Game", "http://dbpedia.org/resource/The_Winds_of_Kitty_Hawk", "http://dbpedia.org/resource/The_Winds_of_Whoopie", "http://dbpedia.org/resource/The_World's_Most_Dangerous_Magic", "http://dbpedia.org/resource/The_World_of_Mr._Sweeney", "http://dbpedia.org/resource/The_Year_Without_a_Santa_Claus_(2006_film)", "http://dbpedia.org/resource/The_Yellow_Rose", "http://dbpedia.org/resource/The_Young_Runaways_(1978_film)", "http://dbpedia.org/resource/Then_Came_Bronson", "http://dbpedia.org/resource/17th_Primetime_Emmy_Awards", "http://dbpedia.org/resource/1_vs._100_(American_game_show)", "http://dbpedia.org/resource/1st_Annual_NFL_Honors", "http://dbpedia.org/resource/1st_Look", "http://dbpedia.org/resource/1st_Screen_Actors_Guild_Awards", "http://dbpedia.org/resource/2001_Brickyard_400", "http://dbpedia.org/resource/2001_EA_Sports_500", "http://dbpedia.org/resource/2001_Mountain_Dew_Southern_500", "http://dbpedia.org/resource/2002_Brickyard_400", "http://dbpedia.org/resource/2002_NBA_All-Star_Game", "http://dbpedia.org/resource/2003_Brickyard_400", "http://dbpedia.org/resource/2003_EA_Sports_500", "http://dbpedia.org/resource/2003_Ford_400", "http://dbpedia.org/resource/2003_Mountain_Dew_Southern_500", "http://dbpedia.org/resource/2004_Banquet_400", "http://dbpedia.org/resource/2004_Brickyard_400", "http://dbpedia.org/resource/2004_EA_Sports_500", "http://dbpedia.org/resource/2004_Mountain_Dew_Southern_500", "http://dbpedia.org/resource/2004_Pop_Secret_500", "http://dbpedia.org/resource/2005_Brickyard_400", "http://dbpedia.org/resource/2005_Sony_HD_500", "http://dbpedia.org/resource/2005_UAW-Ford_500", "http://dbpedia.org/resource/2006_AMD_at_the_Glen", "http://dbpedia.org/resource/2006_Bank_of_America_500", "http://dbpedia.org/resource/2006_Banquet_400", "http://dbpedia.org/resource/2006_Bass_Pro_Shops_MBNA_500", "http://dbpedia.org/resource/2006_Brickyard_400", "http://dbpedia.org/resource/2006_Goody's_250_(Martinsville)", "http://dbpedia.org/resource/2006_Sony_HD_500", "http://dbpedia.org/resource/2006_Subway_500", "http://dbpedia.org/resource/2006_UAW-Ford_500", "http://dbpedia.org/resource/2022_Billboard_Music_Awards", "http://dbpedia.org/resource/227_(TV_series)", "http://dbpedia.org/resource/22nd_Daytime_Emmy_Awards", "http://dbpedia.org/resource/28th_Daytime_Emmy_Awards", "http://dbpedia.org/resource/2nd_Screen_Actors_Guild_Awards", "http://dbpedia.org/resource/30_Rock", "http://dbpedia.org/resource/30_Rock_(season_1)", "http://dbpedia.org/resource/30_Rock_(season_2)", "http://dbpedia.org/resource/30_Rock_(season_3)", "http://dbpedia.org/resource/30_Rock_(season_4)", "http://dbpedia.org/resource/30_Rock_(season_5)", "http://dbpedia.org/resource/30_Rock_(season_6)", "http://dbpedia.org/resource/30_Rock_(season_7)", "http://dbpedia.org/resource/31st_Daytime_Emmy_Awards", "http://dbpedia.org/resource/32nd_Primetime_Emmy_Awards", "http://dbpedia.org/resource/33\u2153_Revolutions_per_Monkee", "http://dbpedia.org/resource/35th_Primetime_Emmy_Awards", "http://dbpedia.org/resource/38th_Primetime_Emmy_Awards", "http://dbpedia.org/resource/3rd_Rock_from_the_Sun", "http://dbpedia.org/resource/3rd_Rock_from_the_Sun_(season_1)", "http://dbpedia.org/resource/3rd_Rock_from_the_Sun_(season_2)", "http://dbpedia.org/resource/3rd_Rock_from_the_Sun_(season_3)", "http://dbpedia.org/resource/3rd_Rock_from_the_Sun_(season_4)", "http://dbpedia.org/resource/3rd_Rock_from_the_Sun_(season_5)", "http://dbpedia.org/resource/3rd_Rock_from_the_Sun_(season_6)", "http://dbpedia.org/resource/3rd_Screen_Actors_Guild_Awards", "http://dbpedia.org/resource/47th_People's_Choice_Awards", "http://dbpedia.org/resource/4th_Annual_NFL_Honors", "http://dbpedia.org/resource/50_Grand_Slam", "http://dbpedia.org/resource/50th_Primetime_Emmy_Awards", "http://dbpedia.org/resource/54th_Primetime_Emmy_Awards", "http://dbpedia.org/resource/58th_Primetime_Emmy_Awards", "http://dbpedia.org/resource/62nd_Primetime_Emmy_Awards", "http://dbpedia.org/resource/66th_Primetime_Emmy_Awards", "http://dbpedia.org/resource/74th_Primetime_Emmy_Awards", "http://dbpedia.org/resource/75th_Golden_Globe_Awards", "http://dbpedia.org/resource/76th_Golden_Globe_Awards", "http://dbpedia.org/resource/79_Park_Avenue", "http://dbpedia.org/resource/7th_Annual_NFL_Honors", "http://dbpedia.org/resource/A.D._The_Bible_Continues", "http://dbpedia.org/resource/A.P._Bio", "http://dbpedia.org/resource/A.U.S.A.", "http://dbpedia.org/resource/AFL_on_NBC", "http://dbpedia.org/resource/ALF:_The_Animated_Series", "http://dbpedia.org/resource/ALF_(TV_series)", "http://dbpedia.org/resource/ALF_(season_1)", "http://dbpedia.org/resource/ALF_(season_2)", "http://dbpedia.org/resource/ALF_(season_3)", "http://dbpedia.org/resource/ALF_(season_4)", "http://dbpedia.org/resource/ALF_Tales", "http://dbpedia.org/resource/No_Man's_Land_(1984_film)", "http://dbpedia.org/resource/No_One_Would_Tell", "http://dbpedia.org/resource/Noah's_Ark_(miniseries)", "http://dbpedia.org/resource/Norby_(TV_series)", "http://dbpedia.org/resource/Northwest_Passage_(TV_series)", "http://dbpedia.org/resource/Nothing_in_Common_(TV_series)", "http://dbpedia.org/resource/Notre_Dame_Football_on_NBC", "http://dbpedia.org/resource/Nurses_(American_TV_series)", "http://dbpedia.org/resource/Nurses_(Canadian_TV_series)", "http://dbpedia.org/resource/2018_Billboard_Music_Awards", "http://dbpedia.org/resource/2019_Billboard_Music_Awards", "http://dbpedia.org/resource/2020_Billboard_Music_Awards", "http://dbpedia.org/resource/2020_Drive_for_the_Cure_250", "http://dbpedia.org/resource/2021_Billboard_Music_Awards", "http://dbpedia.org/resource/2021_Henry_180", "http://dbpedia.org/resource/City_Guys", "http://dbpedia.org/resource/City_of_Angels_(1976_TV_series)", "http://dbpedia.org/resource/Clash_of_the_Choirs", "http://dbpedia.org/resource/Class_Cruise", "http://dbpedia.org/resource/Cliffhangers_(TV_series)", "http://dbpedia.org/resource/Cocaine:_One_Man's_Seduction", "http://dbpedia.org/resource/Cold_Feet_(American_TV_series)", "http://dbpedia.org/resource/College_Basketball_on_NBC_Sports", "http://dbpedia.org/resource/College_Football_on_NBC_Sports", "http://dbpedia.org/resource/Columbo_(season_1)", "http://dbpedia.org/resource/Columbo_(season_2)", "http://dbpedia.org/resource/Columbo_(season_3)", "http://dbpedia.org/resource/Columbo_(season_4)", "http://dbpedia.org/resource/Columbo_(season_5)", "http://dbpedia.org/resource/Columbo_(season_6)", "http://dbpedia.org/resource/Columbo_(season_7)", "http://dbpedia.org/resource/Come_to_Papa_(TV_series)", "http://dbpedia.org/resource/Committed_(American_TV_series)", "http://dbpedia.org/resource/Community_(season_1)", "http://dbpedia.org/resource/Community_(season_2)", "http://dbpedia.org/resource/Community_(season_3)", "http://dbpedia.org/resource/Community_(season_4)", "http://dbpedia.org/resource/Community_(season_5)", "http://dbpedia.org/resource/Concentration_(game_show)", "http://dbpedia.org/resource/Conrad_Bloom", "http://dbpedia.org/resource/Constantine_(TV_series)", "http://dbpedia.org/resource/Contract_on_Cherry_Street", "http://dbpedia.org/resource/Conviction_(2006_TV_series)", "http://dbpedia.org/resource/Cool_McCool", "http://dbpedia.org/resource/Johnny_Shiloh_(film)", "http://dbpedia.org/resource/Jokebook", "http://dbpedia.org/resource/Journeyman_(TV_series)", "http://dbpedia.org/resource/Sara_(1985_TV_series)", "http://dbpedia.org/resource/Sarah_T._\u2013_Portrait_of_a_Teenage_Alcoholic", "http://dbpedia.org/resource/Saturday_Night_Live", "http://dbpedia.org/resource/Saturday_Night_Live_(season_1)", "http://dbpedia.org/resource/Saturday_Night_Live_(season_10)", "http://dbpedia.org/resource/Saturday_Night_Live_(season_11)", "http://dbpedia.org/resource/Saturday_Night_Live_(season_12)", "http://dbpedia.org/resource/Saturday_Night_Live_(season_13)", "http://dbpedia.org/resource/Saturday_Night_Live_(season_14)", "http://dbpedia.org/resource/Saturday_Night_Live_(season_15)", "http://dbpedia.org/resource/Saturday_Night_Live_(season_16)", "http://dbpedia.org/resource/Saturday_Night_Live_(season_17)", "http://dbpedia.org/resource/Saturday_Night_Live_(season_18)", "http://dbpedia.org/resource/Saturday_Night_Live_(season_19)", "http://dbpedia.org/resource/Saturday_Night_Live_(season_2)", "http://dbpedia.org/resource/Saturday_Night_Live_(season_20)", "http://dbpedia.org/resource/Saturday_Night_Live_(season_21)", "http://dbpedia.org/resource/Saturday_Night_Live_(season_22)", "http://dbpedia.org/resource/Saturday_Night_Live_(season_23)", "http://dbpedia.org/resource/Saturday_Night_Live_(season_24)", "http://dbpedia.org/resource/Saturday_Night_Live_(season_25)", "http://dbpedia.org/resource/Saturday_Night_Live_(season_26)", "http://dbpedia.org/resource/Saturday_Night_Live_(season_27)", "http://dbpedia.org/resource/Saturday_Night_Live_(season_28)", "http://dbpedia.org/resource/Saturday_Night_Live_(season_29)", "http://dbpedia.org/resource/Saturday_Night_Live_(season_3)", "http://dbpedia.org/resource/Saturday_Night_Live_(season_30)", "http://dbpedia.org/resource/Saturday_Night_Live_(season_31)", "http://dbpedia.org/resource/Saturday_Night_Live_(season_32)", "http://dbpedia.org/resource/Saturday_Night_Live_(season_33)", "http://dbpedia.org/resource/Saturday_Night_Live_(season_34)", "http://dbpedia.org/resource/Saturday_Night_Live_(season_35)", "http://dbpedia.org/resource/Saturday_Night_Live_(season_36)", "http://dbpedia.org/resource/Saturday_Night_Live_(season_37)", "http://dbpedia.org/resource/Saturday_Night_Live_(season_38)", "http://dbpedia.org/resource/Saturday_Night_Live_(season_39)", "http://dbpedia.org/resource/Saturday_Night_Live_(season_4)", "http://dbpedia.org/resource/Saturday_Night_Live_(season_40)", "http://dbpedia.org/resource/Saturday_Night_Live_(season_41)", "http://dbpedia.org/resource/Saturday_Night_Live_(season_42)", "http://dbpedia.org/resource/Saturday_Night_Live_(season_43)", "http://dbpedia.org/resource/Saturday_Night_Live_(season_44)", "http://dbpedia.org/resource/Saturday_Night_Live_(season_45)", "http://dbpedia.org/resource/Saturday_Night_Live_(season_46)", "http://dbpedia.org/resource/Saturday_Night_Live_(season_47)", "http://dbpedia.org/resource/Saturday_Night_Live_(season_5)", "http://dbpedia.org/resource/Saturday_Night_Live_(season_6)", "http://dbpedia.org/resource/Saturday_Night_Live_(season_7)", "http://dbpedia.org/resource/Saturday_Night_Live_(season_8)", "http://dbpedia.org/resource/Saturday_Night_Live_(season_9)", "http://dbpedia.org/resource/Saturday_Night_Live_Weekend_Update_Thursday", "http://dbpedia.org/resource/Save_Me_(American_TV_series)", "http://dbpedia.org/resource/Saved_by_the_Bell", "http://dbpedia.org/resource/Saved_by_the_Bell:_The_College_Years", "http://dbpedia.org/resource/Saved_by_the_Bell:_The_New_Class", "http://dbpedia.org/resource/Say_When!!", "http://dbpedia.org/resource/Science_of_Love", "http://dbpedia.org/resource/Scout's_Safari", "http://dbpedia.org/resource/Scrubs_(season_1)", "http://dbpedia.org/resource/Scrubs_(season_2)", "http://dbpedia.org/resource/Scrubs_(season_3)", "http://dbpedia.org/resource/Scrubs_(season_4)", "http://dbpedia.org/resource/Scrubs_(season_5)", "http://dbpedia.org/resource/Scrubs_(season_6)", "http://dbpedia.org/resource/Scrubs_(season_7)", "http://dbpedia.org/resource/SeaQuest_DSV", "http://dbpedia.org/resource/Sealab_2020", "http://dbpedia.org/resource/Sean_Saves_the_World", "http://dbpedia.org/resource/Seasons_of_the_Heart_(1994_film)", "http://dbpedia.org/resource/Secret_Service_(TV_series)", "http://dbpedia.org/resource/Secrets_of_a_Married_Man", "http://dbpedia.org/resource/Secrets_of_the_Mountain", "http://dbpedia.org/resource/Seduced_by_Madness", "http://dbpedia.org/resource/Seinfeld", "http://dbpedia.org/resource/Seinfeld_(season_1)", "http://dbpedia.org/resource/Seinfeld_(season_2)", "http://dbpedia.org/resource/Seinfeld_(season_3)", "http://dbpedia.org/resource/Seinfeld_(season_4)", "http://dbpedia.org/resource/Seinfeld_(season_5)", "http://dbpedia.org/resource/Seinfeld_(season_6)", "http://dbpedia.org/resource/Seinfeld_(season_7)", "http://dbpedia.org/resource/Seinfeld_(season_8)", "http://dbpedia.org/resource/Seinfeld_(season_9)", "http://dbpedia.org/resource/B._J._and_the_Bear", "http://dbpedia.org/resource/Baa_Baa_Black_Sheep_(TV_series)", "http://dbpedia.org/resource/Babes_in_Toyland_(1986_film)", "http://dbpedia.org/resource/Baby_Boom_(American_TV_series)", "http://dbpedia.org/resource/Baby_Brokers", "http://dbpedia.org/resource/Back_to_the_Streets_of_San_Francisco", "http://dbpedia.org/resource/Backstairs_at_the_White_House", "http://dbpedia.org/resource/Baggy_Pants_and_the_Nitwits", "http://dbpedia.org/resource/Banacek", "http://dbpedia.org/resource/Bank_on_the_Stars", "http://dbpedia.org/resource/Banyon", "http://dbpedia.org/resource/Bare_Essence", "http://dbpedia.org/resource/Bates_Motel_(film)", "http://dbpedia.org/resource/Battery_Park_(TV_series)", "http://dbpedia.org/resource/Inside_Schwartz", "http://dbpedia.org/resource/Inspector_Gadget_Saves_Christmas", "http://dbpedia.org/resource/Ironside_(2013_TV_series)", "http://dbpedia.org/resource/It's_Punky_Brewster", "http://dbpedia.org/resource/It's_Worth_What%3F", "http://dbpedia.org/resource/It's_Your_Move", "http://dbpedia.org/resource/It's_a_Very_Merry_Muppet_Christmas_Movie", "http://dbpedia.org/resource/It_Pays_to_Be_Ignorant", "http://dbpedia.org/resource/It_Takes_Two_(game_show)", "http://dbpedia.org/resource/J.J._Starbuck", "http://dbpedia.org/resource/JAG_(TV_series)", "http://dbpedia.org/resource/JAG_(season_1)", "http://dbpedia.org/resource/Jack_Frost_(TV_special)", "http://dbpedia.org/resource/Misfits_of_Science", "http://dbpedia.org/resource/Miss_Match", "http://dbpedia.org/resource/Mister_Magoo's_Christmas_Carol", "http://dbpedia.org/resource/Mister_Sterling", "http://dbpedia.org/resource/Mister_T_(TV_series)", "http://dbpedia.org/resource/Moment_of_Truth:_A_Mother's_Deception", "http://dbpedia.org/resource/Moment_of_Truth:_Cradle_of_Conspiracy", "http://dbpedia.org/resource/Momma's_Boys", "http://dbpedia.org/resource/Monster_Squad", "http://dbpedia.org/resource/Monsters_vs._Aliens:_Mutant_Pumpkins_from_Outer_Space", "http://dbpedia.org/resource/Most_Outrageous_Moments", "http://dbpedia.org/resource/Movin'_with_Nancy", "http://dbpedia.org/resource/Mr._Cartoon", "http://dbpedia.org/resource/Mr._Krueger's_Christmas", "http://dbpedia.org/resource/Mr._Mayor", "http://dbpedia.org/resource/Mr._Rhodes", "http://dbpedia.org/resource/Mr._Robinson_(TV_series)", "http://dbpedia.org/resource/Mr._Rock_'n'_Roll:_The_Alan_Freed_Story", "http://dbpedia.org/resource/Murder_in_Mississippi", "http://dbpedia.org/resource/My_Dad_Is_Better_than_Your_Dad", "http://dbpedia.org/resource/My_Friend_Tony", "http://dbpedia.org/resource/My_Hero_(American_TV_series)", "http://dbpedia.org/resource/My_Mother_the_Car", "http://dbpedia.org/resource/My_Name_Is_Earl", "http://dbpedia.org/resource/My_Name_Is_Earl_(season_1)", "http://dbpedia.org/resource/My_Name_Is_Earl_(season_2)", "http://dbpedia.org/resource/My_Name_Is_Earl_(season_3)", "http://dbpedia.org/resource/My_Name_Is_Earl_(season_4)", "http://dbpedia.org/resource/My_Own_Worst_Enemy_(TV_series)", "http://dbpedia.org/resource/My_Son_Jeep", "http://dbpedia.org/resource/My_Sweet_Charlie", "http://dbpedia.org/resource/My_Two_Dads", "http://dbpedia.org/resource/My_World_and_Welcome_to_It", "http://dbpedia.org/resource/Mysterious_Ways_(TV_series)", "http://dbpedia.org/resource/NASCAR_on_NBC", "http://dbpedia.org/resource/NBA_on_NBC", "http://dbpedia.org/resource/NBC_60th_Anniversary_Celebration", "http://dbpedia.org/resource/NBC_Experiment_in_Television", "http://dbpedia.org/resource/NBC_New_Year's_Eve_specials", "http://dbpedia.org/resource/NBC_News_at_Sunrise", "http://dbpedia.org/resource/NBC_Nightly_News", "http://dbpedia.org/resource/NBC_Nightside", "http://dbpedia.org/resource/NBC_Olympic_broadcasts", "http://dbpedia.org/resource/NBC_Sunday_Night_Football", "http://dbpedia.org/resource/NBC_White_Paper", "http://dbpedia.org/resource/NFL_on_NBC", "http://dbpedia.org/resource/NHL_on_NBC", "http://dbpedia.org/resource/Nashville_Star", "http://dbpedia.org/resource/Nasty_Boys_(TV_series)", "http://dbpedia.org/resource/Tonight_Starring_Jack_Paar", "http://dbpedia.org/resource/Tonight_Starring_Steve_Allen", "http://dbpedia.org/resource/Tony_Bennett_Celebrates_90", "http://dbpedia.org/resource/Too_Young_to_Die%3F", "http://dbpedia.org/resource/Totally_Minnie", "http://dbpedia.org/resource/Trauma_(American_TV_series)", "http://dbpedia.org/resource/Treasure_Hunt_(American_game_show)", "http://dbpedia.org/resource/Treasure_Hunters_(TV_series)", "http://dbpedia.org/resource/Trial_&_Error_(TV_series)", "http://dbpedia.org/resource/Trinity_(American_TV_series)", "http://dbpedia.org/resource/Triumph_Over_Disaster:_The_Hurricane_Andrew_Story", "http://dbpedia.org/resource/Trolls:_Holiday_in_Harmony", "http://dbpedia.org/resource/Trolls_Holiday", "http://dbpedia.org/resource/True_Blue_(TV_series)", "http://dbpedia.org/resource/Truth_or_Consequences", "http://dbpedia.org/resource/Tucker_(2000_TV_series)", "http://dbpedia.org/resource/Twenty-One_(game_show)", "http://dbpedia.org/resource/Twenty_Good_Years", "http://dbpedia.org/resource/1983_Winston_500", "http://dbpedia.org/resource/1984_Winston_500", "http://dbpedia.org/resource/1985_Winston_500", "http://dbpedia.org/resource/1986_(American_TV_series)", "http://dbpedia.org/resource/A_Chipmunk_Christmas", "http://dbpedia.org/resource/A_Chipmunk_Reunion", "http://dbpedia.org/resource/A_Christmas_Carol_(2004_film)", "http://dbpedia.org/resource/A_Different_World", "http://dbpedia.org/resource/A_Family_Upside_Down", "http://dbpedia.org/resource/A_Family_for_Joe", "http://dbpedia.org/resource/A_Flintstone_Christmas", "http://dbpedia.org/resource/A_Howling_in_the_Woods", "http://dbpedia.org/resource/A_Legendary_Christmas_with_John_and_Chrissy", "http://dbpedia.org/resource/A_Little_Late_with_Lilly_Singh", "http://dbpedia.org/resource/A_Little_Piece_of_Heaven_(film)", "http://dbpedia.org/resource/A_Man_Called_Sloane", "http://dbpedia.org/resource/A_Man_and_His_Music_+_Ella_+_Jobim", "http://dbpedia.org/resource/A_Man_and_His_Music_\u2013_Part_II", "http://dbpedia.org/resource/A_Matter_of_Justice", "http://dbpedia.org/resource/A_Mom_for_Christmas", "http://dbpedia.org/resource/A_Muppets_Christmas:_Letters_to_Santa", "http://dbpedia.org/resource/A_Reason_to_Live_(1985_film)", "http://dbpedia.org/resource/A_Very_Wicked_Halloween", "http://dbpedia.org/resource/A_Woman_Called_Moses", "http://dbpedia.org/resource/A_Woman_of_Independent_Means", "http://dbpedia.org/resource/A_Year_in_the_Life", "http://dbpedia.org/resource/Aaron's_Way", "http://dbpedia.org/resource/Abby's", "http://dbpedia.org/resource/About_a_Boy_(TV_series)", "http://dbpedia.org/resource/Academy_Theatre", "http://dbpedia.org/resource/Acapulco_(1961_TV_series)", "http://dbpedia.org/resource/Accidental_Family", "http://dbpedia.org/resource/Adam-12", "http://dbpedia.org/resource/Against_the_Grain_(TV_series)", "http://dbpedia.org/resource/Age_of_Love_(TV_series)", "http://dbpedia.org/resource/2014_iHeartRadio_Music_Awards", "http://dbpedia.org/resource/Buffalo_Bill_(TV_series)", "http://dbpedia.org/resource/Buford_and_the_Galloping_Ghost", "http://dbpedia.org/resource/Built_to_Last_(TV_series)", "http://dbpedia.org/resource/Buried_Secrets_(film)", "http://dbpedia.org/resource/C.A.T._Squad", "http://dbpedia.org/resource/C.P.O._Sharkey", "http://dbpedia.org/resource/C._Everett_Koop,_M.D.", "http://dbpedia.org/resource/CB_Bears", "http://dbpedia.org/resource/Caesar's_Hour", "http://dbpedia.org/resource/Caf\u00e9_Americain", "http://dbpedia.org/resource/California_Dreams", "http://dbpedia.org/resource/Call_My_Bluff_(American_game_show)", "http://dbpedia.org/resource/Camel_News_Caravan", "http://dbpedia.org/resource/Camp_(TV_series)", "http://dbpedia.org/resource/Camp_Candy", "http://dbpedia.org/resource/Campus_Hoopla", "http://dbpedia.org/resource/Cave-In!", "http://dbpedia.org/resource/Celebrity_Cooking_Showdown", "http://dbpedia.org/resource/Centennial_(miniseries)", "http://dbpedia.org/resource/Chain_Letter_(American_game_show)", "http://dbpedia.org/resource/Champions_(American_TV_series)", "http://dbpedia.org/resource/Chase_(1973_TV_series)", "http://dbpedia.org/resource/Chase_(2010_TV_series)", "http://dbpedia.org/resource/Cheers", "http://dbpedia.org/resource/Cheers_(season_1)", "http://dbpedia.org/resource/Cheers_(season_10)", "http://dbpedia.org/resource/Cheers_(season_11)", "http://dbpedia.org/resource/Cheers_(season_2)", "http://dbpedia.org/resource/Cheers_(season_3)", "http://dbpedia.org/resource/Cheers_(season_4)", "http://dbpedia.org/resource/Cheers_(season_5)", "http://dbpedia.org/resource/Cheers_(season_6)", "http://dbpedia.org/resource/Cheers_(season_7)", "http://dbpedia.org/resource/Cheers_(season_8)", "http://dbpedia.org/resource/Cheers_(season_9)", "http://dbpedia.org/resource/Chicago_Fire_(TV_series)", "http://dbpedia.org/resource/Chicago_Fire_(season_1)", "http://dbpedia.org/resource/Chicago_Fire_(season_10)", "http://dbpedia.org/resource/Chicago_Fire_(season_2)", "http://dbpedia.org/resource/Chicago_Fire_(season_3)", "http://dbpedia.org/resource/Chicago_Fire_(season_4)", "http://dbpedia.org/resource/Chicago_Fire_(season_5)", "http://dbpedia.org/resource/Chicago_Fire_(season_6)", "http://dbpedia.org/resource/Chicago_Fire_(season_7)", "http://dbpedia.org/resource/Chicago_Fire_(season_8)", "http://dbpedia.org/resource/Chicago_Fire_(season_9)", "http://dbpedia.org/resource/Chicago_Justice", "http://dbpedia.org/resource/Chicago_Med", "http://dbpedia.org/resource/Chicago_Med_(season_1)", "http://dbpedia.org/resource/Chicago_Med_(season_2)", "http://dbpedia.org/resource/Chicago_Med_(season_3)", "http://dbpedia.org/resource/Chicago_Med_(season_4)", "http://dbpedia.org/resource/Chicago_Med_(season_5)", "http://dbpedia.org/resource/Chicago_Med_(season_6)", "http://dbpedia.org/resource/Chicago_Med_(season_7)", "http://dbpedia.org/resource/Chicago_P.D._(TV_series)", "http://dbpedia.org/resource/Chicago_P.D._(season_1)", "http://dbpedia.org/resource/Chicago_P.D._(season_2)", "http://dbpedia.org/resource/Chicago_P.D._(season_3)", "http://dbpedia.org/resource/Chicago_P.D._(season_4)", "http://dbpedia.org/resource/Chicago_P.D._(season_5)", "http://dbpedia.org/resource/Chicago_P.D._(season_6)", "http://dbpedia.org/resource/Chicago_P.D._(season_7)", "http://dbpedia.org/resource/Chicago_P.D._(season_8)", "http://dbpedia.org/resource/Chicago_P.D._(season_9)", "http://dbpedia.org/resource/Chicago_Sons", "http://dbpedia.org/resource/Chicago_Story", "http://dbpedia.org/resource/Chico_and_the_Man", "http://dbpedia.org/resource/Choose_Up_Sides", "http://dbpedia.org/resource/Chuck_(TV_series)", "http://dbpedia.org/resource/Chuck_(season_1)", "http://dbpedia.org/resource/Chuck_(season_2)", "http://dbpedia.org/resource/Chuck_(season_3)", "http://dbpedia.org/resource/Chuck_(season_4)", "http://dbpedia.org/resource/Chuck_(season_5)", "http://dbpedia.org/resource/Stingray_(1985_TV_series)", "http://dbpedia.org/resource/Storybook_Squares", "http://dbpedia.org/resource/Strong_(TV_series)", "http://dbpedia.org/resource/Studio_60_on_the_Sunset_Strip", "http://dbpedia.org/resource/Suddenly_Susan", "http://dbpedia.org/resource/Sultan_and_the_Rock_Star", "http://dbpedia.org/resource/Summer_Breeze_(TV_series)", "http://dbpedia.org/resource/Summer_of_My_German_Soldier_(film)", "http://dbpedia.org/resource/Sunday_Night_with_Megyn_Kelly", "http://dbpedia.org/resource/Sunnyside_(American_TV_series)", "http://dbpedia.org/resource/Sunset_Beach_(TV_series)", "http://dbpedia.org/resource/Sunshine_(American_TV_series)", "http://dbpedia.org/resource/Super_President", "http://dbpedia.org/resource/Superstars_of_Dance", "http://dbpedia.org/resource/Superstore_(season_6)", "http://dbpedia.org/resource/Supertrain", "http://dbpedia.org/resource/Surface_(2005_TV_series)", "http://dbpedia.org/resource/Sweet_Justice", "http://dbpedia.org/resource/Sweet_Surrender_(TV_series)", "http://dbpedia.org/resource/Take_a_Chance_(American_game_show)", "http://dbpedia.org/resource/6th_Annual_Grammy_Awards", "http://dbpedia.org/resource/70th_Golden_Globe_Awards", "http://dbpedia.org/resource/70th_Primetime_Emmy_Awards", "http://dbpedia.org/resource/77th_Golden_Globe_Awards", "http://dbpedia.org/resource/78th_Golden_Globe_Awards", "http://dbpedia.org/resource/7th_Annual_Grammy_Awards", "http://dbpedia.org/resource/7th_Daytime_Emmy_Awards", "http://dbpedia.org/resource/7th_Primetime_Emmy_Awards", "http://dbpedia.org/resource/8th_Primetime_Emmy_Awards", "http://dbpedia.org/resource/9th_Primetime_Emmy_Awards", "http://dbpedia.org/resource/Captain_N:_The_Game_Master", "http://dbpedia.org/resource/Carol_&_Company", "http://dbpedia.org/resource/Caroline_in_the_City", "http://dbpedia.org/resource/Carrie_(2002_film)", "http://dbpedia.org/resource/Casablanca_(1983_TV_series)", "http://dbpedia.org/resource/Casper's_First_Christmas", "http://dbpedia.org/resource/Casper's_Halloween_Special", "http://dbpedia.org/resource/Casper_and_the_Angels", "http://dbpedia.org/resource/Hit_Man_(American_game_show)", "http://dbpedia.org/resource/Hitched_(1971_film)", "http://dbpedia.org/resource/Hizzonner", "http://dbpedia.org/resource/Hollywood_Game_Night", "http://dbpedia.org/resource/Hollywood_Squares", "http://dbpedia.org/resource/Homeland_Security_(film)", "http://dbpedia.org/resource/Homicide:_Life_on_the_Street", "http://dbpedia.org/resource/Homicide:_Life_on_the_Street_(season_1)", "http://dbpedia.org/resource/Homicide:_Life_on_the_Street_(season_2)", "http://dbpedia.org/resource/Homicide:_Life_on_the_Street_(season_3)", "http://dbpedia.org/resource/Homicide:_Life_on_the_Street_(season_4)", "http://dbpedia.org/resource/Homicide:_Life_on_the_Street_(season_5)", "http://dbpedia.org/resource/Homicide:_Life_on_the_Street_(season_6)", "http://dbpedia.org/resource/Homicide:_Life_on_the_Street_(season_7)", "http://dbpedia.org/resource/Hope_&_Gloria", "http://dbpedia.org/resource/Hot_Country_Nights", "http://dbpedia.org/resource/Hot_Pursuit_(1984_TV_series)", "http://dbpedia.org/resource/House_Rules_(1998_TV_series)", "http://dbpedia.org/resource/How_Murray_Saved_Christmas", "http://dbpedia.org/resource/How_to_Eat_Like_a_Child", "http://dbpedia.org/resource/How_to_Survive_a_Marriage", "http://dbpedia.org/resource/Howdy_Doody", "http://dbpedia.org/resource/Howie_Do_It", "http://dbpedia.org/resource/Hull_High", "http://dbpedia.org/resource/L.A._Law", "http://dbpedia.org/resource/L.A._Law:_The_Movie", "http://dbpedia.org/resource/LAX_(TV_series)", "http://dbpedia.org/resource/La_Brea_(TV_series)", "http://dbpedia.org/resource/Land_of_the_Lost_(1974_TV_series)", "http://dbpedia.org/resource/Las_Vegas_(TV_series)", "http://dbpedia.org/resource/Last_Comic_Standing_(season_5)", "http://dbpedia.org/resource/Last_of_the_Mohicans_(1977_film)", "http://dbpedia.org/resource/LateLine", "http://dbpedia.org/resource/Late_Night_(franchise)", "http://dbpedia.org/resource/Late_Night_with_Conan_O'Brien", "http://dbpedia.org/resource/Late_Night_with_David_Letterman", "http://dbpedia.org/resource/Late_Night_with_Jimmy_Fallon", "http://dbpedia.org/resource/Late_Night_with_Seth_Meyers", "http://dbpedia.org/resource/Later_(talk_show)", "http://dbpedia.org/resource/Law_&_Order", "http://dbpedia.org/resource/Law_&_Order:_Criminal_Intent", "http://dbpedia.org/resource/Law_&_Order:_Criminal_Intent_(season_1)", "http://dbpedia.org/resource/Law_&_Order:_Criminal_Intent_(season_2)", "http://dbpedia.org/resource/Law_&_Order:_Criminal_Intent_(season_3)", "http://dbpedia.org/resource/Law_&_Order:_Criminal_Intent_(season_4)", "http://dbpedia.org/resource/Law_&_Order:_Criminal_Intent_(season_5)", "http://dbpedia.org/resource/Law_&_Order:_Criminal_Intent_(season_6)", "http://dbpedia.org/resource/Law_&_Order:_LA", "http://dbpedia.org/resource/Law_&_Order:_Organized_Crime", "http://dbpedia.org/resource/Law_&_Order:_Special_Victims_Unit", "http://dbpedia.org/resource/Law_&_Order:_Special_Victims_Unit_(season_1)", "http://dbpedia.org/resource/Law_&_Order:_Special_Victims_Unit_(season_10)", "http://dbpedia.org/resource/Law_&_Order:_Special_Victims_Unit_(season_11)", "http://dbpedia.org/resource/Law_&_Order:_Special_Victims_Unit_(season_12)", "http://dbpedia.org/resource/Law_&_Order:_Special_Victims_Unit_(season_13)", "http://dbpedia.org/resource/Law_&_Order:_Special_Victims_Unit_(season_14)", "http://dbpedia.org/resource/Law_&_Order:_Special_Victims_Unit_(season_15)", "http://dbpedia.org/resource/Law_&_Order:_Special_Victims_Unit_(season_16)", "http://dbpedia.org/resource/Law_&_Order:_Special_Victims_Unit_(season_17)", "http://dbpedia.org/resource/Law_&_Order:_Special_Victims_Unit_(season_18)", "http://dbpedia.org/resource/Law_&_Order:_Special_Victims_Unit_(season_19)", "http://dbpedia.org/resource/Law_&_Order:_Special_Victims_Unit_(season_2)", "http://dbpedia.org/resource/Law_&_Order:_Special_Victims_Unit_(season_20)", "http://dbpedia.org/resource/Law_&_Order:_Special_Victims_Unit_(season_21)", "http://dbpedia.org/resource/Law_&_Order:_Special_Victims_Unit_(season_22)", "http://dbpedia.org/resource/Law_&_Order:_Special_Victims_Unit_(season_23)", "http://dbpedia.org/resource/Law_&_Order:_Special_Victims_Unit_(season_3)", "http://dbpedia.org/resource/Law_&_Order:_Special_Victims_Unit_(season_4)", "http://dbpedia.org/resource/Law_&_Order:_Special_Victims_Unit_(season_5)", "http://dbpedia.org/resource/Law_&_Order:_Special_Victims_Unit_(season_6)", "http://dbpedia.org/resource/Law_&_Order:_Special_Victims_Unit_(season_7)", "http://dbpedia.org/resource/Law_&_Order:_Special_Victims_Unit_(season_8)", "http://dbpedia.org/resource/Law_&_Order:_Special_Victims_Unit_(season_9)", "http://dbpedia.org/resource/Law_&_Order:_Trial_by_Jury", "http://dbpedia.org/resource/Law_&_Order_(season_10)", "http://dbpedia.org/resource/Law_&_Order_(season_11)", "http://dbpedia.org/resource/Law_&_Order_(season_12)", "http://dbpedia.org/resource/Law_&_Order_(season_13)", "http://dbpedia.org/resource/Law_&_Order_(season_14)", "http://dbpedia.org/resource/Law_&_Order_(season_15)", "http://dbpedia.org/resource/Law_&_Order_(season_16)", "http://dbpedia.org/resource/Law_&_Order_(season_17)", "http://dbpedia.org/resource/Law_&_Order_(season_18)", "http://dbpedia.org/resource/Law_&_Order_(season_19)", "http://dbpedia.org/resource/Law_&_Order_(season_20)", "http://dbpedia.org/resource/Law_&_Order_(season_21)", "http://dbpedia.org/resource/Law_&_Order_(season_22)", "http://dbpedia.org/resource/Law_&_Order_(season_9)", "http://dbpedia.org/resource/Law_&_Order_True_Crime", "http://dbpedia.org/resource/Law_of_the_Plainsman", "http://dbpedia.org/resource/Lazer_Tag_Academy", "http://dbpedia.org/resource/2015_iHeartRadio_Music_Awards", "http://dbpedia.org/resource/2017_U.S._Cellular_250", "http://dbpedia.org/resource/Doctor_Dolittle_(TV_series)", "http://dbpedia.org/resource/Dolly_Parton's_Christmas_of_Many_Colors:_Circle_of_Love", "http://dbpedia.org/resource/Dolly_Parton's_Coat_of_Many_Colors", "http://dbpedia.org/resource/Don_Carney", "http://dbpedia.org/resource/Donner_Pass:_The_Road_to_Survival", "http://dbpedia.org/resource/Dotto", "http://dbpedia.org/resource/Double_Doink", "http://dbpedia.org/resource/Double_Trouble_(American_TV_series)", "http://dbpedia.org/resource/Doug_Henning's_World_of_Magic", "http://dbpedia.org/resource/Dough_Re_Mi", "http://dbpedia.org/resource/Douglas_Fairbanks_Presents", "http://dbpedia.org/resource/Down_Home_(TV_series)", "http://dbpedia.org/resource/Dr._Kildare_(TV_series)", "http://dbpedia.org/resource/Dr._Seuss'_The_Grinch_Musical_Live!", "http://dbpedia.org/resource/Dracula_(2013_TV_series)", "http://dbpedia.org/resource/Dragnet_(1951_TV_series)", "http://dbpedia.org/resource/Dragnet_(1967_TV_series,_season_1)", "http://dbpedia.org/resource/Dragnet_(1967_TV_series,_season_2)", "http://dbpedia.org/resource/Dragnet_(1967_TV_series,_season_3)", "http://dbpedia.org/resource/Dragnet_(1967_TV_series,_season_4)", "http://dbpedia.org/resource/Dream_Street_(American_TV_series)", "http://dbpedia.org/resource/Dynasty_(film)", "http://dbpedia.org/resource/E-Ring", "http://dbpedia.org/resource/Singer_&_Sons", "http://dbpedia.org/resource/Sirota's_Court", "http://dbpedia.org/resource/Sister_Kate_(TV_series)", "http://dbpedia.org/resource/Sisters_(American_TV_series)", "http://dbpedia.org/resource/Sk8_(TV_series)", "http://dbpedia.org/resource/Skunked_TV", "http://dbpedia.org/resource/Skyward_(film)", "http://dbpedia.org/resource/Smash_(TV_series)", "http://dbpedia.org/resource/Smash_(season_1)", "http://dbpedia.org/resource/Smash_(season_2)", "http://dbpedia.org/resource/Snap_Judgment_(game_show)", "http://dbpedia.org/resource/Snip_(TV_series)", "http://dbpedia.org/resource/Someone's_Watching_Me!", "http://dbpedia.org/resource/Someone_Like_Me_(TV_series)", "http://dbpedia.org/resource/Somerset_(TV_series)", "http://dbpedia.org/resource/Something_Wilder", "http://dbpedia.org/resource/Something_for_a_Lonely_Man", "http://dbpedia.org/resource/Son-Rise:_A_Miracle_of_Love", "http://dbpedia.org/resource/Songland", "http://dbpedia.org/resource/Sonny_Spoon", "http://dbpedia.org/resource/South_Beach_(1993_TV_series)", "http://dbpedia.org/resource/People_Magazine_Awards", "http://dbpedia.org/resource/Seven_at_Eleven", "http://dbpedia.org/resource/Rex_Is_Not_Your_Lawyer", "http://dbpedia.org/resource/1st_Daytime_Emmy_Awards", "http://dbpedia.org/resource/2001_NBA_All-Star_Game", "http://dbpedia.org/resource/2003_Radio_Music_Awards", "http://dbpedia.org/resource/24th_Tony_Awards", "http://dbpedia.org/resource/25th_Academy_Awards", "http://dbpedia.org/resource/25th_NAACP_Image_Awards", "http://dbpedia.org/resource/26th_Academy_Awards", "http://dbpedia.org/resource/26th_Primetime_Emmy_Awards", "http://dbpedia.org/resource/27th_Academy_Awards", "http://dbpedia.org/resource/28th_Academy_Awards", "http://dbpedia.org/resource/29th_Academy_Awards", "http://dbpedia.org/resource/29th_Primetime_Emmy_Awards", "http://dbpedia.org/resource/2nd_Annual_Grammy_Awards", "http://dbpedia.org/resource/30th_Academy_Awards", "http://dbpedia.org/resource/31st_Academy_Awards", "http://dbpedia.org/resource/32nd_Academy_Awards", "http://dbpedia.org/resource/43rd_Academy_Awards", "http://dbpedia.org/resource/44th_Academy_Awards", "http://dbpedia.org/resource/44th_NAACP_Image_Awards", "http://dbpedia.org/resource/45th_Academy_Awards", "http://dbpedia.org/resource/46th_Academy_Awards", "http://dbpedia.org/resource/47th_Academy_Awards", "http://dbpedia.org/resource/4th_Daytime_Emmy_Awards", "http://dbpedia.org/resource/Cotton_Candy_(film)", "http://dbpedia.org/resource/Council_of_Dads_(TV_series)", "http://dbpedia.org/resource/Coupling_(American_TV_series)", "http://dbpedia.org/resource/Crash_Course_(film)", "http://dbpedia.org/resource/Crime_&_Punishment", "http://dbpedia.org/resource/Crime_&_Punishment_(1993_TV_series)", "http://dbpedia.org/resource/Crime_Story_(American_TV_series)", "http://dbpedia.org/resource/Crisis_(TV_series)", "http://dbpedia.org/resource/Crisis_Center", "http://dbpedia.org/resource/Crossbones_(TV_series)", "http://dbpedia.org/resource/Crossing_Jordan", "http://dbpedia.org/resource/Cruel_Doubt", "http://dbpedia.org/resource/Crusoe_(TV_series)", "http://dbpedia.org/resource/Cry_Vengeance!", "http://dbpedia.org/resource/Cursed_(2000_TV_series)", "http://dbpedia.org/resource/Cycling_on_NBC", "http://dbpedia.org/resource/DAG_(American_TV_series)", "http://dbpedia.org/resource/Grady_(American_TV_series)", "http://dbpedia.org/resource/Grand_Crew", "http://dbpedia.org/resource/Grandpa_Goes_to_Washington", "http://dbpedia.org/resource/Grease:_You're_the_One_That_I_Want!", "http://dbpedia.org/resource/Great_Ghost_Tales", "http://dbpedia.org/resource/Grimm_(TV_series)", "http://dbpedia.org/resource/Grimm_(season_1)", "http://dbpedia.org/resource/Grimm_(season_2)", "http://dbpedia.org/resource/Grimm_(season_3)", "http://dbpedia.org/resource/Grimm_(season_4)", "http://dbpedia.org/resource/Grimm_(season_5)", "http://dbpedia.org/resource/Grimm_(season_6)", "http://dbpedia.org/resource/Growing_Up_Brady_(film)", "http://dbpedia.org/resource/Growing_Up_Fisher", "http://dbpedia.org/resource/Gulf_Playhouse", "http://dbpedia.org/resource/Guys_with_Kids", "http://dbpedia.org/resource/H.R._Pufnstuf", "http://dbpedia.org/resource/Hec_Ramsey", "http://dbpedia.org/resource/Heist_(TV_series)", "http://dbpedia.org/resource/Hell_Town_(TV_series)", "http://dbpedia.org/resource/Hello,_Larry", "http://dbpedia.org/resource/Hercules_(miniseries)", "http://dbpedia.org/resource/Here's_Boomer", "http://dbpedia.org/resource/Here_Comes_the_Grump", "http://dbpedia.org/resource/Hero_High", "http://dbpedia.org/resource/Heroes_(American_TV_series)", "http://dbpedia.org/resource/Heroes_(season_1)", "http://dbpedia.org/resource/Heroes_(season_2)", "http://dbpedia.org/resource/Heroes_(season_3)", "http://dbpedia.org/resource/Heroes_(season_4)", "http://dbpedia.org/resource/Heroes_Reborn_(miniseries)", "http://dbpedia.org/resource/Hey,_Landlord", "http://dbpedia.org/resource/Hidden_Faces_(American_TV_series)", "http://dbpedia.org/resource/Hidden_Hills", "http://dbpedia.org/resource/High-Low_(game_show)", "http://dbpedia.org/resource/High_Ice_(film)", "http://dbpedia.org/resource/High_Rollers", "http://dbpedia.org/resource/Highway_to_Heaven", "http://dbpedia.org/resource/Hill_Street_Blues", "http://dbpedia.org/resource/M.Y.O.B._(TV_series)", "http://dbpedia.org/resource/MLB_Sunday_Leadoff", "http://dbpedia.org/resource/MLS_on_NBC", "http://dbpedia.org/resource/Macy's_Thanksgiving_Day_Parade", "http://dbpedia.org/resource/Madigan_(TV_series)", "http://dbpedia.org/resource/Madman_of_the_People", "http://dbpedia.org/resource/Magnavox_Presents_Frank_Sinatra", "http://dbpedia.org/resource/Major_League_Baseball:_An_Inside_Look", "http://dbpedia.org/resource/Major_League_Baseball_on_NBC", "http://dbpedia.org/resource/Make_Your_Own_Kind_of_Music_(TV_series)", "http://dbpedia.org/resource/Make_the_Connection", "http://dbpedia.org/resource/Malibu_Shores", "http://dbpedia.org/resource/Mama's_Boy_(TV_series)", "http://dbpedia.org/resource/Man_from_Atlantis", "http://dbpedia.org/resource/Man_from_Interpol", "http://dbpedia.org/resource/Man_of_the_People_(TV_series)", "http://dbpedia.org/resource/Mancuso,_F.B.I.", "http://dbpedia.org/resource/Manifest_(TV_series)", "http://dbpedia.org/resource/Manimal", "http://dbpedia.org/resource/Mann_&_Machine", "http://dbpedia.org/resource/Rhythm_&_Blues_(TV_series)", "http://dbpedia.org/resource/Richie_Brockelman,_Private_Eye", "http://dbpedia.org/resource/Ringo_(1978_film)", "http://dbpedia.org/resource/Rise_(American_TV_series)", "http://dbpedia.org/resource/Ritual_of_Evil", "http://dbpedia.org/resource/Riverboat_(TV_series)", "http://dbpedia.org/resource/Rock_Center_with_Brian_Williams", "http://dbpedia.org/resource/Rockin'_Through_the_Decades", "http://dbpedia.org/resource/Rod_O'Connor_(announcer)", "http://dbpedia.org/resource/Everything's_Relative_(1999_TV_series)", "http://dbpedia.org/resource/Exiled:_A_Law_&_Order_Movie", "http://dbpedia.org/resource/Eye_Guess", "http://dbpedia.org/resource/FM_(American_TV_series)", "http://dbpedia.org/resource/Fallen_Champ:_The_Untold_Story_of_Mike_Tyson", "http://dbpedia.org/resource/Fame_Is_the_Name_of_the_Game", "http://dbpedia.org/resource/Family_Album_(miniseries)", "http://dbpedia.org/resource/Family_Game_Fight!", "http://dbpedia.org/resource/Family_Movie_Night", "http://dbpedia.org/resource/Family_Secrets_(1984_film)", "http://dbpedia.org/resource/Family_Secrets_(game_show)", "http://dbpedia.org/resource/Fashion_Star_(season_1)", "http://dbpedia.org/resource/Fashion_Star_(season_2)", "http://dbpedia.org/resource/Fatal_Deception:_Mrs._Lee_Harvey_Oswald", "http://dbpedia.org/resource/Fatal_Vision_(miniseries)", "http://dbpedia.org/resource/Father_&_Son:_Dangerous_Relations", "http://dbpedia.org/resource/Father_Murphy", "http://dbpedia.org/resource/Father_of_the_Pride", "http://dbpedia.org/resource/Fathers_and_Sons_(1986_TV_series)", "http://dbpedia.org/resource/Fear_Factor", "http://dbpedia.org/resource/Fear_Itself_(TV_series)", "http://dbpedia.org/resource/Fear_No_Evil_(1969_film)", "http://dbpedia.org/resource/Ferris_Bueller_(TV_series)", "http://dbpedia.org/resource/Fire!_(1977_film)", "http://dbpedia.org/resource/Fire_on_the_Mountain_(1981_film)", "http://dbpedia.org/resource/Fired_Up_(TV_series)", "http://dbpedia.org/resource/First_to_Die", "http://dbpedia.org/resource/Five_Fingers_(American_TV_series)", "http://dbpedia.org/resource/Flamingo_Road_(TV_series)", "http://dbpedia.org/resource/Flesh_'n'_Blood_(TV_series)", "http://dbpedia.org/resource/Flesh_and_Blood_(1968_film)", "http://dbpedia.org/resource/Flipper_(1964_TV_series)", "http://dbpedia.org/resource/Flood!", "http://dbpedia.org/resource/Food_Fighters_(TV_series)", "http://dbpedia.org/resource/Foofur", "http://dbpedia.org/resource/Football_Night_in_America", "http://dbpedia.org/resource/Jennifer_Slept_Here", "http://dbpedia.org/resource/Jeopardy!", "http://dbpedia.org/resource/Jesse_(TV_series)", "http://dbpedia.org/resource/Jesus_Christ_Superstar_Live_in_Concert", "http://dbpedia.org/resource/Jesus_of_Nazareth_(TV_series)", "http://dbpedia.org/resource/Jigsaw_John_(TV_series)", "http://dbpedia.org/resource/Joe's_World", "http://dbpedia.org/resource/Joe_&_Valerie", "http://dbpedia.org/resource/Joe_Dancer", "http://dbpedia.org/resource/Joe_Forrester", "http://dbpedia.org/resource/Leeza", "http://dbpedia.org/resource/Legmen", "http://dbpedia.org/resource/Lego_Jurassic_World:_The_Secret_Exhibit", "http://dbpedia.org/resource/Liberty_(1986_film)", "http://dbpedia.org/resource/Life_(American_TV_series)", "http://dbpedia.org/resource/Lifestories", "http://dbpedia.org/resource/Lincoln_Rhyme:_Hunt_for_the_Bone_Collector", "http://dbpedia.org/resource/Line_of_Fire:_The_Morris_Dees_Story", "http://dbpedia.org/resource/Lipstick_Jungle_(TV_series)", "http://dbpedia.org/resource/List_of_Alfred_Hitchcock_Presents_episodes", "http://dbpedia.org/resource/List_of_Brooklyn_Nine-Nine_episodes", "http://dbpedia.org/resource/National_Heads-Up_Poker_Championship", "http://dbpedia.org/resource/National_Lampoon's_Christmas_Vacation_2", "http://dbpedia.org/resource/Nearly_Departed", "http://dbpedia.org/resource/Needles_and_Pins_(TV_series)", "http://dbpedia.org/resource/Nero_Wolfe_(1981_TV_series)", "http://dbpedia.org/resource/New_Amsterdam_(2018_TV_series)", "http://dbpedia.org/resource/NewsRadio", "http://dbpedia.org/resource/Night_Court", "http://dbpedia.org/resource/Night_Court_(upcoming_TV_series)", "http://dbpedia.org/resource/Night_Gallery", "http://dbpedia.org/resource/Night_Gallery_(film)", "http://dbpedia.org/resource/Nightingales_(American_TV_series)", "http://dbpedia.org/resource/Nightmare_Cafe", "http://dbpedia.org/resource/Nightmare_in_Chicago", "http://dbpedia.org/resource/People's_Choice_Awards", "http://dbpedia.org/resource/People_Will_Talk_(game_show)", "http://dbpedia.org/resource/Perfect_Couples", "http://dbpedia.org/resource/Perfect_Harmony_(TV_series)", "http://dbpedia.org/resource/Perry_Mason_(TV_film_series)", "http://dbpedia.org/resource/Persons_Unknown_(TV_series)", "http://dbpedia.org/resource/Peter_Pan_(1976_musical)", "http://dbpedia.org/resource/Peter_the_Great_(miniseries)", "http://dbpedia.org/resource/Petrocelli", "http://dbpedia.org/resource/Phenomenon_(TV_program)", "http://dbpedia.org/resource/Private_Eye_(TV_series)", "http://dbpedia.org/resource/ProStars", "http://dbpedia.org/resource/Probe_(film)", "http://dbpedia.org/resource/Problem_Child_3:_Junior_in_Love", "http://dbpedia.org/resource/Profiler_(TV_series)", "http://dbpedia.org/resource/Project_U.F.O.", "http://dbpedia.org/resource/Quantum_Leap", "http://dbpedia.org/resource/Quantum_Leap_(season_1)", "http://dbpedia.org/resource/Quantum_Leap_(season_2)", "http://dbpedia.org/resource/Quantum_Leap_(season_3)", "http://dbpedia.org/resource/Quantum_Leap_(season_4)", "http://dbpedia.org/resource/Quantum_Leap_(season_5)", "http://dbpedia.org/resource/Quark_(TV_series)", "http://dbpedia.org/resource/Quarterlife", "http://dbpedia.org/resource/Quincy,_M.E.", "http://dbpedia.org/resource/Quincy,_M.E._(season_1)", "http://dbpedia.org/resource/Quincy,_M.E._(season_2)", "http://dbpedia.org/resource/Quincy,_M.E._(season_3)", "http://dbpedia.org/resource/Quincy,_M.E._(season_4)", "http://dbpedia.org/resource/Quincy,_M.E._(season_5)", "http://dbpedia.org/resource/Quincy,_M.E._(season_6)", "http://dbpedia.org/resource/Quincy,_M.E._(season_7)", "http://dbpedia.org/resource/Quincy,_M.E._(season_8)", "http://dbpedia.org/resource/Race_to_the_Altar", "http://dbpedia.org/resource/Rags_to_Riches_(TV_series)", "http://dbpedia.org/resource/Raid_on_Entebbe_(film)", "http://dbpedia.org/resource/Third_Watch", "http://dbpedia.org/resource/This_Is_Us", "http://dbpedia.org/resource/This_Is_Us_(season_1)", "http://dbpedia.org/resource/This_Is_Us_(season_2)", "http://dbpedia.org/resource/This_Is_Us_(season_3)", "http://dbpedia.org/resource/This_Is_Us_(season_4)", "http://dbpedia.org/resource/This_Is_Us_(season_5)", "http://dbpedia.org/resource/This_Is_Us_(season_6)", "http://dbpedia.org/resource/This_Is_Your_Life", "http://dbpedia.org/resource/Thoroughbred_Racing_on_NBC", "http://dbpedia.org/resource/Those_She_Left_Behind", "http://dbpedia.org/resource/Three_Sisters_(American_TV_series)", "http://dbpedia.org/resource/Three_Wishes_(American_TV_series)", "http://dbpedia.org/resource/Three_for_the_Money", "http://dbpedia.org/resource/Thunder_(TV_series)", "http://dbpedia.org/resource/Time_Machine_(game_show)", "http://dbpedia.org/resource/Timeless_(TV_series)", "http://dbpedia.org/resource/Titans_(2000_TV_series)", "http://dbpedia.org/resource/To_Say_the_Least", "http://dbpedia.org/resource/Today_(American_TV_program)", "http://dbpedia.org/resource/Today_with_Hoda_&_Jenna", "http://dbpedia.org/resource/Tom,_Dick,_and_Mary", "http://dbpedia.org/resource/Tom_Clancy's_Op_Center_(film)", "http://dbpedia.org/resource/Tommy_Lee_Goes_to_College", "http://dbpedia.org/resource/Windfall_(TV_series)", "http://dbpedia.org/resource/Wings_(1990_TV_series)", "http://dbpedia.org/resource/Wings_of_Fire_(film)", "http://dbpedia.org/resource/Winner_Take_All_(game_show)", "http://dbpedia.org/resource/Winnetka_Road", "http://dbpedia.org/resource/Wish_Kid", "http://dbpedia.org/resource/Witch's_Night_Out", "http://dbpedia.org/resource/Woman_on_the_Run:_The_Lawrencia_Bembenek_Story", "http://dbpedia.org/resource/Woody_Allen_Looks_at_1967", "http://dbpedia.org/resource/Words_and_Music_(American_game_show)", "http://dbpedia.org/resource/Working_(TV_series)", "http://dbpedia.org/resource/Working_Girl_(TV_series)", "http://dbpedia.org/resource/Working_It_Out", "http://dbpedia.org/resource/Working_the_Engels", "http://dbpedia.org/resource/World_of_Dance_(TV_series)", "http://dbpedia.org/resource/World_of_Dance_(season_1)", "http://dbpedia.org/resource/World_of_Dance_(season_2)", "http://dbpedia.org/resource/World_of_Dance_(season_3)", "http://dbpedia.org/resource/World_of_Dance_(season_4)", "http://dbpedia.org/resource/Wrangler_(TV_series)", "http://dbpedia.org/resource/Y2K_(film)", "http://dbpedia.org/resource/Law_&_Order:_Special_Victims_Unit_(season_24)", "http://dbpedia.org/resource/ER_(TV_series)", "http://dbpedia.org/resource/ER_(season_1)", "http://dbpedia.org/resource/ER_(season_10)", "http://dbpedia.org/resource/ER_(season_11)", "http://dbpedia.org/resource/ER_(season_12)", "http://dbpedia.org/resource/ER_(season_13)", "http://dbpedia.org/resource/ER_(season_14)", "http://dbpedia.org/resource/ER_(season_15)", "http://dbpedia.org/resource/ER_(season_2)", "http://dbpedia.org/resource/ER_(season_3)", "http://dbpedia.org/resource/ER_(season_4)", "http://dbpedia.org/resource/ER_(season_5)", "http://dbpedia.org/resource/ER_(season_6)", "http://dbpedia.org/resource/ER_(season_7)", "http://dbpedia.org/resource/ER_(season_8)", "http://dbpedia.org/resource/ER_(season_9)", "http://dbpedia.org/resource/Early_Today", "http://dbpedia.org/resource/Earth_2_(TV_series)", "http://dbpedia.org/resource/Easy_Street_(TV_series)", "http://dbpedia.org/resource/Ed_(TV_series)", "http://dbpedia.org/resource/Ed_Herlihy", "http://dbpedia.org/resource/Eerie,_Indiana", "http://dbpedia.org/resource/Eischied", "http://dbpedia.org/resource/Elf:_Buddy's_Musical_Christmas", "http://dbpedia.org/resource/Ellery_Queen_(TV_series)", "http://dbpedia.org/resource/Just_Deal", "http://dbpedia.org/resource/Just_Men!", "http://dbpedia.org/resource/Just_Shoot_Me!", "http://dbpedia.org/resource/Karen_(1964_TV_series)", "http://dbpedia.org/resource/Livin'_for_Love:_The_Natalie_Cole_Story", "http://dbpedia.org/resource/Living_Proof:_The_Hank_Williams_Jr._Story", "http://dbpedia.org/resource/Liza_with_a_Z", "http://dbpedia.org/resource/London_Suite_(film)", "http://dbpedia.org/resource/Lookwell", "http://dbpedia.org/resource/Lost_(game_show)", "http://dbpedia.org/resource/Love's_Deadly_Triangle:_The_Texas_Cadet_Murder", "http://dbpedia.org/resource/Love,_Lies_and_Murder", "http://dbpedia.org/resource/Love,_Sidney", "http://dbpedia.org/resource/Love_in_the_Wild", "http://dbpedia.org/resource/Lucas_Tanner", "http://dbpedia.org/resource/One_Big_Happy_(TV_series)", "http://dbpedia.org/resource/One_Happy_Family", "http://dbpedia.org/resource/One_Hour_in_Wonderland", "http://dbpedia.org/resource/One_of_the_Boys_(1982_TV_series)", "http://dbpedia.org/resource/One_of_the_Boys_(1989_TV_series)", "http://dbpedia.org/resource/One_to_Grow_On", "http://dbpedia.org/resource/Opposites_Attract_(film)", "http://dbpedia.org/resource/Ordinary_Joe", "http://dbpedia.org/resource/Our_House_(American_TV_series)", "http://dbpedia.org/resource/Our_Shining_Moment", "http://dbpedia.org/resource/Outlaw_(TV_series)", "http://dbpedia.org/resource/Outsourced_(TV_series)", "http://dbpedia.org/resource/Serving_in_Silence:_The_Margarethe_Cammermeyer_Story", "http://dbpedia.org/resource/Shades_of_Blue_(TV_series)", "http://dbpedia.org/resource/Shannon's_Deal", "http://dbpedia.org/resource/Shattered_Trust:_The_Shari_Karney_Story", "http://dbpedia.org/resource/She's_Dressed_to_Kill", "http://dbpedia.org/resource/Shirley_(TV_series)", "http://dbpedia.org/resource/Shirley_Temple's_Storybook", "http://dbpedia.org/resource/Shirt_Tales", "http://dbpedia.org/resource/Shootdown_(film)", "http://dbpedia.org/resource/Short_Story_Playhouse", "http://dbpedia.org/resource/Sh\u014dgun_(1980_miniseries)", "http://dbpedia.org/resource/Siberia_(TV_series)", "http://dbpedia.org/resource/Sidney_Shorr:_A_Girl's_Best_Friend", "http://dbpedia.org/resource/Sierra_(TV_series)", "http://dbpedia.org/resource/Sigmund_and_the_Sea_Monsters", "http://dbpedia.org/resource/Silver_Spoons", "http://dbpedia.org/resource/Space_Cats", "http://dbpedia.org/resource/Space_Force_(TV_pilot)", "http://dbpedia.org/resource/Space_Sentinels", "http://dbpedia.org/resource/Space_Stars", "http://dbpedia.org/resource/Special_Treat", "http://dbpedia.org/resource/Spencer_(TV_series)", "http://dbpedia.org/resource/Spider-Man_and_His_Amazing_Friends_(1981_TV_series)", "http://dbpedia.org/resource/Sportsworld_(American_TV_series)", "http://dbpedia.org/resource/St._Elsewhere", "http://dbpedia.org/resource/Stand_Against_Fear", "http://dbpedia.org/resource/Stanley_(1956_TV_series)", "http://dbpedia.org/resource/Star_Trek:_The_Animated_Series", "http://dbpedia.org/resource/Star_Trek:_The_Original_Series_(season_1)", "http://dbpedia.org/resource/Star_Trek:_The_Original_Series_(season_2)", "http://dbpedia.org/resource/Star_Trek:_The_Original_Series_(season_3)", "http://dbpedia.org/resource/Stark_Raving_Mad_(TV_series)", "http://dbpedia.org/resource/Stars_Earn_Stripes", "http://dbpedia.org/resource/The_Mystery_Chef", "http://dbpedia.org/resource/Secret_Squirrel", "http://dbpedia.org/resource/Youth_Wants_To_Know", "http://dbpedia.org/resource/Big_Bird_in_China", "http://dbpedia.org/resource/Big_Hawaii", "http://dbpedia.org/resource/Big_John,_Little_John", "http://dbpedia.org/resource/Bionic_Woman_(2007_TV_series)", "http://dbpedia.org/resource/Bitter_Harvest_(1981_film)", "http://dbpedia.org/resource/Black_Tie_Affair_(TV_series)", "http://dbpedia.org/resource/Black_Widow_Murders:_The_Blanche_Taylor_Moore_Story", "http://dbpedia.org/resource/Blacke's_Magic", "http://dbpedia.org/resource/Blank_Check_(game_show)", "http://dbpedia.org/resource/Blind_Faith_(miniseries)", "http://dbpedia.org/resource/Blind_Side_(1993_film)", "http://dbpedia.org/resource/Blossom_(TV_series)", "http://dbpedia.org/resource/Bluff_City_Law", "http://dbpedia.org/resource/Bonino_(TV_series)", "http://dbpedia.org/resource/Hunter_(1984_American_TV_series)", "http://dbpedia.org/resource/Hurricane_Saturday", "http://dbpedia.org/resource/I'll_Be_Home_for_Christmas_(1988_film)", "http://dbpedia.org/resource/I'll_Bet", "http://dbpedia.org/resource/I'll_Fly_Away_(TV_series)", "http://dbpedia.org/resource/I'm_Telling!", "http://dbpedia.org/resource/I'm_a_Celebrity...Get_Me_Out_of_Here!_(American_season_2)", "http://dbpedia.org/resource/IHeartRadio_Music_Awards", "http://dbpedia.org/resource/I_Dream_of_Jeannie", "http://dbpedia.org/resource/I_Feel_Bad", "http://dbpedia.org/resource/I_Know_My_First_Name_Is_Steven", "http://dbpedia.org/resource/I_Married_Joan", "http://dbpedia.org/resource/I_Married_Wyatt_Earp_(film)", "http://dbpedia.org/resource/I_Spy_(1965_TV_series)", "http://dbpedia.org/resource/I_Still_Dream_of_Jeannie", "http://dbpedia.org/resource/I_Witness_Video", "http://dbpedia.org/resource/Identity_(game_show)", "http://dbpedia.org/resource/Imagine_That_(TV_series)", "http://dbpedia.org/resource/In-Laws", "http://dbpedia.org/resource/In_Broad_Daylight_(1991_film)", "http://dbpedia.org/resource/In_the_Beginning_(miniseries)", "http://dbpedia.org/resource/In_the_Heat_of_the_Night_(TV_series)", "http://dbpedia.org/resource/In_the_Nick_of_Time_(1991_film)", "http://dbpedia.org/resource/Inch_High,_Private_Eye", "http://dbpedia.org/resource/Inconceivable_(TV_series)", "http://dbpedia.org/resource/Indebted", "http://dbpedia.org/resource/IndyCar_Series_on_NBC", "http://dbpedia.org/resource/King_Leonardo_and_His_Short_Subjects", "http://dbpedia.org/resource/Kingpin_(TV_series)", "http://dbpedia.org/resource/Kings_(American_TV_series)", "http://dbpedia.org/resource/Kiss_Meets_the_Phantom_of_the_Park", "http://dbpedia.org/resource/Kissyfur", "http://dbpedia.org/resource/Knight_Rider_(1982_TV_series)", "http://dbpedia.org/resource/Knight_Rider_(2008_TV_series)", "http://dbpedia.org/resource/Knight_Rider_(2008_film)", "http://dbpedia.org/resource/Knight_Rider_(season_1)", "http://dbpedia.org/resource/Knight_Rider_(season_2)", "http://dbpedia.org/resource/Knight_Rider_(season_3)", "http://dbpedia.org/resource/Knight_Rider_(season_4)", "http://dbpedia.org/resource/Kristin_(TV_series)", "http://dbpedia.org/resource/Kung_Fu_Panda_Holiday", "http://dbpedia.org/resource/List_of_Community_episodes", "http://dbpedia.org/resource/List_of_Fame_(1982_TV_series)_episodes", "http://dbpedia.org/resource/List_of_Friday_Night_Lights_episodes", "http://dbpedia.org/resource/List_of_Friends_episodes", "http://dbpedia.org/resource/List_of_Get_Smart_episodes", "http://dbpedia.org/resource/List_of_Hazel_episodes", "http://dbpedia.org/resource/List_of_In_the_Heat_of_the_Night_episodes", "http://dbpedia.org/resource/List_of_In_the_House_episodes", "http://dbpedia.org/resource/List_of_JAG_episodes", "http://dbpedia.org/resource/List_of_Late_Night_with_Jimmy_Fallon_episodes_(2009)", "http://dbpedia.org/resource/List_of_Late_Night_with_Jimmy_Fallon_episodes_(2010)", "http://dbpedia.org/resource/List_of_Late_Night_with_Jimmy_Fallon_episodes_(2011)", "http://dbpedia.org/resource/List_of_Late_Night_with_Jimmy_Fallon_episodes_(2012)", "http://dbpedia.org/resource/List_of_Late_Night_with_Jimmy_Fallon_episodes_(2013\u201314)", "http://dbpedia.org/resource/List_of_Late_Night_with_Seth_Meyers_episodes_(2014)", "http://dbpedia.org/resource/List_of_Late_Night_with_Seth_Meyers_episodes_(2015)", "http://dbpedia.org/resource/List_of_Late_Night_with_Seth_Meyers_episodes_(2016)", "http://dbpedia.org/resource/List_of_Late_Night_with_Seth_Meyers_episodes_(2017)", "http://dbpedia.org/resource/List_of_Late_Night_with_Seth_Meyers_episodes_(2018)", "http://dbpedia.org/resource/List_of_Late_Night_with_Seth_Meyers_episodes_(2019)", "http://dbpedia.org/resource/List_of_Late_Night_with_Seth_Meyers_episodes_(2020)", "http://dbpedia.org/resource/List_of_Late_Night_with_Seth_Meyers_episodes_(2021)", "http://dbpedia.org/resource/List_of_Late_Night_with_Seth_Meyers_episodes_(2022)", "http://dbpedia.org/resource/List_of_Law_&_Order:_Criminal_Intent_episodes", "http://dbpedia.org/resource/List_of_Mad_About_You_episodes", "http://dbpedia.org/resource/List_of_Mario_television_episodes", "http://dbpedia.org/resource/List_of_Medium_episodes", "http://dbpedia.org/resource/List_of_Monster_Jam_episodes", "http://dbpedia.org/resource/List_of_Punky_Brewster_episodes", "http://dbpedia.org/resource/List_of_Southland_episodes", "http://dbpedia.org/resource/List_of_The_Hogan_Family_episodes", "http://dbpedia.org/resource/List_of_The_Jack_Benny_Program_episodes", "http://dbpedia.org/resource/List_of_The_Joey_Bishop_Show_episodes", "http://dbpedia.org/resource/List_of_The_Pretender_episodes", "http://dbpedia.org/resource/List_of_The_Tonight_Show_Starring_Jimmy_Fallon_episodes_(2014)", "http://dbpedia.org/resource/List_of_The_Tonight_Show_Starring_Jimmy_Fallon_episodes_(2015)", "http://dbpedia.org/resource/List_of_The_Tonight_Show_Starring_Jimmy_Fallon_episodes_(2016)", "http://dbpedia.org/resource/List_of_The_Tonight_Show_Starring_Jimmy_Fallon_episodes_(2017)", "http://dbpedia.org/resource/List_of_The_Tonight_Show_Starring_Jimmy_Fallon_episodes_(2018)", "http://dbpedia.org/resource/List_of_The_Tonight_Show_Starring_Jimmy_Fallon_episodes_(2019)", "http://dbpedia.org/resource/List_of_The_Tonight_Show_Starring_Jimmy_Fallon_episodes_(2020)", "http://dbpedia.org/resource/List_of_The_Tonight_Show_Starring_Jimmy_Fallon_episodes_(2021)", "http://dbpedia.org/resource/List_of_The_Tonight_Show_Starring_Jimmy_Fallon_episodes_(2022)", "http://dbpedia.org/resource/List_of_The_Tonight_Show_Starring_Johnny_Carson_episodes_(1962)", "http://dbpedia.org/resource/List_of_The_Tonight_Show_Starring_Johnny_Carson_episodes_(1963)", "http://dbpedia.org/resource/List_of_The_Tonight_Show_Starring_Johnny_Carson_episodes_(1964)", "http://dbpedia.org/resource/List_of_The_Tonight_Show_Starring_Johnny_Carson_episodes_(1965)", "http://dbpedia.org/resource/List_of_The_Tonight_Show_Starring_Johnny_Carson_episodes_(1966)", "http://dbpedia.org/resource/List_of_The_Tonight_Show_Starring_Johnny_Carson_episodes_(1967)", "http://dbpedia.org/resource/List_of_The_Tonight_Show_Starring_Johnny_Carson_episodes_(1968)", "http://dbpedia.org/resource/List_of_The_Tonight_Show_Starring_Johnny_Carson_episodes_(1969)", "http://dbpedia.org/resource/List_of_The_Tonight_Show_Starring_Johnny_Carson_episodes_(1970)", "http://dbpedia.org/resource/List_of_The_Tonight_Show_Starring_Johnny_Carson_episodes_(1971)", "http://dbpedia.org/resource/List_of_The_Tonight_Show_Starring_Johnny_Carson_episodes_(1972)", "http://dbpedia.org/resource/List_of_The_Tonight_Show_Starring_Johnny_Carson_episodes_(1973)", "http://dbpedia.org/resource/List_of_The_Tonight_Show_Starring_Johnny_Carson_episodes_(1974)", "http://dbpedia.org/resource/List_of_The_Tonight_Show_Starring_Johnny_Carson_episodes_(1975)", "http://dbpedia.org/resource/List_of_The_Tonight_Show_Starring_Johnny_Carson_episodes_(1976)", "http://dbpedia.org/resource/List_of_The_Tonight_Show_Starring_Johnny_Carson_episodes_(1977)", "http://dbpedia.org/resource/List_of_The_Tonight_Show_Starring_Johnny_Carson_episodes_(1978)", "http://dbpedia.org/resource/List_of_The_Tonight_Show_Starring_Johnny_Carson_episodes_(1979)", "http://dbpedia.org/resource/List_of_The_Tonight_Show_Starring_Johnny_Carson_episodes_(1980)", "http://dbpedia.org/resource/List_of_The_Tonight_Show_Starring_Johnny_Carson_episodes_(1981)", "http://dbpedia.org/resource/List_of_The_Tonight_Show_Starring_Johnny_Carson_episodes_(1982)", "http://dbpedia.org/resource/List_of_The_Tonight_Show_Starring_Johnny_Carson_episodes_(1983)", "http://dbpedia.org/resource/List_of_The_Tonight_Show_Starring_Johnny_Carson_episodes_(1984)", "http://dbpedia.org/resource/List_of_The_Tonight_Show_Starring_Johnny_Carson_episodes_(1985)", "http://dbpedia.org/resource/List_of_The_Tonight_Show_Starring_Johnny_Carson_episodes_(1986)", "http://dbpedia.org/resource/List_of_The_Tonight_Show_Starring_Johnny_Carson_episodes_(1987)", "http://dbpedia.org/resource/List_of_The_Tonight_Show_Starring_Johnny_Carson_episodes_(1988)", "http://dbpedia.org/resource/List_of_The_Tonight_Show_Starring_Johnny_Carson_episodes_(1989)", "http://dbpedia.org/resource/List_of_The_Tonight_Show_Starring_Johnny_Carson_episodes_(1990)", "http://dbpedia.org/resource/List_of_The_Tonight_Show_Starring_Johnny_Carson_episodes_(1991)", "http://dbpedia.org/resource/List_of_The_Tonight_Show_Starring_Johnny_Carson_episodes_(1992)", "http://dbpedia.org/resource/List_of_The_Tonight_Show_with_Jay_Leno_episodes_(1992\u20131995)", "http://dbpedia.org/resource/List_of_The_Tonight_Show_with_Jay_Leno_episodes_(1996\u20131999)", "http://dbpedia.org/resource/List_of_The_Tonight_Show_with_Jay_Leno_episodes_(2000\u20132009)", "http://dbpedia.org/resource/List_of_The_Tonight_Show_with_Jay_Leno_episodes_(2010)", "http://dbpedia.org/resource/List_of_The_Tonight_Show_with_Jay_Leno_episodes_(2011)", "http://dbpedia.org/resource/List_of_The_Tonight_Show_with_Jay_Leno_episodes_(2012)", "http://dbpedia.org/resource/List_of_The_Tonight_Show_with_Jay_Leno_episodes_(2013\u201314)", "http://dbpedia.org/resource/Little_Big_Shots", "http://dbpedia.org/resource/Little_Gloria..._Happy_at_Last", "http://dbpedia.org/resource/Little_House_on_the_Prairie_(film)", "http://dbpedia.org/resource/Little_Richard_(film)", "http://dbpedia.org/resource/Miami_Vice", "http://dbpedia.org/resource/Michael_Bubl\u00e9's_Christmas_in_the_City", "http://dbpedia.org/resource/Michael_Shayne", "http://dbpedia.org/resource/Mickey's_60th_Birthday", "http://dbpedia.org/resource/Micro_Ventures", "http://dbpedia.org/resource/Midnight,_Texas", "http://dbpedia.org/resource/Midnight_Caller", "http://dbpedia.org/resource/Million_Dollar_Game", "http://dbpedia.org/resource/Mindreaders", "http://dbpedia.org/resource/Minute_to_Win_It_(American_game_show)", "http://dbpedia.org/resource/Miracle_Child_(film)", "http://dbpedia.org/resource/PDQ_(game_show)", "http://dbpedia.org/resource/Pacific_Station_(TV_series)", "http://dbpedia.org/resource/Parent_Trap:_Hawaiian_Honeymoon", "http://dbpedia.org/resource/Parent_Trap_III", "http://dbpedia.org/resource/Parenthood_(1990_TV_series)", "http://dbpedia.org/resource/Parenthood_(2010_TV_series)", "http://dbpedia.org/resource/Parenthood_(season_1)", "http://dbpedia.org/resource/Parenthood_(season_2)", "http://dbpedia.org/resource/Parenthood_(season_3)", "http://dbpedia.org/resource/Parenthood_(season_4)", "http://dbpedia.org/resource/Parenthood_(season_5)", "http://dbpedia.org/resource/Parenthood_(season_6)", "http://dbpedia.org/resource/Parks_and_Recreation_(season_1)", "http://dbpedia.org/resource/Parks_and_Recreation_(season_2)", "http://dbpedia.org/resource/Parks_and_Recreation_(season_3)", "http://dbpedia.org/resource/Parks_and_Recreation_(season_4)", "http://dbpedia.org/resource/Parks_and_Recreation_(season_5)", "http://dbpedia.org/resource/Parks_and_Recreation_(season_6)", "http://dbpedia.org/resource/Parks_and_Recreation_(season_7)", "http://dbpedia.org/resource/Partners_in_Crime_(American_TV_series)", "http://dbpedia.org/resource/Passions", "http://dbpedia.org/resource/Password_Plus_and_Super_Password", "http://dbpedia.org/resource/Roomies_(TV_series)", "http://dbpedia.org/resource/Roommates_(1994_film)", "http://dbpedia.org/resource/Rosetti_and_Ryan", "http://dbpedia.org/resource/Route_66_(1993_TV_series)", "http://dbpedia.org/resource/Rowan_&_Martin's_Laugh-In", "http://dbpedia.org/resource/Run,_Joe,_Run", "http://dbpedia.org/resource/Run_for_Your_Life_(TV_series)", "http://dbpedia.org/resource/Running_Wild_with_Bear_Grylls", "http://dbpedia.org/resource/Running_the_Halls", "http://dbpedia.org/resource/Yo_Yogi!", "http://dbpedia.org/resource/Yogi's_Space_Race", "http://dbpedia.org/resource/You're_Putting_Me_On", "http://dbpedia.org/resource/You,_Me_and_the_Apocalypse", "http://dbpedia.org/resource/Young_Rock", "http://dbpedia.org/resource/Your_First_Impression", "http://dbpedia.org/resource/Your_Prize_Story", "http://dbpedia.org/resource/Your_Show_of_Shows", "http://dbpedia.org/resource/Zoey's_Extraordinary_Playlist", "http://dbpedia.org/resource/Soccer_on_NBC_Sports", "http://dbpedia.org/resource/Sox_Appeal", "http://dbpedia.org/resource/2022_NHL_Entry_Draft", "http://dbpedia.org/resource/NHL_Network_Showcase", "http://dbpedia.org/resource/Day_Zero:_The_Series", "http://dbpedia.org/resource/Before_the_Impact", "http://dbpedia.org/resource/Inside_MMA", "http://dbpedia.org/resource/Strong_Style_Evolved", "http://dbpedia.org/resource/Drinking_Made_Easy", "http://dbpedia.org/resource/Ring_of_Honor_Wrestling", "http://dbpedia.org/resource/Dallas_Cowboys_Cheerleaders:_Making_the_Team", "http://dbpedia.org/resource/Whiskey_Business_(film)", "http://dbpedia.org/resource/Trick_My_Truck", "http://dbpedia.org/resource/2002_CMT_Flameworthy_Awards", "http://dbpedia.org/resource/2018_CMT_Music_Awards", "http://dbpedia.org/resource/2019_CMT_Music_Awards", "http://dbpedia.org/resource/2020_CMT_Music_Awards", "http://dbpedia.org/resource/Fernando_del_Rinc\u00f3n", "http://dbpedia.org/resource/Canap\u00e9_(TV_series)", "http://dbpedia.org/resource/WOW:_The_CatholicTV_Challenge", "http://dbpedia.org/resource/2021_Americana_Music_Honors_&_Awards", "http://dbpedia.org/resource/2022_Americana_Music_Honors_&_Awards", "http://dbpedia.org/resource/Victor_and_Valentino", "http://dbpedia.org/resource/Destroy_Build_Destroy", "http://dbpedia.org/resource/Dexter's_Laboratory", "http://dbpedia.org/resource/Dino:_Stay_Out!", "http://dbpedia.org/resource/Dino:_The_Great_Egg-Scape", "http://dbpedia.org/resource/Ben_10:_Alien_Force", "http://dbpedia.org/resource/Ben_10:_Destroy_All_Aliens", "http://dbpedia.org/resource/Ben_10:_Ultimate_Alien", "http://dbpedia.org/resource/Ben_10_(2005_TV_series)", "http://dbpedia.org/resource/Ben_10_(2016_TV_series)", "http://dbpedia.org/resource/Beware_the_Batman", "http://dbpedia.org/resource/Foster's_Home_for_Imaginary_Friends", "http://dbpedia.org/resource/George_of_the_Jungle_(2007_TV_series)", "http://dbpedia.org/resource/Team_Hot_Wheels", "http://dbpedia.org/resource/Teen_Titans:_Trouble_in_Tokyo", "http://dbpedia.org/resource/Teen_Titans_(TV_series)", "http://dbpedia.org/resource/Teen_Titans_(season_3)", "http://dbpedia.org/resource/Teen_Titans_(season_4)", "http://dbpedia.org/resource/Teen_Titans_Go!", "http://dbpedia.org/resource/We_Baby_Bears", "http://dbpedia.org/resource/We_Bare_Bears", "http://dbpedia.org/resource/What's_New,_Scooby-Doo%3F", "http://dbpedia.org/resource/Whatever_Happened_to..._Robot_Jones%3F", "http://dbpedia.org/resource/12_Tiny_Christmas_Tales", "http://dbpedia.org/resource/Apple_&_Onion", "http://dbpedia.org/resource/Aqua_Teen_Hunger_Force", "http://dbpedia.org/resource/Aquaman:_King_of_Atlantis", "http://dbpedia.org/resource/Gerald_McBoing-Boing_(TV_series)", "http://dbpedia.org/resource/Gormiti_Nature_Unleashed", "http://dbpedia.org/resource/Pink_Panther_and_Pals", "http://dbpedia.org/resource/The_Amazing_World_of_Gumball", "http://dbpedia.org/resource/The_Amazing_World_of_Gumball_(season_1)", "http://dbpedia.org/resource/The_Amazing_World_of_Gumball_(season_2)", "http://dbpedia.org/resource/The_Amazing_World_of_Gumball_(season_3)", "http://dbpedia.org/resource/The_Amazing_World_of_Gumball_(season_4)", "http://dbpedia.org/resource/The_Amazing_World_of_Gumball_(season_5)", "http://dbpedia.org/resource/The_Amazing_World_of_Gumball_(season_6)", "http://dbpedia.org/resource/The_Big_Field_Trip", "http://dbpedia.org/resource/The_Bob_Clampett_Show", "http://dbpedia.org/resource/Unnatural_History_(TV_series)", "http://dbpedia.org/resource/Max_Steel", "http://dbpedia.org/resource/Boomerang_(TV_network)", "http://dbpedia.org/resource/BrainRush", "http://dbpedia.org/resource/Max_Steel_(2013_TV_series)", "http://dbpedia.org/resource/Megas_XLR", "http://dbpedia.org/resource/Re-Animated", "http://dbpedia.org/resource/Regular_Show", "http://dbpedia.org/resource/Regular_Show_(season_1)", "http://dbpedia.org/resource/Regular_Show_(season_2)", "http://dbpedia.org/resource/Regular_Show_(season_3)", "http://dbpedia.org/resource/Regular_Show_(season_4)", "http://dbpedia.org/resource/Regular_Show_(season_5)", "http://dbpedia.org/resource/Regular_Show_(season_6)", "http://dbpedia.org/resource/Regular_Show_(season_7)", "http://dbpedia.org/resource/Regular_Show_(season_8)", "http://dbpedia.org/resource/The_Fantastic_Voyages_of_Sinbad_the_Sailor", "http://dbpedia.org/resource/The_Grim_Adventures_of_Billy_&_Mandy", "http://dbpedia.org/resource/The_Grim_Adventures_of_Billy_&_Mandy_(season_1)", "http://dbpedia.org/resource/The_High_Fructose_Adventures_of_Annoying_Orange", "http://dbpedia.org/resource/The_Land_Before_Time_(TV_series)", "http://dbpedia.org/resource/The_Life_and_Times_of_Juniper_Lee", "http://dbpedia.org/resource/The_Looney_Tunes_Show", "http://dbpedia.org/resource/The_Othersiders", "http://dbpedia.org/resource/The_Popeye_Show", "http://dbpedia.org/resource/The_Powerpuff_Girls", "http://dbpedia.org/resource/The_Powerpuff_Girls_(2016_TV_series)", "http://dbpedia.org/resource/The_Problem_Solverz", "http://dbpedia.org/resource/The_Real_Adventures_of_Jonny_Quest", "http://dbpedia.org/resource/The_Secret_Saturdays", "http://dbpedia.org/resource/The_Super_Hero_Squad_Show", "http://dbpedia.org/resource/The_Sylvester_&_Tweety_Mysteries", "http://dbpedia.org/resource/The_Tex_Avery_Show", "http://dbpedia.org/resource/6teen", "http://dbpedia.org/resource/Ninjago:_Day_of_the_Departed", "http://dbpedia.org/resource/Ninjago:_Hands_of_Time", "http://dbpedia.org/resource/Ninjago:_Hunted", "http://dbpedia.org/resource/Ninjago:_Legacy_of_the_Green_Ninja", "http://dbpedia.org/resource/Ninjago:_March_of_the_Oni", "http://dbpedia.org/resource/Ninjago:_Master_of_the_Mountain", "http://dbpedia.org/resource/Ninjago:_Masters_of_Spinjitzu_(pilot_episodes)", "http://dbpedia.org/resource/Ninjago:_Possession", "http://dbpedia.org/resource/Ninjago:_Prime_Empire", "http://dbpedia.org/resource/Ninjago:_Rebooted", "http://dbpedia.org/resource/Ninjago:_Rise_of_the_Snakes", "http://dbpedia.org/resource/Ninjago:_Seabound", "http://dbpedia.org/resource/Ninjago:_Secrets_of_the_Forbidden_Spinjitzu", "http://dbpedia.org/resource/Ninjago:_Skybound", "http://dbpedia.org/resource/Ninjago:_Sons_of_Garmadon", "http://dbpedia.org/resource/Ninjago:_The_Island", "http://dbpedia.org/resource/Ninjago:_Tournament_of_Elements", "http://dbpedia.org/resource/O_Canada_(TV_series)", "http://dbpedia.org/resource/Clarence_(American_TV_series)", "http://dbpedia.org/resource/Class_of_3000", "http://dbpedia.org/resource/Codename:_Kids_Next_Door", "http://dbpedia.org/resource/Johnny_Bravo", "http://dbpedia.org/resource/Johnny_Test_(season_4)", "http://dbpedia.org/resource/Scooby-Doo!_Curse_of_the_Lake_Monster", "http://dbpedia.org/resource/Scooby-Doo!_Mystery_Incorporated", "http://dbpedia.org/resource/Scooby-Doo!_The_Mystery_Begins", "http://dbpedia.org/resource/Secret_Mountain_Fort_Awesome", "http://dbpedia.org/resource/Sendokai_Champions", "http://dbpedia.org/resource/Bakugan:_Armored_Alliance", "http://dbpedia.org/resource/Bakugan:_Gundalian_Invaders", "http://dbpedia.org/resource/Bakugan:_Mechtanium_Surge", "http://dbpedia.org/resource/Bakugan_Battle_Brawlers:_New_Vestroia", "http://dbpedia.org/resource/Bakugan_Battle_Brawlers_(season_1)", "http://dbpedia.org/resource/Infinity_Train", "http://dbpedia.org/resource/Izzy_(mascot)", "http://dbpedia.org/resource/Mixels", "http://dbpedia.org/resource/Total_Drama", "http://dbpedia.org/resource/Total_Drama:_Revenge_of_the_Island", "http://dbpedia.org/resource/Total_DramaRama", "http://dbpedia.org/resource/Total_Drama_Action", "http://dbpedia.org/resource/Total_Drama_All-Stars_and_Pahkitew_Island", "http://dbpedia.org/resource/Total_Drama_World_Tour", "http://dbpedia.org/resource/Transformers:_Robots_in_Disguise_(2015_TV_series)", "http://dbpedia.org/resource/A_Kitty_Bobo_Show", "http://dbpedia.org/resource/Ace_Ventura_Jr.:_Pet_Detective", "http://dbpedia.org/resource/Adventure_Time", "http://dbpedia.org/resource/Adventure_Time_(season_1)", "http://dbpedia.org/resource/Adventure_Time_(season_10)", "http://dbpedia.org/resource/Adventure_Time_(season_2)", "http://dbpedia.org/resource/Adventure_Time_(season_3)", "http://dbpedia.org/resource/Adventure_Time_(season_4)", "http://dbpedia.org/resource/Adventure_Time_(season_5)", "http://dbpedia.org/resource/Adventure_Time_(season_6)", "http://dbpedia.org/resource/Adventure_Time_(season_7)", "http://dbpedia.org/resource/Adventure_Time_(season_8)", "http://dbpedia.org/resource/Adventure_Time_(season_9)", "http://dbpedia.org/resource/Chaotic_(TV_series)", "http://dbpedia.org/resource/Chowder_(TV_series)", "http://dbpedia.org/resource/Steven_Universe", "http://dbpedia.org/resource/Steven_Universe:_The_Movie", "http://dbpedia.org/resource/Steven_Universe_Future", "http://dbpedia.org/resource/Storm_Hawks", "http://dbpedia.org/resource/Summer_Camp_Island", "http://dbpedia.org/resource/Cartoon_Network_(Central_and_Eastern_Europe)", "http://dbpedia.org/resource/Casper's_Scare_School_(TV_series)", "http://dbpedia.org/resource/Dragon_Hunters", "http://dbpedia.org/resource/Duck_Dodgers_(TV_series)", "http://dbpedia.org/resource/Sitting_Ducks_(TV_series)", "http://dbpedia.org/resource/Courage_the_Cowardly_Dog", "http://dbpedia.org/resource/Craig_of_the_Creek", "http://dbpedia.org/resource/DC_Nation_Shorts", "http://dbpedia.org/resource/DC_Super_Hero_Girls", "http://dbpedia.org/resource/DC_Super_Hero_Girls_(TV_series)", "http://dbpedia.org/resource/Green_Lantern:_The_Animated_Series", "http://dbpedia.org/resource/He-Man_and_the_Masters_of_the_Universe_(2002_TV_series)", "http://dbpedia.org/resource/Hi_Hi_Puffy_AmiYumi", "http://dbpedia.org/resource/High_Noon_Toons", "http://dbpedia.org/resource/Robotech_(TV_series)", "http://dbpedia.org/resource/Robotomy", "http://dbpedia.org/resource/Fantastic_Four:_World's_Greatest_Heroes", "http://dbpedia.org/resource/Firehouse_Tales", "http://dbpedia.org/resource/Lego_Scooby-Doo!_Knight_Time_Terror", "http://dbpedia.org/resource/Lego_Star_Wars:_The_Quest_for_R2-D2", "http://dbpedia.org/resource/Level_Up_(American_TV_series)", "http://dbpedia.org/resource/List_of_Adventure_Time_episodes", "http://dbpedia.org/resource/List_of_Aqua_Teen_Hunger_Force_episodes", "http://dbpedia.org/resource/List_of_Baby_Looney_Tunes_episodes", "http://dbpedia.org/resource/Night_of_the_Living_Doo", "http://dbpedia.org/resource/Pet_Alien", "http://dbpedia.org/resource/ThunderCats_(2011_TV_series)", "http://dbpedia.org/resource/Ed,_Edd_n_Eddy", "http://dbpedia.org/resource/Ed,_Edd_n_Eddy_(season_1)", "http://dbpedia.org/resource/Ed,_Edd_n_Eddy_(season_2)", "http://dbpedia.org/resource/Ellen's_Acres", "http://dbpedia.org/resource/Justice_League_(TV_series)", "http://dbpedia.org/resource/Justice_League_Action", "http://dbpedia.org/resource/Lucas_the_Spider", "http://dbpedia.org/resource/Out_of_Jimmy's_Head", "http://dbpedia.org/resource/Sheep_in_the_Big_City", "http://dbpedia.org/resource/Sherlock_Yack", "http://dbpedia.org/resource/Squirrel_Boy", "http://dbpedia.org/resource/Star_Wars:_Clone_Wars_(2003_TV_series)", "http://dbpedia.org/resource/Bobb'e_Says", "http://dbpedia.org/resource/Kit_and_Kate", "http://dbpedia.org/resource/List_of_DreamWorks_Dragons_episodes", "http://dbpedia.org/resource/List_of_Infinity_Train_episodes", "http://dbpedia.org/resource/List_of_Johnny_Bravo_episodes", "http://dbpedia.org/resource/List_of_Johnny_Test_episodes", "http://dbpedia.org/resource/List_of_New_Looney_Tunes_episodes", "http://dbpedia.org/resource/List_of_Samurai_Jack_episodes", "http://dbpedia.org/resource/List_of_Space_Ghost_Coast_to_Coast_episodes", "http://dbpedia.org/resource/List_of_Star_Wars:_The_Clone_Wars_episodes", "http://dbpedia.org/resource/List_of_The_Garfield_Show_episodes", "http://dbpedia.org/resource/List_of_The_Tom_and_Jerry_Show_(2014_TV_series)_episodes", "http://dbpedia.org/resource/List_of_Young_Justice_episodes", "http://dbpedia.org/resource/YooHoo_&_Friends_(2012_TV_series)", "http://dbpedia.org/resource/Zoids:_Genesis", "http://dbpedia.org/resource/Ceasar_and_Chuy", "http://dbpedia.org/resource/The_Adventures_of_Marco_&_Gina", "http://dbpedia.org/resource/All_Aboard!_Rosie's_Family_Cruise", "http://dbpedia.org/resource/All_the_Rivers_Run", "http://dbpedia.org/resource/All_the_Way_(film)", "http://dbpedia.org/resource/America's_Dream", "http://dbpedia.org/resource/Amy_Schumer:_Live_at_the_Apollo", "http://dbpedia.org/resource/An_American_Girl:_Chrissa_Stands_Strong", "http://dbpedia.org/resource/And_Starring_Pancho_Villa_as_Himself", "http://dbpedia.org/resource/Dave_Chappelle:_Killin'_Them_Softly", "http://dbpedia.org/resource/Dead_Silence_(1997_film)", "http://dbpedia.org/resource/Deadwood_(TV_series)", "http://dbpedia.org/resource/Death_on_a_Factory_Farm", "http://dbpedia.org/resource/Vanities_(TV_program)", "http://dbpedia.org/resource/Veep", "http://dbpedia.org/resource/Veep_(season_4)", "http://dbpedia.org/resource/Veep_(season_5)", "http://dbpedia.org/resource/Vice_(TV_series)", "http://dbpedia.org/resource/Vice_Principals_(Season_1)", "http://dbpedia.org/resource/Video_Jukebox_(TV_series)", "http://dbpedia.org/resource/Warm_Springs_(film)", "http://dbpedia.org/resource/Wataha", "http://dbpedia.org/resource/Watchmen_(TV_series)", "http://dbpedia.org/resource/Def_Poetry_Jam", "http://dbpedia.org/resource/Dennis_Miller_Live", "http://dbpedia.org/resource/Dinner_with_Friends_(film)", "http://dbpedia.org/resource/As_Summers_Die", "http://dbpedia.org/resource/Attack_of_the_50_Ft._Woman_(1993_film)", "http://dbpedia.org/resource/Becoming_Mike_Nichols", "http://dbpedia.org/resource/Beethoven_Lives_Upstairs", "http://dbpedia.org/resource/Bessie_(film)", "http://dbpedia.org/resource/Betty_(TV_series)", "http://dbpedia.org/resource/For_Love_or_Country:_The_Arturo_Sandoval_Story", "http://dbpedia.org/resource/Freddie_the_Freeloader's_Christmas_Dinner", "http://dbpedia.org/resource/Friends_of_God:_A_Road_Trip_with_Alexandra_Pelosi", "http://dbpedia.org/resource/From_the_Earth_to_the_Moon_(miniseries)", "http://dbpedia.org/resource/Game_of_Thrones", "http://dbpedia.org/resource/Game_of_Thrones_(season_1)", "http://dbpedia.org/resource/Game_of_Thrones_(season_2)", "http://dbpedia.org/resource/Game_of_Thrones_(season_3)", "http://dbpedia.org/resource/Game_of_Thrones_(season_4)", "http://dbpedia.org/resource/Game_of_Thrones_(season_5)", "http://dbpedia.org/resource/Game_of_Thrones_(season_6)", "http://dbpedia.org/resource/Game_of_Thrones_(season_7)", "http://dbpedia.org/resource/Game_of_Thrones_(season_8)", "http://dbpedia.org/resource/Generation_Kill_(miniseries)", "http://dbpedia.org/resource/George_Carlin's_American_Dream", "http://dbpedia.org/resource/George_Carlin_at_USC", "http://dbpedia.org/resource/Handel's_Last_Chance", "http://dbpedia.org/resource/Hard_Knocks_(2001_TV_series)", "http://dbpedia.org/resource/Sakharov_(film)", "http://dbpedia.org/resource/Taking_Chance", "http://dbpedia.org/resource/Tales_from_the_Crypt_(TV_series)", "http://dbpedia.org/resource/Talking_Funny_(television_special)", "http://dbpedia.org/resource/Tanner_'88", "http://dbpedia.org/resource/Teamster_Boss:_The_Jackie_Presser_Story", "http://dbpedia.org/resource/Tell_Me_You_Love_Me_(TV_series)", "http://dbpedia.org/resource/Tell_Them_Anything_You_Want:_A_Portrait_of_Maurice_Sendak", "http://dbpedia.org/resource/We're_Here", "http://dbpedia.org/resource/Westworld_(TV_series)", "http://dbpedia.org/resource/Westworld_(season_1)", "http://dbpedia.org/resource/Westworld_(season_2)", "http://dbpedia.org/resource/Westworld_(season_3)", "http://dbpedia.org/resource/Westworld_(season_4)", "http://dbpedia.org/resource/When_the_Levees_Broke", "http://dbpedia.org/resource/100_Foot_Wave", "http://dbpedia.org/resource/12_Miles_of_Bad_Road", "http://dbpedia.org/resource/Angels_in_America_(miniseries)", "http://dbpedia.org/resource/Animals_(American_TV_series)", "http://dbpedia.org/resource/Arliss_(TV_series)", "http://dbpedia.org/resource/Empire_Falls_(miniseries)", "http://dbpedia.org/resource/Encyclopedia_(TV_series)", "http://dbpedia.org/resource/Entourage_(American_TV_series)", "http://dbpedia.org/resource/Gia", "http://dbpedia.org/resource/Girls_(season_1)", "http://dbpedia.org/resource/Go,_Diego,_Go!", "http://dbpedia.org/resource/Gorilla_and_the_Bird", "http://dbpedia.org/resource/Mare_of_Easttown", "http://dbpedia.org/resource/Pray,_Obey,_Kill", "http://dbpedia.org/resource/Temple_Grandin_(film)", "http://dbpedia.org/resource/Tenacious_D_(TV_series)", "http://dbpedia.org/resource/The_Adventures_of_Tintin_(TV_series)", "http://dbpedia.org/resource/The_Atlantis_Conspiracy", "http://dbpedia.org/resource/The_Baby_(TV_series)", "http://dbpedia.org/resource/The_Blood_of_Others_(film)", "http://dbpedia.org/resource/The_Cherokee_Kid", "http://dbpedia.org/resource/The_Christmas_Wife", "http://dbpedia.org/resource/Undefeated_(2003_film)", "http://dbpedia.org/resource/Bored_to_Death", "http://dbpedia.org/resource/Boxing_After_Dark", "http://dbpedia.org/resource/Boycott_(2001_film)", "http://dbpedia.org/resource/Braingames_(1983_TV_series)", "http://dbpedia.org/resource/Broad_Street_Bullies_(film)", "http://dbpedia.org/resource/Maximum_Security_(TV_series)", "http://dbpedia.org/resource/McMillions", "http://dbpedia.org/resource/Random_Acts_of_Flyness", "http://dbpedia.org/resource/Real_Time_with_Bill_Maher", "http://dbpedia.org/resource/Real_Time_with_Bill_Maher_(season_1)", "http://dbpedia.org/resource/Real_Time_with_Bill_Maher_(season_10)", "http://dbpedia.org/resource/Real_Time_with_Bill_Maher_(season_11)", "http://dbpedia.org/resource/Real_Time_with_Bill_Maher_(season_12)", "http://dbpedia.org/resource/Real_Time_with_Bill_Maher_(season_13)", "http://dbpedia.org/resource/Real_Time_with_Bill_Maher_(season_14)", "http://dbpedia.org/resource/Real_Time_with_Bill_Maher_(season_15)", "http://dbpedia.org/resource/Real_Time_with_Bill_Maher_(season_16)", "http://dbpedia.org/resource/Real_Time_with_Bill_Maher_(season_17)", "http://dbpedia.org/resource/Real_Time_with_Bill_Maher_(season_18)", "http://dbpedia.org/resource/Real_Time_with_Bill_Maher_(season_19)", "http://dbpedia.org/resource/Real_Time_with_Bill_Maher_(season_2)", "http://dbpedia.org/resource/Real_Time_with_Bill_Maher_(season_20)", "http://dbpedia.org/resource/Real_Time_with_Bill_Maher_(season_3)", "http://dbpedia.org/resource/Real_Time_with_Bill_Maher_(season_4)", "http://dbpedia.org/resource/Real_Time_with_Bill_Maher_(season_5)", "http://dbpedia.org/resource/Real_Time_with_Bill_Maher_(season_6)", "http://dbpedia.org/resource/Real_Time_with_Bill_Maher_(season_7)", "http://dbpedia.org/resource/Real_Time_with_Bill_Maher_(season_8)", "http://dbpedia.org/resource/Real_Time_with_Bill_Maher_(season_9)", "http://dbpedia.org/resource/Red_King,_White_Knight", "http://dbpedia.org/resource/Reunion_at_Fairborough", "http://dbpedia.org/resource/Reverb_(TV_series)", "http://dbpedia.org/resource/The_Cleaning_Lady_(Mexican_TV_series)", "http://dbpedia.org/resource/The_Cold_Room", "http://dbpedia.org/resource/The_Comeback_(TV_series)", "http://dbpedia.org/resource/The_Corner", "http://dbpedia.org/resource/The_Country_Mouse_and_the_City_Mouse:_A_Christmas_Tale", "http://dbpedia.org/resource/The_Country_Mouse_and_the_City_Mouse_Adventures", "http://dbpedia.org/resource/The_Deuce_(TV_series)", "http://dbpedia.org/resource/The_Gilded_Age_(TV_series)", "http://dbpedia.org/resource/The_Girl_(2012_TV_film)", "http://dbpedia.org/resource/The_High_Life_(American_TV_series)", "http://dbpedia.org/resource/The_Hound_of_the_Baskervilles_(1983_film)", "http://dbpedia.org/resource/The_Idol_(TV_series)", "http://dbpedia.org/resource/The_Image_(1990_film)", "http://dbpedia.org/resource/The_Larry_Sanders_Show", "http://dbpedia.org/resource/The_Last_Innocent_Man", "http://dbpedia.org/resource/The_Last_Polka", "http://dbpedia.org/resource/The_Last_of_His_Tribe", "http://dbpedia.org/resource/The_Last_of_Us_(TV_series)", "http://dbpedia.org/resource/The_Laundromat_(1985_film)", "http://dbpedia.org/resource/The_Lazarus_Effect_(2010_film)", "http://dbpedia.org/resource/The_Leftovers_(TV_series)", "http://dbpedia.org/resource/The_Life_and_Death_of_Peter_Sellers", "http://dbpedia.org/resource/The_Lion_of_Africa", "http://dbpedia.org/resource/The_Little_Lulu_Show", "http://dbpedia.org/resource/The_Man_Who_Broke_1,000_Chains", "http://dbpedia.org/resource/The_Mind_of_the_Married_Man", "http://dbpedia.org/resource/The_Nevers", "http://dbpedia.org/resource/The_No._1_Ladies'_Detective_Agency_(TV_series)", "http://dbpedia.org/resource/The_Outsider_(miniseries)", "http://dbpedia.org/resource/The_Pacific_(miniseries)", "http://dbpedia.org/resource/The_Park_Is_Mine_(1986_film)", "http://dbpedia.org/resource/The_Pee-wee_Herman_Show", "http://dbpedia.org/resource/The_Plot_Against_America_(miniseries)", "http://dbpedia.org/resource/The_Quick_and_the_Dead_(1987_film)", "http://dbpedia.org/resource/The_Ray_Bradbury_Theater", "http://dbpedia.org/resource/The_Rehearsal_(TV_series)", "http://dbpedia.org/resource/The_Ricky_Gervais_Show_(TV_series)", "http://dbpedia.org/resource/The_Righteous_Gemstones", "http://dbpedia.org/resource/The_Rock_&_Roll_Hall_of_Fame_2020_Inductions", "http://dbpedia.org/resource/The_Sign_of_Four_(1983_film)", "http://dbpedia.org/resource/The_Sopranos", "http://dbpedia.org/resource/The_Sopranos_(season_1)", "http://dbpedia.org/resource/The_Sopranos_(season_2)", "http://dbpedia.org/resource/The_Sopranos_(season_3)", "http://dbpedia.org/resource/The_Sopranos_(season_4)", "http://dbpedia.org/resource/The_Sopranos_(season_5)", "http://dbpedia.org/resource/The_Sopranos_(season_6)", "http://dbpedia.org/resource/The_Special_Relationship_(film)", "http://dbpedia.org/resource/The_Sunset_Limited_(film)", "http://dbpedia.org/resource/The_Tale_of_the_Bunny_Picnic", "http://dbpedia.org/resource/The_Third_Day_(TV_series)", "http://dbpedia.org/resource/The_Time_Traveler's_Wife_(TV_series)", "http://dbpedia.org/resource/The_Tragedy_of_Flight_103:_The_Inside_Story", "http://dbpedia.org/resource/The_Trolls_and_the_Christmas_Express", "http://dbpedia.org/resource/The_Undoing", "http://dbpedia.org/resource/The_White_House_Plumbers", "http://dbpedia.org/resource/The_White_Lotus", "http://dbpedia.org/resource/The_Wire_(season_1)", "http://dbpedia.org/resource/The_Wire_(season_2)", "http://dbpedia.org/resource/The_Wire_(season_3)", "http://dbpedia.org/resource/The_Wire_(season_4)", "http://dbpedia.org/resource/The_Wire_(season_5)", "http://dbpedia.org/resource/The_Wizard_of_Lies", "http://dbpedia.org/resource/The_Wonderful_Maladys", "http://dbpedia.org/resource/One_Night_Stand_(American_TV_series)", "http://dbpedia.org/resource/1st_&_Ten_(1984_TV_series)", "http://dbpedia.org/resource/24/7_(American_TV_program)", "http://dbpedia.org/resource/61*", "http://dbpedia.org/resource/7_Days_in_Hell", "http://dbpedia.org/resource/Normal_(2003_film)", "http://dbpedia.org/resource/Not_Necessarily_the_News", "http://dbpedia.org/resource/Nuclear_Family_(TV_series)", "http://dbpedia.org/resource/Obama:_In_Pursuit_of_a_More_Perfect_Union", "http://dbpedia.org/resource/Classical_Baby", "http://dbpedia.org/resource/Clear_History", "http://dbpedia.org/resource/Condominium_(film)", "http://dbpedia.org/resource/Confirmation_(film)", "http://dbpedia.org/resource/Conspiracy_(2001_film)", "http://dbpedia.org/resource/All_Signs_of_Death", "http://dbpedia.org/resource/John_from_Cincinnati", "http://dbpedia.org/resource/Santos_Dumont_(miniseries)", "http://dbpedia.org/resource/Saving_My_Tomorrow", "http://dbpedia.org/resource/Scenes_from_a_Marriage_(American_miniseries)", "http://dbpedia.org/resource/Seabert", "http://dbpedia.org/resource/Band_of_Brothers_(miniseries)", "http://dbpedia.org/resource/Barbarians_at_the_Gate_(film)", "http://dbpedia.org/resource/Barry_(TV_series)", "http://dbpedia.org/resource/Into_the_Homeland", "http://dbpedia.org/resource/Introducing_Dorothy_Dandridge", "http://dbpedia.org/resource/Miss_Evers'_Boys", "http://dbpedia.org/resource/Mommy_Dead_and_Dearest", "http://dbpedia.org/resource/Monty_Python_Live_at_Aspen", "http://dbpedia.org/resource/Mr._Show_with_Bob_and_David", "http://dbpedia.org/resource/Mrs._Fletcher", "http://dbpedia.org/resource/Mrs._Harris", "http://dbpedia.org/resource/Muhammad_Ali's_Greatest_Fight", "http://dbpedia.org/resource/Murderers_Among_Us:_The_Simon_Wiesenthal_Story", "http://dbpedia.org/resource/Mussolini_and_I", "http://dbpedia.org/resource/My_Dinner_with_Herv\u00e9", "http://dbpedia.org/resource/My_House_in_Umbria", "http://dbpedia.org/resource/NYC_Epicenters_9/11\u21922021\u00bd", "http://dbpedia.org/resource/Namath:_From_Beaver_Falls_to_Broadway", "http://dbpedia.org/resource/Too_Big_to_Fail_(film)", "http://dbpedia.org/resource/Tour_de_Pharmacy", "http://dbpedia.org/resource/Tracey_Ullman:_Live_and_Exposed", "http://dbpedia.org/resource/Tracey_Ullman_Takes_on_New_York", "http://dbpedia.org/resource/Tracey_Ullman_in_the_Trailer_Tales", "http://dbpedia.org/resource/Traveling_Man_(film)", "http://dbpedia.org/resource/Treme_(TV_series)", "http://dbpedia.org/resource/True_Blood_(season_1)", "http://dbpedia.org/resource/True_Blood_(season_2)", "http://dbpedia.org/resource/True_Blood_(season_3)", "http://dbpedia.org/resource/True_Blood_(season_4)", "http://dbpedia.org/resource/True_Blood_(season_5)", "http://dbpedia.org/resource/True_Blood_(season_6)", "http://dbpedia.org/resource/True_Blood_(season_7)", "http://dbpedia.org/resource/True_Detective_(season_1)", "http://dbpedia.org/resource/True_Detective_(season_2)", "http://dbpedia.org/resource/True_Detective_(season_3)", "http://dbpedia.org/resource/A_Black_Lady_Sketch_Show", "http://dbpedia.org/resource/A_Dog_Year", "http://dbpedia.org/resource/A_Lesson_Before_Dying_(film)", "http://dbpedia.org/resource/A_Matter_of_Taste", "http://dbpedia.org/resource/Act_of_Vengeance_(1986_film)", "http://dbpedia.org/resource/After_the_Thrones", "http://dbpedia.org/resource/Afterburn_(film)", "http://dbpedia.org/resource/Age-Old_Friends", "http://dbpedia.org/resource/Bury_My_Heart_at_Wounded_Knee_(film)", "http://dbpedia.org/resource/Camping_(American_TV_series)", "http://dbpedia.org/resource/Chain_of_Command_(2000_film)", "http://dbpedia.org/resource/Cheaters_(2000_film)", "http://dbpedia.org/resource/Chris_Rock:_Bring_the_Pain", "http://dbpedia.org/resource/Chris_Rock:_Kill_the_Messenger", "http://dbpedia.org/resource/Stranger_Inside", "http://dbpedia.org/resource/Strip_Search_(film)", "http://dbpedia.org/resource/Stuart_Little_(TV_series)", "http://dbpedia.org/resource/Succession_(TV_series)", "http://dbpedia.org/resource/Sugartime_(film)", "http://dbpedia.org/resource/Cast_a_Deadly_Spell", "http://dbpedia.org/resource/Catch_and_Kill:_The_Podcast_Tapes", "http://dbpedia.org/resource/Hostages_(1992_film)", "http://dbpedia.org/resource/Hotel_Room", "http://dbpedia.org/resource/House_of_the_Dragon", "http://dbpedia.org/resource/How_To_with_John_Wilson", "http://dbpedia.org/resource/How_to_Make_It_in_America", "http://dbpedia.org/resource/Last_Week_Tonight_with_John_Oliver", "http://dbpedia.org/resource/Laurel_Avenue", "http://dbpedia.org/resource/Don_King:_Only_in_America", "http://dbpedia.org/resource/Doomsday_Gun", "http://dbpedia.org/resource/Doublecrossed", "http://dbpedia.org/resource/Small_Town_News:_KPVM_Pahrump", "http://dbpedia.org/resource/Somebody_Somewhere_(TV_series)", "http://dbpedia.org/resource/Something_the_Lord_Made", "http://dbpedia.org/resource/Soul_of_the_Game", "http://dbpedia.org/resource/Cosmic_Slop_(film)", "http://dbpedia.org/resource/Criminal_Justice_(film)", "http://dbpedia.org/resource/Curb_Your_Enthusiasm", "http://dbpedia.org/resource/Grand_Avenue_(film)", "http://dbpedia.org/resource/Grey_Gardens_(2009_film)", "http://dbpedia.org/resource/Gulag_(film)", "http://dbpedia.org/resource/HBO_Asia", "http://dbpedia.org/resource/HBO_World_Championship_Boxing", "http://dbpedia.org/resource/Here_and_Now_(2018_TV_series)", "http://dbpedia.org/resource/Mandela_(1987_film)", "http://dbpedia.org/resource/Rich_Little's_Christmas_Carol", "http://dbpedia.org/resource/Rock_and_a_Hard_Place_(film)", "http://dbpedia.org/resource/Fall_to_Grace_(film)", "http://dbpedia.org/resource/Fever_(1991_film)", "http://dbpedia.org/resource/Flight_of_the_Conchords_(TV_series)", "http://dbpedia.org/resource/Joe_Buck_Live", "http://dbpedia.org/resource/John_Adams_(miniseries)", "http://dbpedia.org/resource/Life_Is_But_a_Dream", "http://dbpedia.org/resource/Lifestories:_Families_in_Crisis", "http://dbpedia.org/resource/Lip_Service_(1988_film)", "http://dbpedia.org/resource/Never_Scared", "http://dbpedia.org/resource/Perfect_Witness", "http://dbpedia.org/resource/Perry_Mason_(2020_TV_series)", "http://dbpedia.org/resource/Phoenix_Rising_(American_TV_series)", "http://dbpedia.org/resource/Prison_Stories:_Women_on_the_Inside", "http://dbpedia.org/resource/Prisoner_of_Honor", "http://dbpedia.org/resource/Private_Dicks:_Men_Exposed", "http://dbpedia.org/resource/Q_Into_the_Storm", "http://dbpedia.org/resource/Race_for_the_Pennant", "http://dbpedia.org/resource/Third_Degree_Burn", "http://dbpedia.org/resource/Tig_Notaro:_Boyish_Girl_Interrupted", "http://dbpedia.org/resource/Time_Was", "http://dbpedia.org/resource/Todd_McFarlane's_Spawn", "http://dbpedia.org/resource/Winchell_(film)", "http://dbpedia.org/resource/Winning_Time:_The_Rise_of_the_Lakers_Dynasty", "http://dbpedia.org/resource/Wit_(film)", "http://dbpedia.org/resource/Without_Pity:_A_Film_About_Abilities", "http://dbpedia.org/resource/Without_Warning:_The_James_Brady_Story", "http://dbpedia.org/resource/Women_&_Men:_Stories_of_Seduction", "http://dbpedia.org/resource/Wyatt_Cenac's_Problem_Areas", "http://dbpedia.org/resource/Earthly_Possessions_(film)", "http://dbpedia.org/resource/Eddie_Murphy_Delirious", "http://dbpedia.org/resource/Elizabeth_I_(2005_TV_series)", "http://dbpedia.org/resource/K_Street_(TV_series)", "http://dbpedia.org/resource/Live_from_Baghdad_(film)", "http://dbpedia.org/resource/Lombardi_(film)", "http://dbpedia.org/resource/Lone_Hero", "http://dbpedia.org/resource/Looking_(TV_series)", "http://dbpedia.org/resource/Los_Espookys", "http://dbpedia.org/resource/Lovecraft_Country_(TV_series)", "http://dbpedia.org/resource/Luck_(TV_series)", "http://dbpedia.org/resource/Lucky_Louie", "http://dbpedia.org/resource/Olive_Kitteridge_(miniseries)", "http://dbpedia.org/resource/On_Location_(TV_series)", "http://dbpedia.org/resource/On_the_Run_Tour:_Beyonc\u00e9_and_Jay-Z_(TV_program)", "http://dbpedia.org/resource/Our_Boys_(miniseries)", "http://dbpedia.org/resource/Sesame_Street's_50th_Anniversary_Celebration", "http://dbpedia.org/resource/Sex_and_the_City", "http://dbpedia.org/resource/Sex_and_the_City_(season_1)", "http://dbpedia.org/resource/Sex_and_the_City_(season_2)", "http://dbpedia.org/resource/Sex_and_the_City_(season_3)", "http://dbpedia.org/resource/Sex_and_the_City_(season_4)", "http://dbpedia.org/resource/Sex_and_the_City_(season_5)", "http://dbpedia.org/resource/Sex_and_the_City_(season_6)", "http://dbpedia.org/resource/Sharp_Objects_(miniseries)", "http://dbpedia.org/resource/Silicon_Valley_(season_1)", "http://dbpedia.org/resource/Silicon_Valley_(season_2)", "http://dbpedia.org/resource/Silicon_Valley_(season_3)", "http://dbpedia.org/resource/Silicon_Valley_(season_4)", "http://dbpedia.org/resource/Silicon_Valley_(season_5)", "http://dbpedia.org/resource/Silicon_Valley_(season_6)", "http://dbpedia.org/resource/Stalin_(1992_film)", "http://dbpedia.org/resource/Standing_Room_Only_(TV_series)", "http://dbpedia.org/resource/Big_Little_Lies_(TV_series)", "http://dbpedia.org/resource/Big_Love", "http://dbpedia.org/resource/Bigger_&_Blacker", "http://dbpedia.org/resource/Blackout_(1985_film)", "http://dbpedia.org/resource/Boardwalk_Empire", "http://dbpedia.org/resource/Boardwalk_Empire_(season_1)", "http://dbpedia.org/resource/Boardwalk_Empire_(season_2)", "http://dbpedia.org/resource/Boardwalk_Empire_(season_3)", "http://dbpedia.org/resource/Boardwalk_Empire_(season_4)", "http://dbpedia.org/resource/Boardwalk_Empire_(season_5)", "http://dbpedia.org/resource/Hysterical_Blindness_(film)", "http://dbpedia.org/resource/I_Know_This_Much_Is_True_(miniseries)", "http://dbpedia.org/resource/I_Spy_(2002_TV_series)", "http://dbpedia.org/resource/If_God_Is_Willing_and_da_Creek_Don't_Rise", "http://dbpedia.org/resource/If_These_Walls_Could_Talk", "http://dbpedia.org/resource/In_Treatment", "http://dbpedia.org/resource/In_the_Gloaming_(film)", "http://dbpedia.org/resource/Indictment:_The_McMartin_Trial", "http://dbpedia.org/resource/List_of_Esme_&_Roy_episodes", "http://dbpedia.org/resource/List_of_High_Maintenance_episodes", "http://dbpedia.org/resource/List_of_Ray_Bradbury_Theater_episodes", "http://dbpedia.org/resource/List_of_Vice_episodes", "http://dbpedia.org/resource/Mildred_Pierce_(miniseries)", "http://dbpedia.org/resource/Mind_Over_Murder_(TV_series)", "http://dbpedia.org/resource/Oz_(TV_series)", "http://dbpedia.org/resource/Painting_with_John", "http://dbpedia.org/resource/Room_104", "http://dbpedia.org/resource/Route_9_(film)", "http://dbpedia.org/resource/Run_(American_TV_series)", "http://dbpedia.org/resource/You_Don't_Know_Jack_(film)", "http://dbpedia.org/resource/Yuri_Nosenko:_Double_Agent", "http://dbpedia.org/resource/Alone_(season_1)", "http://dbpedia.org/resource/Digging_for_the_Truth", "http://dbpedia.org/resource/Brad_Meltzer's_Decoded", "http://dbpedia.org/resource/Cities_of_the_Underworld", "http://dbpedia.org/resource/Moonshot_(2009_film)", "http://dbpedia.org/resource/Mail_Call", "http://dbpedia.org/resource/List_of_Ax_Men_episodes", "http://dbpedia.org/resource/Project_Blue_Book_(TV_series)", "http://dbpedia.org/resource/2022_Rust-Oleum_Automotive_Finishes_100", "http://dbpedia.org/resource/2021_Zinsser_SmartCoat_200", "http://dbpedia.org/resource/2022_Atlas_100", "http://dbpedia.org/resource/2022_Calypso_Lemonade_150", "http://dbpedia.org/resource/2022_General_Tire_150_(Phoenix)", "http://dbpedia.org/resource/2022_Henry_Ford_Health_200", "http://dbpedia.org/resource/2022_Menards_250", "http://dbpedia.org/resource/2022_Sprecher_150", "http://dbpedia.org/resource/2022_Zinsser_SmartCoat_200", "http://dbpedia.org/resource/2019_ARCA_Pensacola_200", "http://dbpedia.org/resource/2019_Kentuckiana_Ford_Dealers_ARCA_200", "http://dbpedia.org/resource/2020_Calypso_Lemonade_200", "http://dbpedia.org/resource/2020_Dutch_Boy_150", "http://dbpedia.org/resource/2020_General_Tire_100", "http://dbpedia.org/resource/2020_Illinois_Truck_&_Equipment_Allen_Crowe_100", "http://dbpedia.org/resource/2020_Menards.com_200", "http://dbpedia.org/resource/2020_Menards_200", "http://dbpedia.org/resource/2020_Royal_Truck_&_Trailer_200", "http://dbpedia.org/resource/2020_Shore_Lunch_150", "http://dbpedia.org/resource/2020_Sioux_Chief_PowerPEX_200", "http://dbpedia.org/resource/2020_Toyota_200_presented_by_Crosley_Brands", "http://dbpedia.org/resource/2020_VizCom_200", "http://dbpedia.org/resource/2020_Zinsser_SmartCoat_200", "http://dbpedia.org/resource/2021_Allen_Crowe_100", "http://dbpedia.org/resource/2021_Calypso_Lemonade_200", "http://dbpedia.org/resource/2021_Henry_Ford_Health_System_200", "http://dbpedia.org/resource/2021_Herr's_Potato_Chips_200", "http://dbpedia.org/resource/2021_Menards_250", "http://dbpedia.org/resource/2021_Reese's_150", "http://dbpedia.org/resource/2021_Shore_Lunch_150", "http://dbpedia.org/resource/2021_Sioux_Chief_PowerPEX_200", "http://dbpedia.org/resource/2021_Southern_Illinois_100", "http://dbpedia.org/resource/2021_Sprecher_150", "http://dbpedia.org/resource/WWF_on_MSG_Network", "http://dbpedia.org/resource/1984_MTV_Video_Music_Awards", "http://dbpedia.org/resource/1985_MTV_Video_Music_Awards", "http://dbpedia.org/resource/1986_MTV_Video_Music_Awards", "http://dbpedia.org/resource/1987_MTV_Video_Music_Awards", "http://dbpedia.org/resource/1988_MTV_Video_Music_Awards", "http://dbpedia.org/resource/2010_MTV_Movie_Awards", "http://dbpedia.org/resource/2012_MTV_Video_Music_Awards", "http://dbpedia.org/resource/Alternative_Nation", "http://dbpedia.org/resource/Aly_&_AJ:_Sister_Act", "http://dbpedia.org/resource/Amazingness", "http://dbpedia.org/resource/America's_Best_Dance_Crew", "http://dbpedia.org/resource/America's_Best_Dance_Crew_(season_1)", "http://dbpedia.org/resource/America's_Best_Dance_Crew_(season_2)", "http://dbpedia.org/resource/America's_Best_Dance_Crew_(season_3)", "http://dbpedia.org/resource/America's_Best_Dance_Crew_(season_4)", "http://dbpedia.org/resource/America's_Best_Dance_Crew_(season_5)", "http://dbpedia.org/resource/America's_Best_Dance_Crew_(season_6)", "http://dbpedia.org/resource/America's_Best_Dance_Crew_(season_7)", "http://dbpedia.org/resource/America's_Best_Dance_Crew_(season_8)", "http://dbpedia.org/resource/Amp_(TV_series)", "http://dbpedia.org/resource/Anatomy_of_a_Hate_Crime", "http://dbpedia.org/resource/DanceLife", "http://dbpedia.org/resource/Daria", "http://dbpedia.org/resource/Date_My_Mom", "http://dbpedia.org/resource/De_F\u00e9rias_com_o_Ex_(season_4)", "http://dbpedia.org/resource/Dead_at_21", "http://dbpedia.org/resource/Valemont", "http://dbpedia.org/resource/Virgin_Territory_(TV_series)", "http://dbpedia.org/resource/Viva_La_Bam", "http://dbpedia.org/resource/WWE_Heat", "http://dbpedia.org/resource/Wanna_Be_a_VJ", "http://dbpedia.org/resource/Washington_Heights_(TV_series)", "http://dbpedia.org/resource/Demi_Lovato:_Stay_Strong", "http://dbpedia.org/resource/Diary_(American_TV_series)", "http://dbpedia.org/resource/2020_MTV_Europe_Music_Awards", "http://dbpedia.org/resource/2021_MTV_Europe_Music_Awards", "http://dbpedia.org/resource/Austin_Stories", "http://dbpedia.org/resource/Becoming_A_Popstar", "http://dbpedia.org/resource/From_G's_to_Gents", "http://dbpedia.org/resource/From_G's_to_Gents_(season_1)", "http://dbpedia.org/resource/From_G's_to_Gents_(season_2)", "http://dbpedia.org/resource/Game_of_Clones", "http://dbpedia.org/resource/Geordie_Shore_(series_5)", "http://dbpedia.org/resource/Geordie_Shore_(series_7)", "http://dbpedia.org/resource/TRL_UK", "http://dbpedia.org/resource/Taking_the_Stage", "http://dbpedia.org/resource/Taking_the_Stage_(season_1)", "http://dbpedia.org/resource/Taking_the_Stage_(season_2)", "http://dbpedia.org/resource/Taquita_+_Kaui", "http://dbpedia.org/resource/Teen_Mom:_Family_Reunion", "http://dbpedia.org/resource/Teen_Mom_2", "http://dbpedia.org/resource/Teen_Wolf_(2011_TV_series)", "http://dbpedia.org/resource/Teen_Wolf_(season_1)", "http://dbpedia.org/resource/Teen_Wolf_(season_2)", "http://dbpedia.org/resource/Teen_Wolf_(season_3)", "http://dbpedia.org/resource/Teen_Wolf_(season_4)", "http://dbpedia.org/resource/Teen_Wolf_(season_5)", "http://dbpedia.org/resource/Teen_Wolf_(season_6)", "http://dbpedia.org/resource/When_Spicy_Meets_Sweet", "http://dbpedia.org/resource/MTV_Africa_Music_Awards_2016", "http://dbpedia.org/resource/'Til_Death_Do_Us_Part:_Carmen_and_Dave", "http://dbpedia.org/resource/120_Minutes", "http://dbpedia.org/resource/12_Angry_Viewers", "http://dbpedia.org/resource/Apartment_2F", "http://dbpedia.org/resource/Are_You_the_One%3F", "http://dbpedia.org/resource/Are_You_the_One%3F_(season_1)", "http://dbpedia.org/resource/Are_You_the_One%3F_(season_2)", "http://dbpedia.org/resource/Are_You_the_One%3F_(season_3)", "http://dbpedia.org/resource/Are_You_the_One%3F_(season_4)", "http://dbpedia.org/resource/Are_You_the_One%3F_(season_5)", "http://dbpedia.org/resource/Are_You_the_One%3F_(season_6)", "http://dbpedia.org/resource/Are_You_the_One%3F_(season_7)", "http://dbpedia.org/resource/Are_You_the_One%3F_(season_8)", "http://dbpedia.org/resource/Ghosted:_Love_Gone_Missing", "http://dbpedia.org/resource/Gone_Too_Far_(TV_series)", "http://dbpedia.org/resource/Mary_+_Jane", "http://dbpedia.org/resource/Pimp_My_Ride", "http://dbpedia.org/resource/Popzilla", "http://dbpedia.org/resource/Pranked", "http://dbpedia.org/resource/That's_Amore!_(TV_series)", "http://dbpedia.org/resource/The_American_Mall", "http://dbpedia.org/resource/The_Andy_Milonakis_Show", "http://dbpedia.org/resource/The_Ashlee_Simpson_Show", "http://dbpedia.org/resource/The_Buried_Life", "http://dbpedia.org/resource/The_Busch_Family_Brewed", "http://dbpedia.org/resource/The_Challenge:_Battle_of_the_Bloodlines", "http://dbpedia.org/resource/The_Challenge:_Battle_of_the_Exes", "http://dbpedia.org/resource/The_Challenge:_Battle_of_the_Exes_II", "http://dbpedia.org/resource/The_Challenge:_Battle_of_the_Seasons", "http://dbpedia.org/resource/The_Challenge:_Champs_vs._Pros", "http://dbpedia.org/resource/The_Challenge:_Champs_vs._Stars_(season_1)", "http://dbpedia.org/resource/The_Challenge:_Champs_vs._Stars_(season_2)", "http://dbpedia.org/resource/The_Challenge:_Cutthroat", "http://dbpedia.org/resource/The_Challenge:_Double_Agents", "http://dbpedia.org/resource/The_Challenge:_Final_Reckoning", "http://dbpedia.org/resource/The_Challenge:_Free_Agents", "http://dbpedia.org/resource/The_Challenge:_Fresh_Meat_II", "http://dbpedia.org/resource/The_Challenge:_Invasion_of_the_Champions", "http://dbpedia.org/resource/The_Challenge:_Rivals", "http://dbpedia.org/resource/The_Challenge:_Rivals_II", "http://dbpedia.org/resource/The_Challenge:_Rivals_III", "http://dbpedia.org/resource/The_Challenge:_Spies,_Lies_&_Allies", "http://dbpedia.org/resource/The_Challenge:_Total_Madness", "http://dbpedia.org/resource/The_Challenge:_Vendettas", "http://dbpedia.org/resource/The_Challenge:_War_of_the_Worlds", "http://dbpedia.org/resource/The_Challenge:_War_of_the_Worlds_2", "http://dbpedia.org/resource/The_Challenge_(TV_series)", "http://dbpedia.org/resource/The_Challenge_XXX:_Dirty_30", "http://dbpedia.org/resource/The_City_(season_1)", "http://dbpedia.org/resource/The_City_(season_2)", "http://dbpedia.org/resource/Ultimate_Parkour_Challenge", "http://dbpedia.org/resource/Undergrads", "http://dbpedia.org/resource/16_and_Pregnant", "http://dbpedia.org/resource/Buckhead_Shore", "http://dbpedia.org/resource/Buckwild_(TV_series)", "http://dbpedia.org/resource/Kesha:_My_Crazy_Beautiful_Life", "http://dbpedia.org/resource/Maui_Fever", "http://dbpedia.org/resource/Real_World/Road_Rules_Challenge:_Battle_of_the_Seasons", "http://dbpedia.org/resource/Real_World/Road_Rules_Challenge:_Battle_of_the_Sexes", "http://dbpedia.org/resource/Real_World/Road_Rules_Challenge:_Battle_of_the_Sexes_2", "http://dbpedia.org/resource/Real_World/Road_Rules_Challenge:_Fresh_Meat", "http://dbpedia.org/resource/Real_World/Road_Rules_Challenge:_The_Duel", "http://dbpedia.org/resource/Real_World/Road_Rules_Challenge:_The_Duel_II", "http://dbpedia.org/resource/Real_World/Road_Rules_Challenge:_The_Gauntlet", "http://dbpedia.org/resource/Real_World/Road_Rules_Challenge:_The_Gauntlet_2", "http://dbpedia.org/resource/Real_World/Road_Rules_Challenge:_The_Gauntlet_III", "http://dbpedia.org/resource/Real_World/Road_Rules_Challenge:_The_Inferno", "http://dbpedia.org/resource/Real_World/Road_Rules_Challenge:_The_Inferno_3", "http://dbpedia.org/resource/Real_World/Road_Rules_Challenge:_The_Inferno_II", "http://dbpedia.org/resource/Real_World/Road_Rules_Challenge:_The_Island", "http://dbpedia.org/resource/Real_World/Road_Rules_Challenge:_The_Ruins", "http://dbpedia.org/resource/Real_World/Road_Rules_Challenge_(season)", "http://dbpedia.org/resource/Real_World/Road_Rules_Challenge_2000", "http://dbpedia.org/resource/Real_World/Road_Rules_Extreme_Challenge", "http://dbpedia.org/resource/Real_World:_Ex-Plosion", "http://dbpedia.org/resource/Real_World:_Go_Big_or_Go_Home", "http://dbpedia.org/resource/Real_World:_Skeletons", "http://dbpedia.org/resource/Real_World_Seattle:_Bad_Blood", "http://dbpedia.org/resource/Reunited:_The_Real_World_Las_Vegas", "http://dbpedia.org/resource/The_CollegeHumor_Show", "http://dbpedia.org/resource/The_Cut_(1998_TV_series)", "http://dbpedia.org/resource/The_Gamekillers", "http://dbpedia.org/resource/The_Girls_of_Hedsor_Hall", "http://dbpedia.org/resource/The_Grind_(TV_series)", "http://dbpedia.org/resource/The_Hard_Times_of_RJ_Berger", "http://dbpedia.org/resource/The_Head_(1994_TV_series)", "http://dbpedia.org/resource/The_Hills:_New_Beginnings", "http://dbpedia.org/resource/The_Hills_(season_1)", "http://dbpedia.org/resource/The_Hills_(season_2)", "http://dbpedia.org/resource/The_Hills_(season_3)", "http://dbpedia.org/resource/The_Hills_(season_4)", "http://dbpedia.org/resource/The_Hills_(season_5)", "http://dbpedia.org/resource/The_Hills_(season_6)", "http://dbpedia.org/resource/The_Idiot_Box_(TV_series)", "http://dbpedia.org/resource/The_Jenny_McCarthy_Show_(1997_TV_series)", "http://dbpedia.org/resource/The_Maxx", "http://dbpedia.org/resource/The_Osbournes", "http://dbpedia.org/resource/The_Osbournes_(season_1)", "http://dbpedia.org/resource/The_Osbournes_(season_2)", "http://dbpedia.org/resource/The_Paper_(TV_series)", "http://dbpedia.org/resource/The_Phone_(American_TV_series)", "http://dbpedia.org/resource/The_Real_World:_Austin", "http://dbpedia.org/resource/The_Real_World:_Back_to_New_York", "http://dbpedia.org/resource/The_Real_World:_Boston", "http://dbpedia.org/resource/The_Real_World:_Brooklyn", "http://dbpedia.org/resource/The_Real_World:_Cancun", "http://dbpedia.org/resource/The_Real_World:_Chicago", "http://dbpedia.org/resource/The_Real_World:_D.C.", "http://dbpedia.org/resource/The_Real_World:_Denver", "http://dbpedia.org/resource/The_Real_World:_Hawaii", "http://dbpedia.org/resource/The_Real_World:_Hollywood", "http://dbpedia.org/resource/The_Real_World:_Key_West", "http://dbpedia.org/resource/The_Real_World:_Las_Vegas_(2002_season)", "http://dbpedia.org/resource/The_Real_World:_Las_Vegas_(2011_season)", "http://dbpedia.org/resource/The_Real_World:_London", "http://dbpedia.org/resource/The_Real_World:_Los_Angeles", "http://dbpedia.org/resource/The_Real_World:_Miami", "http://dbpedia.org/resource/The_Real_World:_New_Orleans_(2000_season)", "http://dbpedia.org/resource/The_Real_World:_New_Orleans_(2010_season)", "http://dbpedia.org/resource/The_Real_World:_New_York", "http://dbpedia.org/resource/The_Real_World:_Paris", "http://dbpedia.org/resource/The_Real_World:_Philadelphia", "http://dbpedia.org/resource/The_Real_World:_Portland", "http://dbpedia.org/resource/The_Real_World:_San_Diego_(2004_season)", "http://dbpedia.org/resource/The_Real_World:_San_Diego_(2011_season)", "http://dbpedia.org/resource/The_Real_World:_San_Francisco", "http://dbpedia.org/resource/The_Real_World:_Seattle", "http://dbpedia.org/resource/The_Real_World:_St._Thomas", "http://dbpedia.org/resource/The_Real_World:_Sydney", "http://dbpedia.org/resource/The_Rodman_World_Tour", "http://dbpedia.org/resource/The_Shannara_Chronicles", "http://dbpedia.org/resource/The_Show_with_Vinny", "http://dbpedia.org/resource/The_State_(American_TV_series)", "http://dbpedia.org/resource/The_Tom_Green_Show", "http://dbpedia.org/resource/The_Valleys_(series_1)", "http://dbpedia.org/resource/The_Valleys_(series_2)", "http://dbpedia.org/resource/The_Valleys_(series_3)", "http://dbpedia.org/resource/2022_MTV_Movie_&_TV_Awards", "http://dbpedia.org/resource/2gether:_The_Series_(American_TV_series)", "http://dbpedia.org/resource/3-South", "http://dbpedia.org/resource/50_Cent:_The_Money_and_the_Power", "http://dbpedia.org/resource/90's_House", "http://dbpedia.org/resource/AMTV", "http://dbpedia.org/resource/2005_MTV_Movie_Awards", "http://dbpedia.org/resource/2005_MTV_Video_Music_Awards", "http://dbpedia.org/resource/2006_MTV_Movie_Awards", "http://dbpedia.org/resource/2006_MTV_Video_Music_Awards", "http://dbpedia.org/resource/2007_MTV_Movie_Awards", "http://dbpedia.org/resource/2007_MTV_Video_Music_Awards", "http://dbpedia.org/resource/2008_MTV_Movie_Awards", "http://dbpedia.org/resource/2008_MTV_Video_Music_Awards", "http://dbpedia.org/resource/2009_MTV_Movie_Awards", "http://dbpedia.org/resource/Nitro_Circus", "http://dbpedia.org/resource/Oddville,_MTV", "http://dbpedia.org/resource/1989_MTV_Video_Music_Awards", "http://dbpedia.org/resource/1990_MTV_Video_Music_Awards", "http://dbpedia.org/resource/1991_MTV_Video_Music_Awards", "http://dbpedia.org/resource/1992_MTV_Movie_Awards", "http://dbpedia.org/resource/1992_MTV_Video_Music_Awards", "http://dbpedia.org/resource/1993_MTV_Movie_Awards", "http://dbpedia.org/resource/1993_MTV_Video_Music_Awards", "http://dbpedia.org/resource/1994_MTV_Movie_Awards", "http://dbpedia.org/resource/1994_MTV_Video_Music_Awards", "http://dbpedia.org/resource/1995_MTV_Movie_Awards", "http://dbpedia.org/resource/1995_MTV_Video_Music_Awards", "http://dbpedia.org/resource/1996_MTV_Movie_Awards", "http://dbpedia.org/resource/1996_MTV_Video_Music_Awards", "http://dbpedia.org/resource/1997_MTV_Movie_Awards", "http://dbpedia.org/resource/1997_MTV_Video_Music_Awards", "http://dbpedia.org/resource/1998_MTV_Movie_Awards", "http://dbpedia.org/resource/1998_MTV_Video_Music_Awards", "http://dbpedia.org/resource/2021_MTV_Movie_&_TV_Awards", "http://dbpedia.org/resource/Savage_U", "http://dbpedia.org/resource/Scarred_(TV_series)", "http://dbpedia.org/resource/Bam's_Unholy_Union", "http://dbpedia.org/resource/Is_It_College_Yet%3F", "http://dbpedia.org/resource/Is_It_Fall_Yet%3F", "http://dbpedia.org/resource/It's_On_with_Alexa_Chung", "http://dbpedia.org/resource/My_Super_Psycho_Sweet_16", "http://dbpedia.org/resource/My_Super_Psycho_Sweet_16:_Part_2", "http://dbpedia.org/resource/My_Super_Psycho_Sweet_16:_Part_3", "http://dbpedia.org/resource/My_Super_Sweet_16", "http://dbpedia.org/resource/Too_Stupid_to_Die", "http://dbpedia.org/resource/Total_Request", "http://dbpedia.org/resource/Total_Request_Live", "http://dbpedia.org/resource/Trashed_(game_show)", "http://dbpedia.org/resource/Trippin'", "http://dbpedia.org/resource/Turn_It_Up!", "http://dbpedia.org/resource/Turn_the_Beat_Around_(film)", "http://dbpedia.org/resource/Twentyfourseven", "http://dbpedia.org/resource/Two-A-Days", "http://dbpedia.org/resource/A_Double_Shot_at_Love", "http://dbpedia.org/resource/A_Shot_at_Love_II_with_Tila_Tequila", "http://dbpedia.org/resource/A_Shot_at_Love_with_Tila_Tequila", "http://dbpedia.org/resource/Adventures_in_Hollyhood", "http://dbpedia.org/resource/2014_MTV_Europe_Music_Awards", "http://dbpedia.org/resource/2014_MTV_Fandom_Awards", "http://dbpedia.org/resource/2015_BET_Hip_Hop_Awards", "http://dbpedia.org/resource/2015_MTV_Europe_Music_Awards", "http://dbpedia.org/resource/2016_BET_Hip_Hop_Awards", "http://dbpedia.org/resource/2016_MTV_Europe_Music_Awards", "http://dbpedia.org/resource/Bully_Beatdown", "http://dbpedia.org/resource/Buzzin'_(TV_series)", "http://dbpedia.org/resource/Buzzkill_(TV_series)", "http://dbpedia.org/resource/Call_to_Greatness", "http://dbpedia.org/resource/Celebrity_Deathmatch", "http://dbpedia.org/resource/Celebrity_Rap_Superstar", "http://dbpedia.org/resource/Stranded_with_a_Million_Dollars", "http://dbpedia.org/resource/Sucker_Free", "http://dbpedia.org/resource/Super_Adventure_Team", "http://dbpedia.org/resource/Super_Sweet_16:_The_Movie", "http://dbpedia.org/resource/Superock", "http://dbpedia.org/resource/Sweet/Vicious", "http://dbpedia.org/resource/2013_MTV_Europe_Music_Awards", "http://dbpedia.org/resource/2013_MTV_Video_Music_Awards", "http://dbpedia.org/resource/Carmen:_A_Hip_Hopera", "http://dbpedia.org/resource/Cartoon_Sushi", "http://dbpedia.org/resource/How's_Your_News%3F", "http://dbpedia.org/resource/How_Far_Is_Tattoo_Far%3F", "http://dbpedia.org/resource/Human_Giant", "http://dbpedia.org/resource/Becoming_(TV_series)", "http://dbpedia.org/resource/Laguna_Beach_(season_3)", "http://dbpedia.org/resource/Dogg_After_Dark", "http://dbpedia.org/resource/Doggy_Fizzle_Televizzle", "http://dbpedia.org/resource/Double_Shot_at_Love_(2019_TV_series)", "http://dbpedia.org/resource/Downtown_(1999_TV_series)", "http://dbpedia.org/resource/Downtown_Girls", "http://dbpedia.org/resource/Singled_Out", "http://dbpedia.org/resource/Skins_(American_TV_series)", "http://dbpedia.org/resource/Slednecks", "http://dbpedia.org/resource/Snooki_&_Jwoww", "http://dbpedia.org/resource/Sorority_Life", "http://dbpedia.org/resource/1999_MTV_Movie_Awards", "http://dbpedia.org/resource/1999_MTV_Video_Music_Awards", "http://dbpedia.org/resource/2000_MTV_Movie_Awards", "http://dbpedia.org/resource/2000_MTV_Video_Music_Awards", "http://dbpedia.org/resource/2001_MTV_Movie_Awards", "http://dbpedia.org/resource/2001_MTV_Video_Music_Awards", "http://dbpedia.org/resource/2002_MTV_Movie_Awards", "http://dbpedia.org/resource/2002_MTV_Video_Music_Awards", "http://dbpedia.org/resource/2003_MTV_Movie_Awards", "http://dbpedia.org/resource/2003_MTV_Video_Music_Awards", "http://dbpedia.org/resource/2004_MTV_Movie_Awards", "http://dbpedia.org/resource/2004_MTV_Video_Music_Awards", "http://dbpedia.org/resource/2017_MTV_Europe_Music_Awards", "http://dbpedia.org/resource/2018_MTV_Europe_Music_Awards", "http://dbpedia.org/resource/2019_MTV_Europe_Music_Awards", "http://dbpedia.org/resource/DJ_&_the_Fro", "http://dbpedia.org/resource/Daddy's_Girls_(2009_TV_series)", "http://dbpedia.org/resource/Headbangers_Ball", "http://dbpedia.org/resource/Hilary_Duff:_This_Is_Now", "http://dbpedia.org/resource/MTV's_The_70s_House", "http://dbpedia.org/resource/MTV's_Top_Pop_Group", "http://dbpedia.org/resource/MTV_(Greek_TV_channel)", "http://dbpedia.org/resource/MTV_Africa_Music_Awards_2014", "http://dbpedia.org/resource/MTV_Africa_Music_Awards_2015", "http://dbpedia.org/resource/MTV_Asia_Hitlist", "http://dbpedia.org/resource/MTV_Fandom_Awards", "http://dbpedia.org/resource/MTV_New_Year's_Eve_specials", "http://dbpedia.org/resource/MTV_Rock_N'_Jock", "http://dbpedia.org/resource/MTV_Spit", "http://dbpedia.org/resource/MTV_Sports", "http://dbpedia.org/resource/MTV_Unplugged", "http://dbpedia.org/resource/MTV_Wonder_Girls", "http://dbpedia.org/resource/MTV_Woodies", "http://dbpedia.org/resource/Made_(TV_series)", "http://dbpedia.org/resource/Made_in_Staten_Island", "http://dbpedia.org/resource/Road_Rules:_All_Stars", "http://dbpedia.org/resource/Road_Rules:_Campus_Crawl", "http://dbpedia.org/resource/Road_Rules:_Down_Under", "http://dbpedia.org/resource/Road_Rules:_Europe", "http://dbpedia.org/resource/Road_Rules:_Islands", "http://dbpedia.org/resource/Road_Rules:_Latin_America", "http://dbpedia.org/resource/Road_Rules:_Maximum_Velocity_Tour", "http://dbpedia.org/resource/Road_Rules:_Northern_Trail", "http://dbpedia.org/resource/Road_Rules:_Semester_at_Sea", "http://dbpedia.org/resource/Road_Rules:_South_Pacific", "http://dbpedia.org/resource/Road_Rules:_The_Quest", "http://dbpedia.org/resource/Road_Rules:_USA_\u2013_The_First_Adventure", "http://dbpedia.org/resource/Road_Rules:_USA_\u2013_The_Second_Adventure", "http://dbpedia.org/resource/Road_Rules:_X-Treme", "http://dbpedia.org/resource/Road_Rules_2007:_Viewers'_Revenge", "http://dbpedia.org/resource/Ex_on_the_Beach:_Peak_of_Love", "http://dbpedia.org/resource/Ex_on_the_Beach_(American_TV_series)", "http://dbpedia.org/resource/Ex_on_the_Beach_(American_season_1)", "http://dbpedia.org/resource/Ex_on_the_Beach_(American_season_2)", "http://dbpedia.org/resource/Ex_on_the_Beach_(American_season_3)", "http://dbpedia.org/resource/Ex_on_the_Beach_(American_season_5)", "http://dbpedia.org/resource/Exposed_(American_game_show)", "http://dbpedia.org/resource/FANatic", "http://dbpedia.org/resource/FNMTV", "http://dbpedia.org/resource/Failosophy", "http://dbpedia.org/resource/Faking_It_(American_TV_series)", "http://dbpedia.org/resource/Faking_It_(season_1)", "http://dbpedia.org/resource/Faking_It_(season_2)", "http://dbpedia.org/resource/Faking_It_(season_3)", "http://dbpedia.org/resource/Families_of_the_Mafia", "http://dbpedia.org/resource/Fear_(TV_series)", "http://dbpedia.org/resource/Floribama_Shore", "http://dbpedia.org/resource/Jersey_Shore:_Family_Vacation", "http://dbpedia.org/resource/Jersey_Shore_(TV_series)", "http://dbpedia.org/resource/Life_of_Ryan", "http://dbpedia.org/resource/Lindsay_Lohan's_Beach_Club", "http://dbpedia.org/resource/Liquid_Television", "http://dbpedia.org/resource/Newlyweds:_Nick_and_Jessica", "http://dbpedia.org/resource/Next_(2005_TV_series)", "http://dbpedia.org/resource/Nick_Cannon_Presents:_Short_Circuitz", "http://dbpedia.org/resource/Promposal_(TV_series)", "http://dbpedia.org/resource/Punk'd", "http://dbpedia.org/resource/There_&_Back_(TV_series)", "http://dbpedia.org/resource/Todrick_(TV_series)", "http://dbpedia.org/resource/World_of_Jenks", "http://dbpedia.org/resource/Wrestling_Society_X", "http://dbpedia.org/resource/Wuthering_Heights_(2003_film)", "http://dbpedia.org/resource/Just_Say_Julie", "http://dbpedia.org/resource/Juvies", "http://dbpedia.org/resource/Living_Lahaina", "http://dbpedia.org/resource/Loosely_Exactly_Nicole", "http://dbpedia.org/resource/Loveline_(TV_series)", "http://dbpedia.org/resource/Silent_Library_(TV_series)", "http://dbpedia.org/resource/Spider-Man:_The_New_Animated_Series", "http://dbpedia.org/resource/Spyder_Games", "http://dbpedia.org/resource/Station_Zero", "http://dbpedia.org/resource/Blowin'_Up", "http://dbpedia.org/resource/I.R.S._Records_Presents_The_Cutting_Edge", "http://dbpedia.org/resource/I_Just_Want_My_Pants_Back", "http://dbpedia.org/resource/I_Used_to_Be_Fat", "http://dbpedia.org/resource/I_Want_a_Famous_Face", "http://dbpedia.org/resource/List_of_The_State_episodes", "http://dbpedia.org/resource/Live_Through_This_(TV_series)", "http://dbpedia.org/resource/Miley:_The_Movement", "http://dbpedia.org/resource/P._Diddy's_Starmaker", "http://dbpedia.org/resource/Parental_Control", "http://dbpedia.org/resource/Paris_Hilton's_Dubai_BFF", "http://dbpedia.org/resource/Paris_Hilton's_My_New_BFF", "http://dbpedia.org/resource/Paris_Hilton's_My_New_BFF_(season_1)", "http://dbpedia.org/resource/Room_401", "http://dbpedia.org/resource/Room_Raiders", "http://dbpedia.org/resource/Ryan_Kahn", "http://dbpedia.org/resource/Yo!_MTV_Raps", "http://dbpedia.org/resource/Yo_Momma", "http://dbpedia.org/resource/\u00c6on_Flux", "http://dbpedia.org/resource/Lugar_Heights", "http://dbpedia.org/resource/On_Harvard_Time", "http://dbpedia.org/resource/Dave_(TV_series)", "http://dbpedia.org/resource/Dicktown_(TV_series)", "http://dbpedia.org/resource/Axe_Cop_(TV_series)", "http://dbpedia.org/resource/Wilfred_(American_season_4)", "http://dbpedia.org/resource/71st_Primetime_Creative_Arts_Emmy_Awards", "http://dbpedia.org/resource/72nd_Primetime_Creative_Arts_Emmy_Awards", "http://dbpedia.org/resource/73rd_Primetime_Creative_Arts_Emmy_Awards", "http://dbpedia.org/resource/74th_Primetime_Creative_Arts_Emmy_Awards", "http://dbpedia.org/resource/It's_Always_Sunny_in_Philadelphia_(season_10)", "http://dbpedia.org/resource/It's_Always_Sunny_in_Philadelphia_(season_11)", "http://dbpedia.org/resource/It's_Always_Sunny_in_Philadelphia_(season_12)", "http://dbpedia.org/resource/It's_Always_Sunny_in_Philadelphia_(season_13)", "http://dbpedia.org/resource/It's_Always_Sunny_in_Philadelphia_(season_14)", "http://dbpedia.org/resource/It's_Always_Sunny_in_Philadelphia_(season_15)", "http://dbpedia.org/resource/It's_Always_Sunny_in_Philadelphia_(season_9)", "http://dbpedia.org/resource/Cake_(2019_TV_series)", "http://dbpedia.org/resource/Legit_(2013_TV_series)", "http://dbpedia.org/resource/List_of_Archer_episodes", "http://dbpedia.org/resource/Lucas_Bros._Moving_Co.", "http://dbpedia.org/resource/List_of_It's_Always_Sunny_in_Philadelphia_episodes", "http://dbpedia.org/resource/List_of_The_League_episodes", "http://dbpedia.org/resource/List_of_Totally_Biased_with_W._Kamau_Bell_episodes", "http://dbpedia.org/resource/List_of_You're_the_Worst_episodes", "http://dbpedia.org/resource/Little_Demon_(TV_series)", "http://dbpedia.org/resource/American_Horror_Stories", "http://dbpedia.org/resource/Devs", "http://dbpedia.org/resource/Pistol_(miniseries)", "http://dbpedia.org/resource/The_Bear_(TV_series)", "http://dbpedia.org/resource/Under_the_Banner_of_Heaven_(miniseries)", "http://dbpedia.org/resource/The_Patient", "http://dbpedia.org/resource/The_Premise", "http://dbpedia.org/resource/Mrs._America_(miniseries)", "http://dbpedia.org/resource/A_Teacher_(miniseries)", "http://dbpedia.org/resource/Fleishman_Is_in_Trouble_(miniseries)", "http://dbpedia.org/resource/Y:_The_Last_Man_(TV_series)", "http://dbpedia.org/resource/Nanna's_Cottage", "http://dbpedia.org/resource/Twisted_Tales_(web_series)", "http://dbpedia.org/resource/Todd_and_the_Book_of_Pure_Evil", "http://dbpedia.org/resource/Amy_Schumer_Learns_to_Cook", "http://dbpedia.org/resource/Dinner:_Impossible", "http://dbpedia.org/resource/Will_Work_for_Food_(TV_series)", "http://dbpedia.org/resource/Ask_Aida", "http://dbpedia.org/resource/Beat_Bobby_Flay", "http://dbpedia.org/resource/Halloween_Wars", "http://dbpedia.org/resource/Ham_on_the_Street", "http://dbpedia.org/resource/What_Would_Brian_Boitano_Make%3F", "http://dbpedia.org/resource/$24_in_24", "http://dbpedia.org/resource/$40_a_Day", "http://dbpedia.org/resource/Emeril_Live", "http://dbpedia.org/resource/Giada_at_Home", "http://dbpedia.org/resource/Good_Eats", "http://dbpedia.org/resource/The_Best_Thing_I_Ever_Ate", "http://dbpedia.org/resource/Kids_Baking_Championship", "http://dbpedia.org/resource/Ready..._Set..._Cook!", "http://dbpedia.org/resource/Restaurant:_Impossible", "http://dbpedia.org/resource/Restaurant_Express", "http://dbpedia.org/resource/The_Great_Food_Truck_Race_(season_11)", "http://dbpedia.org/resource/The_Next_Food_Network_Star_(season_4)", "http://dbpedia.org/resource/The_Next_Food_Network_Star_(season_5)", "http://dbpedia.org/resource/The_Next_Food_Network_Star_(season_6)", "http://dbpedia.org/resource/The_Next_Iron_Chef", "http://dbpedia.org/resource/24_Hour_Restaurant_Battle", "http://dbpedia.org/resource/30_Minute_Meals", "http://dbpedia.org/resource/3_Days_to_Open_with_Bobby_Flay", "http://dbpedia.org/resource/Feasting_on_Asphalt", "http://dbpedia.org/resource/Giada's_Weekend_Getaways", "http://dbpedia.org/resource/Giada_in_Paradise", "http://dbpedia.org/resource/Sara's_Secrets", "http://dbpedia.org/resource/Quick_Fix_Meals_with_Robin_Miller", "http://dbpedia.org/resource/Barefoot_Contessa", "http://dbpedia.org/resource/Iron_Chef_America", "http://dbpedia.org/resource/Iron_Chef_Gauntlet", "http://dbpedia.org/resource/Iron_Chef_Showdown", "http://dbpedia.org/resource/Chefography", "http://dbpedia.org/resource/A_Cook's_Tour_(TV_series)", "http://dbpedia.org/resource/Ace_of_Cakes", "http://dbpedia.org/resource/Cake_Wars", "http://dbpedia.org/resource/Chefs_vs._City", "http://dbpedia.org/resource/Chopped_(TV_series)", "http://dbpedia.org/resource/Chopped_Junior", "http://dbpedia.org/resource/5_Ingredient_Fix", "http://dbpedia.org/resource/Holiday_Baking_Championship", "http://dbpedia.org/resource/Cupcake_Wars", "http://dbpedia.org/resource/Cutthroat_Kitchen", "http://dbpedia.org/resource/Guilty_Pleasures_(TV_series)", "http://dbpedia.org/resource/Guy's_Big_Bite", "http://dbpedia.org/resource/Guy_Off_the_Hook", "http://dbpedia.org/resource/Health_Inspectors", "http://dbpedia.org/resource/Healthy_Appetite_with_Ellie_Krieger", "http://dbpedia.org/resource/Everyday_Italian", "http://dbpedia.org/resource/Food_Network_Challenge", "http://dbpedia.org/resource/Food_Network_Star", "http://dbpedia.org/resource/Food_Network_Star_(season_10)", "http://dbpedia.org/resource/Food_Network_Star_(season_11)", "http://dbpedia.org/resource/Food_Network_Star_(season_12)", "http://dbpedia.org/resource/Food_Network_Star_(season_13)", "http://dbpedia.org/resource/Food_Network_Star_(season_14)", "http://dbpedia.org/resource/Food_Network_Star_(season_7)", "http://dbpedia.org/resource/Food_Network_Star_(season_8)", "http://dbpedia.org/resource/Food_Network_Star_(season_9)", "http://dbpedia.org/resource/Jerseylicious", "http://dbpedia.org/resource/Throwdown!_with_Bobby_Flay", "http://dbpedia.org/resource/Worst_Bakers_in_America", "http://dbpedia.org/resource/Oliver's_Twist", "http://dbpedia.org/resource/Down_Home_with_the_Neelys", "http://dbpedia.org/resource/Ten_Dollar_Dinners", "http://dbpedia.org/resource/Big_Daddy's_House", "http://dbpedia.org/resource/List_of_Guy's_Grocery_Games_episodes", "http://dbpedia.org/resource/Paula's_Best_Dishes", "http://dbpedia.org/resource/Paula's_Home_Cooking", "http://dbpedia.org/resource/Paula's_Party", "http://dbpedia.org/resource/East_Meets_West_(TV_series)", "http://dbpedia.org/resource/Road_Tasted", "http://dbpedia.org/resource/Party_Line_with_the_Hearty_Boys", "http://dbpedia.org/resource/America's_Most_Wanted", "http://dbpedia.org/resource/America's_Supernanny", "http://dbpedia.org/resource/America_(2009_film)", "http://dbpedia.org/resource/American_Princess_(2019_TV_series)", "http://dbpedia.org/resource/Amores_que_enga\u00f1an", "http://dbpedia.org/resource/An_American_Daughter_(film)", "http://dbpedia.org/resource/An_Unexpected_Love", "http://dbpedia.org/resource/Dance_Moms", "http://dbpedia.org/resource/Dance_Moms_(season_1)", "http://dbpedia.org/resource/Dance_Moms_(season_2)", "http://dbpedia.org/resource/Dance_Moms_(season_3)", "http://dbpedia.org/resource/Dance_Moms_(season_4)", "http://dbpedia.org/resource/Dance_Moms_(season_5)", "http://dbpedia.org/resource/Dance_Moms_(season_6)", "http://dbpedia.org/resource/Dance_Moms_(season_7)", "http://dbpedia.org/resource/Dance_Moms_(season_8)", "http://dbpedia.org/resource/Deadly_Love", "http://dbpedia.org/resource/Dear_Mom,_Love_Cher", "http://dbpedia.org/resource/Debt_(game_show)", "http://dbpedia.org/resource/Veronica_Clare", "http://dbpedia.org/resource/WNBA_on_Lifetime", "http://dbpedia.org/resource/Deliverance_Creek", "http://dbpedia.org/resource/Devious_Maids_(season_1)", "http://dbpedia.org/resource/Devious_Maids_(season_2)", "http://dbpedia.org/resource/Devious_Maids_(season_3)", "http://dbpedia.org/resource/Devious_Maids_(season_4)", "http://dbpedia.org/resource/21st_Critics'_Choice_Awards", "http://dbpedia.org/resource/Attitudes_(talk_show)", "http://dbpedia.org/resource/Beaches_(2017_film)", "http://dbpedia.org/resource/Beautiful_&_Twisted", "http://dbpedia.org/resource/Betty_&_Coretta", "http://dbpedia.org/resource/For_the_People_(2002_TV_series)", "http://dbpedia.org/resource/Four_of_a_Kind_(TV_series)", "http://dbpedia.org/resource/Georgia_O'Keeffe_(film)", "http://dbpedia.org/resource/Happy_Face_Killer_(film)", "http://dbpedia.org/resource/Taken:_The_Search_for_Sophie_Parker", "http://dbpedia.org/resource/Wendy_Williams:_The_Movie", "http://dbpedia.org/resource/Who_Is_Clark_Rockefeller%3F", "http://dbpedia.org/resource/Wildflower_(1991_film)", "http://dbpedia.org/resource/Will_You_Merry_Me%3F", "http://dbpedia.org/resource/12_Men_of_Christmas", "http://dbpedia.org/resource/Angela's_Eyes", "http://dbpedia.org/resource/Angels_Fall_(film)", "http://dbpedia.org/resource/Any_Day_Now_(TV_series)", "http://dbpedia.org/resource/Army_Wives", "http://dbpedia.org/resource/Married_at_First_Sight_(American_TV_series)", "http://dbpedia.org/resource/Marry_Me_(miniseries)", "http://dbpedia.org/resource/Marrying_Millions", "http://dbpedia.org/resource/Pitch_Slapped", "http://dbpedia.org/resource/Poison_Ivy:_The_Secret_Society", "http://dbpedia.org/resource/Preachers'_Daughters", "http://dbpedia.org/resource/Tempting_Fate_(2019_film)", "http://dbpedia.org/resource/The_Bad_Seed_(2018_film)", "http://dbpedia.org/resource/The_Bad_Seed_Returns", "http://dbpedia.org/resource/The_Christmas_Hope", "http://dbpedia.org/resource/The_Christmas_Setup", "http://dbpedia.org/resource/Under_the_Christmas_Tree", "http://dbpedia.org/resource/Born_Lucky", "http://dbpedia.org/resource/Bristol_Palin:_Life's_a_Tripp", "http://dbpedia.org/resource/Britney_Ever_After", "http://dbpedia.org/resource/Killer_Hair", "http://dbpedia.org/resource/Kim_of_Queens", "http://dbpedia.org/resource/Memories_of_Murder_(1990_film)", "http://dbpedia.org/resource/The_Client_List", "http://dbpedia.org/resource/The_Client_List_(TV_series)", "http://dbpedia.org/resource/The_Craigslist_Killer_(film)", "http://dbpedia.org/resource/The_Designing_Women_Reunion", "http://dbpedia.org/resource/The_Division", "http://dbpedia.org/resource/The_Fairy_Jobmother", "http://dbpedia.org/resource/The_Familiar_Stranger", "http://dbpedia.org/resource/The_Golden_Girls:_Their_Greatest_Moments", "http://dbpedia.org/resource/The_Hidden_Room_(TV_series)", "http://dbpedia.org/resource/The_Husband_She_Met_Online", "http://dbpedia.org/resource/The_Lizzie_Borden_Chronicles", "http://dbpedia.org/resource/The_Lottery_(TV_series)", "http://dbpedia.org/resource/The_Mermaid_Chair_(film)", "http://dbpedia.org/resource/The_Perfect_Assistant", "http://dbpedia.org/resource/The_Protector_(American_TV_series)", "http://dbpedia.org/resource/The_Red_Tent_(miniseries)", "http://dbpedia.org/resource/The_Road_to_Christmas", "http://dbpedia.org/resource/The_Sisterhood:_Becoming_Nuns", "http://dbpedia.org/resource/The_Tenth_Circle_(film)", "http://dbpedia.org/resource/The_Two_Mr._Kissels", "http://dbpedia.org/resource/The_Unauthorized_Beverly_Hills,_90210_Story", "http://dbpedia.org/resource/The_Unauthorized_Full_House_Story", "http://dbpedia.org/resource/The_Unauthorized_Melrose_Place_Story", "http://dbpedia.org/resource/The_Unauthorized_Saved_by_the_Bell_Story", "http://dbpedia.org/resource/The_Watcher_in_the_Woods_(2017_film)", "http://dbpedia.org/resource/The_Secret_of_Hidden_Lake", "http://dbpedia.org/resource/No_One_Would_Tell_(2018_film)", "http://dbpedia.org/resource/Northern_Lights_(2009_film)", "http://dbpedia.org/resource/Not_Like_Everyone_Else", "http://dbpedia.org/resource/Coco_Chanel_(film)", "http://dbpedia.org/resource/Coming_Home_(American_TV_series)", "http://dbpedia.org/resource/Confessions_of_Crime", "http://dbpedia.org/resource/Saving_Sarah_Cain", "http://dbpedia.org/resource/Seeds_of_Yesterday_(film)", "http://dbpedia.org/resource/Models_of_the_Runway", "http://dbpedia.org/resource/Mother,_May_I_Sleep_with_Danger%3F_(2016_film)", "http://dbpedia.org/resource/My_Baby_Is_Missing", "http://dbpedia.org/resource/My_Life_is_a_Lifetime_Movie", "http://dbpedia.org/resource/Natalee_Holloway_(film)", "http://dbpedia.org/resource/Too_Young_to_Marry", "http://dbpedia.org/resource/Trial_by_Fire_(2008_film)", "http://dbpedia.org/resource/Tribute_(2009_film)", "http://dbpedia.org/resource/True_Confessions_of_a_Hollywood_Starlet", "http://dbpedia.org/resource/Twice_Upon_a_Time_(1998_film)", "http://dbpedia.org/resource/Twist_of_Faith_(2013_film)", "http://dbpedia.org/resource/A_Christmas_Wedding", "http://dbpedia.org/resource/A_Date_with_Darkness:_The_Trial_and_Capture_of_Andrew_Luster", "http://dbpedia.org/resource/A_Daughter's_Nightmare", "http://dbpedia.org/resource/A_Girl_Like_Me:_The_Gwen_Araujo_Story", "http://dbpedia.org/resource/A_Life_Interrupted", "http://dbpedia.org/resource/A_Recipe_for_Seduction", "http://dbpedia.org/resource/Aaliyah:_The_Princess_of_R&B", "http://dbpedia.org/resource/Abby's_Ultimate_Dance_Competition", "http://dbpedia.org/resource/Against_the_Wall_(TV_series)", "http://dbpedia.org/resource/Call_Me_Crazy:_A_Five_Film", "http://dbpedia.org/resource/Caught_(2015_film)", "http://dbpedia.org/resource/Center_Stage:_On_Pointe", "http://dbpedia.org/resource/Cheerleader_Nation", "http://dbpedia.org/resource/Child_Genius_(American_TV_series)", "http://dbpedia.org/resource/Strong_Medicine", "http://dbpedia.org/resource/Sudie_and_Simpson", "http://dbpedia.org/resource/Suite_7", "http://dbpedia.org/resource/Surviving_R._Kelly", "http://dbpedia.org/resource/Holiday_in_Santa_Fe", "http://dbpedia.org/resource/Hostile_Advances", "http://dbpedia.org/resource/Hostile_Makeover", "http://dbpedia.org/resource/House_of_Versace", "http://dbpedia.org/resource/Labor_of_Love_(1998_film)", "http://dbpedia.org/resource/Double_Wedding_(2010_film)", "http://dbpedia.org/resource/Drop_Dead_Diva", "http://dbpedia.org/resource/Drop_Dead_Diva_(season_1)", "http://dbpedia.org/resource/Drop_Dead_Diva_(season_2)", "http://dbpedia.org/resource/Drop_Dead_Diva_(season_3)", "http://dbpedia.org/resource/Drop_Dead_Diva_(season_4)", "http://dbpedia.org/resource/Drop_Dead_Diva_(season_5)", "http://dbpedia.org/resource/Drop_Dead_Diva_(season_6)", "http://dbpedia.org/resource/Single_Black_Female", "http://dbpedia.org/resource/Sister_Cities_(film)", "http://dbpedia.org/resource/Sorority_Wars", "http://dbpedia.org/resource/Grumpy_Cat's_Worst_Christmas_Ever", "http://dbpedia.org/resource/Heart_of_the_Storm_(film)", "http://dbpedia.org/resource/Her_Only_Child", "http://dbpedia.org/resource/High_Noon_(2009_film)", "http://dbpedia.org/resource/High_School_Possession", "http://dbpedia.org/resource/Fab_Five:_The_Texas_Cheerleader_Scandal", "http://dbpedia.org/resource/Fifteen_and_Pregnant", "http://dbpedia.org/resource/Five_(2011_film)", "http://dbpedia.org/resource/Flirting_with_Forty", "http://dbpedia.org/resource/Flowers_in_the_Attic_(2014_film)", "http://dbpedia.org/resource/Lies_My_Mother_Told_Me", "http://dbpedia.org/resource/Petals_on_the_Wind_(film)", "http://dbpedia.org/resource/Picker_Sisters", "http://dbpedia.org/resource/Project_Accessory", "http://dbpedia.org/resource/Project_Runway:_Junior", "http://dbpedia.org/resource/Project_Runway:_Junior_(season_2)", "http://dbpedia.org/resource/Project_Runway_(season_10)", "http://dbpedia.org/resource/Project_Runway_(season_11)", "http://dbpedia.org/resource/Project_Runway_(season_12)", "http://dbpedia.org/resource/Project_Runway_(season_13)", "http://dbpedia.org/resource/Project_Runway_(season_14)", "http://dbpedia.org/resource/Project_Runway_(season_15)", "http://dbpedia.org/resource/Project_Runway_(season_16)", "http://dbpedia.org/resource/Project_Runway_(season_6)", "http://dbpedia.org/resource/Project_Runway_(season_7)", "http://dbpedia.org/resource/Project_Runway_(season_8)", "http://dbpedia.org/resource/Project_Runway_(season_9)", "http://dbpedia.org/resource/Project_Runway_All_Stars_(season_1)", "http://dbpedia.org/resource/Project_Runway_All_Stars_(season_2)", "http://dbpedia.org/resource/Project_Runway_All_Stars_(season_3)", "http://dbpedia.org/resource/Project_Runway_All_Stars_(season_4)", "http://dbpedia.org/resource/Project_Runway_All_Stars_(season_5)", "http://dbpedia.org/resource/Project_Runway_All_Stars_(season_6)", "http://dbpedia.org/resource/Project_Runway_All_Stars_(season_7)", "http://dbpedia.org/resource/Prosecuting_Casey_Anthony", "http://dbpedia.org/resource/Time_to_Say_Goodbye%3F", "http://dbpedia.org/resource/To_Be_Fat_like_Me", "http://dbpedia.org/resource/Wisegal", "http://dbpedia.org/resource/Witches_of_East_End_(season_1)", "http://dbpedia.org/resource/Witches_of_East_End_(season_2)", "http://dbpedia.org/resource/Women_of_the_House", "http://dbpedia.org/resource/Wuthering_High_School", "http://dbpedia.org/resource/Liz_&_Dick", "http://dbpedia.org/resource/Lizzie_Borden_Took_an_Ax", "http://dbpedia.org/resource/Love_You_to_Death_(2019_film)", "http://dbpedia.org/resource/Of_Two_Minds_(2012_television_film)", "http://dbpedia.org/resource/Oh_Baby_(TV_series)", "http://dbpedia.org/resource/On_the_Road_with_Austin_&_Santino", "http://dbpedia.org/resource/Sex,_Lies_&_Obsession", "http://dbpedia.org/resource/Sherri", "http://dbpedia.org/resource/Shop_'til_You_Drop", "http://dbpedia.org/resource/Side_Order_of_Life", "http://dbpedia.org/resource/Big_Driver_(film)", "http://dbpedia.org/resource/Blood_Ties_(TV_series)", "http://dbpedia.org/resource/Blue_Eyed_Butcher", "http://dbpedia.org/resource/Blue_Lagoon:_The_Awakening", "http://dbpedia.org/resource/Blue_Valley_Songbird", "http://dbpedia.org/resource/Bonnie_&_Clyde_(miniseries)", "http://dbpedia.org/resource/I_Was_Lorena_Bobbitt", "http://dbpedia.org/resource/If_There_Be_Thorns_(film)", "http://dbpedia.org/resource/Kristin's_Christmas_Past", "http://dbpedia.org/resource/List_of_Unreal_episodes", "http://dbpedia.org/resource/List_of_Unsolved_Mysteries_episodes", "http://dbpedia.org/resource/Little_Women:_Atlanta", "http://dbpedia.org/resource/Live_PD_Presents:_Women_on_Patrol", "http://dbpedia.org/resource/Midnight_Bayou", "http://dbpedia.org/resource/Pajama_Friends", "http://dbpedia.org/resource/Roseanne's_Nuts", "http://dbpedia.org/resource/Russian_Dolls_(2011_TV_series)", "http://dbpedia.org/resource/Death_of_a_Cheerleader_(2019_film)", "http://dbpedia.org/resource/You_(TV_series)", "http://dbpedia.org/resource/You_(season_1)", "http://dbpedia.org/resource/Due_Process_(TV_series)", "http://dbpedia.org/resource/Secrets_of_the_Dead", "http://dbpedia.org/resource/Mr._Pennsylvania_Football", "http://dbpedia.org/resource/Mr._and_Miss_Pennsylvania_Basketball", "http://dbpedia.org/resource/Mega64", "http://dbpedia.org/resource/Let's_Paint_TV", "http://dbpedia.org/resource/1980_NFL_Draft", "http://dbpedia.org/resource/1981_NFL_Draft", "http://dbpedia.org/resource/1982_NFL_Draft", "http://dbpedia.org/resource/1983_NBA_draft", "http://dbpedia.org/resource/1983_NFL_Draft", "http://dbpedia.org/resource/1984_NBA_All-Star_Game", "http://dbpedia.org/resource/1984_NFL_Draft", "http://dbpedia.org/resource/1985_NFL_Draft", "http://dbpedia.org/resource/1986_NFL_Draft", "http://dbpedia.org/resource/1987_NFL_Draft", "http://dbpedia.org/resource/2010_McDonald's_All-American_Boys_Game", "http://dbpedia.org/resource/2011_McDonald's_All-American_Boys_Game", "http://dbpedia.org/resource/2011_WNBA_draft", "http://dbpedia.org/resource/2012_McDonald's_All-American_Boys_Game", "http://dbpedia.org/resource/2013_McDonald's_All-American_Boys_Game", "http://dbpedia.org/resource/ArenaBowl_I", "http://dbpedia.org/resource/ArenaBowl_II", "http://dbpedia.org/resource/ArenaBowl_IX", "http://dbpedia.org/resource/ArenaBowl_VII", "http://dbpedia.org/resource/ArenaBowl_VIII", "http://dbpedia.org/resource/ArenaBowl_X", "http://dbpedia.org/resource/ArenaBowl_XI", "http://dbpedia.org/resource/ArenaBowl_XXIX", "http://dbpedia.org/resource/ArenaBowl_XXVII", "http://dbpedia.org/resource/ArenaBowl_XXVIII", "http://dbpedia.org/resource/WNBA_on_ESPN", "http://dbpedia.org/resource/2020_McDonald's_All-American_Boys_Game", "http://dbpedia.org/resource/2022_McDonald's_All-American_Boys_Game", "http://dbpedia.org/resource/2023_NFL_Draft", "http://dbpedia.org/resource/2024_NFL_Draft", "http://dbpedia.org/resource/Beg,_Borrow_&_Deal", "http://dbpedia.org/resource/Wednesday_Night_Baseball", "http://dbpedia.org/resource/ArenaBowl_VI", "http://dbpedia.org/resource/Arena_Football_League_on_ESPN", "http://dbpedia.org/resource/Around_the_Horn", "http://dbpedia.org/resource/Get_Up_(TV_program)", "http://dbpedia.org/resource/Golf_on_ESPN", "http://dbpedia.org/resource/Tennis_on_ESPN", "http://dbpedia.org/resource/The_Bronx_Is_Burning", "http://dbpedia.org/resource/The_Contender_(season_2)", "http://dbpedia.org/resource/The_Contender_(season_3)", "http://dbpedia.org/resource/The_Contender_Challenge:_UK_vs._USA", "http://dbpedia.org/resource/The_Jump_(ESPN_talk_show)", "http://dbpedia.org/resource/The_Junction_Boys_(film)", "http://dbpedia.org/resource/The_Sports_Reporters", "http://dbpedia.org/resource/1996_Tyson_Holly_Farms_400", "http://dbpedia.org/resource/1997_NFL_Draft", "http://dbpedia.org/resource/1997_Winston_500", "http://dbpedia.org/resource/1998_NFL_Draft", "http://dbpedia.org/resource/1998_Pepsi_Southern_500", "http://dbpedia.org/resource/1999_Exide_NASCAR_Select_Batteries_400", "http://dbpedia.org/resource/1999_Frontier_@_the_Glen", "http://dbpedia.org/resource/1999_NFL_Draft", "http://dbpedia.org/resource/1999_Pepsi_400_presented_by_Meijer", "http://dbpedia.org/resource/1999_Save_Mart/Kragen_350", "http://dbpedia.org/resource/1999_The_50th_Pepsi_Southern_500", "http://dbpedia.org/resource/1999_TranSouth_Financial_400", "http://dbpedia.org/resource/1st_and_10_(2003_TV_series)", "http://dbpedia.org/resource/2000_NFL_Draft", "http://dbpedia.org/resource/2000_Pepsi_Southern_500", "http://dbpedia.org/resource/2000_Winston_500", "http://dbpedia.org/resource/2001_NFL_Draft", "http://dbpedia.org/resource/2002_NFL_Draft", "http://dbpedia.org/resource/2003_NFL_Draft", "http://dbpedia.org/resource/2004_NFL_Draft", "http://dbpedia.org/resource/2005_NFL_Draft", "http://dbpedia.org/resource/2006_NFL_Draft", "http://dbpedia.org/resource/2007_Brickyard_400", "http://dbpedia.org/resource/2007_Centurion_Boats_at_the_Glen", "http://dbpedia.org/resource/2007_NFL_Draft", "http://dbpedia.org/resource/2007_Pennsylvania_500", "http://dbpedia.org/resource/2007_Sharp_AQUOS_500", "http://dbpedia.org/resource/2007_Sharpie_500", "http://dbpedia.org/resource/2021_in_Professional_Fighters_League", "http://dbpedia.org/resource/2022_NFL_Draft", "http://dbpedia.org/resource/2022_in_Professional_Fighters_League", "http://dbpedia.org/resource/2_Minute_Drill_(game_show)", "http://dbpedia.org/resource/3:_The_Dale_Earnhardt_Story", "http://dbpedia.org/resource/2005_McDonald's_All-American_Boys_Game", "http://dbpedia.org/resource/2005_McDonald's_All-American_Girls_Game", "http://dbpedia.org/resource/2005_Pro_Bowl", "http://dbpedia.org/resource/2006_McDonald's_All-American_Boys_Game", "http://dbpedia.org/resource/2006_McDonald's_All-American_Girls_Game", "http://dbpedia.org/resource/2007_McDonald's_All-American_Boys_Game", "http://dbpedia.org/resource/2007_McDonald's_All-American_Girls_Game", "http://dbpedia.org/resource/2008_Major_League_Baseball_draft", "http://dbpedia.org/resource/2008_McDonald's_All-American_Boys_Game", "http://dbpedia.org/resource/2008_NBA_draft", "http://dbpedia.org/resource/2009_McDonald's_All-American_Boys_Game", "http://dbpedia.org/resource/2009_McDonald's_All-American_Girls_Game", "http://dbpedia.org/resource/Nine_for_IX", "http://dbpedia.org/resource/1988_NFL_Draft", "http://dbpedia.org/resource/1989_NFL_Draft", "http://dbpedia.org/resource/1990_NFL_Draft", "http://dbpedia.org/resource/1991_NFL_Draft", "http://dbpedia.org/resource/1992_NFL_Draft", "http://dbpedia.org/resource/1998_McDonald's_All-American_Boys_Game", "http://dbpedia.org/resource/2018_NFL_Draft", "http://dbpedia.org/resource/2018_in_Professional_Fighters_League", "http://dbpedia.org/resource/2019_NFL_Draft", "http://dbpedia.org/resource/2019_in_Professional_Fighters_League", "http://dbpedia.org/resource/2020_ESPY_Awards", "http://dbpedia.org/resource/2020_NFL_Draft", "http://dbpedia.org/resource/2021_NFL_Draft", "http://dbpedia.org/resource/Code_Breakers_(film)", "http://dbpedia.org/resource/College_Football_Final", "http://dbpedia.org/resource/College_Football_Live", "http://dbpedia.org/resource/College_Football_Scoreboard", "http://dbpedia.org/resource/College_GameDay_(football_TV_program)", "http://dbpedia.org/resource/Saturday_Primetime", "http://dbpedia.org/resource/Baseball_Tonight", "http://dbpedia.org/resource/Basketball:_A_Love_Story", "http://dbpedia.org/resource/Monday_Night_Countdown", "http://dbpedia.org/resource/NASCAR_Countdown", "http://dbpedia.org/resource/NASCAR_on_ESPN", "http://dbpedia.org/resource/NBA_Today", "http://dbpedia.org/resource/NBA_Wednesday", "http://dbpedia.org/resource/NBA_on_ESPN", "http://dbpedia.org/resource/NFL_Insiders", "http://dbpedia.org/resource/NFL_Matchup", "http://dbpedia.org/resource/NHL_on_ESPN", "http://dbpedia.org/resource/1985_Southern_500", "http://dbpedia.org/resource/1986_Champion_Spark_Plug_400", "http://dbpedia.org/resource/1987_Southern_500", "http://dbpedia.org/resource/1987_Winston_500", "http://dbpedia.org/resource/1989_Heinz_Southern_500", "http://dbpedia.org/resource/1990_Heinz_Southern_500", "http://dbpedia.org/resource/1991_Heinz_Southern_500", "http://dbpedia.org/resource/1992_Champion_Spark_Plug_400", "http://dbpedia.org/resource/1992_Hooters_500", "http://dbpedia.org/resource/1992_Major_League_Baseball_expansion_draft", "http://dbpedia.org/resource/1992_Mountain_Dew_Southern_500", "http://dbpedia.org/resource/1993_First_Union_400", "http://dbpedia.org/resource/1993_Mountain_Dew_Southern_500", "http://dbpedia.org/resource/1993_NFL_Draft", "http://dbpedia.org/resource/1993_Winston_500", "http://dbpedia.org/resource/1994_Mountain_Dew_Southern_500", "http://dbpedia.org/resource/1994_NFL_Draft", "http://dbpedia.org/resource/1994_Winston_Select_500", "http://dbpedia.org/resource/1995_Brickyard_400", "http://dbpedia.org/resource/1995_Mountain_Dew_Southern_500", "http://dbpedia.org/resource/1995_NFL_Draft", "http://dbpedia.org/resource/1996_Mountain_Dew_Southern_500", "http://dbpedia.org/resource/1996_NFL_Draft", "http://dbpedia.org/resource/2014_McDonald's_All-American_Boys_Game", "http://dbpedia.org/resource/2015_McDonald's_All-American_Boys_Game", "http://dbpedia.org/resource/2016_McDonald's_All-American_Boys_Game", "http://dbpedia.org/resource/Sunday_NFL_Countdown", "http://dbpedia.org/resource/Sunday_Night_Baseball", "http://dbpedia.org/resource/Super_Tuesday_(TV_program)", "http://dbpedia.org/resource/2008_3M_Performance_400", "http://dbpedia.org/resource/2008_Brickyard_400", "http://dbpedia.org/resource/2008_Centurion_Boats_at_the_Glen", "http://dbpedia.org/resource/2008_NFL_Draft", "http://dbpedia.org/resource/2008_Pepsi_500", "http://dbpedia.org/resource/2008_Sharpie_500", "http://dbpedia.org/resource/2008_Sunoco_Red_Cross_Pennsylvania_500", "http://dbpedia.org/resource/2009_AAA_400", "http://dbpedia.org/resource/2009_Brickyard_400", "http://dbpedia.org/resource/2009_Carfax_400", "http://dbpedia.org/resource/2009_Checker_O'Reilly_Auto_Parts_500", "http://dbpedia.org/resource/2009_Heluva_Good!_Sour_Cream_Dips_at_The_Glen", "http://dbpedia.org/resource/2009_NFL_Draft", "http://dbpedia.org/resource/2009_Pep_Boys_Auto_500", "http://dbpedia.org/resource/2009_Sharpie_500", "http://dbpedia.org/resource/2009_Sylvania_300", "http://dbpedia.org/resource/2009_TUMS_Fast_Relief_500", "http://dbpedia.org/resource/2010_AAA_400", "http://dbpedia.org/resource/2010_AAA_Texas_500", "http://dbpedia.org/resource/2010_AMP_Energy_Juice_500", "http://dbpedia.org/resource/2010_Carfax_400", "http://dbpedia.org/resource/2010_Emory_Healthcare_500", "http://dbpedia.org/resource/2010_Ford_400", "http://dbpedia.org/resource/2010_Heluva_Good!_Sour_Cream_Dips_at_the_Glen", "http://dbpedia.org/resource/2010_Kobalt_Tools_500_(Phoenix)", "http://dbpedia.org/resource/2010_NFL_Draft", "http://dbpedia.org/resource/2010_Pepsi_Max_400", "http://dbpedia.org/resource/2010_Price_Chopper_400", "http://dbpedia.org/resource/2010_Sylvania_300", "http://dbpedia.org/resource/2010_TUMS_Fast_Relief_500", "http://dbpedia.org/resource/2011_5-hour_Energy_200", "http://dbpedia.org/resource/2011_AAA_400", "http://dbpedia.org/resource/2011_AAA_Texas_500", "http://dbpedia.org/resource/2011_AdvoCare_500", "http://dbpedia.org/resource/2011_Brickyard_400", "http://dbpedia.org/resource/2011_Food_City_250", "http://dbpedia.org/resource/2011_Ford_400", "http://dbpedia.org/resource/2011_GEICO_400", "http://dbpedia.org/resource/2011_Good_Sam_Club_500", "http://dbpedia.org/resource/2011_Good_Sam_RV_Insurance_500", "http://dbpedia.org/resource/2011_Heluva_Good!_Sour_Cream_Dips_at_The_Glen", "http://dbpedia.org/resource/2011_Hollywood_Casino_400", "http://dbpedia.org/resource/2011_Kobalt_Tools_500", "http://dbpedia.org/resource/2011_NFL_Draft", "http://dbpedia.org/resource/2011_Pure_Michigan_400", "http://dbpedia.org/resource/2011_Sylvania_300", "http://dbpedia.org/resource/2011_Tums_Fast_Relief_500", "http://dbpedia.org/resource/2012_AAA_400", "http://dbpedia.org/resource/2012_AAA_Texas_500", "http://dbpedia.org/resource/2012_AdvoCare_500_(Atlanta)", "http://dbpedia.org/resource/2012_AdvoCare_500_(Phoenix)", "http://dbpedia.org/resource/2012_Brickyard_400", "http://dbpedia.org/resource/2012_DRIVE4COPD_300", "http://dbpedia.org/resource/2012_Finger_Lakes_355_at_The_Glen", "http://dbpedia.org/resource/2012_Ford_EcoBoost_400", "http://dbpedia.org/resource/2012_GEICO_400", "http://dbpedia.org/resource/2012_Good_Sam_Roadside_Assistance_500", "http://dbpedia.org/resource/2012_Hollywood_Casino_400", "http://dbpedia.org/resource/2012_NFL_Draft", "http://dbpedia.org/resource/2012_Pennsylvania_400", "http://dbpedia.org/resource/2012_Pure_Michigan_400", "http://dbpedia.org/resource/2012_Sylvania_300", "http://dbpedia.org/resource/2012_Tums_Fast_Relief_500", "http://dbpedia.org/resource/2013_AAA_Texas_500", "http://dbpedia.org/resource/2013_AdvoCare_500_(Phoenix)", "http://dbpedia.org/resource/2013_Brickyard_400", "http://dbpedia.org/resource/2013_DRIVE4COPD_300", "http://dbpedia.org/resource/2013_Ford_EcoBoost_400", "http://dbpedia.org/resource/2013_Gobowling.com_400", "http://dbpedia.org/resource/2013_Goody's_Headache_Relief_Shot_500", "http://dbpedia.org/resource/2013_NFL_Draft", "http://dbpedia.org/resource/2013_Sylvania_300", "http://dbpedia.org/resource/Homecoming_with_Rick_Reilly", "http://dbpedia.org/resource/2014_AAA_Texas_500", "http://dbpedia.org/resource/2014_Aaron's_312", "http://dbpedia.org/resource/2014_Brickyard_400", "http://dbpedia.org/resource/2014_Ford_EcoBoost_400", "http://dbpedia.org/resource/2014_Gobowling.com_400", "http://dbpedia.org/resource/2014_NFL_Draft", "http://dbpedia.org/resource/2014_Quicken_Loans_Race_for_Heroes_500", "http://dbpedia.org/resource/2015_NFL_Draft", "http://dbpedia.org/resource/2015_Pro_Bowl", "http://dbpedia.org/resource/2016_NFL_Draft", "http://dbpedia.org/resource/2017_NBA_draft", "http://dbpedia.org/resource/2017_NFL_Draft", "http://dbpedia.org/resource/Dream_Job", "http://dbpedia.org/resource/1999_McDonald's_All-American_Boys_Game", "http://dbpedia.org/resource/2000_Food_City_500", "http://dbpedia.org/resource/2000_Goody's_Body_Pain_500", "http://dbpedia.org/resource/2000_Mall.com_400", "http://dbpedia.org/resource/2000_McDonald's_All-American_Boys_Game", "http://dbpedia.org/resource/2001_McDonald's_All-American_Boys_Game", "http://dbpedia.org/resource/2002_McDonald's_All-American_Boys_Game", "http://dbpedia.org/resource/2003_McDonald's_All-American_Boys_Game", "http://dbpedia.org/resource/2004_McDonald's_All-American_Boys_Game", "http://dbpedia.org/resource/2017_McDonald's_All-American_Boys_Game", "http://dbpedia.org/resource/Cycling_on_ESPN", "http://dbpedia.org/resource/Highly_Questionable", "http://dbpedia.org/resource/MLS_Soccer_Sunday", "http://dbpedia.org/resource/MMA_Live", "http://dbpedia.org/resource/First_Take_(talk_show)", "http://dbpedia.org/resource/Perfect_Match_(1994_game_show)", "http://dbpedia.org/resource/This_Just_In_with_Max_Kellerman", "http://dbpedia.org/resource/Thursday_Night_Showcase", "http://dbpedia.org/resource/Tilt_(American_TV_series)", "http://dbpedia.org/resource/ESPN_(Latin_America)", "http://dbpedia.org/resource/ESPN_(Netherlands)", "http://dbpedia.org/resource/ESPN_Africa", "http://dbpedia.org/resource/ESPN_College_Football_Saturday_Primetime", "http://dbpedia.org/resource/ESPN_Major_League_Baseball", "http://dbpedia.org/resource/ESPN_Sunday_Night_Football", "http://dbpedia.org/resource/Outside_the_Lines", "http://dbpedia.org/resource/Shaquille_(TV_series)", "http://dbpedia.org/resource/SpeedWeek", "http://dbpedia.org/resource/SportsCentury", "http://dbpedia.org/resource/SportsNation_(TV_program)", "http://dbpedia.org/resource/Big_Monday", "http://dbpedia.org/resource/Bill_Dance_Outdoors", "http://dbpedia.org/resource/Bishop_Sycamore_High_School_scandal", "http://dbpedia.org/resource/Bonds_on_Bonds", "http://dbpedia.org/resource/I'd_Do_Anything_(2004_TV_series)", "http://dbpedia.org/resource/Knight_School_(American_TV_series)", "http://dbpedia.org/resource/Pardon_the_Interruption", "http://dbpedia.org/resource/ESPN_Australia", "http://dbpedia.org/resource/ESPN_Caribbean", "http://dbpedia.org/resource/Soccer_on_ESPN/ABC", "http://dbpedia.org/resource/2013_MLS_SuperDraft", "http://dbpedia.org/resource/2013_NPF_Draft", "http://dbpedia.org/resource/2014_Bank_of_America_500", "http://dbpedia.org/resource/2010_McDonald's_All-American_Girls_Game", "http://dbpedia.org/resource/2010_WNBA_draft", "http://dbpedia.org/resource/2011_McDonald's_All-American_Girls_Game", "http://dbpedia.org/resource/2012_McDonald's_All-American_Girls_Game", "http://dbpedia.org/resource/2012_WNBA_draft", "http://dbpedia.org/resource/2013_McDonald's_All-American_Girls_Game", "http://dbpedia.org/resource/2013_WNBA_draft", "http://dbpedia.org/resource/2006_WNBA_draft", "http://dbpedia.org/resource/2007_WNBA_draft", "http://dbpedia.org/resource/2008_McDonald's_All-American_Girls_Game", "http://dbpedia.org/resource/2008_WNBA_draft", "http://dbpedia.org/resource/2009_WNBA_draft", "http://dbpedia.org/resource/2014_McDonald's_All-American_Girls_Game", "http://dbpedia.org/resource/2014_WNBA_draft", "http://dbpedia.org/resource/2015_McDonald's_All-American_Girls_Game", "http://dbpedia.org/resource/2015_WNBA_draft", "http://dbpedia.org/resource/2016_McDonald's_All-American_Girls_Game", "http://dbpedia.org/resource/2016_WNBA_draft", "http://dbpedia.org/resource/Summer_House_(2006_TV_series)", "http://dbpedia.org/resource/2017_WNBA_draft", "http://dbpedia.org/resource/2018_WNBA_draft", "http://dbpedia.org/resource/2019_WNBA_draft", "http://dbpedia.org/resource/ESPNU_College_Basketball", "http://dbpedia.org/resource/ESPNU_College_Football", "http://dbpedia.org/resource/Dave_and_Steve's_Video_Game_Explosion", "http://dbpedia.org/resource/NY1", "http://dbpedia.org/resource/NY1_Noticias", "http://dbpedia.org/resource/NY1_Rail_and_Road", "http://dbpedia.org/resource/Spectrum_News_1_Buffalo", "http://dbpedia.org/resource/Spectrum_News_1_Capital_Region", "http://dbpedia.org/resource/Spectrum_News_1_Central_New_York", "http://dbpedia.org/resource/Spectrum_News_1_North_Carolina", "http://dbpedia.org/resource/Spectrum_News_1_Rochester", "http://dbpedia.org/resource/Spectrum_Sports_(New_York)", "http://dbpedia.org/resource/Spectrum_Sports_(Ohio)", "http://dbpedia.org/resource/Spectrum_Sports_(Wisconsin)", "http://dbpedia.org/resource/Spectrum_Sports_(Carolinas)", "http://dbpedia.org/resource/Spectrum_Sports_(Texas)", "http://dbpedia.org/resource/2011_NextEra_Energy_Resources_250", "http://dbpedia.org/resource/2011_WinStar_World_Casino_350K", "http://dbpedia.org/resource/2012_NextEra_Energy_Resources_250", "http://dbpedia.org/resource/2013_Mudsummer_Classic", "http://dbpedia.org/resource/2018_in_RXF", "http://dbpedia.org/resource/2019_in_RXF", "http://dbpedia.org/resource/2020_in_RXF", "http://dbpedia.org/resource/America_to_Me", "http://dbpedia.org/resource/American_Gods_(TV_series)", "http://dbpedia.org/resource/American_Gods_(season_1)", "http://dbpedia.org/resource/American_Gods_(season_2)", "http://dbpedia.org/resource/American_Gods_(season_3)", "http://dbpedia.org/resource/Dangerous_Liaisons_(TV_series)", "http://dbpedia.org/resource/Vida_(TV_series)", "http://dbpedia.org/resource/Becoming_Elizabeth", "http://dbpedia.org/resource/Gaslit_(TV_series)", "http://dbpedia.org/resource/Power_Book_II:_Ghost", "http://dbpedia.org/resource/Power_Book_III:_Raising_Kanan", "http://dbpedia.org/resource/Power_Book_IV:_Force", "http://dbpedia.org/resource/Men_in_Kilts:_A_Roadtrip_with_Sam_and_Graham", "http://dbpedia.org/resource/The_Rook_(miniseries)", "http://dbpedia.org/resource/The_Serpent_Queen", "http://dbpedia.org/resource/The_Spanish_Princess", "http://dbpedia.org/resource/Now_Apocalypse", "http://dbpedia.org/resource/BMF_(TV_series)", "http://dbpedia.org/resource/Torchwood", "http://dbpedia.org/resource/A_Prince_for_Christmas", "http://dbpedia.org/resource/Camelot_(TV_series)", "http://dbpedia.org/resource/Sweetbitter_(TV_series)", "http://dbpedia.org/resource/Heels_(TV_series)", "http://dbpedia.org/resource/Hightown_(TV_series)", "http://dbpedia.org/resource/Shining_Vale", "http://dbpedia.org/resource/Blindspotting_(TV_series)", "http://dbpedia.org/resource/P-Valley", "http://dbpedia.org/resource/Party_Down", "http://dbpedia.org/resource/Run_the_World_(TV_series)", "http://dbpedia.org/resource/Wild_Things:_Diamonds_in_the_Rough", "http://dbpedia.org/resource/Wild_Things_2", "http://dbpedia.org/resource/Starship_Troopers_2:_Hero_of_the_Federation", "http://dbpedia.org/resource/Big_Ten_Icons", "http://dbpedia.org/resource/The_Cowboy_Way_(TV_series)", "http://dbpedia.org/resource/Amanpour_&_Company", "http://dbpedia.org/resource/America's_Great_Divide", "http://dbpedia.org/resource/America_After_9/11", "http://dbpedia.org/resource/American_Experience_(season_1)", "http://dbpedia.org/resource/American_Experience_(season_10)", "http://dbpedia.org/resource/American_Experience_(season_11)", "http://dbpedia.org/resource/American_Experience_(season_12)", "http://dbpedia.org/resource/American_Experience_(season_13)", "http://dbpedia.org/resource/American_Experience_(season_14)", "http://dbpedia.org/resource/American_Experience_(season_15)", "http://dbpedia.org/resource/American_Experience_(season_16)", "http://dbpedia.org/resource/American_Experience_(season_17)", "http://dbpedia.org/resource/American_Experience_(season_18)", "http://dbpedia.org/resource/American_Experience_(season_19)", "http://dbpedia.org/resource/American_Experience_(season_2)", "http://dbpedia.org/resource/American_Experience_(season_20)", "http://dbpedia.org/resource/American_Experience_(season_21)", "http://dbpedia.org/resource/American_Experience_(season_22)", "http://dbpedia.org/resource/American_Experience_(season_23)", "http://dbpedia.org/resource/American_Experience_(season_24)", "http://dbpedia.org/resource/American_Experience_(season_25)", "http://dbpedia.org/resource/American_Experience_(season_26)", "http://dbpedia.org/resource/American_Experience_(season_27)", "http://dbpedia.org/resource/American_Experience_(season_28)", "http://dbpedia.org/resource/American_Experience_(season_29)", "http://dbpedia.org/resource/American_Experience_(season_3)", "http://dbpedia.org/resource/American_Experience_(season_30)", "http://dbpedia.org/resource/American_Experience_(season_31)", "http://dbpedia.org/resource/American_Experience_(season_32)", "http://dbpedia.org/resource/American_Experience_(season_33)", "http://dbpedia.org/resource/American_Experience_(season_34)", "http://dbpedia.org/resource/American_Experience_(season_4)", "http://dbpedia.org/resource/American_Experience_(season_5)", "http://dbpedia.org/resource/American_Experience_(season_6)", "http://dbpedia.org/resource/American_Experience_(season_7)", "http://dbpedia.org/resource/American_Experience_(season_8)", "http://dbpedia.org/resource/American_Experience_(season_9)", "http://dbpedia.org/resource/American_Family_(2002_TV_series)", "http://dbpedia.org/resource/Andre's_Mother", "http://dbpedia.org/resource/Dave_Chappelle:_The_Kennedy_Center_Mark_Twain_Prize_for_American_Humor", "http://dbpedia.org/resource/Dawn_of_Humanity", "http://dbpedia.org/resource/Decoding_COVID-19", "http://dbpedia.org/resource/Visions_(TV_series)", "http://dbpedia.org/resource/Walt_Disney_(film)", "http://dbpedia.org/resource/War_Feels_Like_War", "http://dbpedia.org/resource/Washington_Week", "http://dbpedia.org/resource/Defying_the_Nazis:_The_Sharps'_War", "http://dbpedia.org/resource/Degrassi_Junior_High", "http://dbpedia.org/resource/20th_AARP_Movies_for_Grownups_Awards", "http://dbpedia.org/resource/20th_International_Emmy_Awards", "http://dbpedia.org/resource/21st_AARP_Movies_for_Grownups_Awards", "http://dbpedia.org/resource/Arthur_(season_1)", "http://dbpedia.org/resource/Arthur_(season_10)", "http://dbpedia.org/resource/Arthur_(season_11)", "http://dbpedia.org/resource/Arthur_(season_12)", "http://dbpedia.org/resource/Arthur_(season_13)", "http://dbpedia.org/resource/Arthur_(season_14)", "http://dbpedia.org/resource/Arthur_(season_15)", "http://dbpedia.org/resource/Arthur_(season_16)", "http://dbpedia.org/resource/Arthur_(season_17)", "http://dbpedia.org/resource/Arthur_(season_18)", "http://dbpedia.org/resource/Arthur_(season_19)", "http://dbpedia.org/resource/Arthur_(season_2)", "http://dbpedia.org/resource/Arthur_(season_20)", "http://dbpedia.org/resource/Arthur_(season_3)", "http://dbpedia.org/resource/Arthur_(season_4)", "http://dbpedia.org/resource/Arthur_(season_5)", "http://dbpedia.org/resource/Arthur_(season_6)", "http://dbpedia.org/resource/Arthur_(season_7)", "http://dbpedia.org/resource/Arthur_(season_8)", "http://dbpedia.org/resource/Arthur_(season_9)", "http://dbpedia.org/resource/Austin_City_Limits", "http://dbpedia.org/resource/Auto-B-Good", "http://dbpedia.org/resource/Battlefield_(American_TV_series)", "http://dbpedia.org/resource/Bert_and_Ernie's_Great_Adventures", "http://dbpedia.org/resource/French_in_Action", "http://dbpedia.org/resource/Frog_(film)", "http://dbpedia.org/resource/Frontline_(American_TV_program)", "http://dbpedia.org/resource/George_H.W._Bush_(film)", "http://dbpedia.org/resource/George_W._Bush_(film)", "http://dbpedia.org/resource/We'll_Meet_Again_with_Ann_Curry", "http://dbpedia.org/resource/We_Shall_Remain", "http://dbpedia.org/resource/Where_in_Time_Is_Carmen_Sandiego%3F_(game_show)", "http://dbpedia.org/resource/Where_in_the_World_Is_Carmen_Sandiego%3F_(game_show)", "http://dbpedia.org/resource/Who_Am_I_This_Time%3F_(film)", "http://dbpedia.org/resource/Globe_Trekker", "http://dbpedia.org/resource/Go_Tell_It_on_the_Mountain_(film)", "http://dbpedia.org/resource/Mark_Kistler's_Imagination_Station", "http://dbpedia.org/resource/Press_(TV_series)", "http://dbpedia.org/resource/The_1900_House", "http://dbpedia.org/resource/The_Armenian_Genocide_(film)", "http://dbpedia.org/resource/The_Big_Comfy_Couch", "http://dbpedia.org/resource/The_Bomb_(film)", "http://dbpedia.org/resource/The_Brain_with_David_Eagleman", "http://dbpedia.org/resource/The_Choice_2020", "http://dbpedia.org/resource/Ulysses_S._Grant_(film)", "http://dbpedia.org/resource/Uncommon_Women_and_Others_(film)", "http://dbpedia.org/resource/James_Levine's_25th_Anniversary_Metropolitan_Opera_Gala", "http://dbpedia.org/resource/Jazz_(miniseries)", "http://dbpedia.org/resource/Mercy_Street_(TV_series)", "http://dbpedia.org/resource/Merry_Christmas,_George_Bailey", "http://dbpedia.org/resource/Reading_Rainbow", "http://dbpedia.org/resource/Rebecca_(1997_TV_series)", "http://dbpedia.org/resource/The_Daytripper", "http://dbpedia.org/resource/The_Dinosaurs!", "http://dbpedia.org/resource/The_Electric_Company", "http://dbpedia.org/resource/The_Five_Forty-Eight", "http://dbpedia.org/resource/The_Green_Planet_(TV_series)", "http://dbpedia.org/resource/The_House_of_Blue_Leaves_(film)", "http://dbpedia.org/resource/The_Huggabug_Club", "http://dbpedia.org/resource/The_Joy_That_Kills", "http://dbpedia.org/resource/The_Joy_of_Painting", "http://dbpedia.org/resource/The_Kate", "http://dbpedia.org/resource/The_Long_Song_(TV_series)", "http://dbpedia.org/resource/The_Magic_School_Bus_(TV_series)", "http://dbpedia.org/resource/The_Mind_of_a_Chef", "http://dbpedia.org/resource/The_Moonstone_(1996_film)", "http://dbpedia.org/resource/The_Mystery_of_Matter", "http://dbpedia.org/resource/The_New_Yankee_Workshop", "http://dbpedia.org/resource/The_Private_History_of_a_Campaign_That_Failed", "http://dbpedia.org/resource/The_Red_Green_Show", "http://dbpedia.org/resource/The_Reppies", "http://dbpedia.org/resource/The_Vietnam_War_(TV_series)", "http://dbpedia.org/resource/The_Virgin_Queen_(TV_serial)", "http://dbpedia.org/resource/The_Wright_Stuff_(film)", "http://dbpedia.org/resource/Discover:_The_World_of_Science", "http://dbpedia.org/resource/17th_AARP_Movies_for_Grownups_Awards", "http://dbpedia.org/resource/18th_AARP_Movies_for_Grownups_Awards", "http://dbpedia.org/resource/3-2-1_Contact", "http://dbpedia.org/resource/A.M._Weather", "http://dbpedia.org/resource/Nova_(American_TV_program)", "http://dbpedia.org/resource/Click_and_Clack's_As_the_Wrench_Turns", "http://dbpedia.org/resource/College_Behind_Bars", "http://dbpedia.org/resource/Cookin'_Cheap", "http://dbpedia.org/resource/John_and_Abigail_Adams", "http://dbpedia.org/resource/Jon_Stewart:_The_Kennedy_Center_Mark_Twain_Prize_for_American_Humor", "http://dbpedia.org/resource/Scientific_American_Frontiers", "http://dbpedia.org/resource/Search_for_the_Super_Battery", "http://dbpedia.org/resource/BBC_OS", "http://dbpedia.org/resource/Barbecue_America", "http://dbpedia.org/resource/Barney_&_Friends", "http://dbpedia.org/resource/Bataan_Rescue", "http://dbpedia.org/resource/Inside/Out_(American_TV_series)", "http://dbpedia.org/resource/Islamic_Art:_Mirror_of_the_Invisible_World", "http://dbpedia.org/resource/Miss_Scarlet_and_The_Duke", "http://dbpedia.org/resource/Mister_Rogers'_Neighborhood", "http://dbpedia.org/resource/Monsterpiece_Theater", "http://dbpedia.org/resource/MotorWeek", "http://dbpedia.org/resource/Mr_Selfridge", "http://dbpedia.org/resource/Muhammad:_Legacy_of_a_Prophet", "http://dbpedia.org/resource/Muhammad_Ali_(miniseries)", "http://dbpedia.org/resource/Mystery!", "http://dbpedia.org/resource/Tony_Brown's_Journal", "http://dbpedia.org/resource/Truman_(1997_film)", "http://dbpedia.org/resource/A_Capitol_Fourth", "http://dbpedia.org/resource/A_Chef's_Life", "http://dbpedia.org/resource/A_Christmas_Calendar", "http://dbpedia.org/resource/A_Life_in_the_Theatre_(1979_film)", "http://dbpedia.org/resource/A_Place_of_Our_Own", "http://dbpedia.org/resource/A_Waltz_Through_the_Hills", "http://dbpedia.org/resource/Adventures_from_the_Book_of_Virtues", "http://dbpedia.org/resource/Africa's_Great_Civilizations", "http://dbpedia.org/resource/Cancer_(film)", "http://dbpedia.org/resource/China:_A_Century_of_Revolution", "http://dbpedia.org/resource/Christmas_Eve_on_Sesame_Street", "http://dbpedia.org/resource/Chuck_Jones:_Extremes_&_Inbetweens_\u2013_A_Life_in_Animation", "http://dbpedia.org/resource/How_to_Be_a_Perfect_Person_in_Just_Three_Days", "http://dbpedia.org/resource/LBJ_(1991_film)", "http://dbpedia.org/resource/SkyWeek", "http://dbpedia.org/resource/Soccer_Made_in_Germany", "http://dbpedia.org/resource/Soldier's_Home_(film)", "http://dbpedia.org/resource/Solomon_Northup's_Odyssey", "http://dbpedia.org/resource/Sondheim!_The_Birthday_Concert", "http://dbpedia.org/resource/Soul!", "http://dbpedia.org/resource/Soundstage_(TV_series)", "http://dbpedia.org/resource/19th_AARP_Movies_for_Grownups_Awards", "http://dbpedia.org/resource/Country_Music_(miniseries)", "http://dbpedia.org/resource/Crucible_of_Empire", "http://dbpedia.org/resource/Grannies_on_Safari", "http://dbpedia.org/resource/MacArthur_(1999_film)", "http://dbpedia.org/resource/Making_North_America", "http://dbpedia.org/resource/Ridley_Road_(TV_series)", "http://dbpedia.org/resource/Rock_&_Roll_(TV_series)", "http://dbpedia.org/resource/Fit_2_Stitch", "http://dbpedia.org/resource/Jimmy_Carter_(film)", "http://dbpedia.org/resource/NerdTV", "http://dbpedia.org/resource/Nerds_2.0.1", "http://dbpedia.org/resource/New_York_Television_Theatre", "http://dbpedia.org/resource/Nichols_and_May:_Take_Two", "http://dbpedia.org/resource/Philly_D.A.", "http://dbpedia.org/resource/Theodore_Tugboat", "http://dbpedia.org/resource/There_Goes_a...", "http://dbpedia.org/resource/Think_Twice_(game_show)", "http://dbpedia.org/resource/Time_Scanners", "http://dbpedia.org/resource/Wishbone_(TV_series)", "http://dbpedia.org/resource/WonderWorks", "http://dbpedia.org/resource/Woody_Allen:_A_Documentary", "http://dbpedia.org/resource/World_News_Today", "http://dbpedia.org/resource/EGG,_the_Arts_Show", "http://dbpedia.org/resource/Elmo_Saves_Christmas", "http://dbpedia.org/resource/Live_from_the_Metropolitan_Opera", "http://dbpedia.org/resource/Once_Upon_a_Classic", "http://dbpedia.org/resource/Sesame_Street,_Special", "http://dbpedia.org/resource/Shining_Time_Station", "http://dbpedia.org/resource/Space_Chase_USA", "http://dbpedia.org/resource/Spidey_Super_Stories", "http://dbpedia.org/resource/Splash_and_Bubbles", "http://dbpedia.org/resource/Square_One_Television", "http://dbpedia.org/resource/Stage_on_Screen", "http://dbpedia.org/resource/Big_Bird's_Birthday_or_Let_Me_Eat_Cake", "http://dbpedia.org/resource/Big_Bird_in_Japan", "http://dbpedia.org/resource/Bill_Moyers_Journal", "http://dbpedia.org/resource/Bill_Nye_the_Science_Guy", "http://dbpedia.org/resource/Black_in_Latin_America", "http://dbpedia.org/resource/Bluegrass_Underground", "http://dbpedia.org/resource/Idomeneo_(film)", "http://dbpedia.org/resource/Independent_Lens", "http://dbpedia.org/resource/Kino's_Storytime", "http://dbpedia.org/resource/Mike_Nichols:_American_Masters", "http://dbpedia.org/resource/Miracle_at_Moreaux", "http://dbpedia.org/resource/PBS_NewsHour", "http://dbpedia.org/resource/POV_(TV_series)", "http://dbpedia.org/resource/Painted_Lady_(TV_series)", "http://dbpedia.org/resource/Pappyland", "http://dbpedia.org/resource/Roots_of_Resistance:_The_Story_of_the_Underground_Railroad", "http://dbpedia.org/resource/Zoom_(1999_TV_series)", "http://dbpedia.org/resource/MoneyHunt", "http://dbpedia.org/resource/The_Metropolitan_Opera_Centennial_Gala", "http://dbpedia.org/resource/Alma's_Way", "http://dbpedia.org/resource/Danger_Rangers", "http://dbpedia.org/resource/Daniel_Tiger's_Neighborhood", "http://dbpedia.org/resource/Dinosaur_Train", "http://dbpedia.org/resource/Arthur_(season_21)", "http://dbpedia.org/resource/Arthur_(season_22)", "http://dbpedia.org/resource/Arthur_(season_23)", "http://dbpedia.org/resource/Arthur_(season_24)", "http://dbpedia.org/resource/Arthur_(season_25)", "http://dbpedia.org/resource/Betsy's_Kindergarten_Adventures", "http://dbpedia.org/resource/Between_the_Lions", "http://dbpedia.org/resource/George_Shrinks", "http://dbpedia.org/resource/Sagwa,_the_Chinese_Siamese_Cat", "http://dbpedia.org/resource/Anne_of_Green_Gables:_The_Animated_Series", "http://dbpedia.org/resource/Martha_Speaks_(TV_series)", "http://dbpedia.org/resource/Pinkalicious_&_Peterrific", "http://dbpedia.org/resource/The_Berenstain_Bears_(2003_TV_series)", "http://dbpedia.org/resource/The_Cat_in_the_Hat_Knows_a_Lot_About_That!", "http://dbpedia.org/resource/Ready_Jet_Go!", "http://dbpedia.org/resource/The_Puzzle_Place", "http://dbpedia.org/resource/The_Ruff_Ruffman_Show", "http://dbpedia.org/resource/The_Zula_Patrol", "http://dbpedia.org/resource/Clifford's_Puppy_Days", "http://dbpedia.org/resource/SciGirls", "http://dbpedia.org/resource/SeeMore's_Playhouse", "http://dbpedia.org/resource/It's_a_Big_Big_World", "http://dbpedia.org/resource/Molly_of_Denali", "http://dbpedia.org/resource/Adventures_with_Kanga_Roddy", "http://dbpedia.org/resource/Donkey_Hodie_(TV_series)", "http://dbpedia.org/resource/Dragon_Tales", "http://dbpedia.org/resource/DragonflyTV", "http://dbpedia.org/resource/Curiosity_Quest", "http://dbpedia.org/resource/Cyberchase", "http://dbpedia.org/resource/Hello_Mrs._Cherrywinkle", "http://dbpedia.org/resource/Mack_&_Moxy", "http://dbpedia.org/resource/Make_Way_for_Noddy", "http://dbpedia.org/resource/Let's_Go_Luna!", "http://dbpedia.org/resource/Peep_and_the_Big_Wide_World", "http://dbpedia.org/resource/Peg_+_Cat", "http://dbpedia.org/resource/Timothy_Goes_to_School", "http://dbpedia.org/resource/Wimzie's_House", "http://dbpedia.org/resource/WordGirl", "http://dbpedia.org/resource/WordGirl_(season_1)", "http://dbpedia.org/resource/WordGirl_(season_2)", "http://dbpedia.org/resource/WordGirl_(season_3)", "http://dbpedia.org/resource/WordGirl_(season_4)", "http://dbpedia.org/resource/WordGirl_(season_5)", "http://dbpedia.org/resource/WordGirl_(season_6)", "http://dbpedia.org/resource/WordGirl_(season_7)", "http://dbpedia.org/resource/WordGirl_(season_8)", "http://dbpedia.org/resource/WordWorld", "http://dbpedia.org/resource/Xavier_Riddle_and_the_Secret_Museum", "http://dbpedia.org/resource/Elinor_Wonders_Why", "http://dbpedia.org/resource/Lomax,_the_Hound_of_Music", "http://dbpedia.org/resource/Seven_Little_Monsters_(TV_series)", "http://dbpedia.org/resource/Sid_the_Science_Kid", "http://dbpedia.org/resource/Signing_Time!", "http://dbpedia.org/resource/Space_Racers", "http://dbpedia.org/resource/Biz_Kids", "http://dbpedia.org/resource/Kratts'_Creatures", "http://dbpedia.org/resource/List_of_Curious_George_episodes", "http://dbpedia.org/resource/List_of_Space_Racers_episodes", "http://dbpedia.org/resource/Zoboomafoo", "http://dbpedia.org/resource/The_Drive_(TV_series)", "http://dbpedia.org/resource/American_Digger_(TV_series)", "http://dbpedia.org/resource/American_Woman_(TV_series)", "http://dbpedia.org/resource/WWE_Afterburn", "http://dbpedia.org/resource/WWE_Confidential", "http://dbpedia.org/resource/WWE_Raw", "http://dbpedia.org/resource/WWF_LiveWire", "http://dbpedia.org/resource/Waco_(miniseries)", "http://dbpedia.org/resource/Friday_Night_Lights_Out", "http://dbpedia.org/resource/Gary_the_Rat", "http://dbpedia.org/resource/TNA_Reaction", "http://dbpedia.org/resource/Wild_World_of_Spike", "http://dbpedia.org/resource/1000_Ways_to_Die", "http://dbpedia.org/resource/1000_Ways_to_Lie", "http://dbpedia.org/resource/10_Million_Dollar_Bigfoot_Bounty", "http://dbpedia.org/resource/Players_(2010_TV_series)", "http://dbpedia.org/resource/18_Wheels_of_Justice", "http://dbpedia.org/resource/Ren_&_Stimpy_%22Adult_Party_Cartoon%22", "http://dbpedia.org/resource/Rest_in_Power:_The_Trayvon_Martin_Story", "http://dbpedia.org/resource/The_Kill_Point", "http://dbpedia.org/resource/The_Mist_(TV_series)", "http://dbpedia.org/resource/The_Ultimate_Fighter", "http://dbpedia.org/resource/68_Whiskey", "http://dbpedia.org/resource/Bar_Rescue_(season_1)", "http://dbpedia.org/resource/Bar_Rescue_(season_3)", "http://dbpedia.org/resource/Bar_Rescue_(season_4)", "http://dbpedia.org/resource/Bar_Rescue_(season_5)", "http://dbpedia.org/resource/Bar_Rescue_(season_6)", "http://dbpedia.org/resource/Bar_Rescue_(season_7)", "http://dbpedia.org/resource/Bar_Rescue_(season_8)", "http://dbpedia.org/resource/Ink_Master_(season_11)", "http://dbpedia.org/resource/Ink_Master_(season_12)", "http://dbpedia.org/resource/Ink_Master_(season_13)", "http://dbpedia.org/resource/It_Was_Him:_The_Many_Murders_of_Ed_Edwards", "http://dbpedia.org/resource/Most_Extreme_Elimination_Challenge", "http://dbpedia.org/resource/Stripperella", "http://dbpedia.org/resource/Cops_(TV_program)", "http://dbpedia.org/resource/Guys_Choice:_Perfect_10", "http://dbpedia.org/resource/Fight_Master:_Bellator_MMA", "http://dbpedia.org/resource/Lip_Sync_Battle", "http://dbpedia.org/resource/List_of_Bar_Rescue_episodes", "http://dbpedia.org/resource/R_(TV_series)", "http://dbpedia.org/resource/This_Just_In!", "http://dbpedia.org/resource/World's_Wildest_Police_Videos", "http://dbpedia.org/resource/World's_Worst_Tenants", "http://dbpedia.org/resource/Yellowstone_(American_TV_series)", "http://dbpedia.org/resource/Blade:_The_Series", "http://dbpedia.org/resource/Paramount_Network_(Dutch_TV_channel)", "http://dbpedia.org/resource/Star_Trek:_Phase_II", "http://dbpedia.org/resource/Campfire_Caf\u00e9", "http://dbpedia.org/resource/2021_Heat_Latin_Music_Awards", "http://dbpedia.org/resource/The_Jet_Set_(TV_program)"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/distributor> <http://dbpedia.org/resource/Cinema_International_Corporation> . ?uri <http://dbpedia.org/ontology/editing> <http://dbpedia.org/resource/Hulian_Doyle_(film)> . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Rouen_Business_School> <http://dbpedia.org/ontology/province> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/recordedIn> <http://dbpedia.org/resource/Miami> . ?uri <http://dbpedia.org/property/writer> ?x . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Bangkok> . ?x <http://dbpedia.org/property/religion> ?uri . }"}, "answers": ["4"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/associatedMusicalActs> <http://dbpedia.org/resource/Tony_Allen_(musician)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MusicalArtist>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/computingPlatform> <http://dbpedia.org/resource/Microsoft_Windows> } "}, "answers": ["8751"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Martin_Molony> <http://dbpedia.org/property/commonRace> ?uri . <http://dbpedia.org/resource/Coneygree> <http://dbpedia.org/ontology/race> ?uri} "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/arena> <http://dbpedia.org/resource/The_Palace_of_Auburn_Hills> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SportsTeam>}"}, "answers": ["http://dbpedia.org/resource/Detroit_Shock", "http://dbpedia.org/resource/Detroit_Vipers"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/company> <http://dbpedia.org/resource/Playtone> . ?uri <http://dbpedia.org/ontology/writer> <http://dbpedia.org/resource/Graham_Yost> } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/longs> <http://dbpedia.org/resource/Darth_Vader> . ?uri <http://dbpedia.org/ontology/family> <http://dbpedia.org/resource/Padm\u00e9_Amidala> . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/services> <http://dbpedia.org/resource/Microsoft_Azure> . ?x <http://dbpedia.org/property/services> ?uri }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/firstTeam> <http://dbpedia.org/resource/Scuderia_Ferrari> . ?x <http://dbpedia.org/ontology/firstDriver> ?uri . }"}, "answers": ["320"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Swedish_Academy> <http://dbpedia.org/property/presenter> ?x . ?x <http://dbpedia.org/ontology/Award> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/director> <http://dbpedia.org/resource/Michael_Deeley> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Liang_Chow> <http://dbpedia.org/property/name> ?uri } "}, "answers": ["Liang Chow"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/line> <http://dbpedia.org/resource/Zurich_Affoltern_am_Albis> . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Julian_Leow_Beng_Kim> <http://dbpedia.org/property/almaMater> ?uri . }"}, "answers": ["7"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/almaMater> <http://dbpedia.org/resource/Burbank_High_School_(California)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Vesak> <http://dbpedia.org/ontology/type> ?uri } "}, "answers": ["http://dbpedia.org/resource/Buddhism"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Anna_Bergman> <http://dbpedia.org/ontology/parent> ?x . ?x <http://dbpedia.org/property/awards> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Goethe_Prize", "http://dbpedia.org/resource/BAFTA_Fellowship", "http://dbpedia.org/resource/Praemium_Imperiale", "http://dbpedia.org/resource/Academy_Award", ""]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/foundationPlace> <http://dbpedia.org/resource/New_York> . ?uri <http://dbpedia.org/property/board> ?x . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/placeOfDeath> <http://dbpedia.org/resource/California> . ?x <http://dbpedia.org/property/musical> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/operatingSystem> <http://dbpedia.org/resource/C++> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Software>}"}, "answers": ["http://dbpedia.org/resource/CodeSynthesis_XSD"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/language> <http://dbpedia.org/resource/French_language> . ?x <http://dbpedia.org/property/currency> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Algerian_dinar", "http://dbpedia.org/resource/West_African_CFA_franc", "Euro", "", "CFP franc", "http://dbpedia.org/resource/CFP_franc", "*French franc\n*Algerian franc", "http://dbpedia.org/resource/Central_African_CFA_franc", "-", "Sahrawi peseta", "Moroccan dirham , Algerian dinar, Mauritanian ouguiya", "Franc", "Krone", "Kr\u00f3na", "http://dbpedia.org/resource/Mauritanian_ouguiya", "http://dbpedia.org/resource/Mauritian_rupee", "http://dbpedia.org/resource/Dalasi", "http://dbpedia.org/resource/Burundian_franc", "http://dbpedia.org/resource/Surinamese_dollar", "http://dbpedia.org/resource/Lao_kip", "\u0111\u1ed3nga", "http://dbpedia.org/resource/Guinean_franc", "http://dbpedia.org/resource/Guyanese_dollar", "Cape Verdean escudo", "Gambian dalasi", "Ghanaian cedi", "Guinean franc", "Liberian dollar", "Nigerian naira", "Sierra Leonean leone", "West African CFA franc", "http://dbpedia.org/resource/Euro", "http://dbpedia.org/resource/United_States_dollar", "http://dbpedia.org/resource/East_Caribbean_dollar", "http://dbpedia.org/resource/CFP_Franc", "OMRs]], 3 OCTs", "and 9 special cases)", "http://dbpedia.org/resource/French_Indochinese_piastre", "http://dbpedia.org/resource/South_Vietnamese_\u0111\u1ed3ng", "http://dbpedia.org/resource/Danish_krone", "http://dbpedia.org/resource/Polish_z\u0142oty", "http://dbpedia.org/resource/Pound_sterling", "http://dbpedia.org/resource/US_dollar", "http://dbpedia.org/resource/Bulgarian_lev", "http://dbpedia.org/resource/Swedish_krona", "http://dbpedia.org/resource/Swiss_franc", "http://dbpedia.org/resource/Croatian_kuna", "http://dbpedia.org/resource/Czech_koruna", "http://dbpedia.org/resource/Hungarian_forint", "http://dbpedia.org/resource/Romanian_leu", "Euro and", "http://dbpedia.org/resource/French_Equatorial_African_franc"]}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/party> <http://dbpedia.org/resource/Janata_Party> . ?x <http://dbpedia.org/ontology/otherParty> ?uri }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/First_Legislative_Assembly_of_Uttar_Pradesh> <http://dbpedia.org/property/party> ?x . ?x <http://dbpedia.org/ontology/president> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/leaderName> <http://dbpedia.org/resource/Jimmy_Wales> . ?x <http://dbpedia.org/ontology/owner> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Army_Group_Oberrhein_(Germany)> <http://dbpedia.org/ontology/notableCommander> ?uri } "}, "answers": ["http://dbpedia.org/resource/Heinrich_Himmler", "http://dbpedia.org/resource/Paul_Hausser"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Qaqun> <http://dbpedia.org/ontology/place> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/World_of_Tomorrow_(film)> <http://dbpedia.org/ontology/editing> ?x . ?x <http://dbpedia.org/property/awards> ?uri . }"}, "answers": ["*2001 Academy Award nominee for Best Animated Short Film \n* 1999 Short Film Palme d'Or nominee: Cannes Film Festival\n* 2007 Grand Jury Prize for Short Film: Sundance Film Festival\n* 2015 Grand Jury Prize for Short Film: Sundance Film Festival\n* 2015 Academy Award nominee for Best Animated Short Film \n* Winner of over 250 other film festival awards"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/locatedInArea> <http://dbpedia.org/resource/Inyo_National_Forest> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Mountain>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/spouse> <http://dbpedia.org/resource/Fredric_Joliot-Curie> . ?x <http://dbpedia.org/property/children> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/First_National_Bank_and_Trust_Building_(Lima,_Ohio)> <http://dbpedia.org/property/architecture> ?uri } "}, "answers": ["Chicago"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/California> . ?x <http://dbpedia.org/property/awards> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/primeMinister> <http://dbpedia.org/resource/Gough_Whitlam> . ?x <http://dbpedia.org/property/position> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kim_Sawchuk> <http://dbpedia.org/ontology/locationCity> ?uri . <http://dbpedia.org/resource/Vuelta_Mexico_Telmex> <http://dbpedia.org/property/locationCountry> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Stockholm> . }"}, "answers": ["111"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Salthill> <http://dbpedia.org/property/locationCountry> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Baco_noir> <http://dbpedia.org/ontology/wineRegion> ?uri . }"}, "answers": ["8"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jerusalem_Institute_of_Justice> <http://dbpedia.org/property/service> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/tenant> <http://dbpedia.org/resource/Boston_Red_Sox> . ?x <http://dbpedia.org/property/tenants> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Melrose_Athletic_Club", "Boston Red Sox", "New York Yankees", "http://dbpedia.org/resource/Detroit_Tigers", "http://dbpedia.org/resource/Hot_Spring_Blues", "http://dbpedia.org/resource/Hot_Springs_Arlingtons", "http://dbpedia.org/resource/Hot_Springs_Vaporites", "http://dbpedia.org/resource/Hot_Springs_Vapors", "http://dbpedia.org/resource/Brooklyn_Dodgers", "http://dbpedia.org/resource/Chicago_Cubs", "http://dbpedia.org/resource/Cleveland_Spiders", "http://dbpedia.org/resource/Hot_Springs_Bathers", "http://dbpedia.org/resource/New_York_Yankees", "http://dbpedia.org/resource/St._Louis_Cardinals", "Pittsburgh Pirates", "Negro leagues", "Baseball Schools", "George Barr Umpire School", "Minor League Baseball", "Ray Doan Baseball School", "Rogers Hornsby Baseball College", "Spring training", "Cleveland Indians", "GCL Indians", "Winter Haven Mets", "Winter Haven Red Sox", "Winter Haven Sun Sox", "Winter Haven Super Sox", "Bradenton Marauders", "Philadelphia Phillies", "St. Louis Cardinals", "Boston Bees", "Bradenton Explorers", "Bradenton Growers", "Boston / Milwaukee Braves", "Kansas City/Oakland Athletics", "http://dbpedia.org/resource/Boston_Red_Sox", "http://dbpedia.org/resource/Cincinnati_Reds", "http://dbpedia.org/resource/St._Louis_Browns", "Minor League", "Major League Spring Training", "Chicago White Sox-Minor League Camp", "http://dbpedia.org/resource/Fenway_Bowl", "Boston Patriots", "Boston Redskins", "Boston Yanks", "Boston Braves", "Boston Bulldogs", "Boston Shamrocks", "Boston Beacons", "http://dbpedia.org/resource/Florida_Complex_League_Red_Sox", "http://dbpedia.org/resource/Florida_SouthWestern_State_College", "College baseball", "GCL Red Sox", "Boston Americans/Red Sox", "http://dbpedia.org/resource/Washington_Senators_(1901\u20131960)", "http://dbpedia.org/resource/Tampa_Cardinals", "http://dbpedia.org/resource/Tampa_Smokers", "http://dbpedia.org/resource/Chicago_White_Sox", "http://dbpedia.org/resource/Hillsborough_High_School_(Florida)", "High school sports", "Tampa Spartans", "Minor leagues", "Pro sports", "Spring Training", "College Sports"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Battle_of_Fort_Stephenson> <http://dbpedia.org/ontology/commander> ?uri } "}, "answers": ["http://dbpedia.org/resource/George_Croghan_(soldier)", "http://dbpedia.org/resource/Henry_Procter_(British_Army_officer)", "http://dbpedia.org/resource/Robert_Dickson_(fur_trader)"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Prodigal_Son_(play)> <http://dbpedia.org/property/subject> ?uri } "}, "answers": ["http://dbpedia.org/resource/Jesus"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/material> <http://dbpedia.org/resource/ARM_architecture> . ?x <http://dbpedia.org/property/computingPlatform> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/creator> <http://dbpedia.org/resource/Clamp_(manga_artists)> . ?x <http://dbpedia.org/property/voice> ?uri . }"}, "answers": ["78"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/training> <http://dbpedia.org/resource/University_of_Oxford> . ?uri <http://dbpedia.org/ontology/training> ?x . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Montecito_Inn> <http://dbpedia.org/ontology/developer> ?uri } "}, "answers": ["http://dbpedia.org/resource/Charlie_Chaplin"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/recordLabel> <http://dbpedia.org/resource/Point_Blank_Records> . ?x <http://dbpedia.org/ontology/starring> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/occupation> <http://dbpedia.org/resource/Craig_Van_Tilbury> . ?uri <http://dbpedia.org/property/residence> <http://dbpedia.org/resource/Karen_Grigorian> . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/artist> <http://dbpedia.org/resource/Christopher_Franke> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": ["http://dbpedia.org/resource/Babylon_5"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bobby_Beasley> <http://dbpedia.org/ontology/race> ?uri } "}, "answers": ["http://dbpedia.org/resource/Cheltenham_Gold_Cup", "http://dbpedia.org/resource/Galway_Plate", "http://dbpedia.org/resource/Grand_National", "http://dbpedia.org/resource/National_Hunt_racing"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/inflow> <http://dbpedia.org/resource/North_Sea> . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/type> <http://dbpedia.org/resource/Nazi_Germany> . ?x <http://dbpedia.org/ontology/head> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Wilfred_McDonald> <http://dbpedia.org/property/playedFor> ?uri } "}, "answers": ["http://dbpedia.org/resource/Detroit_Red_Wings", "http://dbpedia.org/resource/Toronto_Maple_Leafs", "http://dbpedia.org/resource/New_York_Rangers"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/league> <http://dbpedia.org/resource/2013\u201314_La_Liga> . ?uri <http://dbpedia.org/property/youthclubs> ?x . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/inflow> <http://dbpedia.org/resource/Atlantic_Ocean> . ?x <http://dbpedia.org/property/cities> ?uri . }"}, "answers": ["95"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/cinematography> <http://dbpedia.org/resource/John_Derek> . ?x <http://dbpedia.org/ontology/starring> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cam_Plante> <http://dbpedia.org/property/playedFor> ?uri } "}, "answers": ["http://dbpedia.org/resource/Toronto_Maple_Leafs"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/deathCause> <http://dbpedia.org/resource/Lung_cancer> . ?x <http://dbpedia.org/ontology/award> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ashot_Barseghyan> <http://dbpedia.org/ontology/parent> ?x . ?x <http://dbpedia.org/property/occupation> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/K._Terry_Dornbush> <http://dbpedia.org/ontology/almaMater> ?uri } "}, "answers": ["http://dbpedia.org/resource/Vanderbilt_University"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/predecessor> <http://dbpedia.org/resource/Brian_Peddle> . ?x <http://dbpedia.org/ontology/birthPlace> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/knownFor> <http://dbpedia.org/resource/Dragons'_Den_(UK_TV_series)> . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/writer> <http://dbpedia.org/resource/Jump_Square> . ?x <http://dbpedia.org/property/writer> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/membership> <http://dbpedia.org/resource/European_Go_Federation> } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/league> <http://dbpedia.org/resource/National_Basketball_Association> . ?x <http://dbpedia.org/ontology/team> ?uri . }"}, "answers": ["637"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/operator> <http://dbpedia.org/resource/Norfolk_Southern_Railway> . ?x <http://dbpedia.org/property/railwayLine> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/assembly> <http://dbpedia.org/resource/Toluca> . ?x <http://dbpedia.org/ontology/related> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/products> <http://dbpedia.org/resource/Wealth_management> . ?x <http://dbpedia.org/ontology/product> ?uri }"}, "answers": ["230"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/producer> <http://dbpedia.org/resource/Julie_Gardner> . ?uri <http://dbpedia.org/property/company> ?x . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/cinematography> <http://dbpedia.org/resource/Jordan_Cronenweth> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": ["21"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/creator> <http://dbpedia.org/resource/Brian_Graden> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/country> <http://dbpedia.org/resource/England> . ?x <http://dbpedia.org/ontology/religion> ?uri . }"}, "answers": ["314"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/characters> <http://dbpedia.org/resource/Stella_Kowalski> . ?x <http://dbpedia.org/property/author> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kim_Sawchuk> <http://dbpedia.org/ontology/region> ?uri } "}, "answers": ["http://dbpedia.org/resource/North_America", "http://dbpedia.org/resource/Canada"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/architect> <http://dbpedia.org/resource/Krasnye_Vorota_(Moscow_Metro)> . ?x <http://dbpedia.org/property/building> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/institution> <http://dbpedia.org/resource/Robert_Newton_Hall> . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Pablo_Records> . ?x <http://dbpedia.org/ontology/spouse> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/BMW_M43> <http://dbpedia.org/property/successor> ?x . ?x <http://dbpedia.org/ontology/predecessor> ?uri . }"}, "answers": ["http://dbpedia.org/resource/BMW_M43"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/locationCity> <http://dbpedia.org/resource/Taipei_City> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Device>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Wan_Air> <http://dbpedia.org/property/hubs> ?uri } "}, "answers": ["http://dbpedia.org/resource/France", "http://dbpedia.org/resource/Tahiti", "http://dbpedia.org/resource/Fa'a'\u0101_International_Airport"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Amstelveen> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Organisation>}"}, "answers": ["http://dbpedia.org/resource/European_Go_Federation"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/club> <http://dbpedia.org/resource/Middlesbrough_F.C.> . ?x <http://dbpedia.org/ontology/manager> ?uri . }"}, "answers": ["44"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/owner> <http://dbpedia.org/resource/Toronto> . ?x <http://dbpedia.org/ontology/tenant> ?uri . }"}, "answers": ["http://dbpedia.org/resource/GTA_Grizzlies", "http://dbpedia.org/resource/Toronto_Lady_Lynx", "http://dbpedia.org/resource/Toronto_Lynx", "http://dbpedia.org/resource/Toronto_Atomic_FC", "http://dbpedia.org/resource/Serbian_White_Eagles_FC", "http://dbpedia.org/resource/FC_Ukraine_United", "http://dbpedia.org/resource/SC_Toronto", "http://dbpedia.org/resource/Etobicoke_Eagles", "http://dbpedia.org/resource/Hamilton_Nationals", "http://dbpedia.org/resource/TMU_Bold", "http://dbpedia.org/resource/Toronto_Arrows", "http://dbpedia.org/resource/Toronto_FC_Academy", "http://dbpedia.org/resource/Toronto_FC_II", "http://dbpedia.org/resource/Toronto_Wolfpack", "http://dbpedia.org/resource/Canada_national_rugby_league_team", "http://dbpedia.org/resource/Internacional_de_Toronto"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/John_O._Moseley> <http://dbpedia.org/property/almaMater> ?uri } "}, "answers": ["http://dbpedia.org/resource/Austin_College", "http://dbpedia.org/resource/University_of_Oklahoma", "http://dbpedia.org/resource/Merton_College,_Oxford", "http://dbpedia.org/resource/Rhodes_College", "http://dbpedia.org/resource/Southeastern_Oklahoma_State_University"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/nationality> <http://dbpedia.org/resource/Oslo> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Newspaper>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/placeOfBirth> <http://dbpedia.org/resource/King_Crimson> . ?x <http://dbpedia.org/property/recordedIn> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/associatedActs> <http://dbpedia.org/resource/Johnny_Cash> . }"}, "answers": ["35"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/neighboringMunicipalities> <http://dbpedia.org/resource/Pregny-Chamb\u00e9sy> . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/operatingSystem> <http://dbpedia.org/resource/Unix> . ?x <http://dbpedia.org/property/developer> ?uri . }"}, "answers": ["302"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dschinghis_Khan_(song)> <http://dbpedia.org/ontology/trackNumber> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/restingPlace> <http://dbpedia.org/resource/Beeleigh_Abbey> . ?x <http://dbpedia.org/ontology/deathPlace> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Chidambaram_Subramaniam> <http://dbpedia.org/property/minister> ?x . ?x <http://dbpedia.org/ontology/party> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/South_Park_Bridge> <http://dbpedia.org/ontology/maintainedBy> ?uri } "}, "answers": ["http://dbpedia.org/resource/King_County,_Washington"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/LG_Optimus_Vu> <http://dbpedia.org/property/operatingSystem> ?uri . <http://dbpedia.org/resource/Dart_(programming_language)> <http://dbpedia.org/ontology/developer> ?uri} "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/origin> <http://dbpedia.org/resource/England> . }"}, "answers": ["61"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/King_County,_Washington> <http://dbpedia.org/ontology/countySeat> ?uri } "}, "answers": ["http://dbpedia.org/resource/Seattle"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/occupation> <http://dbpedia.org/resource/Federal_Bureau_of_Investigation> . }"}, "answers": ["88"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/California> . ?uri <http://dbpedia.org/property/training> ?x . }"}, "answers": ["3"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/QF_6-pounder_Hotchkiss> <http://dbpedia.org/property/usedInWar> ?x . ?x <http://dbpedia.org/ontology/combatant> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/predecessor> <http://dbpedia.org/resource/Samuel_W._McCall> . ?uri <http://dbpedia.org/property/office> <http://dbpedia.org/resource/Massachusetts_House_of_Representatives> . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/WCSE-LP> <http://dbpedia.org/ontology/sisterStation> ?x . ?x <http://dbpedia.org/property/borough> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/starring> <http://dbpedia.org/resource/Michael_Jackson> . ?x <http://dbpedia.org/ontology/producer> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Ray_Jessel", "http://dbpedia.org/resource/L.A._Reid", "http://dbpedia.org/resource/John_Branca", "http://dbpedia.org/resource/Spike_Lee", "http://dbpedia.org/resource/Bryan_Michael_Stoller", "http://dbpedia.org/resource/Anna_Fantastic", "http://dbpedia.org/resource/James_Goldston"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/chairman> <http://dbpedia.org/resource/Joan_Laporta> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SoccerClub>}"}, "answers": ["http://dbpedia.org/resource/2003\u201304_FC_Barcelona_season", "http://dbpedia.org/resource/2004\u201305_FC_Barcelona_season", "http://dbpedia.org/resource/2005\u201306_FC_Barcelona_season", "http://dbpedia.org/resource/2006\u201307_FC_Barcelona_season", "http://dbpedia.org/resource/2007\u201308_FC_Barcelona_season", "http://dbpedia.org/resource/FC_Barcelona_(beach_soccer)", "http://dbpedia.org/resource/FC_Barcelona_(women)_B", "http://dbpedia.org/resource/2008\u201309_FC_Barcelona_season", "http://dbpedia.org/resource/2009\u201310_FC_Barcelona_season", "http://dbpedia.org/resource/FC_Barcelona", "http://dbpedia.org/resource/FC_Barcelona_(youth)", "http://dbpedia.org/resource/FC_Barcelona_Atl\u00e8tic", "http://dbpedia.org/resource/FC_Barcelona_Femen\u00ed", "http://dbpedia.org/resource/FC_Barcelona_Futsal", "http://dbpedia.org/resource/FC_Barcelona_Handbol"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/almaMater> <http://dbpedia.org/resource/Harvard-Westlake_School> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/movement> <http://dbpedia.org/resource/Feminism> . ?x <http://dbpedia.org/ontology/nationality> ?uri . }"}, "answers": ["19"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/branch> <http://dbpedia.org/resource/Nazi_6th_Army> . ?x <http://dbpedia.org/ontology/relative> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/formerPartner> <http://dbpedia.org/resource/Brynn_Carman> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/FigureSkater>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/governmentType> <http://dbpedia.org/resource/Unitary> . ?x <http://dbpedia.org/property/state> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Entertainment_One_Music> . ?x <http://dbpedia.org/ontology/bandMember> ?uri . }"}, "answers": ["15"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/almaMater> <http://dbpedia.org/resource/Somerville_College,_Oxford> . ?x <http://dbpedia.org/property/party> ?uri . }"}, "answers": ["15"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/music> <http://dbpedia.org/resource/James_Horner> . ?x <http://dbpedia.org/ontology/producer> ?uri . }"}, "answers": ["171"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/David_Isaacs_(writer)> <http://dbpedia.org/ontology/notableWork> ?uri } "}, "answers": ["http://dbpedia.org/resource/Frasier", "http://dbpedia.org/resource/Cheers", "http://dbpedia.org/resource/M*A*S*H_(TV_series)", "http://dbpedia.org/resource/Mad_Men"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Egypt_Nanotechnology_Center> <http://dbpedia.org/ontology/province> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/manager> <http://dbpedia.org/resource/John_Spencer> . ?x <http://dbpedia.org/ontology/homeStadium> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/restingPlace> <http://dbpedia.org/resource/Winchester_Cathedral> . }"}, "answers": ["3"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/producer> <http://dbpedia.org/resource/Stephen_Ambrose_Traversari> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/formerTeam> <http://dbpedia.org/resource/Boston_Bruins> . ?x <http://dbpedia.org/property/playedFor> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Boston_Bruins", "http://dbpedia.org/resource/Montreal_Maroons", "http://dbpedia.org/resource/New_York_Americans", "http://dbpedia.org/resource/Philadelphia_Quakers_(NHL)", "http://dbpedia.org/resource/Ottawa_Senators_(original)", "http://dbpedia.org/resource/Chicago_Black_Hawks", "http://dbpedia.org/resource/Toronto_Maple_Leafs", "http://dbpedia.org/resource/New_York_Rangers", "http://dbpedia.org/resource/Philadelphia_Flyers", "http://dbpedia.org/resource/New_Jersey_Devils", "http://dbpedia.org/resource/V\u00e5lerenga_Ishockey", "http://dbpedia.org/resource/Detroit_Red_Wings", "http://dbpedia.org/resource/Djurg\u00e5rdens_IF_Hockey", "http://dbpedia.org/resource/Colorado_Avalanche", "http://dbpedia.org/resource/New_York_Islanders", "http://dbpedia.org/resource/Stavanger_Oilers", "http://dbpedia.org/resource/F\u00e4rjestads_BK", "http://dbpedia.org/resource/Frisk_Tigers", "http://dbpedia.org/resource/Stjernen", "http://dbpedia.org/resource/AIK_Hockey", "Elitserien", "NHL", "http://dbpedia.org/resource/Malm\u00f6_Redhawks", "http://dbpedia.org/resource/Thomas_Sabo_Ice_Tigers", "http://dbpedia.org/resource/Avangard_Omsk", "http://dbpedia.org/resource/Montreal_Canadiens", "http://dbpedia.org/resource/Torpedo_Nizhny_Novgorod", "http://dbpedia.org/resource/Carolina_Hurricanes", "http://dbpedia.org/resource/HC_CSKA_Moscow", "http://dbpedia.org/resource/HC_Lada_Togliatti", "http://dbpedia.org/resource/Quebec_Nordiques", "http://dbpedia.org/resource/Edmonton_Oilers", "http://dbpedia.org/resource/Lokomotiv_Yaroslavl", "http://dbpedia.org/resource/Severstal_Cherepovets", "http://dbpedia.org/resource/Anaheim_Ducks", "http://dbpedia.org/resource/San_Jose_Sharks", "http://dbpedia.org/resource/Tampa_Bay_Lightning", "http://dbpedia.org/resource/Metallurg_Novokuznetsk", "http://dbpedia.org/resource/Phoenix_Coyotes", "http://dbpedia.org/resource/Calgary_Flames", "http://dbpedia.org/resource/HC_Dynamo_Moscow", "http://dbpedia.org/resource/Minnesota_Wild", "http://dbpedia.org/resource/Pittsburgh_Penguins", "http://dbpedia.org/resource/HC_\u010cesk\u00e9_Bud\u011bjovice", "http://dbpedia.org/resource/Dallas_Stars", "http://dbpedia.org/resource/Vancouver_Canucks", "http://dbpedia.org/resource/Hockey_Milano_Rossoblu", "http://dbpedia.org/resource/IF_Bj\u00f6rkl\u00f6ven", "http://dbpedia.org/resource/Minnesota_North_Stars", "http://dbpedia.org/resource/Ottawa_Senators", "http://dbpedia.org/resource/Buffalo_Sabres", "http://dbpedia.org/resource/Winnipeg_Jets_(1972\u20131996)", "http://dbpedia.org/resource/Chicago_Blackhawks", "http://dbpedia.org/resource/EV_Zug", "http://dbpedia.org/resource/St._Louis_Blues", "http://dbpedia.org/resource/EHC_M\u00fcnchen", "http://dbpedia.org/resource/HC_Davos", "http://dbpedia.org/resource/HC_Lugano", "http://dbpedia.org/resource/L\u00f8renskog_IK", "http://dbpedia.org/resource/Barys_Astana", "http://dbpedia.org/resource/Adler_Mannheim", "http://dbpedia.org/resource/Winnipeg_Jets", "http://dbpedia.org/resource/Los_Angeles_Kings", "http://dbpedia.org/resource/Bryn\u00e4s_IF", "http://dbpedia.org/resource/Ilves_Tampere", "Adirondack Red Wings", "London Knights", "Portland Pirates", "Providence Bruins", "Salt Lake Golden Eagles", "Detroit Falcons", "Fort Wayne Komets", "Knoxville Cherokees", "Las Vegas Thunder", "Detroit Vipers", "Qu\u00e9bec Rafales", "San Antonio Dragons", "Phoenix Mustangs", "Port Huron Border Cats", "Knoxville Speed", "Jacksonville Barracudas", "Kansas City Outlaws", "Utica Blizzard", "http://dbpedia.org/resource/Hamburg_Freezers", "http://dbpedia.org/resource/Columbus_Blue_Jackets", "http://dbpedia.org/resource/Florida_Panthers", "http://dbpedia.org/resource/DEG_Metro_Stars", "http://dbpedia.org/resource/Mighty_Ducks_of_Anaheim", "http://dbpedia.org/resource/Quebec_Aces", "http://dbpedia.org/resource/Binghamton_Dusters", "http://dbpedia.org/resource/Kansas_City_Blues_(ice_hockey)", "http://dbpedia.org/resource/Hershey_Bears", "http://dbpedia.org/resource/Rochester_Americans", "http://dbpedia.org/resource/Hartford_Whalers", "http://dbpedia.org/resource/Washington_Capitals", "http://dbpedia.org/resource/Winnipeg_Jets_(1972\u201396)", "http://dbpedia.org/resource/EV_Landshut", "http://dbpedia.org/resource/KalPa", "http://dbpedia.org/resource/Cincinnati_Stingers", "http://dbpedia.org/resource/R\u00f6gle_BK", "http://dbpedia.org/resource/Nashville_Predators", "http://dbpedia.org/resource/BSC_Preussen", "Eishockey-Bundesliga", "Boston Bruins", "Edmonton Oilers", "Minnesota North Stars", "New York Rangers", "Tampa Bay Lightning", "http://dbpedia.org/resource/Rapperswil-Jona_Lakers", "http://dbpedia.org/resource/Kloten_Flyers", "Swiss", "New York Islanders", "http://dbpedia.org/resource/St._Louis_Eagles", "Detroit Red Wings", "http://dbpedia.org/resource/HK_Dukla_Tren\u010d\u00edn", "http://dbpedia.org/resource/HC_Slavia_Praha", "http://dbpedia.org/resource/CHZ_Litvinov", "http://dbpedia.org/resource/Cleveland_Barons_(NHL)", "http://dbpedia.org/resource/Colorado_Rockies_(NHL)", "http://dbpedia.org/resource/California_Golden_Seals", "http://dbpedia.org/resource/VIK_V\u00e4ster\u00e5s_HK", "http://dbpedia.org/resource/Dinamo_Riga_(original)", "http://dbpedia.org/resource/Hannover_Scorpions", "http://dbpedia.org/resource/Tappara", "http://dbpedia.org/resource/Porin_\u00c4ss\u00e4t_(men's_ice_hockey)", "http://dbpedia.org/resource/Lukko", "http://dbpedia.org/resource/SKA_Saint_Petersburg", "http://dbpedia.org/resource/Capital_District_Islanders", "http://dbpedia.org/resource/Providence_Bruins", "http://dbpedia.org/resource/Arizona_Coyotes", "http://dbpedia.org/resource/Philadelphia_Blazers", "http://dbpedia.org/resource/Wembley_Monarchs", "http://dbpedia.org/resource/Wembley_Lions", "http://dbpedia.org/resource/Atlanta_Flames", "http://dbpedia.org/resource/St.Louis_Blues", "http://dbpedia.org/resource/Metallurg_Magnitogorsk", "http://dbpedia.org/resource/Sokil_Kyiv", "http://dbpedia.org/resource/Ak_Bars_Kazan", "http://dbpedia.org/resource/Jokerit", "http://dbpedia.org/resource/Krylya_Sovetov_Moscow", "http://dbpedia.org/resource/HC_Ambri-Piotta", "http://dbpedia.org/resource/HC_Khimik_Voskresensk", "http://dbpedia.org/resource/Klagenfurt_AC", "SKA Kalinin", "http://dbpedia.org/resource/Springfield_Indians", "http://dbpedia.org/resource/Chicago_Wolves", "IHL", "AHL", "http://dbpedia.org/resource/EC_Red_Bull_Salzburg", "http://dbpedia.org/resource/Vancouver_Millionaires", "http://dbpedia.org/resource/Pittsburgh_Pirates_(NHL)", "http://dbpedia.org/resource/Montreal_Wanderers", "http://dbpedia.org/resource/Toronto_Arenas", "http://dbpedia.org/resource/Toronto_Blueshirts", "http://dbpedia.org/resource/Toronto_Shamrocks", "http://dbpedia.org/resource/Duluth_Hornets", "http://dbpedia.org/resource/Kitchener_Flying_Dutchmen", "http://dbpedia.org/resource/Kitchener_Millionaires", "NHA", "PCHA", "AHA", "CPHL", "http://dbpedia.org/resource/Regina_Capitals", "http://dbpedia.org/resource/Edmonton_Eskimos_(ice_hockey)", "http://dbpedia.org/resource/Oakland_Seals", "http://dbpedia.org/resource/Val_Pusteria_Wolves", "http://dbpedia.org/resource/Nippon_Paper_Cranes", "http://dbpedia.org/resource/EC_VSV", "http://dbpedia.org/resource/\u00d6rebro_HK", "http://dbpedia.org/resource/Victoria_Cougars", "http://dbpedia.org/resource/Seattle_Metropolitans", "http://dbpedia.org/resource/Calgary_Tigers", "http://dbpedia.org/resource/Detroit_Falcons_(NHL)", "http://dbpedia.org/resource/Victoria_Aristocrats", "http://dbpedia.org/resource/New_Haven_Eagles", "http://dbpedia.org/resource/Pacific_Coast_Hockey_League", "http://dbpedia.org/resource/Seattle_Seahawks_(ice_hockey)", "http://dbpedia.org/resource/Boston_Cubs", "CAHL", "IAHL", "PCHL", "http://dbpedia.org/resource/Indianapolis_Racers", "http://dbpedia.org/resource/New_England_Whalers", "http://dbpedia.org/resource/New_York_Golden_Blades", "Philadelphia Flyers", "http://dbpedia.org/resource/Toronto_St._Pats", "http://dbpedia.org/resource/Vaasan_Sport", "http://dbpedia.org/resource/HIFK_(ice_hockey)", "http://dbpedia.org/resource/HPK", "http://dbpedia.org/resource/SaiPa", "http://dbpedia.org/resource/Odense_Bulldogs", "http://dbpedia.org/resource/Graz_99ers", "http://dbpedia.org/resource/Maine_Mariners_(ECHL)", "http://dbpedia.org/resource/Ilves", "http://dbpedia.org/resource/Detroit_Falcons_(hockey)", "Pittsburgh Pirates", "Pittsburgh Shamrocks", "Toronto Maple Leafs", "Philadelphia Quakers", "Syracuse Stars", "Detroit Cougars", "http://dbpedia.org/resource/Modo_Hockey", "HIFK", "Los Angeles Kings", "SM-liiga", "Schwenninger Wild Wings", "\u00c4ss\u00e4t", "DEL", "Krefeld Pinguine", "http://dbpedia.org/resource/Tacoma_Rockets", "http://dbpedia.org/resource/Seattle_Bombers", "http://dbpedia.org/resource/Ottawa_Nationals", "http://dbpedia.org/resource/Birmingham_Bulls_(WHA)", "http://dbpedia.org/resource/Toronto_Toros", "WHA", "http://dbpedia.org/resource/Minnesota_Fighting_Saints", "http://dbpedia.org/resource/Calgary_Cowboys", "http://dbpedia.org/resource/Cleveland_Crusaders", "http://dbpedia.org/resource/Montreal_Voyageurs", "http://dbpedia.org/resource/San_Francisco_Seals_(hockey)", "http://dbpedia.org/resource/Springfield_Kings", "WHL", "San Diego Mariners", "http://dbpedia.org/resource/HC_Fribourg-Gott\u00e9ron", "http://dbpedia.org/resource/Winnipeg_61st_Battalion", "http://dbpedia.org/resource/EHC_Black_Wings_Linz", "http://dbpedia.org/resource/SCL_Tigers", "http://dbpedia.org/resource/ERC_Ingolstadt", "http://dbpedia.org/resource/Brooklyn_Americans", "Chicago Black Hawks", "http://dbpedia.org/resource/Atlanta_Thrashers", "http://dbpedia.org/resource/SC_Bern", "http://dbpedia.org/resource/HC_Bolzano", "http://dbpedia.org/resource/SC_Riessersee", "http://dbpedia.org/resource/K\u00f6lner_Haie", "http://dbpedia.org/resource/GKS_Tychy", "http://dbpedia.org/resource/Kiekko-Espoo", "Chicago Blackhawks", "Ottawa Senators", "http://dbpedia.org/resource/Admiral_Vladivostok", "http://dbpedia.org/resource/Lausanne_HC", "http://dbpedia.org/resource/Duna\u00fajv\u00e1rosi_Ac\u00e9lbik\u00e1k", "http://dbpedia.org/resource/Kunlun_Red_Star", "http://dbpedia.org/resource/DVTK_Jegesmedv\u00e9k", "http://dbpedia.org/resource/HC_Neftekhimik_Nizhnekamsk", "http://dbpedia.org/resource/HC_Slovan_Bratislava", "http://dbpedia.org/resource/KHL_Medve\u0161\u010dak_Zagreb", "http://dbpedia.org/resource/Sheffield_Steelers", "http://dbpedia.org/resource/HC_Atlant_Moscow_Oblast", "http://dbpedia.org/resource/K\u00e4rp\u00e4t", "http://dbpedia.org/resource/Houston_Aeros_(WHA)", "http://dbpedia.org/resource/Pittsburgh_Hornets", "http://dbpedia.org/resource/Innsbrucker_EV", "http://dbpedia.org/resource/HC_TWK_Innsbruck", "http://dbpedia.org/resource/EHC_Chur", "http://dbpedia.org/resource/EHC_Lustenau", "http://dbpedia.org/resource/Newcastle_Vipers", "http://dbpedia.org/resource/Vityaz_Chekhov", "http://dbpedia.org/resource/HC_Spartak_Moscow", "http://dbpedia.org/resource/KHL_Medve\u0161\u010dak", "http://dbpedia.org/resource/S\u00f6dert\u00e4lje_SK", "http://dbpedia.org/resource/Mora_IK", "http://dbpedia.org/resource/KooKoo_(Liiga)", "Espoo Blues", "Nashville Predators", "Mighty Ducks of Anaheim", "http://dbpedia.org/resource/Augsburger_Panther", "http://dbpedia.org/resource/Frankfurt_Lions", "http://dbpedia.org/resource/Nottingham_Panthers", "Calgary Flames", "Vancouver Canucks", "http://dbpedia.org/resource/New_Haven_Nighthawks", "http://dbpedia.org/resource/Buffalo_Bisons_(AHL)", "St. Louis Blues", "http://dbpedia.org/resource/AIK_IF", "http://dbpedia.org/resource/Coventry_Blaze", "http://dbpedia.org/resource/Lahti_Pelicans", "http://dbpedia.org/resource/Boxers_de_Bordeaux", "http://dbpedia.org/resource/EC_KAC", "http://dbpedia.org/resource/HC_Donbass", "Colorado Avalanche", "http://dbpedia.org/resource/HC_Salzburg", "http://dbpedia.org/resource/Boston_Olympics", "http://dbpedia.org/resource/Minneapolis_Millers_(AHA)", "http://dbpedia.org/resource/Pittsburgh_Shamrocks", "http://dbpedia.org/resource/Tulsa_Oilers", "http://dbpedia.org/resource/Johnstown_Blue_Birds", "http://dbpedia.org/resource/Cleveland_Falcons", "http://dbpedia.org/resource/St._Paul_Saints_(AHA)", "EHL", "http://dbpedia.org/resource/Hamilton_Tigers", "http://dbpedia.org/resource/Maine_Mariners_(AHL)", "http://dbpedia.org/resource/HC_Milano", "http://dbpedia.org/resource/HC_Alleghe", "Italy", "http://dbpedia.org/resource/Chicago_Cougars", "http://dbpedia.org/resource/Toronto_St._Patricks", "http://dbpedia.org/resource/Vancouver_Blazers", "http://dbpedia.org/resource/HC_Sparta_Praha", "New York Americans", "http://dbpedia.org/resource/Ratingen_Lions", "http://dbpedia.org/resource/HC_Gherd\u00ebina", "http://dbpedia.org/resource/F\u00e4rjestad_BK", "http://dbpedia.org/resource/Link\u00f6ping_HC", "http://dbpedia.org/resource/Gen\u00e8ve-Servette_HC", "http://dbpedia.org/resource/Schwenninger_Wild_Wings", "http://dbpedia.org/resource/HC_Sibir_Novosibirsk", "http://dbpedia.org/resource/Krefeld_Pinguine", "http://dbpedia.org/resource/Vienna_Capitals", "http://dbpedia.org/resource/V\u00e4xj\u00f6_Lakers", "http://dbpedia.org/resource/HC_Vityaz", "http://dbpedia.org/resource/HC_Plze\u0148_1929", "http://dbpedia.org/resource/HK_Nitra", "http://dbpedia.org/resource/HC_Dinamo_Minsk", "KHL", "Tipos extraliga", "http://dbpedia.org/resource/Utah_Grizzlies", "http://dbpedia.org/resource/San_Diego_Gulls_(1990\u20131995)", "http://dbpedia.org/resource/Houston_Aeros_(1994\u20132013)", "http://dbpedia.org/resource/Manitoba_Moose", "http://dbpedia.org/resource/N\u00fcrnberg_Ice_Tigers", "http://dbpedia.org/resource/Traktor_Chelyabinsk", "http://dbpedia.org/resource/HK_Riga_2000", "http://dbpedia.org/resource/Salavat_Yulaev_Ufa", "Ak Bars Kazan", "http://dbpedia.org/resource/Link\u00f6pings_HC", "Pittsburgh Penguins", "http://dbpedia.org/resource/Phoenix_Roadrunners_(WHA)", "http://dbpedia.org/resource/Eisb\u00e4ren_Berlin", "http://dbpedia.org/resource/Belfast_Giants", "http://dbpedia.org/resource/Espoo_Blues", "http://dbpedia.org/resource/HC_Kladno", "http://dbpedia.org/resource/HC_Kometa_Brno", "http://dbpedia.org/resource/HC_\u0160koda_Plze\u0148", "http://dbpedia.org/resource/Saskatoon_Crescents", "http://dbpedia.org/resource/F\u00fcchse_Duisburg", "Hamilton Tigers", "Toronto Dentals", "http://dbpedia.org/resource/California_Seals", "http://dbpedia.org/resource/Atlant_Moscow_Oblast", "http://dbpedia.org/resource/EHC_Biel", "http://dbpedia.org/resource/Scorpions_de_Mulhouse", "Atlanta Thrashers", "Florida Panthers", "San Jose Sharks", "http://dbpedia.org/resource/HC_Asiago", "Serie A", "http://dbpedia.org/resource/Toronto_Granites", "Montreal Maroons", "http://dbpedia.org/resource/Blues_(Espoo)", "http://dbpedia.org/resource/ZSC_Lions", "Colorado Rockies", "Montreal Canadiens", "http://dbpedia.org/resource/Manchester_Storm_(1995\u20132002)", "http://dbpedia.org/resource/VEU_Feldkirch", "http://dbpedia.org/resource/Brandon_Wheat_Kings", "http://dbpedia.org/resource/Adirondack_Red_Wings", "http://dbpedia.org/resource/Moncton_Golden_Flames", "http://dbpedia.org/resource/Kamloops_Junior_Oilers", "http://dbpedia.org/resource/New_Westminster_Bruins", "http://dbpedia.org/resource/HC_Merano", "Cleveland Crusaders", "http://dbpedia.org/resource/Portland_Rosebuds_(ice_hockey)", "Maine Mariners", "Peoria Rivermen", "Fredericton Express", "http://dbpedia.org/resource/HC_TPS", "http://dbpedia.org/resource/Spokane_Canaries", "http://dbpedia.org/resource/Lule\u00e5_HF", "NLA", "EBEL", "http://dbpedia.org/resource/JYP_Jyv\u00e4skyl\u00e4", "http://dbpedia.org/resource/EHC_Basel", "http://dbpedia.org/resource/Bolzano_HC", "http://dbpedia.org/resource/HC_Litv\u00ednov", "http://dbpedia.org/resource/HC_Devils_Milano", "http://dbpedia.org/resource/HC_Meran", "http://dbpedia.org/resource/HC_MVD", "http://dbpedia.org/resource/Yugra_Khanty-Mansiysk", "http://dbpedia.org/resource/Syracuse_Stars_(ice_hockey)", "http://dbpedia.org/resource/Buffalo_Bisons_(IHL)", "http://dbpedia.org/resource/Boston_Bruin_Cubs", "Buffalo Sabres", "http://dbpedia.org/resource/EHC_Wolfsburg", "http://dbpedia.org/resource/HC_Pardubice", "http://dbpedia.org/resource/KLH_Chomutov", "http://dbpedia.org/resource/Frisk_Asker_Ishockey", "WHA/NHL", "http://dbpedia.org/resource/Binghamton_Whalers", "http://dbpedia.org/resource/Detroit_Cougars_(NHL)", "http://dbpedia.org/resource/Cleveland_Barons_(1937\u20131973)", "IAHL/AHL", "http://dbpedia.org/resource/San_Diego_Mariners", "http://dbpedia.org/resource/Windsor_Bulldogs", "OHASr", "http://dbpedia.org/resource/Seibu_Prince_Rabbits", "http://dbpedia.org/resource/Minnesota_Golden_Gophers_men's_ice_hockey", "http://dbpedia.org/resource/Straubing_Tigers", "http://dbpedia.org/resource/Skellefte\u00e5_AIK", "http://dbpedia.org/resource/Tappara_Tampere", "http://dbpedia.org/resource/Leksands_IF", "http://dbpedia.org/resource/Br\u00fbleurs_de_Loups", "http://dbpedia.org/resource/Herning_Blue_Fox", "http://dbpedia.org/resource/KS_Cracovia_(ice_hockey)", "http://dbpedia.org/resource/Orli_Znojmo", "http://dbpedia.org/resource/HC_Vitkovice", "http://dbpedia.org/resource/Sportiva_Hockey_Club_Fassa", "http://dbpedia.org/resource/Saskatoon_Sheiks", "Oakland Sheiks", "http://dbpedia.org/resource/HK_Acroni_Jesenice", "http://dbpedia.org/resource/HDD_Olimpija_Ljubljana", "http://dbpedia.org/resource/Innsbruck_EV", "New England Whalers", "http://dbpedia.org/resource/HC_V\u00edtkovice_Ridera", "http://dbpedia.org/resource/Providence_Reds", "http://dbpedia.org/resource/Indianapolis_Capitals", "http://dbpedia.org/resource/Detroit_Olympics", "http://dbpedia.org/resource/Clinton_Comets", "http://dbpedia.org/resource/Portland_Buckaroos", "http://dbpedia.org/resource/St._Louis_Flyers", "http://dbpedia.org/resource/Cleveland_Barons_(1937-73)", "http://dbpedia.org/resource/Malm\u00f6_IF", "http://dbpedia.org/resource/Renfrew_Hockey_Club", "Newark Bulldogs", "http://dbpedia.org/resource/Hamilton_Tigers_(ice_hockey)", "http://dbpedia.org/resource/Grand_Rapids_Rockets", "http://dbpedia.org/resource/Chatham_Maroons", "http://dbpedia.org/resource/Cleveland_Barons_(1937\u201373)", "http://dbpedia.org/resource/Washington_Lions", "http://dbpedia.org/resource/Winnipeg_Jets_(1972-96)", "http://dbpedia.org/resource/Los_Angeles_Sharks", "http://dbpedia.org/resource/Renfrew_Creamery_Kings", "http://dbpedia.org/resource/Portage_Lakes_Hockey_Club", "http://dbpedia.org/resource/GKS_Tychy_(ice_hockey)", "http://dbpedia.org/resource/Podhale_Nowy_Targ", "http://dbpedia.org/resource/GKS_Katowice_(ice_hockey)", "http://dbpedia.org/resource/EHC_Kloten", "http://dbpedia.org/resource/Oulun_K\u00e4rp\u00e4t", "SEL", "http://dbpedia.org/resource/Cape_Breton_Oilers", "http://dbpedia.org/resource/Erie_Blades", "http://dbpedia.org/resource/Kassel_Huskies", "http://dbpedia.org/resource/ESV_Kaufbeuren", "", "http://dbpedia.org/resource/SC_Rapperswil-Jona", "http://dbpedia.org/resource/Fr\u00f6lunda_HC", "Brooklyn Americans", "http://dbpedia.org/resource/Brantford_Smoke", "http://dbpedia.org/resource/HC_Milano_Saima", "http://dbpedia.org/resource/Ratinger_L\u00f6wen", "http://dbpedia.org/resource/Star_Bulls_Rosenheim", "http://dbpedia.org/resource/TuS_Geretsried", "Anaheim Ducks", "Phoenix Coyotes", "'''Birmingham Bulls", "'''WHA", "http://dbpedia.org/resource/Toronto_Balmy_Beach_Beachers", "http://dbpedia.org/resource/Hannover_Indians", "http://dbpedia.org/resource/HC_Dukla_Tren\u010d\u00edn", "http://dbpedia.org/resource/Dornbirner_EC", "http://dbpedia.org/resource/HC_Ambr\u00ec-Piotta", "http://dbpedia.org/resource/HC_B\u00edl\u00ed_Tyg\u0159i_Liberec", "http://dbpedia.org/resource/HC_Ko\u0161ice", "http://dbpedia.org/resource/Frederikshavn_White_Hawks"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Stockholm> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Newspaper>}"}, "answers": ["http://dbpedia.org/resource/Dagens_Nyheter", "http://dbpedia.org/resource/Dagsposten_(Swedish_newspaper)", "http://dbpedia.org/resource/Stockholms-Tidningen", "http://dbpedia.org/resource/Post-_och_Inrikes_Tidningar", "http://dbpedia.org/resource/Aftonbladet", "http://dbpedia.org/resource/Stockholms_Dagblad", "http://dbpedia.org/resource/Flamman", "http://dbpedia.org/resource/Ny_Illustrerad_Tidning", "http://dbpedia.org/resource/Dagen_(1896-1920)", "http://dbpedia.org/resource/Expressen", "http://dbpedia.org/resource/Nationen_(weekly_newspaper)", "http://dbpedia.org/resource/Metro_(Swedish_newspaper)"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/ground> <http://dbpedia.org/resource/Fort_Lauderdale,_Florida> . ?x <http://dbpedia.org/property/presenter> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Purnima_Banerjee> <http://dbpedia.org/property/party> ?uri } "}, "answers": ["http://dbpedia.org/resource/Indian_National_Congress"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ganz_UV> . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/GZA>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/producer> <http://dbpedia.org/resource/Larry_J._Franco> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": ["4"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Nihoa> <http://dbpedia.org/property/nearestCity> ?uri . <http://dbpedia.org/resource/Jim_Brady_(quarterback)> <http://dbpedia.org/ontology/deathPlace> ?uri} "}, "answers": ["http://dbpedia.org/resource/Hawaii"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/computingPlatform> <http://dbpedia.org/resource/Commodore_64> . ?x <http://dbpedia.org/property/genre> ?uri . }"}, "answers": ["1693"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Steven_Palazzo> <http://dbpedia.org/property/battles> ?uri } "}, "answers": ["http://dbpedia.org/resource/Gulf_War"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/United_States> . ?x <http://dbpedia.org/property/discipline> ?uri . }"}, "answers": ["Public health, Medicine", "African-American literature and African-American culture", "http://dbpedia.org/resource/Archaeology", "http://dbpedia.org/resource/Prehistory", "http://dbpedia.org/resource/Africa", "http://dbpedia.org/resource/Chemistry", "http://dbpedia.org/resource/Law", "Biology", "http://dbpedia.org/resource/Biophysics", "http://dbpedia.org/resource/Biochemistry", "http://dbpedia.org/resource/Botany", "http://dbpedia.org/resource/Library_Science", "http://dbpedia.org/resource/Sociology", "http://dbpedia.org/resource/Education", "http://dbpedia.org/resource/Literary_magazine", "http://dbpedia.org/resource/Literary_journal", "http://dbpedia.org/resource/Engineering", "http://dbpedia.org/resource/Jurisprudence", "http://dbpedia.org/resource/Social_justice", "http://dbpedia.org/resource/Economics", "http://dbpedia.org/resource/Anthropology", "http://dbpedia.org/resource/Geology", "http://dbpedia.org/resource/Oceanography", "http://dbpedia.org/resource/Philosophy", "http://dbpedia.org/resource/Computer_Science", "http://dbpedia.org/resource/New_Testament", "http://dbpedia.org/resource/Water_resources", "http://dbpedia.org/resource/Political_science", "http://dbpedia.org/resource/Mathematics_education", "http://dbpedia.org/resource/Psychoanalysis", "http://dbpedia.org/resource/Cardiology", "http://dbpedia.org/resource/Cardiothoracic_surgery", "http://dbpedia.org/resource/Pulmonary_disease", "http://dbpedia.org/resource/Ophthalmology", "Process of synthesis in organic chemistry", "http://dbpedia.org/resource/Neurology", "http://dbpedia.org/resource/Gender_studies", "Mathematics", "http://dbpedia.org/resource/Semiotics", "http://dbpedia.org/resource/Poetry", "http://dbpedia.org/resource/Photography", "http://dbpedia.org/resource/International_relations", "http://dbpedia.org/resource/Culture", "http://dbpedia.org/resource/Literature", "http://dbpedia.org/resource/Fiction", "http://dbpedia.org/resource/Nonfiction", "http://dbpedia.org/resource/Social_issues", "Educational psychology and school psychology", "http://dbpedia.org/resource/Sociologist", "http://dbpedia.org/resource/Law_review", "http://dbpedia.org/resource/Game_theory", "http://dbpedia.org/resource/Genetics", "http://dbpedia.org/resource/Computer_science", "Demography and Social epidemiology", "http://dbpedia.org/resource/Medicine", "http://dbpedia.org/resource/Biogeography", "http://dbpedia.org/resource/Biography", "http://dbpedia.org/resource/Biomedicine", "Molecular structure of organisms; drug action", "Literary magazine", "http://dbpedia.org/resource/Chirality_(chemistry)", "http://dbpedia.org/resource/Library_and_information_science", "http://dbpedia.org/resource/Molecular_biology", "Feminist speculative fiction", "http://dbpedia.org/resource/History", "http://dbpedia.org/resource/History_of_philosophy", "http://dbpedia.org/resource/Oriental_studies", "http://dbpedia.org/resource/Mycology", "http://dbpedia.org/resource/American_studies", "http://dbpedia.org/resource/Art_history", "http://dbpedia.org/resource/Art", "http://dbpedia.org/resource/Art_criticism", "Literature", "http://dbpedia.org/resource/Meteorology", "Meteorology and Climatology", "http://dbpedia.org/resource/Pulmonology", "http://dbpedia.org/resource/Neuroscience", "http://dbpedia.org/resource/Virology", "http://dbpedia.org/resource/Hematology", "http://dbpedia.org/resource/Oncology", "http://dbpedia.org/resource/Pediatry", "http://dbpedia.org/resource/Pacific_studies", "http://dbpedia.org/resource/International_law", "http://dbpedia.org/resource/Cultural_studies", "http://dbpedia.org/resource/Critical_theory", "http://dbpedia.org/resource/Comparative_law", "http://dbpedia.org/resource/Admiralty_law", "http://dbpedia.org/resource/Civil_law_(legal_system)", "http://dbpedia.org/resource/Labor_Studies", "http://dbpedia.org/resource/Language_acquisition", "http://dbpedia.org/resource/Psychology", "English literature", "http://dbpedia.org/resource/Cognitive_neuroscience", "http://dbpedia.org/resource/Psychophysiology", "http://dbpedia.org/resource/Pathology", "http://dbpedia.org/resource/Epidemiology_of_cancer", "http://dbpedia.org/resource/History_of_Christianity", "http://dbpedia.org/resource/Theology", "http://dbpedia.org/resource/Biblical_studies", "http://dbpedia.org/resource/Endocrinology", "Perception and motor skills", "http://dbpedia.org/resource/Religious_studies", "Philosophy", "Greek archaeology, art, epigraphy, history, and literature", "http://dbpedia.org/resource/Planetary_science", "http://dbpedia.org/resource/Immunology", "http://dbpedia.org/resource/Business", "Motorcycling culture", "http://dbpedia.org/resource/Linguistics", "History", "http://dbpedia.org/resource/Political_Science", "http://dbpedia.org/resource/Labor_movement", "http://dbpedia.org/resource/Industrial_relations", "http://dbpedia.org/resource/Worker_rights", "http://dbpedia.org/resource/Pre-hospital_emergency_medicine", "http://dbpedia.org/resource/Child_psychiatry", "Rheumatology", "http://dbpedia.org/resource/History_of_education", "http://dbpedia.org/resource/Pharmacy_practice", "http://dbpedia.org/resource/Pharmacy", "http://dbpedia.org/resource/Physiology", "http://dbpedia.org/resource/Radiology", "Geology", "Physics", "Physiology", "http://dbpedia.org/resource/Chemical_Engineering", "http://dbpedia.org/resource/Physics", "Music", "http://dbpedia.org/resource/Intellectual_property_law", "http://dbpedia.org/resource/Popular_science", "http://dbpedia.org/resource/Social_psychology", "http://dbpedia.org/resource/Environmental_psychology", "http://dbpedia.org/resource/Social_history", "http://dbpedia.org/resource/Political_history", "http://dbpedia.org/resource/Economic_history", "http://dbpedia.org/resource/Gender_roles", "http://dbpedia.org/resource/Social_sciences", "http://dbpedia.org/resource/Latin_American_studies", "http://dbpedia.org/resource/Evolutionary_biology", "http://dbpedia.org/resource/Phylogeny", "http://dbpedia.org/resource/Information_Systems", "http://dbpedia.org/resource/Entomology", "http://dbpedia.org/resource/Animal_law", "http://dbpedia.org/resource/Communication_theory", "http://dbpedia.org/resource/Computer_network", "http://dbpedia.org/resource/Computers", "Communications", "http://dbpedia.org/resource/Men's_studies", "http://dbpedia.org/resource/Foreign_affairs", "http://dbpedia.org/resource/Organic_chemistry", "http://dbpedia.org/resource/Cyberpsychology", "http://dbpedia.org/resource/Human-computer_interaction", "http://dbpedia.org/resource/Ethnology", "Psychology, applied behavior analysis", "http://dbpedia.org/resource/Old_Testament", "http://dbpedia.org/resource/Analytical_Chemistry", "http://dbpedia.org/resource/Food_science", "http://dbpedia.org/resource/Surgery", "http://dbpedia.org/resource/Hydrology", "Economics", "http://dbpedia.org/resource/Pharmacology", "http://dbpedia.org/resource/Therapeutics", "http://dbpedia.org/resource/Statistics", "Psychoanalysis", "Law", "http://dbpedia.org/resource/Constitutional_law", "Laser and photonics", "http://dbpedia.org/resource/Mathematics", "Sociologist", "http://dbpedia.org/resource/Consciousness", "http://dbpedia.org/resource/Digital_typography", "http://dbpedia.org/resource/United_States_labor_law", "http://dbpedia.org/resource/Library_science", "http://dbpedia.org/resource/Media_studies", "http://dbpedia.org/resource/Environmental_law", "http://dbpedia.org/resource/Geriatrics", "http://dbpedia.org/resource/Gerontology", "http://dbpedia.org/resource/Computer_clustering", "http://dbpedia.org/resource/East_Asian_studies", "http://dbpedia.org/resource/Obstetrics", "http://dbpedia.org/resource/Gynaecology", "http://dbpedia.org/resource/Science_fiction_studies", "http://dbpedia.org/resource/Recreational_mathematics", "http://dbpedia.org/resource/Visual_perception", "http://dbpedia.org/resource/Primatology", "http://dbpedia.org/resource/Orthodontics", "http://dbpedia.org/resource/Southern_literature", "http://dbpedia.org/resource/Ornithology", "Science humor", "http://dbpedia.org/resource/Science", "Cultural and ethnic studies", "http://dbpedia.org/resource/Mormon_studies", "Law and feminism", "http://dbpedia.org/resource/Hebrew", "http://dbpedia.org/resource/Periodical", "Entomology", "Electrical engineering, Computer science and Communications", "http://dbpedia.org/resource/Machine_learning", "Shakespearean scholar", "Political Scientist", "http://dbpedia.org/resource/Cross-cultural_studies", "http://dbpedia.org/resource/English_literature", "http://dbpedia.org/resource/Information_science", "http://dbpedia.org/resource/Missiology", "http://dbpedia.org/resource/Middle_Eastern_studies", "http://dbpedia.org/resource/Plant_Sciences", "http://dbpedia.org/resource/Sports_medicine", "http://dbpedia.org/resource/Mathematical_physics", "http://dbpedia.org/resource/Psychiatry", "psychology and statistics", "http://dbpedia.org/resource/Systematics", "http://dbpedia.org/resource/American_literature", "http://dbpedia.org/resource/Human_resource_management", "International law", "http://dbpedia.org/resource/Armenian_studies", "http://dbpedia.org/resource/Chess", "http://dbpedia.org/resource/Comparative_literature", "http://dbpedia.org/resource/Cryptography", "http://dbpedia.org/resource/Commercial_law", "http://dbpedia.org/resource/Approximation_theory", "Atmospheric sciences and Physical oceanography", "http://dbpedia.org/resource/Cell_biology", "http://dbpedia.org/resource/Biotechnology", "http://dbpedia.org/resource/Psychotherapy_&_Counseling", "http://dbpedia.org/resource/Environmental_engineering", "http://dbpedia.org/resource/Development_studies", "http://dbpedia.org/resource/International_development", "http://dbpedia.org/resource/Neonatology", "http://dbpedia.org/resource/Women's_studies", "http://dbpedia.org/resource/Paleontology", "http://dbpedia.org/resource/Public_policy", "http://dbpedia.org/resource/Finance", "http://dbpedia.org/resource/Investment", "http://dbpedia.org/resource/Urban_studies", "http://dbpedia.org/resource/Interventional_Radiology", "http://dbpedia.org/resource/Family_medicine", "Literary journal", "http://dbpedia.org/resource/Korean_studies", "French", "http://dbpedia.org/resource/Classics", "Science policy", "Byzantine art and medieval art", "http://dbpedia.org/resource/Ecology", "http://dbpedia.org/resource/Economic_anthropology", "English language arts for middle and high school", "http://dbpedia.org/resource/Evolutionary_Biology", "http://dbpedia.org/resource/Maritime_law", "http://dbpedia.org/resource/France", "http://dbpedia.org/resource/Humanities", "Culture", "Chemical biology", "http://dbpedia.org/resource/Microbiology", "Area studies on the Southern United States", "http://dbpedia.org/resource/History_of_Pennsylvania", "http://dbpedia.org/resource/Sexualization", "http://dbpedia.org/resource/Chemical_physics", "http://dbpedia.org/resource/Physical_Chemistry", "http://dbpedia.org/resource/Politics", "http://dbpedia.org/resource/Violence", "http://dbpedia.org/resource/Victimisation", "http://dbpedia.org/resource/Music", "http://dbpedia.org/resource/European_law", "Sociology", "http://dbpedia.org/resource/Multidisciplinary_approach", "Women and the media", "Ophthalmology"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/voices> <http://dbpedia.org/resource/Mona_Marshall> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": ["http://dbpedia.org/resource/Rambo:_The_Force_of_Freedom", "http://dbpedia.org/resource/The_Glo_Friends", "http://dbpedia.org/resource/Eagle_Riders", "http://dbpedia.org/resource/Kissyfur"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/cinematography> <http://dbpedia.org/resource/Gregg_Toland> . ?uri <http://dbpedia.org/property/musicComposer> <http://dbpedia.org/resource/Bernard_Herrmann> . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/hometown> <http://dbpedia.org/resource/Cancun_conference_(disambiguation)> . ?x <http://dbpedia.org/property/cities> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/format> <http://dbpedia.org/resource/5.1_surround_sound> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/He's_a_Liar> <http://dbpedia.org/property/subsequentWork> ?x . ?x <http://dbpedia.org/ontology/producer> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/creator> <http://dbpedia.org/resource/Simon_Fuller> . ?uri <http://dbpedia.org/ontology/presenter> <http://dbpedia.org/resource/Ryan_Seacrest> } "}, "answers": ["http://dbpedia.org/resource/American_Idol", "http://dbpedia.org/resource/American_Juniors"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/engine> <http://dbpedia.org/resource/V8_engine> . ?x <http://dbpedia.org/ontology/related> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/opponent> <http://dbpedia.org/resource/Dwight_D._Eisenhower> . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/nonFictionSubject> <http://dbpedia.org/resource/Thud!> . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Harlan_Mathews> <http://dbpedia.org/property/education> ?uri . <http://dbpedia.org/resource/Richard_Merrill_Atkinson> <http://dbpedia.org/ontology/almaMater> ?uri} "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/architect> <http://dbpedia.org/resource/Pyusawhti> . ?x <http://dbpedia.org/property/building> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/parent> <http://dbpedia.org/resource/Sony_Financial> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Bank>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cooper_Mountain_Vineyards> <http://dbpedia.org/property/locationCountry> ?uri . <http://dbpedia.org/resource/Mount_Bachelor_ski_area> <http://dbpedia.org/ontology/locatedInArea> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/tenant> <http://dbpedia.org/resource/Mercedes-Benz_Superdome> . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Alfred_Blalock> <http://dbpedia.org/ontology/affiliation> ?x . ?x <http://dbpedia.org/property/hospital> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/citizenship> <http://dbpedia.org/resource/United_States> . ?x <http://dbpedia.org/ontology/deathCause> ?uri . }"}, "answers": ["2"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/league> <http://dbpedia.org/resource/Czech_Extraliga> . ?x <http://dbpedia.org/ontology/formerTeam> ?uri . }"}, "answers": ["1017"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/burries> <http://dbpedia.org/resource/New_York> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Artist>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Alpine_skiing_at_the_1964_Winter_Olympics_\u2013_Men's_slalom> <http://dbpedia.org/property/bronzeMedalist> ?uri } "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Mouse_Morris> <http://dbpedia.org/property/race> ?uri } "}, "answers": ["http://dbpedia.org/resource/Queen_Mother_Champion_Chase", "http://dbpedia.org/resource/Supreme_Novices'_Hurdle", "http://dbpedia.org/resource/Neptune_Investment_Management_Novices'_Hurdle", "http://dbpedia.org/resource/Irish_Grand_National", "http://dbpedia.org/resource/Cheltenham_Gold_Cup", "http://dbpedia.org/resource/World_Hurdle", "http://dbpedia.org/resource/Johnny_Henderson_Grand_Annual_Chase", "http://dbpedia.org/resource/The_Grand_National", "http://dbpedia.org/resource/Christie's_Foxhunter_Chase"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/South_Park:_The_Stick_of_Truth> <http://dbpedia.org/ontology/writer> ?uri } "}, "answers": ["http://dbpedia.org/resource/Matt_Stone", "http://dbpedia.org/resource/Trey_Parker"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/type> <http://dbpedia.org/resource/Typically_Tropical> . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/league> <http://dbpedia.org/resource/NCAA_Division_I_Football_Bowl_Subdivision> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/University>}"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/locationCity> <http://dbpedia.org/resource/Texas> } "}, "answers": ["60"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/William_Deane> <http://dbpedia.org/property/primeminister> ?uri . <http://dbpedia.org/resource/Mark_Latham> <http://dbpedia.org/ontology/type> ?uri} "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/campus> <http://dbpedia.org/resource/Metro_Manila> . ?x <http://dbpedia.org/property/team> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cheasty_Boulevard_South> <http://dbpedia.org/ontology/owner> ?uri . <http://dbpedia.org/resource/King_County,_Washington> <http://dbpedia.org/property/countySeat> ?uri} "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/TranStar_Airlines> <http://dbpedia.org/property/destinations> ?x . ?x <http://dbpedia.org/ontology/largestCity> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Houston", "http://dbpedia.org/resource/Los_Angeles", "http://dbpedia.org/resource/Jacksonville,_Florida", "http://dbpedia.org/resource/Las_Vegas", "http://dbpedia.org/resource/New_Orleans"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/writers> <http://dbpedia.org/resource/Neil_Gaiman> . ?x <http://dbpedia.org/ontology/notableWork> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/youthclubs> <http://dbpedia.org/resource/FC_Barcelona> . }"}, "answers": ["http://dbpedia.org/resource/Andreu_Font\u00e0s", "http://dbpedia.org/resource/Andreu_Guerao", "http://dbpedia.org/resource/Andreu_Ramos", "http://dbpedia.org/resource/Andr\u00e9_Onana", "http://dbpedia.org/resource/Andr\u00e9s_Iniesta", "http://dbpedia.org/resource/Dami\u00e0_Viader", "http://dbpedia.org/resource/Dani_Erencia", "http://dbpedia.org/resource/Dani_Fern\u00e1ndez_(footballer,_born_1983)", "http://dbpedia.org/resource/Dani_Morer", "http://dbpedia.org/resource/Dani_Pacheco", "http://dbpedia.org/resource/Dani_Tortolero", "http://dbpedia.org/resource/Daniel_C\u00e1rdenas", "http://dbpedia.org/resource/Daniel_L\u00f3pez_(footballer,_born_1992)", "http://dbpedia.org/resource/Daniel_Mej\u00edas", "http://dbpedia.org/resource/Daniel_Toribio", "http://dbpedia.org/resource/David_Babunski", "http://dbpedia.org/resource/David_Bermudo", "http://dbpedia.org/resource/David_Casablanca", "http://dbpedia.org/resource/David_Coromina", "http://dbpedia.org/resource/David_Garc\u00eda_(footballer,_born_1980)", "http://dbpedia.org/resource/David_Junc\u00e0", "http://dbpedia.org/resource/David_Pirri", "http://dbpedia.org/resource/David_S\u00e1nchez_(footballer,_born_1982)", "http://dbpedia.org/resource/David_Zalzman", "http://dbpedia.org/resource/Valery_Fern\u00e1ndez", "http://dbpedia.org/resource/Vicen\u00e7_Mart\u00ednez", "http://dbpedia.org/resource/Vicen\u00e7_Sasot", "http://dbpedia.org/resource/V\u00edctor_Aldana", "http://dbpedia.org/resource/V\u00edctor_Blasco", "http://dbpedia.org/resource/V\u00edctor_Bravo_(footballer)", "http://dbpedia.org/resource/V\u00edctor_Curto", "http://dbpedia.org/resource/V\u00edctor_G\u00f3mez_(footballer)", "http://dbpedia.org/resource/V\u00edctor_Ib\u00e1\u00f1ez", "http://dbpedia.org/resource/V\u00edctor_Rodr\u00edguez_(Spanish_footballer)", "http://dbpedia.org/resource/V\u00edctor_Ruiz_(footballer,_born_1989)", "http://dbpedia.org/resource/V\u00edctor_S\u00e1nchez_(footballer,_born_1987)", "http://dbpedia.org/resource/V\u00edctor_Vald\u00e9s", "http://dbpedia.org/resource/V\u00edctor_V\u00e1zquez_(footballer,_born_1987)", "http://dbpedia.org/resource/V\u00edctor_\u00c1lvarez_(footballer)", "http://dbpedia.org/resource/Walter_Fern\u00e1ndez", "http://dbpedia.org/resource/Didi_(footballer,_born_1985)", "http://dbpedia.org/resource/Diego_Almeida", "http://dbpedia.org/resource/Diego_Capel", "http://dbpedia.org/resource/Diego_G\u00f3mez_(Spanish_footballer)", "http://dbpedia.org/resource/Diego_L\u00f3pez_(footballer,_born_May_2002)", "http://dbpedia.org/resource/Aimar_Moratalla", "http://dbpedia.org/resource/Aitor_Cantalapiedra", "http://dbpedia.org/resource/Akui_N'dekre_Elie_Moises", "http://dbpedia.org/resource/Alain_Ebwelle", "http://dbpedia.org/resource/Alasana_Manneh", "http://dbpedia.org/resource/Albert_Celades", "http://dbpedia.org/resource/Albert_Dalmau", "http://dbpedia.org/resource/Albert_Dorca", "http://dbpedia.org/resource/Albert_Ferrer", "http://dbpedia.org/resource/Albert_Jorquera", "http://dbpedia.org/resource/Albert_Luque", "http://dbpedia.org/resource/Albert_Manteca", "http://dbpedia.org/resource/Albert_Puigdollers", "http://dbpedia.org/resource/Albert_Torras", "http://dbpedia.org/resource/Alberto_Bot\u00eda", "http://dbpedia.org/resource/Alberto_Garc\u00eda_(Spanish_footballer)", "http://dbpedia.org/resource/Alberto_Manga", "http://dbpedia.org/resource/Ale_Pipo", "http://dbpedia.org/resource/Aleix_Vidal", "http://dbpedia.org/resource/Alejandro_Balde", "http://dbpedia.org/resource/Alejandro_Marcos", "http://dbpedia.org/resource/Alejandro_Marqu\u00e9s", "http://dbpedia.org/resource/Alejandro_Viedma", "http://dbpedia.org/resource/Alejo_Indias", "http://dbpedia.org/resource/Alex_Covelo", "http://dbpedia.org/resource/Alex_Zahavi", "http://dbpedia.org/resource/Alexis_Meva", "http://dbpedia.org/resource/Alfi_Conteh-Lacalle", "http://dbpedia.org/resource/Austin_Amer", "http://dbpedia.org/resource/Ayoub_Abou", "http://dbpedia.org/resource/Ben_Lederman", "http://dbpedia.org/resource/Fran_M\u00e9rida", "http://dbpedia.org/resource/Fran_\u00c1lvarez", "http://dbpedia.org/resource/Francesc_Arnau", "http://dbpedia.org/resource/Francisco_Borrego", "http://dbpedia.org/resource/Francisco_Mateo", "http://dbpedia.org/resource/Francisco_Monta\u00f1\u00e9s", "http://dbpedia.org/resource/Francisco_Rufete", "http://dbpedia.org/resource/Franck_Songo'o", "http://dbpedia.org/resource/Franco_Fasciana_(footballer,_born_1990)", "http://dbpedia.org/resource/Frank_Angong", "http://dbpedia.org/resource/Gabri_(footballer,_born_1979)", "http://dbpedia.org/resource/Gabri_Mart\u00ednez", "http://dbpedia.org/resource/Gai_Assulin", "http://dbpedia.org/resource/Garc\u00eda_Castany", "http://dbpedia.org/resource/Garc\u00eda_Pimienta", "http://dbpedia.org/resource/Gavi_(footballer)", "http://dbpedia.org/resource/Ga\u00ebl_Etock", "http://dbpedia.org/resource/Gen\u00eds_Garc\u00eda_Junyent", "http://dbpedia.org/resource/Gen\u00eds_Montolio", "http://dbpedia.org/resource/Haitam_Abaida", "http://dbpedia.org/resource/Haruna_Babangida", "http://dbpedia.org/resource/Salva_(footballer,_born_1961)", "http://dbpedia.org/resource/Salvador_Sadurn\u00ed", "http://dbpedia.org/resource/Samuel_Bay\u00f3n", "http://dbpedia.org/resource/Samuel_Okunowo", "http://dbpedia.org/resource/Sandro_Ram\u00edrez", "http://dbpedia.org/resource/Sandro_Reyes", "http://dbpedia.org/resource/S\u00e1nchez_Jara", "http://dbpedia.org/resource/S\u00edgfrid_Gr\u00e0cia", "http://dbpedia.org/resource/Takefusa_Kubo", "http://dbpedia.org/resource/Wilfrid_Kaptoum", "http://dbpedia.org/resource/Anselmo_Eyegue", "http://dbpedia.org/resource/Ansu_Fati", "http://dbpedia.org/resource/Antoni_Lima", "http://dbpedia.org/resource/Antoni_Torres", "http://dbpedia.org/resource/Antonio_Glauder", "http://dbpedia.org/resource/Antonio_Hidalgo_(footballer,_born_1979)", "http://dbpedia.org/resource/Antonio_Lao", "http://dbpedia.org/resource/Antonio_Pinilla", "http://dbpedia.org/resource/Antonio_Sanabria", "http://dbpedia.org/resource/Antonio_Sola", "http://dbpedia.org/resource/Anwar_Mediero", "http://dbpedia.org/resource/Armand_Ken_Ella", "http://dbpedia.org/resource/Arnau_Mart\u00ednez", "http://dbpedia.org/resource/Arnau_Tenas", "http://dbpedia.org/resource/Emilio_Guti\u00e9rrez_(footballer)", "http://dbpedia.org/resource/Emilio_G\u00f3mez_(footballer)", "http://dbpedia.org/resource/Enric_Franquesa", "http://dbpedia.org/resource/Enric_Vall\u00e8s", "http://dbpedia.org/resource/Erbol_Atabayev", "http://dbpedia.org/resource/Eric_Garc\u00eda_(footballer,_born_2001)", "http://dbpedia.org/resource/Eric_Montes", "http://dbpedia.org/resource/Eric_Reverter", "http://dbpedia.org/resource/Erick_Ferigra", "http://dbpedia.org/resource/Erik_Vardanyan", "http://dbpedia.org/resource/Ernest_Forg\u00e0s", "http://dbpedia.org/resource/Ernesto_Dom\u00ednguez", "http://dbpedia.org/resource/Esteve_Fradera", "http://dbpedia.org/resource/Eugeni_Valderrama", "http://dbpedia.org/resource/Gerard_Autet", "http://dbpedia.org/resource/Gerard_Barri", "http://dbpedia.org/resource/Gerard_Deulofeu", "http://dbpedia.org/resource/Gerard_Fern\u00e1ndez", "http://dbpedia.org/resource/Gerard_L\u00f3pez", "http://dbpedia.org/resource/Gerard_Piqu\u00e9", "http://dbpedia.org/resource/Giovani_dos_Santos", "http://dbpedia.org/resource/Godswill_Ekpolo", "http://dbpedia.org/resource/Goran_Mari\u0107_(footballer)", "http://dbpedia.org/resource/Manuel_Lanzarote", "http://dbpedia.org/resource/Marc_Bartra", "http://dbpedia.org/resource/Marc_Bar\u00f3", "http://dbpedia.org/resource/Marc_Bernaus", "http://dbpedia.org/resource/Marc_Crosas", "http://dbpedia.org/resource/Marc_Cucurella", "http://dbpedia.org/resource/Marc_Fern\u00e1ndez_(footballer)", "http://dbpedia.org/resource/Marc_Gual", "http://dbpedia.org/resource/Marc_Jurado", "http://dbpedia.org/resource/Marc_Mart\u00ednez", "http://dbpedia.org/resource/Marc_Mart\u00ednez_(footballer,_born_1990)", "http://dbpedia.org/resource/Marc_Muniesa", "http://dbpedia.org/resource/Marc_Navarro", "http://dbpedia.org/resource/Marc_Pedraza", "http://dbpedia.org/resource/Marc_Tenas", "http://dbpedia.org/resource/Marc_Valiente", "http://dbpedia.org/resource/Mario_Rosas", "http://dbpedia.org/resource/Mart\u00ed_Filosia", "http://dbpedia.org/resource/Mart\u00ed_Riverola", "http://dbpedia.org/resource/Mart\u00ed_Verg\u00e9s", "http://dbpedia.org/resource/Mart\u00ed_Vil\u00e0", "http://dbpedia.org/resource/Mart\u00edn_Dom\u00ednguez", "http://dbpedia.org/resource/Mart\u00edn_Montoya", "http://dbpedia.org/resource/Pitu_(footballer)", "http://dbpedia.org/resource/Pol_Calvet", "http://dbpedia.org/resource/Pol_Garc\u00eda", "http://dbpedia.org/resource/Pol_Roig\u00e9", "http://dbpedia.org/resource/Tente_S\u00e1nchez", "http://dbpedia.org/resource/Urko_Pardo", "http://dbpedia.org/resource/Brian_Oliv\u00e1n", "http://dbpedia.org/resource/Brian_Pe\u00f1a", "http://dbpedia.org/resource/James_Efmorfidis", "http://dbpedia.org/resource/Jandro_Orellana", "http://dbpedia.org/resource/Jaume_Cu\u00e9llar", "http://dbpedia.org/resource/Jaume_Sobregrau", "http://dbpedia.org/resource/Javi_L\u00f3pez_(footballer,_born_1964)", "http://dbpedia.org/resource/Javi_Martos", "http://dbpedia.org/resource/Javi_Moreno_(footballer,_born_1974)", "http://dbpedia.org/resource/Javi_Puado", "http://dbpedia.org/resource/Javi_Ruiz", "http://dbpedia.org/resource/Javier_Espinosa", "http://dbpedia.org/resource/Javier_Oliete", "http://dbpedia.org/resource/Javito", "http://dbpedia.org/resource/Jean_Marie_Dongou", "http://dbpedia.org/resource/Kays_Ruiz-Atil", "http://dbpedia.org/resource/Keita_Bald\u00e9", "http://dbpedia.org/resource/Kike_Saverio", "http://dbpedia.org/resource/Mateu_Morey", "http://dbpedia.org/resource/Mat\u00edas_Lacava", "http://dbpedia.org/resource/Mauro_Icardi", "http://dbpedia.org/resource/Max_Svensson_(footballer,_born_2001)", "http://dbpedia.org/resource/Maxi_Rol\u00f3n", "http://dbpedia.org/resource/Ram\u00f3n_Calder\u00e9", "http://dbpedia.org/resource/Ram\u00f3n_Mas\u00f3", "http://dbpedia.org/resource/Ram\u00f3n_Montesinos", "http://dbpedia.org/resource/Ra\u00fal_Baena", "http://dbpedia.org/resource/Ra\u00fal_Caballero_(footballer,_born_1978)", "http://dbpedia.org/resource/Ra\u00fal_Moro", "http://dbpedia.org/resource/Niko_Takahashi", "http://dbpedia.org/resource/Jon_Toral", "http://dbpedia.org/resource/Jonathan_Carril", "http://dbpedia.org/resource/Jonathan_dos_Santos", "http://dbpedia.org/resource/Jony_Rodr\u00edguez", "http://dbpedia.org/resource/Jordan_Larsson", "http://dbpedia.org/resource/Jordi_Alba", "http://dbpedia.org/resource/Jordi_Condom", "http://dbpedia.org/resource/Jordi_Cruyff", "http://dbpedia.org/resource/Jordi_Ferr\u00f3n", "http://dbpedia.org/resource/Jordi_Gonzalvo", "http://dbpedia.org/resource/Jordi_G\u00f3mez", "http://dbpedia.org/resource/Jordi_L\u00f3pez_(footballer)", "http://dbpedia.org/resource/Jordi_Masip", "http://dbpedia.org/resource/Jordi_Mas\u00f3_(footballer)", "http://dbpedia.org/resource/Jordi_Mboula", "http://dbpedia.org/resource/Jordi_Ortega", "http://dbpedia.org/resource/Jordi_Quintill\u00e0", "http://dbpedia.org/resource/Jordi_Roca_(footballer)", "http://dbpedia.org/resource/Jordi_Roura", "http://dbpedia.org/resource/Jordi_Vinyals", "http://dbpedia.org/resource/Jordi_Xumetra", "http://dbpedia.org/resource/Jorge_Perona", "http://dbpedia.org/resource/Jorge_Troiteiro", "http://dbpedia.org/resource/Jorge_Vilda", "http://dbpedia.org/resource/Joselu_(footballer,_born_1990)", "http://dbpedia.org/resource/Josep_Maria_Fust\u00e9", "http://dbpedia.org/resource/Josep_Mart\u00ednez", "http://dbpedia.org/resource/Josep_Moratalla", "http://dbpedia.org/resource/Josep_Seguer", "http://dbpedia.org/resource/Josep_Setvalls", "http://dbpedia.org/resource/Josimar_Quintero", "http://dbpedia.org/resource/Josu", "http://dbpedia.org/resource/Jos\u00e9_Antonio_Llamas", "http://dbpedia.org/resource/Jos\u00e9_Aurelio_Su\u00e1rez", "http://dbpedia.org/resource/Jos\u00e9_Berm\u00fadez", "http://dbpedia.org/resource/Jos\u00e9_Casado", "http://dbpedia.org/resource/Jos\u00e9_Manuel_Casado", "http://dbpedia.org/resource/Jos\u00e9_Manuel_Rueda", "http://dbpedia.org/resource/Jos\u00e9_Mars\u00e0", "http://dbpedia.org/resource/Jos\u00e9_Terr\u00f3n_(footballer)", "http://dbpedia.org/resource/Juan_Antonio_Chesa", "http://dbpedia.org/resource/Juan_Antonio_Osado", "http://dbpedia.org/resource/Juan_Antonio_Ros", "http://dbpedia.org/resource/Juan_Carlos_Moreno_(footballer)", "http://dbpedia.org/resource/Juan_Carlos_Rojo", "http://dbpedia.org/resource/Juan_Fern\u00e1ndez_(footballer,_born_1999)", "http://dbpedia.org/resource/Juanan_Entrena", "http://dbpedia.org/resource/Juanjo_(footballer,_born_1977)", "http://dbpedia.org/resource/Judan_Ali", "http://dbpedia.org/resource/Julen_Arellano", "http://dbpedia.org/resource/Santiago_Bueno", "http://dbpedia.org/resource/Sebasti\u00e1n_Herrera", "http://dbpedia.org/resource/Sekou_Gassama", "http://dbpedia.org/resource/Sergi_Altimira", "http://dbpedia.org/resource/Sergi_Barju\u00e1n", "http://dbpedia.org/resource/Sergi_Can\u00f3s", "http://dbpedia.org/resource/Sergi_G\u00f3mez", "http://dbpedia.org/resource/Sergi_L\u00f3pez_(footballer)", "http://dbpedia.org/resource/Sergi_Palencia", "http://dbpedia.org/resource/Sergi_Puig", "http://dbpedia.org/resource/Sergi_Roberto", "http://dbpedia.org/resource/Sergi_Samper", "http://dbpedia.org/resource/Sergio_Ayala", "http://dbpedia.org/resource/Sergio_Buenacasa", "http://dbpedia.org/resource/Sergio_Busquets", "http://dbpedia.org/resource/Sergio_Cirio", "http://dbpedia.org/resource/Sergio_Garc\u00eda_(footballer,_born_1983)", "http://dbpedia.org/resource/Sergio_G\u00f3mez_(footballer,_born_2000)", "http://dbpedia.org/resource/Sergio_Juste", "http://dbpedia.org/resource/Sergio_Santamar\u00eda", "http://dbpedia.org/resource/Isaac_Becerra", "http://dbpedia.org/resource/Isaac_Cuenca", "http://dbpedia.org/resource/Isaac_Padilla", "http://dbpedia.org/resource/Ismael_L\u00f3pez_(footballer,_born_1978)", "http://dbpedia.org/resource/Iv\u00e1n_Balliu", "http://dbpedia.org/resource/Iv\u00e1n_Bravo", "http://dbpedia.org/resource/Iv\u00e1n_Carril", "http://dbpedia.org/resource/Iv\u00e1n_D\u00edaz_(footballer,_born_1978)", "http://dbpedia.org/resource/Iv\u00e1n_Martos", "http://dbpedia.org/resource/Iv\u00e1n_Pe\u00f1aranda", "http://dbpedia.org/resource/Iv\u00e1n_de_la_Pe\u00f1a", "http://dbpedia.org/resource/I\u00f1aki_Pe\u00f1a", "http://dbpedia.org/resource/Moha_El_Ouriachi", "http://dbpedia.org/resource/Mois\u00e9s_Pereiro", "http://dbpedia.org/resource/Monchu", "http://dbpedia.org/resource/Moustapha_Seck", "http://dbpedia.org/resource/Munir_El_Haddadi", "http://dbpedia.org/resource/Nano_(footballer,_born_1982)", "http://dbpedia.org/resource/Tonet", "http://dbpedia.org/resource/Toni_Calvo", "http://dbpedia.org/resource/Toni_Dovale", "http://dbpedia.org/resource/Toni_Moral", "http://dbpedia.org/resource/Toni_Velamaz\u00e1n", "http://dbpedia.org/resource/Aar\u00f3n_Bueno", "http://dbpedia.org/resource/Abel_Ruiz", "http://dbpedia.org/resource/Adama_Traor\u00e9_(footballer,_born_1996)", "http://dbpedia.org/resource/Adri\u00e0_Altimira", "http://dbpedia.org/resource/Adri\u00e0_Arjona", "http://dbpedia.org/resource/Adri\u00e0_Carmona", "http://dbpedia.org/resource/Adri\u00e0_Guerrero", "http://dbpedia.org/resource/Adri\u00e0_Vilanova", "http://dbpedia.org/resource/Adri\u00e1n_Bernab\u00e9", "http://dbpedia.org/resource/Cesc_F\u00e0bregas", "http://dbpedia.org/resource/Chadi_Riad", "http://dbpedia.org/resource/Chumi", "http://dbpedia.org/resource/Steven_Prieto", "http://dbpedia.org/resource/Carles_Ale\u00f1\u00e1", "http://dbpedia.org/resource/Carles_Busquets", "http://dbpedia.org/resource/Carles_Coto", "http://dbpedia.org/resource/Carles_Cuadrat", "http://dbpedia.org/resource/Carles_Planas", "http://dbpedia.org/resource/Carles_P\u00e9rez", "http://dbpedia.org/resource/Carles_Rexach", "http://dbpedia.org/resource/Carlos_Blanco_(footballer,_born_1996)", "http://dbpedia.org/resource/Carlos_Gilbert", "http://dbpedia.org/resource/Carlos_Julio_Mart\u00ednez", "http://dbpedia.org/resource/Carlos_Mart\u00ednez_(footballer,_born_1997)", "http://dbpedia.org/resource/Carlos_Mart\u00ednez_(footballer,_born_June_1986)", "http://dbpedia.org/resource/Carlos_Pe\u00f1a_(Spanish_footballer)", "http://dbpedia.org/resource/Hugo_L\u00f3pez_(footballer)", "http://dbpedia.org/resource/Labinot_Kabashi", "http://dbpedia.org/resource/Domingo_Acedo", "http://dbpedia.org/resource/Sim\u00f3n_Colina", "http://dbpedia.org/resource/Sito_Riera", "http://dbpedia.org/resource/Cristian_Ceballos", "http://dbpedia.org/resource/Cristian_Hidalgo", "http://dbpedia.org/resource/Cristian_Lobato", "http://dbpedia.org/resource/Cristian_Tello", "http://dbpedia.org/resource/Crist\u00f3bal_Parralo", "http://dbpedia.org/resource/Guille_Abascal", "http://dbpedia.org/resource/Guillem_Jaime", "http://dbpedia.org/resource/Guillermo_Amor", "http://dbpedia.org/resource/Hendrio", "http://dbpedia.org/resource/Macky_Bagnack", "http://dbpedia.org/resource/Mamadou_Sylla_(footballer,_born_1994)", "http://dbpedia.org/resource/Mamadou_Tounkara", "http://dbpedia.org/resource/Manolo_(footballer,_born_1960)", "http://dbpedia.org/resource/Manu_Trigueros", "http://dbpedia.org/resource/Ricard_S\u00e1nchez", "http://dbpedia.org/resource/Riqui_Puig", "http://dbpedia.org/resource/Robert_Costa_(footballer)", "http://dbpedia.org/resource/Roberto_Alarc\u00f3n_(footballer,_born_1994)", "http://dbpedia.org/resource/Roberto_Merino", "http://dbpedia.org/resource/Roberto_Trashorras", "http://dbpedia.org/resource/Rodri_(footballer,_born_1934)", "http://dbpedia.org/resource/Rodri_(footballer,_born_1971)", "http://dbpedia.org/resource/Rodri_(footballer,_born_1984)", "http://dbpedia.org/resource/Rodri_(footballer,_born_2000)", "http://dbpedia.org/resource/Rodrigo_Tar\u00edn", "http://dbpedia.org/resource/Roger_Garc\u00eda", "http://dbpedia.org/resource/Roger_Riera", "http://dbpedia.org/resource/Fabrice_Ondoa", "http://dbpedia.org/resource/Federico_Bessone", "http://dbpedia.org/resource/Felip_Ortiz", "http://dbpedia.org/resource/Felipe_Sanch\u00f3n", "http://dbpedia.org/resource/Fernando_Navarro_(Spanish_footballer)", "http://dbpedia.org/resource/Fernando_Quesada", "http://dbpedia.org/resource/Ferran_Olivella", "http://dbpedia.org/resource/Ferr\u00e1n_Sarsanedas", "http://dbpedia.org/resource/Fod\u00e9_Fofana", "http://dbpedia.org/resource/Jeffr\u00e9n_Su\u00e1rez", "http://dbpedia.org/resource/Jesjua_Angoy-Cruyff", "http://dbpedia.org/resource/Jes\u00fas_Lucendo", "http://dbpedia.org/resource/Jes\u00fas_Olmo", "http://dbpedia.org/resource/Jes\u00fas_Tato", "http://dbpedia.org/resource/Jito_(footballer)", "http://dbpedia.org/resource/Joan_Campins", "http://dbpedia.org/resource/Joan_Luque", "http://dbpedia.org/resource/Joan_Verd\u00fa", "http://dbpedia.org/resource/Joel_Huertas", "http://dbpedia.org/resource/Joel_Roca", "http://dbpedia.org/resource/Jofre_Mateu", "http://dbpedia.org/resource/Lee_Seung-woo", "http://dbpedia.org/resource/Leo_L\u00f3pez_(footballer)", "http://dbpedia.org/resource/Lionel_Enguene", "http://dbpedia.org/resource/Lionel_Messi", "http://dbpedia.org/resource/Nayim", "http://dbpedia.org/resource/Nico_Gonz\u00e1lez_(footballer,_born_2002)", "http://dbpedia.org/resource/Pedro_(footballer,_born_1987)", "http://dbpedia.org/resource/Pedro_Antonio_N\u00fa\u00f1ez", "http://dbpedia.org/resource/Pep_Guardiola", "http://dbpedia.org/resource/Pepe_Mor\u00e9", "http://dbpedia.org/resource/Pepe_Palau", "http://dbpedia.org/resource/Pepe_Reina", "http://dbpedia.org/resource/Pere_Gratac\u00f3s", "http://dbpedia.org/resource/Pere_Valent\u00ed_Mora", "http://dbpedia.org/resource/Quique_Mart\u00edn", "http://dbpedia.org/resource/Quique_de_Lucas", "http://dbpedia.org/resource/Quique_\u00c1lvarez", "http://dbpedia.org/resource/Rafa_Mir", "http://dbpedia.org/resource/Rafa_M\u00fajica", "http://dbpedia.org/resource/Rafinha_(footballer,_born_February_1993)", "http://dbpedia.org/resource/Thiago_Alc\u00e2ntara", "http://dbpedia.org/resource/Tito_Vilanova", "http://dbpedia.org/resource/Tom\u00e1s_Re\u00f1ones", "http://dbpedia.org/resource/Xavi", "http://dbpedia.org/resource/Xavi_Carmona", "http://dbpedia.org/resource/Xavi_Ginard", "http://dbpedia.org/resource/Xavi_Moro", "http://dbpedia.org/resource/Xavi_Quintill\u00e0", "http://dbpedia.org/resource/Xavi_Simons", "http://dbpedia.org/resource/Xavier_Pelegr\u00ed", "http://dbpedia.org/resource/Edu_Campabadal", "http://dbpedia.org/resource/Efra\u00edn_Ju\u00e1rez", "http://dbpedia.org/resource/Eladio_Silvestre", "http://dbpedia.org/resource/Julio_Iglesias_(footballer)", "http://dbpedia.org/resource/Julio_Pleguezuelo", "http://dbpedia.org/resource/Justo_Tejada", "http://dbpedia.org/resource/J\u00e9r\u00e9my_Guillemenot", "http://dbpedia.org/resource/Kai_Corbett", "http://dbpedia.org/resource/Llu\u00eds_Carreras", "http://dbpedia.org/resource/Llu\u00eds_Pujol", "http://dbpedia.org/resource/Llu\u00eds_Sastre", "http://dbpedia.org/resource/Lobo_Carrasco", "http://dbpedia.org/resource/Louie_Barry", "http://dbpedia.org/resource/Lucas_Gafarot", "http://dbpedia.org/resource/Luis_Carri\u00f3n", "http://dbpedia.org/resource/Luis_Garc\u00eda_(footballer,_born_1978)", "http://dbpedia.org/resource/Luis_Milla_(footballer,_born_1966)", "http://dbpedia.org/resource/Luis_Pellicer", "http://dbpedia.org/resource/Lu\u00eds_Gustavo_Ledes", "http://dbpedia.org/resource/Oriol_Busquets", "http://dbpedia.org/resource/Oriol_Rey", "http://dbpedia.org/resource/Oriol_Riera", "http://dbpedia.org/resource/Oriol_Romeu", "http://dbpedia.org/resource/Oriol_Rosell", "http://dbpedia.org/resource/Biel_Farr\u00e9s", "http://dbpedia.org/resource/Bobby_Adekanye", "http://dbpedia.org/resource/Bojan_Krki\u0107", "http://dbpedia.org/resource/H\u00e9ctor_Beller\u00edn", "http://dbpedia.org/resource/H\u00e9ctor_Sim\u00f3n", "http://dbpedia.org/resource/Iago_Falque", "http://dbpedia.org/resource/Ian_Poveda", "http://dbpedia.org/resource/Ib\u00e1n_Cuadrado", "http://dbpedia.org/resource/Ignasi_Miquel", "http://dbpedia.org/resource/Ignasi_Vilarrasa", "http://dbpedia.org/resource/Iker_Bravo", "http://dbpedia.org/resource/Ilaix_Moriba", "http://dbpedia.org/resource/Ilias_Akhomach", "http://dbpedia.org/resource/Ilie_S\u00e1nchez", "http://dbpedia.org/resource/Konrad_de_la_Fuente", "http://dbpedia.org/resource/Michal_Zuk", "http://dbpedia.org/resource/Migue", "http://dbpedia.org/resource/Miguel_Ba\u00f1uz", "http://dbpedia.org/resource/Miguel_Mart\u00ednez_(Spanish_footballer)", "http://dbpedia.org/resource/Miguel_Mora_(footballer)", "http://dbpedia.org/resource/Miguel_\u00c1ngel_(footballer,_born_1993)", "http://dbpedia.org/resource/Mika_M\u00e1rmol", "http://dbpedia.org/resource/Mikel_Arteta", "http://dbpedia.org/resource/Mingo_(footballer)", "http://dbpedia.org/resource/Miquel_Ferrer", "http://dbpedia.org/resource/Pablo_Maqueda", "http://dbpedia.org/resource/Pablo_Navas", "http://dbpedia.org/resource/Paco_Clos", "http://dbpedia.org/resource/Paco_Fortes", "http://dbpedia.org/resource/Paik_Seung-ho", "http://dbpedia.org/resource/Paqui", "http://dbpedia.org/resource/Patric_(Spanish_footballer)", "http://dbpedia.org/resource/Pau_Morer", "http://dbpedia.org/resource/Pau_Torres_(footballer,_born_1987)", "http://dbpedia.org/resource/Rub\u00e9n_Alcaraz", "http://dbpedia.org/resource/Rub\u00e9n_Garc\u00eda_(footballer,_born_1998)", "http://dbpedia.org/resource/Rub\u00e9n_Mart\u00ednez_(footballer,_born_1984)", "http://dbpedia.org/resource/Rub\u00e9n_Mart\u00ednez_(footballer,_born_1989)", "http://dbpedia.org/resource/Rub\u00e9n_Mi\u00f1o", "http://dbpedia.org/resource/Rub\u00e9n_Rochina", "http://dbpedia.org/resource/Zak_Gilsenan", "http://dbpedia.org/resource/\u00c1lex_Blanco_(footballer,_born_1998)", "http://dbpedia.org/resource/\u00c1lex_Carbonell", "http://dbpedia.org/resource/\u00c1lex_Collado", "http://dbpedia.org/resource/\u00c1lex_Corredera", "http://dbpedia.org/resource/\u00c1lex_Garc\u00eda_(footballer,_born_1970)", "http://dbpedia.org/resource/\u00c1lex_Grimaldo", "http://dbpedia.org/resource/\u00c1lex_L\u00f3pez_(footballer,_born_1993)", "http://dbpedia.org/resource/\u00c1lex_Moreno_(footballer)", "http://dbpedia.org/resource/\u00c1lex_Sala", "http://dbpedia.org/resource/\u00c1lex_S\u00e1nchez_(footballer,_born_1991)", "http://dbpedia.org/resource/\u00c1lvaro_Sanz", "http://dbpedia.org/resource/\u00c1ngel_Pedraza", "http://dbpedia.org/resource/\u00d3scar_Arp\u00f3n", "http://dbpedia.org/resource/\u00d3scar_C\u00e9spedes", "http://dbpedia.org/resource/\u00d3scar_Garc\u00eda_(footballer,_born_1973)", "http://dbpedia.org/resource/\u00d3scar_L\u00f3pez_(footballer,_born_1980)", "http://dbpedia.org/resource/\u00d3scar_Mingueza", "http://dbpedia.org/resource/\u00d3scar_Serrano_(footballer)", "http://dbpedia.org/resource/\u00d3scar_\u00c1lvarez_(footballer)"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/designer> <http://dbpedia.org/resource/Alexander_Lippisch> } "}, "answers": ["http://dbpedia.org/resource/RRG_Professor", "http://dbpedia.org/resource/DFS_194", "http://dbpedia.org/resource/DFS_40", "http://dbpedia.org/resource/DFS_Z\u00f6gling", "http://dbpedia.org/resource/Gr\u00fcne_Post", "http://dbpedia.org/resource/Lippisch_DM-1", "http://dbpedia.org/resource/Lippisch_Wien", "http://dbpedia.org/resource/Messerschmitt_Me_263", "http://dbpedia.org/resource/Messerschmitt_Me_334", "http://dbpedia.org/resource/Collins_X-112", "http://dbpedia.org/resource/Messerschmitt_Me_163_Komet", "http://dbpedia.org/resource/Dornier_Aerodyne", "http://dbpedia.org/resource/Lippisch_P.20", "http://dbpedia.org/resource/RRG_Falke", "http://dbpedia.org/resource/Lippisch_Delta_IV", "http://dbpedia.org/resource/Lippisch_Delta_VI", "http://dbpedia.org/resource/RFB_X-113", "http://dbpedia.org/resource/RRG_Storch_V", "http://dbpedia.org/resource/Lippisch_P.15", "http://dbpedia.org/resource/RFB_X-114", "http://dbpedia.org/resource/RRG_Fafnir", "http://dbpedia.org/resource/RRG_Fafnir_2", "http://dbpedia.org/resource/Lippisch_P.13a", "http://dbpedia.org/resource/RRG_Urubu_Obs"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Carmela_Soprano> <http://dbpedia.org/ontology/relative> ?uri } "}, "answers": ["http://dbpedia.org/resource/List_of_The_Sopranos_characters", "http://dbpedia.org/resource/Janice_Soprano", "http://dbpedia.org/resource/Christopher_Moltisanti", "http://dbpedia.org/resource/Livia_Soprano"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/firstTeam> <http://dbpedia.org/resource/Scuderia_Ferrari> . ?x <http://dbpedia.org/ontology/poleDriver> ?uri . }"}, "answers": ["312"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Erastus_Wiman> <http://dbpedia.org/ontology/citizenship> ?uri } "}, "answers": ["http://dbpedia.org/resource/Canadians"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/nationality> <http://dbpedia.org/resource/French_people> . ?x <http://dbpedia.org/ontology/award> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Hans-Adalbert_Schweigart", "http://dbpedia.org/resource/Soci\u00e9t\u00e9_d'Encouragement_au_Progr\u00e8s", "http://dbpedia.org/resource/Prix_de_la_langue_fran\u00e7aise", "http://dbpedia.org/resource/Peccot_Lectures", "http://dbpedia.org/resource/CNRS_Gold_Medal", "http://dbpedia.org/resource/European_Mathematical_Society", "http://dbpedia.org/resource/Legion_of_Honour", "http://dbpedia.org/resource/Prix_Goncourt", "http://dbpedia.org/resource/French_Academy_of_Sciences", "http://dbpedia.org/resource/Nobel_Prize_in_Physics", "http://dbpedia.org/resource/High_Energy_and_Particle_Physics_Prize", "http://dbpedia.org/resource/Prix_Jean_Ricard", "http://dbpedia.org/resource/Guy_Medal", "http://dbpedia.org/resource/Alan_T._Waterman_Award", "http://dbpedia.org/resource/James_H._Wilkinson", "http://dbpedia.org/resource/George_P\u00f3lya_Prize", "http://dbpedia.org/resource/Institute_of_Electrical_and_Electronics_Engineers", "http://dbpedia.org/resource/International_Council_for_Industrial_and_Applied_Mathematics", "http://dbpedia.org/resource/Sloan_Research_Fellowship", "http://dbpedia.org/resource/BFI_London_Film_Festival", "http://dbpedia.org/resource/La_Bonne_Nouvelle", "http://dbpedia.org/resource/Prix_Mottart", "http://dbpedia.org/resource/Ordre_des_Arts_et_des_Lettres", "http://dbpedia.org/resource/Acad\u00e9mie_Fran\u00e7aise", "http://dbpedia.org/resource/Prix_de_Rome", "http://dbpedia.org/resource/Prix_Guillaume_Apollinaire", "http://dbpedia.org/resource/Monte_Carlo", "http://dbpedia.org/resource/Palme_d'Or_des_Beaux_Arts", "http://dbpedia.org/resource/Leroy_P._Steele_Prize", "http://dbpedia.org/resource/Grand_Prix_du_roman_de_l'Acad\u00e9mie_fran\u00e7aise", "http://dbpedia.org/resource/List_of_members_of_the_Acad\u00e9mie_fran\u00e7aise", "http://dbpedia.org/resource/The_Genetics_Society", "http://dbpedia.org/resource/Humboldt_Prize", "http://dbpedia.org/resource/Max_Delbruck_Prize", "http://dbpedia.org/resource/Order_of_the_Medjidie", "http://dbpedia.org/resource/Military_Order_of_Christ", "http://dbpedia.org/resource/Fernand_Holweck_Medal_and_Prize", "http://dbpedia.org/resource/Righteous_Among_the_Nations", "http://dbpedia.org/resource/Grand_prix_de_l'Imaginaire", "http://dbpedia.org/resource/International_Documentary_Film_Festival_Amsterdam", "http://dbpedia.org/resource/Henry_Draper_Medal", "http://dbpedia.org/resource/Janssen_Medal_(French_Academy_of_Sciences)", "http://dbpedia.org/resource/Fellow_of_the_Royal_Society", "http://dbpedia.org/resource/Gold_Medal_of_the_Royal_Astronomical_Society", "http://dbpedia.org/resource/Barnard_Medal_for_Meritorious_Service_to_Science", "http://dbpedia.org/resource/Rumford_Medal", "http://dbpedia.org/resource/Bruce_Medal", "http://dbpedia.org/resource/Sylvester_Medal", "http://dbpedia.org/resource/Matteucci_Medal", "http://dbpedia.org/resource/Bolyai_Prize", "http://dbpedia.org/resource/Poncelet_Prize", "http://dbpedia.org/resource/Croix_de_guerre_1914\u20131918_(France)", "http://dbpedia.org/resource/Praemium_Imperiale", "http://dbpedia.org/resource/Prix_Caran_d\u2019Ache", "http://dbpedia.org/resource/Richard_Lounsbery_Award", "http://dbpedia.org/resource/Amp\u00e8re_Prize", "http://dbpedia.org/resource/Prix_Paul_Doistau\u2013\u00c9mile_Blutet", "http://dbpedia.org/resource/Fields_Medal", "http://dbpedia.org/resource/French_Alternative_Energies_and_Atomic_Energy_Commission", "http://dbpedia.org/resource/University_of_Pavia", "http://dbpedia.org/resource/Ministry_of_Science_and_Technology_(Vietnam)", "http://dbpedia.org/resource/Kalinga_Prize", "http://dbpedia.org/resource/Three_Physicists_Prize", "http://dbpedia.org/resource/Albert_Medal_(Royal_Society_of_Arts)", "http://dbpedia.org/resource/Copley_Medal", "http://dbpedia.org/resource/Holcim_Awards_for_Sustainable_Construction", "http://dbpedia.org/resource/MIPIM_AR_Future_Projects_Award", "http://dbpedia.org/resource/Ordre_national_du_M\u00e9rite"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Robert_William_Wilcox> <http://dbpedia.org/ontology/district> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/subsidiary> <http://dbpedia.org/resource/Tandem_Computers> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/cinematography> <http://dbpedia.org/resource/Jordan_Cronenweth> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": ["http://dbpedia.org/resource/Best_Friends_(1982_film)", "http://dbpedia.org/resource/Gable_and_Lombard", "http://dbpedia.org/resource/Gardens_of_Stone", "http://dbpedia.org/resource/Handle_with_Care_(1977_film)", "http://dbpedia.org/resource/Play_It_as_It_Lays_(film)", "http://dbpedia.org/resource/Brewster_McCloud", "http://dbpedia.org/resource/The_Front_Page_(1974_film)", "http://dbpedia.org/resource/The_Nickel_Ride", "http://dbpedia.org/resource/Trilogy_(film)", "http://dbpedia.org/resource/Stop_Making_Sense", "http://dbpedia.org/resource/The_Touch_of_Satan", "http://dbpedia.org/resource/Zandy's_Bride", "http://dbpedia.org/resource/Cutter's_Way", "http://dbpedia.org/resource/Rolling_Thunder_(film)", "http://dbpedia.org/resource/Final_Analysis", "http://dbpedia.org/resource/Peggy_Sue_Got_Married", "http://dbpedia.org/resource/Just_Between_Friends", "http://dbpedia.org/resource/One_in_a_Million:_The_Ron_LeFlore_Story", "http://dbpedia.org/resource/State_of_Grace_(1990_film)", "http://dbpedia.org/resource/Birds_of_Prey_(1973_film)", "http://dbpedia.org/resource/Blade_Runner"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/riverServed> <http://dbpedia.org/resource/Thames_Estuary> . ?uri <http://dbpedia.org/property/riverMouth> <http://dbpedia.org/resource/North_Sea> . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/locationCity> <http://dbpedia.org/resource/Toronto> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}"}, "answers": ["144"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/deathPlace> <http://dbpedia.org/resource/Westwood,_Los_Angeles> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/musicComposer> <http://dbpedia.org/resource/Bernard_Herrmann> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Presidio_Santa_Cruz_de_Terrenate> <http://dbpedia.org/ontology/builder> ?uri } "}, "answers": ["http://dbpedia.org/resource/Spain"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/WXME> <http://dbpedia.org/ontology/sisterStation> ?uri } "}, "answers": ["http://dbpedia.org/resource/WBCQ_(SW)", "http://dbpedia.org/resource/WBCQ-FM"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/network> <http://dbpedia.org/resource/Comedy_Central> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": ["87"]}, {"query": {"sparql": ""}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/office> <http://dbpedia.org/resource/United_States_Senate> . }"}, "answers": ["63"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/relatives> <http://dbpedia.org/resource/Huey,_Dewey,_and_Louie> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/FictionalCharacter>}"}, "answers": ["http://dbpedia.org/resource/Donald_Duck", "http://dbpedia.org/resource/Gladstone_Gander"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bloomington_Viaduct> <http://dbpedia.org/property/crosses> ?uri } "}, "answers": ["http://dbpedia.org/resource/North_Branch_Potomac_River"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/residence> <http://dbpedia.org/resource/Cape_Town> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/OfficeHolder>}"}, "answers": ["1"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/parent> <http://dbpedia.org/resource/BBC> . ?x <http://dbpedia.org/property/products> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Martin_Pugh> <http://dbpedia.org/property/spouse> ?uri . <http://dbpedia.org/resource/Alana_Stewart> <http://dbpedia.org/ontology/associatedActs> ?uri} "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/coach> <http://dbpedia.org/resource/Newell> . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Antoine_Bibeau> <http://dbpedia.org/property/draftTeam> ?uri . <http://dbpedia.org/resource/Nathan_Dempsey> <http://dbpedia.org/ontology/playedFor> ?uri} "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Agalga> <http://dbpedia.org/ontology/broadcastArea> ?uri } "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/deputy> <http://dbpedia.org/resource/Neil_Brown_(Australian_politician)> } "}, "answers": ["http://dbpedia.org/resource/John_Howard"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/placeOfDeath> <http://dbpedia.org/resource/Los_Angeles> . ?x <http://dbpedia.org/ontology/debutTeam> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Budapest> <http://dbpedia.org/ontology/operator> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Puss_in_Boots_(1922_film)> <http://dbpedia.org/property/producer> ?x . ?x <http://dbpedia.org/ontology/award> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/garrison> <http://dbpedia.org/resource/Militia> . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/garrison> <http://dbpedia.org/resource/Minister_of_Defense_(Saudi_Arabia)> . ?x <http://dbpedia.org/property/battles> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/opponent> <http://dbpedia.org/resource/John_G._Schmitz> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/OfficeHolder>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/associatedActs> <http://dbpedia.org/resource/Shorty_Rogers> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MusicalArtist>}"}, "answers": ["http://dbpedia.org/resource/Art_Pepper", "http://dbpedia.org/resource/Hampton_Hawes", "http://dbpedia.org/resource/Larry_Bunker", "http://dbpedia.org/resource/Jimmy_Giuffre", "http://dbpedia.org/resource/Russ_Freeman_(pianist)"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/team> <http://dbpedia.org/resource/Dallas_Cowboys> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/AmericanFootballPlayer>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/microprocessor> <http://dbpedia.org/resource/Cell_(microprocessor)> . ?uri <http://dbpedia.org/property/predecessor> <http://dbpedia.org/resource/PlayStation_2> . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/debutTeam> <http://dbpedia.org/resource/Houston_Astros> . ?x <http://dbpedia.org/property/name> ?uri . }"}, "answers": ["Alvin Morman", "Andre Scrubb", "Andy Mota", "And\u00fajar Cede\u00f1o", "Dallas Keuchel", "Dan Larson", "http://dbpedia.org/resource/Incarnate_Word_Cardinals_baseball", "Incarnate Word", "Danny Heep", "Danny Walton", "Darryl Kile", "Daryle Ward", "Dave Giusti", "Dave Hajek", "Dave Matranga", "Dave Meads", "Dave Roberts", "Dave Rohde", "Dave Smith", "Dave Veres", "David Hensley", "David Mart\u00ednez", "David Paulino", "Dean Deetz", "Dean Hartgraves", "Vince Velasquez", "Wade Miller", "Walt Williams", "Wandy Rodr\u00edguez", "Derrel Thomas", "Al Javier", "Al Osuna", "Alan Knicely", "Alex Bregman", "Alex De Goti", "Alex Taveras", "Art Gardner", "Asher Wojciechowski", "Bert Pe\u00f1a", "Bert Roberge", "Framber Valdez", "Francis Martes", "Frank Charles", "Gary Cooper", "Gary Wilson", "George Bjorkman", "George Springer", "Hal King", "Sammy Gervacio", "Taylor Buchholz", "Taylor Jones", "Wayne Franklin", "Wesley Wright", "Wilfredo Rodr\u00edguez", "Aneury Rodr\u00edguez", "Enoli Paredes", "Enrique Hern\u00e1ndez", "Eric Anthony", "Eric Bruntlett", "Eric Bullock", "Eric Yelding", "Ernie Fazio", "Gerald Young", "Gilberto Rond\u00f3n", "Glen Barker", "Glenn Davis", "Glenn Vaughan", "Gordie Pladson", "Marc Krauss", "Mark Bailey", "Mark Knudson", "Mark Lemongello", "Mark McLemore", "Mark Ross", "Mark Saccomanno", "Mark Small", "Marwin Gonz\u00e1lez", "Preston Tucker", "Teoscar Hern\u00e1ndez", "http://dbpedia.org/resource/UHV_Jaguars", "UHV Jaguars", "Terry Puhl", "UHV", "Brad Lidge", "Brady Rodgers", "Brandon Bailey", "Brandon Barnes", "Brandon Bielak", "Brandon Puffer", "Brett Oberholtzer", "Brett Wallace", "Brian Bogusevic", "Brian Hunter", "Brian Meyer", "Brian Williams", "Brock Davis", "Bruce Bochy", "Bruce Von Hoff", "Bryan Abreu", "Bud Norris", "Buddy Harris", "Jake Buchanan", "Jake Meyers", "James Hoyt", "James Mouton", "Jandel Gustave", "Jarred Cosart", "Jason Alfaro", "Jason Castro", "Jason Green", "Jason Lane", "Javier Ortiz", "Jay Dahl", "Jay Schlueter", "Jeff Bagwell", "Jeff Baldwin", "Jeff Calhoun", "Keith Drumright", "Keith Ginter", "Keith Lampard", "Ken Caminiti", "Ken Forsch", "Ken Ramos", "Kenny Lofton", "Kent Emanuel", "Kevin Chapman", "Matt Albers", "Matt Duffy", "Max Stassi", "Merritt Ranew", "Ralph Garza Jr.", "Ram\u00f3n de los Santos", "Randy Hennis", "Randy Niemann", "Ray Busse", "Ray Montgomery", "Reggie Baldwin", "Reymin Guduan", "Rhiner Cruz", "A. J. Reed", "Nivaldo Rodr\u00edguez", "Norm Miller", "Cliff Johnson", "Cody Clark", "Colin Moran", "Colin Porter", "Conrad Cardinal", "John Mizerock", "John Paciorek", "Johnny Weekly", "Jonathan Villar", "Jordan Jankowski", "Jordan Lyles", "Jorge de Le\u00f3n", "Josh Anderson", "Josh Fields", "Josh James", "Josh Zeid", "Jos\u00e9 Altuve", "Jos\u00e9 Cabrera", "Jos\u00e9 Can\u00f3", "Jos\u00e9 Cisnero", "Jos\u00e9 Siri", "Jos\u00e9 Sosa", "Jos\u00e9 Tolentino", "Jos\u00e9 Urquidy", "Jos\u00e9 Valdez", "Juan Guerrero", "Juan Guti\u00e9rrez", "Scipio Spinks", "Scott Elarton", "Scott Loucks", "Scott Servais", "Barry Wesson", "J C Hartman", "J. D. Davis", "J. D. Martinez", "J. J. Matijevic", "J. R. Towles", "JB Shuck", "Jack Mayfield", "Mitch Meluskey", "Morgan Ensberg", "Myles Straw", "Nate Bland", "Nate Colbert", "Tony Eusebio", "Tony Kemp", "Tony McKnight", "Tony Walker", "Troy Afenir", "Troy Patton", "Tuffy Rhodes", "Ty Gainey", "Tyler Ivey", "Tyler White", "Aaron Pointer", "Abraham Toro", "Adam Everett", "Butch Henry", "Cameron Drew", "Candy Harris", "Chad Qualls", "Charlie Kerfeld", "Charlton Jimerson", "Chas McCormick", "Chia-Jen Lo", "Chris Burke", "Chris Devenski", "Chris Gardner", "Chris Johnson", "Chris Sampson", "Chris Truby", "Chuck Harrison", "Chuck Jackson", "Cionel P\u00e9rez", "Steve Hertz", "Steve Shea", "Carlos Correa", "Carlos Hern\u00e1ndez", "Carlos Sanabria", "Carroll Sembera", "http://dbpedia.org/resource/Houston_Baptist_Huskies_baseball", "Houston Baptist", "Lance Berkman", "Lance McCullers Jr.", "Larry Howard", "Larry Milbourne", "Larry Ray", "Larry Yellen", "Larry Yount", "Domingo Santana", "Don Arlich", "Don Wilson", "Donne Wall", "Doug Konieczny", "Doug Rader", "Corbin Martin", "Craig Biggio", "Craig Cacek", "Craig Smajstrla", "Cristian Javier", "Cy Sneed", "C\u00e9sar Cede\u00f1o", "C\u00e9sar Ger\u00f3nimo", "Greg Gross", "Greg Sims", "Henry Sosa", "Henry Villar", "Manny Hernandez", "Manuel Barrios", "Rich Chiles", "Rich Scheid", "Richard Hidalgo", "Rick Williams", "Ricky Stone", "Rob Andrews", "Rob Mallicoat", "Robbie Grossman", "http://dbpedia.org/resource/Penn_State_Nittany_Lions_baseball", "Penn State", "Robbie Wine", "Roberto Petagine", "Rodrigo Rosario", "Rogelio Armenteros", "Ezequiel Astacio", "Felipe Paulino", "Fernando Abad", "Fernando Nieve", "Floyd Bannister", "Jeff Heathcock", "Jeff Juden", "Jeremy Pe\u00f1a", "Jeriome Robertson", "Jerry Grote", "Jes\u00fas de la Rosa", "Jim Campbell", "Jim Crawford", "Jim Dickson", "Jim Dougherty", "Jim Obradovich", "Jim Pankovits", "Jim Ray", "Jimmy Paredes", "Joaqu\u00edn And\u00fajar", "Joe Cannon", "Joe Hoerner", "Joe Morgan", "Joe Musgrove", "Joe Perez", "Joe Pittman", "Joe Sambito", "John Bateman", "John Fishel", "John Halama", "John Hudek", "Leon McFadden", "Nick Tropeano", "Pete Ladd", "Peter Solomon", "Phil Nevin", "Phil Barzilla", "Pidge Browne", "Rafael Batista", "Rafael Montalvo", "Tim Redding", "Tim Tolman", "Todd Jones", "Todd Self", "Tom Dixon", "Tom Dukes", "Tom Funk", "Tom Griffin", "Tom Martin", "Tom Wiedenbauer", "Tommy Manzella", "Willy Taveras", "Wilton L\u00f3pez", "Xavier Cede\u00f1o", "Eddie Tucker", "Edwin Maysonet", "Julio Gonz\u00e1lez", "Julio Lugo", "Julio Solano", "Louie Meadows", "Luis Gonzalez", "Luis Pujols", "Luke Scott", "Orlando Miller", "Otis Thornton", "Seth Martinez", "Shane Reynolds", "Bill Dawley", "Bill Doran", "Bill Greif", "Billy Smith", "Billy Wagner", "Blake Taylor", "Bo McLaughlin", "Bob Watkins", "Bob Watson", "Bobby Abreu", "Bobby Fenwick", "Humberto Castellanos", "Hunter Pence", "H\u00e9ctor Gim\u00e9nez", "H\u00e9ctor Torres", "http://dbpedia.org/resource/TCU_Horned_Frogs_baseball", "TCU", "Kirk Saarloos", "Korey Lee", "Michael Feliz", "Mickey Storey", "Mike Burns", "Mike Cosgrove", "Mike Easler", "Mike Fischlin", "Mike Foltynewicz", "Mike Gallo", "Mike Grzanich", "Mike Madden", "Mike Mendoza", "Mike Simms", "Mike Stanton", "Parker Mushinski", "Pat House", "Paul Clemens", "Paul Siebert", "Ron Cook", "Ron Davis", "Ron Mathis", "Ronel Blanco", "Ronnie Dawson", "Roy Oswalt", "Roy Thomas", "Rudy Owens", "Russ Johnson", "Ryan Bowen", "Ryan Hartman", "Yordan \u00c1lvarez", "\u00d3scar Henr\u00edquez"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/capital> <http://dbpedia.org/resource/Washington> . ?x <http://dbpedia.org/property/subject> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/creator> <http://dbpedia.org/resource/Russell_T_Davies> . ?uri <http://dbpedia.org/ontology/related> ?x . }"}, "answers": ["http://dbpedia.org/resource/Sarah_Jane's_Alien_Files", "http://dbpedia.org/resource/Torchwood", "http://dbpedia.org/resource/Doctor_Who", "http://dbpedia.org/resource/K9_(TV_series)", "http://dbpedia.org/resource/The_Sarah_Jane_Adventures", "http://dbpedia.org/resource/Cucumber_(British_TV_series)", "http://dbpedia.org/resource/Tofu_(web_series)", "http://dbpedia.org/resource/Torchwood_Declassified", "http://dbpedia.org/resource/Banana_(TV_series)", "http://dbpedia.org/resource/Queer_as_Folk_(2022_TV_series)", "http://dbpedia.org/resource/Queer_as_Folk_(American_TV_series)"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/commander> <http://dbpedia.org/resource/Feng_Zicai> . ?x <http://dbpedia.org/property/territory> ?uri . }"}, "answers": ["Boundary convention signed between France and China determine the land border between Tonkin and China in 1887.", "French protectorate over Tonkin and Annam recognized by China."]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Michael_Springer> <http://dbpedia.org/property/parentOrganization> ?uri . <http://dbpedia.org/resource/Syracuse_University_Press> <http://dbpedia.org/ontology/club> ?uri} "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/designer> <http://dbpedia.org/resource/BASIC> . ?uri <http://dbpedia.org/property/company> <http://dbpedia.org/resource/Language_Integrated_Query> . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/McDonnell_Douglas> <http://dbpedia.org/property/successor> ?uri . <http://dbpedia.org/resource/Bharathiar_University> <http://dbpedia.org/ontology/builder> ?uri} "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Columbus_Crew_SC> <http://dbpedia.org/property/place> ?x . ?x <http://dbpedia.org/ontology/combatant> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/American_Mediterranean_Sea> <http://dbpedia.org/property/cities> ?uri } "}, "answers": ["19"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/manufacturer> <http://dbpedia.org/resource/FremantleMedia> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/chairman> <http://dbpedia.org/resource/Merritt_Paulson> . ?x <http://dbpedia.org/property/homeStadium> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/producer> <http://dbpedia.org/resource/Michael_Deeley> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": ["10"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/race> <http://dbpedia.org/resource/Lawrence_Realization_Stakes> . ?x <http://dbpedia.org/ontology/honours> ?uri . }"}, "answers": ["http://dbpedia.org/resource/BC_Sports_Hall_of_Fame", "http://dbpedia.org/resource/Canadian_Horse_Racing_Hall_of_Fame", "http://dbpedia.org/resource/Blood-Horse_magazine_List_of_the_Top_100_U.S._Racehorses_of_the_20th_Century", "http://dbpedia.org/resource/National_Museum_of_Racing_and_Hall_of_Fame", "http://dbpedia.org/resource/Fair_Grounds_Racing_Hall_of_Fame", "http://dbpedia.org/resource/California", "http://dbpedia.org/resource/Canada's_Sports_Hall_of_Fame", "http://dbpedia.org/resource/Bay_Meadows_Racetrack", "http://dbpedia.org/resource/Statue", "http://dbpedia.org/resource/Sysonby_Handicap", "http://dbpedia.org/resource/Mac_Diarmida_Stakes", "http://dbpedia.org/resource/Bed_O'_Roses_Invitational_Stakes", "http://dbpedia.org/resource/George_Woolf_Memorial_Jockey_Award"]}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/birthPlace> <http://dbpedia.org/resource/United_Kingdom> . ?uri <http://dbpedia.org/ontology/editing> ?uri }"}, "answers": ["37520"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/starring> <http://dbpedia.org/resource/Jeff_Conaway> . ?uri <http://dbpedia.org/ontology/televisionShow>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pittsburgh_Line> <http://dbpedia.org/property/end> ?x . ?x <http://dbpedia.org/ontology/foundationCity> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/origin> <http://dbpedia.org/resource/United_States> . ?x <http://dbpedia.org/property/publisher> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/league> <http://dbpedia.org/resource/National_Basketball_Association> . }"}, "answers": ["798"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/2002_Players_Championship> <http://dbpedia.org/property/nationality> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jane_Austen_in_Manhattan> <http://dbpedia.org/ontology/colour> ?uri . <http://dbpedia.org/resource/Emma_(novel)> <http://dbpedia.org/property/author> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/canonizedBy> <http://dbpedia.org/resource/Pope_John_Paul_II> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": ["http://dbpedia.org/resource/Alonso_de_Orozco_Mena", "http://dbpedia.org/resource/Vicente_Liem_de_la_Paz", "http://dbpedia.org/resource/Virginia_Centurione_Bracelli", "http://dbpedia.org/resource/Humilis_of_Bisignano", "http://dbpedia.org/resource/Paula_Frassinetti", "http://dbpedia.org/resource/Agnes_of_Bohemia", "http://dbpedia.org/resource/Maria_Chiara_Nanetti", "http://dbpedia.org/resource/Alberic_Crescitelli", "http://dbpedia.org/resource/Alfonso_Rodr\u00edguez_Olmedo", "http://dbpedia.org/resource/Auguste_Chapdelaine", "http://dbpedia.org/resource/Benedict_Menni", "http://dbpedia.org/resource/Bernard_of_Corleone", "http://dbpedia.org/resource/Francis_Regis_Clet", "http://dbpedia.org/resource/Gaspare_Bertoni", "http://dbpedia.org/resource/Saint_Thorlak", "http://dbpedia.org/resource/Eug\u00e8ne_de_Mazenod", "http://dbpedia.org/resource/Sim\u00f3n_de_Rojas", "http://dbpedia.org/resource/Anna_Wang", "http://dbpedia.org/resource/Annibale_Maria_di_Francia", "http://dbpedia.org/resource/Arnold_Janssen", "http://dbpedia.org/resource/Andrew_D\u0169ng-L\u1ea1c", "http://dbpedia.org/resource/Giuseppe_Maria_Tomasi", "http://dbpedia.org/resource/Giuseppe_Moscati", "http://dbpedia.org/resource/Marcellin_Champagnat", "http://dbpedia.org/resource/Marguerite_Bourgeoys", "http://dbpedia.org/resource/Maria_De_Mattias", "http://dbpedia.org/resource/Marie-Marguerite_d'Youville", "http://dbpedia.org/resource/Marie-Nicolas-Antoine_Daveluy", "http://dbpedia.org/resource/Mark_Ji_Tianxiang", "http://dbpedia.org/resource/Marko_Krizin", "http://dbpedia.org/resource/Melchior_Grodziecki", "http://dbpedia.org/resource/Manuel_Moralez", "http://dbpedia.org/resource/Marie_de_la_Paix_Giuliani", "http://dbpedia.org/resource/Marie_of_Saint_Just", "http://dbpedia.org/resource/Marie_of_Saint_Natalie", "http://dbpedia.org/resource/Jacobo_Kyushei_Tomonaga", "http://dbpedia.org/resource/Jadwiga_of_Poland", "http://dbpedia.org/resource/Jan_Sarkander", "http://dbpedia.org/resource/Jean-Louis_Bonnard", "http://dbpedia.org/resource/Jeanne_Delanoue", "http://dbpedia.org/resource/Katharine_Drexel", "http://dbpedia.org/resource/Maximilian_Kolbe", "http://dbpedia.org/resource/Eustochia_Smeralda_Calafato", "http://dbpedia.org/resource/Bernard_V\u0169_V\u0103n_Du\u1ec7", "http://dbpedia.org/resource/Gregorio_Grassi", "http://dbpedia.org/resource/Francis_Fasani", "http://dbpedia.org/resource/Francis_Ferdinand_de_Capillas", "http://dbpedia.org/resource/Claude_La_Colombi\u00e8re", "http://dbpedia.org/resource/Clelia_Barbieri", "http://dbpedia.org/resource/Josemar\u00eda_Escriv\u00e1", "http://dbpedia.org/resource/Joseph_Freinademetz", "http://dbpedia.org/resource/Joseph_Marchand", "http://dbpedia.org/resource/Juan_Grande_Rom\u00e1n", "http://dbpedia.org/resource/Giordano_Ansalone", "http://dbpedia.org/resource/Mutien-Marie_Wiaux", "http://dbpedia.org/resource/Nimatullah_Kassab", "http://dbpedia.org/resource/Agatha_Lin", "http://dbpedia.org/resource/Agnes_Tsao_Kou_Ying", "http://dbpedia.org/resource/Agostina_Livia_Pietrantoni", "http://dbpedia.org/resource/Agostino_Roscelli", "http://dbpedia.org/resource/Callistus_Caravario", "http://dbpedia.org/resource/Laurent-Joseph-Marius_Imbert", "http://dbpedia.org/resource/Tommaso_da_Cori", "http://dbpedia.org/resource/Martyrs_of_the_Spanish_Civil_War", "http://dbpedia.org/resource/Domingo_Ib\u00e1\u00f1ez_de_Erquicia", "http://dbpedia.org/resource/Sim\u00e9on-Fran\u00e7ois_Berneux", "http://dbpedia.org/resource/Crispin_of_Viterbo", "http://dbpedia.org/resource/Magdalene_of_Canossa", "http://dbpedia.org/resource/Magdalene_of_Nagasaki", "http://dbpedia.org/resource/Michael_H\u1ed3_\u0110\u00ecnh_Hy", "http://dbpedia.org/resource/Ezequi\u00e9l_Moreno_y_D\u00edaz", "http://dbpedia.org/resource/Faustina_Kowalska", "http://dbpedia.org/resource/John_Gabriel_Perboyre", "http://dbpedia.org/resource/Leopold_Mandi\u0107", "http://dbpedia.org/resource/Pauline_of_the_Agonizing_Heart_of_Jesus", "http://dbpedia.org/resource/Paulinus_of_Trier", "http://dbpedia.org/resource/Pedro_Poveda_Castroverde", "http://dbpedia.org/resource/Peter_Lieou", "http://dbpedia.org/resource/Peter_Sanz", "http://dbpedia.org/resource/Pierre-Henri_Dorie", "http://dbpedia.org/resource/Raimundus_Li_Quanzhen", "http://dbpedia.org/resource/Thomasian_Martyrs", "http://dbpedia.org/resource/Edith_Stein", "http://dbpedia.org/resource/Egidio_Maria_of_Saint_Joseph", "http://dbpedia.org/resource/Lorenzo_Ruiz", "http://dbpedia.org/resource/Louis_Gabriel_Taurin_Dufresse", "http://dbpedia.org/resource/Lucy_Yi_Zhenmei", "http://dbpedia.org/resource/Ignatius_of_Santhi\u00e0", "http://dbpedia.org/resource/Ignazia_Verzeri", "http://dbpedia.org/resource/Kinga_of_Poland", "http://dbpedia.org/resource/Korean_Martyrs", "http://dbpedia.org/resource/Miguel_Febres_Cordero", "http://dbpedia.org/resource/Padre_Pio", "http://dbpedia.org/resource/Paola_Elisabetta_Cerioli", "http://dbpedia.org/resource/Paul_Chong_Hasang", "http://dbpedia.org/resource/Paul_Liu_Hanzuo", "http://dbpedia.org/resource/Roque_Gonz\u00e1lez_y_de_Santa_Cruz", "http://dbpedia.org/resource/Rosa_Francisca_Dolors_Molas_Vallv\u00e9", "http://dbpedia.org/resource/Rose_Philippine_Duchesne", "http://dbpedia.org/resource/R\u00e9my_Isor\u00e9", "http://dbpedia.org/resource/David_Rold\u00e1n_Lara", "http://dbpedia.org/resource/Marie-Adolphine", "http://dbpedia.org/resource/Marie-Hermine_of_Jesus", "http://dbpedia.org/resource/Marciano_Jos\u00e9", "http://dbpedia.org/resource/Stephen_Pongracz"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/music> <http://dbpedia.org/resource/James_Horner> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": ["http://dbpedia.org/resource/All_the_King's_Men_(2006_film)", "http://dbpedia.org/resource/An_American_Tail", "http://dbpedia.org/resource/An_American_Tail:_Fievel_Goes_West", "http://dbpedia.org/resource/An_American_Tail:_The_Treasure_of_Manhattan_Island", "http://dbpedia.org/resource/Deep_Impact_(film)", "http://dbpedia.org/resource/Vibes_(film)", "http://dbpedia.org/resource/Volunteers_(1985_film)", "http://dbpedia.org/resource/Aliens_(film)", "http://dbpedia.org/resource/Avatar_(2009_film)", "http://dbpedia.org/resource/Between_Friends_(1983_film)", "http://dbpedia.org/resource/Beyond_Borders_(film)", "http://dbpedia.org/resource/For_Greater_Glory", "http://dbpedia.org/resource/We're_Back!_A_Dinosaur's_Story_(film)", "http://dbpedia.org/resource/Where_the_River_Runs_Black", "http://dbpedia.org/resource/Another_48_Hrs.", "http://dbpedia.org/resource/Apocalypto", "http://dbpedia.org/resource/Apollo_13_(film)", "http://dbpedia.org/resource/Enemy_at_the_Gates", "http://dbpedia.org/resource/Andy_Colby's_Incredible_Adventure", "http://dbpedia.org/resource/Glory_(1989_film)", "http://dbpedia.org/resource/Gorky_Park_(film)", "http://dbpedia.org/resource/The_33", "http://dbpedia.org/resource/The_Amazing_Spider-Man_(film)", "http://dbpedia.org/resource/The_Boy_in_the_Striped_Pyjamas_(film)", "http://dbpedia.org/resource/The_Chumscrubber", "http://dbpedia.org/resource/Uncommon_Valor", "http://dbpedia.org/resource/Unlawful_Entry_(film)", "http://dbpedia.org/resource/How_the_Sith_Stole_Christmas", "http://dbpedia.org/resource/Bopha!", "http://dbpedia.org/resource/Braveheart", "http://dbpedia.org/resource/Jack_the_Bear", "http://dbpedia.org/resource/Jade_(film)", "http://dbpedia.org/resource/Brainstorm_(1983_film)", "http://dbpedia.org/resource/Ransom_(1996_film)", "http://dbpedia.org/resource/Raptor_(film)", "http://dbpedia.org/resource/The_Devil's_Own", "http://dbpedia.org/resource/The_Dresser_(1983_film)", "http://dbpedia.org/resource/The_Forgotten_(2004_film)", "http://dbpedia.org/resource/The_Four_Feathers_(2002_film)", "http://dbpedia.org/resource/The_Hand_(1981_film)", "http://dbpedia.org/resource/The_Journey_of_Natty_Gann", "http://dbpedia.org/resource/The_Karate_Kid_(2010_film)", "http://dbpedia.org/resource/The_Lady_in_Red_(1979_film)", "http://dbpedia.org/resource/The_Land_Before_Time_(film)", "http://dbpedia.org/resource/The_Land_Before_Time_II:_The_Great_Valley_Adventure", "http://dbpedia.org/resource/The_Land_Before_Time_III:_The_Time_of_the_Great_Giving", "http://dbpedia.org/resource/The_Land_Before_Time_V:_The_Mysterious_Island", "http://dbpedia.org/resource/The_Legend_of_Zorro", "http://dbpedia.org/resource/The_Life_Before_Her_Eyes", "http://dbpedia.org/resource/The_Man_Without_a_Face", "http://dbpedia.org/resource/The_Mask_of_Zorro", "http://dbpedia.org/resource/The_Missing_(2003_film)", "http://dbpedia.org/resource/The_Name_of_the_Rose_(film)", "http://dbpedia.org/resource/The_New_World_(2005_film)", "http://dbpedia.org/resource/The_Pagemaster", "http://dbpedia.org/resource/The_Pelican_Brief_(film)", "http://dbpedia.org/resource/The_Perfect_Storm_(film)", "http://dbpedia.org/resource/The_Pursuit_of_D._B._Cooper", "http://dbpedia.org/resource/The_Rocketeer_(film)", "http://dbpedia.org/resource/The_Spiderwick_Chronicles_(film)", "http://dbpedia.org/resource/The_Spitfire_Grill", "http://dbpedia.org/resource/The_Stone_Boy_(film)", "http://dbpedia.org/resource/The_Land_Before_Time_VIII:_The_Big_Freeze", "http://dbpedia.org/resource/48_Hrs.", "http://dbpedia.org/resource/Class_Action_(film)", "http://dbpedia.org/resource/Clear_and_Present_Danger_(film)", "http://dbpedia.org/resource/Cocoon:_The_Return", "http://dbpedia.org/resource/Cocoon_(film)", "http://dbpedia.org/resource/Commando_(1985_film)", "http://dbpedia.org/resource/Searching_for_Bobby_Fischer", "http://dbpedia.org/resource/Balto_(film)", "http://dbpedia.org/resource/Batteries_Not_Included", "http://dbpedia.org/resource/Battle_Beyond_the_Stars", "http://dbpedia.org/resource/Iris_(2001_film)", "http://dbpedia.org/resource/My_Heroes_Have_Always_Been_Cowboys_(film)", "http://dbpedia.org/resource/Troy_(film)", "http://dbpedia.org/resource/A_Beautiful_Mind_(film)", "http://dbpedia.org/resource/A_Far_Off_Place", "http://dbpedia.org/resource/A_Piano_for_Mrs._Cimino", "http://dbpedia.org/resource/Swing_Kids_(1993_film)", "http://dbpedia.org/resource/Testament_(1983_film)", "http://dbpedia.org/resource/Captain_EO", "http://dbpedia.org/resource/Casper_(film)", "http://dbpedia.org/resource/Honey,_I_Shrunk_the_Kids", "http://dbpedia.org/resource/House_of_Cards_(1993_film)", "http://dbpedia.org/resource/House_of_Sand_and_Fog_(film)", "http://dbpedia.org/resource/How_the_Grinch_Stole_Christmas_(2000_film)", "http://dbpedia.org/resource/Sneakers_(1992_film)", "http://dbpedia.org/resource/Something_Wicked_This_Way_Comes_(film)", "http://dbpedia.org/resource/Courage_Under_Fire", "http://dbpedia.org/resource/Dad_(1989_film)", "http://dbpedia.org/resource/Heaven_Help_Us", "http://dbpedia.org/resource/Roger_Rabbit_short_films", "http://dbpedia.org/resource/Field_of_Dreams", "http://dbpedia.org/resource/Flightplan", "http://dbpedia.org/resource/Legends_of_the_Fall", "http://dbpedia.org/resource/Project_X_(1987_film)", "http://dbpedia.org/resource/Radio_(2003_film)", "http://dbpedia.org/resource/Thunderheart", "http://dbpedia.org/resource/Titanic_(1997_film)", "http://dbpedia.org/resource/To_Gillian_on_Her_37th_Birthday", "http://dbpedia.org/resource/Willow_(film)", "http://dbpedia.org/resource/Windtalkers", "http://dbpedia.org/resource/Wolf_Totem_(film)", "http://dbpedia.org/resource/Wolfen_(film)", "http://dbpedia.org/resource/Jumanji", "http://dbpedia.org/resource/Living_in_the_Age_of_Airplanes", "http://dbpedia.org/resource/Off_Beat_(1986_film)", "http://dbpedia.org/resource/Once_Around", "http://dbpedia.org/resource/Once_Upon_a_Forest", "http://dbpedia.org/resource/Southpaw_(film)", "http://dbpedia.org/resource/Space_Raiders_(film)", "http://dbpedia.org/resource/Star_Trek_II:_The_Wrath_of_Khan", "http://dbpedia.org/resource/Star_Trek_III:_The_Search_for_Spock", "http://dbpedia.org/resource/Bicentennial_Man_(film)", "http://dbpedia.org/resource/Bobby_Jones:_Stroke_of_Genius", "http://dbpedia.org/resource/Humanoids_from_the_Deep", "http://dbpedia.org/resource/I_Love_You_to_Death", "http://dbpedia.org/resource/In_Country", "http://dbpedia.org/resource/Krull_(film)", "http://dbpedia.org/resource/Mighty_Joe_Young_(1998_film)", "http://dbpedia.org/resource/Patriot_Games_(film)", "http://dbpedia.org/resource/Deadly_Blessing", "http://dbpedia.org/resource/P.K._and_the_Kid"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/nationality> <http://dbpedia.org/resource/United_States> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": ["http://dbpedia.org/resource/Pittsburgh_Dad", "http://dbpedia.org/resource/Henri,_le_Chat_Noir", "http://dbpedia.org/resource/Foghorn_Leghorn", "http://dbpedia.org/resource/David_W._Anderson"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/England> . ?x <http://dbpedia.org/property/placeOfDeath> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/Battle_of_the_Bulge_(film)> . ?x <http://dbpedia.org/ontology/relation> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Sho> <http://dbpedia.org/ontology/engine> ?uri . <http://dbpedia.org/resource/V8_engine> <http://dbpedia.org/property/manufacturer> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/developer> <http://dbpedia.org/resource/Blizzard_Entertainment> . ?x <http://dbpedia.org/property/genre> ?uri . }"}, "answers": ["62"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/locatedInArea> <http://dbpedia.org/resource/Ridgewood,_New_Jersey> . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Jeff_Conaway> . }"}, "answers": ["15"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/placeOfBirth> <http://dbpedia.org/resource/Michigan_USA> } "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/area> <http://dbpedia.org/resource/Regional_Radio_Sports_Network> } "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Sylvain_Lvi> <http://dbpedia.org/property/fields> ?uri } "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/targetAirport> <http://dbpedia.org/resource/Manchester_Airport> } "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dalma_Kov\u00e1cs> <http://dbpedia.org/ontology/associatedMusicalArtist> ?uri } "}, "answers": ["http://dbpedia.org/resource/Eurovision_Song_Contest", "http://dbpedia.org/resource/Marius_Moga", "http://dbpedia.org/resource/Catalin_M\u0103ru\u021b\u0103", "http://dbpedia.org/resource/Divertis", "http://dbpedia.org/resource/Faimo\u0219ii", "http://dbpedia.org/resource/Ploaia_de_stele"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/field> <http://dbpedia.org/resource/Field_Marshal> . ?x <http://dbpedia.org/ontology/religion> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/assembly> <http://dbpedia.org/resource/Canada> . ?x <http://dbpedia.org/ontology/carries> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/hometown> <http://dbpedia.org/resource/On_Broadway_(Smash)> . ?x <http://dbpedia.org/property/guests> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/commander> <http://dbpedia.org/resource/Egushawa> . ?x <http://dbpedia.org/property/combatant> ?uri . }"}, "answers": ["32"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/designer> <http://dbpedia.org/resource/Olivier_Boulay> . ?x <http://dbpedia.org/ontology/layout> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Rear-wheel_drive", "http://dbpedia.org/resource/Front-engine,_front-wheel-drive_layout", "http://dbpedia.org/resource/Front-engine,_rear-wheel-drive_layout", "http://dbpedia.org/resource/Front-engine,_four-wheel-drive_layout", "http://dbpedia.org/resource/Mid-engine_design", "http://dbpedia.org/resource/Four-wheel_drive", "http://dbpedia.org/resource/North_America"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Ridgewood,_New_Jersey> . }"}, "answers": ["http://dbpedia.org/resource/W._Cary_Edwards", "http://dbpedia.org/resource/Alfred_Lutter", "http://dbpedia.org/resource/Ali_Stroker", "http://dbpedia.org/resource/Frankie_Jonas", "http://dbpedia.org/resource/Fred_DuVal", "http://dbpedia.org/resource/Anne_Donovan", "http://dbpedia.org/resource/Anthony_Pollina", "http://dbpedia.org/resource/Eric_Gurry", "http://dbpedia.org/resource/Eric_S._Rosengren", "http://dbpedia.org/resource/Evanka_Osmak", "http://dbpedia.org/resource/Glenda_Arentzen", "http://dbpedia.org/resource/Margaret_Juntwait", "http://dbpedia.org/resource/Mark_Cahill", "http://dbpedia.org/resource/Martha_Byrne", "http://dbpedia.org/resource/Brian_Williams", "http://dbpedia.org/resource/Bryan_Buffington", "http://dbpedia.org/resource/Jake_Tapp", "http://dbpedia.org/resource/Jason_Heyward", "http://dbpedia.org/resource/Kazu_Shigenobu", "http://dbpedia.org/resource/Kelly_Conheeney", "http://dbpedia.org/resource/Melanie_McGuire", "http://dbpedia.org/resource/Joseph_McKenna_(wrestler)", "http://dbpedia.org/resource/Josh_Flitter", "http://dbpedia.org/resource/Molly_Creamer", "http://dbpedia.org/resource/Nancy_Torresen", "http://dbpedia.org/resource/Christopher_J._Connors", "http://dbpedia.org/resource/Carl_F._Ullrich", "http://dbpedia.org/resource/Don_Van_Natta_Jr.", "http://dbpedia.org/resource/Cosmo_Jarvis", "http://dbpedia.org/resource/Dale_Berra", "http://dbpedia.org/resource/Helen_Nearing", "http://dbpedia.org/resource/MC_Paul_Barman", "http://dbpedia.org/resource/Richard_Kollmar", "http://dbpedia.org/resource/Jeffrey_Nordling", "http://dbpedia.org/resource/Jennifer_Morgan_(activist)", "http://dbpedia.org/resource/Jimmie_Todd_Smith", "http://dbpedia.org/resource/Joe_Harasymiak", "http://dbpedia.org/resource/John_Cortez", "http://dbpedia.org/resource/Nikki_Phillips_(soccer)", "http://dbpedia.org/resource/Peter_Carlisle", "http://dbpedia.org/resource/Elizabeth_Hawes", "http://dbpedia.org/resource/Liz_Krueger", "http://dbpedia.org/resource/Bill_DeMott", "http://dbpedia.org/resource/Bill_Wielechowski", "http://dbpedia.org/resource/Bob_Sebra", "http://dbpedia.org/resource/Michael_Zegen", "http://dbpedia.org/resource/Mike_Dietze", "http://dbpedia.org/resource/Mike_Ferguson_(New_Jersey_politician)", "http://dbpedia.org/resource/Mike_Laga", "http://dbpedia.org/resource/Paul_M._Cook", "http://dbpedia.org/resource/Paul_Mara", "http://dbpedia.org/resource/Helen_O'Bannon", "http://dbpedia.org/resource/Matt_Mondanile", "http://dbpedia.org/resource/Rich_Edson__Rich_Edson__1"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/operator> <http://dbpedia.org/resource/Maple_Leaf_Sports_&_Entertainment> . ?x <http://dbpedia.org/ontology/tenant> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Toronto_Furies", "http://dbpedia.org/resource/Toronto_Maple_Leafs", "http://dbpedia.org/resource/Toronto_Marlies", "http://dbpedia.org/resource/Hockey_Canada", "http://dbpedia.org/resource/Hockey_Hall_of_Fame", "http://etobicokedolphins.ca/", "http://www.nhlalumni.org", "http://dbpedia.org/resource/Toronto_Roadrunners", "http://dbpedia.org/resource/Toronto-Buffalo_Royals", "http://dbpedia.org/resource/Toronto_Triumph", "http://dbpedia.org/resource/Hamilton_Nationals", "http://dbpedia.org/resource/Toronto_Argonauts", "http://dbpedia.org/resource/Toronto_FC", "http://dbpedia.org/resource/Toronto_FC_II", "http://dbpedia.org/resource/Canada_men's_national_soccer_team"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Timothy_Morton> <http://dbpedia.org/property/mainInterests> ?uri } "}, "answers": ["http://dbpedia.org/resource/Buddhism", "http://dbpedia.org/resource/Metaphysics", "http://dbpedia.org/resource/Object-oriented_ontology", "http://dbpedia.org/resource/Philosophical_realism", "http://dbpedia.org/resource/Ecocriticism"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/almaMater> <http://dbpedia.org/resource/National_and_Kapodistrian_University_of_Athens> . ?x <http://dbpedia.org/property/awards> ?uri . }"}, "answers": ["29"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/education> <http://dbpedia.org/resource/Association_of_Higher_Learning> . ?x <http://dbpedia.org/ontology/team> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/location> <http://dbpedia.org/resource/Suburb> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/University>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/programmingLanguage> <http://dbpedia.org/resource/C_(programming_language)> } "}, "answers": ["http://dbpedia.org/resource/AllJoyn", "http://dbpedia.org/resource/Allegro_(software_library)", "http://dbpedia.org/resource/Almquist_shell", "http://dbpedia.org/resource/Alpine_(email_client)", "http://dbpedia.org/resource/Alsamixer", "http://dbpedia.org/resource/Amaya_(web_editor)", "http://dbpedia.org/resource/Ambient_(desktop_environment)", "http://dbpedia.org/resource/American_fuzzy_lop_(fuzzer)", "http://dbpedia.org/resource/AmigaTeX", "http://dbpedia.org/resource/Amsterdam_Compiler_Kit", "http://dbpedia.org/resource/Anacron", "http://dbpedia.org/resource/Android_Team_Awareness_Kit", "http://dbpedia.org/resource/Das_U-Boot", "http://dbpedia.org/resource/Data_Plane_Development_Kit", "http://dbpedia.org/resource/Dconf", "http://dbpedia.org/resource/DeaDBeeF", "http://dbpedia.org/resource/Debian-Installer", "http://dbpedia.org/resource/Apache_Guacamole", "http://dbpedia.org/resource/User-Mode_Driver_Framework", "http://dbpedia.org/resource/Uswsusp", "http://dbpedia.org/resource/Util-linux", "http://dbpedia.org/resource/Uzbl", "http://dbpedia.org/resource/VDPAU", "http://dbpedia.org/resource/VIPS_(software)", "http://dbpedia.org/resource/VLC_media_player", "http://dbpedia.org/resource/VMware_Workstation", "http://dbpedia.org/resource/VTK", "http://dbpedia.org/resource/Varnish_(software)", "http://dbpedia.org/resource/Veejay_(software)", "http://dbpedia.org/resource/VeraCrypt", "http://dbpedia.org/resource/Verilog-to-Routing", "http://dbpedia.org/resource/Versant_Object_Database", "http://dbpedia.org/resource/Veusz", "http://dbpedia.org/resource/Vi", "http://dbpedia.org/resource/Video_Disk_Recorder", "http://dbpedia.org/resource/ViennaRNA_Package", "http://dbpedia.org/resource/Vim_(text_editor)", "http://dbpedia.org/resource/VirtuaWin", "http://dbpedia.org/resource/VirtualBox", "http://dbpedia.org/resource/Virtuoso_Universal_Server", "http://dbpedia.org/resource/Vision_(IRC)", "http://dbpedia.org/resource/VisualBoyAdvance", "http://dbpedia.org/resource/Visual_Molecular_Dynamics", "http://dbpedia.org/resource/Vkernel", "http://dbpedia.org/resource/VnStat", "http://dbpedia.org/resource/Vorbis", "http://dbpedia.org/resource/Vulkan", "http://dbpedia.org/resource/W3m", "http://dbpedia.org/resource/WHAT_IF_software", "http://dbpedia.org/resource/WPS_Office", "http://dbpedia.org/resource/WWIV", "http://dbpedia.org/resource/Watcom_C/C++", "http://dbpedia.org/resource/Waterfox", "http://dbpedia.org/resource/Distributed_Codec_Engine", "http://dbpedia.org/resource/Dm-cache", "http://dbpedia.org/resource/Sedna_(database)", "http://dbpedia.org/resource/Slurm_Workload_Manager", "http://dbpedia.org/resource/SoundTracker_(Unix)", "http://dbpedia.org/resource/Spell_(Unix)", "http://dbpedia.org/resource/HeaderDoc", "http://dbpedia.org/resource/LADSPA", "http://dbpedia.org/resource/Privoxy", "http://dbpedia.org/resource/Ssh-agent", "http://dbpedia.org/resource/PGPfone", "http://dbpedia.org/resource/PackCC", "http://dbpedia.org/resource/Deeplearning4j", "http://dbpedia.org/resource/Dia_(software)", "http://dbpedia.org/resource/Diff", "http://dbpedia.org/resource/Dingoo_A320_SDK", "http://dbpedia.org/resource/DirectFB", "http://dbpedia.org/resource/Direct_Rendering_Infrastructure", "http://dbpedia.org/resource/Direct_Rendering_Manager", "http://dbpedia.org/resource/Distcc", "http://dbpedia.org/resource/Distributed_Concurrent_Versions_System", "http://dbpedia.org/resource/Distributed_Replicated_Block_Device", "http://dbpedia.org/resource/Dm-crypt", "http://dbpedia.org/resource/Dnsmasq", "http://dbpedia.org/resource/Google_App_Runtime_for_Chrome", "http://dbpedia.org/resource/Mirai_(malware)", "http://dbpedia.org/resource/Move_(command)", "http://dbpedia.org/resource/Network_Security_Services", "http://dbpedia.org/resource/Aircrack-ng", "http://dbpedia.org/resource/AkelPad", "http://dbpedia.org/resource/Asprise_OCR", "http://dbpedia.org/resource/Astropy", "http://dbpedia.org/resource/Augeas_(software)", "http://dbpedia.org/resource/Authbind", "http://dbpedia.org/resource/AutoDock", "http://dbpedia.org/resource/Avahi_(software)", "http://dbpedia.org/resource/Avant_Window_Navigator", "http://dbpedia.org/resource/Ayttm", "http://dbpedia.org/resource/Baudline", "http://dbpedia.org/resource/BePDF", "http://dbpedia.org/resource/BennuGD", "http://dbpedia.org/resource/Berkeley_DB", "http://dbpedia.org/resource/Bersirc", "http://dbpedia.org/resource/Foremost_(software)", "http://dbpedia.org/resource/Format_(command)", "http://dbpedia.org/resource/Fortune_(Unix)", "http://dbpedia.org/resource/Fossil_(software)", "http://dbpedia.org/resource/FoundationDB", "http://dbpedia.org/resource/FourQ", "http://dbpedia.org/resource/Framewave", "http://dbpedia.org/resource/Framework_(office_suite)", "http://dbpedia.org/resource/Fraunhofer_FDK_AAC", "http://dbpedia.org/resource/Fre:ac", "http://dbpedia.org/resource/FreeArc", "http://dbpedia.org/resource/FreeGLUT", "http://dbpedia.org/resource/FreeJ", "http://dbpedia.org/resource/FreeMat", "http://dbpedia.org/resource/FreeON", "http://dbpedia.org/resource/FreeOTFE", "http://dbpedia.org/resource/FreeType", "http://dbpedia.org/resource/Freeciv", "http://dbpedia.org/resource/Frei0r", "http://dbpedia.org/resource/Fresco_(web_browser)", "http://dbpedia.org/resource/Fuse_(emulator)", "http://dbpedia.org/resource/Fwupd", "http://dbpedia.org/resource/G95", "http://dbpedia.org/resource/GAMESS_(UK)", "http://dbpedia.org/resource/GAMESS_(US)", "http://dbpedia.org/resource/GAP_(computer_algebra_system)", "http://dbpedia.org/resource/GConf", "http://dbpedia.org/resource/GDAL", "http://dbpedia.org/resource/GD_Graphics_Library", "http://dbpedia.org/resource/GEGL", "http://dbpedia.org/resource/GENESIS_(software)", "http://dbpedia.org/resource/GGPO", "http://dbpedia.org/resource/GIMP", "http://dbpedia.org/resource/GLFW", "http://dbpedia.org/resource/GLib", "http://dbpedia.org/resource/GNATS", "http://dbpedia.org/resource/GNOME_1", "http://dbpedia.org/resource/GNOME_2", "http://dbpedia.org/resource/GNOME_3", "http://dbpedia.org/resource/GNOME_Archive_Manager", "http://dbpedia.org/resource/GNOME_Boxes", "http://dbpedia.org/resource/GNOME_Builder", "http://dbpedia.org/resource/GNOME_Calculator", "http://dbpedia.org/resource/GNOME_Core_Applications", "http://dbpedia.org/resource/GNOME_Dictionary", "http://dbpedia.org/resource/GNOME_Disks", "http://dbpedia.org/resource/GNOME_Display_Manager", "http://dbpedia.org/resource/GNOME_LaTeX", "http://dbpedia.org/resource/GNOME_Screenshot", "http://dbpedia.org/resource/GNOME_Software", "http://dbpedia.org/resource/GNOME_Terminal", "http://dbpedia.org/resource/GNOME_Videos", "http://dbpedia.org/resource/GNUSim8085", "http://dbpedia.org/resource/GNU_Assembler", "http://dbpedia.org/resource/GNU_Compiler_Collection", "http://dbpedia.org/resource/GNU_Core_Utilities", "http://dbpedia.org/resource/GNU_Debugger", "http://dbpedia.org/resource/GNU_Emacs", "http://dbpedia.org/resource/GNU_Fortran", "http://dbpedia.org/resource/GNU_GRUB", "http://dbpedia.org/resource/GNU_Linear_Programming_Kit", "http://dbpedia.org/resource/GNU_MPFR", "http://dbpedia.org/resource/GNU_Oleo", "http://dbpedia.org/resource/GNU_Paint", "http://dbpedia.org/resource/GNU_Parted", "http://dbpedia.org/resource/GNU_Privacy_Guard", "http://dbpedia.org/resource/GNU_Prolog", "http://dbpedia.org/resource/GNU_Readline", "http://dbpedia.org/resource/GNU_Scientific_Library", "http://dbpedia.org/resource/GNU_Screen", "http://dbpedia.org/resource/GNU_arch", "http://dbpedia.org/resource/GNU_nano", "http://dbpedia.org/resource/GNUnet", "http://dbpedia.org/resource/GObject", "http://dbpedia.org/resource/GPAC_Project_on_Advanced_Content", "http://dbpedia.org/resource/GPSBabel", "http://dbpedia.org/resource/GPUOpen", "http://dbpedia.org/resource/GPUTILS", "http://dbpedia.org/resource/GPXE", "http://dbpedia.org/resource/GRASS_GIS", "http://dbpedia.org/resource/GROMACS", "http://dbpedia.org/resource/GStreamer", "http://dbpedia.org/resource/GT.M", "http://dbpedia.org/resource/GTK", "http://dbpedia.org/resource/GTK_Scene_Graph_Kit", "http://dbpedia.org/resource/Galeon", "http://dbpedia.org/resource/Ganglia_(software)", "http://dbpedia.org/resource/Gargoyle_(router_firmware)", "http://dbpedia.org/resource/Geany", "http://dbpedia.org/resource/Gearman", "http://dbpedia.org/resource/Gedit", "http://dbpedia.org/resource/Geekbench", "http://dbpedia.org/resource/Geeqie", "http://dbpedia.org/resource/Generic_Mapping_Tools", "http://dbpedia.org/resource/HIARCS", "http://dbpedia.org/resource/HMMER", "http://dbpedia.org/resource/HP_Linux_Imaging_and_Printing", "http://dbpedia.org/resource/HTMLDOC", "http://dbpedia.org/resource/HTTrack", "http://dbpedia.org/resource/Hack_(video_game)", "http://dbpedia.org/resource/Haiku_PackageInstaller", "http://dbpedia.org/resource/Hamilton_C_shell", "http://dbpedia.org/resource/HandBrake", "http://dbpedia.org/resource/Hatari_(emulator)", "http://dbpedia.org/resource/Binary_File_Descriptor_library", "http://dbpedia.org/resource/SNNS", "http://dbpedia.org/resource/SPICE", "http://dbpedia.org/resource/SPIN_model_checker", "http://dbpedia.org/resource/SQL_Server_Express", "http://dbpedia.org/resource/SQLite", "http://dbpedia.org/resource/SVGALib", "http://dbpedia.org/resource/SWAD_(software)", "http://dbpedia.org/resource/SWFTools", "http://dbpedia.org/resource/SWI-Prolog", "http://dbpedia.org/resource/SWIG", "http://dbpedia.org/resource/Sagan_(software)", "http://dbpedia.org/resource/Sam_(text_editor)", "http://dbpedia.org/resource/Samba_(software)", "http://dbpedia.org/resource/Samhain_(software)", "http://dbpedia.org/resource/Sympa", "http://dbpedia.org/resource/Synaptic_(software)", "http://dbpedia.org/resource/Sysctl", "http://dbpedia.org/resource/Systat_(BSD)", "http://dbpedia.org/resource/SystemBuilder/SB+", "http://dbpedia.org/resource/SystemTap", "http://dbpedia.org/resource/System_Security_Services_Daemon", "http://dbpedia.org/resource/Systemd", "http://dbpedia.org/resource/TWRP_(software)", "http://dbpedia.org/resource/Tarantool", "http://dbpedia.org/resource/Tarsnap", "http://dbpedia.org/resource/Tcpdump", "http://dbpedia.org/resource/Tcsh", "http://dbpedia.org/resource/Ted_(word_processor)", "http://dbpedia.org/resource/Tee_(command)", "http://dbpedia.org/resource/Telegram_(software)", "http://dbpedia.org/resource/Telix", "http://dbpedia.org/resource/WaveLab", "http://dbpedia.org/resource/Wayland_(display_server_protocol)", "http://dbpedia.org/resource/Wc_(Unix)", "http://dbpedia.org/resource/WebP", "http://dbpedia.org/resource/Webalizer", "http://dbpedia.org/resource/Website_Meta_Language", "http://dbpedia.org/resource/WeeChat", "http://dbpedia.org/resource/Wenlin_Software_for_learning_Chinese", "http://dbpedia.org/resource/Wget", "http://dbpedia.org/resource/WildMIDI", "http://dbpedia.org/resource/Gwyddion_(software)", "http://dbpedia.org/resource/Sdb_(debugger)", "http://dbpedia.org/resource/Secure_copy_protocol", "http://dbpedia.org/resource/Seafile", "http://dbpedia.org/resource/Apache_Arrow", "http://dbpedia.org/resource/Apache_Avro", "http://dbpedia.org/resource/Apache_Axis2", "http://dbpedia.org/resource/Apache_Celix", "http://dbpedia.org/resource/Apache_CouchDB", "http://dbpedia.org/resource/Apache_HTTP_Server", "http://dbpedia.org/resource/Apache_Harmony", "http://dbpedia.org/resource/Apache_Portable_Runtime", "http://dbpedia.org/resource/Apache_SpamAssassin", "http://dbpedia.org/resource/Apache_Subversion", "http://dbpedia.org/resource/Apache_SystemDS", "http://dbpedia.org/resource/Apache_Thrift", "http://dbpedia.org/resource/AppArmor", "http://dbpedia.org/resource/AppImage", "http://dbpedia.org/resource/AppStream", "http://dbpedia.org/resource/AppleWin", "http://dbpedia.org/resource/Appserver.io", "http://dbpedia.org/resource/Ar_(Unix)", "http://dbpedia.org/resource/Arachne_(web_browser)", "http://dbpedia.org/resource/Archivemount", "http://dbpedia.org/resource/Arduino", "http://dbpedia.org/resource/Arena_(web_browser)", "http://dbpedia.org/resource/ArpON", "http://dbpedia.org/resource/Arpwatch", "http://dbpedia.org/resource/Elvis_(text_editor)", "http://dbpedia.org/resource/Emacs", "http://dbpedia.org/resource/Embeddable_Common_Lisp", "http://dbpedia.org/resource/Empathy_(software)", "http://dbpedia.org/resource/Emscripten", "http://dbpedia.org/resource/Enchant_(software)", "http://dbpedia.org/resource/Enduro/X", "http://dbpedia.org/resource/Enlightenment_Foundation_Libraries", "http://dbpedia.org/resource/Envsys", "http://dbpedia.org/resource/Eqn_(software)", "http://dbpedia.org/resource/Eraser_(software)", "http://dbpedia.org/resource/Erwise", "http://dbpedia.org/resource/EtherApe", "http://dbpedia.org/resource/Ethtool", "http://dbpedia.org/resource/Ettercap_(software)", "http://dbpedia.org/resource/Eucalyptus_(software)", "http://dbpedia.org/resource/Euler_(software)", "http://dbpedia.org/resource/Evergreen_(software)", "http://dbpedia.org/resource/Android_Runtime", "http://dbpedia.org/resource/Gerris_(software)", "http://dbpedia.org/resource/Getty_(Unix)", "http://dbpedia.org/resource/Gforth", "http://dbpedia.org/resource/Ghostscript", "http://dbpedia.org/resource/GiFT", "http://dbpedia.org/resource/Glade_Interface_Designer", "http://dbpedia.org/resource/Glftpd", "http://dbpedia.org/resource/Glibc", "http://dbpedia.org/resource/Glide_(API)", "http://dbpedia.org/resource/Gnome_Wave_Cleaner", "http://dbpedia.org/resource/Gnopernicus", "http://dbpedia.org/resource/GnuCash", "http://dbpedia.org/resource/GnuTLS", "http://dbpedia.org/resource/Gnumeric", "http://dbpedia.org/resource/Gnuplot", "http://dbpedia.org/resource/Gobby", "http://dbpedia.org/resource/GoldSrc", "http://dbpedia.org/resource/Gold_Box", "http://dbpedia.org/resource/Google_Chrome", "http://dbpedia.org/resource/Google_Native_Client", "http://dbpedia.org/resource/Google_Search", "http://dbpedia.org/resource/Gosling_Emacs", "http://dbpedia.org/resource/MapServer", "http://dbpedia.org/resource/MariaDB", "http://dbpedia.org/resource/Pintos", "http://dbpedia.org/resource/PipeWire", "http://dbpedia.org/resource/Pkg-config", "http://dbpedia.org/resource/Pkgsrc", "http://dbpedia.org/resource/Ploticus", "http://dbpedia.org/resource/Pluma_(text_editor)", "http://dbpedia.org/resource/Plymouth_(software)", "http://dbpedia.org/resource/Pngcrush", "http://dbpedia.org/resource/Polipo", "http://dbpedia.org/resource/Polkit", "http://dbpedia.org/resource/PortAudio", "http://dbpedia.org/resource/Portable_C_Compiler", "http://dbpedia.org/resource/Postfix_(software)", "http://dbpedia.org/resource/PostgreSQL", "http://dbpedia.org/resource/Potrace", "http://dbpedia.org/resource/PottersWheel", "http://dbpedia.org/resource/Pound_(networking)", "http://dbpedia.org/resource/PowerTOP", "http://dbpedia.org/resource/Praat", "http://dbpedia.org/resource/Premake", "http://dbpedia.org/resource/PreonVM", "http://dbpedia.org/resource/Pretty_Good_Privacy", "http://dbpedia.org/resource/Previous_(software)", "http://dbpedia.org/resource/Prime95", "http://dbpedia.org/resource/TenDRA_Compiler", "http://dbpedia.org/resource/Ten\u00e9s_Empanadas_Graciela", "http://dbpedia.org/resource/TeraChem", "http://dbpedia.org/resource/TestDisk", "http://dbpedia.org/resource/Texinfo", "http://dbpedia.org/resource/Textadept", "http://dbpedia.org/resource/Tgif_(program)", "http://dbpedia.org/resource/U1DB", "http://dbpedia.org/resource/UCBLogo", "http://dbpedia.org/resource/UClibc", "http://dbpedia.org/resource/UDE", "http://dbpedia.org/resource/UDP_Unicorn", "http://dbpedia.org/resource/UFRaw", "http://dbpedia.org/resource/ULE_scheduler", "http://dbpedia.org/resource/UMFPACK", "http://dbpedia.org/resource/UPower", "http://dbpedia.org/resource/UWSGI", "http://dbpedia.org/resource/Udev", "http://dbpedia.org/resource/UdiWWW", "http://dbpedia.org/resource/UltraDefrag", "http://dbpedia.org/resource/Unbound_(DNS_server)", "http://dbpedia.org/resource/Uniq", "http://dbpedia.org/resource/Universal_Windows_Platform", "http://dbpedia.org/resource/Unlambda", "http://dbpedia.org/resource/UnrealIRCd", "http://dbpedia.org/resource/Upstart_(software)", "http://dbpedia.org/resource/MagmaFS", "http://dbpedia.org/resource/Path_(social_network)", "http://dbpedia.org/resource/Pe_(text_editor)", "http://dbpedia.org/resource/PoorMan", "http://dbpedia.org/resource/VisIt", "http://dbpedia.org/resource/WWW_Interactive_Multipurpose_Server", "http://dbpedia.org/resource/LTIB", "http://dbpedia.org/resource/YARV", "http://dbpedia.org/resource/Hping", "http://dbpedia.org/resource/Xconfig", "http://dbpedia.org/resource/Zswap", "http://dbpedia.org/resource/APBS_(software)", "http://dbpedia.org/resource/Box86", "http://dbpedia.org/resource/Brain_Fuck_Scheduler", "http://dbpedia.org/resource/Brasero_(software)", "http://dbpedia.org/resource/Brotli", "http://dbpedia.org/resource/BSAFE", "http://dbpedia.org/resource/JamaicaVM", "http://dbpedia.org/resource/Java_(software_platform)", "http://dbpedia.org/resource/Java_OpenGL", "http://dbpedia.org/resource/Kerberos_(protocol)", "http://dbpedia.org/resource/Kernel-Mode_Driver_Framework", "http://dbpedia.org/resource/Kernel-based_Virtual_Machine", "http://dbpedia.org/resource/Bmon", "http://dbpedia.org/resource/Master_Password_(algorithm)", "http://dbpedia.org/resource/Math_Kernel_Library", "http://dbpedia.org/resource/Mathomatic", "http://dbpedia.org/resource/MatrixSSL", "http://dbpedia.org/resource/Mausezahn", "http://dbpedia.org/resource/Mbed_TLS", "http://dbpedia.org/resource/Mdadm", "http://dbpedia.org/resource/MediaLib", "http://dbpedia.org/resource/Media_Lovin'_Toolkit", "http://dbpedia.org/resource/Memcached", "http://dbpedia.org/resource/Menuconfig", "http://dbpedia.org/resource/Metacity", "http://dbpedia.org/resource/RanaVision", "http://dbpedia.org/resource/RasMol", "http://dbpedia.org/resource/Ratpoison", "http://dbpedia.org/resource/Realsoft_3D", "http://dbpedia.org/resource/RecordMyDesktop", "http://dbpedia.org/resource/Redis", "http://dbpedia.org/resource/Redshift_(software)", "http://dbpedia.org/resource/Remmina", "http://dbpedia.org/resource/Remote_Shell", "http://dbpedia.org/resource/Reprise_License_Manager", "http://dbpedia.org/resource/RetrievalWare", "http://dbpedia.org/resource/RetroArch", "http://dbpedia.org/resource/Revision_Control_System", "http://dbpedia.org/resource/The_Sleuth_Kit", "http://dbpedia.org/resource/Swsusp", "http://dbpedia.org/resource/XFast", "http://dbpedia.org/resource/Librsvg", "http://dbpedia.org/resource/OpenVR", "http://dbpedia.org/resource/Scalasca", "http://dbpedia.org/resource/389_Directory_Server", "http://dbpedia.org/resource/4th_Dimension_(software)", "http://dbpedia.org/resource/9wm", "http://dbpedia.org/resource/ADS-AC", "http://dbpedia.org/resource/AICCU", "http://dbpedia.org/resource/AMBER", "http://dbpedia.org/resource/AMDgpu_(Linux_kernel_module)", "http://dbpedia.org/resource/AMosaic", "http://dbpedia.org/resource/ANUGA_Hydro", "http://dbpedia.org/resource/AOLserver", "http://dbpedia.org/resource/ASCEND", "http://dbpedia.org/resource/ATATool", "http://dbpedia.org/resource/Nirvana_(software)", "http://dbpedia.org/resource/Nm_(Unix)", "http://dbpedia.org/resource/Nmap", "http://dbpedia.org/resource/Nnn_(file_manager)", "http://dbpedia.org/resource/Node.js", "http://dbpedia.org/resource/Nouveau_(software)", "http://dbpedia.org/resource/Ntfsprogs", "http://dbpedia.org/resource/Ntop", "http://dbpedia.org/resource/Nuitka", "http://dbpedia.org/resource/Nullsoft_Scriptable_Install_System", "http://dbpedia.org/resource/NumPy", "http://dbpedia.org/resource/Numba", "http://dbpedia.org/resource/OBS_Studio", "http://dbpedia.org/resource/OFono", "http://dbpedia.org/resource/OHRRPGCE", "http://dbpedia.org/resource/ORX", "http://dbpedia.org/resource/OSIP", "http://dbpedia.org/resource/OVN", "http://dbpedia.org/resource/GIO_(software)", "http://dbpedia.org/resource/Gossip_(software)", "http://dbpedia.org/resource/Internet_Speech_Audio_Codec", "http://dbpedia.org/resource/MyISAM", "http://dbpedia.org/resource/Lout_(software)", "http://dbpedia.org/resource/PUFFS_(NetBSD)", "http://dbpedia.org/resource/Rarian", "http://dbpedia.org/resource/OpenLava", "http://dbpedia.org/resource/X264", "http://dbpedia.org/resource/TOMLAB", "http://dbpedia.org/resource/PyCBC", "http://dbpedia.org/resource/Systemd-boot", "http://dbpedia.org/resource/Citadel/UX", "http://dbpedia.org/resource/Citcom", "http://dbpedia.org/resource/Clam_AntiVirus", "http://dbpedia.org/resource/Climm", "http://dbpedia.org/resource/Cliqz", "http://dbpedia.org/resource/ClockworkMod", "http://dbpedia.org/resource/Clutter_(software)", "http://dbpedia.org/resource/Cmus", "http://dbpedia.org/resource/Cocoa_(API)", "http://dbpedia.org/resource/Coda_(file_system)", "http://dbpedia.org/resource/CodeXL", "http://dbpedia.org/resource/Collaborative_Computational_Project_Number_4", "http://dbpedia.org/resource/Collectd", "http://dbpedia.org/resource/Comdb2", "http://dbpedia.org/resource/Comeau_C/C++", "http://dbpedia.org/resource/Comm", "http://dbpedia.org/resource/Commons_Daemon", "http://dbpedia.org/resource/Compiz", "http://dbpedia.org/resource/Completely_Fair_Scheduler", "http://dbpedia.org/resource/Concurrent_Versions_System", "http://dbpedia.org/resource/Conky_(software)", "http://dbpedia.org/resource/ConnMan", "http://dbpedia.org/resource/Join_(Unix)", "http://dbpedia.org/resource/Sawmill_(software)", "http://dbpedia.org/resource/Sbase", "http://dbpedia.org/resource/Sc_(spreadsheet_calculator)", "http://dbpedia.org/resource/SciPy", "http://dbpedia.org/resource/Scigress", "http://dbpedia.org/resource/Scilab_Image_Processing", "http://dbpedia.org/resource/Scrcpy", "http://dbpedia.org/resource/Scrot", "http://dbpedia.org/resource/SeaBIOS", "http://dbpedia.org/resource/Searchdaimon", "http://dbpedia.org/resource/Seccomp", "http://dbpedia.org/resource/Secure_file_transfer_program", "http://dbpedia.org/resource/Security-Enhanced_Linux", "http://dbpedia.org/resource/Sed", "http://dbpedia.org/resource/Seed_(programming)", "http://dbpedia.org/resource/F9_Financial_Reporting", "http://dbpedia.org/resource/Fdupes", "http://dbpedia.org/resource/Mpxplay", "http://dbpedia.org/resource/Pipelight", "http://dbpedia.org/resource/B.A.T.M.A.N.", "http://dbpedia.org/resource/BARON", "http://dbpedia.org/resource/BBEdit", "http://dbpedia.org/resource/BRL-CAD", "http://dbpedia.org/resource/BWPing", "http://dbpedia.org/resource/Bacula", "http://dbpedia.org/resource/Balsa_(email_client)", "http://dbpedia.org/resource/Barebox", "http://dbpedia.org/resource/Basename", "http://dbpedia.org/resource/Bash_(Unix_shell)", "http://dbpedia.org/resource/AberMUD", "http://dbpedia.org/resource/Info-ZIP", "http://dbpedia.org/resource/Info_(Unix)", "http://dbpedia.org/resource/Ingres_(database)", "http://dbpedia.org/resource/Initng", "http://dbpedia.org/resource/Insight_Segmentation_and_Registration_Toolkit", "http://dbpedia.org/resource/Instrument_Neutral_Distributed_Interface", "http://dbpedia.org/resource/Integrated_Performance_Primitives", "http://dbpedia.org/resource/Intelligent_Input_Bus", "http://dbpedia.org/resource/Interlisp", "http://dbpedia.org/resource/Internet_Download_Manager", "http://dbpedia.org/resource/Internet_Low_Bitrate_Codec", "http://dbpedia.org/resource/IoTivity", "http://dbpedia.org/resource/Ipchains", "http://dbpedia.org/resource/Iperf", "http://dbpedia.org/resource/Ipkg", "http://dbpedia.org/resource/Iproute2", "http://dbpedia.org/resource/Iptables", "http://dbpedia.org/resource/IrcII", "http://dbpedia.org/resource/Irssi", "http://dbpedia.org/resource/JACK_Audio_Connection_Kit", "http://dbpedia.org/resource/JED_(text_editor)", "http://dbpedia.org/resource/JModelica.org", "http://dbpedia.org/resource/JWM", "http://dbpedia.org/resource/Jabberd2", "http://dbpedia.org/resource/Mixxx", "http://dbpedia.org/resource/Mktemp", "http://dbpedia.org/resource/MoSync", "http://dbpedia.org/resource/MoarVM", "http://dbpedia.org/resource/Mobile_Web_Server", "http://dbpedia.org/resource/Mod_mono", "http://dbpedia.org/resource/Mod_openpgp", "http://dbpedia.org/resource/Modest_(email_client)", "http://dbpedia.org/resource/MoltenVK", "http://dbpedia.org/resource/Mondo_Rescue", "http://dbpedia.org/resource/MonetDB", "http://dbpedia.org/resource/Mongoose_(web_server)", "http://dbpedia.org/resource/Mongrel2", "http://dbpedia.org/resource/Monit", "http://dbpedia.org/resource/Monkey_HTTP_Server", "http://dbpedia.org/resource/Mono_(software)", "http://dbpedia.org/resource/Montage_(image_software)", "http://dbpedia.org/resource/MoonEdit", "http://dbpedia.org/resource/Moonlight_(runtime)", "http://dbpedia.org/resource/More_(command)", "http://dbpedia.org/resource/Mosaic_(web_browser)", "http://dbpedia.org/resource/Motion_(surveillance_software)", "http://dbpedia.org/resource/Mozilla_Thunderbird", "http://dbpedia.org/resource/Mpg123", "http://dbpedia.org/resource/Mpv_(media_player)", "http://dbpedia.org/resource/MsQuic", "http://dbpedia.org/resource/MscGen", "http://dbpedia.org/resource/Msmtp", "http://dbpedia.org/resource/MtPaint", "http://dbpedia.org/resource/MuPDF", "http://dbpedia.org/resource/Multiplan", "http://dbpedia.org/resource/Multipurpose_Transaction_Protocol", "http://dbpedia.org/resource/Music_on_Console", "http://dbpedia.org/resource/Mutt_(email_client)", "http://dbpedia.org/resource/Mutter_(software)", "http://dbpedia.org/resource/MyPaint", "http://dbpedia.org/resource/MySQL", "http://dbpedia.org/resource/MySensors", "http://dbpedia.org/resource/MythTV", "http://dbpedia.org/resource/N2n", "http://dbpedia.org/resource/NPF_(firewall)", "http://dbpedia.org/resource/NTFS-3G", "http://dbpedia.org/resource/Nagios", "http://dbpedia.org/resource/Naim_(software)", "http://dbpedia.org/resource/NanoVM", "http://dbpedia.org/resource/Top_(software)", "http://dbpedia.org/resource/Tor_(network)", "http://dbpedia.org/resource/Torque_(game_engine)", "http://dbpedia.org/resource/Touch_(command)", "http://dbpedia.org/resource/Tox_(protocol)", "http://dbpedia.org/resource/Toybox", "http://dbpedia.org/resource/Tr_(Unix)", "http://dbpedia.org/resource/Transbase", "http://dbpedia.org/resource/TrueCrypt", "http://dbpedia.org/resource/Trusted_Platform_Module", "http://dbpedia.org/resource/Ttcp", "http://dbpedia.org/resource/Tux_Paint", "http://dbpedia.org/resource/Tux_Typing", "http://dbpedia.org/resource/Tuxedo_(software)", "http://dbpedia.org/resource/Twm", "http://dbpedia.org/resource/Jedi_(game_engine)", "http://dbpedia.org/resource/K_virtual_machine", "http://dbpedia.org/resource/Karbon_(software)", "http://dbpedia.org/resource/Ls", "http://dbpedia.org/resource/Troff", "http://dbpedia.org/resource/AV1", "http://dbpedia.org/resource/AWeb", "http://dbpedia.org/resource/ActiveX", "http://dbpedia.org/resource/Adaptive_Server_Enterprise", "http://dbpedia.org/resource/Adobe_FrameMaker", "http://dbpedia.org/resource/Adobe_PDF_Library", "http://dbpedia.org/resource/Advanced_Intrusion_Detection_Environment", "http://dbpedia.org/resource/Advanced_Linux_Sound_Architecture", "http://dbpedia.org/resource/Advanced_Visualization_Studio", "http://dbpedia.org/resource/Adventure_Game_Studio", "http://dbpedia.org/resource/Aegisub", "http://dbpedia.org/resource/Aerospike_(database)", "http://dbpedia.org/resource/AfterStep", "http://dbpedia.org/resource/After_Dark_(software)", "http://dbpedia.org/resource/Budgie_(desktop_environment)", "http://dbpedia.org/resource/Bullet_(software)", "http://dbpedia.org/resource/Bup", "http://dbpedia.org/resource/BusyBox", "http://dbpedia.org/resource/CDex", "http://dbpedia.org/resource/CHKDSK", "http://dbpedia.org/resource/CIFSD", "http://dbpedia.org/resource/CMU_Sphinx", "http://dbpedia.org/resource/CMake", "http://dbpedia.org/resource/CPython", "http://dbpedia.org/resource/CSipSimple", "http://dbpedia.org/resource/CTWM", "http://dbpedia.org/resource/CUBRID", "http://dbpedia.org/resource/CUPS", "http://dbpedia.org/resource/CURL", "http://dbpedia.org/resource/C_shell", "http://dbpedia.org/resource/Cairo_(graphics)", "http://dbpedia.org/resource/Calibre_(software)", "http://dbpedia.org/resource/Cdrtools", "http://dbpedia.org/resource/Cemu", "http://dbpedia.org/resource/Cgroups", "http://dbpedia.org/resource/Ch_(computer_programming)", "http://dbpedia.org/resource/Cheat_Engine", "http://dbpedia.org/resource/Cheese_(software)", "http://dbpedia.org/resource/Chewing_(Input_Method)", "http://dbpedia.org/resource/Chipmunk_(software)", "http://dbpedia.org/resource/Chntpw", "http://dbpedia.org/resource/Chrony", "http://dbpedia.org/resource/CinePaint", "http://dbpedia.org/resource/CircuitPython", "http://dbpedia.org/resource/Stevie_(text_editor)", "http://dbpedia.org/resource/Strace", "http://dbpedia.org/resource/Streamripper", "http://dbpedia.org/resource/Strings_(Unix)", "http://dbpedia.org/resource/Strip_(Unix)", "http://dbpedia.org/resource/StrongSwan", "http://dbpedia.org/resource/Studierfenster", "http://dbpedia.org/resource/Sudo", "http://dbpedia.org/resource/Surf_(web_browser)", "http://dbpedia.org/resource/Surface_Evolver", "http://dbpedia.org/resource/Suricata_(software)", "http://dbpedia.org/resource/Sway_(window_manager)", "http://dbpedia.org/resource/TRE_(computing)", "http://dbpedia.org/resource/Tachyon_(software)", "http://dbpedia.org/resource/Tail_(Unix)", "http://dbpedia.org/resource/Tangerine_(software)", "http://dbpedia.org/resource/Test_(Unix)", "http://dbpedia.org/resource/Tribe_Flood_Network", "http://dbpedia.org/resource/PageSpinner", "http://dbpedia.org/resource/Libgcrypt", "http://dbpedia.org/resource/MPSolve", "http://dbpedia.org/resource/Casync", "http://dbpedia.org/resource/Hoc_(programming_language)", "http://dbpedia.org/resource/HomeBank", "http://dbpedia.org/resource/Honeyd", "http://dbpedia.org/resource/Bcache", "http://dbpedia.org/resource/LCC_(compiler)", "http://dbpedia.org/resource/LHA_(file_format)", "http://dbpedia.org/resource/LINA_(software)", "http://dbpedia.org/resource/LIRC", "http://dbpedia.org/resource/LTTng", "http://dbpedia.org/resource/LXC", "http://dbpedia.org/resource/LZ4_(compression_algorithm)", "http://dbpedia.org/resource/LZFSE", "http://dbpedia.org/resource/LabPlot", "http://dbpedia.org/resource/LatencyTOP", "http://dbpedia.org/resource/Launchd", "http://dbpedia.org/resource/LeJOS", "http://dbpedia.org/resource/Leafnode", "http://dbpedia.org/resource/FlexAID", "http://dbpedia.org/resource/Tracker_(search_software)", "http://dbpedia.org/resource/Tree_(command)", "http://dbpedia.org/resource/Ultrix_Window_Manager", "http://dbpedia.org/resource/User-mode_Linux", "http://dbpedia.org/resource/PicoSpan", "http://dbpedia.org/resource/Doas", "http://dbpedia.org/resource/DocPoint", "http://dbpedia.org/resource/Dokan_Library", "http://dbpedia.org/resource/Doom_engine", "http://dbpedia.org/resource/DotGNU", "http://dbpedia.org/resource/Dovecot_(software)", "http://dbpedia.org/resource/Dpkg", "http://dbpedia.org/resource/DrQueue", "http://dbpedia.org/resource/Dracut_(software)", "http://dbpedia.org/resource/Dropbear_(software)", "http://dbpedia.org/resource/Dryad_(programming)", "http://dbpedia.org/resource/Drync", "http://dbpedia.org/resource/Dvdisaster", "http://dbpedia.org/resource/Dwm", "http://dbpedia.org/resource/EAS3", "http://dbpedia.org/resource/ECryptfs", "http://dbpedia.org/resource/EDI_(software)", "http://dbpedia.org/resource/Simple_DirectMedia_Layer", "http://dbpedia.org/resource/Simple_Protocol_for_Independent_Computing_Environments", "http://dbpedia.org/resource/Simutrans", "http://dbpedia.org/resource/Singular_(software)", "http://dbpedia.org/resource/Sjeng_(software)", "http://dbpedia.org/resource/Slapt-get", "http://dbpedia.org/resource/Sleep_(command)", "http://dbpedia.org/resource/Slrn", "http://dbpedia.org/resource/Small-C", "http://dbpedia.org/resource/Smart_Common_Input_Method", "http://dbpedia.org/resource/Smartmontools", "http://dbpedia.org/resource/Sndio", "http://dbpedia.org/resource/SoX", "http://dbpedia.org/resource/Sodipodi", "http://dbpedia.org/resource/Sort_(Unix)", "http://dbpedia.org/resource/SourceMeter", "http://dbpedia.org/resource/SourcePuller", "http://dbpedia.org/resource/Source_Filmmaker", "http://dbpedia.org/resource/NOVA_(filesystem)", "http://dbpedia.org/resource/OpenDataPlane", "http://dbpedia.org/resource/Physics_Abstraction_Layer", "http://dbpedia.org/resource/Ssh-keygen", "http://dbpedia.org/resource/Xarchiver", "http://dbpedia.org/resource/ScrollKeeper", "http://dbpedia.org/resource/Zram", "http://dbpedia.org/resource/Tagsistant", "http://dbpedia.org/resource/Couchbase_Server", "http://dbpedia.org/resource/Courier_Mail_Server", "http://dbpedia.org/resource/Cron", "http://dbpedia.org/resource/Cryptlib", "http://dbpedia.org/resource/Csound", "http://dbpedia.org/resource/Cubesat_Space_Protocol", "http://dbpedia.org/resource/Curses_(programming_library)", "http://dbpedia.org/resource/Cwm_(window_manager)", "http://dbpedia.org/resource/Cygwin", "http://dbpedia.org/resource/Cyrus_IMAP_server", "http://dbpedia.org/resource/D-Bus", "http://dbpedia.org/resource/DAP_(software)", "http://dbpedia.org/resource/DATACOM/DB", "http://dbpedia.org/resource/DBase", "http://dbpedia.org/resource/DECIPHER_(software)", "http://dbpedia.org/resource/DNF_(software)", "http://dbpedia.org/resource/DTrace", "http://dbpedia.org/resource/Daemontools", "http://dbpedia.org/resource/GpsDrive", "http://dbpedia.org/resource/Gpsd", "http://dbpedia.org/resource/GrADS", "http://dbpedia.org/resource/Grace_(plotting_tool)", "http://dbpedia.org/resource/GraphicsMagick", "http://dbpedia.org/resource/Graphviz", "http://dbpedia.org/resource/Gregorio_(software)", "http://dbpedia.org/resource/Grep", "http://dbpedia.org/resource/Gretl", "http://dbpedia.org/resource/Grip_(software)", "http://dbpedia.org/resource/Grsync", "http://dbpedia.org/resource/Gtranslator", "http://dbpedia.org/resource/Gummi_(software)", "http://dbpedia.org/resource/Guvcview", "http://dbpedia.org/resource/Gzip", "http://dbpedia.org/resource/H2O_(web_server)", "http://dbpedia.org/resource/HAProxy", "http://dbpedia.org/resource/Asterisk_(PBX)", "http://dbpedia.org/resource/At_(command)", "http://dbpedia.org/resource/Heirloom_Project", "http://dbpedia.org/resource/Hercules_(emulator)", "http://dbpedia.org/resource/Hiawatha_(web_server)", "http://dbpedia.org/resource/Highly_Available_STorage", "http://dbpedia.org/resource/Hildon", "http://dbpedia.org/resource/HipHop_for_PHP", "http://dbpedia.org/resource/MATE_(software)", "http://dbpedia.org/resource/MBROLA", "http://dbpedia.org/resource/MCSim", "http://dbpedia.org/resource/MCabber", "http://dbpedia.org/resource/MIDletPascal", "http://dbpedia.org/resource/MIMEDefang", "http://dbpedia.org/resource/MIRC", "http://dbpedia.org/resource/MPEG_Audio_Decoder", "http://dbpedia.org/resource/MPIR_(mathematics_software)", "http://dbpedia.org/resource/MPMC", "http://dbpedia.org/resource/MPlayer", "http://dbpedia.org/resource/MSQL", "http://dbpedia.org/resource/MTR_(software)", "http://dbpedia.org/resource/MUMPS_(software)", "http://dbpedia.org/resource/MacRuby", "http://dbpedia.org/resource/Madagascar_(software)", "http://dbpedia.org/resource/Magic_(software)", "http://dbpedia.org/resource/Make_(software)", "http://dbpedia.org/resource/Mandoc", "http://dbpedia.org/resource/CLIP_OS", "http://dbpedia.org/resource/Ring_(programming_language)", "http://dbpedia.org/resource/Rio_(windowing_system)", "http://dbpedia.org/resource/Rm_(Unix)", "http://dbpedia.org/resource/Rmetrics", "http://dbpedia.org/resource/Climate_Data_Operators", "http://dbpedia.org/resource/Sally_Project", "http://dbpedia.org/resource/Suhosin", "http://dbpedia.org/resource/IBM_Configuration_Management_Version_Control_(CMVC)", "http://dbpedia.org/resource/ISLISP", "http://dbpedia.org/resource/Ex_(text_editor)", "http://dbpedia.org/resource/Exe2bin", "http://dbpedia.org/resource/Exim", "http://dbpedia.org/resource/Expat_(software)", "http://dbpedia.org/resource/Expect", "http://dbpedia.org/resource/Express_Data_Path", "http://dbpedia.org/resource/Ext2Fsd", "http://dbpedia.org/resource/Ezmlm", "http://dbpedia.org/resource/FAAC", "http://dbpedia.org/resource/FEATool_Multiphysics", "http://dbpedia.org/resource/FFTW", "http://dbpedia.org/resource/FIGlet", "http://dbpedia.org/resource/FRRouting", "http://dbpedia.org/resource/Fairy-Max", "http://dbpedia.org/resource/Farstream", "http://dbpedia.org/resource/Fast_Artificial_Neural_Network", "http://dbpedia.org/resource/Fast_Library_for_Number_Theory", "http://dbpedia.org/resource/Fcron", "http://dbpedia.org/resource/Fdm_(software)", "http://dbpedia.org/resource/Feh_(image_viewer)", "http://dbpedia.org/resource/Fermat_(computer_algebra_system)", "http://dbpedia.org/resource/Ffdshow", "http://dbpedia.org/resource/File_(command)", "http://dbpedia.org/resource/File_Compare", "http://dbpedia.org/resource/File_System_Visualizer", "http://dbpedia.org/resource/Filesystem_in_Userspace", "http://dbpedia.org/resource/Find_(Windows)", "http://dbpedia.org/resource/Firefly_(computer_program)", "http://dbpedia.org/resource/Firefly_Media_Server", "http://dbpedia.org/resource/Firefox_for_iOS", "http://dbpedia.org/resource/Flashrom_(utility)", "http://dbpedia.org/resource/Flatpak", "http://dbpedia.org/resource/Fldigi", "http://dbpedia.org/resource/FlexNet_Publisher", "http://dbpedia.org/resource/FlightGear", "http://dbpedia.org/resource/Flowgrind", "http://dbpedia.org/resource/Flutter_(software)", "http://dbpedia.org/resource/Foma_(software)", "http://dbpedia.org/resource/FontForge", "http://dbpedia.org/resource/Joe's_Own_Editor", "http://dbpedia.org/resource/Lemon_(parser_generator)", "http://dbpedia.org/resource/Less_(Unix)", "http://dbpedia.org/resource/Lex_(software)", "http://dbpedia.org/resource/LiVES", "http://dbpedia.org/resource/LibGDX", "http://dbpedia.org/resource/LibSBML", "http://dbpedia.org/resource/LibTIFF", "http://dbpedia.org/resource/Libart", "http://dbpedia.org/resource/Libav", "http://dbpedia.org/resource/Libcaca", "http://dbpedia.org/resource/Libdca", "http://dbpedia.org/resource/Libdvdcss", "http://dbpedia.org/resource/Libevent", "http://dbpedia.org/resource/Libffi", "http://dbpedia.org/resource/Libjpeg", "http://dbpedia.org/resource/Liblzg", "http://dbpedia.org/resource/Libpng", "http://dbpedia.org/resource/Libqrencode", "http://dbpedia.org/resource/LibreDWG", "http://dbpedia.org/resource/LibreSSL", "http://dbpedia.org/resource/Libsndfile", "http://dbpedia.org/resource/Libusb", "http://dbpedia.org/resource/Libuv", "http://dbpedia.org/resource/Libvirt", "http://dbpedia.org/resource/Libvisual", "http://dbpedia.org/resource/Libvpx", "http://dbpedia.org/resource/Libwww", "http://dbpedia.org/resource/Libxml2", "http://dbpedia.org/resource/Libzip", "http://dbpedia.org/resource/LifeLines", "http://dbpedia.org/resource/Liferea", "http://dbpedia.org/resource/LightDM", "http://dbpedia.org/resource/LightGBM", "http://dbpedia.org/resource/Lightning_Memory-Mapped_Database", "http://dbpedia.org/resource/Lighttpd", "http://dbpedia.org/resource/Lightweight_Java_Game_Library", "http://dbpedia.org/resource/Line_Mode_Browser", "http://dbpedia.org/resource/Links_(web_browser)", "http://dbpedia.org/resource/Linphone", "http://dbpedia.org/resource/Lint_(software)", "http://dbpedia.org/resource/Linux-HA", "http://dbpedia.org/resource/LinuxMCE", "http://dbpedia.org/resource/Linux_PAM", "http://dbpedia.org/resource/Linux_Router_Project", "http://dbpedia.org/resource/Linux_Test_Project", "http://dbpedia.org/resource/Linux_Virtual_Server", "http://dbpedia.org/resource/Linux_color_management", "http://dbpedia.org/resource/Linux_namespaces", "http://dbpedia.org/resource/NaviServer", "http://dbpedia.org/resource/Navit", "http://dbpedia.org/resource/NcFTP", "http://dbpedia.org/resource/Ncdu", "http://dbpedia.org/resource/Ncurses", "http://dbpedia.org/resource/Ne_(text_editor)", "http://dbpedia.org/resource/Neatx", "http://dbpedia.org/resource/NekoVM", "http://dbpedia.org/resource/Nemo_(file_manager)", "http://dbpedia.org/resource/Net-SNMP", "http://dbpedia.org/resource/NetPIPE", "http://dbpedia.org/resource/NetXMS", "http://dbpedia.org/resource/Netfilter", "http://dbpedia.org/resource/Netpbm", "http://dbpedia.org/resource/Netperf", "http://dbpedia.org/resource/Netscape_Portable_Runtime", "http://dbpedia.org/resource/Netsniff-ng", "http://dbpedia.org/resource/Nettle_(cryptographic_library)", "http://dbpedia.org/resource/Netwide_Assembler", "http://dbpedia.org/resource/Network_Caller_ID", "http://dbpedia.org/resource/Network_Security_Toolkit", "http://dbpedia.org/resource/Network_UPS_Tools", "http://dbpedia.org/resource/Neuron_(software)", "http://dbpedia.org/resource/Newt_(programming_library)", "http://dbpedia.org/resource/Nftables", "http://dbpedia.org/resource/Nginx", "http://dbpedia.org/resource/Ngrep", "http://dbpedia.org/resource/Nhttpd", "http://dbpedia.org/resource/Pcap", "http://dbpedia.org/resource/Pcb-rnd", "http://dbpedia.org/resource/Pdnsd", "http://dbpedia.org/resource/PearPC", "http://dbpedia.org/resource/Pegasus_(workflow_management)", "http://dbpedia.org/resource/Pegasus_Mail", "http://dbpedia.org/resource/Percona_Server_for_MySQL", "http://dbpedia.org/resource/Perforce_Jam", "http://dbpedia.org/resource/Perl", "http://dbpedia.org/resource/Perl_Compatible_Regular_Expressions", "http://dbpedia.org/resource/Phalcon_(framework)", "http://dbpedia.org/resource/PhantomJS", "http://dbpedia.org/resource/Philip's_Music_Writer", "http://dbpedia.org/resource/Pi-hole", "http://dbpedia.org/resource/Pico_(text_editor)", "http://dbpedia.org/resource/Pro_Tools", "http://dbpedia.org/resource/ProcDump", "http://dbpedia.org/resource/Profanity_(instant_messaging_client)", "http://dbpedia.org/resource/Project64", "http://dbpedia.org/resource/Project_Chrono", "http://dbpedia.org/resource/Project_Unreality", "http://dbpedia.org/resource/Ps_(Unix)", "http://dbpedia.org/resource/Psyco", "http://dbpedia.org/resource/PuTTY", "http://dbpedia.org/resource/PulseAudio", "http://dbpedia.org/resource/Puma_(web_server)", "http://dbpedia.org/resource/Pwd", "http://dbpedia.org/resource/Py2exe", "http://dbpedia.org/resource/PyGTK", "http://dbpedia.org/resource/PyMOL", "http://dbpedia.org/resource/Pyrex_(programming_language)", "http://dbpedia.org/resource/Python_Imaging_Library", "http://dbpedia.org/resource/Pyxplot", "http://dbpedia.org/resource/Q-Chem", "http://dbpedia.org/resource/QDriverStation", "http://dbpedia.org/resource/QEMU", "http://dbpedia.org/resource/QLattice", "http://dbpedia.org/resource/Qfusion", "http://dbpedia.org/resource/Qmail", "http://dbpedia.org/resource/Quake_II_engine", "http://dbpedia.org/resource/Quake_engine", "http://dbpedia.org/resource/QuickC", "http://dbpedia.org/resource/QuteCom", "http://dbpedia.org/resource/REAPER", "http://dbpedia.org/resource/REFIt", "http://dbpedia.org/resource/ROCm", "http://dbpedia.org/resource/ROX_Desktop", "http://dbpedia.org/resource/RPM_Package_Manager", "http://dbpedia.org/resource/RRDtool", "http://dbpedia.org/resource/Radare2", "http://dbpedia.org/resource/Radiance_(software)", "http://dbpedia.org/resource/Radvd", "http://dbpedia.org/resource/Theora", "http://dbpedia.org/resource/Threema", "http://dbpedia.org/resource/Thttpd", "http://dbpedia.org/resource/TianoCore_EDK_II", "http://dbpedia.org/resource/Tig_(software)", "http://dbpedia.org/resource/TigerVNC", "http://dbpedia.org/resource/TightVNC", "http://dbpedia.org/resource/Timberwolf_(web_browser)", "http://dbpedia.org/resource/TimescaleDB", "http://dbpedia.org/resource/TinTin++", "http://dbpedia.org/resource/Tinc_(protocol)", "http://dbpedia.org/resource/Tk_(software)", "http://dbpedia.org/resource/Tkhtml", "http://dbpedia.org/resource/Tkrzw", "http://dbpedia.org/resource/Tmux", "http://dbpedia.org/resource/TomoPy", "http://dbpedia.org/resource/Winamp", "http://dbpedia.org/resource/WindowLab", "http://dbpedia.org/resource/Windows_File_Manager", "http://dbpedia.org/resource/Windows_Presentation_Foundation", "http://dbpedia.org/resource/Windows_Update_MiniTool", "http://dbpedia.org/resource/Wine_(software)", "http://dbpedia.org/resource/Wing_IDE", "http://dbpedia.org/resource/Winmostar", "http://dbpedia.org/resource/Winplot", "http://dbpedia.org/resource/Wirecast", "http://dbpedia.org/resource/WiredTiger", "http://dbpedia.org/resource/Wireshark", "http://dbpedia.org/resource/WolfSSH", "http://dbpedia.org/resource/WolfSSL", "http://dbpedia.org/resource/Wolfram_Mathematica", "http://dbpedia.org/resource/Workbench_(AmigaOS)", "http://dbpedia.org/resource/Wpa_supplicant", "http://dbpedia.org/resource/X-CD-Roast", "http://dbpedia.org/resource/X.Org_Server", "http://dbpedia.org/resource/X2x", "http://dbpedia.org/resource/XAD_(software)", "http://dbpedia.org/resource/XBill", "http://dbpedia.org/resource/XCB", "http://dbpedia.org/resource/XDM_(display_manager)", "http://dbpedia.org/resource/XForms_(toolkit)", "http://dbpedia.org/resource/XFree86", "http://dbpedia.org/resource/XMLStarlet", "http://dbpedia.org/resource/XMMS2", "http://dbpedia.org/resource/XQuartz", "http://dbpedia.org/resource/XVidCap", "http://dbpedia.org/resource/XZ_Utils", "http://dbpedia.org/resource/XaoS", "http://dbpedia.org/resource/Xdebug", "http://dbpedia.org/resource/Xed", "http://dbpedia.org/resource/Xen", "http://dbpedia.org/resource/Xephyr", "http://dbpedia.org/resource/Xinetd", "http://dbpedia.org/resource/Xlib", "http://dbpedia.org/resource/Xmove", "http://dbpedia.org/resource/XnView", "http://dbpedia.org/resource/Xombrero", "http://dbpedia.org/resource/Xplico", "http://dbpedia.org/resource/Xrdb", "http://dbpedia.org/resource/Xsnow", "http://dbpedia.org/resource/Xsupplicant", "http://dbpedia.org/resource/Xvid", "http://dbpedia.org/resource/Xwax", "http://dbpedia.org/resource/Xzgv", "http://dbpedia.org/resource/YAMBO_code", "http://dbpedia.org/resource/YASARA", "http://dbpedia.org/resource/Yate_(telephony_engine)", "http://dbpedia.org/resource/FreeSWITCH", "http://dbpedia.org/resource/GDK", "http://dbpedia.org/resource/GIFBuilder", "http://dbpedia.org/resource/LessTif", "http://dbpedia.org/resource/InnoDB", "http://dbpedia.org/resource/Xinit", "http://dbpedia.org/resource/RubyMotion", "http://dbpedia.org/resource/EGL_(API)", "http://dbpedia.org/resource/ELinks", "http://dbpedia.org/resource/ESpeak", "http://dbpedia.org/resource/Eclipse_Paho", "http://dbpedia.org/resource/Ed_(text_editor)", "http://dbpedia.org/resource/EdgeX_Foundry", "http://dbpedia.org/resource/Eggdrop", "http://dbpedia.org/resource/Julius_(software)", "http://dbpedia.org/resource/KDE_Display_Manager", "http://dbpedia.org/resource/KDevelop", "http://dbpedia.org/resource/Kamailio", "http://dbpedia.org/resource/Kannel_(telecommunications)", "http://dbpedia.org/resource/Lm_sensors", "http://dbpedia.org/resource/Logical_Volume_Manager_(Linux)", "http://dbpedia.org/resource/Lotus_1-2-3", "http://dbpedia.org/resource/Lspci", "http://dbpedia.org/resource/LuaJIT", "http://dbpedia.org/resource/LuaTeX", "http://dbpedia.org/resource/Lustre_(file_system)", "http://dbpedia.org/resource/LwIP", "http://dbpedia.org/resource/Lynx_(web_browser)", "http://dbpedia.org/resource/Off-the-Record_Messaging", "http://dbpedia.org/resource/Oidentd", "http://dbpedia.org/resource/OllyDbg", "http://dbpedia.org/resource/Oniguruma", "http://dbpedia.org/resource/OpenAFS", "http://dbpedia.org/resource/OpenAL", "http://dbpedia.org/resource/OpenBGPD", "http://dbpedia.org/resource/OpenCPN", "http://dbpedia.org/resource/OpenCTM", "http://dbpedia.org/resource/OpenCV", "http://dbpedia.org/resource/OpenCaster", "http://dbpedia.org/resource/OpenDNSSEC", "http://dbpedia.org/resource/OpenFX_(software)", "http://dbpedia.org/resource/OpenGL", "http://dbpedia.org/resource/OpenGL_SC", "http://dbpedia.org/resource/OpenIKED", "http://dbpedia.org/resource/OpenJ9", "http://dbpedia.org/resource/OpenJPEG", "http://dbpedia.org/resource/OpenLDAP", "http://dbpedia.org/resource/OpenModelica", "http://dbpedia.org/resource/OpenNTPD", "http://dbpedia.org/resource/OpenOSPFD", "http://dbpedia.org/resource/OpenPAM", "http://dbpedia.org/resource/OpenQRM", "http://dbpedia.org/resource/OpenRCT2", "http://dbpedia.org/resource/OpenResty", "http://dbpedia.org/resource/OpenSMTPD", "http://dbpedia.org/resource/OpenSSH", "http://dbpedia.org/resource/OpenSSL", "http://dbpedia.org/resource/OpenTTD", "http://dbpedia.org/resource/OpenVAS", "http://dbpedia.org/resource/OpenVPN", "http://dbpedia.org/resource/OpenVX", "http://dbpedia.org/resource/OpenWebRTC", "http://dbpedia.org/resource/Open_Management_Infrastructure", "http://dbpedia.org/resource/Open_vSwitch", "http://dbpedia.org/resource/Openbox", "http://dbpedia.org/resource/Opentracker", "http://dbpedia.org/resource/Ophcrack", "http://dbpedia.org/resource/Opkg", "http://dbpedia.org/resource/OptiX", "http://dbpedia.org/resource/Oracle_Database", "http://dbpedia.org/resource/Oracle_VM_Server_for_x86", "http://dbpedia.org/resource/Oracle_iPlanet_Web_Server", "http://dbpedia.org/resource/OrangeFS", "http://dbpedia.org/resource/Orange_(software)", "http://dbpedia.org/resource/OrionVM", "http://dbpedia.org/resource/Osmocom", "http://dbpedia.org/resource/OutGuess", "http://dbpedia.org/resource/Owl_Scientific_Computing", "http://dbpedia.org/resource/Serpent_(software)", "http://dbpedia.org/resource/Shared_Source_Common_Language_Infrastructure", "http://dbpedia.org/resource/Shotcut", "http://dbpedia.org/resource/ShredIt", "http://dbpedia.org/resource/Shyster_(expert_system)", "http://dbpedia.org/resource/Siag_Office", "http://dbpedia.org/resource/Sigrok", "http://dbpedia.org/resource/Core_Foundation", "http://dbpedia.org/resource/Sparse", "http://dbpedia.org/resource/Spartan_(chemistry_software)", "http://dbpedia.org/resource/Speed_Dreams", "http://dbpedia.org/resource/SpiderMonkey", "http://dbpedia.org/resource/Split_(Unix)", "http://dbpedia.org/resource/Spread_Toolkit", "http://dbpedia.org/resource/Squeezelite", "http://dbpedia.org/resource/SquidNT", "http://dbpedia.org/resource/Stacheldraht", "http://dbpedia.org/resource/Stackless_Python", "http://dbpedia.org/resource/Staden_Package", "http://dbpedia.org/resource/StarLogo", "http://dbpedia.org/resource/Starcounter", "http://dbpedia.org/resource/StatXact", "http://dbpedia.org/resource/Stata", "http://dbpedia.org/resource/State_Threads", "http://dbpedia.org/resource/Steinberg_Cubase", "http://dbpedia.org/resource/Sterling_(program)", "http://dbpedia.org/resource/Netscape_Mail_&_Newsgroups", "http://dbpedia.org/resource/Xynth", "http://dbpedia.org/resource/Yacc", "http://dbpedia.org/resource/Pspell", "http://dbpedia.org/resource/BibDesk", "http://dbpedia.org/resource/Binary_Ninja", "http://dbpedia.org/resource/Bioctl", "http://dbpedia.org/resource/BitKeeper", "http://dbpedia.org/resource/BitPim", "http://dbpedia.org/resource/BitchX", "http://dbpedia.org/resource/BitlBee", "http://dbpedia.org/resource/Blend4Web", "http://dbpedia.org/resource/BlueGriffon", "http://dbpedia.org/resource/Bluefish_(software)", "http://dbpedia.org/resource/Bnetd", "http://dbpedia.org/resource/Boehm_garbage_collector", "http://dbpedia.org/resource/Hw.sensors", "http://dbpedia.org/resource/Hybris_(software)", "http://dbpedia.org/resource/Hydra_(software)", "http://dbpedia.org/resource/Hypermail", "http://dbpedia.org/resource/I3_(window_manager)", "http://dbpedia.org/resource/IA_Writer", "http://dbpedia.org/resource/IBM_Db2", "http://dbpedia.org/resource/IOzone", "http://dbpedia.org/resource/IPOP", "http://dbpedia.org/resource/IPPOLIT", "http://dbpedia.org/resource/IPXE", "http://dbpedia.org/resource/IW_(game_engine)", "http://dbpedia.org/resource/IWork", "http://dbpedia.org/resource/Icecast", "http://dbpedia.org/resource/Id_Tech_3", "http://dbpedia.org/resource/IdeaList", "http://dbpedia.org/resource/Iftop", "http://dbpedia.org/resource/Ii_(IRC_client)", "http://dbpedia.org/resource/ImageMagick", "http://dbpedia.org/resource/InSSIDer", "http://dbpedia.org/resource/Indent_(Unix)", "http://dbpedia.org/resource/Kino_(software)", "http://dbpedia.org/resource/Kmscon", "http://dbpedia.org/resource/Komodo_(chess)", "http://dbpedia.org/resource/Komodo_Edit", "http://dbpedia.org/resource/Komodo_IDE", "http://dbpedia.org/resource/KornShell", "http://dbpedia.org/resource/Kyoto_Common_Lisp", "http://dbpedia.org/resource/Listaller", "http://dbpedia.org/resource/LiteSpeed_Web_Server", "http://dbpedia.org/resource/Little_CMS", "http://dbpedia.org/resource/MiKTeX", "http://dbpedia.org/resource/MicroPython", "http://dbpedia.org/resource/MicroSIP", "http://dbpedia.org/resource/Microsoft_SQL_Server", "http://dbpedia.org/resource/Midnight_Commander", "http://dbpedia.org/resource/Mimalloc", "http://dbpedia.org/resource/MinGW", "http://dbpedia.org/resource/Ming_library", "http://dbpedia.org/resource/Mingw-w64", "http://dbpedia.org/resource/MiniGL", "http://dbpedia.org/resource/Minicom", "http://dbpedia.org/resource/Minimo", "http://dbpedia.org/resource/Mintty", "http://dbpedia.org/resource/Miranda_IM", "http://dbpedia.org/resource/Miredo", "http://dbpedia.org/resource/P.I.P.S.", "http://dbpedia.org/resource/P0f", "http://dbpedia.org/resource/PARI/GP", "http://dbpedia.org/resource/PCem", "http://dbpedia.org/resource/PForth", "http://dbpedia.org/resource/PHYLIP", "http://dbpedia.org/resource/PIC_(markup_language)", "http://dbpedia.org/resource/PLANTA_Project", "http://dbpedia.org/resource/PLplot", "http://dbpedia.org/resource/PPSSPP", "http://dbpedia.org/resource/PROJ", "http://dbpedia.org/resource/PSIPRED", "http://dbpedia.org/resource/PSPP", "http://dbpedia.org/resource/PTGui", "http://dbpedia.org/resource/PUPS_P3", "http://dbpedia.org/resource/PVCS", "http://dbpedia.org/resource/PackageKit", "http://dbpedia.org/resource/Panda3D", "http://dbpedia.org/resource/Pandas_(software)", "http://dbpedia.org/resource/Pango", "http://dbpedia.org/resource/Panoweaver", "http://dbpedia.org/resource/ParaView", "http://dbpedia.org/resource/Parallel_Virtual_File_System", "http://dbpedia.org/resource/Parallel_Virtual_Machine", "http://dbpedia.org/resource/Parrot_virtual_machine", "http://dbpedia.org/resource/Parsec_(software)", "http://dbpedia.org/resource/Partclone", "http://dbpedia.org/resource/Rsync", "http://dbpedia.org/resource/Rsyslog", "http://dbpedia.org/resource/Ruby_(programming_language)", "http://dbpedia.org/resource/Ruby_MRI", "http://dbpedia.org/resource/Rufus_(software)", "http://dbpedia.org/resource/Runit", "http://dbpedia.org/resource/Rzip", "http://dbpedia.org/resource/SAP_ERP", "http://dbpedia.org/resource/SAS_(software)", "http://dbpedia.org/resource/SCM_(Scheme_implementation)", "http://dbpedia.org/resource/SCST", "http://dbpedia.org/resource/SILK", "http://dbpedia.org/resource/SIMH", "http://dbpedia.org/resource/SIOD", "http://dbpedia.org/resource/SIP_(software)", "http://dbpedia.org/resource/SK1_(program)", "http://dbpedia.org/resource/SLinCA@Home", "http://dbpedia.org/resource/SMPEG", "http://dbpedia.org/resource/Executor_(software)", "http://dbpedia.org/resource/FORM_(symbolic_manipulation_system)", "http://dbpedia.org/resource/Finch_(software)", "http://dbpedia.org/resource/GLX", "http://dbpedia.org/resource/GPM_(software)", "http://dbpedia.org/resource/Gnulib", "http://dbpedia.org/resource/Haiku_Applications", "http://dbpedia.org/resource/Haiku_Depot", "http://dbpedia.org/resource/Halalgoogling", "http://dbpedia.org/resource/RTLinux", "http://dbpedia.org/resource/OpenSC", "http://dbpedia.org/resource/Mod_qos", "http://dbpedia.org/resource/Yudit", "http://dbpedia.org/resource/ZBar", "http://dbpedia.org/resource/ZBrush", "http://dbpedia.org/resource/ZMailer", "http://dbpedia.org/resource/ZMap_(software)", "http://dbpedia.org/resource/Z_shell", "http://dbpedia.org/resource/Zabbix", "http://dbpedia.org/resource/Zathura_(document_viewer)", "http://dbpedia.org/resource/Zend_Engine", "http://dbpedia.org/resource/ZeroVM", "http://dbpedia.org/resource/Zerynth", "http://dbpedia.org/resource/Zlib", "http://dbpedia.org/resource/Zstd", "http://dbpedia.org/resource/Zuse_Institute_Berlin", "http://dbpedia.org/resource/Ipconfig", "http://dbpedia.org/resource/Ircle", "http://dbpedia.org/resource/NicheStack_TCP/IPv4", "http://dbpedia.org/resource/Video4Linux", "http://dbpedia.org/resource/MySQL_Archive", "http://dbpedia.org/resource/Se_(text_editor)", "http://dbpedia.org/resource/MarkLogic_Server", "http://dbpedia.org/resource/Sysbench"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/artist> <http://dbpedia.org/resource/Cirque_du_Soleil_discography> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Artist>}"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/director> <http://dbpedia.org/resource/Orson_Welles> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": ["http://dbpedia.org/resource/Filming_Othello", "http://dbpedia.org/resource/Filming_The_Trial", "http://dbpedia.org/resource/Moby_Dick_(unfinished_film)", "http://dbpedia.org/resource/Around_the_World_with_Orson_Welles", "http://dbpedia.org/resource/The_Deep_(unfinished_film)", "http://dbpedia.org/resource/Vienna_(film)", "http://dbpedia.org/resource/The_Miracle_of_St._Anne", "http://dbpedia.org/resource/The_Fountain_of_Youth_(film)", "http://dbpedia.org/resource/The_Lady_from_Shanghai", "http://dbpedia.org/resource/The_Magnificent_Ambersons_(film)", "http://dbpedia.org/resource/The_Merchant_of_Venice_(1969_film)", "http://dbpedia.org/resource/The_Other_Side_of_the_Wind", "http://dbpedia.org/resource/The_Stranger_(1946_film)", "http://dbpedia.org/resource/The_Trial_(1962_film)", "http://dbpedia.org/resource/The_Heroine", "http://dbpedia.org/resource/Citizen_Kane", "http://dbpedia.org/resource/Citizen_Kane_trailer", "http://dbpedia.org/resource/The_Immortal_Story", "http://dbpedia.org/resource/Mr._Arkadin", "http://dbpedia.org/resource/Too_Much_Johnson_(1938_film)", "http://dbpedia.org/resource/Touch_of_Evil", "http://dbpedia.org/resource/Chimes_at_Midnight", "http://dbpedia.org/resource/Twelfth_Night_(1933_film)", "http://dbpedia.org/resource/Don_Quixote_(unfinished_film)", "http://dbpedia.org/resource/One_Man_Band_(unfinished_film)", "http://dbpedia.org/resource/Macbeth_(1948_film)", "http://dbpedia.org/resource/Three_Cases_of_Murder", "http://dbpedia.org/resource/Orson_Welles'_Magic_Show", "http://dbpedia.org/resource/Othello_(1951_film)", "http://dbpedia.org/resource/Black_Magic_(1949_film)"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/discoverer> <http://dbpedia.org/resource/Urbain_Le_Verrier> . }"}, "answers": ["http://dbpedia.org/resource/Neptune"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cascade_Airways> <http://dbpedia.org/property/ideology> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/crosses> <http://dbpedia.org/resource/Box_girder_bridge> . ?x <http://dbpedia.org/ontology/river> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/party> <http://dbpedia.org/resource/Austria> . ?x <http://dbpedia.org/property/membership> ?uri }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jason_Hayne> <http://dbpedia.org/ontology/formerTeam> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/commander> <http://dbpedia.org/resource/Richard_Taylor_(colonel)> . ?x <http://dbpedia.org/property/battles> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/artist> <http://dbpedia.org/resource/Tangerine_Dream> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Artist>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/language> <http://dbpedia.org/resource/Germanic_languages> . ?uri <http://dbpedia.org/ontology/writer> ?x . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/employer> <http://dbpedia.org/resource/ITV_(TV_network)> . }"}, "answers": ["66"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/writer> <http://dbpedia.org/resource/Carl_Sagan> } "}, "answers": ["http://dbpedia.org/resource/Wanderers_(2014_film)", "http://dbpedia.org/resource/Contact_(1997_American_film)"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/voice> <http://dbpedia.org/resource/Peanuts_Motion_Comics> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Thomas_Secunda> <http://dbpedia.org/ontology/owner> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/regionServed> <http://dbpedia.org/resource/Mid_Wales> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/nationality> <http://dbpedia.org/resource/British_people> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": ["http://dbpedia.org/resource/David_M._Thompson", "http://dbpedia.org/resource/Anya_Camilleri", "http://dbpedia.org/resource/Gordon_Hessler", "http://dbpedia.org/resource/Steven_Lewis_Simpson", "http://dbpedia.org/resource/Chris_New"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/placeOfBirth> <http://dbpedia.org/resource/United_States> } "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Steve_Romeo> <http://dbpedia.org/ontology/deathPlace> ?uri } "}, "answers": ["http://dbpedia.org/resource/United_States", "http://dbpedia.org/resource/Ranger_Peak_(Wyoming)", "http://dbpedia.org/resource/Wyoming"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/athletics> <http://dbpedia.org/resource/National_Collegiate_Athletic_Association> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/University>}"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/designer> <http://dbpedia.org/resource/Lars_Bak_(computer_programmer)> . ?x <http://dbpedia.org/property/language> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lemberger_LD20b> <http://dbpedia.org/property/engine> ?uri . <http://dbpedia.org/resource/H101> <http://dbpedia.org/ontology/origin> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/placeOfBirth> <http://dbpedia.org/resource/Louisiana> . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/9_to_5_(musical)> <http://dbpedia.org/property/musicBy> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/keyPeople> <http://dbpedia.org/resource/Kazuo_Hirai> . ?x <http://dbpedia.org/ontology/builder> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Rostov-Glavny> <http://dbpedia.org/ontology/servingRailwayLine> ?uri } "}, "answers": ["http://dbpedia.org/resource/Krasnodar"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/league> <http://dbpedia.org/resource/National_Hockey_League> . ?x <http://dbpedia.org/ontology/team> ?uri . }"}, "answers": ["1226"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/placeOfDeath> <http://dbpedia.org/resource/St._Petersburg> . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/ingredient> <http://dbpedia.org/resource/Coconut> . ?x <http://dbpedia.org/ontology/country> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/American_Mediterranean_Sea> <http://dbpedia.org/ontology/country> ?uri } "}, "answers": ["http://dbpedia.org/resource/Venezuela", "http://dbpedia.org/resource/Aruba", "http://dbpedia.org/resource/Belize", "http://dbpedia.org/resource/Haiti", "http://dbpedia.org/resource/Antigua_and_Barbuda", "http://dbpedia.org/resource/United_States", "http://dbpedia.org/resource/Jamaica", "http://dbpedia.org/resource/Colombia", "http://dbpedia.org/resource/Trinidad_and_Tobago", "http://dbpedia.org/resource/Honduras", "http://dbpedia.org/resource/Dominican_Republic", "http://dbpedia.org/resource/Costa_Rica", "http://dbpedia.org/resource/Cuba", "http://dbpedia.org/resource/Cura\u00e7ao", "http://dbpedia.org/resource/Guatemala", "http://dbpedia.org/resource/Lesser_Antilles", "http://dbpedia.org/resource/Nicaragua", "http://dbpedia.org/resource/Puerto_Rico", "http://dbpedia.org/resource/Mexico", "http://dbpedia.org/resource/Panama"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/owningCompany> <http://dbpedia.org/resource/Turner_Broadcasting_System> . ?uri <http://dbpedia.org/property/network> ?x . }"}, "answers": ["http://dbpedia.org/resource/Rick_and_Bubba", "http://dbpedia.org/resource/Junkin'_with_Val_and_Dave", "http://dbpedia.org/resource/American_Morning", "http://dbpedia.org/resource/Anderson_Cooper_360\u00b0", "http://dbpedia.org/resource/Declassified_(2016_TV_series)", "http://dbpedia.org/resource/Sanjay_Gupta_MD", "http://dbpedia.org/resource/(Get_to)_The_Point", "http://dbpedia.org/resource/Anthony_Bourdain:_Parts_Unknown", "http://dbpedia.org/resource/Planet_in_Peril", "http://dbpedia.org/resource/The_2000s_(miniseries)", "http://dbpedia.org/resource/United_Shades_of_America", "http://dbpedia.org/resource/Both_Sides_with_Jesse_Jackson", "http://dbpedia.org/resource/Reliable_Sources", "http://dbpedia.org/resource/The_Eighties_(miniseries)", "http://dbpedia.org/resource/The_History_of_Comedy", "http://dbpedia.org/resource/The_Hunt_with_John_Walsh", "http://dbpedia.org/resource/The_Movies_(miniseries)", "http://dbpedia.org/resource/The_Next_List", "http://dbpedia.org/resource/The_Nineties_(miniseries)", "http://dbpedia.org/resource/The_Seventies_(miniseries)", "http://dbpedia.org/resource/The_Situation_Room_with_Wolf_Blitzer", "http://dbpedia.org/resource/The_Sixties_(miniseries)", "http://dbpedia.org/resource/The_Wonder_List_with_Bill_Weir", "http://dbpedia.org/resource/Nomad_with_Carlton_McCoy", "http://dbpedia.org/resource/Connie_Chung_Tonight", "http://dbpedia.org/resource/Morgan_Spurlock_Inside_Man", "http://dbpedia.org/resource/Achieving_the_Perfect_10", "http://dbpedia.org/resource/CNN-News18", "http://dbpedia.org/resource/CNN_Brazil", "http://dbpedia.org/resource/CNN_Chile", "http://dbpedia.org/resource/CNN_Daybreak", "http://dbpedia.org/resource/CNN_Heroes", "http://dbpedia.org/resource/CNN_Indonesia", "http://dbpedia.org/resource/CNN_International_Europe/Middle_East/Africa", "http://dbpedia.org/resource/CNN_Newsroom", "http://dbpedia.org/resource/CNN_Portugal", "http://dbpedia.org/resource/CNN_Presents", "http://dbpedia.org/resource/CNN_Special_Investigations_Unit", "http://dbpedia.org/resource/Campbell_Brown_(TV_program)", "http://dbpedia.org/resource/Chicagoland_(TV_series)", "http://dbpedia.org/resource/History_of_the_Sitcom", "http://dbpedia.org/resource/Larry_King_Live", "http://dbpedia.org/resource/Don_Lemon_Tonight", "http://dbpedia.org/resource/Somebody's_Gotta_Do_It", "http://dbpedia.org/resource/Crossfire_(American_TV_program)", "http://dbpedia.org/resource/Cuomo_Prime_Time", "http://dbpedia.org/resource/D._L._Hughley_Breaks_the_News", "http://dbpedia.org/resource/High_Profits", "http://dbpedia.org/resource/CNN_International_Asia_Pacific", "http://dbpedia.org/resource/CNN_International_South_Asia", "http://dbpedia.org/resource/Rick's_List", "http://dbpedia.org/resource/Fareed_Zakaria_GPS", "http://dbpedia.org/resource/New_Day_(TV_program)", "http://dbpedia.org/resource/New_Year's_Eve_Live", "http://dbpedia.org/resource/NewsNight_with_Aaron_Brown", "http://dbpedia.org/resource/Piers_Morgan_Live", "http://dbpedia.org/resource/Race_for_the_White_House", "http://dbpedia.org/resource/This_Is_Life_with_Lisa_Ling", "http://dbpedia.org/resource/This_Week_in_Politics", "http://dbpedia.org/resource/Early_Start", "http://dbpedia.org/resource/Stanley_Tucci:_Searching_for_Italy", "http://dbpedia.org/resource/Starting_Point", "http://dbpedia.org/resource/State_of_the_Union_(American_TV_program)", "http://dbpedia.org/resource/In_the_Arena", "http://dbpedia.org/resource/Your_Bottom_Line", "http://dbpedia.org/resource/Your_Money", "http://dbpedia.org/resource/Armanon_Ka_Balidaan-Aarakshan", "http://dbpedia.org/resource/Me_Aajji_Aur_Sahib", "http://dbpedia.org/resource/Meethi_Choori_No_1", "http://dbpedia.org/resource/Ramayan_(2008_TV_series)", "http://dbpedia.org/resource/Ratan_Ka_Rishta", "http://dbpedia.org/resource/Chandragupta_Maurya_(2011_TV_series)", "http://dbpedia.org/resource/Swayamvar_(TV_series)", "http://dbpedia.org/resource/Dwarkadheesh_Bhagwaan_Shree_Krishn", "http://dbpedia.org/resource/Gunahon_Ka_Devta_(TV_series)", "http://dbpedia.org/resource/Jyoti_(TV_series)", "http://dbpedia.org/resource/Looteri_Dulhan", "http://dbpedia.org/resource/Zor_Ka_Jhatka:_Total_Wipeout"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pandaruan_Bridge> <http://dbpedia.org/ontology/maintainedBy> ?uri } "}, "answers": ["http://dbpedia.org/resource/Brunei", "http://dbpedia.org/resource/Public_Works_Department_(Brunei)", "http://dbpedia.org/resource/Malaysia", "http://dbpedia.org/resource/Malaysian_Public_Works_Department"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/river> <http://dbpedia.org/resource/Zambia> . ?x <http://dbpedia.org/property/dam> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cahora_Bassa> <http://dbpedia.org/property/inflow> ?uri } "}, "answers": ["http://dbpedia.org/resource/Zambezi_River"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Fikret_Orman> <http://dbpedia.org/property/almaMater> ?uri } "}, "answers": ["http://dbpedia.org/resource/University_of_Florida", "http://dbpedia.org/resource/Y\u0131ld\u0131z_Technical_University"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Evraz> <http://dbpedia.org/ontology/owningCompany> ?uri } "}, "answers": ["http://dbpedia.org/resource/Roman_Abramovich"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Berlin> . ?x <http://dbpedia.org/ontology/leader> ?uri . }"}, "answers": ["47"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/relatives> <http://dbpedia.org/resource/Barry_Voight> . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/state> <http://dbpedia.org/resource/Mecklenburg-Vorpommern> . ?x <http://dbpedia.org/property/cities> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/creator> <http://dbpedia.org/resource/Creature_Comforts> . ?x <http://dbpedia.org/property/awards> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Monticello,_Maine> <http://dbpedia.org/ontology/area> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/artist> <http://dbpedia.org/resource/Katy_B._Raptor> . ?x <http://dbpedia.org/property/label> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/2015_Pro_Duta_FC_season> <http://dbpedia.org/property/stadium> ?uri } "}, "answers": ["http://dbpedia.org/resource/Teladan_Stadium", "http://dbpedia.org/resource/Medan", "http://dbpedia.org/resource/Stadio_degli_Oliveti", "http://dbpedia.org/resource/Indonesia", "Cavanis Stadium", "SGU BSD-City Field", "SPH Karawaci Field", "Stadio Buon Riposo", "Stadio Cavanis", "T.D. Pardede Field"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pointe_d'Aveneyre> <http://dbpedia.org/ontology/mountainRange> ?uri } "}, "answers": ["http://dbpedia.org/resource/Swiss_Alps"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Jerry_Bock> . ?uri <http://dbpedia.org/ontology/basedOn> ?x . }"}, "answers": ["1"]}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/editing> <http://dbpedia.org/resource/Mark_Stevens_(film_editor)> . ?uri <http://dbpedia.org/ontology/director> <http://dbpedia.org/resource/Joel_Schumacher> } "}, "answers": ["7"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/judges> <http://dbpedia.org/resource/Ludacris> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": ["http://dbpedia.org/resource/Rising_Star_(American_TV_series)"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/league> <http://dbpedia.org/resource/Argentine_Primera_Divisi\u00f3n> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Youthclubs>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/deathCause> <http://dbpedia.org/resource/Hanging> . ?x <http://dbpedia.org/ontology/opponent> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Francis_Bacon", "http://dbpedia.org/resource/Edward_Coke"]}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Lawrence_Okoye> <http://dbpedia.org/property/nationality> ?uri } "}, "answers": ["1"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/party> <http://dbpedia.org/resource/Barasat_(Lok_Sabha_constituency)> . ?x <http://dbpedia.org/ontology/party> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/album> <http://dbpedia.org/resource/Harry_and_the_Potters_(album)> . ?x <http://dbpedia.org/ontology/genre> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Arthur_Gorgei> <http://dbpedia.org/property/successor> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/editing> <http://dbpedia.org/resource/Mark_Stevens_(film_editor)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": ["14"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Journal_of_Cerebral_Blood_Flow_&_Metabolism> <http://dbpedia.org/property/academicDiscipline> ?uri . <http://dbpedia.org/resource/Ragout_fin> <http://dbpedia.org/ontology/ingredient> ?uri} "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Jason_Carter> } "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Aubie> <http://dbpedia.org/property/mascot> ?uri . <http://dbpedia.org/resource/SportsTeam> ?uri} "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/placeOfBurial> <http://dbpedia.org/resource/Rome> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/RoyalPerson>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cornell_University_Press> <http://dbpedia.org/property/parent> ?uri . <http://dbpedia.org/resource/Mario_Garc\u00eda_Menocal> <http://dbpedia.org/ontology/almaMater> ?uri} "}, "answers": ["http://dbpedia.org/resource/Cornell_University"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/placeOfBirth> <http://dbpedia.org/resource/England> . ?x <http://dbpedia.org/ontology/religion> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/MacKenzie_Miller> <http://dbpedia.org/ontology/birthPlace> ?uri } "}, "answers": ["http://dbpedia.org/resource/Versailles,_Kentucky", "http://dbpedia.org/resource/United_States", "http://dbpedia.org/resource/Kentucky"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/canonizedBy> <http://dbpedia.org/resource/Agatha_of_Sicily> . ?x <http://dbpedia.org/property/birthPlace> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/award> <http://dbpedia.org/resource/Royal_Astronomical_Society> . ?x <http://dbpedia.org/property/doctoralStudents> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Subrahmanyan_Chandrasekhar", "http://dbpedia.org/resource/Hermann_Bondi", "http://dbpedia.org/resource/Leslie_Comrie", "http://dbpedia.org/resource/George_Efstathiou", "http://dbpedia.org/resource/Bur\u00e7in_Mutlu-Pakdil"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/placeOfDeath> <http://dbpedia.org/resource/Church_of_England> . ?x <http://dbpedia.org/ontology/deathPlace> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/address> <http://dbpedia.org/resource/Renaissance_Center> } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/restingplace> <http://dbpedia.org/resource/Madrid> . ?uri <http://dbpedia.org/ontology/author> ?x . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/notableWork> <http://dbpedia.org/resource/Band_of_Brothers_(miniseries)> . ?uri <http://dbpedia.org/property/writers> ?x . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/kingdom> <http://dbpedia.org/resource/Animal> . ?x <http://dbpedia.org/property/species> ?uri . }"}, "answers": ["74010"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/nearestCity> <http://dbpedia.org/resource/Helsinki> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/BodyOfWater>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bruce_Beutler> <http://dbpedia.org/property/awards> ?uri } "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Thomas_Egerton_(publisher)> <http://dbpedia.org/ontology/publisher> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Sony> <http://dbpedia.org/property/instrument> ?uri . <http://dbpedia.org/resource/Asus> <http://dbpedia.org/ontology/jointCommunity> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Congress_of_Industrial_Organizations> <http://dbpedia.org/ontology/founder> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/formerTeam> <http://dbpedia.org/resource/Toronto_Argonauts> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/AmericanFootballPlayer>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/opponent> <http://dbpedia.org/resource/Benjamin_Spock> . ?x <http://dbpedia.org/property/office> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/majorShrine> <http://dbpedia.org/resource/Pozna\u0144> . ?x <http://dbpedia.org/ontology/saint> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/militaryBranch> <http://dbpedia.org/resource/The_Continental_Army> . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Vangelis> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": ["http://dbpedia.org/resource/De_Mantel_der_Liefde", "http://dbpedia.org/resource/Alexander_(2004_film)", "http://dbpedia.org/resource/1492:_Conquest_of_Paradise", "http://dbpedia.org/resource/Antarctica_(1983_film)", "http://dbpedia.org/resource/The_Bounty_(1984_film)", "http://dbpedia.org/resource/The_Plague_(1992_film)", "http://dbpedia.org/resource/The_Wild_Nation", "http://dbpedia.org/resource/Missing_(1982_film)", "http://dbpedia.org/resource/Trashed_(film)", "http://dbpedia.org/resource/Twilight_of_Shadows", "http://dbpedia.org/resource/Chariots_of_Fire", "http://dbpedia.org/resource/Chariots_of_Fire_(play)", "http://dbpedia.org/resource/Do_You_Hear_the_Dogs_Barking%3F", "http://dbpedia.org/resource/Crime_and_Passion", "http://dbpedia.org/resource/El_Greco_(2007_film)", "http://dbpedia.org/resource/Bitter_Moon", "http://dbpedia.org/resource/Blade_Runner", "http://dbpedia.org/resource/De_Nuremberg_\u00e0_Nuremberg"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/species> <http://dbpedia.org/resource/Vitis_vinifera> . ?x <http://dbpedia.org/property/wineRegion> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Rolling_Stone_Album_Guide> <http://dbpedia.org/property/publisher> ?uri } "}, "answers": ["http://dbpedia.org/resource/Random_House", "http://dbpedia.org/resource/Fireside_Books", "Random House/Rolling Stone Press"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/21Vianet> <http://dbpedia.org/property/services> ?uri . }"}, "answers": ["9"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/crosses> <http://dbpedia.org/resource/Box_girder_bridge> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/River>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Saleen_S5S_Raptor> <http://dbpedia.org/property/designer> ?uri } "}, "answers": ["http://dbpedia.org/resource/Warren,_Michigan", "http://dbpedia.org/resource/ASC_Creative_Services", "http://dbpedia.org/resource/Michigan"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/1999_San_Marino_Grand_Prix> <http://dbpedia.org/property/firstDriver> ?uri } "}, "answers": ["http://dbpedia.org/resource/Michael_Schumacher"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/doctoralStudents> <http://dbpedia.org/resource/Erich_Bagge> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}"}, "answers": ["http://dbpedia.org/resource/Werner_Heisenberg"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/commander> <http://dbpedia.org/resource/Moonbase_Commander> . ?x <http://dbpedia.org/ontology/territory> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Union_State> <http://dbpedia.org/ontology/largestCity> ?uri } "}, "answers": ["http://dbpedia.org/resource/Moscow"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Micheal_Williams> <http://dbpedia.org/ontology/athletics> ?uri . <http://dbpedia.org/resource/Syracuse_University> <http://dbpedia.org/property/owner> ?uri} "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/distributor> <http://dbpedia.org/resource/Ted_Hartley> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/routeEnd> <http://dbpedia.org/resource/Madison,_Wisconsin> . ?x <http://dbpedia.org/property/routeStart> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/commander> <http://dbpedia.org/resource/Colin_Powell> } "}, "answers": ["http://dbpedia.org/resource/Air_engagements_of_the_Gulf_War", "http://dbpedia.org/resource/January_1993_airstrikes_on_Iraq", "http://dbpedia.org/resource/1993_cruise_missile_strikes_on_Iraq", "http://dbpedia.org/resource/Gulf_War", "http://dbpedia.org/resource/Gulf_War_air_campaign", "http://dbpedia.org/resource/Liberation_of_Kuwait_campaign"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/United_States_Congress> <http://dbpedia.org/property/houses> ?uri } "}, "answers": ["http://dbpedia.org/resource/United_States_House_of_Representatives", "http://dbpedia.org/resource/United_States_Senate"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/locationCity> <http://dbpedia.org/resource/Toronto> } "}, "answers": ["http://dbpedia.org/resource/Alliance_Atlantis", "http://dbpedia.org/resource/Altus_Group", "http://dbpedia.org/resource/Overbond", "http://dbpedia.org/resource/Detour_Gold", "http://dbpedia.org/resource/The_Woodbridge_Company", "http://dbpedia.org/resource/Alamos_Gold", "http://dbpedia.org/resource/Foresters_Financial", "http://dbpedia.org/resource/ForeverSpin", "http://dbpedia.org/resource/GFL_Environmental", "http://dbpedia.org/resource/Tangerine_Bank", "http://dbpedia.org/resource/Wealth_One_Bank_of_Canada", "http://dbpedia.org/resource/Wealthsimple", "http://dbpedia.org/resource/Standard_Chartered_Bank_of_Canada", "http://dbpedia.org/resource/Enthusiast_Gaming", "http://dbpedia.org/resource/Equifax_Canada", "http://dbpedia.org/resource/Playing_With_Time,_Inc.", "http://dbpedia.org/resource/Portfolio_Entertainment", "http://dbpedia.org/resource/Temple_Street_Productions", "http://dbpedia.org/resource/Ubisoft_Toronto", "http://dbpedia.org/resource/LGA_Architectural_Partners", "http://dbpedia.org/resource/Breakthrough_Entertainment", "http://dbpedia.org/resource/British_American_Oil_Company", "http://dbpedia.org/resource/Canada_Lands_Company", "http://dbpedia.org/resource/Canadian_Breweries", "http://dbpedia.org/resource/Red_Rose_Tea", "http://dbpedia.org/resource/Reliance_Home_Comfort", "http://dbpedia.org/resource/6ixBuzz", "http://dbpedia.org/resource/North_American_Palladium", "http://dbpedia.org/resource/Home_Bank_of_Canada", "http://dbpedia.org/resource/Rothmans,_Benson_&_Hedges", "http://dbpedia.org/resource/Trader_Corporation", "http://dbpedia.org/resource/Score_Media_and_Gaming", "http://dbpedia.org/resource/Bank_of_Canada_(commercial)", "http://dbpedia.org/resource/Bank_of_Upper_Canada", "http://dbpedia.org/resource/Intact_Financial", "http://dbpedia.org/resource/Torn_Banner_Studios", "http://dbpedia.org/resource/Toronto_Arenas", "http://dbpedia.org/resource/Toronto_Blueshirts", "http://dbpedia.org/resource/Toronto_Maple_Leafs", "http://dbpedia.org/resource/Toronto_Parking_Authority", "http://dbpedia.org/resource/Toronto_St._Patricks", "http://dbpedia.org/resource/Torstar_Syndication_Services", "http://dbpedia.org/resource/TransPod", "http://dbpedia.org/resource/Tricon_Residential", "http://dbpedia.org/resource/Tridel", "http://dbpedia.org/resource/The_Canadian_Press__The_Canadian_Press__1", "http://dbpedia.org/resource/Abitibi_Power_and_Paper_Company", "http://dbpedia.org/resource/CHIN_Radio/TV_International", "http://dbpedia.org/resource/CI_Financial", "http://dbpedia.org/resource/CNW_Group", "http://dbpedia.org/resource/Canada_Bread", "http://dbpedia.org/resource/Canada_Trust", "http://dbpedia.org/resource/Canadian_Aeroplanes", "http://dbpedia.org/resource/Canadian_Imperial_Bank_of_Commerce", "http://dbpedia.org/resource/Canadian_Motor", "http://dbpedia.org/resource/Canadian_Party_Life", "http://dbpedia.org/resource/Choice_Properties_REIT", "http://dbpedia.org/resource/Holt_Renfrew", "http://dbpedia.org/resource/HomeStars", "http://dbpedia.org/resource/Horizons_ETFs", "http://dbpedia.org/resource/Bell_Media", "http://dbpedia.org/resource/KWG_Resources", "http://dbpedia.org/resource/Zafin", "http://dbpedia.org/resource/National_Benefit_Authority", "http://dbpedia.org/resource/Docebo", "http://dbpedia.org/resource/Dome_Mines", "http://dbpedia.org/resource/Dominion_Voting_Systems", "http://dbpedia.org/resource/Drinkbox_Studios", "http://dbpedia.org/resource/Dylex", "http://dbpedia.org/resource/ECN_Capital", "http://dbpedia.org/resource/Snowman_(company)", "http://dbpedia.org/resource/Soliton_Incorporated", "http://dbpedia.org/resource/Navigator_Ltd", "http://dbpedia.org/resource/Neilson_Dairy", "http://dbpedia.org/resource/Crave_(streaming_service)", "http://dbpedia.org/resource/Daily_News_Brands_(Torstar)", "http://dbpedia.org/resource/Guyana_Goldfields", "http://dbpedia.org/resource/Ask_The_Doctor", "http://dbpedia.org/resource/Herb_(company)", "http://dbpedia.org/resource/Rhombus_Media", "http://dbpedia.org/resource/FirstService", "http://dbpedia.org/resource/First_Capital_REIT", "http://dbpedia.org/resource/Liquor_Control_Board_of_Ontario", "http://dbpedia.org/resource/Nautilus_Minerals", "http://dbpedia.org/resource/Penningtons", "http://dbpedia.org/resource/Questrade", "http://dbpedia.org/resource/Tokyo_Smoke", "http://dbpedia.org/resource/Woodbine_Entertainment_Group", "http://dbpedia.org/resource/Wow_Unlimited_Media", "http://dbpedia.org/resource/Insight_Productions", "http://dbpedia.org/resource/Longbow_Games", "http://dbpedia.org/resource/Ontario_Bank", "http://dbpedia.org/resource/Knightsbridge_Foreign_Exchange", "http://dbpedia.org/resource/BioSteel_Sports_Nutrition", "http://dbpedia.org/resource/Bitstrips", "http://dbpedia.org/resource/I._P._Sharp_Associates", "http://dbpedia.org/resource/IA_Clarington_Investments", "http://dbpedia.org/resource/Iamgold", "http://dbpedia.org/resource/Kirkland_Lake_Gold", "http://dbpedia.org/resource/Kuusport", "http://dbpedia.org/resource/Parkhurst_Products", "http://dbpedia.org/resource/Deco_Labels", "http://dbpedia.org/resource/Timbercreek_Asset_Management", "http://dbpedia.org/resource/Channel_Zero_(company)", "http://dbpedia.org/resource/Standard_Bank_of_Canada", "http://dbpedia.org/resource/Skyline_Investments", "http://dbpedia.org/resource/Environics__Proof__1", "http://dbpedia.org/resource/Canada_Development_Investment_Corporation__Canada_Development_Investment_Corporation__1", "http://dbpedia.org/resource/TitanFile__Inc.__1", "http://dbpedia.org/resource/Consolidated_Bank_of_Canada__Consolidated_Bank_of_Canada__1", "http://dbpedia.org/resource/Royal_Trust_(Canada)__Royal_Trust_Company__1"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Khok_Kwang> <http://dbpedia.org/ontology/timeZone> ?uri } "}, "answers": ["http://dbpedia.org/resource/Time_in_Thailand"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/opponent> <http://dbpedia.org/resource/Gervase_Helwys> . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Michael_Roos_(ice_hockey)> <http://dbpedia.org/property/name> ?uri . <http://dbpedia.org/resource/Ryan_Powell> <http://dbpedia.org/ontology/team> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/network> <http://dbpedia.org/resource/Prime_Time_Entertainment_Network> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": ["http://dbpedia.org/resource/Pointman", "http://dbpedia.org/resource/Island_City_(1994_film)", "http://dbpedia.org/resource/Time_Trax", "http://dbpedia.org/resource/Kung_Fu:_The_Legend_Continues"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/position> <http://dbpedia.org/resource/Defenceman> . ?x <http://dbpedia.org/ontology/team> ?uri . }"}, "answers": ["1608"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/1997_Canadian_Grand_Prix> <http://dbpedia.org/property/poleDriver> ?uri . <http://dbpedia.org/resource/1994_Spanish_Grand-Prix> <http://dbpedia.org/ontology/poleFormulaOneRacer> ?uri} "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Alan_Thicke> <http://dbpedia.org/property/narrated> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Companion_(Doctor_Who)> . ?uri <http://dbpedia.org/property/creator> <http://dbpedia.org/resource/CE._E._Webber> . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/garrison> <http://dbpedia.org/resource/Turin> . ?x <http://dbpedia.org/ontology/territory> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Thesaban> <http://dbpedia.org/property/locationCountry> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/predecessor> <http://dbpedia.org/resource/Mark_Latham> . ?uri <http://dbpedia.org/property/partner> <http://dbpedia.org/resource/Tim_Mathieson> . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/owners> <http://dbpedia.org/resource/Schibsted> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Newspaper>}"}, "answers": ["http://dbpedia.org/resource/Verdens_Gang", "http://dbpedia.org/resource/Bergens_Tidende", "http://dbpedia.org/resource/F\u00e6drelandsvennen", "http://dbpedia.org/resource/Aftenposten", "http://dbpedia.org/resource/Aftonbladet", "http://dbpedia.org/resource/Svenska_Dagbladet"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/bandMember> <http://dbpedia.org/resource/Robert_De_Niro> . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/operatingSystem> <http://dbpedia.org/resource/Microsoft_Windows> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Software>}"}, "answers": ["http://dbpedia.org/resource/AllJoyn", "http://dbpedia.org/resource/AllegroGraph", "http://dbpedia.org/resource/Allegro_Common_Lisp", "http://dbpedia.org/resource/Allmyapps", "http://dbpedia.org/resource/Altacast", "http://dbpedia.org/resource/Altap_Salamander", "http://dbpedia.org/resource/Altium_Designer", "http://dbpedia.org/resource/Amarok_(software)", "http://dbpedia.org/resource/Amazon_Lumberyard", "http://dbpedia.org/resource/Amazon_Virtual_Private_Cloud", "http://dbpedia.org/resource/Amiga_Forever", "http://dbpedia.org/resource/Analytica_(software)", "http://dbpedia.org/resource/AndreaMosaic", "http://dbpedia.org/resource/Anduril_(workflow_engine)", "http://dbpedia.org/resource/AetherPal", "http://dbpedia.org/resource/Agfa_impax_6", "http://dbpedia.org/resource/Darcs", "http://dbpedia.org/resource/Darktable", "http://dbpedia.org/resource/DashO_(software)", "http://dbpedia.org/resource/Dashlane", "http://dbpedia.org/resource/Dask_(software)", "http://dbpedia.org/resource/DataFlex", "http://dbpedia.org/resource/Data_Analytics_Library", "http://dbpedia.org/resource/Data_build_tool", "http://dbpedia.org/resource/Daylon_Leveller", "http://dbpedia.org/resource/Deal.II", "http://dbpedia.org/resource/Deep-Sky_Planner", "http://dbpedia.org/resource/Deep_Freeze_(software)", "http://dbpedia.org/resource/Aoki_Lapis", "http://dbpedia.org/resource/Aqsis", "http://dbpedia.org/resource/Aquad", "http://dbpedia.org/resource/Aquiles", "http://dbpedia.org/resource/ArcEditor", "http://dbpedia.org/resource/ArcGIS_Pro", "http://dbpedia.org/resource/ArcIMS", "http://dbpedia.org/resource/ArcInfo", "http://dbpedia.org/resource/ArcSoft_ShowBiz", "http://dbpedia.org/resource/ArcView", "http://dbpedia.org/resource/Bork3D_Game_Engine", "http://dbpedia.org/resource/Cassandre_software", "http://dbpedia.org/resource/Dell_MediaDirect", "http://dbpedia.org/resource/Dentrix", "http://dbpedia.org/resource/DesktopX", "http://dbpedia.org/resource/Desktop_Cleanup_Wizard", "http://dbpedia.org/resource/Dex_(software)", "http://dbpedia.org/resource/User-Mode_Driver_Framework", "http://dbpedia.org/resource/VB_Watch", "http://dbpedia.org/resource/VCV_Rack", "http://dbpedia.org/resource/VEDIT", "http://dbpedia.org/resource/VIPS_(software)", "http://dbpedia.org/resource/VMac", "http://dbpedia.org/resource/VMmark", "http://dbpedia.org/resource/VMware_Horizon", "http://dbpedia.org/resource/VMware_Server", "http://dbpedia.org/resource/VOGL", "http://dbpedia.org/resource/VSDC_Free_Video_Editor", "http://dbpedia.org/resource/VSdocman", "http://dbpedia.org/resource/V_Flower", "http://dbpedia.org/resource/Valve_Anti-Cheat", "http://dbpedia.org/resource/VariCAD", "http://dbpedia.org/resource/Vegas_Pro", "http://dbpedia.org/resource/Vegeta_(software)", "http://dbpedia.org/resource/Veyon", "http://dbpedia.org/resource/Victoria_(3D_figure)", "http://dbpedia.org/resource/Vidalia_(software)", "http://dbpedia.org/resource/ViewMinder", "http://dbpedia.org/resource/VirtuaWin", "http://dbpedia.org/resource/VirtualAcorn", "http://dbpedia.org/resource/VirtualDJ", "http://dbpedia.org/resource/VirtualDub", "http://dbpedia.org/resource/VirtualDubMod", "http://dbpedia.org/resource/Virtual_ANS", "http://dbpedia.org/resource/Virtual_Audio_Cable", "http://dbpedia.org/resource/Virtual_Pascal", "http://dbpedia.org/resource/VisualARQ", "http://dbpedia.org/resource/VisualFEA", "http://dbpedia.org/resource/VisualSVN", "http://dbpedia.org/resource/VisualSVN_Server", "http://dbpedia.org/resource/Visual_Assist", "http://dbpedia.org/resource/Visual_Basic_for_Applications", "http://dbpedia.org/resource/Visual_Component_Framework", "http://dbpedia.org/resource/Visual_Components", "http://dbpedia.org/resource/Visual_Installer", "http://dbpedia.org/resource/Visual_Intercept", "http://dbpedia.org/resource/Visual_MODFLOW", "http://dbpedia.org/resource/Visual_Molecular_Dynamics", "http://dbpedia.org/resource/Visual_Pinball", "http://dbpedia.org/resource/Visual_Prolog", "http://dbpedia.org/resource/Visual_Test", "http://dbpedia.org/resource/Vivo_Software", "http://dbpedia.org/resource/VkTrace", "http://dbpedia.org/resource/Vocaloid", "http://dbpedia.org/resource/Vocaloid_2", "http://dbpedia.org/resource/Voicemeeter", "http://dbpedia.org/resource/Vol_(command)", "http://dbpedia.org/resource/Volatility_(software)", "http://dbpedia.org/resource/VoluMill", "http://dbpedia.org/resource/Vowpal_Wabbit", "http://dbpedia.org/resource/VzRoom", "http://dbpedia.org/resource/W32tm", "http://dbpedia.org/resource/WASTE", "http://dbpedia.org/resource/WBAdmin", "http://dbpedia.org/resource/WCF_Data_Services", "http://dbpedia.org/resource/WISE-FTP", "http://dbpedia.org/resource/WMA_Convert", "http://dbpedia.org/resource/WPKG_(software)", "http://dbpedia.org/resource/WUHU_(software)", "http://dbpedia.org/resource/Waf_(build_system)", "http://dbpedia.org/resource/WarpPLS", "http://dbpedia.org/resource/Watcom_C/C++", "http://dbpedia.org/resource/Findstr", "http://dbpedia.org/resource/Shar", "http://dbpedia.org/resource/Share_(P2P)", "http://dbpedia.org/resource/Skia_Graphics_Engine", "http://dbpedia.org/resource/Sophocles_(software)", "http://dbpedia.org/resource/Windows_service", "http://dbpedia.org/resource/Hyperscore", "http://dbpedia.org/resource/Windows_Meeting_Space", "http://dbpedia.org/resource/IBM_Lotus_Freelance_Graphics", "http://dbpedia.org/resource/MusicEase", "http://dbpedia.org/resource/Palm_Desktop", "http://dbpedia.org/resource/YProxy", "http://dbpedia.org/resource/Microsoft_Indic_Language_Input_Tool", "http://dbpedia.org/resource/Windows_Photo_Viewer", "http://dbpedia.org/resource/Parallels_Workstation_Extreme", "http://dbpedia.org/resource/QuickLOAD", "http://dbpedia.org/resource/VSTS_Profiler", "http://dbpedia.org/resource/NeuroSolutions", "http://dbpedia.org/resource/PlanMaker", "http://dbpedia.org/resource/SPEED2000", "http://dbpedia.org/resource/Ssh-agent", "http://dbpedia.org/resource/Trade_Space_Visualizer", "http://dbpedia.org/resource/NexusDB", "http://dbpedia.org/resource/PowerMapper", "http://dbpedia.org/resource/WQL", "http://dbpedia.org/resource/MySQL_DataController", "http://dbpedia.org/resource/Windows_Chat", "http://dbpedia.org/resource/WireFusion", "http://dbpedia.org/resource/Madoka_(business_process_automation)", "http://dbpedia.org/resource/Microsoft_Songsmith", "http://dbpedia.org/resource/NewViews", "http://dbpedia.org/resource/Raylectron", "http://dbpedia.org/resource/Windows_Feedback_Hub", "http://dbpedia.org/resource/Windows_NT_6_startup_process", "http://dbpedia.org/resource/WiperSoft", "http://dbpedia.org/resource/Deep_Zoom", "http://dbpedia.org/resource/Deeplearning4j", "http://dbpedia.org/resource/Demetra+", "http://dbpedia.org/resource/Denemo", "http://dbpedia.org/resource/Deno_(software)", "http://dbpedia.org/resource/Dependency_Walker", "http://dbpedia.org/resource/Derive_(computer_algebra_system)", "http://dbpedia.org/resource/DesignSpark_Mechanical", "http://dbpedia.org/resource/Designbox", "http://dbpedia.org/resource/Desktop_Window_Manager", "http://dbpedia.org/resource/Dev-C++", "http://dbpedia.org/resource/Dev-Pascal", "http://dbpedia.org/resource/DevPartner", "http://dbpedia.org/resource/Device_Manager", "http://dbpedia.org/resource/Dial_Gate_VoIP_Softswitch", "http://dbpedia.org/resource/DigiCel_FlipBook", "http://dbpedia.org/resource/DigiGuide", "http://dbpedia.org/resource/Digital_Forensics_Framework", "http://dbpedia.org/resource/Digital_Performer", "http://dbpedia.org/resource/Digital_Photo_Professional", "http://dbpedia.org/resource/Digital_Scrapbook_Artist", "http://dbpedia.org/resource/DirSync_Pro", "http://dbpedia.org/resource/Direct3D", "http://dbpedia.org/resource/DirectShow", "http://dbpedia.org/resource/DirectVobSub", "http://dbpedia.org/resource/Directory_Opus", "http://dbpedia.org/resource/Dired", "http://dbpedia.org/resource/DiscJuggler", "http://dbpedia.org/resource/Diskcomp", "http://dbpedia.org/resource/Diskcopy", "http://dbpedia.org/resource/Diskpart", "http://dbpedia.org/resource/Distributed_Concurrent_Versions_System", "http://dbpedia.org/resource/DoPDF", "http://dbpedia.org/resource/Google_App_Runtime_for_Chrome", "http://dbpedia.org/resource/The_All-Seeing_Eye", "http://dbpedia.org/resource/GameSpy_Arcade", "http://dbpedia.org/resource/Mew_(software)", "http://dbpedia.org/resource/MicroPlanner_X-Pert", "http://dbpedia.org/resource/Microsoft_Help_2", "http://dbpedia.org/resource/Microsoft_Help_Viewer", "http://dbpedia.org/resource/Microsoft_Money", "http://dbpedia.org/resource/Motherboard_Monitor", "http://dbpedia.org/resource/Move_(command)", "http://dbpedia.org/resource/NCSS_(statistical_software)", "http://dbpedia.org/resource/SmartCam", "http://dbpedia.org/resource/ProArc", "http://dbpedia.org/resource/Spotnet", "http://dbpedia.org/resource/System_Restore", "http://dbpedia.org/resource/AirMosaic", "http://dbpedia.org/resource/Airy_(software)", "http://dbpedia.org/resource/AkelPad", "http://dbpedia.org/resource/Alcohol_120%25", "http://dbpedia.org/resource/Aldor", "http://dbpedia.org/resource/Algodoo", "http://dbpedia.org/resource/Alibre_Design", "http://dbpedia.org/resource/ArtRage", "http://dbpedia.org/resource/Artisteer", "http://dbpedia.org/resource/Artweaver", "http://dbpedia.org/resource/ArviZ", "http://dbpedia.org/resource/As-Easy-As", "http://dbpedia.org/resource/Ascalaph_Designer", "http://dbpedia.org/resource/AstroMenace", "http://dbpedia.org/resource/Atlantis_Word_Processor", "http://dbpedia.org/resource/Attack_Surface_Analyzer", "http://dbpedia.org/resource/Audio_Stream_Input/Output", "http://dbpedia.org/resource/Audiograbber", "http://dbpedia.org/resource/Audiveris", "http://dbpedia.org/resource/AutoHotkey", "http://dbpedia.org/resource/AutoREALM", "http://dbpedia.org/resource/Autodesk_Arnold", "http://dbpedia.org/resource/Autodesk_Simulation", "http://dbpedia.org/resource/Autodesk_Softimage", "http://dbpedia.org/resource/Avast_Antivirus", "http://dbpedia.org/resource/AviSynth", "http://dbpedia.org/resource/Avid_Free_DV", "http://dbpedia.org/resource/Avizo_(software)", "http://dbpedia.org/resource/Avogadro_(software)", "http://dbpedia.org/resource/Avro_Keyboard", "http://dbpedia.org/resource/Awomo", "http://dbpedia.org/resource/BeaTunes", "http://dbpedia.org/resource/Beaker_(web_browser)", "http://dbpedia.org/resource/Becky!", "http://dbpedia.org/resource/BeebEm", "http://dbpedia.org/resource/Berkeley_DB", "http://dbpedia.org/resource/Berkeley_Open_Infrastructure_for_Network_Computing", "http://dbpedia.org/resource/Bersirc", "http://dbpedia.org/resource/Beyond_TV", "http://dbpedia.org/resource/BiZZdesign_Enterprise_Studio", "http://dbpedia.org/resource/Aladdin4D", "http://dbpedia.org/resource/ForeUI", "http://dbpedia.org/resource/Forensic_Toolkit", "http://dbpedia.org/resource/FormatFactory", "http://dbpedia.org/resource/Format_(command)", "http://dbpedia.org/resource/Forte_(notation_program)", "http://dbpedia.org/resource/Fort\u00e9_Agent", "http://dbpedia.org/resource/Fotografix", "http://dbpedia.org/resource/Frama-C", "http://dbpedia.org/resource/Framewave", "http://dbpedia.org/resource/Framsticks", "http://dbpedia.org/resource/Fre:ac", "http://dbpedia.org/resource/Fred_Optical_Engineering_Software", "http://dbpedia.org/resource/FreeArc", "http://dbpedia.org/resource/FreeCAD", "http://dbpedia.org/resource/FreeFem++", "http://dbpedia.org/resource/FreeHAL", "http://dbpedia.org/resource/FreePCB", "http://dbpedia.org/resource/FreePOPs", "http://dbpedia.org/resource/FreeUndelete", "http://dbpedia.org/resource/Free_AVI_Video_Converter", "http://dbpedia.org/resource/Free_Studio", "http://dbpedia.org/resource/Freemake_Audio_Converter", "http://dbpedia.org/resource/Freemake_Music_Box", "http://dbpedia.org/resource/Freestyle_(software)", "http://dbpedia.org/resource/Frescobaldi_(software)", "http://dbpedia.org/resource/Fresh_Memory_(software)", "http://dbpedia.org/resource/Fritzing", "http://dbpedia.org/resource/FrontBase", "http://dbpedia.org/resource/Ftype", "http://dbpedia.org/resource/Fuse_(emulator)", "http://dbpedia.org/resource/FusionReactor", "http://dbpedia.org/resource/Future_Pinball", "http://dbpedia.org/resource/FxCop", "http://dbpedia.org/resource/GAUSS_(software)", "http://dbpedia.org/resource/GCompris", "http://dbpedia.org/resource/GDevelop", "http://dbpedia.org/resource/GEDA", "http://dbpedia.org/resource/GENtle", "http://dbpedia.org/resource/GEOVIA", "http://dbpedia.org/resource/GFA_BASIC", "http://dbpedia.org/resource/GGPO", "http://dbpedia.org/resource/GGobi", "http://dbpedia.org/resource/GIMPshop", "http://dbpedia.org/resource/GLBasic", "http://dbpedia.org/resource/GLFW", "http://dbpedia.org/resource/GLib", "http://dbpedia.org/resource/GMS_(software)", "http://dbpedia.org/resource/GMX_Multi_Messenger", "http://dbpedia.org/resource/GNAT", "http://dbpedia.org/resource/GNAVI", "http://dbpedia.org/resource/GNUSim8085", "http://dbpedia.org/resource/GNU_Chess", "http://dbpedia.org/resource/GNU_Common_Lisp", "http://dbpedia.org/resource/GNU_Debugger", "http://dbpedia.org/resource/GNU_Go", "http://dbpedia.org/resource/GNU_Privacy_Guard", "http://dbpedia.org/resource/GNU_Solfege", "http://dbpedia.org/resource/GNU_arch", "http://dbpedia.org/resource/GPUOpen", "http://dbpedia.org/resource/GPlates", "http://dbpedia.org/resource/GSSHA", "http://dbpedia.org/resource/GadgetTrak", "http://dbpedia.org/resource/Gadu-Gadu", "http://dbpedia.org/resource/GaiaEHR", "http://dbpedia.org/resource/Gajim", "http://dbpedia.org/resource/GameMaker", "http://dbpedia.org/resource/GameShadow", "http://dbpedia.org/resource/Game_Jackal", "http://dbpedia.org/resource/Gameswf", "http://dbpedia.org/resource/GanttProject", "http://dbpedia.org/resource/Geany", "http://dbpedia.org/resource/GenMAPP", "http://dbpedia.org/resource/Genbox_Family_History", "http://dbpedia.org/resource/GeneXus", "http://dbpedia.org/resource/Gene_Designer", "http://dbpedia.org/resource/Genealogica_Grafica", "http://dbpedia.org/resource/Genealone", "http://dbpedia.org/resource/General_Mission_Analysis_Tool", "http://dbpedia.org/resource/Genie_Backup_Manager", "http://dbpedia.org/resource/GenoPro", "http://dbpedia.org/resource/Gensim", "http://dbpedia.org/resource/Genstat", "http://dbpedia.org/resource/GeoModeller", "http://dbpedia.org/resource/HIARCS", "http://dbpedia.org/resource/HIEW", "http://dbpedia.org/resource/HOSxP", "http://dbpedia.org/resource/HPX", "http://dbpedia.org/resource/HP_Integrity_Virtual_Machines", "http://dbpedia.org/resource/HTCondor", "http://dbpedia.org/resource/HTML-Kit", "http://dbpedia.org/resource/Ham_Radio_Deluxe", "http://dbpedia.org/resource/HandBrake", "http://dbpedia.org/resource/Handbook_Emission_Factors_for_Road_Transport_(HBEFA)", "http://dbpedia.org/resource/Hangul_(word_processor)", "http://dbpedia.org/resource/Harmor", "http://dbpedia.org/resource/Harvard_Graphics", "http://dbpedia.org/resource/Hatsune_Miku", "http://dbpedia.org/resource/Haxe", "http://dbpedia.org/resource/Bing_Maps_Platform", "http://dbpedia.org/resource/Chika_(software)", "http://dbpedia.org/resource/SOAtest", "http://dbpedia.org/resource/SP-Forth", "http://dbpedia.org/resource/SPIN_model_checker", "http://dbpedia.org/resource/SPSS_Modeler", "http://dbpedia.org/resource/SQL_Database_Studio", "http://dbpedia.org/resource/SQL_Server_Express", "http://dbpedia.org/resource/SQL_Server_Management_Studio", "http://dbpedia.org/resource/SQLyog", "http://dbpedia.org/resource/SRM_Engine_Suite", "http://dbpedia.org/resource/STDU_Viewer", "http://dbpedia.org/resource/SUBST", "http://dbpedia.org/resource/SUPERAntiSpyware", "http://dbpedia.org/resource/SUPER_(computer_program)", "http://dbpedia.org/resource/SVFlux", "http://dbpedia.org/resource/SVNBridge", "http://dbpedia.org/resource/SVN_Notifier", "http://dbpedia.org/resource/SVSlope", "http://dbpedia.org/resource/SWiSH_Max", "http://dbpedia.org/resource/SXM_(transactional_memory)", "http://dbpedia.org/resource/SYSTAT_(software)", "http://dbpedia.org/resource/SafeDisc", "http://dbpedia.org/resource/SageMath", "http://dbpedia.org/resource/Sage_300", "http://dbpedia.org/resource/Sage_50cloud", "http://dbpedia.org/resource/Salome_(software)", "http://dbpedia.org/resource/Salt_(software)", "http://dbpedia.org/resource/Sam_(text_editor)", "http://dbpedia.org/resource/Samurize", "http://dbpedia.org/resource/Sandcastle_(software)", "http://dbpedia.org/resource/SwordSearcher", "http://dbpedia.org/resource/Sylpheed", "http://dbpedia.org/resource/SymmetricDS", "http://dbpedia.org/resource/Syncdocs", "http://dbpedia.org/resource/Synfig", "http://dbpedia.org/resource/Synkron", "http://dbpedia.org/resource/SynthMaster", "http://dbpedia.org/resource/Syntorial", "http://dbpedia.org/resource/Sysax_FTP_Automation", "http://dbpedia.org/resource/Sysax_Multi_Server", "http://dbpedia.org/resource/Sysedit", "http://dbpedia.org/resource/SystemBuilder/SB+", "http://dbpedia.org/resource/System_Center_Essentials", "http://dbpedia.org/resource/System_File_Checker", "http://dbpedia.org/resource/System_Idle_Process", "http://dbpedia.org/resource/Systeminfo.exe", "http://dbpedia.org/resource/Systems_Tool_Kit", "http://dbpedia.org/resource/Sytrus", "http://dbpedia.org/resource/TAPAAL_Model_Checker", "http://dbpedia.org/resource/TIGCC", "http://dbpedia.org/resource/TI_InterActive!", "http://dbpedia.org/resource/TMPGEnc", "http://dbpedia.org/resource/TMetric", "http://dbpedia.org/resource/TN3270_Plus", "http://dbpedia.org/resource/TNTmips", "http://dbpedia.org/resource/TOMNET", "http://dbpedia.org/resource/TOWeb", "http://dbpedia.org/resource/TPL_Tables", "http://dbpedia.org/resource/TVPaint_Animation", "http://dbpedia.org/resource/TWAIN", "http://dbpedia.org/resource/TabWorks", "http://dbpedia.org/resource/Tabbles", "http://dbpedia.org/resource/TableCurve_2D", "http://dbpedia.org/resource/TableCurve_3D", "http://dbpedia.org/resource/Tar_(computing)", "http://dbpedia.org/resource/TaskCracker_for_Outlook", "http://dbpedia.org/resource/TeX_Live", "http://dbpedia.org/resource/TeXnicCenter", "http://dbpedia.org/resource/TeXstudio", "http://dbpedia.org/resource/TeamSpeak", "http://dbpedia.org/resource/TeamViewer", "http://dbpedia.org/resource/Tebis", "http://dbpedia.org/resource/Techila_Grid", "http://dbpedia.org/resource/Techinline", "http://dbpedia.org/resource/Tee_(command)", "http://dbpedia.org/resource/Telix", "http://dbpedia.org/resource/DAvE_(Infineon)", "http://dbpedia.org/resource/DR_TV", "http://dbpedia.org/resource/DVD_Profiler", "http://dbpedia.org/resource/DVD_X_Copy", "http://dbpedia.org/resource/DX_Studio", "http://dbpedia.org/resource/Dabbler", "http://dbpedia.org/resource/DarkComet", "http://dbpedia.org/resource/DataCAD", "http://dbpedia.org/resource/DataScene", "http://dbpedia.org/resource/Data_Desk", "http://dbpedia.org/resource/Data_Toolbar", "http://dbpedia.org/resource/DatabaseSpy", "http://dbpedia.org/resource/Dataplot", "http://dbpedia.org/resource/WaveLab", "http://dbpedia.org/resource/WebKit", "http://dbpedia.org/resource/WebPlus", "http://dbpedia.org/resource/WebSharper", "http://dbpedia.org/resource/Which_(command)", "http://dbpedia.org/resource/Whizfolders", "http://dbpedia.org/resource/Who_Is_To_Blame%3F", "http://dbpedia.org/resource/WiMP", "http://dbpedia.org/resource/WiX", "http://dbpedia.org/resource/WikiBhasha", "http://dbpedia.org/resource/Megurine_Luka", "http://dbpedia.org/resource/RoboWar", "http://dbpedia.org/resource/Elektrik_Piano", "http://dbpedia.org/resource/Evertontv", "http://dbpedia.org/resource/Evidence_Eliminator", "http://dbpedia.org/resource/Eye-Sys", "http://dbpedia.org/resource/Route_(command)", "http://dbpedia.org/resource/SAGE_(game_engine)", "http://dbpedia.org/resource/SDI_Tools", "http://dbpedia.org/resource/SQL_Server_Integration_Services", "http://dbpedia.org/resource/Sachiko_(software)", "http://dbpedia.org/resource/Saturn_(software)", "http://dbpedia.org/resource/ScopeArchiv", "http://dbpedia.org/resource/Spatial_Query_Server", "http://dbpedia.org/resource/System_Architect", "http://dbpedia.org/resource/Storage@home", "http://dbpedia.org/resource/XRumer", "http://dbpedia.org/resource/HarfBuzz", "http://dbpedia.org/resource/PxTone", "http://dbpedia.org/resource/MOLCAS", "http://dbpedia.org/resource/Macne_Nana", "http://dbpedia.org/resource/Nuclino", "http://dbpedia.org/resource/.NET_Bio", "http://dbpedia.org/resource/.NET_Micro_Framework", "http://dbpedia.org/resource/0_A.D._(video_game)", "http://dbpedia.org/resource/Angelfish_software", "http://dbpedia.org/resource/Animation:Master", "http://dbpedia.org/resource/AnkhSVN", "http://dbpedia.org/resource/Antenna_House_Formatter", "http://dbpedia.org/resource/Anvil_Studio", "http://dbpedia.org/resource/Any_Video_Converter", "http://dbpedia.org/resource/Apache_Airflow", "http://dbpedia.org/resource/Apache_Flex", "http://dbpedia.org/resource/Apache_HTTP_Server", "http://dbpedia.org/resource/Apache_Harmony", "http://dbpedia.org/resource/Apache_MXNet", "http://dbpedia.org/resource/Apache_OpenMeetings", "http://dbpedia.org/resource/Apache_OpenOffice", "http://dbpedia.org/resource/Apache_Pig", "http://dbpedia.org/resource/Apache_SINGA", "http://dbpedia.org/resource/Apache_Spark", "http://dbpedia.org/resource/Apache_Taverna", "http://dbpedia.org/resource/Apophysis_(software)", "http://dbpedia.org/resource/Appetizer_(software)", "http://dbpedia.org/resource/AppleWin", "http://dbpedia.org/resource/AppleWorks", "http://dbpedia.org/resource/Application_Request_Routing", "http://dbpedia.org/resource/Appserver.io", "http://dbpedia.org/resource/ArX", "http://dbpedia.org/resource/ArcMap", "http://dbpedia.org/resource/ArcSDE", "http://dbpedia.org/resource/Archicad", "http://dbpedia.org/resource/Archim", "http://dbpedia.org/resource/Architect_(software)", "http://dbpedia.org/resource/Ardour_(software)", "http://dbpedia.org/resource/Arena_(software)", "http://dbpedia.org/resource/Argentum_Backup", "http://dbpedia.org/resource/Armagetron_Advanced", "http://dbpedia.org/resource/ArrayTrack", "http://dbpedia.org/resource/EmEditor", "http://dbpedia.org/resource/Embeddable_Common_Lisp", "http://dbpedia.org/resource/Emigma", "http://dbpedia.org/resource/EnCase", "http://dbpedia.org/resource/Encarta", "http://dbpedia.org/resource/Encyclop\u00e6dia_Britannica_Ultimate_Reference_Suite", "http://dbpedia.org/resource/Epi_Info", "http://dbpedia.org/resource/Epi_Map", "http://dbpedia.org/resource/Epigram_(programming_language)", "http://dbpedia.org/resource/Epostmailer", "http://dbpedia.org/resource/Eraser_(software)", "http://dbpedia.org/resource/Eric_(software)", "http://dbpedia.org/resource/Erwin_Data_Modeler", "http://dbpedia.org/resource/Euler_(software)", "http://dbpedia.org/resource/EventMachine", "http://dbpedia.org/resource/Event_Viewer", "http://dbpedia.org/resource/Evernote", "http://dbpedia.org/resource/Gephi", "http://dbpedia.org/resource/GetFEM++", "http://dbpedia.org/resource/Gforth", "http://dbpedia.org/resource/Ghostzilla", "http://dbpedia.org/resource/Gig_Performer", "http://dbpedia.org/resource/Gizmo5", "http://dbpedia.org/resource/Glade_Interface_Designer", "http://dbpedia.org/resource/GlobalSight", "http://dbpedia.org/resource/Gmsh", "http://dbpedia.org/resource/GnuTLS", "http://dbpedia.org/resource/Go!Zilla", "http://dbpedia.org/resource/Gobby", "http://dbpedia.org/resource/Golaem_Crowd", "http://dbpedia.org/resource/GoldWave", "http://dbpedia.org/resource/Gollum_(software)", "http://dbpedia.org/resource/Gonvisor", "http://dbpedia.org/resource/Google_Chrome_Frame", "http://dbpedia.org/resource/Google_Plugin_for_Eclipse", "http://dbpedia.org/resource/Google_Sheets", "http://dbpedia.org/resource/Google_Spaces", "http://dbpedia.org/resource/Google_Talk", "http://dbpedia.org/resource/Google_Test", "http://dbpedia.org/resource/Google_Toolbar", "http://dbpedia.org/resource/Google_Web_Accelerator", "http://dbpedia.org/resource/Google_Web_Toolkit", "http://dbpedia.org/resource/Gorm_(computing)", "http://dbpedia.org/resource/MapBasic", "http://dbpedia.org/resource/MapWindow_GIS", "http://dbpedia.org/resource/Maptitude", "http://dbpedia.org/resource/MaraDNS", "http://dbpedia.org/resource/Marble_(software)", "http://dbpedia.org/resource/Marmalade_(software)", "http://dbpedia.org/resource/Pinta_(software)", "http://dbpedia.org/resource/Piranesi_(software)", "http://dbpedia.org/resource/PirateBrowser", "http://dbpedia.org/resource/Pixar_RenderMan", "http://dbpedia.org/resource/PlantUML", "http://dbpedia.org/resource/Plant_Simulation", "http://dbpedia.org/resource/Plastic_SCM", "http://dbpedia.org/resource/Platinum_Arts_Sandbox", "http://dbpedia.org/resource/PlayN", "http://dbpedia.org/resource/Poedit", "http://dbpedia.org/resource/PokerTH", "http://dbpedia.org/resource/PolyEdit", "http://dbpedia.org/resource/Popcorn_Time", "http://dbpedia.org/resource/Poppler_(software)", "http://dbpedia.org/resource/Porn_Time", "http://dbpedia.org/resource/Portable,_Extensible_Toolkit_for_Scientific_Computation", "http://dbpedia.org/resource/PortableApps.com", "http://dbpedia.org/resource/PostgreSQL", "http://dbpedia.org/resource/PottersWheel", "http://dbpedia.org/resource/PowerArchiver", "http://dbpedia.org/resource/PowerDesigner", "http://dbpedia.org/resource/PowerMAN", "http://dbpedia.org/resource/PowerWord", "http://dbpedia.org/resource/Power_Pivot", "http://dbpedia.org/resource/Powercfg", "http://dbpedia.org/resource/Praat", "http://dbpedia.org/resource/Prevx", "http://dbpedia.org/resource/Prey_(software)", "http://dbpedia.org/resource/PriEsT", "http://dbpedia.org/resource/Prime95", "http://dbpedia.org/resource/PrimoPDF", "http://dbpedia.org/resource/Tera_Term", "http://dbpedia.org/resource/Terminator_(terminal_emulator)", "http://dbpedia.org/resource/TerrSet", "http://dbpedia.org/resource/Terragen", "http://dbpedia.org/resource/TestComplete", "http://dbpedia.org/resource/Test_Studio", "http://dbpedia.org/resource/Testing_Anywhere", "http://dbpedia.org/resource/TexLab", "http://dbpedia.org/resource/Texmaker", "http://dbpedia.org/resource/TextPad", "http://dbpedia.org/resource/Text_Template_Transformation_Toolkit", "http://dbpedia.org/resource/Textadept", "http://dbpedia.org/resource/The_Bat!", "http://dbpedia.org/resource/David_Laserscanner", "http://dbpedia.org/resource/UBASIC", "http://dbpedia.org/resource/UCSF_Chimera", "http://dbpedia.org/resource/UC_Browser", "http://dbpedia.org/resource/UDig", "http://dbpedia.org/resource/UFMOD", "http://dbpedia.org/resource/UGENE", "http://dbpedia.org/resource/UKTV_Play", "http://dbpedia.org/resource/UNetbootin", "http://dbpedia.org/resource/UPX", "http://dbpedia.org/resource/Ubuntu_One", "http://dbpedia.org/resource/Ulead_DVD_MovieFactory", "http://dbpedia.org/resource/Ulead_MediaStudio_Pro", "http://dbpedia.org/resource/UltraHLE", "http://dbpedia.org/resource/UltraISO", "http://dbpedia.org/resource/UltraMon", "http://dbpedia.org/resource/Ultrasurf", "http://dbpedia.org/resource/Umbraco", "http://dbpedia.org/resource/Unbound_(DNS_server)", "http://dbpedia.org/resource/UniKey_(software)", "http://dbpedia.org/resource/Universal_Document_Converter", "http://dbpedia.org/resource/Universal_USB_Installer", "http://dbpedia.org/resource/Universe_Sandbox", "http://dbpedia.org/resource/Unix2dos", "http://dbpedia.org/resource/Unvanquished_(video_game)", "http://dbpedia.org/resource/UpdateStar", "http://dbpedia.org/resource/UploadFTP", "http://dbpedia.org/resource/Uppaal_Model_Checker", "http://dbpedia.org/resource/Dr._Watson_(debugger)", "http://dbpedia.org/resource/Drishti_(client)", "http://dbpedia.org/resource/Driver_Verifier", "http://dbpedia.org/resource/I-DEAS", "http://dbpedia.org/resource/Magic_Lantern_(software)", "http://dbpedia.org/resource/Matrix_Template_Library", "http://dbpedia.org/resource/Merli_(software)", "http://dbpedia.org/resource/Microsoft_Management_Console", "http://dbpedia.org/resource/NI_Massive", "http://dbpedia.org/resource/NHS_Pathways", "http://dbpedia.org/resource/Piranha_(compositing_software)", "http://dbpedia.org/resource/Pixie_(renderer)", "http://dbpedia.org/resource/Primer-E_Primer", "http://dbpedia.org/resource/Microsoft_Write", "http://dbpedia.org/resource/Naver_VIBE", "http://dbpedia.org/resource/PTV_VISSIM", "http://dbpedia.org/resource/VALO-CD", "http://dbpedia.org/resource/VisIt", "http://dbpedia.org/resource/WS_FTP", "http://dbpedia.org/resource/WampServer", "http://dbpedia.org/resource/Windows_Address_Book", "http://dbpedia.org/resource/Windows_Management_Instrumentation", "http://dbpedia.org/resource/Windows_Remote_Management", "http://dbpedia.org/resource/Windows_Script_Host", "http://dbpedia.org/resource/MSConfig", "http://dbpedia.org/resource/Norton_Safe_Web", "http://dbpedia.org/resource/Vocaloid_4", "http://dbpedia.org/resource/MindMapper", "http://dbpedia.org/resource/Mirar_Toolbar", "http://dbpedia.org/resource/Pushd_and_popd", "http://dbpedia.org/resource/Simple_DNS_Plus", "http://dbpedia.org/resource/Grid_MP", "http://dbpedia.org/resource/Group_Shot", "http://dbpedia.org/resource/Hosting_Controller", "http://dbpedia.org/resource/Jungle_Disk", "http://dbpedia.org/resource/TinkerPlots", "http://dbpedia.org/resource/Truevision3D", "http://dbpedia.org/resource/Norton_LiveUpdate", "http://dbpedia.org/resource/SCSI_Pass_Through_Interface", "http://dbpedia.org/resource/Tekla_Structures", "http://dbpedia.org/resource/L0phtCrack", "http://dbpedia.org/resource/LM-X_License_Manager", "http://dbpedia.org/resource/Line_Music", "http://dbpedia.org/resource/Motor-CAD", "http://dbpedia.org/resource/SynfiniWay", "http://dbpedia.org/resource/ACD/ChemSketch", "http://dbpedia.org/resource/ADO.NET", "http://dbpedia.org/resource/AGi32", "http://dbpedia.org/resource/AMD_700_chipset_series", "http://dbpedia.org/resource/AMD_CodeAnalyst", "http://dbpedia.org/resource/AME_Accounting_Software", "http://dbpedia.org/resource/ARSloid", "http://dbpedia.org/resource/ATILA", "http://dbpedia.org/resource/ATLAS.ti", "http://dbpedia.org/resource/ATunes", "http://dbpedia.org/resource/Bootcfg", "http://dbpedia.org/resource/Borland_C++", "http://dbpedia.org/resource/Borland_Sidekick", "http://dbpedia.org/resource/Borland_Turbo_C", "http://dbpedia.org/resource/BricsCAD", "http://dbpedia.org/resource/Bricx_Command_Center", "http://dbpedia.org/resource/Brief_(text_editor)", "http://dbpedia.org/resource/Brother's_Keeper_(software)", "http://dbpedia.org/resource/Brush_Strokes_Image_Editor", "http://dbpedia.org/resource/Adobe_JRun", "http://dbpedia.org/resource/Adobe_LiveCycle_Designer", "http://dbpedia.org/resource/Adobe_Photoshop_Album", "http://dbpedia.org/resource/Adobe_Sign", "http://dbpedia.org/resource/Adobe_Technical_Communication_Suite", "http://dbpedia.org/resource/Adobe_eLearning_Suite", "http://dbpedia.org/resource/BRFplus", "http://dbpedia.org/resource/BSAFE", "http://dbpedia.org/resource/Back_Orifice_2000", "http://dbpedia.org/resource/Jaguar_(software)", "http://dbpedia.org/resource/Jaikoz", "http://dbpedia.org/resource/Jalview", "http://dbpedia.org/resource/Jami_(software)", "http://dbpedia.org/resource/Jarte", "http://dbpedia.org/resource/Katalon_Studio", "http://dbpedia.org/resource/Kate_(text_editor)", "http://dbpedia.org/resource/Kazaa", "http://dbpedia.org/resource/Kdb+", "http://dbpedia.org/resource/KeePass", "http://dbpedia.org/resource/Kerkythea", "http://dbpedia.org/resource/Kernel-Mode_Driver_Framework", "http://dbpedia.org/resource/KeyHoleTV", "http://dbpedia.org/resource/Keynote_(notetaking_software)", "http://dbpedia.org/resource/KiCad", "http://dbpedia.org/resource/KiXtart", "http://dbpedia.org/resource/Kid_Pix", "http://dbpedia.org/resource/Kiki_the_nano_bot", "http://dbpedia.org/resource/Kill_(command)", "http://dbpedia.org/resource/Bloomberg_Terminal", "http://dbpedia.org/resource/Blue_Moon_Rendering_Tools", "http://dbpedia.org/resource/BrookGPU", "http://dbpedia.org/resource/MathMagic", "http://dbpedia.org/resource/MathType", "http://dbpedia.org/resource/Math_Kernel_Library", "http://dbpedia.org/resource/Mathcad", "http://dbpedia.org/resource/Matheass", "http://dbpedia.org/resource/Mavis_Beacon_Teaches_Typing", "http://dbpedia.org/resource/Max_(software)", "http://dbpedia.org/resource/Maxwell_Render", "http://dbpedia.org/resource/MayaVi", "http://dbpedia.org/resource/McAfee_VirusScan", "http://dbpedia.org/resource/Meadow_(programming)", "http://dbpedia.org/resource/MedCalc", "http://dbpedia.org/resource/MediaHuman_Audio_Converter", "http://dbpedia.org/resource/MediaInfo", "http://dbpedia.org/resource/MediaMonkey", "http://dbpedia.org/resource/MediaPortal", "http://dbpedia.org/resource/MediaWiki", "http://dbpedia.org/resource/Media_Lovin'_Toolkit", "http://dbpedia.org/resource/Mediaroom", "http://dbpedia.org/resource/MediathekView", "http://dbpedia.org/resource/MedinTux", "http://dbpedia.org/resource/Mednafen", "http://dbpedia.org/resource/Mega2,_the_Manipulation_Environment_for_Genetic_Analysis", "http://dbpedia.org/resource/MemoQ", "http://dbpedia.org/resource/Memonic", "http://dbpedia.org/resource/Mental_Ray", "http://dbpedia.org/resource/Mercurial", "http://dbpedia.org/resource/Mercury_(programming_language)", "http://dbpedia.org/resource/Mercury_Mail_Transport_System", "http://dbpedia.org/resource/MetaSAN", "http://dbpedia.org/resource/MetaStock", "http://dbpedia.org/resource/Metamath", "http://dbpedia.org/resource/Metapad", "http://dbpedia.org/resource/Metasequoia_(software)", "http://dbpedia.org/resource/Metashape", "http://dbpedia.org/resource/Carbide.c++", "http://dbpedia.org/resource/CargoMax", "http://dbpedia.org/resource/Rainwave", "http://dbpedia.org/resource/Rakudo", "http://dbpedia.org/resource/Ranorex_Studio", "http://dbpedia.org/resource/RapidSVN", "http://dbpedia.org/resource/Raptor_(programming_language)", "http://dbpedia.org/resource/RasMol", "http://dbpedia.org/resource/Rational_Automation_Framework", "http://dbpedia.org/resource/Rational_Performance_Tester", "http://dbpedia.org/resource/Rational_Software_Modeler", "http://dbpedia.org/resource/Rational_Synergy", "http://dbpedia.org/resource/RawTherapee", "http://dbpedia.org/resource/Rclone", "http://dbpedia.org/resource/Re-mix", "http://dbpedia.org/resource/Ready,_Set,_Go!_(software)", "http://dbpedia.org/resource/Reaktor", "http://dbpedia.org/resource/RealXtend", "http://dbpedia.org/resource/RealityCapture", "http://dbpedia.org/resource/Realsoft_3D", "http://dbpedia.org/resource/Rebtel", "http://dbpedia.org/resource/Recoll", "http://dbpedia.org/resource/Recover_(command)", "http://dbpedia.org/resource/Recovery_Console", "http://dbpedia.org/resource/RedMon", "http://dbpedia.org/resource/Redcore", "http://dbpedia.org/resource/Redmine", "http://dbpedia.org/resource/Redshift_(renderer)", "http://dbpedia.org/resource/Redshift_(software)", "http://dbpedia.org/resource/RegexBuddy", "http://dbpedia.org/resource/Regsvr32", "http://dbpedia.org/resource/Rel_(DBMS)", "http://dbpedia.org/resource/RemotePC", "http://dbpedia.org/resource/Remote_Utilities", "http://dbpedia.org/resource/Renesis_Player", "http://dbpedia.org/resource/Renoise", "http://dbpedia.org/resource/Replace_(command)", "http://dbpedia.org/resource/Resource_Hacker", "http://dbpedia.org/resource/Resource_Monitor", "http://dbpedia.org/resource/Retroshare", "http://dbpedia.org/resource/Reuters_3000_Xtra", "http://dbpedia.org/resource/Revo_Uninstaller", "http://dbpedia.org/resource/Rhinoceros_3D", "http://dbpedia.org/resource/The_Geochemist's_Workbench", "http://dbpedia.org/resource/The_Major_BBS", "http://dbpedia.org/resource/The_Master_Genealogist", "http://dbpedia.org/resource/The_Next_Generation_of_Genealogy_Sitebuilding", "http://dbpedia.org/resource/The_Print_Shop", "http://dbpedia.org/resource/The_SemWare_Editor", "http://dbpedia.org/resource/The_Ur-Quan_Masters", "http://dbpedia.org/resource/The_Word_Bible_Software", "http://dbpedia.org/resource/Diffpack", "http://dbpedia.org/resource/Dig_(command)", "http://dbpedia.org/resource/Digital_Project", "http://dbpedia.org/resource/Digital_Universe_Atlas", "http://dbpedia.org/resource/Dim3", "http://dbpedia.org/resource/Dir_(command)", "http://dbpedia.org/resource/Dirac_(software)", "http://dbpedia.org/resource/Disk_Cleanup", "http://dbpedia.org/resource/EnDrain", "http://dbpedia.org/resource/Endorphin_(software)", "http://dbpedia.org/resource/Eudora_OSE", "http://dbpedia.org/resource/ProCite", "http://dbpedia.org/resource/System_Center_Mobile_Device_Manager", "http://dbpedia.org/resource/Jamstix", "http://dbpedia.org/resource/SpeedTree", "http://dbpedia.org/resource/Statistica", "http://dbpedia.org/resource/Vvvv", "http://dbpedia.org/resource/YULS", "http://dbpedia.org/resource/LinSig", "http://dbpedia.org/resource/Visual_Logic", "http://dbpedia.org/resource/ZMUD", "http://dbpedia.org/resource/PSI-Plot", "http://dbpedia.org/resource/System_Center_Service_Manager", "http://dbpedia.org/resource/3CX_Phone_System", "http://dbpedia.org/resource/3DCrafter", "http://dbpedia.org/resource/3D_Movie_Maker", "http://dbpedia.org/resource/3D_Topicscape", "http://dbpedia.org/resource/3Delight", "http://dbpedia.org/resource/@MAX_SyncUp", "http://dbpedia.org/resource/ABBYY_FineReader", "http://dbpedia.org/resource/AC3D", "http://dbpedia.org/resource/AC3Filter", "http://dbpedia.org/resource/ACE_(editor)", "http://dbpedia.org/resource/ADaMSoft", "http://dbpedia.org/resource/AGX_Multiphysics", "http://dbpedia.org/resource/AIM_(software)", "http://dbpedia.org/resource/AIM_Ad_Hack", "http://dbpedia.org/resource/ALFTP", "http://dbpedia.org/resource/AMBER", "http://dbpedia.org/resource/AMD_APP_SDK", "http://dbpedia.org/resource/AMD_Radeon_Software", "http://dbpedia.org/resource/AMPL", "http://dbpedia.org/resource/ANUGA_Hydro", "http://dbpedia.org/resource/AOL_Active_Virus_Shield", "http://dbpedia.org/resource/AOL_Explorer", "http://dbpedia.org/resource/AOL_OpenRide", "http://dbpedia.org/resource/API_Sanity_Checker", "http://dbpedia.org/resource/ARToolKit", "http://dbpedia.org/resource/ASP.NET", "http://dbpedia.org/resource/ASP.NET_AJAX", "http://dbpedia.org/resource/ASP.NET_Core", "http://dbpedia.org/resource/ASP.NET_Dynamic_Data", "http://dbpedia.org/resource/ASP.NET_Razor", "http://dbpedia.org/resource/ASP.NET_Web_Forms", "http://dbpedia.org/resource/Nimble_Streamer", "http://dbpedia.org/resource/Nimbus_Note", "http://dbpedia.org/resource/NinJo", "http://dbpedia.org/resource/Ninja_(build_system)", "http://dbpedia.org/resource/Ninjam", "http://dbpedia.org/resource/Nirvana_(software)", "http://dbpedia.org/resource/Nitro_Pro", "http://dbpedia.org/resource/Node.js", "http://dbpedia.org/resource/NodeXL", "http://dbpedia.org/resource/Nokia_Lifeblog", "http://dbpedia.org/resource/Nokia_PC_Suite", "http://dbpedia.org/resource/Nokia_Suite", "http://dbpedia.org/resource/Nokogiri_(software)", "http://dbpedia.org/resource/Nomad.NET", "http://dbpedia.org/resource/NonVisual_Desktop_Access", "http://dbpedia.org/resource/Norton_AntiVirus", "http://dbpedia.org/resource/Norton_Security", "http://dbpedia.org/resource/Norton_SystemWorks", "http://dbpedia.org/resource/Norton_Utilities", "http://dbpedia.org/resource/Notam_Check", "http://dbpedia.org/resource/Notation_Composer", "http://dbpedia.org/resource/Notepad++", "http://dbpedia.org/resource/Nslookup", "http://dbpedia.org/resource/NuSMV", "http://dbpedia.org/resource/Nuke_(software)", "http://dbpedia.org/resource/OCaml", "http://dbpedia.org/resource/OE-Cake!", "http://dbpedia.org/resource/OFFSystem", "http://dbpedia.org/resource/OHRRPGCE", "http://dbpedia.org/resource/OMPL", "http://dbpedia.org/resource/OR-Tools", "http://dbpedia.org/resource/OVPsim", "http://dbpedia.org/resource/ObjectDock", "http://dbpedia.org/resource/Object_Desktop", "http://dbpedia.org/resource/Object_REXX", "http://dbpedia.org/resource/OctaDist", "http://dbpedia.org/resource/Odoo", "http://dbpedia.org/resource/Gordano_Messaging_Suite", "http://dbpedia.org/resource/Microsoft_Compiled_HTML_Help", "http://dbpedia.org/resource/Helicon_Ape", "http://dbpedia.org/resource/History_(command)", "http://dbpedia.org/resource/IMPRINT_(Improved_Performance_Research_Integration_Tool)", "http://dbpedia.org/resource/Internet_Connection_Sharing", "http://dbpedia.org/resource/Norton_Insight", "http://dbpedia.org/resource/IBM_Lotus_Approach", "http://dbpedia.org/resource/Leon_(software)", "http://dbpedia.org/resource/Lily_(software)", "http://dbpedia.org/resource/Q_(game_engine)", "http://dbpedia.org/resource/RAMP_Simulation_Software_for_Modelling_Reliability,_Availability_and_Maintainability", "http://dbpedia.org/resource/Rana_(software)", "http://dbpedia.org/resource/Remote_Desktop_Services", "http://dbpedia.org/resource/RenderWare", "http://dbpedia.org/resource/Rmdir", "http://dbpedia.org/resource/Tone_Rion", "http://dbpedia.org/resource/FrameForge_3D_Studio", "http://dbpedia.org/resource/WIN.COM", "http://dbpedia.org/resource/Program_Manager", "http://dbpedia.org/resource/SEEP2D", "http://dbpedia.org/resource/The_Unscrambler", "http://dbpedia.org/resource/WinCC", "http://dbpedia.org/resource/Rapid_PHP_Editor", "http://dbpedia.org/resource/StealthNet", "http://dbpedia.org/resource/VS-PLUS", "http://dbpedia.org/resource/Neural_Designer", "http://dbpedia.org/resource/Quirkos", "http://dbpedia.org/resource/RenderDoc", "http://dbpedia.org/resource/Sweet_Ann", "http://dbpedia.org/resource/Trados_Studio", "http://dbpedia.org/resource/Transparent_Language_Online", "http://dbpedia.org/resource/Citra_(emulator)", "http://dbpedia.org/resource/ClanLib", "http://dbpedia.org/resource/Clarion_(programming_language)", "http://dbpedia.org/resource/Claws_Mail", "http://dbpedia.org/resource/ClipBook_Viewer", "http://dbpedia.org/resource/ClipGrab", "http://dbpedia.org/resource/Clip_Studio_Paint", "http://dbpedia.org/resource/Cliqz", "http://dbpedia.org/resource/CloneCD", "http://dbpedia.org/resource/Clozure_CL", "http://dbpedia.org/resource/Clubdjpro", "http://dbpedia.org/resource/Clutter_(software)", "http://dbpedia.org/resource/Cobalt_(CAD_program)", "http://dbpedia.org/resource/Cobian_Backup", "http://dbpedia.org/resource/Coccinella_(software)", "http://dbpedia.org/resource/CodeCharge_Studio", "http://dbpedia.org/resource/CodeRush", "http://dbpedia.org/resource/Code_Co-op", "http://dbpedia.org/resource/CodedColor_PhotoStudio_Pro", "http://dbpedia.org/resource/Codelobster", "http://dbpedia.org/resource/Colectica", "http://dbpedia.org/resource/Collective_Knowledge_(software)", "http://dbpedia.org/resource/CombineZ", "http://dbpedia.org/resource/Combined_Community_Codec_Pack", "http://dbpedia.org/resource/Comeau_C/C++", "http://dbpedia.org/resource/Comet_Cursor", "http://dbpedia.org/resource/Comic_Seer", "http://dbpedia.org/resource/CommuniGate_Pro", "http://dbpedia.org/resource/Comodo_Dragon", "http://dbpedia.org/resource/Comodo_IceDragon", "http://dbpedia.org/resource/Comp_(command)", "http://dbpedia.org/resource/Compiere", "http://dbpedia.org/resource/CompleteFTP", "http://dbpedia.org/resource/ConEmu", "http://dbpedia.org/resource/ConceptDraw_DIAGRAM", "http://dbpedia.org/resource/ConceptDraw_MINDMAP", "http://dbpedia.org/resource/ConceptDraw_Office", "http://dbpedia.org/resource/ConceptDraw_Project", "http://dbpedia.org/resource/Concurrent_Versions_System", "http://dbpedia.org/resource/Confluence_(software)", "http://dbpedia.org/resource/ConnectWise_Control", "http://dbpedia.org/resource/ConnectedText", "http://dbpedia.org/resource/Connectix_Virtual_Game_Station", "http://dbpedia.org/resource/Construct_(game_engine)", "http://dbpedia.org/resource/Contao", "http://dbpedia.org/resource/Contig_(defragmentation_utility)", "http://dbpedia.org/resource/ContractExpress", "http://dbpedia.org/resource/Control_Panel_(Windows)", "http://dbpedia.org/resource/Convert_(command)", "http://dbpedia.org/resource/CoolSpeech", "http://dbpedia.org/resource/Cooliris_(plugin)", "http://dbpedia.org/resource/Coot_(software)", "http://dbpedia.org/resource/CopSSH", "http://dbpedia.org/resource/CopperCube", "http://dbpedia.org/resource/Alias_(command)", "http://dbpedia.org/resource/Alias_Eclipse", "http://dbpedia.org/resource/Auslogics_Disk_Defrag", "http://dbpedia.org/resource/AutoCAD_Architecture", "http://dbpedia.org/resource/AutoCollage_2008", "http://dbpedia.org/resource/AutoTURN", "http://dbpedia.org/resource/AutoTrack", "http://dbpedia.org/resource/Autodesk_Alias", "http://dbpedia.org/resource/Automate_Schedule", "http://dbpedia.org/resource/Avanna", "http://dbpedia.org/resource/Avast_SecureLine_VPN", "http://dbpedia.org/resource/AveDesk", "http://dbpedia.org/resource/Jokosher", "http://dbpedia.org/resource/Joplin_(software)", "http://dbpedia.org/resource/Jtest", "http://dbpedia.org/resource/JuK", "http://dbpedia.org/resource/Juice_(aggregator)", "http://dbpedia.org/resource/SapWin", "http://dbpedia.org/resource/Scala_(software)", "http://dbpedia.org/resource/Scan2CAD", "http://dbpedia.org/resource/Scanner_(software)", "http://dbpedia.org/resource/Scanner_Access_Now_Easy", "http://dbpedia.org/resource/School_Information_Management_System", "http://dbpedia.org/resource/SciDAVis", "http://dbpedia.org/resource/ScicosLab", "http://dbpedia.org/resource/Scikit-image", "http://dbpedia.org/resource/Scikit-learn", "http://dbpedia.org/resource/Scikit-multiflow", "http://dbpedia.org/resource/Scilab_Image_Processing", "http://dbpedia.org/resource/Scrapy", "http://dbpedia.org/resource/Scratch_Live", "http://dbpedia.org/resource/Screencam", "http://dbpedia.org/resource/Scribe_Mail", "http://dbpedia.org/resource/Scrivener_(software)", "http://dbpedia.org/resource/Sculptris", "http://dbpedia.org/resource/Scythe_Physics_Editor", "http://dbpedia.org/resource/SeaMonkey", "http://dbpedia.org/resource/SeaTools", "http://dbpedia.org/resource/Seamless3d", "http://dbpedia.org/resource/Secure_file_transfer_program", "http://dbpedia.org/resource/Seed7", "http://dbpedia.org/resource/Seesmic", "http://dbpedia.org/resource/Sense_(programming)", "http://dbpedia.org/resource/Seq24", "http://dbpedia.org/resource/SequenceL", "http://dbpedia.org/resource/F9_Financial_Reporting", "http://dbpedia.org/resource/FIDYST", "http://dbpedia.org/resource/FINE_MEP", "http://dbpedia.org/resource/FITS_Liberator", "http://dbpedia.org/resource/FLACS", "http://dbpedia.org/resource/FalconView", "http://dbpedia.org/resource/Fanurio", "http://dbpedia.org/resource/Fast_Duplicate_File_Finder", "http://dbpedia.org/resource/Gh0st_RAT", "http://dbpedia.org/resource/MathCast", "http://dbpedia.org/resource/Norton_Personal_Firewall", "http://dbpedia.org/resource/War_FTP_Daemon", "http://dbpedia.org/resource/Sentry_2020", "http://dbpedia.org/resource/TamoGraph_Site_Survey", "http://dbpedia.org/resource/RQDA", "http://dbpedia.org/resource/Volume_Logic", "http://dbpedia.org/resource/WinAPIOverride", "http://dbpedia.org/resource/KH_Coder", "http://dbpedia.org/resource/Mailtraq", "http://dbpedia.org/resource/ShowDocument", "http://dbpedia.org/resource/LIMDEP", "http://dbpedia.org/resource/QSvn", "http://dbpedia.org/resource/LiteStep", "http://dbpedia.org/resource/NuCalc", "http://dbpedia.org/resource/MapInfo_Professional", "http://dbpedia.org/resource/System_Center_Operations_Manager", "http://dbpedia.org/resource/Azure_DevOps_Server", "http://dbpedia.org/resource/B1_Free_Archiver", "http://dbpedia.org/resource/B4X", "http://dbpedia.org/resource/BAITSSS", "http://dbpedia.org/resource/BBC_BASIC", "http://dbpedia.org/resource/BGS_Groundhog_Desktop", "http://dbpedia.org/resource/BIDS_Helper", "http://dbpedia.org/resource/BLIS_(software)", "http://dbpedia.org/resource/BORGChat", "http://dbpedia.org/resource/BOSS_(molecular_mechanics)", "http://dbpedia.org/resource/Babel_(transcompiler)", "http://dbpedia.org/resource/Background_Intelligent_Transfer_Service", "http://dbpedia.org/resource/Balsamiq", "http://dbpedia.org/resource/Bandicam", "http://dbpedia.org/resource/Banshee_(media_player)", "http://dbpedia.org/resource/Baraha", "http://dbpedia.org/resource/Base_One_Foundation_Component_Library", "http://dbpedia.org/resource/Basic4android", "http://dbpedia.org/resource/Basic4ppc", "http://dbpedia.org/resource/BattlEye", "http://dbpedia.org/resource/Infer.NET", "http://dbpedia.org/resource/InfoZoom", "http://dbpedia.org/resource/Informix_Wingz", "http://dbpedia.org/resource/Inkscape", "http://dbpedia.org/resource/Inno_Setup", "http://dbpedia.org/resource/Inquisiq_R3", "http://dbpedia.org/resource/Instagram", "http://dbpedia.org/resource/InstallShield", "http://dbpedia.org/resource/Installatron", "http://dbpedia.org/resource/Installer_VISE", "http://dbpedia.org/resource/Insure++", "http://dbpedia.org/resource/Integra_Live", "http://dbpedia.org/resource/Integrated_Performance_Primitives", "http://dbpedia.org/resource/Intel_C++_Compiler", "http://dbpedia.org/resource/Intel_Fortran_Compiler", "http://dbpedia.org/resource/IntelliCAD", "http://dbpedia.org/resource/IntelliPoint", "http://dbpedia.org/resource/IntelliType", "http://dbpedia.org/resource/InterActual_Player", "http://dbpedia.org/resource/Interactive_C", "http://dbpedia.org/resource/Interix", "http://dbpedia.org/resource/Intorel", "http://dbpedia.org/resource/Intrexx", "http://dbpedia.org/resource/IrfanView", "http://dbpedia.org/resource/IronPython", "http://dbpedia.org/resource/IronRuby", "http://dbpedia.org/resource/IronScheme", "http://dbpedia.org/resource/Irrlicht_Engine", "http://dbpedia.org/resource/IsoBuster", "http://dbpedia.org/resource/J2K-Codec", "http://dbpedia.org/resource/JACK_Audio_Connection_Kit", "http://dbpedia.org/resource/JAWS_(screen_reader)", "http://dbpedia.org/resource/JCreator", "http://dbpedia.org/resource/JDownloader", "http://dbpedia.org/resource/JEB_decompiler", "http://dbpedia.org/resource/JED_(text_editor)", "http://dbpedia.org/resource/JMP_(statistical_software)", "http://dbpedia.org/resource/JMulTi", "http://dbpedia.org/resource/JOELib", "http://dbpedia.org/resource/JScript", "http://dbpedia.org/resource/JUMP_GIS", "http://dbpedia.org/resource/JWPce", "http://dbpedia.org/resource/J_(programming_language)", "http://dbpedia.org/resource/Mixcraft", "http://dbpedia.org/resource/Mkdir", "http://dbpedia.org/resource/Mlpy", "http://dbpedia.org/resource/Mobile_PhoneTools", "http://dbpedia.org/resource/Mobile_Robot_Programming_Toolkit", "http://dbpedia.org/resource/Mobiola", "http://dbpedia.org/resource/Mod4Win", "http://dbpedia.org/resource/Modelio", "http://dbpedia.org/resource/Moho_(software)", "http://dbpedia.org/resource/Mojiky\u014d", "http://dbpedia.org/resource/Molden", "http://dbpedia.org/resource/Molecular_Evolutionary_Genetics_Analysis", "http://dbpedia.org/resource/Molekel", "http://dbpedia.org/resource/Mondrian_(software)", "http://dbpedia.org/resource/MonoDevelop", "http://dbpedia.org/resource/Monotone_(software)", "http://dbpedia.org/resource/Morpheus_(software)", "http://dbpedia.org/resource/MountainsMap", "http://dbpedia.org/resource/MovAlyzeR", "http://dbpedia.org/resource/MoviePlus", "http://dbpedia.org/resource/Mozart_the_music_processor", "http://dbpedia.org/resource/Mpv_(media_player)", "http://dbpedia.org/resource/Ms2_(software)", "http://dbpedia.org/resource/MuCommander", "http://dbpedia.org/resource/MuPAD", "http://dbpedia.org/resource/MuPDF", "http://dbpedia.org/resource/Mullvad", "http://dbpedia.org/resource/Multi-Edit", "http://dbpedia.org/resource/MultiCharts", "http://dbpedia.org/resource/MultiEx_Commander", "http://dbpedia.org/resource/MultiOTP", "http://dbpedia.org/resource/Multi_Theft_Auto", "http://dbpedia.org/resource/Mumble_(software)", "http://dbpedia.org/resource/Mupen64Plus", "http://dbpedia.org/resource/Mus2", "http://dbpedia.org/resource/MusiCAD", "http://dbpedia.org/resource/MusicBrainz_Picard", "http://dbpedia.org/resource/MusicMaster_(software)", "http://dbpedia.org/resource/MusikCube", "http://dbpedia.org/resource/Musink", "http://dbpedia.org/resource/Muvee_Reveal", "http://dbpedia.org/resource/Muziic", "http://dbpedia.org/resource/MyPaint", "http://dbpedia.org/resource/MyPhoneExplorer", "http://dbpedia.org/resource/MySQL", "http://dbpedia.org/resource/MySQL_Federated", "http://dbpedia.org/resource/MyTuner_Radio", "http://dbpedia.org/resource/Myspace_IM", "http://dbpedia.org/resource/Mystic_BBS", "http://dbpedia.org/resource/NAMD", "http://dbpedia.org/resource/NANO_Antivirus", "http://dbpedia.org/resource/NASA's_Eyes", "http://dbpedia.org/resource/NDepend", "http://dbpedia.org/resource/NEVOD_DMB", "http://dbpedia.org/resource/NI_Ultiboard", "http://dbpedia.org/resource/NL5_Circuit_Simulator", "http://dbpedia.org/resource/NMath", "http://dbpedia.org/resource/NProtect_GameGuard", "http://dbpedia.org/resource/NTBackup", "http://dbpedia.org/resource/NTFSDOS", "http://dbpedia.org/resource/NTLDR", "http://dbpedia.org/resource/Nacsport_Video_Analysis_Software", "http://dbpedia.org/resource/CherryOS", "http://dbpedia.org/resource/Colligo_Contributor", "http://dbpedia.org/resource/Combustion_(software)", "http://dbpedia.org/resource/CommView", "http://dbpedia.org/resource/CubePort", "http://dbpedia.org/resource/Cul_(software)", "http://dbpedia.org/resource/CumFreq", "http://dbpedia.org/resource/Cyber_Diva", "http://dbpedia.org/resource/Toonz", "http://dbpedia.org/resource/TopStyle", "http://dbpedia.org/resource/Torque_(game_engine)", "http://dbpedia.org/resource/TortoiseCVS", "http://dbpedia.org/resource/TortoiseGit", "http://dbpedia.org/resource/TortoiseSVN", "http://dbpedia.org/resource/Total_Commander", "http://dbpedia.org/resource/Touch_(command)", "http://dbpedia.org/resource/Touch_Typist_Typing_Tutor", "http://dbpedia.org/resource/TracExplorer", "http://dbpedia.org/resource/Tracktion_Waveform", "http://dbpedia.org/resource/TradElect", "http://dbpedia.org/resource/Transana", "http://dbpedia.org/resource/TranslateCAD", "http://dbpedia.org/resource/Transmission_(BitTorrent_client)", "http://dbpedia.org/resource/Transterpreter", "http://dbpedia.org/resource/Tread_Marks", "http://dbpedia.org/resource/Trello", "http://dbpedia.org/resource/Trend_Micro_Internet_Security", "http://dbpedia.org/resource/Tribler", "http://dbpedia.org/resource/Tricentis_Tosca", "http://dbpedia.org/resource/Trident_(software)", "http://dbpedia.org/resource/TrueSpace", "http://dbpedia.org/resource/Tulip_(software)", "http://dbpedia.org/resource/TurboCASH", "http://dbpedia.org/resource/Turbo_Assembler", "http://dbpedia.org/resource/Turbo_C++", "http://dbpedia.org/resource/TuxGuitar", "http://dbpedia.org/resource/Tux_Paint", "http://dbpedia.org/resource/Tweak_UI", "http://dbpedia.org/resource/Ixi_software", "http://dbpedia.org/resource/Junctions_(software)", "http://dbpedia.org/resource/IBM_Spectrum_LSF", "http://dbpedia.org/resource/Kaito_(software)", "http://dbpedia.org/resource/Kepler_scientific_workflow_system", "http://dbpedia.org/resource/Kernel_Transaction_Manager", "http://dbpedia.org/resource/Samsung_Kies", "http://dbpedia.org/resource/NetBus", "http://dbpedia.org/resource/PP3", "http://dbpedia.org/resource/SeeU", "http://dbpedia.org/resource/ATTRIB", "http://dbpedia.org/resource/Abaqus", "http://dbpedia.org/resource/Ability_Office", "http://dbpedia.org/resource/AbsoluteTelnet", "http://dbpedia.org/resource/Access_Database_Engine", "http://dbpedia.org/resource/AccuRev_SCM", "http://dbpedia.org/resource/Acme_(text_editor)", "http://dbpedia.org/resource/Act!_LLC", "http://dbpedia.org/resource/ActivePresenter", "http://dbpedia.org/resource/ActiveX", "http://dbpedia.org/resource/Active_Worlds", "http://dbpedia.org/resource/Activprimary", "http://dbpedia.org/resource/AdaControl", "http://dbpedia.org/resource/Adaptive_Modeler", "http://dbpedia.org/resource/Adempiere", "http://dbpedia.org/resource/Adobe_Atmosphere", "http://dbpedia.org/resource/Adobe_Captivate", "http://dbpedia.org/resource/Adobe_Connect", "http://dbpedia.org/resource/Adobe_Digital_Editions", "http://dbpedia.org/resource/Adobe_Flash_Catalyst", "http://dbpedia.org/resource/Adobe_Flash_Media_Live_Encoder", "http://dbpedia.org/resource/Adobe_Flash_Player", "http://dbpedia.org/resource/Adobe_FreeHand", "http://dbpedia.org/resource/Adobe_LiveMotion", "http://dbpedia.org/resource/Adobe_Media_Server", "http://dbpedia.org/resource/Adobe_Premiere", "http://dbpedia.org/resource/Adobe_Presenter", "http://dbpedia.org/resource/Adobe_Scout", "http://dbpedia.org/resource/Adobe_Shockwave_Player", "http://dbpedia.org/resource/Adobe_Ultra", "http://dbpedia.org/resource/Adobe_Visual_Communicator", "http://dbpedia.org/resource/Advanced_Manufacturing_Software", "http://dbpedia.org/resource/Advanced_Resource_Connector", "http://dbpedia.org/resource/Advanced_Simulation_Library", "http://dbpedia.org/resource/Advanced_Systems_Analysis_Program", "http://dbpedia.org/resource/Advanced_Visualization_Studio", "http://dbpedia.org/resource/Adventure_Game_Studio", "http://dbpedia.org/resource/Affinity_Designer", "http://dbpedia.org/resource/Agros2D", "http://dbpedia.org/resource/BugsXLA", "http://dbpedia.org/resource/Buildout", "http://dbpedia.org/resource/Bullet_(software)", "http://dbpedia.org/resource/C++/WinRT", "http://dbpedia.org/resource/C1_CMS", "http://dbpedia.org/resource/C3D_Toolkit", "http://dbpedia.org/resource/CATIA", "http://dbpedia.org/resource/CCS64", "http://dbpedia.org/resource/CC_PDF_Converter", "http://dbpedia.org/resource/CDWinder", "http://dbpedia.org/resource/CD_Player_(Windows)", "http://dbpedia.org/resource/CDex", "http://dbpedia.org/resource/CDisplay", "http://dbpedia.org/resource/CLAN_program", "http://dbpedia.org/resource/CLR_Profiler", "http://dbpedia.org/resource/CODY_Assessment", "http://dbpedia.org/resource/CONN_(functional_connectivity_toolbox)", "http://dbpedia.org/resource/CPU-Z", "http://dbpedia.org/resource/CUPS", "http://dbpedia.org/resource/CVSNT", "http://dbpedia.org/resource/Cadabra_(computer_program)", "http://dbpedia.org/resource/Caffe_(software)", "http://dbpedia.org/resource/Cain_and_Abel_(software)", "http://dbpedia.org/resource/Cakewalk_(sequencer)", "http://dbpedia.org/resource/Cakewalk_Sonar", "http://dbpedia.org/resource/Cakewalk_by_BandLab", "http://dbpedia.org/resource/Calamus_(DTP)", "http://dbpedia.org/resource/Calculix", "http://dbpedia.org/resource/Calibre_(software)", "http://dbpedia.org/resource/Calligra", "http://dbpedia.org/resource/Calligra_Flow", "http://dbpedia.org/resource/Calligra_Plan", "http://dbpedia.org/resource/Calligra_Sheets", "http://dbpedia.org/resource/Calligra_Stage", "http://dbpedia.org/resource/Calligra_Words", "http://dbpedia.org/resource/CamStudio", "http://dbpedia.org/resource/Cambridge_Animation_Systems", "http://dbpedia.org/resource/Camfrog", "http://dbpedia.org/resource/Camtasia", "http://dbpedia.org/resource/Cd_(command)", "http://dbpedia.org/resource/Celestia", "http://dbpedia.org/resource/Cemu", "http://dbpedia.org/resource/Cerberus_FTP_Server", "http://dbpedia.org/resource/Ch_(computer_programming)", "http://dbpedia.org/resource/Chakra_(JScript_engine)", "http://dbpedia.org/resource/Chakra_(JavaScript_engine)", "http://dbpedia.org/resource/Chandler_(software)", "http://dbpedia.org/resource/Charles_Proxy", "http://dbpedia.org/resource/ChemDraw", "http://dbpedia.org/resource/ChessGenius", "http://dbpedia.org/resource/ChessV", "http://dbpedia.org/resource/Chess_Tiger", "http://dbpedia.org/resource/Chess_Titans", "http://dbpedia.org/resource/Chewing_(Input_Method)", "http://dbpedia.org/resource/Choice_(command)", "http://dbpedia.org/resource/Chrome_Remote_Desktop", "http://dbpedia.org/resource/Chromium_B.S.U.", "http://dbpedia.org/resource/Cinder_(programming_library)", "http://dbpedia.org/resource/Cinderella_(software)", "http://dbpedia.org/resource/CineAsset", "http://dbpedia.org/resource/CinePlayer", "http://dbpedia.org/resource/Cinema_4D", "http://dbpedia.org/resource/CintaNotes", "http://dbpedia.org/resource/CircuitLogix", "http://dbpedia.org/resource/Stimulsoft_Reports", "http://dbpedia.org/resource/Stockfish_(chess)", "http://dbpedia.org/resource/Stopping_and_Range_of_Ions_in_Matter", "http://dbpedia.org/resource/Stratagus", "http://dbpedia.org/resource/Strelka_(chess_engine)", "http://dbpedia.org/resource/Stride_(game_engine)", "http://dbpedia.org/resource/Strip_(Unix)", "http://dbpedia.org/resource/Studio_One_(software)", "http://dbpedia.org/resource/StuffIt", "http://dbpedia.org/resource/StuffIt_Expander", "http://dbpedia.org/resource/StyleCop", "http://dbpedia.org/resource/Style_Jukebox", "http://dbpedia.org/resource/Stylus_Studio", "http://dbpedia.org/resource/Sub7", "http://dbpedia.org/resource/SubRip", "http://dbpedia.org/resource/SubTile", "http://dbpedia.org/resource/SugarSync", "http://dbpedia.org/resource/SunVox", "http://dbpedia.org/resource/SuperMemo", "http://dbpedia.org/resource/Super_Flexible", "http://dbpedia.org/resource/Suricata_(software)", "http://dbpedia.org/resource/Surround_SCM", "http://dbpedia.org/resource/Swarm_(simulation)", "http://dbpedia.org/resource/Swift_3D", "http://dbpedia.org/resource/SwisTrack", "http://dbpedia.org/resource/Peltarion_Synapse", "http://dbpedia.org/resource/STAR_(software)", "http://dbpedia.org/resource/Start_(command)", "http://dbpedia.org/resource/Strata_3D", "http://dbpedia.org/resource/Symphony_(software)", "http://dbpedia.org/resource/System_Information_(Windows)", "http://dbpedia.org/resource/TSP_(econometrics_software)", "http://dbpedia.org/resource/Tangerine_(software)", "http://dbpedia.org/resource/Test_&_Performance_Tools_Platform", "http://dbpedia.org/resource/Text_Services_Framework", "http://dbpedia.org/resource/Wunderlist", "http://dbpedia.org/resource/SaltMod", "http://dbpedia.org/resource/Syncthing", "http://dbpedia.org/resource/Usenet_Explorer", "http://dbpedia.org/resource/HDF_Explorer", "http://dbpedia.org/resource/HLSW", "http://dbpedia.org/resource/Jv16_powertools", "http://dbpedia.org/resource/Accelerated_Math", "http://dbpedia.org/resource/Acronis_Files_Connect", "http://dbpedia.org/resource/Action_Center", "http://dbpedia.org/resource/ActivePresentation", "http://dbpedia.org/resource/Active_Desktop", "http://dbpedia.org/resource/Active_Template_Library", "http://dbpedia.org/resource/Capsa_(software)", "http://dbpedia.org/resource/Capture_One", "http://dbpedia.org/resource/Cardfile", "http://dbpedia.org/resource/CaseComplete", "http://dbpedia.org/resource/Hoard_memory_allocator", "http://dbpedia.org/resource/Holiline_Reminder", "http://dbpedia.org/resource/Hollywood_(programming_language)", "http://dbpedia.org/resource/Houdini_(chess)", "http://dbpedia.org/resource/Hugin_(software)", "http://dbpedia.org/resource/Hugo_(software)", "http://dbpedia.org/resource/BearShare", "http://dbpedia.org/resource/Beast_(Trojan_horse)", "http://dbpedia.org/resource/Beonex_Communicator", "http://dbpedia.org/resource/LAMMPS", "http://dbpedia.org/resource/LCD_Smartie", "http://dbpedia.org/resource/LDE(X)", "http://dbpedia.org/resource/LINA_(software)", "http://dbpedia.org/resource/LINQPad", "http://dbpedia.org/resource/LIONsolver", "http://dbpedia.org/resource/LISE++", "http://dbpedia.org/resource/LMMS", "http://dbpedia.org/resource/LONI_Pipeline", "http://dbpedia.org/resource/LS-DYNA", "http://dbpedia.org/resource/LView", "http://dbpedia.org/resource/LaTeXML", "http://dbpedia.org/resource/LabVIEW", "http://dbpedia.org/resource/Label_(command)", "http://dbpedia.org/resource/LambdaNative", "http://dbpedia.org/resource/Landscape_Express", "http://dbpedia.org/resource/Lansweeper", "http://dbpedia.org/resource/Lantern_(software)", "http://dbpedia.org/resource/LaplacesDemon", "http://dbpedia.org/resource/Lark_(software)", "http://dbpedia.org/resource/LeafChat", "http://dbpedia.org/resource/Eloquens_(software)", "http://dbpedia.org/resource/TYPE_(DOS_command)", "http://dbpedia.org/resource/Titan_(game_engine)", "http://dbpedia.org/resource/Title_(command)", "http://dbpedia.org/resource/Tonio_(software)", "http://dbpedia.org/resource/Tree_(command)", "http://dbpedia.org/resource/Gachapoid", "http://dbpedia.org/resource/Galaco", "http://dbpedia.org/resource/GameTap", "http://dbpedia.org/resource/Game_Editor", "http://dbpedia.org/resource/Garant", "http://dbpedia.org/resource/TOMVIEW", "http://dbpedia.org/resource/Hetman_Partition_Recovery", "http://dbpedia.org/resource/Heurist", "http://dbpedia.org/resource/Jedox", "http://dbpedia.org/resource/TetGen", "http://dbpedia.org/resource/TorChat", "http://dbpedia.org/resource/OpenPlay", "http://dbpedia.org/resource/PeakFit", "http://dbpedia.org/resource/TeX4ht", "http://dbpedia.org/resource/Windows_Messaging", "http://dbpedia.org/resource/KNIME", "http://dbpedia.org/resource/Microsoft_Mouse_and_Keyboard_Center", "http://dbpedia.org/resource/Mobiliti", "http://dbpedia.org/resource/Question_Writer", "http://dbpedia.org/resource/Regina_(program)", "http://dbpedia.org/resource/Semcat", "http://dbpedia.org/resource/TTM_57_SL", "http://dbpedia.org/resource/Micro_Focus_Application_Lifecycle_Management", "http://dbpedia.org/resource/Microsoft_Drive_Optimizer", "http://dbpedia.org/resource/Microsoft_PhotoDraw", "http://dbpedia.org/resource/Microsoft_Tips", "http://dbpedia.org/resource/RetroCode", "http://dbpedia.org/resource/ShareScope", "http://dbpedia.org/resource/Thomson_Reuters_Messenger", "http://dbpedia.org/resource/NCSIMUL", "http://dbpedia.org/resource/DocFetcher", "http://dbpedia.org/resource/DocPoint", "http://dbpedia.org/resource/Dolphin_(file_manager)", "http://dbpedia.org/resource/Dolphin_Smalltalk", "http://dbpedia.org/resource/Dooble", "http://dbpedia.org/resource/Double_Commander", "http://dbpedia.org/resource/Dpath", "http://dbpedia.org/resource/Dr.Web", "http://dbpedia.org/resource/DrGeo", "http://dbpedia.org/resource/Dr_Solomon's_Antivirus", "http://dbpedia.org/resource/Dragon_NaturallySpeaking", "http://dbpedia.org/resource/Drawing_Express", "http://dbpedia.org/resource/Drive_Letter_Access", "http://dbpedia.org/resource/Dropbox", "http://dbpedia.org/resource/Dryad_(programming)", "http://dbpedia.org/resource/Dymola", "http://dbpedia.org/resource/Dynamic_Languages_Toolkit", "http://dbpedia.org/resource/D\u00e9j\u00e0_Vu_(software)", "http://dbpedia.org/resource/E-aksharayan", "http://dbpedia.org/resource/E-mu_Emulator_X", "http://dbpedia.org/resource/EAGLE_(program)", "http://dbpedia.org/resource/CloudMe", "http://dbpedia.org/resource/CoWord", "http://dbpedia.org/resource/CodeBook", "http://dbpedia.org/resource/CodeWright", "http://dbpedia.org/resource/Simple_Protocol_for_Independent_Computing_Environments", "http://dbpedia.org/resource/Simple_and_Fast_Multimedia_Library", "http://dbpedia.org/resource/Simplenote", "http://dbpedia.org/resource/SimulationX", "http://dbpedia.org/resource/Simulation_Open_Framework_Architecture", "http://dbpedia.org/resource/Simulia_(company)", "http://dbpedia.org/resource/Simulink", "http://dbpedia.org/resource/Sirius_visualization_software", "http://dbpedia.org/resource/Site_Recorder", "http://dbpedia.org/resource/Sketchbook_(software)", "http://dbpedia.org/resource/SkyGrabber", "http://dbpedia.org/resource/Skyglobe", "http://dbpedia.org/resource/Skype_for_Business_Server", "http://dbpedia.org/resource/Slack_(software)", "http://dbpedia.org/resource/Sleep_(command)", "http://dbpedia.org/resource/Sleipnir_(web_browser)", "http://dbpedia.org/resource/Slic3r", "http://dbpedia.org/resource/SliderDock", "http://dbpedia.org/resource/SlimBrowser", "http://dbpedia.org/resource/SlipKnot_(web_browser)", "http://dbpedia.org/resource/Small_Device_C_Compiler", "http://dbpedia.org/resource/SmartDrive", "http://dbpedia.org/resource/SmartScore", "http://dbpedia.org/resource/Smuxi", "http://dbpedia.org/resource/Snagit", "http://dbpedia.org/resource/Snowdrop_(game_engine)", "http://dbpedia.org/resource/SoX", "http://dbpedia.org/resource/Soda_PDF", "http://dbpedia.org/resource/Sodipodi", "http://dbpedia.org/resource/SoftDent", "http://dbpedia.org/resource/SoftICE", "http://dbpedia.org/resource/SoftMaker_Presentations", "http://dbpedia.org/resource/SoftRAM", "http://dbpedia.org/resource/Software_Ideas_Modeler", "http://dbpedia.org/resource/Soldat_(video_game)", "http://dbpedia.org/resource/Solex_(software)", "http://dbpedia.org/resource/SolidWorks", "http://dbpedia.org/resource/Solid_Edge", "http://dbpedia.org/resource/Solid_PDF_Tools", "http://dbpedia.org/resource/SolveSpace", "http://dbpedia.org/resource/Sonique_(media_player)", "http://dbpedia.org/resource/Sony_Ziris", "http://dbpedia.org/resource/Sound_Forge", "http://dbpedia.org/resource/Source_Filmmaker", "http://dbpedia.org/resource/Source_Insight", "http://dbpedia.org/resource/Creative_Writer", "http://dbpedia.org/resource/Creature_House_Expression", "http://dbpedia.org/resource/Cross/CrossDJ", "http://dbpedia.org/resource/Notion_(productivity_software)", "http://dbpedia.org/resource/ORCA_(quantum_chemistry_program)", "http://dbpedia.org/resource/Oliver_(software)", "http://dbpedia.org/resource/Omnis_Studio", "http://dbpedia.org/resource/Picture_Motion_Browser", "http://dbpedia.org/resource/PowerBuilder", "http://dbpedia.org/resource/StrangeSearch", "http://dbpedia.org/resource/WebLOAD", "http://dbpedia.org/resource/Microsoft_Diagnostics", "http://dbpedia.org/resource/SEER-SEM", "http://dbpedia.org/resource/Ssh-keygen", "http://dbpedia.org/resource/TestPartner", "http://dbpedia.org/resource/ReadyBoost", "http://dbpedia.org/resource/SegReg", "http://dbpedia.org/resource/Windows_for_Pen_Computing", "http://dbpedia.org/resource/Microsoft_Picture_It!", "http://dbpedia.org/resource/SDL_Passolo", "http://dbpedia.org/resource/Synchronize_It", "http://dbpedia.org/resource/Iconv", "http://dbpedia.org/resource/Imaging_for_Windows", "http://dbpedia.org/resource/Smallworld", "http://dbpedia.org/resource/SpectraLayers", "http://dbpedia.org/resource/TilEm", "http://dbpedia.org/resource/Net_Nanny", "http://dbpedia.org/resource/NEi_Nastran", "http://dbpedia.org/resource/SimFiT", "http://dbpedia.org/resource/Mozilla_Skywriter", "http://dbpedia.org/resource/Utatane_Piko", "http://dbpedia.org/resource/VY1", "http://dbpedia.org/resource/VY2", "http://dbpedia.org/resource/Voice_Recorder_(Windows)", "http://dbpedia.org/resource/3D_GameStudio", "http://dbpedia.org/resource/3D_Wayfinder", "http://dbpedia.org/resource/3D_World_Atlas", "http://dbpedia.org/resource/4DOS", "http://dbpedia.org/resource/CoreAVC", "http://dbpedia.org/resource/Core_FTP", "http://dbpedia.org/resource/CorelDRAW", "http://dbpedia.org/resource/Corel_AfterShot_Pro", "http://dbpedia.org/resource/Corel_Painter", "http://dbpedia.org/resource/Corel_Painter_Essentials", "http://dbpedia.org/resource/Corel_Photo-Paint", "http://dbpedia.org/resource/Corel_VideoStudio", "http://dbpedia.org/resource/Cosm_(software)", "http://dbpedia.org/resource/CounterSpy_(software)", "http://dbpedia.org/resource/Courier_(email_client)", "http://dbpedia.org/resource/Cream_(software)", "http://dbpedia.org/resource/Creatio", "http://dbpedia.org/resource/Crimson_Editor", "http://dbpedia.org/resource/Critter_(chess)", "http://dbpedia.org/resource/Cross-platform_Audio_Creation_Tool", "http://dbpedia.org/resource/CrushFTP_Server", "http://dbpedia.org/resource/CryptoNote", "http://dbpedia.org/resource/CrysTBox", "http://dbpedia.org/resource/CrystalDiskMark", "http://dbpedia.org/resource/CrystalExplorer", "http://dbpedia.org/resource/Cubesat_Space_Protocol", "http://dbpedia.org/resource/Cura_(software)", "http://dbpedia.org/resource/CuteFTP", "http://dbpedia.org/resource/CutePDF", "http://dbpedia.org/resource/CwRsync", "http://dbpedia.org/resource/Cygwin", "http://dbpedia.org/resource/Cygwin/X", "http://dbpedia.org/resource/DADiSP", "http://dbpedia.org/resource/DBEdit", "http://dbpedia.org/resource/DC++", "http://dbpedia.org/resource/DECIPHER_(software)", "http://dbpedia.org/resource/DELMIA", "http://dbpedia.org/resource/DIANA_FEA", "http://dbpedia.org/resource/DOSKEY", "http://dbpedia.org/resource/DTrace", "http://dbpedia.org/resource/DVD43", "http://dbpedia.org/resource/DVD_Decrypter", "http://dbpedia.org/resource/DVD_Flick", "http://dbpedia.org/resource/DVD_Player_(Windows)", "http://dbpedia.org/resource/DVD_Shrink", "http://dbpedia.org/resource/DWSIM", "http://dbpedia.org/resource/D_(programming_language)", "http://dbpedia.org/resource/DaVinci_Resolve", "http://dbpedia.org/resource/Daemon_Tools", "http://dbpedia.org/resource/Goverlan_Systems_Management", "http://dbpedia.org/resource/GrADS", "http://dbpedia.org/resource/GrabIt", "http://dbpedia.org/resource/GrafX2", "http://dbpedia.org/resource/Graphviz", "http://dbpedia.org/resource/Green_Dam_Youth_Escort", "http://dbpedia.org/resource/Greenpois0n", "http://dbpedia.org/resource/Greenshot", "http://dbpedia.org/resource/Gregorio_(software)", "http://dbpedia.org/resource/Grindstone_(time-tracking_software)", "http://dbpedia.org/resource/Grok_(JPEG_2000)", "http://dbpedia.org/resource/Guitar_Pro", "http://dbpedia.org/resource/Guitar_Rig", "http://dbpedia.org/resource/HALion", "http://dbpedia.org/resource/HCL_Domino", "http://dbpedia.org/resource/HDR_PhotoStudio", "http://dbpedia.org/resource/HEAT_LANrev", "http://dbpedia.org/resource/Astrophotography", "http://dbpedia.org/resource/At_(command)", "http://dbpedia.org/resource/HeeksCAD", "http://dbpedia.org/resource/HeidiSQL", "http://dbpedia.org/resource/Helicon_Filter", "http://dbpedia.org/resource/Helicon_Focus", "http://dbpedia.org/resource/Helicon_Photo_Safe", "http://dbpedia.org/resource/HeliumV", "http://dbpedia.org/resource/HelpNDoc", "http://dbpedia.org/resource/HelpSmith", "http://dbpedia.org/resource/Help_&_Manual", "http://dbpedia.org/resource/Heritrix", "http://dbpedia.org/resource/Hermes_Project", "http://dbpedia.org/resource/HeuristicLab", "http://dbpedia.org/resource/HiAsm", "http://dbpedia.org/resource/HijackThis", "http://dbpedia.org/resource/MALPAS_Software_Static_Analysis_Toolset", "http://dbpedia.org/resource/MAXQDA", "http://dbpedia.org/resource/MB-Lab", "http://dbpedia.org/resource/MBN_Explorer", "http://dbpedia.org/resource/MBROLA", "http://dbpedia.org/resource/MDL_Chime", "http://dbpedia.org/resource/MDaemon", "http://dbpedia.org/resource/MDynaMix", "http://dbpedia.org/resource/MFEM", "http://dbpedia.org/resource/MIDletPascal", "http://dbpedia.org/resource/MKVToolNix", "http://dbpedia.org/resource/ML.NET", "http://dbpedia.org/resource/MLDesigner", "http://dbpedia.org/resource/MLDonkey", "http://dbpedia.org/resource/MLwiN", "http://dbpedia.org/resource/MODELLER", "http://dbpedia.org/resource/MPDS4", "http://dbpedia.org/resource/MPLAB", "http://dbpedia.org/resource/MS-DOS_Editor", "http://dbpedia.org/resource/MSCDEX", "http://dbpedia.org/resource/MSU_Lossless_Video_Codec", "http://dbpedia.org/resource/MUSCLE_(alignment_software)", "http://dbpedia.org/resource/Mac_Blu-ray_Player", "http://dbpedia.org/resource/MacroModel", "http://dbpedia.org/resource/Macro_Express", "http://dbpedia.org/resource/Macromedia_xRes", "http://dbpedia.org/resource/Macroscope_(methodology_suite)", "http://dbpedia.org/resource/MagicScore", "http://dbpedia.org/resource/Magic_Camera", "http://dbpedia.org/resource/Magnus_Choir", "http://dbpedia.org/resource/MailEnable", "http://dbpedia.org/resource/MailXaminer", "http://dbpedia.org/resource/Mailwasher", "http://dbpedia.org/resource/MakeHuman", "http://dbpedia.org/resource/Making_Waves_(software)", "http://dbpedia.org/resource/Maliit", "http://dbpedia.org/resource/Managed_DirectX", "http://dbpedia.org/resource/Managed_Extensibility_Framework", "http://dbpedia.org/resource/Manifold_System", "http://dbpedia.org/resource/Mantle_(API)", "http://dbpedia.org/resource/Brewmaxx", "http://dbpedia.org/resource/CCG_Profiles", "http://dbpedia.org/resource/CEITON", "http://dbpedia.org/resource/CLAM_(audio_software)", "http://dbpedia.org/resource/COPERT", "http://dbpedia.org/resource/CSPro", "http://dbpedia.org/resource/Cabri_Geometry", "http://dbpedia.org/resource/Caddie_(CAD_system)", "http://dbpedia.org/resource/Cadwork", "http://dbpedia.org/resource/Cadwork_Engineer", "http://dbpedia.org/resource/Calendar_(Windows)", "http://dbpedia.org/resource/Rhyme_Genie", "http://dbpedia.org/resource/Ricochet_(software)", "http://dbpedia.org/resource/Rillsoft_Project", "http://dbpedia.org/resource/RingCube_vDesk", "http://dbpedia.org/resource/RivaTuner", "http://dbpedia.org/resource/Rmetrics", "http://dbpedia.org/resource/RoboDK", "http://dbpedia.org/resource/RocketCake", "http://dbpedia.org/resource/Rocket_(web_framework)", "http://dbpedia.org/resource/Daina_(software)", "http://dbpedia.org/resource/Dhammin", "http://dbpedia.org/resource/DiamondTouch", "http://dbpedia.org/resource/Jeskola_Buzz", "http://dbpedia.org/resource/Flowgorithm", "http://dbpedia.org/resource/Forfiles", "http://dbpedia.org/resource/Fork_Particle", "http://dbpedia.org/resource/Microsoft_Dangerous_Creatures", "http://dbpedia.org/resource/PokerStove", "http://dbpedia.org/resource/PokerTracker", "http://dbpedia.org/resource/Quintessential_Player", "http://dbpedia.org/resource/Sally_Project", "http://dbpedia.org/resource/Illumination_Software_Creator", "http://dbpedia.org/resource/Power_Plus_Pro", "http://dbpedia.org/resource/ParaSurf", "http://dbpedia.org/resource/Quick_Objects", "http://dbpedia.org/resource/Vocaloid_(software)", "http://dbpedia.org/resource/WinEdt", "http://dbpedia.org/resource/LUSAS", "http://dbpedia.org/resource/MS_Antivirus_(malware)", "http://dbpedia.org/resource/WhenU_SaveNow", "http://dbpedia.org/resource/IBM_Lotus_Organizer", "http://dbpedia.org/resource/ICEM_Surf", "http://dbpedia.org/resource/IDA_Indoor_Climate_and_Energy", "http://dbpedia.org/resource/IMeet", "http://dbpedia.org/resource/IMesh", "http://dbpedia.org/resource/INTLAB", "http://dbpedia.org/resource/Kak_worm", "http://dbpedia.org/resource/Kaspersky_Anti-Virus", "http://dbpedia.org/resource/PicaJet", "http://dbpedia.org/resource/UTEXAS", "http://dbpedia.org/resource/WinX_DVD_Ripper_Platinum", "http://dbpedia.org/resource/Ex_Falso", "http://dbpedia.org/resource/Exaile", "http://dbpedia.org/resource/ExamDiff_Pro", "http://dbpedia.org/resource/Excalibur_BBS", "http://dbpedia.org/resource/Exe2bin", "http://dbpedia.org/resource/ExifTool", "http://dbpedia.org/resource/ExpanDrive", "http://dbpedia.org/resource/Expect", "http://dbpedia.org/resource/Express_Data_Path", "http://dbpedia.org/resource/Ext2Fsd", "http://dbpedia.org/resource/Extempore_(software)", "http://dbpedia.org/resource/Extensible_Computational_Chemistry_Environment", "http://dbpedia.org/resource/Extensible_Storage_Engine", "http://dbpedia.org/resource/Extreme_Loading_for_Structures", "http://dbpedia.org/resource/Extromatica_Network_Monitor", "http://dbpedia.org/resource/Ezycom", "http://dbpedia.org/resource/FAUST_(programming_language)", "http://dbpedia.org/resource/FEFLOW", "http://dbpedia.org/resource/FTP_Commander", "http://dbpedia.org/resource/FTP_Voyager", "http://dbpedia.org/resource/Factor_(programming_language)", "http://dbpedia.org/resource/Fairmat", "http://dbpedia.org/resource/Fairy-Max", "http://dbpedia.org/resource/Family.Show", "http://dbpedia.org/resource/Family_Historian", "http://dbpedia.org/resource/Family_Tree_Maker", "http://dbpedia.org/resource/Fantasy_Grounds", "http://dbpedia.org/resource/FarPoint_Spread", "http://dbpedia.org/resource/FastTrack_Schedule", "http://dbpedia.org/resource/Faustino_(platform)", "http://dbpedia.org/resource/Fdisk", "http://dbpedia.org/resource/FeedDemon", "http://dbpedia.org/resource/Feedreader_(Windows_Application)", "http://dbpedia.org/resource/Felgo", "http://dbpedia.org/resource/Femap", "http://dbpedia.org/resource/Fences_(software)", "http://dbpedia.org/resource/Feng_Office_Community_Edition", "http://dbpedia.org/resource/Fermat_(computer_algebra_system)", "http://dbpedia.org/resource/Fetion", "http://dbpedia.org/resource/Fightcade", "http://dbpedia.org/resource/Figma_(software)", "http://dbpedia.org/resource/FileZilla", "http://dbpedia.org/resource/File_Commander", "http://dbpedia.org/resource/File_Compare", "http://dbpedia.org/resource/Filzip", "http://dbpedia.org/resource/FinalBuilder", "http://dbpedia.org/resource/Finale_(scorewriter)", "http://dbpedia.org/resource/Find_(Windows)", "http://dbpedia.org/resource/Fine_Artist", "http://dbpedia.org/resource/Firefly_(computer_program)", "http://dbpedia.org/resource/Firefox_2", "http://dbpedia.org/resource/Firefox_3.0", "http://dbpedia.org/resource/Firefox_3.6", "http://dbpedia.org/resource/FlashGet", "http://dbpedia.org/resource/FlashPaper", "http://dbpedia.org/resource/FlatBuffers", "http://dbpedia.org/resource/FlexHex", "http://dbpedia.org/resource/FlexPro", "http://dbpedia.org/resource/Flexcom", "http://dbpedia.org/resource/Flood_Modeller", "http://dbpedia.org/resource/Flowcode", "http://dbpedia.org/resource/Fluctuat", "http://dbpedia.org/resource/Fluent_Design_System", "http://dbpedia.org/resource/FolderSize", "http://dbpedia.org/resource/Folding@home", "http://dbpedia.org/resource/Foldit", "http://dbpedia.org/resource/Fontmatrix", "http://dbpedia.org/resource/Bartok_(compiler)", "http://dbpedia.org/resource/Jigdo", "http://dbpedia.org/resource/Jitsi", "http://dbpedia.org/resource/Joget_Workflow", "http://dbpedia.org/resource/BisQue_(Bioimage_Analysis_and_Management_Platform)", "http://dbpedia.org/resource/Bit-Twist", "http://dbpedia.org/resource/Bitcasa", "http://dbpedia.org/resource/LeechFTP", "http://dbpedia.org/resource/Legacy_Family_Tree", "http://dbpedia.org/resource/LibLAS", "http://dbpedia.org/resource/LibRaw", "http://dbpedia.org/resource/LibSBML", "http://dbpedia.org/resource/Libav", "http://dbpedia.org/resource/LiberKey", "http://dbpedia.org/resource/Libffi", "http://dbpedia.org/resource/LibreLogo", "http://dbpedia.org/resource/Libwww", "http://dbpedia.org/resource/LifeLines", "http://dbpedia.org/resource/LightGBM", "http://dbpedia.org/resource/Light_(web_browser)", "http://dbpedia.org/resource/Lightning_Memory-Mapped_Database", "http://dbpedia.org/resource/Lightspark", "http://dbpedia.org/resource/Lightweight_Java_Game_Library", "http://dbpedia.org/resource/Linphone", "http://dbpedia.org/resource/Liquid_Rhythm", "http://dbpedia.org/resource/LispWorks", "http://dbpedia.org/resource/List_&_Label", "http://dbpedia.org/resource/Naum_(chess)", "http://dbpedia.org/resource/Navisworks", "http://dbpedia.org/resource/Neembuu_Uploader", "http://dbpedia.org/resource/NekoVM", "http://dbpedia.org/resource/NeoLoad", "http://dbpedia.org/resource/NeoPaint", "http://dbpedia.org/resource/NeoPlanet", "http://dbpedia.org/resource/Nero_Burning_ROM", "http://dbpedia.org/resource/Nestopia", "http://dbpedia.org/resource/NetCDF_Operators", "http://dbpedia.org/resource/NetCaptor", "http://dbpedia.org/resource/NetMiner", "http://dbpedia.org/resource/NetSupport_Manager", "http://dbpedia.org/resource/Net_(command)", "http://dbpedia.org/resource/Netop_Remote_Control", "http://dbpedia.org/resource/Netsh", "http://dbpedia.org/resource/Netstat", "http://dbpedia.org/resource/Nettalk_(IRC_client)", "http://dbpedia.org/resource/Netwide_Assembler", "http://dbpedia.org/resource/Neural_Network_Intelligence", "http://dbpedia.org/resource/NewWave", "http://dbpedia.org/resource/NewsBin_Pro", "http://dbpedia.org/resource/NewsLeecher", "http://dbpedia.org/resource/Nightingale_(software)", "http://dbpedia.org/resource/NihongoUp", "http://dbpedia.org/resource/Pax_(command)", "http://dbpedia.org/resource/Pcap", "http://dbpedia.org/resource/PearPC", "http://dbpedia.org/resource/PeerBlock", "http://dbpedia.org/resource/Pencil2D", "http://dbpedia.org/resource/Performance_Co-Pilot", "http://dbpedia.org/resource/Personal_Ancestral_File", "http://dbpedia.org/resource/Personal_Knowbase", "http://dbpedia.org/resource/Petrel_(reservoir_software)", "http://dbpedia.org/resource/Phoner", "http://dbpedia.org/resource/Phonon_(software)", "http://dbpedia.org/resource/Phoronix_Test_Suite", "http://dbpedia.org/resource/PhotoLine", "http://dbpedia.org/resource/PhotoModeler", "http://dbpedia.org/resource/PhotoPerfect", "http://dbpedia.org/resource/Photo_Mechanic", "http://dbpedia.org/resource/Photo_Ninja", "http://dbpedia.org/resource/Photopia_Optical_Design_Software", "http://dbpedia.org/resource/Php4delphi", "http://dbpedia.org/resource/PhysX", "http://dbpedia.org/resource/Phyz", "http://dbpedia.org/resource/PicMaster", "http://dbpedia.org/resource/PicPick", "http://dbpedia.org/resource/PicoScope_(software)", "http://dbpedia.org/resource/Picogen", "http://dbpedia.org/resource/Pro/DESKTOP", "http://dbpedia.org/resource/ProRealTime", "http://dbpedia.org/resource/Pro_Tools", "http://dbpedia.org/resource/ProbLog", "http://dbpedia.org/resource/ProcDump", "http://dbpedia.org/resource/ProjectWise", "http://dbpedia.org/resource/Project_Chrono", "http://dbpedia.org/resource/Project_Dogwaffle", "http://dbpedia.org/resource/Project_KickStart", "http://dbpedia.org/resource/Project_Looking_Glass", "http://dbpedia.org/resource/Project_Unreality", "http://dbpedia.org/resource/Promine", "http://dbpedia.org/resource/Proton_VPN", "http://dbpedia.org/resource/Proxomitron", "http://dbpedia.org/resource/Psi_(instant_messaging_client)", "http://dbpedia.org/resource/PuTTY", "http://dbpedia.org/resource/Puffin_Browser", "http://dbpedia.org/resource/Puma.NET", "http://dbpedia.org/resource/PunkBuster", "http://dbpedia.org/resource/Puppet_(software)", "http://dbpedia.org/resource/PyMC", "http://dbpedia.org/resource/PyMOL", "http://dbpedia.org/resource/PyScripter", "http://dbpedia.org/resource/PySynth", "http://dbpedia.org/resource/Pyjs", "http://dbpedia.org/resource/Python_Tools_for_Visual_Studio", "http://dbpedia.org/resource/Q&A_(Symantec)", "http://dbpedia.org/resource/QB64", "http://dbpedia.org/resource/QBittorrent", "http://dbpedia.org/resource/QBlade", "http://dbpedia.org/resource/QCAD", "http://dbpedia.org/resource/QDA_Miner", "http://dbpedia.org/resource/QDevelop", "http://dbpedia.org/resource/QF-Test", "http://dbpedia.org/resource/QVCS", "http://dbpedia.org/resource/Qalculate!", "http://dbpedia.org/resource/Qiqqa", "http://dbpedia.org/resource/Qmmp", "http://dbpedia.org/resource/Quake_Army_Knife", "http://dbpedia.org/resource/Quantitative_Discourse_Analysis_Package", "http://dbpedia.org/resource/Quantum_Moves", "http://dbpedia.org/resource/QuarkXPress", "http://dbpedia.org/resource/Quark_CopyDesk", "http://dbpedia.org/resource/Quassel_IRC", "http://dbpedia.org/resource/Quattro_Pro", "http://dbpedia.org/resource/QuickBooks", "http://dbpedia.org/resource/QuickC", "http://dbpedia.org/resource/QuickCheck", "http://dbpedia.org/resource/QuickPar", "http://dbpedia.org/resource/QuickPlay", "http://dbpedia.org/resource/Quick_View", "http://dbpedia.org/resource/Quickfield", "http://dbpedia.org/resource/Quiet_Internet_Pager", "http://dbpedia.org/resource/Quod_Libet_(software)", "http://dbpedia.org/resource/QuteMol", "http://dbpedia.org/resource/RCA_open-source_application", "http://dbpedia.org/resource/REFInd", "http://dbpedia.org/resource/REFIt", "http://dbpedia.org/resource/RETAS", "http://dbpedia.org/resource/RFEM", "http://dbpedia.org/resource/RJ_TextEd", "http://dbpedia.org/resource/RKWard", "http://dbpedia.org/resource/RK_Launcher", "http://dbpedia.org/resource/ROBODoc", "http://dbpedia.org/resource/ROOT", "http://dbpedia.org/resource/RSS_Guard", "http://dbpedia.org/resource/RT\u00c9_Player", "http://dbpedia.org/resource/R_Tools_for_Visual_Studio", "http://dbpedia.org/resource/RadPHP", "http://dbpedia.org/resource/Radare2", "http://dbpedia.org/resource/Radiance_(software)", "http://dbpedia.org/resource/RagTime_(software)", "http://dbpedia.org/resource/Rage_Maker", "http://dbpedia.org/resource/Ragel", "http://dbpedia.org/resource/ThinLinc", "http://dbpedia.org/resource/ThreadSafe", "http://dbpedia.org/resource/TiEmu", "http://dbpedia.org/resource/Tick_(software)", "http://dbpedia.org/resource/TightVNC", "http://dbpedia.org/resource/Timbuktu_(software)", "http://dbpedia.org/resource/Time_Matters", "http://dbpedia.org/resource/Timeout_(computing)", "http://dbpedia.org/resource/TinTin++", "http://dbpedia.org/resource/Tinker_(software)", "http://dbpedia.org/resource/Tiny_C_Compiler", "http://dbpedia.org/resource/Tixati", "http://dbpedia.org/resource/Tlen.pl", "http://dbpedia.org/resource/Tomahawk_(software)", "http://dbpedia.org/resource/Tomviz", "http://dbpedia.org/resource/WinBUGS", "http://dbpedia.org/resource/WinBuilder", "http://dbpedia.org/resource/WinDVD", "http://dbpedia.org/resource/WinDbg", "http://dbpedia.org/resource/WinDiff", "http://dbpedia.org/resource/WinDirStat", "http://dbpedia.org/resource/WinFIG", "http://dbpedia.org/resource/WinGate", "http://dbpedia.org/resource/WinHex", "http://dbpedia.org/resource/WinLibre", "http://dbpedia.org/resource/WinMX", "http://dbpedia.org/resource/WinMerge", "http://dbpedia.org/resource/WinPT", "http://dbpedia.org/resource/WinPenPack", "http://dbpedia.org/resource/WinRoll", "http://dbpedia.org/resource/WinSCP", "http://dbpedia.org/resource/WinShell", "http://dbpedia.org/resource/WinUSB", "http://dbpedia.org/resource/Windchill_(software)", "http://dbpedia.org/resource/Window-Eyes", "http://dbpedia.org/resource/WindowBase", "http://dbpedia.org/resource/WindowBlinds", "http://dbpedia.org/resource/Window_Clippings", "http://dbpedia.org/resource/Windows_Activation_Services", "http://dbpedia.org/resource/Windows_Anytime_Upgrade", "http://dbpedia.org/resource/Windows_Communication_Foundation", "http://dbpedia.org/resource/Windows_Driver_Frameworks", "http://dbpedia.org/resource/Windows_Driver_Kit", "http://dbpedia.org/resource/Windows_File_Manager", "http://dbpedia.org/resource/Windows_Forms", "http://dbpedia.org/resource/Windows_Hardware_Lab_Kit", "http://dbpedia.org/resource/Windows_Installer", "http://dbpedia.org/resource/Windows_Live_Call", "http://dbpedia.org/resource/Windows_Media_Encoder", "http://dbpedia.org/resource/Windows_Messenger", "http://dbpedia.org/resource/Windows_Mixed_Reality", "http://dbpedia.org/resource/Windows_Notepad", "http://dbpedia.org/resource/Windows_Preinstallation_Environment", "http://dbpedia.org/resource/Windows_Presentation_Foundation", "http://dbpedia.org/resource/Windows_Registry", "http://dbpedia.org/resource/Windows_Search", "http://dbpedia.org/resource/Windows_Services_for_UNIX", "http://dbpedia.org/resource/Windows_Template_Library", "http://dbpedia.org/resource/Windows_UI_Library", "http://dbpedia.org/resource/Windows_Workflow_Foundation", "http://dbpedia.org/resource/Windows_on_Windows", "http://dbpedia.org/resource/Windscribe", "http://dbpedia.org/resource/Wing_IDE", "http://dbpedia.org/resource/Winny", "http://dbpedia.org/resource/Winplot", "http://dbpedia.org/resource/Wintermute_Engine", "http://dbpedia.org/resource/Wire_(software)", "http://dbpedia.org/resource/WireframeSketcher", "http://dbpedia.org/resource/WoW64", "http://dbpedia.org/resource/WordQ+SpeakQ", "http://dbpedia.org/resource/WordSmith_(software)", "http://dbpedia.org/resource/WordStar", "http://dbpedia.org/resource/WriteOnline", "http://dbpedia.org/resource/Wubi_(software)", "http://dbpedia.org/resource/X-13ARIMA-SEATS", "http://dbpedia.org/resource/X-Win32", "http://dbpedia.org/resource/X2Go", "http://dbpedia.org/resource/XBLite", "http://dbpedia.org/resource/XB_Browser", "http://dbpedia.org/resource/XBoard", "http://dbpedia.org/resource/XCAT", "http://dbpedia.org/resource/XCOPY", "http://dbpedia.org/resource/XLfit", "http://dbpedia.org/resource/XLink_Kai", "http://dbpedia.org/resource/XMedia_Recode", "http://dbpedia.org/resource/XSplit", "http://dbpedia.org/resource/XTree", "http://dbpedia.org/resource/XUnit.net", "http://dbpedia.org/resource/XYplorer", "http://dbpedia.org/resource/Xbox_(app)", "http://dbpedia.org/resource/Xbox_Development_Kit", "http://dbpedia.org/resource/Xcas", "http://dbpedia.org/resource/Xdelta", "http://dbpedia.org/resource/Xenu's_Link_Sleuth", "http://dbpedia.org/resource/Xfire", "http://dbpedia.org/resource/XiRCON", "http://dbpedia.org/resource/Xilinx_ISE", "http://dbpedia.org/resource/Xilinx_Vivado", "http://dbpedia.org/resource/Xin_Hua_(software)", "http://dbpedia.org/resource/XtreemFS", "http://dbpedia.org/resource/XyWrite", "http://dbpedia.org/resource/YAP_(Prolog)", "http://dbpedia.org/resource/YASARA", "http://dbpedia.org/resource/Yabasic", "http://dbpedia.org/resource/Yandex_Disk", "http://dbpedia.org/resource/Yanhe_(software)", "http://dbpedia.org/resource/FreeFlyer", "http://dbpedia.org/resource/FreeTrack", "http://dbpedia.org/resource/Fukase", "http://dbpedia.org/resource/GB-PVR", "http://dbpedia.org/resource/GDK", "http://dbpedia.org/resource/GEUP", "http://dbpedia.org/resource/XMetaL", "http://dbpedia.org/resource/Xpress_Pro", "http://dbpedia.org/resource/Meetro", "http://dbpedia.org/resource/In-Step_BLUE", "http://dbpedia.org/resource/IntegraXor", "http://dbpedia.org/resource/Intergator", "http://dbpedia.org/resource/Real_Time_AudioSuite", "http://dbpedia.org/resource/SOCET_SET", "http://dbpedia.org/resource/SigmaPlot", "http://dbpedia.org/resource/Microsoft_Plus!", "http://dbpedia.org/resource/PhotoImpression", "http://dbpedia.org/resource/Objecteering", "http://dbpedia.org/resource/SortSite", "http://dbpedia.org/resource/User_State_Migration_Tool", "http://dbpedia.org/resource/Microsoft_Network_Monitor", "http://dbpedia.org/resource/Posadis", "http://dbpedia.org/resource/Qmake", "http://dbpedia.org/resource/UModel", "http://dbpedia.org/resource/ELAN_software", "http://dbpedia.org/resource/ELKI", "http://dbpedia.org/resource/EMMS_(media_player)", "http://dbpedia.org/resource/EMSO_simulator", "http://dbpedia.org/resource/EM_Client", "http://dbpedia.org/resource/EPANET", "http://dbpedia.org/resource/EPSXe", "http://dbpedia.org/resource/EPrompter", "http://dbpedia.org/resource/ER/Studio", "http://dbpedia.org/resource/ESET_NOD32", "http://dbpedia.org/resource/ESpeak", "http://dbpedia.org/resource/EXeLearning", "http://dbpedia.org/resource/Early_notation_typesetter", "http://dbpedia.org/resource/Earth3D", "http://dbpedia.org/resource/Earth_clock", "http://dbpedia.org/resource/EasyHDR", "http://dbpedia.org/resource/Easy_Java_Simulations", "http://dbpedia.org/resource/Ecco_Pro", "http://dbpedia.org/resource/Echo_(command)", "http://dbpedia.org/resource/Eclipse_(software)", "http://dbpedia.org/resource/Eclipse_Che", "http://dbpedia.org/resource/EcosimPro", "http://dbpedia.org/resource/EditDV", "http://dbpedia.org/resource/Edius", "http://dbpedia.org/resource/Electric_Image_Animation_System", "http://dbpedia.org/resource/Elicitus", "http://dbpedia.org/resource/Elmer_FEM_solver", "http://dbpedia.org/resource/Analyse-it", "http://dbpedia.org/resource/Jumpshare", "http://dbpedia.org/resource/Just_another_Gibbs_sampler", "http://dbpedia.org/resource/K-Meleon", "http://dbpedia.org/resource/KDevelop", "http://dbpedia.org/resource/KFRlib", "http://dbpedia.org/resource/KRISTAL_Audio_Engine", "http://dbpedia.org/resource/KVIrc", "http://dbpedia.org/resource/KWord", "http://dbpedia.org/resource/KXEN_Inc.", "http://dbpedia.org/resource/Kaillera", "http://dbpedia.org/resource/Kanboard", "http://dbpedia.org/resource/LoLiWin", "http://dbpedia.org/resource/Login_VSI", "http://dbpedia.org/resource/Loginventory", "http://dbpedia.org/resource/Lookeen", "http://dbpedia.org/resource/Lotus_1-2-3", "http://dbpedia.org/resource/Low_Orbit_Ion_Cannon", "http://dbpedia.org/resource/Lspci", "http://dbpedia.org/resource/Lumi_(software)", "http://dbpedia.org/resource/Luminance_HDR", "http://dbpedia.org/resource/Luo_Tianyi", "http://dbpedia.org/resource/Lzip", "http://dbpedia.org/resource/Business_Intelligence_Development_Studio", "http://dbpedia.org/resource/C.a.R.", "http://dbpedia.org/resource/CADKEY", "http://dbpedia.org/resource/CAMeL-View_TestRig", "http://dbpedia.org/resource/Office_Genuine_Advantage", "http://dbpedia.org/resource/OllyDbg", "http://dbpedia.org/resource/Oloneo_PhotoEngine", "http://dbpedia.org/resource/OmegaT", "http://dbpedia.org/resource/OmniPeek", "http://dbpedia.org/resource/Omnitracker", "http://dbpedia.org/resource/OneFuzz", "http://dbpedia.org/resource/Onepager_Pro", "http://dbpedia.org/resource/OnlineHPC", "http://dbpedia.org/resource/Onshape", "http://dbpedia.org/resource/OoVoo", "http://dbpedia.org/resource/Oolite_(video_game)", "http://dbpedia.org/resource/Open-Sankor\u00e9", "http://dbpedia.org/resource/OpenBLAS", "http://dbpedia.org/resource/OpenBazaar", "http://dbpedia.org/resource/OpenCD", "http://dbpedia.org/resource/OpenCanvas", "http://dbpedia.org/resource/OpenCards", "http://dbpedia.org/resource/OpenDisc", "http://dbpedia.org/resource/OpenEMR", "http://dbpedia.org/resource/OpenElement", "http://dbpedia.org/resource/OpenFL", "http://dbpedia.org/resource/OpenFX_(software)", "http://dbpedia.org/resource/OpenFrameworks", "http://dbpedia.org/resource/OpenHAB", "http://dbpedia.org/resource/OpenHospital", "http://dbpedia.org/resource/OpenJPEG", "http://dbpedia.org/resource/OpenLB", "http://dbpedia.org/resource/OpenMRS", "http://dbpedia.org/resource/OpenOMR", "http://dbpedia.org/resource/OpenOffice.org", "http://dbpedia.org/resource/OpenPuff", "http://dbpedia.org/resource/OpenRAVE", "http://dbpedia.org/resource/OpenRCT2", "http://dbpedia.org/resource/OpenSTA", "http://dbpedia.org/resource/OpenShot", "http://dbpedia.org/resource/Open_Babel", "http://dbpedia.org/resource/Open_Dental", "http://dbpedia.org/resource/Open_Neural_Network_Exchange", "http://dbpedia.org/resource/Open_Source_Routing_Machine", "http://dbpedia.org/resource/Open_Source_Software_CD", "http://dbpedia.org/resource/Opera_(web_browser)", "http://dbpedia.org/resource/Ophcrack", "http://dbpedia.org/resource/Opsi", "http://dbpedia.org/resource/OptimFROG", "http://dbpedia.org/resource/Oracle_Cloud", "http://dbpedia.org/resource/Orb_(software)", "http://dbpedia.org/resource/Orbit_Downloader", "http://dbpedia.org/resource/Orchard_Project", "http://dbpedia.org/resource/Origin_(data_analysis_software)", "http://dbpedia.org/resource/Orleans_(software_framework)", "http://dbpedia.org/resource/OutGuess", "http://dbpedia.org/resource/OutWit_Hub", "http://dbpedia.org/resource/Overture_(software)", "http://dbpedia.org/resource/Ovi_(Nokia)", "http://dbpedia.org/resource/CircuitMaker", "http://dbpedia.org/resource/Citrix_Virtual_Apps", "http://dbpedia.org/resource/Serif_PhotoPlus", "http://dbpedia.org/resource/Serif_products", "http://dbpedia.org/resource/Shapeshifter_(software)", "http://dbpedia.org/resource/Share_(command)", "http://dbpedia.org/resource/SharpDevelop", "http://dbpedia.org/resource/Shed_Skin", "http://dbpedia.org/resource/ShelXle", "http://dbpedia.org/resource/Shotcut", "http://dbpedia.org/resource/Shotty_(software)", "http://dbpedia.org/resource/Should_I_Remove_It%3F", "http://dbpedia.org/resource/Showsize", "http://dbpedia.org/resource/Shutdown_(computing)", "http://dbpedia.org/resource/Sibelius_(scorewriter)", "http://dbpedia.org/resource/Sidra_Intersection", "http://dbpedia.org/resource/SigmaStat", "http://dbpedia.org/resource/SignPlot", "http://dbpedia.org/resource/SignalR", "http://dbpedia.org/resource/SilhouetteFX", "http://dbpedia.org/resource/Silk_Performer", "http://dbpedia.org/resource/Silk_Test", "http://dbpedia.org/resource/Silkypix_Developer_Studio", "http://dbpedia.org/resource/Silo_(software)", "http://dbpedia.org/resource/Silverfrost_FTN95", "http://dbpedia.org/resource/Consultant_Plus", "http://dbpedia.org/resource/Coolfluid", "http://dbpedia.org/resource/Corel_Presentations", "http://dbpedia.org/resource/Soya3D", "http://dbpedia.org/resource/SpaceClaim", "http://dbpedia.org/resource/SpaceSniffer", "http://dbpedia.org/resource/Spec_Explorer", "http://dbpedia.org/resource/Speed_Dreams", "http://dbpedia.org/resource/Splashtop", "http://dbpedia.org/resource/Spring_Engine", "http://dbpedia.org/resource/SprutCAM", "http://dbpedia.org/resource/SpySubtract", "http://dbpedia.org/resource/SpywareBlaster", "http://dbpedia.org/resource/SquidNT", "http://dbpedia.org/resource/Squid_(software)", "http://dbpedia.org/resource/Stackless_Python", "http://dbpedia.org/resource/Staden_Package", "http://dbpedia.org/resource/StaffPad", "http://dbpedia.org/resource/Stan_(software)", "http://dbpedia.org/resource/StarLogo", "http://dbpedia.org/resource/StarUML", "http://dbpedia.org/resource/Starmad", "http://dbpedia.org/resource/StatXact", "http://dbpedia.org/resource/Stata", "http://dbpedia.org/resource/Statgraphics", "http://dbpedia.org/resource/StatsDirect", "http://dbpedia.org/resource/Steed_(FTP_client)", "http://dbpedia.org/resource/StegAlyzerAS", "http://dbpedia.org/resource/Steinberg_Cubase", "http://dbpedia.org/resource/Steinberg_Nuendo", "http://dbpedia.org/resource/Stella_(emulator)", "http://dbpedia.org/resource/Stellar_Data_Recovery_for_Windows", "http://dbpedia.org/resource/Stellarium_(software)", "http://dbpedia.org/resource/Sterling_(program)", "http://dbpedia.org/resource/MyColors", "http://dbpedia.org/resource/OxMetrics", "http://dbpedia.org/resource/STRAND7", "http://dbpedia.org/resource/Mp3DirectCut", "http://dbpedia.org/resource/Norton_Zone", "http://dbpedia.org/resource/Ox_(programming_language)", "http://dbpedia.org/resource/Zultrax", "http://dbpedia.org/resource/LinuxLive_USB_Creator", "http://dbpedia.org/resource/Unistat", "http://dbpedia.org/resource/Ray_Dream_Studio", "http://dbpedia.org/resource/Keykit", "http://dbpedia.org/resource/Keysight_VEE", "http://dbpedia.org/resource/System_Policy_Editor", "http://dbpedia.org/resource/TRANSYT-7F", "http://dbpedia.org/resource/WhiskerControl", "http://dbpedia.org/resource/Kokone", "http://dbpedia.org/resource/SetACL", "http://dbpedia.org/resource/Tasklist", "http://dbpedia.org/resource/Vopt", "http://dbpedia.org/resource/Raman_Tool_Set", "http://dbpedia.org/resource/Recovery_Toolbox", "http://dbpedia.org/resource/Bibble_(software)", "http://dbpedia.org/resource/Big_Brother_(software)", "http://dbpedia.org/resource/Bigloo", "http://dbpedia.org/resource/BinTube", "http://dbpedia.org/resource/Bindows", "http://dbpedia.org/resource/Bioconductor", "http://dbpedia.org/resource/BitLocker", "http://dbpedia.org/resource/Bitwig_Studio", "http://dbpedia.org/resource/BleachBit", "http://dbpedia.org/resource/Bleem!", "http://dbpedia.org/resource/Blender_(software)", "http://dbpedia.org/resource/BlindWrite", "http://dbpedia.org/resource/Blitz_BASIC", "http://dbpedia.org/resource/BlogBridge", "http://dbpedia.org/resource/Blu-code", "http://dbpedia.org/resource/BlueGriffon", "http://dbpedia.org/resource/BlueMSX", "http://dbpedia.org/resource/BlueMaxima's_Flashpoint", "http://dbpedia.org/resource/Blue_Frog", "http://dbpedia.org/resource/Bnetd", "http://dbpedia.org/resource/Bonjour_(software)", "http://dbpedia.org/resource/BonziBuddy", "http://dbpedia.org/resource/HxD", "http://dbpedia.org/resource/Hydrogen_(software)", "http://dbpedia.org/resource/HyperCam", "http://dbpedia.org/resource/I'm_InTouch", "http://dbpedia.org/resource/IA_(software)", "http://dbpedia.org/resource/IA_Writer", "http://dbpedia.org/resource/IBM_Lotus_SmartSuite", "http://dbpedia.org/resource/IBM_Lotus_Web_Content_Management", "http://dbpedia.org/resource/IBM_Lotus_Word_Pro", "http://dbpedia.org/resource/IBM_PCPG", "http://dbpedia.org/resource/IBM_RPG", "http://dbpedia.org/resource/IBM_Rational_Rose_XDE", "http://dbpedia.org/resource/IBM_TXSeries", "http://dbpedia.org/resource/IBM_ViaVoice", "http://dbpedia.org/resource/IBM_WebSphere_Application_Server", "http://dbpedia.org/resource/IBM_WebSphere_Service_Registry_and_Repository", "http://dbpedia.org/resource/IBM_cloud_computing", "http://dbpedia.org/resource/IDempiere", "http://dbpedia.org/resource/IE7Pro", "http://dbpedia.org/resource/IE_Tab", "http://dbpedia.org/resource/IFolder", "http://dbpedia.org/resource/IGOR_Pro", "http://dbpedia.org/resource/ILNumerics", "http://dbpedia.org/resource/ILWIS", "http://dbpedia.org/resource/IMOD_(software)", "http://dbpedia.org/resource/IObit_Malware_Fighter", "http://dbpedia.org/resource/IPOPT", "http://dbpedia.org/resource/IPVanish", "http://dbpedia.org/resource/IRAP_RMS_Suite", "http://dbpedia.org/resource/ISpring_Suite", "http://dbpedia.org/resource/IceChat", "http://dbpedia.org/resource/IceWarp_Mail_Server", "http://dbpedia.org/resource/IcedTea", "http://dbpedia.org/resource/Ichitaro_(word_processor)", "http://dbpedia.org/resource/IcoFX", "http://dbpedia.org/resource/IconBuilder", "http://dbpedia.org/resource/IdeaList", "http://dbpedia.org/resource/Imc_FAMOS", "http://dbpedia.org/resource/ImgBurn", "http://dbpedia.org/resource/Impressive_(software)", "http://dbpedia.org/resource/Impulse_(software)", "http://dbpedia.org/resource/Imputation_and_Variance_Estimation_Software", "http://dbpedia.org/resource/InPage", "http://dbpedia.org/resource/InVesalius", "http://dbpedia.org/resource/BackupHDDVD", "http://dbpedia.org/resource/Biblioscape", "http://dbpedia.org/resource/Big_Al_(software)", "http://dbpedia.org/resource/Kirix_Strata", "http://dbpedia.org/resource/Kith_and_Kin_Pro", "http://dbpedia.org/resource/Kodu_Game_Lab", "http://dbpedia.org/resource/Komodo_(chess)", "http://dbpedia.org/resource/Kontact", "http://dbpedia.org/resource/Kopete", "http://dbpedia.org/resource/KuGou", "http://dbpedia.org/resource/Kurso_de_Esperanto", "http://dbpedia.org/resource/LiveChat", "http://dbpedia.org/resource/Metigo", "http://dbpedia.org/resource/MiKTeX", "http://dbpedia.org/resource/Miarmy", "http://dbpedia.org/resource/Micro_Focus_Quality_Center", "http://dbpedia.org/resource/Micro_Focus_Unified_Functional_Testing", "http://dbpedia.org/resource/Micro_Saint_Sharp", "http://dbpedia.org/resource/Microsoft_Access", "http://dbpedia.org/resource/Microsoft_Agent", "http://dbpedia.org/resource/Microsoft_Analysis_Services", "http://dbpedia.org/resource/Microsoft_Automatic_Graph_Layout", "http://dbpedia.org/resource/Microsoft_Azure", "http://dbpedia.org/resource/Microsoft_Bookshelf", "http://dbpedia.org/resource/Microsoft_Cognitive_Toolkit", "http://dbpedia.org/resource/Microsoft_Comic_Chat", "http://dbpedia.org/resource/Microsoft_Customer_Care_Framework", "http://dbpedia.org/resource/Microsoft_Detours", "http://dbpedia.org/resource/Microsoft_Dynamics", "http://dbpedia.org/resource/Microsoft_Dynamics_365", "http://dbpedia.org/resource/Microsoft_Dynamics_365_Sales", "http://dbpedia.org/resource/Microsoft_Excel", "http://dbpedia.org/resource/Microsoft_Expression_Studio", "http://dbpedia.org/resource/Microsoft_Foundation_Class_Library", "http://dbpedia.org/resource/Microsoft_FreeCell", "http://dbpedia.org/resource/Microsoft_FrontPage", "http://dbpedia.org/resource/Microsoft_Hearts", "http://dbpedia.org/resource/Microsoft_Home", "http://dbpedia.org/resource/Microsoft_InterConnect", "http://dbpedia.org/resource/Microsoft_Mahjong", "http://dbpedia.org/resource/Microsoft_MapPoint", "http://dbpedia.org/resource/Microsoft_Musical_Instruments", "http://dbpedia.org/resource/Microsoft_NetMeeting", "http://dbpedia.org/resource/Microsoft_Office", "http://dbpedia.org/resource/Microsoft_Office_3.0", "http://dbpedia.org/resource/Microsoft_Office_Accounting", "http://dbpedia.org/resource/Microsoft_Office_Live", "http://dbpedia.org/resource/Microsoft_Office_PerformancePoint_Server", "http://dbpedia.org/resource/Microsoft_Office_Picture_Manager", "http://dbpedia.org/resource/Microsoft_OneNote", "http://dbpedia.org/resource/Microsoft_Outlook", "http://dbpedia.org/resource/Microsoft_POSIX_subsystem", "http://dbpedia.org/resource/Microsoft_Paint", "http://dbpedia.org/resource/Microsoft_Photo_Editor", "http://dbpedia.org/resource/Microsoft_Pinyin_IME", "http://dbpedia.org/resource/Microsoft_PowerPoint", "http://dbpedia.org/resource/Microsoft_Power_BI", "http://dbpedia.org/resource/Microsoft_Power_Platform", "http://dbpedia.org/resource/Microsoft_Publisher", "http://dbpedia.org/resource/Microsoft_Reader", "http://dbpedia.org/resource/Microsoft_SEAL", "http://dbpedia.org/resource/Microsoft_SQL_Server", "http://dbpedia.org/resource/Microsoft_Solitaire", "http://dbpedia.org/resource/Microsoft_Spider_Solitaire", "http://dbpedia.org/resource/Microsoft_Student", "http://dbpedia.org/resource/Microsoft_Visio", "http://dbpedia.org/resource/Microsoft_Visual_SourceSafe", "http://dbpedia.org/resource/Microsoft_Vizact", "http://dbpedia.org/resource/Microsoft_Works", "http://dbpedia.org/resource/Midori_(web_browser)", "http://dbpedia.org/resource/MikroSim", "http://dbpedia.org/resource/MikuMikuDance", "http://dbpedia.org/resource/Milestones_Professional", "http://dbpedia.org/resource/MilkDrop", "http://dbpedia.org/resource/Mimalloc", "http://dbpedia.org/resource/Mimer_SQL", "http://dbpedia.org/resource/Mimic_Simulation_Software", "http://dbpedia.org/resource/Mingw-w64", "http://dbpedia.org/resource/MiniPanzer_and_MegaPanzer", "http://dbpedia.org/resource/MiniTool_Partition_Wizard", "http://dbpedia.org/resource/Mirai_(software)", "http://dbpedia.org/resource/Miranda_IM", "http://dbpedia.org/resource/Oxygen_Project", "http://dbpedia.org/resource/P0f", "http://dbpedia.org/resource/PASS_Sample_Size_Software", "http://dbpedia.org/resource/PA_Server_Monitor", "http://dbpedia.org/resource/PC-Lint", "http://dbpedia.org/resource/PCSX-Reloaded", "http://dbpedia.org/resource/PCSX2", "http://dbpedia.org/resource/PC_Paintbrush", "http://dbpedia.org/resource/PCem", "http://dbpedia.org/resource/PDF24_Creator", "http://dbpedia.org/resource/PDFCreator", "http://dbpedia.org/resource/PDMS_(software)", "http://dbpedia.org/resource/PEBL_(software)", "http://dbpedia.org/resource/PIRCH_(IRC_client)", "http://dbpedia.org/resource/PLECS", "http://dbpedia.org/resource/PMView", "http://dbpedia.org/resource/PNGOUT", "http://dbpedia.org/resource/PPS.tv", "http://dbpedia.org/resource/PPSSPP", "http://dbpedia.org/resource/PQS_(software)", "http://dbpedia.org/resource/PS3_Media_Server", "http://dbpedia.org/resource/PSIM_Software", "http://dbpedia.org/resource/PSI_(computational_chemistry)", "http://dbpedia.org/resource/PSPP", "http://dbpedia.org/resource/PSPad", "http://dbpedia.org/resource/PTC_Creo_Elements/Pro", "http://dbpedia.org/resource/PTC_Creo_Elements/View", "http://dbpedia.org/resource/PVS-Studio", "http://dbpedia.org/resource/PabloDraw", "http://dbpedia.org/resource/Packard_Bell_Navigator", "http://dbpedia.org/resource/Paessler_PRTG", "http://dbpedia.org/resource/PageDefrag", "http://dbpedia.org/resource/Page_2_Stage", "http://dbpedia.org/resource/Paint_Tool_SAI", "http://dbpedia.org/resource/Palo_(OLAP_database)", "http://dbpedia.org/resource/Panda3D", "http://dbpedia.org/resource/Papagayo_(software)", "http://dbpedia.org/resource/ParaView", "http://dbpedia.org/resource/Parasoft_C/C++test", "http://dbpedia.org/resource/Parasoft_DTP", "http://dbpedia.org/resource/Parsec_(parser)", "http://dbpedia.org/resource/PartitionMagic", "http://dbpedia.org/resource/Pascal_Script", "http://dbpedia.org/resource/PathPing", "http://dbpedia.org/resource/Romeo_Model_Checker", "http://dbpedia.org/resource/RootsMagic", "http://dbpedia.org/resource/Rudder_(software)", "http://dbpedia.org/resource/RunScanner", "http://dbpedia.org/resource/Runas", "http://dbpedia.org/resource/Rybka", "http://dbpedia.org/resource/S-PLUS", "http://dbpedia.org/resource/SAAM_II", "http://dbpedia.org/resource/SAMSON", "http://dbpedia.org/resource/SAS_(software)", "http://dbpedia.org/resource/SAWStudio", "http://dbpedia.org/resource/SCORE_(software)", "http://dbpedia.org/resource/SDC_Verifier", "http://dbpedia.org/resource/SE-Explorer", "http://dbpedia.org/resource/SGS_Genesis", "http://dbpedia.org/resource/SHAZAM_(software)", "http://dbpedia.org/resource/SILK", "http://dbpedia.org/resource/SILVIA", "http://dbpedia.org/resource/SIMH", "http://dbpedia.org/resource/SIOD", "http://dbpedia.org/resource/SLEPc", "http://dbpedia.org/resource/SLIME", "http://dbpedia.org/resource/SLinCA@Home", "http://dbpedia.org/resource/Debug_(command)", "http://dbpedia.org/resource/Deep_Learning_Studio", "http://dbpedia.org/resource/DelPhi", "http://dbpedia.org/resource/DxDiag", "http://dbpedia.org/resource/DynaRoad", "http://dbpedia.org/resource/Dynamic_Photo_HDR", "http://dbpedia.org/resource/ESignal", "http://dbpedia.org/resource/EXMARaLDA", "http://dbpedia.org/resource/EZGenerator", "http://dbpedia.org/resource/EarthBrowser", "http://dbpedia.org/resource/Ecto_(software)", "http://dbpedia.org/resource/Eudora_(email_client)", "http://dbpedia.org/resource/Euphoria_(software)", "http://dbpedia.org/resource/Gepard_(game_engine)", "http://dbpedia.org/resource/NetObjects_Fusion", "http://dbpedia.org/resource/Unicom_Focal_Point", "http://dbpedia.org/resource/Gladinet", "http://dbpedia.org/resource/GnucDNA", "http://dbpedia.org/resource/GoldED", "http://dbpedia.org/resource/HP_Data_Protector", "http://dbpedia.org/resource/HP_WinRunner", "http://dbpedia.org/resource/Sysquake", "http://dbpedia.org/resource/TerraLib", "http://dbpedia.org/resource/WordStat", "http://dbpedia.org/resource/Jinitiator", "http://dbpedia.org/resource/T-FLEX_CAD", "http://dbpedia.org/resource/Tag\u00e8s", "http://dbpedia.org/resource/Vspeech", "http://dbpedia.org/resource/NetPoint", "http://dbpedia.org/resource/Yahoo!_Toolbar", "http://dbpedia.org/resource/OpenSC", "http://dbpedia.org/resource/NLOGIT", "http://dbpedia.org/resource/XSight", "http://dbpedia.org/resource/Stardock_Central", "http://dbpedia.org/resource/Vis5D", "http://dbpedia.org/resource/NVivo", "http://dbpedia.org/resource/ProStat", "http://dbpedia.org/resource/Turbo_Delphi", "http://dbpedia.org/resource/MultiTerm", "http://dbpedia.org/resource/SpyHunter_(software)", "http://dbpedia.org/resource/Tilt_Brush", "http://dbpedia.org/resource/Time_Doctor", "http://dbpedia.org/resource/Tohoku_Zunko", "http://dbpedia.org/resource/Yuezheng_Ling", "http://dbpedia.org/resource/Z-Maestro", "http://dbpedia.org/resource/Z88_FEM_software", "http://dbpedia.org/resource/ZAC_Browser", "http://dbpedia.org/resource/ZConvert", "http://dbpedia.org/resource/ZNC", "http://dbpedia.org/resource/ZOC_(software)", "http://dbpedia.org/resource/ZOLA_Project", "http://dbpedia.org/resource/ZPAQ", "http://dbpedia.org/resource/ZSNES", "http://dbpedia.org/resource/ZSoft_Uninstaller", "http://dbpedia.org/resource/ZTreeWin", "http://dbpedia.org/resource/Zappa_(chess)", "http://dbpedia.org/resource/Zerynth", "http://dbpedia.org/resource/Zipeg", "http://dbpedia.org/resource/Zmanda_Cloud_Backup", "http://dbpedia.org/resource/Zmodeler", "http://dbpedia.org/resource/Zona_(streaming_video_software)", "http://dbpedia.org/resource/ZoneAlarm", "http://dbpedia.org/resource/Zoner_Photo_Studio", "http://dbpedia.org/resource/ZynAddSubFX", "http://dbpedia.org/resource/Zynewave_Podium", "http://dbpedia.org/resource/NI_Multisim", "http://dbpedia.org/resource/Scholar's_Aid", "http://dbpedia.org/resource/Spire_(synthesizer)", "http://dbpedia.org/resource/XOFTspy_Portable_Anti-Spyware", "http://dbpedia.org/resource/Ipconfig", "http://dbpedia.org/resource/IruSoft", "http://dbpedia.org/resource/Oracle_iPlanet_Web_Proxy_Server", "http://dbpedia.org/resource/Visual3D_Game_Engine", "http://dbpedia.org/resource/NetBIOS_over_TCP/IP", "http://dbpedia.org/resource/Sysprep", "http://dbpedia.org/resource/SahysMod", "http://dbpedia.org/resource/Security_Vision", "http://dbpedia.org/resource/PhyreEngine", "http://dbpedia.org/resource/Practical_Scriptwriter", "http://dbpedia.org/resource/RapidQ", "http://dbpedia.org/resource/Prima_(software)", "http://dbpedia.org/resource/PrivadoVPN", "http://dbpedia.org/resource/Ptolemy_Project", "http://dbpedia.org/resource/SafeInCloud", "http://dbpedia.org/resource/The_Outliner_of_Giants", "http://dbpedia.org/resource/VisualSim_Architect", "http://dbpedia.org/resource/SigmaScan", "http://dbpedia.org/resource/RoboLogix", "http://dbpedia.org/resource/ROMeo_(process_optimizer)", "http://dbpedia.org/resource/Shadow_Copy", "http://dbpedia.org/resource/Windows_shell", "http://dbpedia.org/resource/Sonika_(software)", "http://dbpedia.org/resource/Sound_Credit", "http://dbpedia.org/resource/Trumpet_Winsock", "http://dbpedia.org/resource/Yohioloid", "http://dbpedia.org/resource/Loqu8", "http://dbpedia.org/resource/MACS3", "http://dbpedia.org/resource/McAfee_Change_Control", "http://dbpedia.org/resource/Megpoid", "http://dbpedia.org/resource/SitNGo_Wizard", "http://dbpedia.org/resource/Stardraw", "http://dbpedia.org/resource/Parallels_RAS", "http://dbpedia.org/resource/Paramics_Discovery", "http://dbpedia.org/resource/Vocaloid_5", "http://dbpedia.org/resource/Performance_Monitor", "http://dbpedia.org/resource/Windows_wait_cursor"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/creators> <http://dbpedia.org/resource/Jerry_Siegel> . }"}, "answers": ["http://dbpedia.org/resource/Alternative_versions_of_Superman", "http://dbpedia.org/resource/Bouncing_Boy", "http://dbpedia.org/resource/Computo_(character)", "http://dbpedia.org/resource/Delores_Winters", "http://dbpedia.org/resource/Dev-Em", "http://dbpedia.org/resource/Doctor_Occult", "http://dbpedia.org/resource/Spectre_(DC_Comics_character)", "http://dbpedia.org/resource/Sun_Boy", "http://dbpedia.org/resource/Gim_Allon", "http://dbpedia.org/resource/Mr._Muscles", "http://dbpedia.org/resource/Nature_Boy_(comics)", "http://dbpedia.org/resource/Plantman", "http://dbpedia.org/resource/Presence_(DC_Comics)", "http://dbpedia.org/resource/Pat_Dugan", "http://dbpedia.org/resource/Ultra_Boy", "http://dbpedia.org/resource/Brainiac_5", "http://dbpedia.org/resource/Invisible_Kid", "http://dbpedia.org/resource/Ultra-Humanite", "http://dbpedia.org/resource/Lara_(character)", "http://dbpedia.org/resource/Lena_Luthor", "http://dbpedia.org/resource/Lois_Lane", "http://dbpedia.org/resource/Lois_Lane_in_other_media", "http://dbpedia.org/resource/Lyla_Lerrol", "http://dbpedia.org/resource/Superman_and_Lois_Lane", "http://dbpedia.org/resource/Reep_Daggle", "http://dbpedia.org/resource/Robotman_(Robert_Crane)", "http://dbpedia.org/resource/Jimmy_Olsen", "http://dbpedia.org/resource/Science_Police", "http://dbpedia.org/resource/Phantom_Girl", "http://dbpedia.org/resource/Sylvester_Pemberton", "http://dbpedia.org/resource/Jim_Corrigan", "http://dbpedia.org/resource/Comet_(DC_Comics)", "http://dbpedia.org/resource/Jor-El", "http://dbpedia.org/resource/Superman", "http://dbpedia.org/resource/Superman_(comic_book)", "http://dbpedia.org/resource/Superboy_(Kal-El)", "http://dbpedia.org/resource/Superman_(Earth-One)", "http://dbpedia.org/resource/Superman_(Earth-Two)", "http://dbpedia.org/resource/Superwoman", "http://dbpedia.org/resource/Luornu_Durgo", "http://dbpedia.org/resource/Superman:_Deadly_Legacy", "http://dbpedia.org/resource/George_Taylor_(DC_Comics)", "http://dbpedia.org/resource/Mister_Mxyzptlk", "http://dbpedia.org/resource/Luma_Lynai", "http://dbpedia.org/resource/Jonathan_and_Martha_Kent", "http://dbpedia.org/resource/Matter-Eater_Lad", "http://dbpedia.org/resource/Lex_Luthor", "http://dbpedia.org/resource/Lex_Luthor_in_other_media", "http://dbpedia.org/resource/Funnyman_(comics)", "http://dbpedia.org/resource/Ms._Gsptlsnz", "http://dbpedia.org/resource/Superman_and_Wonder_Woman:_The_Hidden_Killer", "http://dbpedia.org/resource/Salu_Digby", "http://dbpedia.org/resource/Zeus_(DC_Comics)", "http://dbpedia.org/resource/Slam_Bradley"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/literaryGenre> <http://dbpedia.org/resource/Science_fiction> . }"}, "answers": ["4374"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/division> <http://dbpedia.org/resource/Plant> . ?uri <http://dbpedia.org/property/flower> ?x . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/GANEFO> <http://dbpedia.org/property/hostCity> ?uri } "}, "answers": ["http://dbpedia.org/resource/Cambodia", "http://dbpedia.org/resource/Phnom_Penh", "Jakarta, Indonesia"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/locatedInArea> <http://dbpedia.org/resource/Nebraska> . ?x <http://dbpedia.org/ontology/ethnicGroup> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/predecessor> <http://dbpedia.org/resource/Desilu_Productions> . ?uri <http://dbpedia.org/ontology/company> ?x . }"}, "answers": ["258"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/location> <http://dbpedia.org/resource/Urban_area> . ?x <http://dbpedia.org/ontology/athletics> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Christopher_Figuero> <http://dbpedia.org/ontology/occupation> ?uri . <http://dbpedia.org/resource/Cruce_a_Nado_Internacional> <http://dbpedia.org/property/placeOfBirth> ?uri} "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Fergie_Sutherland> <http://dbpedia.org/property/race> ?uri } "}, "answers": ["http://dbpedia.org/resource/Hennessy_Gold_Cup_(Ireland)", "http://dbpedia.org/resource/Cheltenham_Gold_Cup", "http://dbpedia.org/resource/Clonmel_Oil_Chase", "http://dbpedia.org/resource/Nas_Na_Riogh_Novice_Chase", "http://dbpedia.org/resource/Queen_Mary_Stakes", "Falmouth Stakes"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/computingPlatform> <http://dbpedia.org/resource/Amiga> . ?x <http://dbpedia.org/property/genre> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Beat_'em_up", "http://dbpedia.org/resource/Sports_game", "http://dbpedia.org/resource/Sports_video_game", "http://dbpedia.org/resource/Racing_game", "http://dbpedia.org/resource/Shoot'em_up", "http://dbpedia.org/resource/Platform_game", "http://dbpedia.org/resource/Psychological_horror", "http://dbpedia.org/resource/Point-and-click_adventure_game", "http://dbpedia.org/resource/Action_game", "http://dbpedia.org/resource/Submarine_simulator", "http://dbpedia.org/resource/Scrolling_shooter", "http://dbpedia.org/resource/Combat_flight_simulator", "http://dbpedia.org/resource/Role-playing_video_game", "http://dbpedia.org/resource/Shoot_'em_up", "Sports simulation – pool", "Sports", "action/strategy", "http://dbpedia.org/resource/Computer_puzzle_game", "http://dbpedia.org/resource/Interactive_fiction", "http://dbpedia.org/resource/Puzzle_video_game", "http://dbpedia.org/resource/Simulation_game", "http://dbpedia.org/resource/Strategy_video_game", "http://dbpedia.org/resource/Real-time_strategy_game", "Computer simulation / Sports", "http://dbpedia.org/resource/Government_simulation_game", "http://dbpedia.org/resource/Adventure_game", "http://dbpedia.org/resource/Edutainment", "Simulation", "http://dbpedia.org/resource/Strategy_game", "http://dbpedia.org/resource/Real-time_strategy", "http://dbpedia.org/resource/City-building_game", "http://dbpedia.org/resource/Run-and-gun_shooter", "http://dbpedia.org/resource/Racing_video_game", "http://dbpedia.org/resource/Video_game_genre", "Comedy sports", "http://dbpedia.org/resource/Computer_wargame", "http://dbpedia.org/resource/Flight_simulator", "http://dbpedia.org/resource/Stealth-based_game", "http://dbpedia.org/resource/Role_playing_game", "http://dbpedia.org/resource/Fighting_game", "Racing", "http://dbpedia.org/resource/Scrolling", "http://dbpedia.org/resource/Tile-based_game", "http://dbpedia.org/resource/Puzzle_game", "http://dbpedia.org/resource/Run_and_gun_game", "http://dbpedia.org/resource/Tactical_role-playing_game", "Turn-based strategy", "http://dbpedia.org/resource/Combat_flight_simulation_game", "http://dbpedia.org/resource/Arcade_game", "http://dbpedia.org/resource/Chess", "http://dbpedia.org/resource/Simulation_video_game", "http://dbpedia.org/resource/Shooter_game", "http://dbpedia.org/resource/Stealth_game", "Wargame", "http://dbpedia.org/resource/Video_puzzle_game", "Music composition", "http://dbpedia.org/resource/Bitmap_graphics_editor", "http://dbpedia.org/resource/Business_simulation_game", "http://dbpedia.org/resource/Platformer", "http://dbpedia.org/resource/List_of_maze_video_games", "http://dbpedia.org/resource/Strategy", "http://dbpedia.org/resource/Graphic_adventure_game", "http://dbpedia.org/resource/Educational_game", "Strategy, board game", "http://dbpedia.org/resource/Run_and_gun_(video_game)", "http://dbpedia.org/resource/Action-adventure_game", "http://dbpedia.org/resource/Multidirectional_shooter", "http://dbpedia.org/resource/Action_games", "Adventure", "http://dbpedia.org/resource/Software_synthesizer", "http://dbpedia.org/resource/Turn-based_strategy", "http://dbpedia.org/resource/First-person_shooter", "http://dbpedia.org/resource/Fighting", "http://dbpedia.org/resource/Side-scrolling_shooter", "http://dbpedia.org/resource/Sim_racing", "http://dbpedia.org/resource/Game_engine", "Action", "http://dbpedia.org/resource/Role-playing_game", "http://dbpedia.org/resource/Dungeon_crawl", "http://dbpedia.org/resource/Hack_and_slash", "Puzzle", "4", "http://dbpedia.org/resource/Action_role-playing_game", "http://dbpedia.org/resource/Real-time_tactics", "http://dbpedia.org/resource/Fantasy", "http://dbpedia.org/resource/Wargame_(video_games)", "Fantasy", "http://dbpedia.org/resource/Roguelike", "http://dbpedia.org/resource/Fixed_shooter", "Train spotting simulator", "http://dbpedia.org/resource/Action-adventure_video_game", "Maze-shooter", "http://dbpedia.org/resource/Wargaming", "Action, Racing/Driving, Simulation", "http://dbpedia.org/resource/Platform_Game", "http://dbpedia.org/resource/Run-and-gun_game", "http://dbpedia.org/resource/Vehicle_simulation_game", "http://dbpedia.org/resource/Breakout_(video_game)", "http://dbpedia.org/resource/Block_kuzushi", "http://dbpedia.org/resource/Combat_flight_simulation", "http://dbpedia.org/resource/Maze_video_game", "http://dbpedia.org/resource/Sports", "Hack and slash", "http://dbpedia.org/resource/Pinball", "http://dbpedia.org/resource/Kart_racing_game", "http://dbpedia.org/resource/Rail_shooter", "http://dbpedia.org/resource/Light_gun_shooter", "http://dbpedia.org/resource/Shooting_game", "http://dbpedia.org/resource/Game_creation_system", "http://dbpedia.org/resource/Run_and_gun_video_game", "http://dbpedia.org/resource/Music_tracker", "http://dbpedia.org/resource/Scenery_generator", "http://dbpedia.org/resource/Space_combat_simulator", "http://dbpedia.org/resource/Platform_video_game", "Platform, shoot-em-up", "http://dbpedia.org/resource/Artillery_game", "http://dbpedia.org/resource/Driving_game", "http://dbpedia.org/resource/Fantasy_role-playing", "Educational", "http://dbpedia.org/resource/Vehicular_combat_game", "http://dbpedia.org/resource/Vampire_video_game", "http://dbpedia.org/resource/Action_video_game", "http://dbpedia.org/resource/Turn-based_strategy_game", "http://dbpedia.org/resource/4X", "http://dbpedia.org/resource/Side_scroller", "http://dbpedia.org/resource/Puzzle-platform_game", "http://dbpedia.org/resource/Educational_software", "http://dbpedia.org/resource/Construction_and_management_simulation_game", "http://dbpedia.org/resource/4x", "http://dbpedia.org/resource/Construction_and_management_simulation", "Pinball", "http://dbpedia.org/resource/Scrolling_Shooter", "http://dbpedia.org/resource/Web_browser", "http://dbpedia.org/resource/Adventure_Game", "http://dbpedia.org/resource/Board_game", "http://dbpedia.org/resource/Music_sequencer", "http://dbpedia.org/resource/Interactive_music", "http://dbpedia.org/resource/Wargame", "Game", "http://dbpedia.org/resource/Life_simulation_game", "http://dbpedia.org/resource/Action-adventure", "Role-playing", "First-person shooter", "http://dbpedia.org/resource/Third-person_shooter", "http://dbpedia.org/resource/Microsoft_BASIC", "Tile-based puzzle", "http://dbpedia.org/resource/Widget_toolkit", "http://dbpedia.org/resource/Window_manager", "http://dbpedia.org/resource/Computer_algebra_system", "http://dbpedia.org/resource/Breakout_clone", "http://dbpedia.org/resource/Game_Creation_System", "http://dbpedia.org/resource/Side-scrolling_video_game", "Vertical scrolling shooter", "Western", "http://dbpedia.org/resource/Vehicular_combat", "Action, platform", "Beat 'em up", "Vehicular combat", "Sports game", "http://dbpedia.org/resource/Action_role-playing_video_game", "Board game", "http://dbpedia.org/resource/Computer_chess", "Action, strategy", "Sports management", "http://dbpedia.org/resource/Light_synthesizer", "http://dbpedia.org/resource/Dungeon_crawler", "http://dbpedia.org/resource/Web_Browser", "http://dbpedia.org/resource/Trivia", "vehicular combat", "Sports simulation – snooker", "One or two player Platform game", "http://dbpedia.org/resource/Shoot-'em-up", "http://dbpedia.org/resource/Arcade_platform", "http://dbpedia.org/resource/Space_combat_simulation", "http://dbpedia.org/resource/Amateur_flight_simulator", "http://dbpedia.org/resource/Simulation", "http://dbpedia.org/resource/Snake_(video_game)", "2", "http://dbpedia.org/resource/Puzzle_computer_game", "http://dbpedia.org/resource/Tactical_shooter", "http://dbpedia.org/resource/Card_game", "http://dbpedia.org/resource/Horror_game", "http://dbpedia.org/resource/Beat_em_up", "Sports simulation", "http://dbpedia.org/resource/Adventure_video_game", "http://dbpedia.org/resource/Role-playing", "http://dbpedia.org/resource/Top_down_shooter", "http://dbpedia.org/resource/Educational_video_game", "http://dbpedia.org/resource/Interactive_movie", "Adventure game, partially Submarine simulator", "http://dbpedia.org/resource/Puzzle", "http://dbpedia.org/resource/Turn-based_tactics", "Filesystem handler", "Shoot 'em Up - Multi-scrolling", "http://dbpedia.org/resource/Resource_management", "Arcade/adventure", "Real-time strategy", "http://dbpedia.org/resource/List_of_vehicular_combat_games", "http://dbpedia.org/resource/Survival_game", "Strategy, music management", "http://dbpedia.org/resource/Computer_virus", "http://dbpedia.org/resource/Malware", "http://dbpedia.org/resource/Boot_block", "http://dbpedia.org/resource/Skiing", "http://dbpedia.org/resource/Winter_sports", "Real-time tactics", "Dungeon crawler", "http://dbpedia.org/resource/Arcade_adventure", "http://dbpedia.org/resource/Cinematic_platformer", "http://dbpedia.org/resource/Action_adventure_game", "http://dbpedia.org/resource/Role-playing_game_(video_games)", "http://dbpedia.org/resource/Grand_Theft_Auto_clone", "http://dbpedia.org/resource/Tracker_(music_software)", "http://dbpedia.org/resource/Space_flight_simulation_game", "Action RPG", "http://dbpedia.org/resource/File_manager", "Shooter", "http://dbpedia.org/resource/Text_Adventure", "http://dbpedia.org/resource/Graphic_adventure", "http://dbpedia.org/resource/Science_fiction", "http://dbpedia.org/resource/Space_trading_and_combat_simulator", "http://dbpedia.org/resource/Boot_sector", "http://dbpedia.org/resource/Programming_game", "http://dbpedia.org/resource/Hack-and-slash", "Platform", "http://dbpedia.org/resource/Mahjong_solitaire", "Platformer", "http://dbpedia.org/resource/Text_adventure", "http://dbpedia.org/resource/Space_flight_simulator", "http://dbpedia.org/resource/Single-player", "http://dbpedia.org/resource/Multiplayer_video_game", "http://dbpedia.org/resource/4X_game", "Strategy", "http://dbpedia.org/resource/Puzzle_video_games", "Run-and-gun shooter", "http://dbpedia.org/resource/Flight_simulation", "http://dbpedia.org/resource/Party_video_game", "http://dbpedia.org/resource/Computer_strategy_game", "http://dbpedia.org/resource/Social_simulation_game", "http://dbpedia.org/resource/Maze_game", "3", "http://dbpedia.org/resource/Non-game", "http://dbpedia.org/resource/Music_video_game", "http://dbpedia.org/resource/Desktop_publishing", "http://dbpedia.org/resource/Adventure_games", "http://dbpedia.org/resource/Amateur_flight_simulation", "Horror", "Various", "http://dbpedia.org/resource/Abstract_strategy_game", "Real-time strategy, RPG", "Stealth", "Action-adventure", "War game, strategy"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/producer> <http://dbpedia.org/resource/Phil_Collinson> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": ["http://dbpedia.org/resource/1933_Australia_rugby_union_tour_of_South_Africa_and_Rhodesia", "http://dbpedia.org/resource/1933_Home_Nations_Championship", "http://dbpedia.org/resource/1934_Home_Nations_Championship", "http://dbpedia.org/resource/1935_Home_Nations_Championship", "http://dbpedia.org/resource/1935_Series_(banknotes)", "http://dbpedia.org/resource/1936_British_Lions_tour_to_Argentina", "http://dbpedia.org/resource/1936_Home_Nations_Championship", "http://dbpedia.org/resource/1937_Home_Nations_Championship", "http://dbpedia.org/resource/1937_Series_(banknotes)", "http://dbpedia.org/resource/1938_All-Ireland_Senior_Hurling_Championship", "http://dbpedia.org/resource/1938_Detroit_Red_Wings\u2013Montreal_Canadiens_European_tour", "http://dbpedia.org/resource/1938_Home_Nations_Championship", "http://dbpedia.org/resource/1938_Stanley_Cup_Finals", "http://dbpedia.org/resource/1939_Amateur_World_Series", "http://dbpedia.org/resource/1939_Home_Nations_Championship", "http://dbpedia.org/resource/1940_Amateur_World_Series", "http://dbpedia.org/resource/1941_Amateur_World_Series", "http://dbpedia.org/resource/1944_World_Series", "http://dbpedia.org/resource/1947_Five_Nations_Championship", "http://dbpedia.org/resource/1948_Five_Nations_Championship", "http://dbpedia.org/resource/1948_Oxford-Cambridge_rugby_union_tour_of_Argentina", "http://dbpedia.org/resource/1949_Australia_rugby_union_tour_of_New_Zealand", "http://dbpedia.org/resource/1949_Five_Nations_Championship", "http://dbpedia.org/resource/1949_France_rugby_union_tour_of_Argentina", "http://dbpedia.org/resource/1950_Five_Nations_Championship", "http://dbpedia.org/resource/1950_World_Series", "http://dbpedia.org/resource/1951_East_Rift_Valley_earthquakes", "http://dbpedia.org/resource/1951_Five_Nations_Championship", "http://dbpedia.org/resource/1951_National_League_tie-breaker_series", "http://dbpedia.org/resource/1952_Australia_rugby_union_tour_of_New_Zealand", "http://dbpedia.org/resource/1952_Five_Nations_Championship", "http://dbpedia.org/resource/1952_Ireland_rugby_union_tour_of_South_America", "http://dbpedia.org/resource/1952_Washington,_D.C._UFO_incident", "http://dbpedia.org/resource/1953_Australia_rugby_union_tour_of_South_Africa_and_Rhodesia", "http://dbpedia.org/resource/1953_Five_Nations_Championship", "http://dbpedia.org/resource/1953_Lahore_riots", "http://dbpedia.org/resource/1953_Waco_tornado_outbreak", "http://dbpedia.org/resource/1954_Five_Nations_Championship", "http://dbpedia.org/resource/1954_France_rugby_union_tour_of_Argentina_and_Chile", "http://dbpedia.org/resource/1954_Series_(banknotes)", "http://dbpedia.org/resource/1954_Yangtze_River_floods", "http://dbpedia.org/resource/1955_Australia_rugby_union_tour_of_New_Zealand", "http://dbpedia.org/resource/1955_Five_Nations_Championship", "http://dbpedia.org/resource/1956_Five_Nations_Championship", "http://dbpedia.org/resource/1956_Oxford-Cambridge_rugby_union_tour_of_Argentina", "http://dbpedia.org/resource/1956_South_Africa_rugby_union_tour_of_Australia_and_New_Zealand", "http://dbpedia.org/resource/1957_Barbarians_tour_of_Canada", "http://dbpedia.org/resource/1957_Five_Nations_Championship", "http://dbpedia.org/resource/1957_Rebel_300", "http://dbpedia.org/resource/1958_Australia_rugby_union_tour_of_New_Zealand", "http://dbpedia.org/resource/1958_Five_Nations_Championship", "http://dbpedia.org/resource/1959_Five_Nations_Championship", "http://dbpedia.org/resource/1959_Junior_Springboks_tour_of_South_America", "http://dbpedia.org/resource/1959_National_League_tie-breaker_series", "http://dbpedia.org/resource/195_Lewis", "http://dbpedia.org/resource/1960_Copa_Libertadores_Finals", "http://dbpedia.org/resource/1960_Five_Nations_Championship", "http://dbpedia.org/resource/1960_France_rugby_union_tour_of_Argentina_and_Uruguay", "http://dbpedia.org/resource/1960_New_Zealand_rugby_union_tour_of_Australia_and_South_Africa", "http://dbpedia.org/resource/1961_Australia_rugby_union_tour_of_South_Africa", "http://dbpedia.org/resource/1961_Copa_Libertadores_Finals", "http://dbpedia.org/resource/1961_Five_Nations_Championship", "http://dbpedia.org/resource/1961_France_rugby_union_tour_of_New_Zealand_and_Australia", "http://dbpedia.org/resource/1962:_The_War_in_the_Hills", "http://dbpedia.org/resource/1962_Australia_rugby_union_tour_of_New_Zealand", "http://dbpedia.org/resource/1962_Copa_Libertadores_Finals", "http://dbpedia.org/resource/1962_Five_Nations_Championship", "http://dbpedia.org/resource/1962_National_League_tie-breaker_series", "http://dbpedia.org/resource/1962_Rangoon_University_protests", "http://dbpedia.org/resource/1963_Australia_rugby_union_tour_of_South_Africa", "http://dbpedia.org/resource/1963_Copa_Libertadores_Finals", "http://dbpedia.org/resource/1963_Five_Nations_Championship", "http://dbpedia.org/resource/1964_(film)", "http://dbpedia.org/resource/1964_Australia_rugby_union_tour_of_New_Zealand", "http://dbpedia.org/resource/1964_Brazilian_coup_d'\u00e9tat", "http://dbpedia.org/resource/1964_Fiji_rugby_union_tour_of_Europe_and_Canada", "http://dbpedia.org/resource/1964_Five_Nations_Championship", "http://dbpedia.org/resource/1964_Rosais_earthquake", "http://dbpedia.org/resource/1964_race_riots_in_Singapore", "http://dbpedia.org/resource/1965_Argentina_rugby_union_tour_of_Rhodesia_and_South_Africa", "http://dbpedia.org/resource/1965_Five_Nations_Championship", "http://dbpedia.org/resource/1965_Oxford-Cambridge_rugby_union_tour_of_Argentina", "http://dbpedia.org/resource/1965_South_Africa_rugby_union_tour_of_Australasia", "http://dbpedia.org/resource/1965_South_Africa_rugby_union_tour_of_Scotland_and_Ireland", "http://dbpedia.org/resource/1966_Five_Nations_Championship", "http://dbpedia.org/resource/1966_South_African_Gazelles_rugby_union_tour_in_Argentina", "http://dbpedia.org/resource/1966_anti-Igbo_pogrom", "http://dbpedia.org/resource/1967_Five_Nations_Championship", "http://dbpedia.org/resource/1967_France_rugby_union_tour_of_South_Africa", "http://dbpedia.org/resource/1967_Ireland_rugby_union_tour_of_Australia", "http://dbpedia.org/resource/1967_Stanley_Cup_Finals", "http://dbpedia.org/resource/1968_Australia_rugby_union_tour_of_British_Isles", "http://dbpedia.org/resource/1968_Five_Nations_Championship", "http://dbpedia.org/resource/1968_Pittsburgh_riots", "http://dbpedia.org/resource/1968_Stanley_Cup_Finals", "http://dbpedia.org/resource/1969_(TV_series)", "http://dbpedia.org/resource/1969_Australia_rugby_union_tour_of_South_Africa", "http://dbpedia.org/resource/1969_Five_Nations_Championship", "http://dbpedia.org/resource/1969_Scotland_rugby_union_tour_of_Argentina", "http://dbpedia.org/resource/1969_Stanley_Cup_Finals", "http://dbpedia.org/resource/1970_Five_Nations_Championship", "http://dbpedia.org/resource/1970_Ireland_rugby_union_tour_of_Argentina", "http://dbpedia.org/resource/1970_New_Zealand_rugby_union_tour_of_South_Africa", "http://dbpedia.org/resource/1971_Argentina_rugby_union_tour_of_South_Africa", "http://dbpedia.org/resource/1971_Asheville_300", "http://dbpedia.org/resource/1971_Australia_rugby_union_tour_of_France", "http://dbpedia.org/resource/1971_Dixie_500", "http://dbpedia.org/resource/1971_Five_Nations_Championship", "http://dbpedia.org/resource/1971_Georgia_500", "http://dbpedia.org/resource/1971_Kingsport_300", "http://dbpedia.org/resource/1971_May_Day_protests", "http://dbpedia.org/resource/1971_Nashville_420", "http://dbpedia.org/resource/1971_National_500", "http://dbpedia.org/resource/1971_National_League_Championship_Series", "http://dbpedia.org/resource/1971_Oxford-Cambridge_rugby_union_tour_of_Argentina", "http://dbpedia.org/resource/1971_Sandlapper_200", "http://dbpedia.org/resource/1971_Space_City_300", "http://dbpedia.org/resource/1971_Volunteer_500", "http://dbpedia.org/resource/1971_West_Virginia_500", "http://dbpedia.org/resource/1971_World_600", "http://dbpedia.org/resource/1971_World_Series_of_Poker", "http://dbpedia.org/resource/1972_American_500", "http://dbpedia.org/resource/1972_Australia_rugby_union_tour_of_New_Zealand_and_Fiji", "http://dbpedia.org/resource/1972_Carolina_500", "http://dbpedia.org/resource/1972_Five_Nations_Championship", "http://dbpedia.org/resource/1972_France_rugby_union_tour_of_Australia", "http://dbpedia.org/resource/1972_Miller_High_Life_500", "http://dbpedia.org/resource/1972_Old_Dominion_500", "http://dbpedia.org/resource/1972_South_African_Gazelles_rugby_union_tour_in_Argentina", "http://dbpedia.org/resource/1972_Texas_500", "http://dbpedia.org/resource/1972_Winston_500", "http://dbpedia.org/resource/1972_World_600", "http://dbpedia.org/resource/1972_World_Series_of_Poker", "http://dbpedia.org/resource/1973_Alamo_500", "http://dbpedia.org/resource/1973_American_500", "http://dbpedia.org/resource/1973_Argentina_rugby_union_tour_of_Ireland_and_Scotland", "http://dbpedia.org/resource/1973_Australia_rugby_union_tour_of_Europe", "http://dbpedia.org/resource/1973_Capital_City_500", "http://dbpedia.org/resource/1973_Dixie_500", "http://dbpedia.org/resource/1973_England_rugby_union_tour_of_Fiji_and_New_Zealand", "http://dbpedia.org/resource/1973_Five_Nations_Championship", "http://dbpedia.org/resource/1973_Gwyn_Staley_400", "http://dbpedia.org/resource/1973_Italy_rugby_union_tour_of_Rhodesia_and_South_Africa", "http://dbpedia.org/resource/1973_Japan_rugby_union_tour_of_Wales,_England_and_France", "http://dbpedia.org/resource/1973_National_500", "http://dbpedia.org/resource/1973_Richmond_500", "http://dbpedia.org/resource/1973_Romania_rugby_union_tour_of_Argentina", "http://dbpedia.org/resource/1973_Southern_500", "http://dbpedia.org/resource/1973_Tuborg_400", "http://dbpedia.org/resource/1973_World_600", "http://dbpedia.org/resource/1973_World_Series_of_Poker", "http://dbpedia.org/resource/1974_American_500", "http://dbpedia.org/resource/1974_Dixie_500", "http://dbpedia.org/resource/1974_Fiji_rugby_union_tour_of_New_Zealand", "http://dbpedia.org/resource/1974_Five_Nations_Championship", "http://dbpedia.org/resource/1974_France_rugby_union_tour_of_Brazil_and_Argentina", "http://dbpedia.org/resource/1974_Japan_rugby_union_tour_of_New_Zealand", "http://dbpedia.org/resource/1974_National_500", "http://dbpedia.org/resource/1974_National_League_Championship_Series", "http://dbpedia.org/resource/1974_New_Zealand_rugby_union_tour_of_Ireland,_Wales_and_England", "http://dbpedia.org/resource/1974_Southeastern_500", "http://dbpedia.org/resource/1974_Southern_500", "http://dbpedia.org/resource/1974_Winston_500", "http://dbpedia.org/resource/1974_World_Series_of_Poker", "http://dbpedia.org/resource/1975_Argentina_rugby_union_tour_of_France", "http://dbpedia.org/resource/1975_England_rugby_union_tour_of_Australia", "http://dbpedia.org/resource/1975_Five_Nations_Championship", "http://dbpedia.org/resource/1975_France_rugby_union_tour_of_South_Africa", "http://dbpedia.org/resource/1975_Japan_rugby_union_tour_of_Australia", "http://dbpedia.org/resource/1975_Los_Angeles_Times_500", "http://dbpedia.org/resource/1975_Music_City_USA_420", "http://dbpedia.org/resource/1975_National_500", "http://dbpedia.org/resource/1975_Scotland_rugby_union_tour_of_New_Zealand", "http://dbpedia.org/resource/1975_Spring_Offensive", "http://dbpedia.org/resource/1975_Wales_rugby_union_tour_of_the_Far_East", "http://dbpedia.org/resource/1975_Winston_Western_500", "http://dbpedia.org/resource/1975_World_600", "http://dbpedia.org/resource/1975_World_Series_of_Poker", "http://dbpedia.org/resource/1974_Australian_Rally_Championship", "http://dbpedia.org/resource/1974_Railway_Cup_Hurling_Championship", "http://dbpedia.org/resource/1974_Trans-AMA_motocross_series", "http://dbpedia.org/resource/1975_Australian_Rally_Championship", "http://dbpedia.org/resource/1975_PBA_First_Conference_Finals", "http://dbpedia.org/resource/1975_PBA_Second_Conference_Finals", "http://dbpedia.org/resource/1975_Romania_rugby_union_tour_of_New_Zealand", "http://dbpedia.org/resource/1976_Australian_Rally_Championship", "http://dbpedia.org/resource/1977_Australian_Rally_Championship", "http://dbpedia.org/resource/1977_Moscow_bombings", "http://dbpedia.org/resource/1977_PBA_Open_Conference_Finals", "http://dbpedia.org/resource/1978_Australian_Rally_Championship", "http://dbpedia.org/resource/1979_Australian_Rally_Championship", "http://dbpedia.org/resource/1979_Nepalese_student_protests", "http://dbpedia.org/resource/1979_PBA_All-Filipino_Conference_Finals", "http://dbpedia.org/resource/1980_Australian_Rally_Championship", "http://dbpedia.org/resource/1980_NBL_Finals", "http://dbpedia.org/resource/1980_Railway_Cup_Hurling_Championship", "http://dbpedia.org/resource/1981_Italy_rugby_union_tour_of_Australia", "http://dbpedia.org/resource/1981_NBL_Finals", "http://dbpedia.org/resource/1982_Australian_Rally_Championship", "http://dbpedia.org/resource/1982_NBL_Finals", "http://dbpedia.org/resource/1982_New_Zealand_M\u0101ori_rugby_union_tour_of_Wales_and_Spain", "http://dbpedia.org/resource/1983_Australian_Football_Championships", "http://dbpedia.org/resource/1983_Australian_Rally_Championship", "http://dbpedia.org/resource/1983_NBL_Finals", "http://dbpedia.org/resource/1984_Australian_Football_Championships", "http://dbpedia.org/resource/1984_Australian_Rally_Championship", "http://dbpedia.org/resource/1984_International_Rules_Series", "http://dbpedia.org/resource/1984_NBL_Finals", "http://dbpedia.org/resource/1985_Australian_Football_Championships", "http://dbpedia.org/resource/1985_Australian_Rally_Championship", "http://dbpedia.org/resource/1985_NBL_Finals", "http://dbpedia.org/resource/1985_Scotland_rugby_union_tour_of_North_America", "http://dbpedia.org/resource/1986_(Portuguese_TV_series)", "http://dbpedia.org/resource/1986_Australian_Football_Championships", "http://dbpedia.org/resource/1986_Damascus_bombings", "http://dbpedia.org/resource/1986_International_Rules_Series", "http://dbpedia.org/resource/1986_NBL_Finals", "http://dbpedia.org/resource/1987_Australian_Football_Championships", "http://dbpedia.org/resource/1987_International_Rules_Series", "http://dbpedia.org/resource/1987_NBL_Finals", "http://dbpedia.org/resource/1988_Canoe_Slalom_World_Cup", "http://dbpedia.org/resource/1988_Japan_Series", "http://dbpedia.org/resource/1988_Malaysian_constitutional_crisis", "http://dbpedia.org/resource/2010_LPGA_of_Korea_Tour", "http://dbpedia.org/resource/2010_Legends_Tour", "http://dbpedia.org/resource/2010_Nobel_Peace_Prize", "http://dbpedia.org/resource/2010_PSA_Super_Series", "http://dbpedia.org/resource/2010_Red_Bull_Air_Race_World_Championship", "http://dbpedia.org/resource/2010_Scream_Awards", "http://dbpedia.org/resource/2010_UCI_ProTour", "http://dbpedia.org/resource/2010_United_Kingdom_student_protests", "http://dbpedia.org/resource/2010_V8_Supercar_season", "http://dbpedia.org/resource/2010_WISPA_World_Series", "http://dbpedia.org/resource/2010_Western_Australian_storms", "http://dbpedia.org/resource/2010\u201311_ISU_Speed_Skating_World_Cup", "http://dbpedia.org/resource/2011_Australian_Rally_Championship", "http://dbpedia.org/resource/2011_BBC_Sports_Personality_of_the_Year_Award", "http://dbpedia.org/resource/2011_BSN_Finals", "http://dbpedia.org/resource/2011_Bohai_Bay_oil_spill", "http://dbpedia.org/resource/2011_Canoe_Slalom_World_Cup", "http://dbpedia.org/resource/2011_China_floods", "http://dbpedia.org/resource/2011_Durango_massacres", "http://dbpedia.org/resource/2011_FINA_Swimming_World_Cup", "http://dbpedia.org/resource/2011_ITU_Triathlon_World_Cup", "http://dbpedia.org/resource/2011_Kashgar_attacks", "http://dbpedia.org/resource/2011_Kohistan_floods", "http://dbpedia.org/resource/2011_Kurdish_protests_in_Iraq", "http://dbpedia.org/resource/2011_LPGA_Futures_Tour", "http://dbpedia.org/resource/2011_Lake_Champlain_and_Richelieu_River_floods", "http://dbpedia.org/resource/2011_Legends_Tour", "http://dbpedia.org/resource/2011_NASCAR_Stock_V6_Series", "http://dbpedia.org/resource/2011_New_Zealand_snowstorms", "http://dbpedia.org/resource/2011_Northern_Ireland_riots", "http://dbpedia.org/resource/2011_PSA_World_Series", "http://dbpedia.org/resource/2011_UK_public_sector_strikes", "http://dbpedia.org/resource/2011_WSA_World_Series", "http://dbpedia.org/resource/2011_Wollongong_floods", "http://dbpedia.org/resource/2011\u201312_ISU_Grand_Prix_of_Figure_Skating", "http://dbpedia.org/resource/2011\u201312_ISU_Speed_Skating_World_Cup", "http://dbpedia.org/resource/2011\u201312_Los_Angeles_arson_attacks", "http://dbpedia.org/resource/2011\u201312_NCAA_football_bowl_games", "http://dbpedia.org/resource/2012_Araucan\u00eda_wildfires", "http://dbpedia.org/resource/2012_BBC_Sports_Personality_of_the_Year_Award", "http://dbpedia.org/resource/2012_Bangkok_bombings", "http://dbpedia.org/resource/2012_Canoe_Slalom_World_Cup", "http://dbpedia.org/resource/2012_Cultural_Olympiad", "http://dbpedia.org/resource/2012_Dnipropetrovsk_explosions", "http://dbpedia.org/resource/2012_FINA_Swimming_World_Cup", "http://dbpedia.org/resource/2012_Great_Britain_and_Ireland_floods", "http://dbpedia.org/resource/2012_ITU_Triathlon_World_Cup", "http://dbpedia.org/resource/2012_Interprovincial_Hurling_Championship", "http://dbpedia.org/resource/2012_Legends_Tour", "http://dbpedia.org/resource/2012_May_Day_protests", "http://dbpedia.org/resource/2012_PSA_World_Series", "http://dbpedia.org/resource/2012_Sorta_Unofficial_New_Zealand_Film_Awards", "http://dbpedia.org/resource/2012_Southern_Thailand_bombings", "http://dbpedia.org/resource/2012_Symetra_Tour", "http://dbpedia.org/resource/2012_University_of_Pittsburgh_bomb_threats", "http://dbpedia.org/resource/2012_WSA_World_Series", "http://dbpedia.org/resource/2012\u201313_ISU_Grand_Prix_of_Figure_Skating", "http://dbpedia.org/resource/2012\u201313_ISU_Speed_Skating_World_Cup", "http://dbpedia.org/resource/2012\u201313_NCAA_football_bowl_games", "http://dbpedia.org/resource/2013_British_Champions_Series", "http://dbpedia.org/resource/2013_British_National_Track_Championships", "http://dbpedia.org/resource/2013_Canoe_Slalom_World_Cup", "http://dbpedia.org/resource/2013_Dominican_Republic\u2013Haiti_diplomatic_crisis", "http://dbpedia.org/resource/2013_FINA_Swimming_World_Cup", "http://dbpedia.org/resource/2013_Festival_of_World_Cups", "http://dbpedia.org/resource/2013_Legends_Tour", "http://dbpedia.org/resource/2013_May_Day_protests", "http://dbpedia.org/resource/2013_NBL_Canada_Finals", "http://dbpedia.org/resource/2013_National_League_Division_Series", "http://dbpedia.org/resource/2013_Nordic_storms", "http://dbpedia.org/resource/2013_PSA_World_Series", "http://dbpedia.org/resource/2013_Rialto_Channel_New_Zealand_Film_Awards", "http://dbpedia.org/resource/2013_Symetra_Tour", "http://dbpedia.org/resource/2013_UEFA_European_Under-21_Championship_qualification", "http://dbpedia.org/resource/2013_WSA_World_Series", "http://dbpedia.org/resource/2013_YouTube_Music_Awards", "http://dbpedia.org/resource/2013\u201314_ISU_Grand_Prix_of_Figure_Skating", "http://dbpedia.org/resource/2013\u201314_ISU_Speed_Skating_World_Cup", "http://dbpedia.org/resource/2013\u201314_NCAA_football_bowl_games", "http://dbpedia.org/resource/2014_American_League_Division_Series", "http://dbpedia.org/resource/2014_BBC_Music_Awards", "http://dbpedia.org/resource/2014_Ben_Gurion_Airport_flight_bans", "http://dbpedia.org/resource/2014_British_National_Track_Championships", "http://dbpedia.org/resource/2014_Canoe_Slalom_World_Cup", "http://dbpedia.org/resource/Alisto", "http://dbpedia.org/resource/Alitho_Saradaga", "http://dbpedia.org/resource/Alivaltiosihteeri_valvoo", "http://dbpedia.org/resource/Alive:_The_Final_Evolution", "http://dbpedia.org/resource/Alive_Day_Memories", "http://dbpedia.org/resource/Alive_and_Cooking", "http://dbpedia.org/resource/Alive_and_Kicking_(TV_series)", "http://dbpedia.org/resource/Alive_from_Off_Center", "http://dbpedia.org/resource/Aliyan_vs_Aliyan", "http://dbpedia.org/resource/Aliyans", "http://dbpedia.org/resource/All's_Fair", "http://dbpedia.org/resource/All'ultimo_minuto", "http://dbpedia.org/resource/All-American_Girl:_The_Mary_Kay_Letourneau_Story", "http://dbpedia.org/resource/All-American_Girl_(1994_TV_series)", "http://dbpedia.org/resource/All-American_Girl_(TV_series)", "http://dbpedia.org/resource/All-American_Muslim", "http://dbpedia.org/resource/All-Ireland_Intermediate_Hurling_Championship", "http://dbpedia.org/resource/All-Ireland_Senior_Football_Championship", "http://dbpedia.org/resource/All-Ireland_Senior_Hurling_Championship", "http://dbpedia.org/resource/All-New_Dennis_the_Menace", "http://dbpedia.org/resource/All-New_X-Men", "http://dbpedia.org/resource/All-Out_Sundays", "http://dbpedia.org/resource/All-Star_Blitz", "http://dbpedia.org/resource/All-Star_Cup", "http://dbpedia.org/resource/All-Star_K!", "http://dbpedia.org/resource/All-Star_Squares", "http://dbpedia.org/resource/All-Star_Thanksgiving", "http://dbpedia.org/resource/All-Star_Videoke", "http://dbpedia.org/resource/All_Aboard!_Rosie's_Family_Cruise", "http://dbpedia.org/resource/All_Aboard_(TV_series)", "http://dbpedia.org/resource/All_About_Adam_(TV_series)", "http://dbpedia.org/resource/All_About_Aubrey", "http://dbpedia.org/resource/All_About_Baby", "http://dbpedia.org/resource/All_About_Eve_(Philippine_TV_series)", "http://dbpedia.org/resource/All_About_Eve_(South_Korean_TV_series)", "http://dbpedia.org/resource/All_About_Faces", "http://dbpedia.org/resource/All_About_Me", "http://dbpedia.org/resource/All_About_My_Mom", "http://dbpedia.org/resource/All_About_My_Romance", "http://dbpedia.org/resource/All_About_Sex", "http://dbpedia.org/resource/All_About_Two", "http://dbpedia.org/resource/All_About_Us_(TV_series)", "http://dbpedia.org/resource/All_About_You_(TV_series)", "http://dbpedia.org/resource/All_About_the_Andersons", "http://dbpedia.org/resource/All_About_the_Washingtons", "http://dbpedia.org/resource/All_Along_the_Watchtower_(TV_series)", "http://dbpedia.org/resource/All_American:_Homecoming", "http://dbpedia.org/resource/All_American_(TV_series)", "http://dbpedia.org/resource/All_American_Handyman", "http://dbpedia.org/resource/All_Around_the_Circle", "http://dbpedia.org/resource/All_Aussie_Adventures", "http://dbpedia.org/resource/All_Clued_Up", "http://dbpedia.org/resource/All_Costs_Paid", "http://dbpedia.org/resource/All_Creatures_Great_and_Small_(1978_TV_series)", "http://dbpedia.org/resource/All_Creatures_Great_and_Small_(2020_TV_series)", "http://dbpedia.org/resource/All_Def_Comedy", "http://dbpedia.org/resource/All_Dogs_Go_to_Heaven:_The_Series", "http://dbpedia.org/resource/All_Esper_Dayo!_SP", "http://dbpedia.org/resource/All_For_One_Caribbean", "http://dbpedia.org/resource/All_Gas_No_Brakes", "http://dbpedia.org/resource/All_Gas_and_Gaiters", "http://dbpedia.org/resource/All_Good_Things_(TV_series)", "http://dbpedia.org/resource/All_Grown_Up!", "http://dbpedia.org/resource/All_Hail_King_Julien", "http://dbpedia.org/resource/All_In_(TV_series)", "http://dbpedia.org/resource/All_In_All_Alamelu", "http://dbpedia.org/resource/All_In_The_Best_Possible_Taste_with_Grayson_Perry", "http://dbpedia.org/resource/All_In_with_Chris_Hayes", "http://dbpedia.org/resource/All_India_Bakchod_Knockout", "http://dbpedia.org/resource/All_Is_Forgiven_(TV_series)", "http://dbpedia.org/resource/All_Is_Well_(TV_series)", "http://dbpedia.org/resource/All_Kinds_of_Everything_(game_show)", "http://dbpedia.org/resource/All_Men_Are_Brothers_(TV_series)", "http://dbpedia.org/resource/All_My_Children", "http://dbpedia.org/resource/All_My_Life_(TV_series)", "http://dbpedia.org/resource/All_My_Love_For_You", "http://dbpedia.org/resource/All_Night_(TV_series)", "http://dbpedia.org/resource/All_Night_Fuji", "http://dbpedia.org/resource/All_Night_Long_(TV_series)", "http://dbpedia.org/resource/All_Night_Nippon", "http://dbpedia.org/resource/All_Our_Saturdays", "http://dbpedia.org/resource/All_Out_for_Kangaroo_Valley", "http://dbpedia.org/resource/All_Out_of_Love_(TV_series)", "http://dbpedia.org/resource/All_Over_the_Place_(TV_programme)", "http://dbpedia.org/resource/All_Over_the_Workplace", "http://dbpedia.org/resource/All_Purpose_Cultural_Cat_Girl_Nuku_Nuku", "http://dbpedia.org/resource/All_Quiet_on_the_Preston_Front", "http://dbpedia.org/resource/All_Quiet_on_the_Western_Front_(1979_film)", "http://dbpedia.org/resource/All_Rise_(TV_series)", "http://dbpedia.org/resource/All_Rise_for_Julian_Clary", "http://dbpedia.org/resource/All_Round_to_Mrs._Brown's", "http://dbpedia.org/resource/All_Saints_(TV_series)", "http://dbpedia.org/resource/All_She_Ever_Wanted", "http://dbpedia.org/resource/All_Souls_(TV_series)", "http://dbpedia.org/resource/All_Star_Family_Feud", "http://dbpedia.org/resource/All_Star_Glam_Exam", "http://dbpedia.org/resource/All_Star_K!", "http://dbpedia.org/resource/All_Star_Mr_&_Mrs", "http://dbpedia.org/resource/All_Star_Secrets", "http://dbpedia.org/resource/All_Star_Shore", "http://dbpedia.org/resource/All_That", "http://dbpedia.org/resource/All_That_Cube", "http://dbpedia.org/resource/All_That_Glitters_(TV_series)", "http://dbpedia.org/resource/All_That_Is_Bitter_Is_Sweet", "http://dbpedia.org/resource/All_Things_Considered", "http://dbpedia.org/resource/All_Things_Considered_(BBC_radio_show)", "http://dbpedia.org/resource/All_Together_(professional_wrestling)", "http://dbpedia.org/resource/All_Together_Now_(1991_Australian_TV_series)", "http://dbpedia.org/resource/All_Together_Now_(2018_Australian_TV_series)", "http://dbpedia.org/resource/All_Together_Now_(British_TV_series)", "http://dbpedia.org/resource/All_Together_Now_(German_TV_series)", "http://dbpedia.org/resource/All_Together_Now_(Italian_TV_series)", "http://dbpedia.org/resource/All_Together_Now_(Philippine_TV_series)", "http://dbpedia.org/resource/All_Together_Now_Malaysia", "http://dbpedia.org/resource/All_Watched_Over_by_Machines_of_Loving_Grace_(TV_series)", "http://dbpedia.org/resource/All_Worked_Up", "http://dbpedia.org/resource/All_You've_Got", "http://dbpedia.org/resource/All_You_Need_Is_Love:_Meine_Schwiegertochter_ist_ein_Mann", "http://dbpedia.org/resource/All_You_Need_Is_Love:_The_Story_of_Popular_Music", "http://dbpedia.org/resource/All_at_No_20", "http://dbpedia.org/resource/All_at_Sea_(TV_series)", "http://dbpedia.org/resource/All_for_Kids", "http://dbpedia.org/resource/All_for_Love_(British_TV_series)", "http://dbpedia.org/resource/All_for_Love_(Colombian_TV_series)", "http://dbpedia.org/resource/All_for_Nothing%3F", "http://dbpedia.org/resource/All_for_One_(TV_series)", "http://dbpedia.org/resource/All_in_700", "http://dbpedia.org/resource/All_in_Good_Faith", "http://dbpedia.org/resource/All_in_a_Family", "http://dbpedia.org/resource/All_in_the_Best_Possible_Taste_with_Grayson_Perry", "http://dbpedia.org/resource/All_in_the_Family", "http://dbpedia.org/resource/All_in_the_Method", "http://dbpedia.org/resource/All_in_with_Cam_Newton", "http://dbpedia.org/resource/All_of_Me_(TV_series)", "http://dbpedia.org/resource/All_of_Us", "http://dbpedia.org/resource/All_of_Us_Are_Dead", "http://dbpedia.org/resource/All_or_Nothing:_Arsenal", "http://dbpedia.org/resource/All_or_Nothing:_Brazil_National_Team", "http://dbpedia.org/resource/All_or_Nothing:_Juventus", "http://dbpedia.org/resource/All_or_Nothing:_Manchester_City", "http://dbpedia.org/resource/All_or_Nothing:_Tottenham_Hotspur", "http://dbpedia.org/resource/All_or_Nothing_(game_show)", "http://dbpedia.org/resource/All_the_Green_Year", "http://dbpedia.org/resource/All_the_K-pop", "http://dbpedia.org/resource/All_the_Kind_Strangers", "http://dbpedia.org/resource/All_the_Prime_Minister's_Men", "http://dbpedia.org/resource/All_the_Queen's_Men_(TV_series)", "http://dbpedia.org/resource/All_the_Rivers_Run", "http://dbpedia.org/resource/All_the_Same..._or_Not", "http://dbpedia.org/resource/All_the_Sins", "http://dbpedia.org/resource/All_the_Small_Things_(TV_series)", "http://dbpedia.org/resource/All_the_Stations", "http://dbpedia.org/resource/All_the_Way..._A_Decade_of_Song_(TV_program)", "http://dbpedia.org/resource/All_the_Way_(TV_series)", "http://dbpedia.org/resource/All_the_Way_(film)", "http://dbpedia.org/resource/All_the_Way_from_Memphis_(radio_show)", "http://dbpedia.org/resource/All_the_Way_with_You", "http://dbpedia.org/resource/All_the_World_in_a_Design_School", "http://dbpedia.org/resource/Alla_mot_en", "http://dbpedia.org/resource/Allan_Quatermain", "http://dbpedia.org/resource/Alle_meine_Tiere", "http://dbpedia.org/resource/Allegiance_(TV_series)", "http://dbpedia.org/resource/Allegra's_Window", "http://dbpedia.org/resource/Allein_gegen_die_Zeit", "http://dbpedia.org/resource/Allen_Gregory", "http://dbpedia.org/resource/Allen_Ludden's_Gallery", "http://dbpedia.org/resource/Allen_v._Farrow", "http://dbpedia.org/resource/Allerud_VGS", "http://dbpedia.org/resource/Alles_Atze", "http://dbpedia.org/resource/Alles_Kan_Beter", "http://dbpedia.org/resource/Alles_au\u00dfer_Mord", "http://dbpedia.org/resource/Alles_in_Ordnung_\u2013_Mit_dem_Wahnsinn_auf_Streife", "http://dbpedia.org/resource/Alles_was_z\u00e4hlt", "http://dbpedia.org/resource/Alley_Cats_Strike", "http://dbpedia.org/resource/Allison_&_Lillia", "http://dbpedia.org/resource/Alliyambal", "http://dbpedia.org/resource/Allrams_h\u00f6jdarpaket", "http://dbpedia.org/resource/Allsang_p\u00e5_Grensen", "http://dbpedia.org/resource/Allsorts_(TV_series)", "http://dbpedia.org/resource/Alls\u00e5ng_p\u00e5_Skansen", "http://dbpedia.org/resource/Allt_f\u00f6r_Sverige", "http://dbpedia.org/resource/Ally_McBeal", "http://dbpedia.org/resource/Ally_McBeal_(season_4)", "http://dbpedia.org/resource/Ally_McBeal_(season_5)", "http://dbpedia.org/resource/All\u00e1_te_espero", "http://dbpedia.org/resource/All\u00ed_abajo", "http://dbpedia.org/resource/Alma's_Not_Normal", "http://dbpedia.org/resource/Alma's_Way", "http://dbpedia.org/resource/Alma_G\u00eamea", "http://dbpedia.org/resource/Alma_Matters:_Inside_the_IIT_Dream", "http://dbpedia.org/resource/Alma_Pirata", "http://dbpedia.org/resource/Alma_de_hierro", "http://dbpedia.org/resource/Alma_de_\u00e1ngel", "http://dbpedia.org/resource/Alma_e_Cora\u00e7\u00e3o", "http://dbpedia.org/resource/Alma_indomable", "http://dbpedia.org/resource/Alma_rebelde", "http://dbpedia.org/resource/Almanac_(American_TV_series)", "http://dbpedia.org/resource/Almanac_(Canadian_TV_series)", "http://dbpedia.org/resource/Almohad_reforms", "http://dbpedia.org/resource/Almost_Family", "http://dbpedia.org/resource/Almost_Genius", "http://dbpedia.org/resource/Almost_Grown_(TV_series)", "http://dbpedia.org/resource/Almost_Happy_(TV_series)", "http://dbpedia.org/resource/Almost_Heroes_(TV_series)", "http://dbpedia.org/resource/Almost_Human_(TV_series)", "http://dbpedia.org/resource/Almost_Live!", "http://dbpedia.org/resource/Almost_Naked_Animals", "http://dbpedia.org/resource/Almost_Never_(TV_series)", "http://dbpedia.org/resource/Almost_Paradise_(TV_series)", "http://dbpedia.org/resource/Almost_Perfect", "http://dbpedia.org/resource/Almost_Royal", "http://dbpedia.org/resource/Almost_a_Woman", "http://dbpedia.org/resource/Alo_Chhaya", "http://dbpedia.org/resource/Aloha_Festivals", "http://dbpedia.org/resource/Aloha_Paradise", "http://dbpedia.org/resource/Aloha_Vet", "http://dbpedia.org/resource/Alondra_(TV_series)", "http://dbpedia.org/resource/Alone_(TV_series)", "http://dbpedia.org/resource/Alone_Together_(TV_series)", "http://dbpedia.org/resource/Alone_in_Love", "http://dbpedia.org/resource/Alone_in_the_Dark", "http://dbpedia.org/resource/Alone_in_the_Wild", "http://dbpedia.org/resource/Along_the_Way_(TV_series)", "http://dbpedia.org/resource/Alosha_series", "http://dbpedia.org/resource/Alparslan:_B\u00fcy\u00fck_Sel\u00e7uklu", "http://dbpedia.org/resource/Alpha_Alpha", "http://dbpedia.org/resource/Alpha_Bravo_Charlie", "http://dbpedia.org/resource/Alpha_House", "http://dbpedia.org/resource/Alpha_Man:_The_Brotherhood_of_MLK", "http://dbpedia.org/resource/Alpha_Scorpio", "http://dbpedia.org/resource/Alphabet_Soup_(TV_series)", "http://dbpedia.org/resource/Alphabetical_(game_show)", "http://dbpedia.org/resource/Alphablocks", "http://dbpedia.org/resource/Alphas", "http://dbpedia.org/resource/Alpine_Space_Programme", "http://dbpedia.org/resource/Alright_Already_(TV_series)", "http://dbpedia.org/resource/Alt.news_26:46", "http://dbpedia.org/resource/Alt_for_Norge", "http://dbpedia.org/resource/Altar_(film)", "http://dbpedia.org/resource/Altar_of_Domitius_Ahenobarbus", "http://dbpedia.org/resource/Alter_Ego_(TV_series)", "http://dbpedia.org/resource/Altered_Carbon_(TV_series)", "http://dbpedia.org/resource/Alternate_Reality_(series)", "http://dbpedia.org/resource/Alternatino_with_Arturo_Castro", "http://dbpedia.org/resource/Alternative_3", "http://dbpedia.org/resource/Alternative_Nation", "http://dbpedia.org/resource/Alternatywy_4", "http://dbpedia.org/resource/Altes_Geld", "http://dbpedia.org/resource/Alto_Astral", "http://dbpedia.org/resource/Altogether_(TV_series)", "http://dbpedia.org/resource/Alvida", "http://dbpedia.org/resource/Alvin_Purple_(TV_series)", "http://dbpedia.org/resource/Alvin_and_the_Chipmunks_(1983_TV_series)", "http://dbpedia.org/resource/Alvin_and_the_Chipmunks_(2015_TV_series)", "http://dbpedia.org/resource/Alvinnn!!!_and_the_Chipmunks", "http://dbpedia.org/resource/Always_Afternoon", "http://dbpedia.org/resource/Always_Cantare", "http://dbpedia.org/resource/Always_Greener", "http://dbpedia.org/resource/Always_Jane", "http://dbpedia.org/resource/Always_Outnumbered", "http://dbpedia.org/resource/Always_Ready_(TV_series)", "http://dbpedia.org/resource/Always_Remember_I_Love_You", "http://dbpedia.org/resource/Always_a_Witch", "http://dbpedia.org/resource/Always_and_Ever", "http://dbpedia.org/resource/Always_and_Everyone", "http://dbpedia.org/resource/Always_on_the_Road", "http://dbpedia.org/resource/Alwin_Schockem\u00f6hle", "http://dbpedia.org/resource/Aly_&_AJ:_Sister_Act", "http://dbpedia.org/resource/Alyas_Robin_Hood", "http://dbpedia.org/resource/Alyna", "http://dbpedia.org/resource/Alyna_(TV_series)", "http://dbpedia.org/resource/Alys_(TV_series)", "http://dbpedia.org/resource/Alzira_(opera)", "http://dbpedia.org/resource/Al\u00e9m_da_Ilha", "http://dbpedia.org/resource/Al\u00e9m_da_Ilus\u00e3o", "http://dbpedia.org/resource/Al\u00e9m_do_Horizonte", "http://dbpedia.org/resource/Al\u00e9m_do_Tempo", "http://dbpedia.org/resource/Al\u00f3_Ciudadano", "http://dbpedia.org/resource/Al\u00f3_Presidente", "http://dbpedia.org/resource/Am,_Antes_del_Mediod\u00eda", "http://dbpedia.org/resource/Am_Dam_Des", "http://dbpedia.org/resource/Am_gr\u00fcnen_Strand_der_Spree", "http://dbpedia.org/resource/Amaan_Ramazan", "http://dbpedia.org/resource/Amachan", "http://dbpedia.org/resource/Amada_enemiga", "http://dbpedia.org/resource/Amadis_(Massenet)", "http://dbpedia.org/resource/Amagi-class_battlecruiser", "http://dbpedia.org/resource/Amagi_Brilliant_Park", "http://dbpedia.org/resource/Amahl_and_the_Night_Visitors", "http://dbpedia.org/resource/Amala_(TV_series)", "http://dbpedia.org/resource/Amalia_Batista", "http://dbpedia.org/resource/Amanah_dalam_Cinta", "http://dbpedia.org/resource/Amanat_(2017_TV_series)", "http://dbpedia.org/resource/Amanat_(2021_TV_series)", "http://dbpedia.org/resource/Amanat_(Indian_TV_series)", "http://dbpedia.org/resource/Amanda's", "http://dbpedia.org/resource/Amanda_(Chilean_TV_series)", "http://dbpedia.org/resource/Amanda_(TV_program)", "http://dbpedia.org/resource/Amanda_Fallon", "http://dbpedia.org/resource/Amanda_Knox:_Murder_on_Trial_in_Italy", "http://dbpedia.org/resource/Amanda_O", "http://dbpedia.org/resource/Amanda_Sabater", "http://dbpedia.org/resource/Amanda_and_the_Alien", "http://dbpedia.org/resource/Amanpour", "http://dbpedia.org/resource/Amanpour_&_Company", "http://dbpedia.org/resource/Amantes_(TV_series)", "http://dbpedia.org/resource/Amantes_de_luna_llena", "http://dbpedia.org/resource/Amantes_del_desierto", "http://dbpedia.org/resource/Amanza", "http://dbpedia.org/resource/Amar_Demais", "http://dbpedia.org/resource/Amar_Depois_de_Amar", "http://dbpedia.org/resource/Amar_a_morir_(TV_series)", "http://dbpedia.org/resource/Amar_de_nuevo_(TV_series)", "http://dbpedia.org/resource/Amar_despu\u00e9s_de_amar", "http://dbpedia.org/resource/Amar_en_tiempos_revueltos", "http://dbpedia.org/resource/Amar_es_para_siempre", "http://dbpedia.org/resource/Amar_fue_su_pecado", "http://dbpedia.org/resource/Amar_otra_vez", "http://dbpedia.org/resource/Amar_profundo", "http://dbpedia.org/resource/Amar_sin_l\u00edmites", "http://dbpedia.org/resource/Amar_y_temer", "http://dbpedia.org/resource/Amaras_a_tu_pr\u00f3jimo", "http://dbpedia.org/resource/Amaravati_ki_Kathayein", "http://dbpedia.org/resource/Amarres", "http://dbpedia.org/resource/Amarte_as\u00ed,_Frijolito", "http://dbpedia.org/resource/Amarte_es_mi_Pecado", "http://dbpedia.org/resource/Amas_de_casa_desesperadas_(American_TV_series)", "http://dbpedia.org/resource/Amas_de_casa_desesperadas_(Argentine_TV_series)", "http://dbpedia.org/resource/Amateur's_Guide_to_Love", "http://dbpedia.org/resource/Amateur_Boxing_Fight_Club", "http://dbpedia.org/resource/Amatsuki", "http://dbpedia.org/resource/Amaya_(TV_series)", "http://dbpedia.org/resource/Amazing_Adventures_of_a_Nobody", "http://dbpedia.org/resource/Amazing_Agent_Luna", "http://dbpedia.org/resource/Amazing_America_with_Sarah_Palin", "http://dbpedia.org/resource/Amazing_Animals", "http://dbpedia.org/resource/Amazing_Cooking_Kids", "http://dbpedia.org/resource/Amazing_Detective_Di_Renjie", "http://dbpedia.org/resource/Amazing_Detective_Di_Renjie_2", "http://dbpedia.org/resource/Amazing_Detective_Di_Renjie_3", "http://dbpedia.org/resource/Amazing_Earth", "http://dbpedia.org/resource/Amazing_Eats", "http://dbpedia.org/resource/Amazing_Grace_(American_TV_series)", "http://dbpedia.org/resource/Amazing_Grace_(Australian_TV_series)", "http://dbpedia.org/resource/Amazing_Greys", "http://dbpedia.org/resource/Amazing_Hotels:_Life_Beyond_the_Lobby", "http://dbpedia.org/resource/Amazing_Interiors", "http://dbpedia.org/resource/Amazing_Stories_(1985_TV_series)", "http://dbpedia.org/resource/Amazing_Stories_(2020_TV_series)", "http://dbpedia.org/resource/Amazing_Vacation_Homes", "http://dbpedia.org/resource/Amazing_Wedding_Cakes", "http://dbpedia.org/resource/Amazingness", "http://dbpedia.org/resource/Amazon_(1999_TV_series)", "http://dbpedia.org/resource/Amazon_(2008_TV_series)", "http://dbpedia.org/resource/Amazon_Kindle", "http://dbpedia.org/resource/Amazons_(1984_film)", "http://dbpedia.org/resource/Ambassadors_(TV_series)", "http://dbpedia.org/resource/Amber_(TV_series)", "http://dbpedia.org/resource/Amber_Brown_(TV_series)", "http://dbpedia.org/resource/Amber_Dhara", "http://dbpedia.org/resource/Ambici\u00f3n_(TV_series)", "http://dbpedia.org/resource/Ambition_(TV_series)", "http://dbpedia.org/resource/Ambitions_(TV_series)", "http://dbpedia.org/resource/Ambulance_(TV_programme)", "http://dbpedia.org/resource/Ambulance_Australia", "http://dbpedia.org/resource/Ambush_Makeover", "http://dbpedia.org/resource/Ambushed_(1998_film)", "http://dbpedia.org/resource/Amelia_(opera)", "http://dbpedia.org/resource/Amelia_Earhart:_The_Final_Flight", "http://dbpedia.org/resource/Amelia_Earhart_(film)", "http://dbpedia.org/resource/Amelia_Earhart_(miniseries)", "http://dbpedia.org/resource/Amen_(TV_series)", "http://dbpedia.org/resource/Amend:_The_Fight_for_America", "http://dbpedia.org/resource/America's_Ballroom_Challenge", "http://dbpedia.org/resource/America's_Best_Dance_Crew", "http://dbpedia.org/resource/America's_Big_Deal", "http://dbpedia.org/resource/America's_Book_of_Secrets", "http://dbpedia.org/resource/America's_Castles", "http://dbpedia.org/resource/America's_Court_with_Judge_Ross", "http://dbpedia.org/resource/America's_Dream", "http://dbpedia.org/resource/America's_Dumbest_Criminals", "http://dbpedia.org/resource/America's_Election_Headquarters", "http://dbpedia.org/resource/America's_Funniest_Home_Videos", "http://dbpedia.org/resource/America's_Funniest_Home_Videos:_Animal_Edition", "http://dbpedia.org/resource/America's_Funniest_People", "http://dbpedia.org/resource/America's_Game:_The_Super_Bowl_Champions", "http://dbpedia.org/resource/America's_Got_Talent", "http://dbpedia.org/resource/America's_Got_Talent:_Extreme", "http://dbpedia.org/resource/America's_Got_Talent:_The_Champions", "http://dbpedia.org/resource/America's_Great_Divide", "http://dbpedia.org/resource/America's_Heartland", "http://dbpedia.org/resource/America's_Medicated_Kids", "http://dbpedia.org/resource/America's_Morning_Headquarters", "http://dbpedia.org/resource/America's_Most_Dangerous_Pets", "http://dbpedia.org/resource/America's_Most_Hated_Family_in_Crisis", "http://dbpedia.org/resource/America's_Most_Musical_Family", "http://dbpedia.org/resource/America's_Most_Smartest_Model", "http://dbpedia.org/resource/America's_Most_Talented_Kid", "http://dbpedia.org/resource/America's_Most_Wanted", "http://dbpedia.org/resource/America's_News_Headquarters", "http://dbpedia.org/resource/America's_Newsroom", "http://dbpedia.org/resource/America's_Next_Great_Restaurant", "http://dbpedia.org/resource/America's_Next_Producer", "http://dbpedia.org/resource/America's_Next_Top_Model", "http://dbpedia.org/resource/America's_Prince:_The_John_F._Kennedy_Jr._Story", "http://dbpedia.org/resource/America's_Prom_Queen", "http://dbpedia.org/resource/America's_Supernanny", "http://dbpedia.org/resource/America's_Test_Kitchen", "http://dbpedia.org/resource/America's_Top_10", "http://dbpedia.org/resource/America's_Top_Dog", "http://dbpedia.org/resource/America's_Toughest_Jobs", "http://dbpedia.org/resource/America's_Town_Meeting_of_the_Air", "http://dbpedia.org/resource/America's_War_on_Abortion", "http://dbpedia.org/resource/America's_Worst_Driver", "http://dbpedia.org/resource/America:_A_Personal_History_of_the_United_States", "http://dbpedia.org/resource/America:_The_Story_of_Us", "http://dbpedia.org/resource/America_(2009_film)", "http://dbpedia.org/resource/America_(American_TV_series)", "http://dbpedia.org/resource/America_2-Night", "http://dbpedia.org/resource/America_2040", "http://dbpedia.org/resource/America_After_9/11", "http://dbpedia.org/resource/America_Alive!", "http://dbpedia.org/resource/America_Ammayi_(TV_series)", "http://dbpedia.org/resource/America_By_the_Numbers_with_Maria_Hinojosa:_Clarkston_Georgia", "http://dbpedia.org/resource/America_Divided", "http://dbpedia.org/resource/America_Goes_Bananaz", "http://dbpedia.org/resource/America_Live_with_Megyn_Kelly", "http://dbpedia.org/resource/America_Mappillai", "http://dbpedia.org/resource/America_Now", "http://dbpedia.org/resource/America_ReFramed", "http://dbpedia.org/resource/America_Reports", "http://dbpedia.org/resource/America_Says", "http://dbpedia.org/resource/America_This_Morning", "http://dbpedia.org/resource/America_Tonight", "http://dbpedia.org/resource/America_Undercover", "http://dbpedia.org/resource/America_Unearthed", "http://dbpedia.org/resource/America_in_Primetime", "http://dbpedia.org/resource/America_to_Me", "http://dbpedia.org/resource/American_Arts_Commemorative_Series_medallions", "http://dbpedia.org/resource/American_Auto", "http://dbpedia.org/resource/American_Bandstand", "http://dbpedia.org/resource/American_Beauty_Star", "http://dbpedia.org/resource/American_Body_Shop", "http://dbpedia.org/resource/American_Born_Chinese_(TV_series)", "http://dbpedia.org/resource/American_Candidate", "http://dbpedia.org/resource/American_Casino", "http://dbpedia.org/resource/American_Chess_Congress", "http://dbpedia.org/resource/American_Chopper", "http://dbpedia.org/resource/American_Chronicles", "http://dbpedia.org/resource/American_Country_Countdown", "http://dbpedia.org/resource/American_Crime_(TV_series)", "http://dbpedia.org/resource/American_Crime_Story", "http://dbpedia.org/resource/American_Dad!", "http://dbpedia.org/resource/American_Detective", "http://dbpedia.org/resource/American_Digger_(TV_series)", "http://dbpedia.org/resource/American_Dragon:_Jake_Long", "http://dbpedia.org/resource/American_Dream/American_Knightmare", "http://dbpedia.org/resource/American_Dream_(TV_series)", "http://dbpedia.org/resource/American_Dream_Builders", "http://dbpedia.org/resource/American_Dream_Derby", "http://dbpedia.org/resource/American_Dreamer_(TV_series)", "http://dbpedia.org/resource/American_Dreams", "http://dbpedia.org/resource/American_Eats", "http://dbpedia.org/resource/American_Experience", "http://dbpedia.org/resource/American_Family_(2002_TV_series)", "http://dbpedia.org/resource/American_Gangster:_Trap_Queens", "http://dbpedia.org/resource/American_Gangster_(TV_series)", "http://dbpedia.org/resource/American_Genius", "http://dbpedia.org/resource/American_Gigolo_(TV_series)", "http://dbpedia.org/resource/American_Gladiators_(1989_TV_series)", "http://dbpedia.org/resource/American_Gladiators_(2008_TV_series)", "http://dbpedia.org/resource/American_Gods_(TV_series)", "http://dbpedia.org/resource/American_Gothic_(1995_TV_series)", "http://dbpedia.org/resource/American_Gothic_(2016_TV_series)", "http://dbpedia.org/resource/American_Greed", "http://dbpedia.org/resource/American_Grit", "http://dbpedia.org/resource/American_Guns", "http://dbpedia.org/resource/American_Gypsies", "http://dbpedia.org/resource/American_Heiress", "http://dbpedia.org/resource/American_High_(TV_series)", "http://dbpedia.org/resource/American_Hoggers", "http://dbpedia.org/resource/American_Horror_Stories", "http://dbpedia.org/resource/American_Horror_Story", "http://dbpedia.org/resource/American_Hot_Rod", "http://dbpedia.org/resource/American_Housewife", "http://dbpedia.org/resource/American_Idol", "http://dbpedia.org/resource/American_Idol_Extra", "http://dbpedia.org/resource/American_Institute_of_Chemists_Gold_Medal", "http://dbpedia.org/resource/American_International_Toy_Fair", "http://dbpedia.org/resource/American_Inventor", "http://dbpedia.org/resource/American_Journal", "http://dbpedia.org/resource/American_Juniors", "http://dbpedia.org/resource/American_Justice", "http://dbpedia.org/resource/American_League_Championship_Series", "http://dbpedia.org/resource/American_Masters", "http://dbpedia.org/resource/American_Morning", "http://dbpedia.org/resource/American_Muscle_Car", "http://dbpedia.org/resource/American_Ninja_Challenge", "http://dbpedia.org/resource/American_Ninja_Warrior", "http://dbpedia.org/resource/American_Ninja_Warrior:_Ninja_vs._Ninja", "http://dbpedia.org/resource/American_Ninja_Warrior:_USA_vs._The_World", "http://dbpedia.org/resource/American_Ninja_Warrior_Junior", "http://dbpedia.org/resource/American_Odyssey", "http://dbpedia.org/resource/American_Pickers", "http://dbpedia.org/resource/American_Playboy:_The_Hugh_Hefner_Story", "http://dbpedia.org/resource/American_Playhouse", "http://dbpedia.org/resource/American_Presidents:_Life_Portraits", "http://dbpedia.org/resource/American_Princess_(2005_TV_series)", "http://dbpedia.org/resource/American_Princess_(2019_TV_series)", "http://dbpedia.org/resource/American_Refugee", "http://dbpedia.org/resource/American_Restoration", "http://dbpedia.org/resource/American_Ride_(TV_series)", "http://dbpedia.org/resource/American_Royal", "http://dbpedia.org/resource/American_Rust_(TV_series)", "http://dbpedia.org/resource/American_Song_Contest", "http://dbpedia.org/resource/American_Soul", "http://dbpedia.org/resource/American_Stuffers", "http://dbpedia.org/resource/American_Tongues", "http://dbpedia.org/resource/American_Top_40", "http://dbpedia.org/resource/American_Tragedy_(film)", "http://dbpedia.org/resource/American_Treasures", "http://dbpedia.org/resource/American_Trucker", "http://dbpedia.org/resource/American_Vandal", "http://dbpedia.org/resource/American_Weed", "http://dbpedia.org/resource/American_Whiskey_Bar", "http://dbpedia.org/resource/American_Woman_(TV_series)", "http://dbpedia.org/resource/American_Writers:_A_Journey_Through_History", "http://dbpedia.org/resource/Americana_(1992_TV_series)", "http://dbpedia.org/resource/Americana_(game_show)", "http://dbpedia.org/resource/Americana_(radio_series)", "http://dbpedia.org/resource/Americana_Unplugged", "http://dbpedia.org/resource/Amerika_(miniseries)", "http://dbpedia.org/resource/Ameryka_Express", "http://dbpedia.org/resource/Ametalk!", "http://dbpedia.org/resource/Amethyst,_Princess_of_Gemworld", "http://dbpedia.org/resource/Ami_Sirajer_Begum", "http://dbpedia.org/resource/Amica_(opera)", "http://dbpedia.org/resource/Amiche_mie", "http://dbpedia.org/resource/Amici_di_Maria_De_Filippi", "http://dbpedia.org/resource/Amico_mio", "http://dbpedia.org/resource/Amigas_&_Rivais", "http://dbpedia.org/resource/Amigas_y_rivales", "http://dbpedia.org/resource/Amigasa_J\u016bbei", "http://dbpedia.org/resource/Amigo_(game_show)", "http://dbpedia.org/resource/Amigo_and_Friends", "http://dbpedia.org/resource/Amigo_de_Aluguel", "http://dbpedia.org/resource/Amigos_x_siempre", "http://dbpedia.org/resource/Amilie,_or_the_Love_Test", "http://dbpedia.org/resource/Amish_Grace", "http://dbpedia.org/resource/Amish_Mafia", "http://dbpedia.org/resource/Amish_in_the_City", "http://dbpedia.org/resource/Amistades_peligrosas_(TV_series)", "http://dbpedia.org/resource/Amityville_4:_The_Evil_Escapes", "http://dbpedia.org/resource/Amleto", "http://dbpedia.org/resource/Amma_(TV_series)", "http://dbpedia.org/resource/Amma_Ke_Babu_Ki_Baby", "http://dbpedia.org/resource/Amma_Makal", "http://dbpedia.org/resource/Ammaji_Ki_Galli", "http://dbpedia.org/resource/Ammaku_Teliyani_Koilamma", "http://dbpedia.org/resource/Amman_(TV_series)", "http://dbpedia.org/resource/Ammayariyathe", "http://dbpedia.org/resource/Ammayi_Kaapuram", "http://dbpedia.org/resource/Ammuvinte_Amma", "http://dbpedia.org/resource/Amnesia_(TV_series)", "http://dbpedia.org/resource/Amnesia_(game_show)", "http://dbpedia.org/resource/Amnesia_(visual_novel)", "http://dbpedia.org/resource/Amo_(TV_series)", "http://dbpedia.org/resource/Among_Nonbelievers", "http://dbpedia.org/resource/Amongst_Men", "http://dbpedia.org/resource/Amor_Amor_(TV_series)", "http://dbpedia.org/resource/Amor_Comprado", "http://dbpedia.org/resource/Amor_Descarado", "http://dbpedia.org/resource/Amor_Eterno_Amor", "http://dbpedia.org/resource/Amor_Fati_(TV_series)", "http://dbpedia.org/resource/Amor_Maior", "http://dbpedia.org/resource/Amor_a_Ciegas", "http://dbpedia.org/resource/Amor_a_la_Catal\u00e1n", "http://dbpedia.org/resource/Amor_a_mil", "http://dbpedia.org/resource/Amor_a_palos", "http://dbpedia.org/resource/Amor_brav\u00edo", "http://dbpedia.org/resource/Amor_cautivo", "http://dbpedia.org/resource/Amor_com_Amor_Se_Paga", "http://dbpedia.org/resource/Amor_de_Abril", "http://dbpedia.org/resource/Amor_de_M\u00e3e", "http://dbpedia.org/resource/Amor_de_Perdi\u00e7\u00e3o_(TV_series)", "http://dbpedia.org/resource/Amor_de_Tarapaca", "http://dbpedia.org/resource/Amor_de_barrio", "http://dbpedia.org/resource/Amor_de_madre", "http://dbpedia.org/resource/Amor_de_nadie", "http://dbpedia.org/resource/Amor_del_bueno", "http://dbpedia.org/resource/Amor_dividido", "http://dbpedia.org/resource/Amor_e_Revolu\u00e7\u00e3o", "http://dbpedia.org/resource/Amor_e_Sexo", "http://dbpedia.org/resource/Amor_en_custodia_(Mexican_TV_series)", "http://dbpedia.org/resource/Amor_en_el_desierto", "http://dbpedia.org/resource/Amor_en_silencio", "http://dbpedia.org/resource/Amor_gitano_(TV_series)", "http://dbpedia.org/resource/Amor_m\u00edo_(Argentine_TV_series)", "http://dbpedia.org/resource/Amor_m\u00edo_(Mexican_TV_series)", "http://dbpedia.org/resource/Amor_m\u00edo_(Venezuelan_TV_series)", "http://dbpedia.org/resource/Amor_prohibido_(TV_series)", "http://dbpedia.org/resource/Amor_real", "http://dbpedia.org/resource/Amor_secreto_(TV_series)", "http://dbpedia.org/resource/Amor_sem_Igual", "http://dbpedia.org/resource/Amor_sin_fronteras", "http://dbpedia.org/resource/Amor_sin_maquillaje", "http://dbpedia.org/resource/Amor_sublime", "http://dbpedia.org/resource/Amor_y_orgullo", "http://dbpedia.org/resource/Amor_\u00e0_Vida", "http://dbpedia.org/resource/Amorcito_coraz\u00f3n", "http://dbpedia.org/resource/Amores,_querer_con_alevos\u00eda", "http://dbpedia.org/resource/Amores_Roubados", "http://dbpedia.org/resource/Amores_con_trampa", "http://dbpedia.org/resource/Amores_cruzados", "http://dbpedia.org/resource/Amores_de_fin_de_siglo", "http://dbpedia.org/resource/Amores_de_mercado_(2006_TV_series)", "http://dbpedia.org/resource/Amores_de_mercado_(Chilean_TV_series)", "http://dbpedia.org/resource/Amores_que_enga\u00f1an", "http://dbpedia.org/resource/Amores_verdaderos", "http://dbpedia.org/resource/Amos_(film)", "http://dbpedia.org/resource/Amos_(satellite)", "http://dbpedia.org/resource/Amour_et_P\u00e2tisserie", "http://dbpedia.org/resource/Amp_(TV_series)", "http://dbpedia.org/resource/Ampang_Medikal", "http://dbpedia.org/resource/Amphibia_(TV_series)", "http://dbpedia.org/resource/Amrit_Manthan", "http://dbpedia.org/resource/Amrutham_(TV_series)", "http://dbpedia.org/resource/Amrutham_Dhvitheeyam", "http://dbpedia.org/resource/Amser_Te", "http://dbpedia.org/resource/Amstrad_CPC", "http://dbpedia.org/resource/Amudha_Oru_Aacharyakuri", "http://dbpedia.org/resource/Amudhavum_Annalakshmiyum", "http://dbpedia.org/resource/Amy's_Choice_(Doctor_Who)", "http://dbpedia.org/resource/Amy,_la_ni\u00f1a_de_la_mochila_azul", "http://dbpedia.org/resource/Amy_&_Isabelle", "http://dbpedia.org/resource/Amy_(1984_film)", "http://dbpedia.org/resource/Amy_Fisher:_My_Story", "http://dbpedia.org/resource/Amy_Prentiss", "http://dbpedia.org/resource/Amy_Schumer:_Growing", "http://dbpedia.org/resource/Amy_Schumer:_Live_at_the_Apollo", "http://dbpedia.org/resource/Amy_Schumer:_The_Leather_Special", "http://dbpedia.org/resource/Amy_Schumer_Learns_to_Cook", "http://dbpedia.org/resource/Amy_Winehouse:_Back_to_Black", "http://dbpedia.org/resource/Am\u00e9rica_(Brazilian_TV_series)", "http://dbpedia.org/resource/An_Accidental_Soldier", "http://dbpedia.org/resource/An_Actor's_Life_For_Me", "http://dbpedia.org/resource/An_Adventure_in_Space_and_Time", "http://dbpedia.org/resource/An_African_City", "http://dbpedia.org/resource/An_Afternoon_with_SCTV", "http://dbpedia.org/resource/An_Age_of_Kings", "http://dbpedia.org/resource/An_American_Christmas_Carol", "http://dbpedia.org/resource/An_American_Daughter_(film)", "http://dbpedia.org/resource/An_American_Family", "http://dbpedia.org/resource/An_American_Girl:_Chrissa_Stands_Strong", "http://dbpedia.org/resource/An_American_Girl:_Saige_Paints_the_Sky", "http://dbpedia.org/resource/An_American_Portrait", "http://dbpedia.org/resource/An_American_Tragedy_(opera)", "http://dbpedia.org/resource/An_American_in_Canada", "http://dbpedia.org/resource/An_Audience_with...", "http://dbpedia.org/resource/An_Aussie_Goes_Barmy", "http://dbpedia.org/resource/An_Aussie_Goes_Bolly", "http://dbpedia.org/resource/An_Aussie_Goes_Calypso", "http://dbpedia.org/resource/An_Avonlea_Christmas", "http://dbpedia.org/resource/An_Awfully_Beastly_Business", "http://dbpedia.org/resource/An_Crisis", "http://dbpedia.org/resource/An_Early_Frost", "http://dbpedia.org/resource/An_Emmy_for_Megan", "http://dbpedia.org/resource/An_Enemy_of_the_People_(1958_film)", "http://dbpedia.org/resource/An_Englishman's_Castle", "http://dbpedia.org/resource/An_Englishman_Abroad", "http://dbpedia.org/resource/An_Equal_Playing_Field", "http://dbpedia.org/resource/An_Evening_with_Fred_Astaire", "http://dbpedia.org/resource/An_Evening_with_Kevin_Smith", "http://dbpedia.org/resource/An_Evening_with_Kevin_Smith_2:_Evening_Harder", "http://dbpedia.org/resource/An_Evening_with_Marlene_Dietrich", "http://dbpedia.org/resource/An_Evening_with_Raoul", "http://dbpedia.org/resource/An_Evening_with_the_Dixie_Chicks", "http://dbpedia.org/resource/An_Icelandic_Odyssey", "http://dbpedia.org/resource/An_Idiot_Abroad", "http://dbpedia.org/resource/An_Innocent_Love", "http://dbpedia.org/resource/An_Inspector_Calls_(2015_TV_film)", "http://dbpedia.org/resource/An_Inspector_Calls_(TV_series)", "http://dbpedia.org/resource/An_Island_Parish", "http://dbpedia.org/resource/An_Klondike", "http://dbpedia.org/resource/An_L\u00e0", "http://dbpedia.org/resource/An_Ocean_Apart", "http://dbpedia.org/resource/An_Ode_to_Life", "http://dbpedia.org/resource/An_Officer_and_a_Car_Salesman", "http://dbpedia.org/resource/An_Officer_and_a_Murderer", "http://dbpedia.org/resource/An_Old_Fashioned_Thanksgiving", "http://dbpedia.org/resource/An_Unexpected_Love", "http://dbpedia.org/resource/An_Unfinished_Affair", "http://dbpedia.org/resource/An_Ungentlemanly_Act", "http://dbpedia.org/resource/An_Unsuitable_Job_for_a_Woman_(TV_series)", "http://dbpedia.org/resource/Ana_(1984_TV_series)", "http://dbpedia.org/resource/Ana_(2004_TV_series)", "http://dbpedia.org/resource/Ana_(2020_TV_series)", "http://dbpedia.org/resource/Ana_del_aire", "http://dbpedia.org/resource/Anaa_(TV_series)", "http://dbpedia.org/resource/Anaana's_Tent", "http://dbpedia.org/resource/Anabel_(Brazilian_TV_series)", "http://dbpedia.org/resource/Anaconda_3:_Offspring", "http://dbpedia.org/resource/Anacondas:_Trail_of_Blood", "http://dbpedia.org/resource/Anacostia_(web_series)", "http://dbpedia.org/resource/Anaganaga", "http://dbpedia.org/resource/Anak_Jalanan", "http://dbpedia.org/resource/Anak_Langit", "http://dbpedia.org/resource/Anak_ni_Waray_vs._Anak_ni_Biday", "http://dbpedia.org/resource/Analog_(TV_series)", "http://dbpedia.org/resource/Analog_Trip", "http://dbpedia.org/resource/Anamika_(TV_series)", "http://dbpedia.org/resource/Anandham_(TV_series)", "http://dbpedia.org/resource/Anandibaa_Aur_Emily", "http://dbpedia.org/resource/Anansi_Boys_(TV_series)", "http://dbpedia.org/resource/Anantham_(web_series)", "http://dbpedia.org/resource/Anarky_(comic_book)", "http://dbpedia.org/resource/Anastasia:_The_Mystery_of_Anna", "http://dbpedia.org/resource/Anastasia_(TV_series)", "http://dbpedia.org/resource/Anast\u00e1cia,_a_Mulher_sem_Destino", "http://dbpedia.org/resource/Anatane:_Saving_the_Children_of_Okura", "http://dbpedia.org/resource/Anatole_(TV_series)", "http://dbpedia.org/resource/Anatomy_of_Crime", "http://dbpedia.org/resource/Anatomy_of_a_Disaster", "http://dbpedia.org/resource/Anatomy_of_a_Hate_Crime", "http://dbpedia.org/resource/Anatomy_of_a_Scandal", "http://dbpedia.org/resource/Anaya_Tumhari_Hui", "http://dbpedia.org/resource/Anbe_Sivam_(TV_series)", "http://dbpedia.org/resource/Anbe_Vaa_(2009_TV_series)", "http://dbpedia.org/resource/Anbe_Vaa_(2020_TV_series)", "http://dbpedia.org/resource/Anbudan_DD", "http://dbpedia.org/resource/Anbudan_Kushi", "http://dbpedia.org/resource/Anbulla_Ghilli", "http://dbpedia.org/resource/Ancestral_Temple_(TV_series)", "http://dbpedia.org/resource/Anchorage-class_dock_landing_ship", "http://dbpedia.org/resource/Anchorwoman_(TV_series)", "http://dbpedia.org/resource/Ancient_Aliens", "http://dbpedia.org/resource/Ancient_Discoveries", "http://dbpedia.org/resource/Ancient_Egyptians_(TV_series)", "http://dbpedia.org/resource/Ancient_Empires_(mobile_game)", "http://dbpedia.org/resource/Ancient_Inventions", "http://dbpedia.org/resource/Ancient_Kings", "http://dbpedia.org/resource/Ancient_Legends", "http://dbpedia.org/resource/Ancient_Macedonian_calendar", "http://dbpedia.org/resource/Ancient_Mysteries", "http://dbpedia.org/resource/Ancient_Rome:_The_Rise_and_Fall_of_an_Empire", "http://dbpedia.org/resource/Ancient_Warriors", "http://dbpedia.org/resource/Ancient_Warriors_(TV_series)", "http://dbpedia.org/resource/Ancient_X-Files", "http://dbpedia.org/resource/Anclados", "http://dbpedia.org/resource/And_Everything_Nice", "http://dbpedia.org/resource/And_Here_Comes_Bucknuckle", "http://dbpedia.org/resource/And_I_Love_You_So_(TV_series)", "http://dbpedia.org/resource/And_Just_Like_That...", "http://dbpedia.org/resource/And_Millions_Will_Die", "http://dbpedia.org/resource/And_No_One_Could_Save_Her", "http://dbpedia.org/resource/And_Starring_Pancho_Villa_as_Himself", "http://dbpedia.org/resource/And_Then_There_Was_One_(1994_film)", "http://dbpedia.org/resource/And_Then_There_Were_None_(TV_series)", "http://dbpedia.org/resource/And_Then_You_Die_(TV_series)", "http://dbpedia.org/resource/And_There's_More", "http://dbpedia.org/resource/And_They're_Off!", "http://dbpedia.org/resource/And_the_Band_Played_On_(film)", "http://dbpedia.org/resource/And_the_Winner_Is_Love", "http://dbpedia.org/resource/Anda_Pa'l_Car\u00e1", "http://dbpedia.org/resource/Andaaz-e-Sitam", "http://dbpedia.org/resource/Andal_Azhagar", "http://dbpedia.org/resource/Andando_nas_Nuvens", "http://dbpedia.org/resource/Andante_(TV_series)", "http://dbpedia.org/resource/Andar_ng_mga_Balita_(TV_program)", "http://dbpedia.org/resource/Andar_ng_mga_Balita_(radio)", "http://dbpedia.org/resource/Andarmahal", "http://dbpedia.org/resource/Andata_e_ritorno_(TV_series)", "http://dbpedia.org/resource/Anderland", "http://dbpedia.org/resource/Andersen_Monogatari_(TV_series)", "http://dbpedia.org/resource/Anderson_Cooper_360\u00b0", "http://dbpedia.org/resource/Anderson_Cooper_Full_Circle", "http://dbpedia.org/resource/Anderson_Live", "http://dbpedia.org/resource/Andersonville_(film)", "http://dbpedia.org/resource/Andes_to_Amazon", "http://dbpedia.org/resource/Andha_Pathu_Naatkal", "http://dbpedia.org/resource/Andhera_Ujala", "http://dbpedia.org/resource/Andi_Mack", "http://dbpedia.org/resource/Ando-Roid", "http://dbpedia.org/resource/Andor_(TV_series)", "http://dbpedia.org/resource/Andra_(TV_series)", "http://dbpedia.org/resource/Andra_Avenyn", "http://dbpedia.org/resource/Andre's_Mother", "http://dbpedia.org/resource/Andrea_Ch\u00e9nier", "http://dbpedia.org/resource/Andrea_Mitchell_Reports", "http://dbpedia.org/resource/Andrei_Sakharov_Freedom_Award", "http://dbpedia.org/resource/Andres_de_Saya", "http://dbpedia.org/resource/Andrew_Denton's_Interview", "http://dbpedia.org/resource/Andrew_Lost", "http://dbpedia.org/resource/Andrew_Marr's_History_of_Modern_Britain", "http://dbpedia.org/resource/Andrew_Marr's_History_of_the_World", "http://dbpedia.org/resource/Andrew_Marr's_The_Making_of_Modern_Britain", "http://dbpedia.org/resource/Andrew_Zimmern's_Bizarre_World", "http://dbpedia.org/resource/Andrija_i_An\u0111elka", "http://dbpedia.org/resource/Andrina_(film)", "http://dbpedia.org/resource/Andro_Melos", "http://dbpedia.org/resource/Android_Apocalypse", "http://dbpedia.org/resource/Android_Kikaider", "http://dbpedia.org/resource/Andromeda_(TV_series)", "http://dbpedia.org/resource/Andr\u00e9_the_Giant_(film)", "http://dbpedia.org/resource/Andr\u00e9s_L\u00f3pez_de_Noche", "http://dbpedia.org/resource/Andy's_Dinosaur_Adventures", "http://dbpedia.org/resource/Andy_Barker,_P.I.", "http://dbpedia.org/resource/Andy_Capp_(TV_series)", "http://dbpedia.org/resource/Andy_McNab's_Tour_of_Duty", "http://dbpedia.org/resource/Andy_Pandy", "http://dbpedia.org/resource/Andy_Pirki", "http://dbpedia.org/resource/Andy_Richter_Controls_the_Universe", "http://dbpedia.org/resource/Andy_Robson", "http://dbpedia.org/resource/Andy_Warhol's_Fifteen_Minutes", "http://dbpedia.org/resource/Andy_Warhol:_A_Documentary_Film", "http://dbpedia.org/resource/Adrenalina_Skateboard_Marathon", "http://dbpedia.org/resource/Adrian_der_Tulpendieb", "http://dbpedia.org/resource/Adrienne_Clarkson_Presents", "http://dbpedia.org/resource/Advance_Credit_Administration_Program", "http://dbpedia.org/resource/Advanced_Combat_Optical_Gunsight", "http://dbpedia.org/resource/Advanced_Dungeons_&_Dragons_Adventure_Gamebooks", "http://dbpedia.org/resource/Advances_in_Experimental_Medicine_and_Biology", "http://dbpedia.org/resource/Advances_in_Mass_Spectrometry", "http://dbpedia.org/resource/Advances_in_Public_Interest_Accounting", "http://dbpedia.org/resource/Advent_calendar", "http://dbpedia.org/resource/Adventist_Health_Studies", "http://dbpedia.org/resource/Adventure_Florida", "http://dbpedia.org/resource/Adventure_Path", "http://dbpedia.org/resource/Adventure_People", "http://dbpedia.org/resource/Adventure_in_Dairyland", "http://dbpedia.org/resource/Adventures_by_Morse", "http://dbpedia.org/resource/Adventures_in_Africa", "http://dbpedia.org/resource/Adventures_into_the_Unknown", "http://dbpedia.org/resource/Adventures_of_Captain_America", "http://dbpedia.org/resource/Adventures_of_Cow", "http://dbpedia.org/resource/Adventures_of_the_Sea_Hawk", "http://dbpedia.org/resource/Adversus_Judaeos", "http://dbpedia.org/resource/Ad\u00e8le_de_Ponthieu_(La_Borde_and_Berton)", "http://dbpedia.org/resource/Aerial_China", "http://dbpedia.org/resource/Aeroscope", "http://dbpedia.org/resource/Aesop_World", "http://dbpedia.org/resource/Aeterna_(TV_series)", "http://dbpedia.org/resource/Affair_of_the_Spanish_Marriages", "http://dbpedia.org/resource/Affari_tuoi", "http://dbpedia.org/resource/Afflictions:_Culture_&_Mental_Illness_in_Indonesia", "http://dbpedia.org/resource/African_American_Short_Films", "http://dbpedia.org/resource/African_Sources_for_African_History", "http://dbpedia.org/resource/Afro-Asian_Games", "http://dbpedia.org/resource/After_Hours_(1958_British_TV_series)", "http://dbpedia.org/resource/After_Hours_(2015_British_TV_series)", "http://dbpedia.org/resource/After_Nine", "http://dbpedia.org/resource/Agahi_Award", "http://dbpedia.org/resource/Against_the_Flow", "http://dbpedia.org/resource/Agamemnon_(opera)", "http://dbpedia.org/resource/Agatha_Christie_(video_game_series)", "http://dbpedia.org/resource/Age_of_Empires", "http://dbpedia.org/resource/Age_of_Mortals", "http://dbpedia.org/resource/Agenda_2000", "http://dbpedia.org/resource/Agenda_2010", "http://dbpedia.org/resource/Agent_13:_The_Midnight_Avenger", "http://dbpedia.org/resource/Agent_327", "http://dbpedia.org/resource/Agents_of_Law", "http://dbpedia.org/resource/Agfa_Clack", "http://dbpedia.org/resource/Agfa_Optima_1535_Sensor", "http://dbpedia.org/resource/Agfa_Optima_Flash_Sensor", "http://dbpedia.org/resource/Aldwych_farce", "http://dbpedia.org/resource/Aleksis_Kivi_(opera)", "http://dbpedia.org/resource/Aleppo_soap", "http://dbpedia.org/resource/Alesha's_Street_Dance_Stars", "http://dbpedia.org/resource/Alessandro_(opera)", "http://dbpedia.org/resource/Alex_+_Ada", "http://dbpedia.org/resource/Alex_Delaware", "http://dbpedia.org/resource/Alex_Kidd", "http://dbpedia.org/resource/Alex_McKnight_series", "http://dbpedia.org/resource/Alex_Rider", "http://dbpedia.org/resource/Alexandre_aux_Indes", "http://dbpedia.org/resource/Alexandre_de_Betak", "http://dbpedia.org/resource/Alexandre_et_Roxane", "http://dbpedia.org/resource/Alfa_Papa_Tango", "http://dbpedia.org/resource/Alfie_Atkins", "http://dbpedia.org/resource/Alfred_(Dvo\u0159\u00e1k)", "http://dbpedia.org/resource/Alfred_Kropp_series", "http://dbpedia.org/resource/Dallas:_J.R._Returns", "http://dbpedia.org/resource/Dallas:_The_Early_Years", "http://dbpedia.org/resource/Dallas:_War_of_the_Ewings", "http://dbpedia.org/resource/Dallas_&_Robo", "http://dbpedia.org/resource/Dallas_(1978_TV_series)", "http://dbpedia.org/resource/Dallas_(2012_TV_series)", "http://dbpedia.org/resource/Dallas_Car_Sharks", "http://dbpedia.org/resource/Dallas_Cowboys_Cheerleaders:_Making_the_Team", "http://dbpedia.org/resource/Dallas_Divas_&_Daughters", "http://dbpedia.org/resource/Dallas_Reunion:_The_Return_to_Southfork", "http://dbpedia.org/resource/Dallas_SWAT", "http://dbpedia.org/resource/Dalsa_Origin", "http://dbpedia.org/resource/Dalva", "http://dbpedia.org/resource/Dalva_e_Herivelto:_uma_Can\u00e7\u00e3o_de_Amor", "http://dbpedia.org/resource/Dalziel_and_Pascoe_(TV_series)", "http://dbpedia.org/resource/Dam_Dama_Dam", "http://dbpedia.org/resource/Dama_y_obrero_(American_TV_series)", "http://dbpedia.org/resource/Dama_y_obrero_(Chilean_TV_series)", "http://dbpedia.org/resource/Damage_Control_(TV_series)", "http://dbpedia.org/resource/Damages_(TV_series)", "http://dbpedia.org/resource/Damages_(season_5)", "http://dbpedia.org/resource/Damals_in_der_DDR", "http://dbpedia.org/resource/Damascenone", "http://dbpedia.org/resource/Damascone", "http://dbpedia.org/resource/Damayan", "http://dbpedia.org/resource/Damayanti_(web_series)", "http://dbpedia.org/resource/Dame_Chocolate", "http://dbpedia.org/resource/Dame_Edna's_Neighbourhood_Watch", "http://dbpedia.org/resource/Dame_na_Watashi_ni_Koishite_Kudasai", "http://dbpedia.org/resource/Dames_in_de_Dop", "http://dbpedia.org/resource/Dames_in_de_Dop_1", "http://dbpedia.org/resource/Dames_in_de_Dop_2", "http://dbpedia.org/resource/Damien_(TV_series)", "http://dbpedia.org/resource/Damilola,_Our_Loved_Boy", "http://dbpedia.org/resource/Damn_Yankees!_(1967_film)", "http://dbpedia.org/resource/Damnation_(TV_series)", "http://dbpedia.org/resource/Damned_(TV_series)", "http://dbpedia.org/resource/Damo_(TV_series)", "http://dbpedia.org/resource/Damon_(TV_series)", "http://dbpedia.org/resource/Damon_Runyon_Theater", "http://dbpedia.org/resource/Damon_and_Debbie", "http://dbpedia.org/resource/Damsa", "http://dbpedia.org/resource/DanSing_for_You", "http://dbpedia.org/resource/Dan_&_Becs", "http://dbpedia.org/resource/Dan_August", "http://dbpedia.org/resource/Dan_Dare:_Pilot_of_the_Future_(TV_series)", "http://dbpedia.org/resource/Dan_Deacon:_U.S.A.", "http://dbpedia.org/resource/Dan_Harding's_Wife", "http://dbpedia.org/resource/Dan_Raven", "http://dbpedia.org/resource/Dan_Vs.", "http://dbpedia.org/resource/Dan_and_Nick:_The_Wildebeest_Years", "http://dbpedia.org/resource/Dan_and_Phil", "http://dbpedia.org/resource/Dan_for_Mayor", "http://dbpedia.org/resource/Dana_White's_Contender_Series_Brazil", "http://dbpedia.org/resource/Dana_White's_Contender_Series_Season_1", "http://dbpedia.org/resource/Dana_White's_Contender_Series_Season_2", "http://dbpedia.org/resource/Dana_White's_Contender_Series_Season_3", "http://dbpedia.org/resource/Dana_White's_Contender_Series_Season_4", "http://dbpedia.org/resource/Dana_White's_Contender_Series_Season_5", "http://dbpedia.org/resource/Dana_White's_Contender_Series_Season_6", "http://dbpedia.org/resource/Dance!_La_Fuerza_del_Coraz\u00f3n", "http://dbpedia.org/resource/Dance-2-Nite", "http://dbpedia.org/resource/DanceLife", "http://dbpedia.org/resource/DanceX", "http://dbpedia.org/resource/Dance_'til_Dawn", "http://dbpedia.org/resource/Dance_360", "http://dbpedia.org/resource/Dance_Academy", "http://dbpedia.org/resource/Dance_Boss", "http://dbpedia.org/resource/Dance_Central_(series)", "http://dbpedia.org/resource/Dance_Champions", "http://dbpedia.org/resource/Dance_Dance_(TV_series)", "http://dbpedia.org/resource/Dance_Dance_Dance_(British_TV_series)", "http://dbpedia.org/resource/Dance_Deewane", "http://dbpedia.org/resource/Dance_Factory", "http://dbpedia.org/resource/Dance_Fever", "http://dbpedia.org/resource/Dance_Fever_(2003_TV_series)", "http://dbpedia.org/resource/Dance_India_Dance", "http://dbpedia.org/resource/Dance_Jodi_Dance", "http://dbpedia.org/resource/Dance_Kids", "http://dbpedia.org/resource/Dance_Machine", "http://dbpedia.org/resource/Dance_Moms", "http://dbpedia.org/resource/Dance_Moms:_Miami", "http://dbpedia.org/resource/Dance_Mums_with_Jennifer_Ellison", "http://dbpedia.org/resource/Dance_Party_USA", "http://dbpedia.org/resource/Dance_Plus", "http://dbpedia.org/resource/Dance_Premier_League", "http://dbpedia.org/resource/Dance_Revolution", "http://dbpedia.org/resource/Dance_Se_Puder", "http://dbpedia.org/resource/Dance_Showdown", "http://dbpedia.org/resource/Dance_Suomi", "http://dbpedia.org/resource/Dance_USA_Dance", "http://dbpedia.org/resource/Dance_War:_Bruno_vs._Carrie_Ann", "http://dbpedia.org/resource/Dance_Your_Ass_Off", "http://dbpedia.org/resource/Dance_of_the_Phoenix", "http://dbpedia.org/resource/Dance_of_the_Sky_Empire", "http://dbpedia.org/resource/Dance_on_Sunset", "http://dbpedia.org/resource/Dance_till_Tomorrow", "http://dbpedia.org/resource/Dance_with_Valentino", "http://dbpedia.org/resource/Dancee_Plus", "http://dbpedia.org/resource/Dancer's_Series:_Steps", "http://dbpedia.org/resource/Danchigai", "http://dbpedia.org/resource/Dancin'_Days_(1978_TV_series)", "http://dbpedia.org/resource/Dancin'_Days_(2012_TV_series)", "http://dbpedia.org/resource/Dancin'_to_the_Hits", "http://dbpedia.org/resource/Dancing_9", "http://dbpedia.org/resource/Dancing_Brasil", "http://dbpedia.org/resource/Dancing_Brasil_J\u00fanior", "http://dbpedia.org/resource/Dancing_Champion", "http://dbpedia.org/resource/Dancing_Daze", "http://dbpedia.org/resource/Dancing_Khilladies", "http://dbpedia.org/resource/Dancing_Queen_(American_TV_series)", "http://dbpedia.org/resource/Dancing_Queen_(Indian_TV_series)", "http://dbpedia.org/resource/Dancing_Stars_(Austrian_TV_series)", "http://dbpedia.org/resource/Dancing_Stars_(Bulgarian_TV_series)", "http://dbpedia.org/resource/Dancing_Storybook", "http://dbpedia.org/resource/Dancing_at_the_Harvest_Moon", "http://dbpedia.org/resource/Dancing_on_Ice", "http://dbpedia.org/resource/Dancing_on_Ice_(German_TV_series)", "http://dbpedia.org/resource/Dancing_on_Ice_(Greek_TV_series)", "http://dbpedia.org/resource/Dancing_on_Wheels", "http://dbpedia.org/resource/Dancing_on_the_Edge_(TV_series)", "http://dbpedia.org/resource/Dancing_with_Myself_(TV_series)", "http://dbpedia.org/resource/Dancing_with_the_Stars", "http://dbpedia.org/resource/Dancing_with_the_Stars:_Juniors", "http://dbpedia.org/resource/Dancing_with_the_Stars:_Taniec_z_gwiazdami", "http://dbpedia.org/resource/Dancing_with_the_Stars_(Albanian_TV_series)", "http://dbpedia.org/resource/Dancing_with_the_Stars_(American_TV_series)", "http://dbpedia.org/resource/Dancing_with_the_Stars_(Australian_TV_series)", "http://dbpedia.org/resource/Dancing_with_the_Stars_(Greek_TV_series)", "http://dbpedia.org/resource/Dancing_with_the_Stars_(Irish_TV_series)", "http://dbpedia.org/resource/Dancing_with_the_Stars_(New_Zealand_TV_series)", "http://dbpedia.org/resource/Dancing_with_the_Stars_(South_African_TV_series)", "http://dbpedia.org/resource/Dancing_with_the_Stars_(South_Korean_TV_series)", "http://dbpedia.org/resource/Dancing_with_the_Stars_(Thai_TV_series)", "http://dbpedia.org/resource/Dancing_with_the_Stars_Myanmar", "http://dbpedia.org/resource/Dancing_with_the_Stars_Nepal", "http://dbpedia.org/resource/Dancouga_\u2013_Super_Beast_Machine_God", "http://dbpedia.org/resource/Dandelion_Dead", "http://dbpedia.org/resource/Dandelion_Family", "http://dbpedia.org/resource/Dangaioh", "http://dbpedia.org/resource/Dangal_(TV_series)", "http://dbpedia.org/resource/Danganronpa", "http://dbpedia.org/resource/Danger_&_Eggs", "http://dbpedia.org/resource/Danger_(TV_series)", "http://dbpedia.org/resource/Danger_5", "http://dbpedia.org/resource/Danger_Bay", "http://dbpedia.org/resource/Danger_Beneath_the_Sea", "http://dbpedia.org/resource/Danger_Boy", "http://dbpedia.org/resource/Danger_Force", "http://dbpedia.org/resource/Danger_Island_(TV_series)", "http://dbpedia.org/resource/Danger_Island_(film)", "http://dbpedia.org/resource/Danger_Man", "http://dbpedia.org/resource/Danger_Mouse_(1981_TV_series)", "http://dbpedia.org/resource/Danger_Mouse_(2015_TV_series)", "http://dbpedia.org/resource/Danger_Rangers", "http://dbpedia.org/resource/Danger_Theatre", "http://dbpedia.org/resource/Danger_UXB", "http://dbpedia.org/resource/Dangerfield_(TV_series)", "http://dbpedia.org/resource/Dangerous_(TV_series)", "http://dbpedia.org/resource/Dangerous_(web_series)", "http://dbpedia.org/resource/Dangerous_Angels", "http://dbpedia.org/resource/Dangerous_Beauty_(TV_series)", "http://dbpedia.org/resource/Dangerous_Curves_(TV_series)", "http://dbpedia.org/resource/Dangerous_Drives", "http://dbpedia.org/resource/Dangerous_Edge:_A_Life_of_Graham_Greene", "http://dbpedia.org/resource/Dangerous_Flights", "http://dbpedia.org/resource/Dangerous_Game_(TV_series)", "http://dbpedia.org/resource/Dangerous_Games_(Armenian_TV_series)", "http://dbpedia.org/resource/Dangerous_Games_(TV_series)", "http://dbpedia.org/resource/Dangerous_Intentions", "http://dbpedia.org/resource/Dangerous_Lady", "http://dbpedia.org/resource/Dangerous_Liaisons_(TV_series)", "http://dbpedia.org/resource/Dangerous_Mind", "http://dbpedia.org/resource/Dangerous_Minds_(TV_series)", "http://dbpedia.org/resource/Dangerous_Passion", "http://dbpedia.org/resource/Dangerous_Woman_(South_Korean_TV_series)", "http://dbpedia.org/resource/Dangerous_Women_(American_TV_series)", "http://dbpedia.org/resource/Dangwa", "http://dbpedia.org/resource/Dani's_Castle", "http://dbpedia.org/resource/Dani's_House", "http://dbpedia.org/resource/Dani_Who%3F", "http://dbpedia.org/resource/Daniel's_Daughter", "http://dbpedia.org/resource/Daniel_Boone_(1964_TV_series)", "http://dbpedia.org/resource/Daniel_Deronda_(TV_series)", "http://dbpedia.org/resource/Daniel_Olin_(TV_program)", "http://dbpedia.org/resource/Daniel_Tiger's_Neighborhood", "http://dbpedia.org/resource/Daniela_(1976_TV_series)", "http://dbpedia.org/resource/Daniela_(2002_TV_series)", "http://dbpedia.org/resource/Danielle_Cable:_Eyewitness", "http://dbpedia.org/resource/Danielle_Steel's_'Palomino'", "http://dbpedia.org/resource/Danielle_Steel's_Star", "http://dbpedia.org/resource/Danmark_Har_Talent", "http://dbpedia.org/resource/Danmarks_N\u00e6ste_Topmodel", "http://dbpedia.org/resource/Danni_Lowinski", "http://dbpedia.org/resource/Danny_(TV_series)", "http://dbpedia.org/resource/Danny_(talk_show)", "http://dbpedia.org/resource/Danny_Detective_INC", "http://dbpedia.org/resource/Danny_Dyer's_Deadliest_Men", "http://dbpedia.org/resource/Danny_Phantom", "http://dbpedia.org/resource/Danny_Wen", "http://dbpedia.org/resource/Danny_and_the_Human_Zoo", "http://dbpedia.org/resource/Dans_Eder_misin%3F", "http://dbpedia.org/resource/Dansbandskampen", "http://dbpedia.org/resource/Danse_avec_les_stars", "http://dbpedia.org/resource/Dansefeber", "http://dbpedia.org/resource/Dansez_pentru_tine", "http://dbpedia.org/resource/Dante's_Cove", "http://dbpedia.org/resource/Dante's_Inferno_(1967_film)", "http://dbpedia.org/resource/Dante_(TV_series)", "http://dbpedia.org/resource/Danz_Showdown", "http://dbpedia.org/resource/Dan\u00e7a_dos_Famosos", "http://dbpedia.org/resource/Dapat_Alam_Mo!", "http://dbpedia.org/resource/Dapat_Ka_Bang_Mahalin%3F", "http://dbpedia.org/resource/Daphne_(2007_film)", "http://dbpedia.org/resource/Daphne_in_the_Brilliant_Blue", "http://dbpedia.org/resource/Daphnis_et_Alcimadure", "http://dbpedia.org/resource/Dapper_Laughs:_On_the_Pull", "http://dbpedia.org/resource/Dappledown_Farm", "http://dbpedia.org/resource/Dapur_Devina", "http://dbpedia.org/resource/Dar_Chashm-e_Baad", "http://dbpedia.org/resource/Dar_El_Bahdja", "http://dbpedia.org/resource/Dar_Si_Jaati_Hai_Sila", "http://dbpedia.org/resource/Dar_mar", "http://dbpedia.org/resource/Dara_O_Briain's_Go_8_Bit", "http://dbpedia.org/resource/Dara_\u00d3_Briain's_Science_Club", "http://dbpedia.org/resource/Dara_\u00d3_Briain:_School_of_Hard_Sums", "http://dbpedia.org/resource/Daraa_Governorate_clashes_(2011\u201313)", "http://dbpedia.org/resource/Daraar_(TV_series)", "http://dbpedia.org/resource/Darating_ang_Umaga", "http://dbpedia.org/resource/Daray_Daray_Naina", "http://dbpedia.org/resource/Darbadar_Tere_Liye", "http://dbpedia.org/resource/Darby_and_Joan_(TV_series)", "http://dbpedia.org/resource/Darcey_&_Stacey", "http://dbpedia.org/resource/Darcy's_Wild_Life", "http://dbpedia.org/resource/Dardanus_(Sacchini)", "http://dbpedia.org/resource/Dare_2_Dance", "http://dbpedia.org/resource/Dare_Me_(TV_series)", "http://dbpedia.org/resource/Dare_Stones", "http://dbpedia.org/resource/Dare_to_Dream:_The_Story_of_the_U.S._Women's_Soccer_Team", "http://dbpedia.org/resource/Daredevil:_End_of_Days", "http://dbpedia.org/resource/Daredevil_(TV_series)", "http://dbpedia.org/resource/Daredevil_(season_1)", "http://dbpedia.org/resource/Dareecha", "http://dbpedia.org/resource/Daria", "http://dbpedia.org/resource/Daridra_Lakshmiyaru", "http://dbpedia.org/resource/Daring_Women", "http://dbpedia.org/resource/Dark_(TV_series)", "http://dbpedia.org/resource/Dark_7_White", "http://dbpedia.org/resource/Dark_Ages_(TV_series)", "http://dbpedia.org/resource/Dark_Angel_(American_TV_series)", "http://dbpedia.org/resource/Dark_Angel_(British_TV_series)", "http://dbpedia.org/resource/Dark_Blue_(TV_series)", "http://dbpedia.org/resource/Dark_Blue_Kiss", "http://dbpedia.org/resource/Dark_Brown_(1963_film)", "http://dbpedia.org/resource/Dark_Days_in_Monkey_City", "http://dbpedia.org/resource/Dark_Desire_(TV_series)", "http://dbpedia.org/resource/Dark_Edge", "http://dbpedia.org/resource/Dark_Fantasy_(series)", "http://dbpedia.org/resource/Dark_Heart_(TV_series)", "http://dbpedia.org/resource/Dark_Hole", "http://dbpedia.org/resource/Dark_Holiday", "http://dbpedia.org/resource/Dark_Justice", "http://dbpedia.org/resource/Dark_Kingdom:_The_Dragon_King", "http://dbpedia.org/resource/Dark_Knight_(TV_series)", "http://dbpedia.org/resource/Dark_Mansions", "http://dbpedia.org/resource/Dark_Matter_(TV_series)", "http://dbpedia.org/resource/Dark_Matters:_Twisted_But_True", "http://dbpedia.org/resource/Dark_Mirror_(1984_film)", "http://dbpedia.org/resource/Dark_Money_(TV_series)", "http://dbpedia.org/resource/Dark_Net_(TV_series)", "http://dbpedia.org/resource/Dark_Night_of_the_Scarecrow", "http://dbpedia.org/resource/Dark_Oracle", "http://dbpedia.org/resource/Dark_Prince:_The_True_Story_of_Dracula", "http://dbpedia.org/resource/Dark_Realm", "http://dbpedia.org/resource/Dark_Relic", "http://dbpedia.org/resource/Dark_Season", "http://dbpedia.org/resource/Dark_Shadows", "http://dbpedia.org/resource/Dark_Shadows_(1991_TV_series)", "http://dbpedia.org/resource/Dark_Shadows_(2004_TV_pilot)", "http://dbpedia.org/resource/Dark_Side_of_the_90's", "http://dbpedia.org/resource/Dark_Side_of_the_Moon_(2002_film)", "http://dbpedia.org/resource/Dark_Side_of_the_Ring", "http://dbpedia.org/resource/Dark_Skies", "http://dbpedia.org/resource/Dark_Sunset", "http://dbpedia.org/resource/Dark_Tales", "http://dbpedia.org/resource/Dark_Tourist_(TV_series)", "http://dbpedia.org/resource/Dark_Towers", "http://dbpedia.org/resource/Dark_Under_the_Sun", "http://dbpedia.org/resource/Dark_Winds", "http://dbpedia.org/resource/Dark_of_Night", "http://dbpedia.org/resource/Darker_than_Black", "http://dbpedia.org/resource/Darknet_(TV_series)", "http://dbpedia.org/resource/Darkover_series", "http://dbpedia.org/resource/Darkroom_(TV_series)", "http://dbpedia.org/resource/Darkside_Blues", "http://dbpedia.org/resource/Darkstalkers", "http://dbpedia.org/resource/Darkstalkers_(TV_series)", "http://dbpedia.org/resource/Darkwing_Duck", "http://dbpedia.org/resource/Darling_Darling_(TV_series)", "http://dbpedia.org/resource/Darlings_of_the_Gods", "http://dbpedia.org/resource/Darna_(2005_TV_series)", "http://dbpedia.org/resource/Darna_(2009_TV_series)", "http://dbpedia.org/resource/Darna_(2022_TV_series)", "http://dbpedia.org/resource/Darndale:_The_Edge_of_Town", "http://dbpedia.org/resource/Darr_Khuda_Say", "http://dbpedia.org/resource/Darr_Sabko_Lagta_Hai", "http://dbpedia.org/resource/Darren_&_Brose_(TV_series)", "http://dbpedia.org/resource/Dartmoor_crosses", "http://dbpedia.org/resource/Das_Blaue_Palais", "http://dbpedia.org/resource/Das_Boot_(TV_series)", "http://dbpedia.org/resource/Das_Christ-Elflein", "http://dbpedia.org/resource/Das_Duo", "http://dbpedia.org/resource/Das_Erbe_der_Guldenburgs", "http://dbpedia.org/resource/Das_Geheimnis_meiner_Familie", "http://dbpedia.org/resource/Das_Haus_Anubis", "http://dbpedia.org/resource/Das_Haus_der_Krokodile", "http://dbpedia.org/resource/Das_Keyboard", "http://dbpedia.org/resource/Das_Kriminalmuseum", "http://dbpedia.org/resource/Das_Liebesverbot", "http://dbpedia.org/resource/Das_Nachtlager_in_Granada", "http://dbpedia.org/resource/Das_Nusch-Nuschi", "http://dbpedia.org/resource/Das_Phantom", "http://dbpedia.org/resource/Das_Rendezvous", "http://dbpedia.org/resource/Das_R\u00e4tsel_der_Sandbank", "http://dbpedia.org/resource/Das_Spielhaus", "http://dbpedia.org/resource/Das_Supertalent", "http://dbpedia.org/resource/Das_Traumschiff", "http://dbpedia.org/resource/Das_Wunder_der_Heliane", "http://dbpedia.org/resource/Das_aktuelle_sportstudio", "http://dbpedia.org/resource/Das_feuerrote_Spielmobil", "http://dbpedia.org/resource/Das_gro\u00dfe_Abenteuer_des_Kaspar_Schmeck", "http://dbpedia.org/resource/Das_kann_ja_heiter_werden", "http://dbpedia.org/resource/Das_unsichtbare_Visier", "http://dbpedia.org/resource/Das_verratene_Meer", "http://dbpedia.org/resource/Dasa_Purandara", "http://dbpedia.org/resource/Dasada_(TV_series)", "http://dbpedia.org/resource/Dash_&_Lily", "http://dbpedia.org/resource/Dash_Dolls", "http://dbpedia.org/resource/Dash_and_Lilly", "http://dbpedia.org/resource/Dasht_(TV_series)", "http://dbpedia.org/resource/Daskon", "http://dbpedia.org/resource/Dastaan-E-Mohabbat_Salim_Anarkali", "http://dbpedia.org/resource/Dastaan_(1995_TV_series)", "http://dbpedia.org/resource/Dastaan_(2010_TV_series)", "http://dbpedia.org/resource/Dastardly_and_Muttley_in_Their_Flying_Machines", "http://dbpedia.org/resource/Dastoor", "http://dbpedia.org/resource/DataGueule", "http://dbpedia.org/resource/Date_A_Live", "http://dbpedia.org/resource/Date_My_Dad", "http://dbpedia.org/resource/Date_My_Ex:_Jo_&_Slade", "http://dbpedia.org/resource/Date_My_Mom", "http://dbpedia.org/resource/Date_Night_(TV_series)", "http://dbpedia.org/resource/Date_with_the_Angels", "http://dbpedia.org/resource/Dateline_(Australian_TV_program)", "http://dbpedia.org/resource/Dateline_(TV_series)", "http://dbpedia.org/resource/Dateline_London", "http://dbpedia.org/resource/Dateline_NBC", "http://dbpedia.org/resource/Dateline_Philippines", "http://dbpedia.org/resource/Dateline_Scotland", "http://dbpedia.org/resource/Dates_(TV_series)", "http://dbpedia.org/resource/Dating_Aaj_Kal", "http://dbpedia.org/resource/Dating_Agency:_Cyrano", "http://dbpedia.org/resource/Dating_Alone", "http://dbpedia.org/resource/Dating_Around", "http://dbpedia.org/resource/Dating_Game_Killer_(film)", "http://dbpedia.org/resource/Dating_Naked", "http://dbpedia.org/resource/Dating_NoFilter", "http://dbpedia.org/resource/Dating_in_the_Dark_(American_TV_series)", "http://dbpedia.org/resource/Dating_in_the_Dark_(British_TV_series)", "http://dbpedia.org/resource/Dating_in_the_Dark_Australia", "http://dbpedia.org/resource/Dating_with_the_Parents", "http://dbpedia.org/resource/Dato'_Siti_Nurhaliza_Unplugged_2015", "http://dbpedia.org/resource/Datong\u2013Jining_Campaign", "http://dbpedia.org/resource/Datsun_510", "http://dbpedia.org/resource/Datsun_Sports", "http://dbpedia.org/resource/Daughter_from_Another_Mother", "http://dbpedia.org/resource/Daughter_of_Darkness_(1990_film)", "http://dbpedia.org/resource/Daughter_of_the_Mind", "http://dbpedia.org/resource/Daughters-in-Law", "http://dbpedia.org/resource/Daughters_(film)", "http://dbpedia.org/resource/Daughters_of_Destiny_(TV_series)", "http://dbpedia.org/resource/Daughters_of_the_Moon", "http://dbpedia.org/resource/Daung_Yin_Pyan_Bon_Nabay_Mhar_Sar_Yay_Loh_Htar_Chin_Dal", "http://dbpedia.org/resource/Davam_Ya_Tamam", "http://dbpedia.org/resource/Dave's_Old_Porn", "http://dbpedia.org/resource/Dave's_One_Night_Stand", "http://dbpedia.org/resource/Dave's_World", "http://dbpedia.org/resource/Dave,_Shelly,_and_Chainsaw", "http://dbpedia.org/resource/Dave_(TV_series)", "http://dbpedia.org/resource/Dave_Brubeck:_In_His_Own_Sweet_Way", "http://dbpedia.org/resource/Dave_Chappelle:_Killin'_Them_Softly", "http://dbpedia.org/resource/Dave_Chappelle:_The_Kennedy_Center_Mark_Twain_Prize_for_American_Humor", "http://dbpedia.org/resource/Dave_Gorman's_Important_Astrology_Experiment", "http://dbpedia.org/resource/Dave_Gorman:_Modern_Life_Is_Goodish", "http://dbpedia.org/resource/Dave_Matthews_Band_Caravan", "http://dbpedia.org/resource/Dave_in_the_Life", "http://dbpedia.org/resource/Dave_the_Barbarian", "http://dbpedia.org/resource/Davey_and_Goliath", "http://dbpedia.org/resource/David's_Mother", "http://dbpedia.org/resource/David_(1988_film)", "http://dbpedia.org/resource/David_(TV_series)", "http://dbpedia.org/resource/David_Attenborough's_Conquest_of_the_Skies_3D", "http://dbpedia.org/resource/David_Attenborough's_Life_Stories", "http://dbpedia.org/resource/David_Attenborough's_Natural_Curiosities", "http://dbpedia.org/resource/David_Attenborough's_Natural_History_Museum_Alive", "http://dbpedia.org/resource/David_Attenborough's_Rise_of_Animals:_Triumph_of_the_Vertebrates", "http://dbpedia.org/resource/David_Attenborough:_A_Life_on_Our_Planet", "http://dbpedia.org/resource/David_Beckham's_Soccer_USA", "http://dbpedia.org/resource/David_Broome", "http://dbpedia.org/resource/David_Cassidy:_Man_Undercover", "http://dbpedia.org/resource/David_Copperfield_(1956_TV_serial)", "http://dbpedia.org/resource/David_Copperfield_(1966_TV_serial)", "http://dbpedia.org/resource/David_Copperfield_(1986_TV_serial)", "http://dbpedia.org/resource/David_Copperfield_(1993_film)", "http://dbpedia.org/resource/David_Copperfield_(1999_film)", "http://dbpedia.org/resource/David_Copperfield_(2000_film)", "http://dbpedia.org/resource/David_Easter", "http://dbpedia.org/resource/David_Makes_Man", "http://dbpedia.org/resource/David_Tench_Tonight", "http://dbpedia.org/resource/David_Tutera's_Celebrations", "http://dbpedia.org/resource/Davina_(talk_show)", "http://dbpedia.org/resource/Davis_Rules", "http://dbpedia.org/resource/Davis_at_Large", "http://dbpedia.org/resource/Davy_Crockett_(miniseries)", "http://dbpedia.org/resource/Dawn:_Portrait_of_a_Teenage_Runaway", "http://dbpedia.org/resource/Dawn_Anna", "http://dbpedia.org/resource/Dawn_of_Humanity", "http://dbpedia.org/resource/Dawn_of_the_Croods", "http://dbpedia.org/resource/Dawson's_Creek", "http://dbpedia.org/resource/Dawson's_Weekly", "http://dbpedia.org/resource/Day-O_(film)", "http://dbpedia.org/resource/Day_&_Date", "http://dbpedia.org/resource/Day_5", "http://dbpedia.org/resource/Day_Break", "http://dbpedia.org/resource/Day_Break_Illusion", "http://dbpedia.org/resource/Day_Day_Up", "http://dbpedia.org/resource/Day_Off_(TV_program)", "http://dbpedia.org/resource/Day_One_(1989_film)", "http://dbpedia.org/resource/Day_One_(TV_series)", "http://dbpedia.org/resource/Day_One_(Torchwood)", "http://dbpedia.org/resource/Day_Planner", "http://dbpedia.org/resource/Day_To_Remember", "http://dbpedia.org/resource/Day_Zero:_The_Series", "http://dbpedia.org/resource/Day_and_Night_(TV_series)", "http://dbpedia.org/resource/Day_and_night_camera", "http://dbpedia.org/resource/Day_by_Day_(American_TV_series)", "http://dbpedia.org/resource/Day_in_Court", "http://dbpedia.org/resource/Day_in_Court_(TV_series)", "http://dbpedia.org/resource/Day_of_Decision", "http://dbpedia.org/resource/Day_of_Reckoning_(2016_film)", "http://dbpedia.org/resource/Day_of_the_Dead_(TV_series)", "http://dbpedia.org/resource/Day_of_the_Moon", "http://dbpedia.org/resource/Daya:_Chentheeyil_Chalicha_Kumkumapottu", "http://dbpedia.org/resource/Daybreak_(1993_film)", "http://dbpedia.org/resource/Daybreak_(2010_TV_programme)", "http://dbpedia.org/resource/Daybreak_(2019_TV_series)", "http://dbpedia.org/resource/Daybreak_(Philippine_TV_program)", "http://dbpedia.org/resource/Daybreak_Northern_Ireland", "http://dbpedia.org/resource/Daybreak_Scotland", "http://dbpedia.org/resource/Daydi_qizning_daftari", "http://dbpedia.org/resource/Daylight_Robbery_(TV_series)", "http://dbpedia.org/resource/Days_Like_These_(TV_series)", "http://dbpedia.org/resource/Days_That_Shook_the_World", "http://dbpedia.org/resource/Days_of_Hope", "http://dbpedia.org/resource/Days_of_Our_Lives", "http://dbpedia.org/resource/Days_of_Our_Lives:_Beyond_Salem", "http://dbpedia.org/resource/Daytime_Divas", "http://dbpedia.org/resource/Daytime_Emmy_Award", "http://dbpedia.org/resource/Daytona_Aircraft_D-200", "http://dbpedia.org/resource/DayxDay", "http://dbpedia.org/resource/Dazu_Rock_Carvings", "http://dbpedia.org/resource/DeMarcus_Family_Rules", "http://dbpedia.org/resource/DeSoto_Caverns", "http://dbpedia.org/resource/DeVanity", "http://dbpedia.org/resource/De_Biker_Boys", "http://dbpedia.org/resource/De_Club_van_Sinterklaas", "http://dbpedia.org/resource/De_Cock_Late_Night", "http://dbpedia.org/resource/De_Collega's", "http://dbpedia.org/resource/De_Corpo_e_Alma_(TV_series)", "http://dbpedia.org/resource/De_F\u00e9rias_com_o_Ex", "http://dbpedia.org/resource/De_F\u00e9rias_com_o_Ex:_Caribe", "http://dbpedia.org/resource/De_Ijazat", "http://dbpedia.org/resource/De_Ijazat_Jo_Tu", "http://dbpedia.org/resource/De_Jongens_tegen_de_Meisjes", "http://dbpedia.org/resource/De_Kist", "http://dbpedia.org/resource/De_Lama's", "http://dbpedia.org/resource/De_Luizenmoeder", "http://dbpedia.org/resource/De_Mol_(TV_series)", "http://dbpedia.org/resource/De_Pfaffs", "http://dbpedia.org/resource/De_Primera_Mano", "http://dbpedia.org/resource/De_Stille_Kracht_(TV_series)", "http://dbpedia.org/resource/De_Stratemakeropzeeshow", "http://dbpedia.org/resource/De_Verraders", "http://dbpedia.org/resource/De_Wereld_Draait_Door", "http://dbpedia.org/resource/De_Wereld_van_K3", "http://dbpedia.org/resource/De_bedenkers", "http://dbpedia.org/resource/De_brutas,_nada", "http://dbpedia.org/resource/De_drabbade", "http://dbpedia.org/resource/De_frente_al_sol", "http://dbpedia.org/resource/De_mujeres", "http://dbpedia.org/resource/De_oro_puro", "http://dbpedia.org/resource/De_pocas,_pocas_pulgas", "http://dbpedia.org/resource/De_pura_sangre", "http://dbpedia.org/resource/De_que_te_quiero,_te_quiero", "http://dbpedia.org/resource/De_todas_maneras_Rosa", "http://dbpedia.org/resource/De_t\u00fa_a_t\u00fa", "http://dbpedia.org/resource/De_viaje_con_los_Derbez", "http://dbpedia.org/resource/De_vuelta_al_barrio", "http://dbpedia.org/resource/Deacons_for_Defense_(film)", "http://dbpedia.org/resource/Dead_7", "http://dbpedia.org/resource/Dead_Ahead:_The_Exxon_Valdez_Disaster", "http://dbpedia.org/resource/Dead_Before_Dawn_(1993_film)", "http://dbpedia.org/resource/Dead_Boss", "http://dbpedia.org/resource/Dead_End:_Paranormal_Park", "http://dbpedia.org/resource/Dead_Famous_(TV_series)", "http://dbpedia.org/resource/Dead_Gorgeous", "http://dbpedia.org/resource/Dead_Grandma", "http://dbpedia.org/resource/Dead_Head_(TV_series)", "http://dbpedia.org/resource/Dead_Husbands", "http://dbpedia.org/resource/Dead_Island_(series)", "http://dbpedia.org/resource/Dead_Kansas", "http://dbpedia.org/resource/Dead_Lake_(TV_series)", "http://dbpedia.org/resource/Dead_Last", "http://dbpedia.org/resource/Dead_Like_Me", "http://dbpedia.org/resource/Dead_Lucky_(TV_series)", "http://dbpedia.org/resource/Dead_Man's_Folly_(film)", "http://dbpedia.org/resource/Dead_Man's_Gun", "http://dbpedia.org/resource/Dead_Man's_Island", "http://dbpedia.org/resource/Dead_Man's_Walk_(miniseries)", "http://dbpedia.org/resource/Dead_Man_Out", "http://dbpedia.org/resource/Dead_Man_Walking_(Torchwood)", "http://dbpedia.org/resource/Dead_Man_Walking_(opera)", "http://dbpedia.org/resource/Dead_Men_Running", "http://dbpedia.org/resource/Dead_Pixels", "http://dbpedia.org/resource/Dead_Reckoning_(1990_film)", "http://dbpedia.org/resource/Dead_Ringers_(series)", "http://dbpedia.org/resource/Dead_Rising", "http://dbpedia.org/resource/Dead_Set", "http://dbpedia.org/resource/Dead_Silence_(1997_film)", "http://dbpedia.org/resource/Dead_Solid_Perfect", "http://dbpedia.org/resource/Dead_Space_(series)", "http://dbpedia.org/resource/Dead_Still", "http://dbpedia.org/resource/Dead_Wrong_(TV_series)", "http://dbpedia.org/resource/Dead_and_Deader", "http://dbpedia.org/resource/Dead_at_21", "http://dbpedia.org/resource/Dead_in_a_Heartbeat", "http://dbpedia.org/resource/Dead_in_the_Water_(1991_film)", "http://dbpedia.org/resource/Dead_of_Night_(1977_film)", "http://dbpedia.org/resource/Dead_of_Night_(TV_series)", "http://dbpedia.org/resource/Dead_of_Night_(Torchwood)", "http://dbpedia.org/resource/Dead_of_Summer_(TV_series)", "http://dbpedia.org/resource/Dead_on_Target_(film)", "http://dbpedia.org/resource/Dead_to_Me_(TV_series)", "http://dbpedia.org/resource/Dead_to_Rights_(series)", "http://dbpedia.org/resource/Deadbeat_(TV_series)", "http://dbpedia.org/resource/Deadbolt_(film)", "http://dbpedia.org/resource/Deadliest_Catch", "http://dbpedia.org/resource/Deadliest_Catch:_Bloodline", "http://dbpedia.org/resource/Deadliest_Warrior", "http://dbpedia.org/resource/Deadline:_White_House", "http://dbpedia.org/resource/Deadline_(1995_TV_series)", "http://dbpedia.org/resource/Deadline_(2000_TV_series)", "http://dbpedia.org/resource/Deadline_(2007_TV_series)", "http://dbpedia.org/resource/Deadline_(2022_TV_series)", "http://dbpedia.org/resource/Deadline_Design_with_Shaynna_Blaze", "http://dbpedia.org/resource/Deadline_Gallipoli", "http://dbpedia.org/resource/Deadline_Midnight_(TV_series)", "http://dbpedia.org/resource/Deadline_to_Disaster", "http://dbpedia.org/resource/Deadly_Affairs", "http://dbpedia.org/resource/Deadly_Care", "http://dbpedia.org/resource/Deadly_Class_(TV_series)", "http://dbpedia.org/resource/Deadly_Desire", "http://dbpedia.org/resource/Deadly_Down_Under", "http://dbpedia.org/resource/Deadly_Force_(TV_series)", "http://dbpedia.org/resource/Deadly_Games_(TV_series)", "http://dbpedia.org/resource/Deadly_Intentions", "http://dbpedia.org/resource/Deadly_Intentions..._Again%3F", "http://dbpedia.org/resource/Deadly_Invasion:_The_Killer_Bee_Nightmare", "http://dbpedia.org/resource/Deadly_Lessons", "http://dbpedia.org/resource/Deadly_Love", "http://dbpedia.org/resource/Deadly_Messages", "http://dbpedia.org/resource/Deadly_Possessions", "http://dbpedia.org/resource/Deadly_Relations", "http://dbpedia.org/resource/Deadly_Secret", "http://dbpedia.org/resource/Deadly_Sins_(TV_series)", "http://dbpedia.org/resource/Deadly_Visions", "http://dbpedia.org/resource/Deadly_Voyage", "http://dbpedia.org/resource/Deadly_Whispers", "http://dbpedia.org/resource/Deadly_Women", "http://dbpedia.org/resource/Deadman's_Curve", "http://dbpedia.org/resource/Deadman_Wonderland", "http://dbpedia.org/resource/Deadpool_(TV_series)", "http://dbpedia.org/resource/Deadtime_Stories_(TV_series)", "http://dbpedia.org/resource/Deadwater_Fell", "http://dbpedia.org/resource/Deadwax", "http://dbpedia.org/resource/Deadwind", "http://dbpedia.org/resource/Deadwood:_The_Movie", "http://dbpedia.org/resource/Deadwood_(TV_series)", "http://dbpedia.org/resource/Deaf_U", "http://dbpedia.org/resource/Deafplanet", "http://dbpedia.org/resource/Deal_(Greek_game_show)", "http://dbpedia.org/resource/Deal_Or_No_Deal_Indonesia", "http://dbpedia.org/resource/Deal_Ya_No_Deal", "http://dbpedia.org/resource/Deal_or_No_Deal_(American_game_show)", "http://dbpedia.org/resource/Deal_or_No_Deal_(Arab_world)", "http://dbpedia.org/resource/Deal_or_No_Deal_(Australian_game_show)", "http://dbpedia.org/resource/Deal_or_No_Deal_(British_game_show)", "http://dbpedia.org/resource/Deal_or_No_Deal_(Iranian_game_show)", "http://dbpedia.org/resource/Deal_or_No_Deal_(Irish_game_show)", "http://dbpedia.org/resource/Deal_or_No_Deal_(Maltese_game_show)", "http://dbpedia.org/resource/Deal_or_No_Deal_(New_Zealand_game_show)", "http://dbpedia.org/resource/Deal_or_No_Deal_(Singaporean_game_show)", "http://dbpedia.org/resource/Deal_or_No_Deal_(Tunisian_game_show)", "http://dbpedia.org/resource/Deal_or_No_Deal_(U.S._game_show)", "http://dbpedia.org/resource/Deal_or_No_Deal_Canada", "http://dbpedia.org/resource/Deal_or_No_Deal_Malaysia_(English-language_game_show)", "http://dbpedia.org/resource/Deal_or_No_Deal_Malaysia_(Mandarin-language_game_show)", "http://dbpedia.org/resource/Deal_or_No_Deal_Nigeria", "http://dbpedia.org/resource/Deal_with_It_(TV_series)", "http://dbpedia.org/resource/Dealer's_Choice_(game_show)", "http://dbpedia.org/resource/Dealer_(TV_series)", "http://dbpedia.org/resource/Dealers_(TV_series)", "http://dbpedia.org/resource/Deals_on_Wheels", "http://dbpedia.org/resource/Dean_Edge", "http://dbpedia.org/resource/Dear,_Dear_Son-In-Law", "http://dbpedia.org/resource/Dear..._(TV_series)", "http://dbpedia.org/resource/Dear._M", "http://dbpedia.org/resource/Dear_Archimedes", "http://dbpedia.org/resource/Dear_Aunt_Agnes", "http://dbpedia.org/resource/Dear_Class_of_2020", "http://dbpedia.org/resource/Dear_Diary_(FM_Static_album)", "http://dbpedia.org/resource/Dear_Dumb_Diary_(film)", "http://dbpedia.org/resource/Dear_Edward_(TV_series)", "http://dbpedia.org/resource/Dear_Friend:_Bakasyonistas", "http://dbpedia.org/resource/Dear_Friend:_Karibal", "http://dbpedia.org/resource/Dear_Friend:_Kay_Tagal_Kitang_Hinintay", "http://dbpedia.org/resource/Dear_Friend:_Madrasta", "http://dbpedia.org/resource/Dear_Friend_(TV_series)", "http://dbpedia.org/resource/Dear_Genevieve", "http://dbpedia.org/resource/Dear_Green_Place", "http://dbpedia.org/resource/Dear_Heaven", "http://dbpedia.org/resource/Dear_John_(American_TV_series)", "http://dbpedia.org/resource/Dear_John_(British_TV_series)", "http://dbpedia.org/resource/Dear_Ladies", "http://dbpedia.org/resource/Dear_Mayang_Street", "http://dbpedia.org/resource/Dear_Mom,_Love_Cher", "http://dbpedia.org/resource/Dear_Mom_(TV_series)", "http://dbpedia.org/resource/Dear_Mother...Love_Albert", "http://dbpedia.org/resource/Dear_Mr._Gacy", "http://dbpedia.org/resource/Dear_My_Friends", "http://dbpedia.org/resource/Dear_My_Friends_(Chinese_TV_series)", "http://dbpedia.org/resource/Dear_My_Sister", "http://dbpedia.org/resource/Dear_Phoebe", "http://dbpedia.org/resource/Dear_Prudence_(2008_film)", "http://dbpedia.org/resource/Dear_Santa_(2011_film)", "http://dbpedia.org/resource/Dear_Sister", "http://dbpedia.org/resource/Dear_Uge", "http://dbpedia.org/resource/Dear_White_People_(TV_series)", "http://dbpedia.org/resource/Dear_X_Who_Doesn't_Love_Me", "http://dbpedia.org/resource/Dearest_Enemy_(TV_series)", "http://dbpedia.org/resource/Death's_Head_(series)", "http://dbpedia.org/resource/Death_By_Gossip_with_Wendy_Williams", "http://dbpedia.org/resource/Death_Car_on_the_Freeway", "http://dbpedia.org/resource/Death_Comes_to_Pemberley_(TV_series)", "http://dbpedia.org/resource/Death_Cruise", "http://dbpedia.org/resource/Death_Game_(1996_film)", "http://dbpedia.org/resource/Death_Has_a_Bad_Reputation", "http://dbpedia.org/resource/Death_Is_the_Only_Answer", "http://dbpedia.org/resource/Death_Note", "http://dbpedia.org/resource/Death_Note:_New_Generation", "http://dbpedia.org/resource/Death_Note_(2015_TV_series)", "http://dbpedia.org/resource/Death_Parade", "http://dbpedia.org/resource/Death_Race_(1973_film)", "http://dbpedia.org/resource/Death_Saved_My_Life", "http://dbpedia.org/resource/Death_Scream", "http://dbpedia.org/resource/Death_Sentence_(1974_film)", "http://dbpedia.org/resource/Death_Takes_a_Holiday_(1971_film)", "http://dbpedia.org/resource/Death_Train", "http://dbpedia.org/resource/Death_Unexplained", "http://dbpedia.org/resource/Death_Valley_(TV_series)", "http://dbpedia.org/resource/Death_Valley_Days", "http://dbpedia.org/resource/Death_Wish_(film_series)", "http://dbpedia.org/resource/Death_and_Nightingales_(TV_series)", "http://dbpedia.org/resource/Death_at_Love_House", "http://dbpedia.org/resource/Death_by_Magic", "http://dbpedia.org/resource/Death_in_Paradise_(TV_series)", "http://dbpedia.org/resource/Death_in_Small_Doses_(1995_film)", "http://dbpedia.org/resource/Death_in_Venice_(opera)", "http://dbpedia.org/resource/Death_of_Apartheid", "http://dbpedia.org/resource/Death_of_a_Centerfold", "http://dbpedia.org/resource/Death_of_a_Princess", "http://dbpedia.org/resource/Death_of_a_Prophet", "http://dbpedia.org/resource/Death_of_a_Salesman_(1966_American_film)", "http://dbpedia.org/resource/Death_of_a_Salesman_(1985_film)", "http://dbpedia.org/resource/Death_of_the_Doctor", "http://dbpedia.org/resource/Death_on_a_Factory_Farm", "http://dbpedia.org/resource/Death_or_Canada", "http://dbpedia.org/resource/Deathlands", "http://dbpedia.org/resource/Deathlands:_Homeward_Bound", "http://dbpedia.org/resource/Deathmoon", "http://dbpedia.org/resource/Deathstroke:_Knights_&_Dragons", "http://dbpedia.org/resource/Debatable_(game_show)", "http://dbpedia.org/resource/Debate_Night", "http://dbpedia.org/resource/Debate_Wars", "http://dbpedia.org/resource/Debate_on_traditional_and_simplified_Chinese_characters", "http://dbpedia.org/resource/Debate_with_Mare_at_Pare", "http://dbpedia.org/resource/Debi_Choudhurani", "http://dbpedia.org/resource/Debiera_haber_obispas", "http://dbpedia.org/resource/Debipaksha_(TV_series)", "http://dbpedia.org/resource/Deborah_(TV_series)", "http://dbpedia.org/resource/Deborah_Polaski", "http://dbpedia.org/resource/Debra!", "http://dbpedia.org/resource/Debris_(TV_series)", "http://dbpedia.org/resource/Debt_(game_show)", "http://dbpedia.org/resource/Decadence_(TV_series)", "http://dbpedia.org/resource/Decad\u00eancia", "http://dbpedia.org/resource/Deceit_(2000_miniseries)", "http://dbpedia.org/resource/Deceit_(2021_miniseries)", "http://dbpedia.org/resource/Deceived_by_Trust", "http://dbpedia.org/resource/December_2009_Lahore_attacks", "http://dbpedia.org/resource/December_Bride", "http://dbpedia.org/resource/December_Flower", "http://dbpedia.org/resource/December_Massacres_of_1950_in_the_Korean_War", "http://dbpedia.org/resource/Deception_(2004_film)", "http://dbpedia.org/resource/Deception_(2013_American_TV_series)", "http://dbpedia.org/resource/Deception_(2018_TV_series)", "http://dbpedia.org/resource/Deception_(Irish_TV_series)", "http://dbpedia.org/resource/Deception_(U.S._TV_series)", "http://dbpedia.org/resource/Deception_(Ugandan_TV_series)", "http://dbpedia.org/resource/Deceptions", "http://dbpedia.org/resource/Dechrau_Canu,_Dechrau_Canmol", "http://dbpedia.org/resource/Decimate_(game_show)", "http://dbpedia.org/resource/Decisiones", "http://dbpedia.org/resource/Decisiones_extremas", "http://dbpedia.org/resource/Decisions!_Decisions!", "http://dbpedia.org/resource/Deck_the_Halls_with_Wacky_Walls", "http://dbpedia.org/resource/Decker_(TV_series)", "http://dbpedia.org/resource/Declassified_(2004_TV_series)", "http://dbpedia.org/resource/Declassified_(2016_TV_series)", "http://dbpedia.org/resource/Decline_and_Fall_(TV_series)", "http://dbpedia.org/resource/Decoded_(Chinese_TV_series)", "http://dbpedia.org/resource/Decoding_COVID-19", "http://dbpedia.org/resource/Decoding_the_Past", "http://dbpedia.org/resource/Decoration_Day_(film)", "http://dbpedia.org/resource/Decoupled", "http://dbpedia.org/resource/Decoy_(TV_series)", "http://dbpedia.org/resource/Decreed_by_Fate", "http://dbpedia.org/resource/Deedan", "http://dbpedia.org/resource/Deemak", "http://dbpedia.org/resource/Deep_Dungeon", "http://dbpedia.org/resource/Deep_Family_Secrets", "http://dbpedia.org/resource/Deep_Garden", "http://dbpedia.org/resource/Deep_Jungle", "http://dbpedia.org/resource/Anupam_(supercomputer)", "http://dbpedia.org/resource/Any_Questions_(Australian_TV_series)", "http://dbpedia.org/resource/Anyone_for_Denis%3F_(video)", "http://dbpedia.org/resource/Anyuta", "http://dbpedia.org/resource/Anza_(missile)", "http://dbpedia.org/resource/Ao_no_F\u016bin", "http://dbpedia.org/resource/Aoi_House", "http://dbpedia.org/resource/Aoki_\u014ckami_to_Shiroki_Mejika", "http://dbpedia.org/resource/Aortic_arches", "http://dbpedia.org/resource/Aphrodite_IX", "http://dbpedia.org/resource/Api_Nodanna_Live", "http://dbpedia.org/resource/Apni_Khushian_Apne_Gham", "http://dbpedia.org/resource/Apno_Nepal_Apno_Gaurab", "http://dbpedia.org/resource/Apocalypse_(D\u00fcrer)", "http://dbpedia.org/resource/Apparel_Lesotho_Alliance_to_fight_AIDS", "http://dbpedia.org/resource/Appeal_for_Courage", "http://dbpedia.org/resource/Appenzell_Wars", "http://dbpedia.org/resource/Appetite_for_Democracy_(Tour)", "http://dbpedia.org/resource/Apple_Music_Festival", "http://dbpedia.org/resource/Apple_OneScanner", "http://dbpedia.org/resource/Appointment_with_Drama", "http://dbpedia.org/resource/Appointment_with_Fear_(radio)", "http://dbpedia.org/resource/Approach_and_Landing_Tests", "http://dbpedia.org/resource/Appusami", "http://dbpedia.org/resource/April_2010_Baghdad_bombings", "http://dbpedia.org/resource/April_Theses", "http://dbpedia.org/resource/Aquamid", "http://dbpedia.org/resource/Aquarius_(British_TV_series)", "http://dbpedia.org/resource/Arabic_Numeral_Series", "http://dbpedia.org/resource/Arag\u00f3n_Sat", "http://dbpedia.org/resource/Arak_gorges", "http://dbpedia.org/resource/Arash_(rocket)", "http://dbpedia.org/resource/Arbeidsvitaminen", "http://dbpedia.org/resource/Arch_Oboler's_Plays", "http://dbpedia.org/resource/Archaic_(comics)", "http://dbpedia.org/resource/Archie_(TV_series)", "http://dbpedia.org/resource/Archie_(comic_book)", "http://dbpedia.org/resource/Archie_Americana_Series", "http://dbpedia.org/resource/Archiv_des_Todes", "http://dbpedia.org/resource/Archos_Generation_4", "http://dbpedia.org/resource/Archos_Generation_5", "http://dbpedia.org/resource/Archos_Gmini_series", "http://dbpedia.org/resource/Archos_Jukebox_series", "http://dbpedia.org/resource/Archpriest_Controversy", "http://dbpedia.org/resource/Arclight_(novel)", "http://dbpedia.org/resource/Arco_Birthday_Party", "http://dbpedia.org/resource/Arctic_Boosh", "http://dbpedia.org/resource/Arctic_Equestrian_Games", "http://dbpedia.org/resource/Arctic_Thunder_Air_Show", "http://dbpedia.org/resource/Ardath_Hit_Parade", "http://dbpedia.org/resource/Arden_Shakespeare", "http://dbpedia.org/resource/Ardjachie_Stone", "http://dbpedia.org/resource/Are_You_My_Brother%3F", "http://dbpedia.org/resource/Area_51_(series)", "http://dbpedia.org/resource/Arenal_Hanging_Bridges", "http://dbpedia.org/resource/Argentina_Bicentennial", "http://dbpedia.org/resource/Argentine_military_trials_of_2009", "http://dbpedia.org/resource/Argument", "http://dbpedia.org/resource/Argumentation_and_Debate", "http://dbpedia.org/resource/Argus_C3", "http://dbpedia.org/resource/Ariane_(Mouret)", "http://dbpedia.org/resource/Ariane_(rocket_family)", "http://dbpedia.org/resource/Arianna_(Marcello)", "http://dbpedia.org/resource/Ariel_Award_for_Best_Actress", "http://dbpedia.org/resource/Arif'in_Hilesi", "http://dbpedia.org/resource/Arion_(Matho)", "http://dbpedia.org/resource/Aristotle_and_the_Gun", "http://dbpedia.org/resource/AM5-M2", "http://dbpedia.org/resource/APF_TV_Fun", "http://dbpedia.org/resource/ARCA_98.9", "http://dbpedia.org/resource/ARCA_Racing_Series", "http://dbpedia.org/resource/ASUS_Transformer", "http://dbpedia.org/resource/ATP_Masters_Series", "http://dbpedia.org/resource/ATP_World_Tour_250_series", "http://dbpedia.org/resource/ATP_World_Tour_Masters_1000", "http://dbpedia.org/resource/A_Casa_das_Sete_Mulheres_(TV_series)", "http://dbpedia.org/resource/A_Christmas_Calendar_(TV_special)", "http://dbpedia.org/resource/A_Coraz\u00f3n_Abierto_(Colombian_telenovela)", "http://dbpedia.org/resource/A_Coraz\u00f3n_Abierto_(Mexican_telenovela)", "http://dbpedia.org/resource/A_Current_Affair", "http://dbpedia.org/resource/A_Current_Affair_(U.S._TV_series)", "http://dbpedia.org/resource/A_Descant_for_Gossips", "http://dbpedia.org/resource/A_Escrava_Isaura_(2004_telenovela)", "http://dbpedia.org/resource/A_Good_Day_for_the_Wind_to_Blow", "http://dbpedia.org/resource/A_History_of_Scotland_(TV_series)", "http://dbpedia.org/resource/A_J_Wentworth,_BA", "http://dbpedia.org/resource/A_League_of_Their_Own_(TV_series)", "http://dbpedia.org/resource/A_League_of_Their_Own_(UK_game_show)", "http://dbpedia.org/resource/A_Muralha_(1968_telenovela)", "http://dbpedia.org/resource/A_New_Life_(1991_TV_series)", "http://dbpedia.org/resource/A_New_Life_(TV_series)", "http://dbpedia.org/resource/A_Place_in_the_Sun_(TV_series)", "http://dbpedia.org/resource/A_Sucessora_(telenovela)", "http://dbpedia.org/resource/A_Way_Out", "http://dbpedia.org/resource/A_calz\u00f3n_quitao", "http://dbpedia.org/resource/A_coraz\u00f3n_abierto_(telenovela)", "http://dbpedia.org/resource/A_flor_de_piel", "http://dbpedia.org/resource/Aadesh_Class_Fast_Patrol_Vessel", "http://dbpedia.org/resource/Boothby_Graffoe_In_No_Particular_Order", "http://dbpedia.org/resource/Border_Rico", "http://dbpedia.org/resource/Bordes_scene", "http://dbpedia.org/resource/Borestone_Mountain_Poetry_Awards", "http://dbpedia.org/resource/Boretronix", "http://dbpedia.org/resource/Born_(comics)", "http://dbpedia.org/resource/Born_Stylish", "http://dbpedia.org/resource/Born_Talking:_A_Personal_Inquiry_into_Language", "http://dbpedia.org/resource/Born_the_Hard_Way", "http://dbpedia.org/resource/Born_to_Spy", "http://dbpedia.org/resource/Bosnia_and_Herzegovina_football_league_system", "http://dbpedia.org/resource/Boss_DR-220", "http://dbpedia.org/resource/Boston_Ideal_Opera_Company", "http://dbpedia.org/resource/Boston_Women's_Heritage_Trail", "http://dbpedia.org/resource/Boswellic_acid", "http://dbpedia.org/resource/Botanica_(series)", "http://dbpedia.org/resource/Bottle_Fairy", "http://dbpedia.org/resource/Bound_for_Glory_(TV_series)", "http://dbpedia.org/resource/Boundless_(Canadian_TV_series)", "http://dbpedia.org/resource/Bouquet_of_Barbed_Wire", "http://dbpedia.org/resource/Bourassa_(automobile)", "http://dbpedia.org/resource/Bourbon_Kid", "http://dbpedia.org/resource/Bourne_(novel_series)", "http://dbpedia.org/resource/Bowl_Challenge_Cup", "http://dbpedia.org/resource/Bowling_Green_Studies_in_Applied_Philosophy", "http://dbpedia.org/resource/Bowling_King", "http://dbpedia.org/resource/Bowraville_murders", "http://dbpedia.org/resource/Boy_Soldier_Series", "http://dbpedia.org/resource/Boy_at_War", "http://dbpedia.org/resource/Boyarina_Morozova_(opera)", "http://dbpedia.org/resource/Boyfriend_(manga)", "http://dbpedia.org/resource/Boys'_Ranch", "http://dbpedia.org/resource/Brace_for_Impact", "http://dbpedia.org/resource/Asgaard_(Mexican_TV_series)", "http://dbpedia.org/resource/Ash,_Kip_and_Luttsy", "http://dbpedia.org/resource/Ashes_to_Ashes_(TV_series)", "http://dbpedia.org/resource/Asian_Australian", "http://dbpedia.org/resource/Asian_Sevens_Series", "http://dbpedia.org/resource/Asmara_(soap_opera)", "http://dbpedia.org/resource/Assault_Suits_series", "http://dbpedia.org/resource/Assyrians_in_the_United_Kingdom", "http://dbpedia.org/resource/Asturian_people", "http://dbpedia.org/resource/Asylum_(BBC_TV_series)", "http://dbpedia.org/resource/Asylum_(Maximum)", "http://dbpedia.org/resource/At_Home_With_Love", "http://dbpedia.org/resource/At_the_Movies_(1982\u201390_TV_series)", "http://dbpedia.org/resource/At_the_Movies_(Australian_TV_series)", "http://dbpedia.org/resource/At_the_Movies_(U.S._TV_series)", "http://dbpedia.org/resource/Atat\u00fcrk's_Reforms", "http://dbpedia.org/resource/Atelier_(series)", "http://dbpedia.org/resource/Carolina_Maneuvers", "http://dbpedia.org/resource/Caroline_Overdrive", "http://dbpedia.org/resource/Carolyn_Gardner", "http://dbpedia.org/resource/Carousel_(comics)", "http://dbpedia.org/resource/Carpinteria_Tar_Pits", "http://dbpedia.org/resource/Carry_On_Christmas_Specials", "http://dbpedia.org/resource/Carryy_on_Shekhar", "http://dbpedia.org/resource/Cars_(painting)", "http://dbpedia.org/resource/Cartas_Chilenas", "http://dbpedia.org/resource/Carter_bonds", "http://dbpedia.org/resource/Cartoon_KAT-TUN", "http://dbpedia.org/resource/Cartoonists_Remember_9/11", "http://dbpedia.org/resource/Carus_Lectures", "http://dbpedia.org/resource/Carus_Mathematical_Monographs", "http://dbpedia.org/resource/Casa_Club_Magazine", "http://dbpedia.org/resource/Casa_de_Vecindad_(TV_series)", "http://dbpedia.org/resource/Casa_de_las_Am\u00e9ricas_Prize", "http://dbpedia.org/resource/Casanova's_Homecoming", "http://dbpedia.org/resource/Casanova_sin_Amor", "http://dbpedia.org/resource/Casca_(series)", "http://dbpedia.org/resource/Cascade_effect_(ecology)", "http://dbpedia.org/resource/Cascina_Vianello", "http://dbpedia.org/resource/Case_Closed_discography", "http://dbpedia.org/resource/Cashcows", "http://dbpedia.org/resource/Casio_9850_series", "http://dbpedia.org/resource/Casio_9860_series", "http://dbpedia.org/resource/Casio_Databank", "http://dbpedia.org/resource/Casio_G'zOne", "http://dbpedia.org/resource/Casos_e_Acasos", "http://dbpedia.org/resource/Casper_and_the_Spectrals", "http://dbpedia.org/resource/Cassandre_(opera)", "http://dbpedia.org/resource/Cassell's_National_Library", "http://dbpedia.org/resource/Caster_Chronicles", "http://dbpedia.org/resource/Castizo", "http://dbpedia.org/resource/Castle_&_Castle", "http://dbpedia.org/resource/Castle_Perilous_(series)", "http://dbpedia.org/resource/Castle_series_stamps", "http://dbpedia.org/resource/Cat's_cradle", "http://dbpedia.org/resource/Cat_Royal", "http://dbpedia.org/resource/Cat_Street_(manga)", "http://dbpedia.org/resource/Cat_the_Cat", "http://dbpedia.org/resource/Catacombs_of_London", "http://dbpedia.org/resource/Catalogues_of_Fundamental_Stars", "http://dbpedia.org/resource/Catalyst_Conference", "http://dbpedia.org/resource/Community_Dateline", "http://dbpedia.org/resource/Community_Development_Council", "http://dbpedia.org/resource/Community_Innovation_Survey", "http://dbpedia.org/resource/Communitybuilders", "http://dbpedia.org/resource/Companions_Quartet", "http://dbpedia.org/resource/Comparison_of_American_and_British_English", "http://dbpedia.org/resource/Compilation_of_Final_Fantasy_VII", "http://dbpedia.org/resource/Complete_Collection_of_Russian_Chronicles", "http://dbpedia.org/resource/Compliance_requirements", "http://dbpedia.org/resource/Composer's_Voice_Concert_Series", "http://dbpedia.org/resource/Compound_refractive_lens", "http://dbpedia.org/resource/Computer-assisted_proof", "http://dbpedia.org/resource/Computer_Stew", "http://dbpedia.org/resource/Computer_Warrior", "http://dbpedia.org/resource/Computer_Warriors", "http://dbpedia.org/resource/Comrades_(TV_series)", "http://dbpedia.org/resource/Con_alma_de_tango", "http://dbpedia.org/resource/Conan_(books)", "http://dbpedia.org/resource/Conan_the_Adventurer_(comics)", "http://dbpedia.org/resource/Conan_the_Barbarian", "http://dbpedia.org/resource/Conceptions_of_Library_and_Information_Science", "http://dbpedia.org/resource/Concert_Spirituel", "http://dbpedia.org/resource/Concerts_of_Antient_Music", "http://dbpedia.org/resource/Concierto_de_almas_(TV_series)", "http://dbpedia.org/resource/Conclave_of_Shadows", "http://dbpedia.org/resource/Concord_School_of_Philosophy", "http://dbpedia.org/resource/Concrete_(comics)", "http://dbpedia.org/resource/Concrete_Series", "http://dbpedia.org/resource/Condesa_por_amor", "http://dbpedia.org/resource/Conditional_proof", "http://dbpedia.org/resource/Condor_Trilogy", "http://dbpedia.org/resource/Conductors_Without_Borders", "http://dbpedia.org/resource/Cones_Series", "http://dbpedia.org/resource/Conexpo-Con/Agg", "http://dbpedia.org/resource/Confederate_Military_History", "http://dbpedia.org/resource/Confederate_States_Army_revival", "http://dbpedia.org/resource/Confessions_of_a_Matchmaker", "http://dbpedia.org/resource/Confessions_of_a_Sociopathic_Social_Climber", "http://dbpedia.org/resource/Conflict_(series)", "http://dbpedia.org/resource/Confluence_Project", "http://dbpedia.org/resource/Conker_(series)", "http://dbpedia.org/resource/Connect_With_English", "http://dbpedia.org/resource/Connection_Machine", "http://dbpedia.org/resource/Connors\u2013McEnroe_rivalry", "http://dbpedia.org/resource/Conqueror_(novel_series)", "http://dbpedia.org/resource/Conquerors'", "http://dbpedia.org/resource/Conquest_of_America_(miniseries)", "http://dbpedia.org/resource/Constantijn_Huygens_Prize", "http://dbpedia.org/resource/Constantinian_bronzes", "http://dbpedia.org/resource/Constellations_(Mir\u00f3)", "http://dbpedia.org/resource/Dell_PERC", "http://dbpedia.org/resource/Delta_Wave", "http://dbpedia.org/resource/Delta_Works", "http://dbpedia.org/resource/Deltec_Cozmo", "http://dbpedia.org/resource/Deltora_Quest_1", "http://dbpedia.org/resource/Deltora_Quest_2", "http://dbpedia.org/resource/Deltora_Quest_3", "http://dbpedia.org/resource/Delusional_Downtown_Divas", "http://dbpedia.org/resource/Demetan_Croaker,_The_Boy_Frog", "http://dbpedia.org/resource/Demetrio_(1773)", "http://dbpedia.org/resource/Demetrio_(1779)", "http://dbpedia.org/resource/Demo_(comics)", "http://dbpedia.org/resource/Democracy_promotion", "http://dbpedia.org/resource/Democratic_National_Convention", "http://dbpedia.org/resource/Demographics_of_Guatemala", "http://dbpedia.org/resource/Demographics_of_Malaysia", "http://dbpedia.org/resource/Demolition_(TV_series)", "http://dbpedia.org/resource/Demon_Princes", "http://dbpedia.org/resource/Den_of_Shadows", "http://dbpedia.org/resource/Den_rette_for_Tor", "http://dbpedia.org/resource/Dene", "http://dbpedia.org/resource/Deng_Xiaoping_Theory", "http://dbpedia.org/resource/Dengeki_Taish\u014d", "http://dbpedia.org/resource/Denney_Kitfox", "http://dbpedia.org/resource/Dennis_Beaches", "http://dbpedia.org/resource/Dentyne", "http://dbpedia.org/resource/Deportations_of_Hungarians_to_the_Czech_lands", "http://dbpedia.org/resource/Deportations_of_the_Ingrian_Finns", "http://dbpedia.org/resource/Dept._Heaven", "http://dbpedia.org/resource/Deputy_Seraph", "http://dbpedia.org/resource/Der_Androj\u00e4ger", "http://dbpedia.org/resource/Der_Bergdoktor_(1992_TV_series)", "http://dbpedia.org/resource/Der_Bulle_von_T\u00f6lz", "http://dbpedia.org/resource/Der_Dativ_ist_dem_Genitiv_sein_Tod", "http://dbpedia.org/resource/Der_Dicke_und_der_Belgier", "http://dbpedia.org/resource/Der_Ermittler", "http://dbpedia.org/resource/Der_Eugen", "http://dbpedia.org/resource/Der_Evangelimann", "http://dbpedia.org/resource/Der_Fall_von_nebenan", "http://dbpedia.org/resource/Der_Fuchs", "http://dbpedia.org/resource/Der_F\u00fcrst_und_das_M\u00e4dchen", "http://dbpedia.org/resource/Der_Goggolori", "http://dbpedia.org/resource/Der_Golem_(opera)", "http://dbpedia.org/resource/Der_Havelkaiser", "http://dbpedia.org/resource/Der_Heiland_auf_dem_Eiland", "http://dbpedia.org/resource/Der_Kapit\u00e4n_(TV_series)", "http://dbpedia.org/resource/Der_Kirschgarten", "http://dbpedia.org/resource/Der_Kommissar_und_das_Meer", "http://dbpedia.org/resource/Der_Kuhreigen", "http://dbpedia.org/resource/Der_K\u00f6nig", "http://dbpedia.org/resource/Der_Mann_ohne_Schatten", "http://dbpedia.org/resource/Der_Millionenerbe", "http://dbpedia.org/resource/Der_Pfundskerl", "http://dbpedia.org/resource/Der_Prins_mu\u00df_her", "http://dbpedia.org/resource/Der_Prinz_von_Pumpelonien", "http://dbpedia.org/resource/Der_Rattenf\u00e4nger_von_Hameln", "http://dbpedia.org/resource/Der_Schatz_im_Niemandsland", "http://dbpedia.org/resource/Der_Schmied_von_Ruhla", "http://dbpedia.org/resource/Der_Schwammerlk\u00f6nig", "http://dbpedia.org/resource/Der_Sonne_entgegen", "http://dbpedia.org/resource/Der_Sturm_(opera)", "http://dbpedia.org/resource/Der_Tod_ist_kein_Beinbruch", "http://dbpedia.org/resource/Der_Vampyr_(Lindpaintner)", "http://dbpedia.org/resource/Der_Widersp\u00e4nstigen_Z\u00e4hmung", "http://dbpedia.org/resource/Der_Winzerk\u00f6nig", "http://dbpedia.org/resource/Der_flie\u00dfende_Fels", "http://dbpedia.org/resource/Der_ganz_normale_Wahnsinn", "http://dbpedia.org/resource/Der_kleine_Doktor", "http://dbpedia.org/resource/Der_kleine_Mann", "http://dbpedia.org/resource/Der_kleine_M\u00f6nch", "http://dbpedia.org/resource/Der_wilde_G\u00e4rtner", "http://dbpedia.org/resource/Derby_Catacombs", "http://dbpedia.org/resource/Derbyshire_Dales_National_Nature_Reserve", "http://dbpedia.org/resource/Deryni_novels", "http://dbpedia.org/resource/Desafio_Internacional_das_Estrelas", "http://dbpedia.org/resource/Descendant_subgroup", "http://dbpedia.org/resource/Descending_tetrachord", "http://dbpedia.org/resource/Description_de_l'\u00c9gypte", "http://dbpedia.org/resource/Desert_War_(miniseries)", "http://dbpedia.org/resource/Desi_DNA", "http://dbpedia.org/resource/Design_Manual_for_Roads_and_Bridges", "http://dbpedia.org/resource/Design_Miami", "http://dbpedia.org/resource/Design_for_logistics", "http://dbpedia.org/resource/Designed_to_Sell", "http://dbpedia.org/resource/Designer_People", "http://dbpedia.org/resource/Designers'_Challenge", "http://dbpedia.org/resource/Designing_for_the_Sexes", "http://dbpedia.org/resource/Designs_of_the_Time", "http://dbpedia.org/resource/Desolation_Jones", "http://dbpedia.org/resource/Desperate_Houses!", "http://dbpedia.org/resource/Desporto_2", "http://dbpedia.org/resource/Destiny's_Children", "http://dbpedia.org/resource/Destiny_by_Love", "http://dbpedia.org/resource/Destroyermen", "http://dbpedia.org/resource/Desus_vs._Mero", "http://dbpedia.org/resource/Det_b\u00e4sta_fr\u00e5n_Idol", "http://dbpedia.org/resource/Det_femte_v\u00e4derstrecket", "http://dbpedia.org/resource/Detective_Erlendur_series", "http://dbpedia.org/resource/Detective_Quiz", "http://dbpedia.org/resource/Detroit_Autorama", "http://dbpedia.org/resource/Detroit_Industry_Murals", "http://dbpedia.org/resource/Deus_(TV_series)", "http://dbpedia.org/resource/Deutsch_Klasse", "http://dbpedia.org/resource/Developing_Unconventional_Gas", "http://dbpedia.org/resource/Deverry_Cycle", "http://dbpedia.org/resource/Devil's_Jumps,_Churt", "http://dbpedia.org/resource/Devon_Horse_Show", "http://dbpedia.org/resource/Dewey\u2013Stassen_debate", "http://dbpedia.org/resource/Dey's_Arena", "http://dbpedia.org/resource/Uruguayan_Civil_War", "http://dbpedia.org/resource/Urusei_Yatsura", "http://dbpedia.org/resource/Us,_ours_and_yours_(TV_series)", "http://dbpedia.org/resource/Us_&_Them", "http://dbpedia.org/resource/Us_(1991_film)", "http://dbpedia.org/resource/Us_(British_TV_series)", "http://dbpedia.org/resource/Us_Girls", "http://dbpedia.org/resource/Us_Girls_(TV_program)", "http://dbpedia.org/resource/Us_and_Them_(Australian_TV_series)", "http://dbpedia.org/resource/Usapang_Business", "http://dbpedia.org/resource/Usapang_Real_Life", "http://dbpedia.org/resource/Usapang_Real_Love", "http://dbpedia.org/resource/Usavich", "http://dbpedia.org/resource/Ushijima_the_Loan_Shark", "http://dbpedia.org/resource/Ushnas_Prize", "http://dbpedia.org/resource/Usogui", "http://dbpedia.org/resource/Usop_Sontorian", "http://dbpedia.org/resource/Usotsuki_Paradox", "http://dbpedia.org/resource/Usta_usta", "http://dbpedia.org/resource/Ustani_Jee", "http://dbpedia.org/resource/Utacon", "http://dbpedia.org/resource/Ute_Wars", "http://dbpedia.org/resource/Uth_Records", "http://dbpedia.org/resource/Uthiripookkal_(TV_series)", "http://dbpedia.org/resource/Uti_v\u00e5r_hage_(TV_series)", "http://dbpedia.org/resource/Utilizator", "http://dbpedia.org/resource/Utisak_nedelje", "http://dbpedia.org/resource/Utopia_(2013_film)", "http://dbpedia.org/resource/Utopia_(2014_American_TV_series)", "http://dbpedia.org/resource/Utopia_(2020_TV_series)", "http://dbpedia.org/resource/Utopia_(Australian_TV_series)", "http://dbpedia.org/resource/Utopia_(British_TV_series)", "http://dbpedia.org/resource/Utopia_(Doctor_Who)", "http://dbpedia.org/resource/Utopia_Falls", "http://dbpedia.org/resource/Uttai_Tawee", "http://dbpedia.org/resource/Uttaran", "http://dbpedia.org/resource/Uttarayana_(TV_series)", "http://dbpedia.org/resource/Uuden_Musiikin_Kilpailu", "http://dbpedia.org/resource/Uutisvuoto", "http://dbpedia.org/resource/Uwe_Schulten-Baumer", "http://dbpedia.org/resource/Uyajola_9/9", "http://dbpedia.org/resource/Uyan\u0131\u015f:_B\u00fcy\u00fck_Sel\u00e7uklu", "http://dbpedia.org/resource/Uyire_(TV_series)", "http://dbpedia.org/resource/Uyirmei", "http://dbpedia.org/resource/Uzalo", "http://dbpedia.org/resource/Uzumaki", "http://dbpedia.org/resource/V-1_(TV_series)", "http://dbpedia.org/resource/V-Focus", "http://dbpedia.org/resource/V.I.P._(American_TV_series)", "http://dbpedia.org/resource/V.I.P._(talk_show)", "http://dbpedia.org/resource/V8Star_Series", "http://dbpedia.org/resource/V8Xtra", "http://dbpedia.org/resource/VAX_7000/10000", "http://dbpedia.org/resource/VCal", "http://dbpedia.org/resource/VDNKh_(Russia)", "http://dbpedia.org/resource/VD_Blues", "http://dbpedia.org/resource/VH1's_Legends", "http://dbpedia.org/resource/VH1:_I_Love_series", "http://dbpedia.org/resource/VH1_Family_Reunion:_Love_&_Hip_Hop_Edition", "http://dbpedia.org/resource/VH1_ILL-ustrated", "http://dbpedia.org/resource/VH1_Live!", "http://dbpedia.org/resource/VH1_Storytellers", "http://dbpedia.org/resource/VH1_Top_20_Video_Countdown", "http://dbpedia.org/resource/VIC_(TV_series)", "http://dbpedia.org/resource/VIP_(South_Korean_TV_series)", "http://dbpedia.org/resource/VIP_Brother", "http://dbpedia.org/resource/VIP_Dance", "http://dbpedia.org/resource/VIP_Television", "http://dbpedia.org/resource/VMV-class_patrol_boat", "http://dbpedia.org/resource/VOMO:_Vote_or_Miss_Out", "http://dbpedia.org/resource/VR.5", "http://dbpedia.org/resource/VRT_NWS_Journaal", "http://dbpedia.org/resource/VR_Class_Sk1", "http://dbpedia.org/resource/VR_Troopers", "http://dbpedia.org/resource/VTM_Nieuws", "http://dbpedia.org/resource/V_(1983_miniseries)", "http://dbpedia.org/resource/V_(1984_TV_series)", "http://dbpedia.org/resource/V_(2009_TV_series)", "http://dbpedia.org/resource/V_Day_(film)", "http://dbpedia.org/resource/V_Entertainment", "http://dbpedia.org/resource/V_Graham_Norton", "http://dbpedia.org/resource/V_Love", "http://dbpedia.org/resource/V_The_Final_Battle", "http://dbpedia.org/resource/V_The_Serial", "http://dbpedia.org/resource/V_Wars", "http://dbpedia.org/resource/Va-Bank", "http://dbpedia.org/resource/Vacancy_in_Vaughan_Street", "http://dbpedia.org/resource/Vacation_Playhouse", "http://dbpedia.org/resource/Vacationland_(comedy_show)", "http://dbpedia.org/resource/Vaccination_Act", "http://dbpedia.org/resource/Vaccination_schedule", "http://dbpedia.org/resource/Vacuuming_Completely_Nude_in_Paradise", "http://dbpedia.org/resource/Vade_Retro", "http://dbpedia.org/resource/Vadham", "http://dbpedia.org/resource/Vadinamma", "http://dbpedia.org/resource/Vagabond_(TV_series)", "http://dbpedia.org/resource/Vagabond_(manga)", "http://dbpedia.org/resource/Vagrant_Queen", "http://dbpedia.org/resource/Vaguthu_Faaithu_Nuvanees", "http://dbpedia.org/resource/Vahum", "http://dbpedia.org/resource/Vai_Anitta", "http://dbpedia.org/resource/Vaidehi_(2006_TV_series)", "http://dbpedia.org/resource/Vaidehi_(2013_TV_series)", "http://dbpedia.org/resource/Vaidhegi_Kaathirundhaal", "http://dbpedia.org/resource/Vain_el\u00e4m\u00e4\u00e4", "http://dbpedia.org/resource/Vairoalhi_Ahves_Sirrun", "http://dbpedia.org/resource/Vaisoori", "http://dbpedia.org/resource/Vakinuvaan_Bunefaa_Vaudheh_Nuvanhey%3F", "http://dbpedia.org/resource/Vakivumuge_Kurin", "http://dbpedia.org/resource/Val_De_La_O_Show", "http://dbpedia.org/resource/Val_Falvey,_TD", "http://dbpedia.org/resource/Val_Lewton:_The_Man_in_the_Shadows", "http://dbpedia.org/resource/Val_Meets_The_VIPs", "http://dbpedia.org/resource/Valdemar_Poulsen_Gold_Medal", "http://dbpedia.org/resource/Vale_Tudo_(TV_series)", "http://dbpedia.org/resource/Vale_todo", "http://dbpedia.org/resource/Valemont", "http://dbpedia.org/resource/Valentina_(1989_TV_series)", "http://dbpedia.org/resource/Valentina_(1993_TV_series)", "http://dbpedia.org/resource/Valentine's_Day_(TV_series)", "http://dbpedia.org/resource/Valentine_(TV_series)", "http://dbpedia.org/resource/Valentino_el_argentino", "http://dbpedia.org/resource/Valeria_(1966_TV_series)", "http://dbpedia.org/resource/Valeria_(2009_TV_series)", "http://dbpedia.org/resource/Valeria_(2020_TV_series)", "http://dbpedia.org/resource/Valeria_medico_legale", "http://dbpedia.org/resource/Valeria_y_Maximiliano", "http://dbpedia.org/resource/Valerie's_Home_Cooking", "http://dbpedia.org/resource/Valiant_Lady", "http://dbpedia.org/resource/Valiente_(1992_TV_series)", "http://dbpedia.org/resource/Valiente_(2012_TV_series)", "http://dbpedia.org/resource/Valientes", "http://dbpedia.org/resource/Valisar_Trilogy", "http://dbpedia.org/resource/Vali\u00f3_la_pena_(TV_series)", "http://dbpedia.org/resource/Valkyrie_Profile_(series)", "http://dbpedia.org/resource/Valkyrien", "http://dbpedia.org/resource/Vallamai_Tharayo_(TV_series)", "http://dbpedia.org/resource/Valle_de_los_Ingenios", "http://dbpedia.org/resource/Valley_Forge_(film)", "http://dbpedia.org/resource/Valley_of_Tears_(TV_series)", "http://dbpedia.org/resource/Valley_of_the_Boom", "http://dbpedia.org/resource/Valley_of_the_Dinosaurs", "http://dbpedia.org/resource/Valley_of_the_Dolls_(TV_series)", "http://dbpedia.org/resource/Valley_of_the_T._rex", "http://dbpedia.org/resource/Valley_of_the_Wolves:_Homeland", "http://dbpedia.org/resource/Valley_of_the_Wolves_(TV_series)", "http://dbpedia.org/resource/Valli_(TV_series)", "http://dbpedia.org/resource/Valli_Thirumanam_(TV_series)", "http://dbpedia.org/resource/Valli_di_Comacchio", "http://dbpedia.org/resource/Valois_Tapestries", "http://dbpedia.org/resource/Valor_(TV_series)", "http://dbpedia.org/resource/Valor_da_Vida", "http://dbpedia.org/resource/Valores_(TV_program)", "http://dbpedia.org/resource/Valt_the_Wonder_Deer", "http://dbpedia.org/resource/Valvrave_the_Liberator", "http://dbpedia.org/resource/Val\u00f3_Vil\u00e1g", "http://dbpedia.org/resource/Vamo_Arriba", "http://dbpedia.org/resource/Vamos_Juan", "http://dbpedia.org/resource/Vamos_juntos", "http://dbpedia.org/resource/Vamp_(TV_series)", "http://dbpedia.org/resource/Vampire_(1979_film)", "http://dbpedia.org/resource/Vampire_Academy_(TV_series)", "http://dbpedia.org/resource/Vampire_Bats_(film)", "http://dbpedia.org/resource/Vampire_Beach", "http://dbpedia.org/resource/Vampire_Cheerleaders", "http://dbpedia.org/resource/Vampire_Earth", "http://dbpedia.org/resource/Vampire_Expert", "http://dbpedia.org/resource/Vampire_Heaven", "http://dbpedia.org/resource/Vampire_High", "http://dbpedia.org/resource/Vampire_Hunter_D", "http://dbpedia.org/resource/Vampire_Idol", "http://dbpedia.org/resource/Vampire_Knight", "http://dbpedia.org/resource/Vampire_Plagues_series", "http://dbpedia.org/resource/Vampire_Princess_Miyu", "http://dbpedia.org/resource/Vampire_Prosecutor", "http://dbpedia.org/resource/Vampire_ang_Daddy_Ko", "http://dbpedia.org/resource/Vampires_(TV_series)", "http://dbpedia.org/resource/Vampires_Rock", "http://dbpedia.org/resource/Vampirina", "http://dbpedia.org/resource/Vamsam_(TV_series)", "http://dbpedia.org/resource/Van-Pires", "http://dbpedia.org/resource/Van_Dyke_and_Company", "http://dbpedia.org/resource/Van_Gogh_(Kodall\u0131_opera)", "http://dbpedia.org/resource/Van_Helsing_(TV_series)", "http://dbpedia.org/resource/Van_der_Valk", "http://dbpedia.org/resource/Vanakkam_Tamizha", "http://dbpedia.org/resource/Vanambadi_(TV_series)", "http://dbpedia.org/resource/Vanathai_Pola_(TV_series)", "http://dbpedia.org/resource/Vanderpump_Dogs", "http://dbpedia.org/resource/Vanderpump_Rules", "http://dbpedia.org/resource/Vanderpump_Rules:_Jax_And_Brittany_Take_Kentucky", "http://dbpedia.org/resource/Vanderpump_Rules_After_Show", "http://dbpedia.org/resource/Vandhal_Sridevi", "http://dbpedia.org/resource/Vandread", "http://dbpedia.org/resource/Vanessa_(British_TV_series)", "http://dbpedia.org/resource/Vanessa_(Mexican_TV_series)", "http://dbpedia.org/resource/Vanessa_(opera)", "http://dbpedia.org/resource/Vanguard_(TV_series)", "http://dbpedia.org/resource/Vanhojen_tanssit", "http://dbpedia.org/resource/Vani_Rani_(TV_series)", "http://dbpedia.org/resource/Vanished_(1995_film)", "http://dbpedia.org/resource/Vanished_(TV_series)", "http://dbpedia.org/resource/Vanishing_Son", "http://dbpedia.org/resource/Vanities_(TV_program)", "http://dbpedia.org/resource/Vanity_Fair_(1956_TV_series)", "http://dbpedia.org/resource/Vanity_Fair_(1967_TV_serial)", "http://dbpedia.org/resource/Vanity_Fair_(1978_TV_series)", "http://dbpedia.org/resource/Vanity_Fair_(1987_TV_serial)", "http://dbpedia.org/resource/Vanity_Fair_(1998_TV_serial)", "http://dbpedia.org/resource/Vanity_Fair_(2018_TV_series)", "http://dbpedia.org/resource/Vanity_Lair", "http://dbpedia.org/resource/Var_m\u0131s\u0131n%3F_Yok_musun%3F", "http://dbpedia.org/resource/Variable_Geo_(anime)", "http://dbpedia.org/resource/Variety_Bandbox", "http://dbpedia.org/resource/Variety_Big_Brother", "http://dbpedia.org/resource/Variety_Studio:_Actors_on_Actors", "http://dbpedia.org/resource/Variety_in_Sepia", "http://dbpedia.org/resource/Varnappakittu_(TV_series)", "http://dbpedia.org/resource/Varney_&_Co.", "http://dbpedia.org/resource/Vartmaan", "http://dbpedia.org/resource/Varuhuset", "http://dbpedia.org/resource/Vary_Peri", "http://dbpedia.org/resource/Vas_o_No_Vas_(American_game_show)", "http://dbpedia.org/resource/Vasili's_Garden", "http://dbpedia.org/resource/Vasl_(TV_series)", "http://dbpedia.org/resource/Vassalord", "http://dbpedia.org/resource/Vatan\u0131m_Sensin", "http://dbpedia.org/resource/Vater_Seidl_und_sein_Sohn", "http://dbpedia.org/resource/Vatre_ivanjske", "http://dbpedia.org/resource/Vatta's_War", "http://dbpedia.org/resource/Vaudhey_Mee", "http://dbpedia.org/resource/Vaya_semanita", "http://dbpedia.org/resource/Vecinos", "http://dbpedia.org/resource/Vecinos_(Colombian_TV_series)", "http://dbpedia.org/resource/Vectorman", "http://dbpedia.org/resource/Ved_du_hvem_du_er%3F", "http://dbpedia.org/resource/Veep", "http://dbpedia.org/resource/Veer_Shivaji", "http://dbpedia.org/resource/Vega_4_(TV_series)", "http://dbpedia.org/resource/Vegas_(1978_TV_series)", "http://dbpedia.org/resource/Vegas_(2012_TV_series)", "http://dbpedia.org/resource/Vegas_Rat_Rods", "http://dbpedia.org/resource/Vegas_Revolution", "http://dbpedia.org/resource/Vegetable_Soup_(TV_series)", "http://dbpedia.org/resource/Vegfer\u00f0", "http://dbpedia.org/resource/VeggieTales", "http://dbpedia.org/resource/VeggieTales_in_the_City", "http://dbpedia.org/resource/VeggieTales_in_the_House", "http://dbpedia.org/resource/Veiled_Ambition", "http://dbpedia.org/resource/Veintea\u00f1ero_a_los_40", "http://dbpedia.org/resource/Velasco-class_cruiser", "http://dbpedia.org/resource/Velho_Chico", "http://dbpedia.org/resource/Vella_Raja", "http://dbpedia.org/resource/Vellai_Thamarai", "http://dbpedia.org/resource/Vellai_Yaanai", "http://dbpedia.org/resource/Velo_Sound_Station", "http://dbpedia.org/resource/Velo_de_novia", "http://dbpedia.org/resource/Velo_de_novia_(1971_TV_series)", "http://dbpedia.org/resource/Velorama_(film)", "http://dbpedia.org/resource/Velshi_(TV_program)", "http://dbpedia.org/resource/Velunachi", "http://dbpedia.org/resource/Velvet_(TV_series)", "http://dbpedia.org/resource/Velvet_(film)", "http://dbpedia.org/resource/Velvet_Colecci\u00f3n", "http://dbpedia.org/resource/Velvet_Soup", "http://dbpedia.org/resource/Velveteen_&_Mandala", "http://dbpedia.org/resource/Vem_tror_du_att_du_\u00e4r%3F", "http://dbpedia.org/resource/Vem_vet_mest%3F", "http://dbpedia.org/resource/Vem_vill_bli_miljon\u00e4r%3F", "http://dbpedia.org/resource/Ven_conmigo_(TV_series)", "http://dbpedia.org/resource/Vencer_el_desamor", "http://dbpedia.org/resource/Vencer_el_miedo", "http://dbpedia.org/resource/Vencer_el_pasado", "http://dbpedia.org/resource/Vencer_la_ausencia", "http://dbpedia.org/resource/Vendetta:_Secrets_of_a_Mafia_Bride", "http://dbpedia.org/resource/Vendetta:_Truth,_Lies_and_The_Mafia", "http://dbpedia.org/resource/Vendetta_(1999_film)", "http://dbpedia.org/resource/Vendetta_(Armenian_TV_series)", "http://dbpedia.org/resource/Veneno_(TV_series)", "http://dbpedia.org/resource/Venga_Juan", "http://dbpedia.org/resource/Venga_la_alegr\u00eda", "http://dbpedia.org/resource/Venganza_(TV_series)", "http://dbpedia.org/resource/Vengeance_Unlimited", "http://dbpedia.org/resource/Venice:_The_Series", "http://dbpedia.org/resource/Venice_24/7", "http://dbpedia.org/resource/Venice_Medical", "http://dbpedia.org/resource/Venom_(comic_book)", "http://dbpedia.org/resource/Vent_(radio_series)", "http://dbpedia.org/resource/Ventdelpl\u00e0", "http://dbpedia.org/resource/Vento_di_ponente_(TV_series)", "http://dbpedia.org/resource/Venus_5", "http://dbpedia.org/resource/Venus_Capriccio", "http://dbpedia.org/resource/Venus_Observed", "http://dbpedia.org/resource/Venus_Versus_Virus", "http://dbpedia.org/resource/Venus_Wars", "http://dbpedia.org/resource/Venus_und_Adonis", "http://dbpedia.org/resource/Veo_c\u00f3mo_cantas", "http://dbpedia.org/resource/Vera_(TV_series)", "http://dbpedia.org/resource/Vera_of_Las_Vegas", "http://dbpedia.org/resource/Vera_sto_Dexi", "http://dbpedia.org/resource/Verano_azul", "http://dbpedia.org/resource/Verano_de_amor", "http://dbpedia.org/resource/Verano_del_'98", "http://dbpedia.org/resource/Verbotene_Liebe", "http://dbpedia.org/resource/Verbum_nobile", "http://dbpedia.org/resource/Verdad_oculta", "http://dbpedia.org/resource/Verdades_Secretas", "http://dbpedia.org/resource/Verdades_Secretas_(telenovela)", "http://dbpedia.org/resource/Verdades_ocultas", "http://dbpedia.org/resource/Verdeja", "http://dbpedia.org/resource/Verdict_(TV_series)", "http://dbpedia.org/resource/Vereda_Tropical", "http://dbpedia.org/resource/Verg\u00fcenza_(TV_series)", "http://dbpedia.org/resource/Verg\u00fcenza_Ajena:_Made_in_Spain", "http://dbpedia.org/resource/Verissimo_(TV_series)", "http://dbpedia.org/resource/Veritas:_The_Quest", "http://dbpedia.org/resource/Verliebt_in_Berlin", "http://dbpedia.org/resource/Vermilion_Lakes", "http://dbpedia.org/resource/Vermilion_Pleasure_Night", "http://dbpedia.org/resource/Verminators", "http://dbpedia.org/resource/Vermont_Mozart_Festival", "http://dbpedia.org/resource/Verna:_USO_Girl", "http://dbpedia.org/resource/Veronica's_Closet", "http://dbpedia.org/resource/Veronica_Clare", "http://dbpedia.org/resource/Veronica_Mars", "http://dbpedia.org/resource/Verr\u00fcckt_nach_Clara", "http://dbpedia.org/resource/Versailles_(TV_series)", "http://dbpedia.org/resource/Versatile_Varieties", "http://dbpedia.org/resource/Verschollen", "http://dbpedia.org/resource/Versus_Debates", "http://dbpedia.org/resource/Vertige_(TV_series)", "http://dbpedia.org/resource/Very_Big_Very_Soon", "http://dbpedia.org/resource/Very_British_Problems", "http://dbpedia.org/resource/Very_Cavallari", "http://dbpedia.org/resource/Very_Important_People", "http://dbpedia.org/resource/Very_Mary-Kate", "http://dbpedia.org/resource/Very_Small_Business_(TV_series)", "http://dbpedia.org/resource/Ver\u00e3o_90", "http://dbpedia.org/resource/Ver\u00f3nica_(TV_series)", "http://dbpedia.org/resource/Vespertinas", "http://dbpedia.org/resource/Vesti_(VGTRK)", "http://dbpedia.org/resource/Vetri_(season_2)", "http://dbpedia.org/resource/Vetri_(season_3)", "http://dbpedia.org/resource/Vets_in_Practice", "http://dbpedia.org/resource/Vettai:_Pledged_to_Hunt", "http://dbpedia.org/resource/Vettai:_The_Force", "http://dbpedia.org/resource/Vettai_(TV_series)", "http://dbpedia.org/resource/Vetterli_rifle", "http://dbpedia.org/resource/Vexed", "http://dbpedia.org/resource/Ve\u010de_sa_Ivanom_Ivanovi\u0107em", "http://dbpedia.org/resource/Vi_hade_i_alla_fall_tur_med_v\u00e4dret", "http://dbpedia.org/resource/Vi_p\u00e5_Saltkr\u00e5kan", "http://dbpedia.org/resource/Via_Zanardi_33", "http://dbpedia.org/resource/Vibe_(talk_show)", "http://dbpedia.org/resource/Vic_Reeves'_House_Arrest", "http://dbpedia.org/resource/Vic_Reeves_Big_Night_Out", "http://dbpedia.org/resource/Vic_the_Viking", "http://dbpedia.org/resource/Vice_(TV_series)", "http://dbpedia.org/resource/Vice_News_Tonight", "http://dbpedia.org/resource/Vice_Principals", "http://dbpedia.org/resource/Vicini_di_casa", "http://dbpedia.org/resource/Vicious_(American_TV_series)", "http://dbpedia.org/resource/Vicious_(TV_series)", "http://dbpedia.org/resource/Vicious_Circle_(1999_film)", "http://dbpedia.org/resource/Vickers-Carden-Loyd_Light_Amphibious_Tank", "http://dbpedia.org/resource/Vickers_MBT", "http://dbpedia.org/resource/Vicki!", "http://dbpedia.org/resource/Vicky_&_Vetaal", "http://dbpedia.org/resource/Vicky_Ki_Taxi", "http://dbpedia.org/resource/Vicky_the_Viking", "http://dbpedia.org/resource/Victim_(web_series)", "http://dbpedia.org/resource/Victim_Number_8", "http://dbpedia.org/resource/Victim_of_Love_(1991_film)", "http://dbpedia.org/resource/Victims_(film)", "http://dbpedia.org/resource/Victims_for_Victims:_The_Theresa_Saldana_Story", "http://dbpedia.org/resource/Victor/Victoria_(1995_film)", "http://dbpedia.org/resource/Victor_&_Hugo:_Bunglers_in_Crime", "http://dbpedia.org/resource/Victor_&_Maria", "http://dbpedia.org/resource/Victor_(2008_film)", "http://dbpedia.org/resource/Victor_Magtanggol", "http://dbpedia.org/resource/Victor_and_Valentino", "http://dbpedia.org/resource/Victoria's_Secret_Fashion_Show", "http://dbpedia.org/resource/Victoria's_Secret_Fashion_Show_2002", "http://dbpedia.org/resource/Victoria's_Secret_Fashion_Show_2003", "http://dbpedia.org/resource/Victoria's_Secret_Fashion_Show_2005", "http://dbpedia.org/resource/Victoria's_Secret_Fashion_Show_2006", "http://dbpedia.org/resource/Victoria's_Secret_Fashion_Show_2010", "http://dbpedia.org/resource/Victoria's_Secret_Fashion_Show_2013", "http://dbpedia.org/resource/Victoria's_Secret_Fashion_Show_2014", "http://dbpedia.org/resource/Victoria's_Secret_Fashion_Show_2015", "http://dbpedia.org/resource/Victoria's_Secret_Swim_Special", "http://dbpedia.org/resource/Victoria_&_Albert_(TV_serial)", "http://dbpedia.org/resource/Victoria_(2007_TV_series)", "http://dbpedia.org/resource/Victoria_(British_TV_series)", "http://dbpedia.org/resource/Victoria_(Mexican_TV_series)", "http://dbpedia.org/resource/Victoria_(miniseries)", "http://dbpedia.org/resource/Victoria_Arches", "http://dbpedia.org/resource/Victoria_Beckham:_Coming_to_America", "http://dbpedia.org/resource/Victoria_Cross_Heroes", "http://dbpedia.org/resource/Victoria_Derbyshire_(TV_programme)", "http://dbpedia.org/resource/Victoria_International_College", "http://dbpedia.org/resource/Victoria_Regina_(film)", "http://dbpedia.org/resource/Victoria_Wood's_All_Day_Breakfast", "http://dbpedia.org/resource/Victoria_Wood's_Mid_Life_Christmas", "http://dbpedia.org/resource/Victoria_Wood:_As_Seen_on_TV", "http://dbpedia.org/resource/Victoria_Wood_(1989_TV_series)", "http://dbpedia.org/resource/Victoria_Wood_As_Seen_On_TV", "http://dbpedia.org/resource/Victoria_Wood_with_All_the_Trimmings", "http://dbpedia.org/resource/Victorian_Farm", "http://dbpedia.org/resource/Victorian_Pharmacy", "http://dbpedia.org/resource/Victorinos", "http://dbpedia.org/resource/Victorious", "http://dbpedia.org/resource/Victory_Tests", "http://dbpedia.org/resource/Victory_at_Entebbe", "http://dbpedia.org/resource/Victory_at_Sea", "http://dbpedia.org/resource/Victory_of_the_Daleks", "http://dbpedia.org/resource/Vida_(TV_series)", "http://dbpedia.org/resource/Vida_por_vida", "http://dbpedia.org/resource/Vida_robada_(1961_TV_series)", "http://dbpedia.org/resource/Vida_robada_(1991_TV_series)", "http://dbpedia.org/resource/Vidago_Palace_(TV_series)", "http://dbpedia.org/resource/Vidas_Cruzadas_(web_series)", "http://dbpedia.org/resource/Vidas_Cruzadas_(webnovela)", "http://dbpedia.org/resource/Vidas_Opostas", "http://dbpedia.org/resource/Vidas_Opostas_(TV_series)", "http://dbpedia.org/resource/Vidas_cruzadas_(1963_TV_series)", "http://dbpedia.org/resource/Vidas_em_Jogo", "http://dbpedia.org/resource/Vidas_robadas", "http://dbpedia.org/resource/Vidas_robadas_(Mexican_TV_series)", "http://dbpedia.org/resource/Vidathu_Sirippu", "http://dbpedia.org/resource/Vidbir", "http://dbpedia.org/resource/VideoGaiden", "http://dbpedia.org/resource/Video_&_Arcade_Top_10", "http://dbpedia.org/resource/Video_Game_High_School", "http://dbpedia.org/resource/Video_Games_Live", "http://dbpedia.org/resource/Video_Girl_Ai", "http://dbpedia.org/resource/Video_Gospel", "http://dbpedia.org/resource/Video_Hits_(Australian_TV_series)", "http://dbpedia.org/resource/Video_Hits_(Canadian_TV_series)", "http://dbpedia.org/resource/Video_Jukebox_(TV_series)", "http://dbpedia.org/resource/Video_Justice", "http://dbpedia.org/resource/Video_Mods", "http://dbpedia.org/resource/Video_Music_Box", "http://dbpedia.org/resource/Video_Power", "http://dbpedia.org/resource/Video_Soul", "http://dbpedia.org/resource/Video_Star", "http://dbpedia.org/resource/Video_Village", "http://dbpedia.org/resource/Video_Voyeur", "http://dbpedia.org/resource/Video_Warrior_Laserion", "http://dbpedia.org/resource/Video_loco_(Chilean_TV_program)", "http://dbpedia.org/resource/Video_on_Trial", "http://dbpedia.org/resource/Videocheck", "http://dbpedia.org/resource/Videogame_Nation_(TV_programme)", "http://dbpedia.org/resource/Videomatch", "http://dbpedia.org/resource/Videopolis_(TV_series)", "http://dbpedia.org/resource/Videos_After_Dark", "http://dbpedia.org/resource/Vidhi_(TV_series)", "http://dbpedia.org/resource/Vidhya_No.1", "http://dbpedia.org/resource/Vidiot", "http://dbpedia.org/resource/Vidrohi_(TV_series)", "http://dbpedia.org/resource/Vidya_(TV_series)", "http://dbpedia.org/resource/Vieni_via_con_me", "http://dbpedia.org/resource/Vienna_Blood_(TV_series)", "http://dbpedia.org/resource/Vier_Frauen_und_ein_Todesfall", "http://dbpedia.org/resource/Vier_gegen_Z", "http://dbpedia.org/resource/Vier_gegen_die_Bank_(1976_film)", "http://dbpedia.org/resource/Viernes_de_F\u00fatbol", "http://dbpedia.org/resource/Viestur_Kairish", "http://dbpedia.org/resource/Vietnam's_Got_Talent", "http://dbpedia.org/resource/Vietnam's_Next_Top_Model", "http://dbpedia.org/resource/Vietnam:_A_Television_History", "http://dbpedia.org/resource/Vietnam:_The_Ten_Thousand_Day_War", "http://dbpedia.org/resource/Vietnam_(miniseries)", "http://dbpedia.org/resource/Vietnam_Idol", "http://dbpedia.org/resource/Vietnam_Rose", "http://dbpedia.org/resource/Vietnam_in_HD", "http://dbpedia.org/resource/Viewpoint_(Australian_TV_program)", "http://dbpedia.org/resource/Viewpoint_(British_TV_series)", "http://dbpedia.org/resource/Viewpoint_(Canadian_TV_program)", "http://dbpedia.org/resource/Viewpoint_(Philippine_TV_program)", "http://dbpedia.org/resource/Viewpoint_(talk_show)", "http://dbpedia.org/resource/Vighnaharta_Ganesh", "http://dbpedia.org/resource/Vigil_(TV_series)", "http://dbpedia.org/resource/Vigilante_Force_(TV_series)", "http://dbpedia.org/resource/Vijay_(TV_series)", "http://dbpedia.org/resource/Vijay_Chithiram", "http://dbpedia.org/resource/Vijay_Kaaviya_Neram", "http://dbpedia.org/resource/Vijay_Stars_Kondattam", "http://dbpedia.org/resource/Vijf_tegen_Vijf", "http://dbpedia.org/resource/Viking:_The_Ultimate_Obstacle_Course", "http://dbpedia.org/resource/Vikings:_Valhalla", "http://dbpedia.org/resource/Vikings_(2012_TV_series)", "http://dbpedia.org/resource/Vikings_(TV_documentary_series)", "http://dbpedia.org/resource/Vikings_(TV_series)", "http://dbpedia.org/resource/Vikings_(season_1)", "http://dbpedia.org/resource/Vikki_RPM", "http://dbpedia.org/resource/Vikram_Aur_Betaal", "http://dbpedia.org/resource/Vikram_Betaal_Ki_Rahasya_Gatha", "http://dbpedia.org/resource/Vila_Madalena_(TV_series)", "http://dbpedia.org/resource/Vila_S\u00e9samo", "http://dbpedia.org/resource/Vilakku_Vacha_Nerathula", "http://dbpedia.org/resource/Vilangu_(web_series)", "http://dbpedia.org/resource/Vild_med_dans", "http://dbpedia.org/resource/Villa_Arzilla", "http://dbpedia.org/resource/Villa_Dulce", "http://dbpedia.org/resource/Villa_Para\u00edso", "http://dbpedia.org/resource/Villa_Quintana", "http://dbpedia.org/resource/Villa_Quintana_(2013_TV_series)", "http://dbpedia.org/resource/Villa_To_Village", "http://dbpedia.org/resource/Village_Barn", "http://dbpedia.org/resource/Village_Hall_(TV_series)", "http://dbpedia.org/resource/Village_Survival,_the_Eight", "http://dbpedia.org/resource/Village_Vets_Australia", "http://dbpedia.org/resource/Village_Wooing_(1962_film)", "http://dbpedia.org/resource/Village_of_the_Damned:_Welcome_to_Dryden", "http://dbpedia.org/resource/Village_of_the_Missing", "http://dbpedia.org/resource/Villainous_(TV_series)", "http://dbpedia.org/resource/Villains_(TV_series)", "http://dbpedia.org/resource/Ville_vesten", "http://dbpedia.org/resource/Vilma_(Philippine_TV_program)", "http://dbpedia.org/resource/Vina_Vidai_Vettai", "http://dbpedia.org/resource/Vina_Vidai_Vettai_Juniors", "http://dbpedia.org/resource/Vina_Vidai_Vettai_Juniors_(season_2)", "http://dbpedia.org/resource/Vince_Lombardi_Trophy", "http://dbpedia.org/resource/Vince_and_Kath", "http://dbpedia.org/resource/Vincent_(TV_series)", "http://dbpedia.org/resource/Vincent_(opera)", "http://dbpedia.org/resource/Vincent_and_the_Doctor", "http://dbpedia.org/resource/Vincenzo_(TV_series)", "http://dbpedia.org/resource/Vinicius_para_Crian\u00e7as_-_Arca_de_No\u00e9", "http://dbpedia.org/resource/Vinko_Coce", "http://dbpedia.org/resource/Vinland_Saga_(manga)", "http://dbpedia.org/resource/Vinnaithaandi_Varuvaayaa_(TV_series)", "http://dbpedia.org/resource/Vinnie_&_Bobby", "http://dbpedia.org/resource/Vino_el_amor", "http://dbpedia.org/resource/Vinyl_(TV_series)", "http://dbpedia.org/resource/Viola_(opera)", "http://dbpedia.org/resource/Violanta", "http://dbpedia.org/resource/Violeta_Violeta", "http://dbpedia.org/resource/Violetta_(TV_series)", "http://dbpedia.org/resource/Violine", "http://dbpedia.org/resource/Viper's_Creed", "http://dbpedia.org/resource/Viper_(TV_series)", "http://dbpedia.org/resource/Vipers_(film)", "http://dbpedia.org/resource/Vipul-class_barge", "http://dbpedia.org/resource/Viraasat_(2006_TV_series)", "http://dbpedia.org/resource/Viral_(web_series)", "http://dbpedia.org/resource/Viral_Scandal", "http://dbpedia.org/resource/Viral_Tap", "http://dbpedia.org/resource/Virals", "http://dbpedia.org/resource/Virasaat_(2002_TV_series)", "http://dbpedia.org/resource/Virgin_1_Presents....", "http://dbpedia.org/resource/Virgin_Ambient_series", "http://dbpedia.org/resource/Virgin_Bhasskar", "http://dbpedia.org/resource/Virgin_Bhasskar_2", "http://dbpedia.org/resource/Virgin_Fleet", "http://dbpedia.org/resource/Virgin_Media_News", "http://dbpedia.org/resource/Virgin_Media_News_at_5.30", "http://dbpedia.org/resource/Virgin_Media_News_at_8.00", "http://dbpedia.org/resource/Virgin_River_(TV_series)", "http://dbpedia.org/resource/Virgin_Territory_(TV_series)", "http://dbpedia.org/resource/Virgin_of_the_Secret_Service", "http://dbpedia.org/resource/Virginia,_la_monaca_di_Monza", "http://dbpedia.org/resource/Virginia-class_cruiser", "http://dbpedia.org/resource/Virginia_(Montero)", "http://dbpedia.org/resource/Virginia_Conventions", "http://dbpedia.org/resource/Virginia_Resolves", "http://dbpedia.org/resource/Virginia_Slave_Codes_of_1705", "http://dbpedia.org/resource/Virginie", "http://dbpedia.org/resource/Virrudh", "http://dbpedia.org/resource/Virtua_Fighter", "http://dbpedia.org/resource/Virtual_Hero", "http://dbpedia.org/resource/Virtual_Murder_(TV_series)", "http://dbpedia.org/resource/Virtual_Obsession", "http://dbpedia.org/resource/Virtual_Seduction", "http://dbpedia.org/resource/Virtuality_(film)", "http://dbpedia.org/resource/Virtually_Famous", "http://dbpedia.org/resource/Virtues_of_Harmony", "http://dbpedia.org/resource/Virtues_of_Harmony_II", "http://dbpedia.org/resource/Virus_(1995_film)", "http://dbpedia.org/resource/Vis_Unda_20000%3F", "http://dbpedia.org/resource/Vis_a_vis:_El_Oasis", "http://dbpedia.org/resource/Visaal", "http://dbpedia.org/resource/Vish_(TV_series)", "http://dbpedia.org/resource/Vish_Ya_Amrit:_Sitara", "http://dbpedia.org/resource/Vishkanya_Ek_Anokhi_Prem_Kahani", "http://dbpedia.org/resource/Vishnu_Puran_(TV_series)", "http://dbpedia.org/resource/Vishwamitra_(TV_series)", "http://dbpedia.org/resource/Visible:_Out_on_Television", "http://dbpedia.org/resource/Visible_Vote_'08:_A_Presidential_Forum", "http://dbpedia.org/resource/Vision_On", "http://dbpedia.org/resource/Visionaries:_Knights_of_the_Magical_Light", "http://dbpedia.org/resource/Visionaries:_Small_Solutions_to_Enormously_Large_Problems", "http://dbpedia.org/resource/Visionary:_The_Video_Singles", "http://dbpedia.org/resource/Visions_(TV_series)", "http://dbpedia.org/resource/Visions_fugitives", "http://dbpedia.org/resource/Visions_of_Murder", "http://dbpedia.org/resource/Visions_of_Passion", "http://dbpedia.org/resource/Visions_of_the_Future", "http://dbpedia.org/resource/Visit_with_the_Armed_Forces", "http://dbpedia.org/resource/Visiting_Tutor", "http://dbpedia.org/resource/Vita_l\u00f6gner", "http://dbpedia.org/resource/Vital_Signs_(TV_series)", "http://dbpedia.org/resource/Vitamin_(TV_series)", "http://dbpedia.org/resource/Vitamin_Club", "http://dbpedia.org/resource/Vitimbi", "http://dbpedia.org/resource/Vitthal_Teedi", "http://dbpedia.org/resource/Vittorio_Orlandi", "http://dbpedia.org/resource/Vit\u00f3ria_(2014_TV_series)", "http://dbpedia.org/resource/ViuTV_News", "http://dbpedia.org/resource/Viudas_e_hijos_del_Rock_&_Roll", "http://dbpedia.org/resource/Viva_Cabaret", "http://dbpedia.org/resource/Viva_La_Bam", "http://dbpedia.org/resource/Viva_Laughlin", "http://dbpedia.org/resource/Viva_Le_Famille", "http://dbpedia.org/resource/Viva_Pi\u00f1ata", "http://dbpedia.org/resource/Viva_Pi\u00f1ata_(TV_series)", "http://dbpedia.org/resource/Viva_S_Club", "http://dbpedia.org/resource/Viva_Valdez", "http://dbpedia.org/resource/Viva_Variety", "http://dbpedia.org/resource/Viva_Vietnam:_A_White_Trash_Adventure_Tour", "http://dbpedia.org/resource/Viva_el_lunes", "http://dbpedia.org/resource/Viva_la_Bands", "http://dbpedia.org/resource/Viva_la_Diva_(Darcey_Bussell_and_Katherine_Jenkins)", "http://dbpedia.org/resource/Viva_la_Ma\u00f1ana", "http://dbpedia.org/resource/Viva_la_Pepa", "http://dbpedia.org/resource/Vive_la_colo_!", "http://dbpedia.org/resource/Viver_a_Vida", "http://dbpedia.org/resource/Vivere_(TV_series)", "http://dbpedia.org/resource/Viviana_(TV_series)", "http://dbpedia.org/resource/Vividred_Operation", "http://dbpedia.org/resource/Vivimos_en_una_estrella", "http://dbpedia.org/resource/Vivir_a_destiempo", "http://dbpedia.org/resource/Vivir_enamorada", "http://dbpedia.org/resource/Vivir_para_amar", "http://dbpedia.org/resource/Vivir_un_poco", "http://dbpedia.org/resource/Vivo_Por_Elena", "http://dbpedia.org/resource/Vixen_(web_series)", "http://dbpedia.org/resource/Vixens", "http://dbpedia.org/resource/Viza_za_budu\u0107nost", "http://dbpedia.org/resource/Vi\u0146as_melo_lab\u0101k", "http://dbpedia.org/resource/Vlaamse_Hollywood_Vrouwen", "http://dbpedia.org/resource/Vlad_Taltos", "http://dbpedia.org/resource/Vlora_War", "http://dbpedia.org/resource/Vober_Hat", "http://dbpedia.org/resource/Vocal_Play", "http://dbpedia.org/resource/Vocal_War:_God's_Voice", "http://dbpedia.org/resource/Vocal_warm_up", "http://dbpedia.org/resource/Vocea_Rom\u00e2niei", "http://dbpedia.org/resource/Vocea_Rom\u00e2niei_Junior", "http://dbpedia.org/resource/Voces_en_Funci\u00f3n", "http://dbpedia.org/resource/Voc\u00ea_Decide", "http://dbpedia.org/resource/Vodafone_M.I.C", "http://dbpedia.org/resource/Voetbal_Inside", "http://dbpedia.org/resource/Voglia_di_Volare", "http://dbpedia.org/resource/Voglia_di_vivere", "http://dbpedia.org/resource/Voice:_110_Emergency_Control_Room", "http://dbpedia.org/resource/Voice_(TV_series)", "http://dbpedia.org/resource/Voice_Over_Man", "http://dbpedia.org/resource/Voice_of_Prophecy", "http://dbpedia.org/resource/Voice_of_Punjab", "http://dbpedia.org/resource/Voice_or_Noise", "http://dbpedia.org/resource/Voice_\u2013_Danmarks_st\u00f8rste_stemme", "http://dbpedia.org/resource/Voicelugger", "http://dbpedia.org/resource/Voices_Within:_The_Lives_of_Truddi_Chase", "http://dbpedia.org/resource/Voices_of_Fire_(TV_series)", "http://dbpedia.org/resource/Voices_of_Our_Future", "http://dbpedia.org/resource/Voir_(TV_series)", "http://dbpedia.org/resource/Volcano:_Fire_on_the_Mountain", "http://dbpedia.org/resource/Volcano_House", "http://dbpedia.org/resource/Volcano_Live", "http://dbpedia.org/resource/Volcano_and_Ryukyu_Islands_campaign", "http://dbpedia.org/resource/Volkswagen_Scirocco_R-Cup", "http://dbpedia.org/resource/Volleyball_Lover", "http://dbpedia.org/resource/Volo_di_notte", "http://dbpedia.org/resource/Volta_(TV_series)", "http://dbpedia.org/resource/Voltea_pa'_que_te_enamores", "http://dbpedia.org/resource/Voltea_pa'_que_te_enamores_(2014_TV_series)", "http://dbpedia.org/resource/Voltes_V:_Legacy", "http://dbpedia.org/resource/Voltron", "http://dbpedia.org/resource/Voltron:_Fleet_of_Doom", "http://dbpedia.org/resource/Voltron:_Legendary_Defender", "http://dbpedia.org/resource/Voltron:_The_Third_Dimension", "http://dbpedia.org/resource/Voltron_(TV_series)", "http://dbpedia.org/resource/Voltron_Force", "http://dbpedia.org/resource/Volume_One_(TV_series)", "http://dbpedia.org/resource/Volume_Up_(radio_show)", "http://dbpedia.org/resource/Volver_a_Empezar_(TV_series)", "http://dbpedia.org/resource/Volver_a_amar", "http://dbpedia.org/resource/Volver_a_vivir_(TV_series)", "http://dbpedia.org/resource/Volvo_Brage", "http://dbpedia.org/resource/Volvo_F85", "http://dbpedia.org/resource/Volvo_F88", "http://dbpedia.org/resource/Volvo_Snabbe", "http://dbpedia.org/resource/Von_heute_auf_morgen", "http://dbpedia.org/resource/Voodoo_Dollz", "http://dbpedia.org/resource/Voodoo_Moon", "http://dbpedia.org/resource/Vor-Tech:_Undercover_Conversion_Squad", "http://dbpedia.org/resource/Voronin's_Family", "http://dbpedia.org/resource/Vota_Juan", "http://dbpedia.org/resource/Vote_Match", "http://dbpedia.org/resource/Votre_Faust", "http://dbpedia.org/resource/Vourate_Geitonoi", "http://dbpedia.org/resource/Vox_Populi_(SBS_Current_Affairs_program)", "http://dbpedia.org/resource/Voyage_(1993_film)", "http://dbpedia.org/resource/Voyage_Trekkers", "http://dbpedia.org/resource/Voyage_of_Terror", "http://dbpedia.org/resource/Voyage_of_Terror:_The_Achille_Lauro_Affair", "http://dbpedia.org/resource/Voyage_of_the_Damned_(Doctor_Who)", "http://dbpedia.org/resource/Voyage_of_the_Space_Bubble", "http://dbpedia.org/resource/Voyage_to_the_Bottom_of_the_Sea_(TV_series)", "http://dbpedia.org/resource/Voyagers!", "http://dbpedia.org/resource/Vrati\u0107e_se_rode", "http://dbpedia.org/resource/Vremya", "http://dbpedia.org/resource/VriendenLoterij_Miljonairs", "http://dbpedia.org/resource/Vroom_Vroom_(TV_series)", "http://dbpedia.org/resource/Vru\u0107_vetar", "http://dbpedia.org/resource/Vs._(game_show)", "http://dbpedia.org/resource/Vua_ti\u1ebfng_Vi\u1ec7t", "http://dbpedia.org/resource/Vuelo_secreto", "http://dbpedia.org/resource/Vuelta_a_Mallorca", "http://dbpedia.org/resource/Vuelve_temprano", "http://dbpedia.org/resource/Vuelve_temprano_(Mexican_TV_series)", "http://dbpedia.org/resource/Vuk_Karad\u017ei\u0107_(TV_series)", "http://dbpedia.org/resource/Vurgun_(web_series)", "http://dbpedia.org/resource/Vuslat", "http://dbpedia.org/resource/Vu\u00e9lveme_a_querer_(TV_series)", "http://dbpedia.org/resource/Vzglyad_(Russian_TV_program)", "http://dbpedia.org/resource/V\u00e1lgame_Dios", "http://dbpedia.org/resource/V\u00e4gen_till_Gyllenbl\u00e5!", "http://dbpedia.org/resource/V\u00e4nner_och_fiender", "http://dbpedia.org/resource/V\u00e4rsta_spr\u00e5ket", "http://dbpedia.org/resource/V\u00e4ter_und_S\u00f6hne_\u2013_Eine_deutsche_Trag\u00f6die", "http://dbpedia.org/resource/V\u00e5g_og_vinn", "http://dbpedia.org/resource/V\u00e5r_tid_\u00e4r_nu", "http://dbpedia.org/resource/V\u00e9nus_et_Adonis", "http://dbpedia.org/resource/V\u00e9ro", "http://dbpedia.org/resource/V\u00e9rtigo_(TV_series)", "http://dbpedia.org/resource/V\u00e9u_de_Noiva", "http://dbpedia.org/resource/V\u00edctor_C\u00e1mara", "http://dbpedia.org/resource/V\u00edctor_Ros", "http://dbpedia.org/resource/V\u00eddeo_Show", "http://dbpedia.org/resource/V\u011b\u0159\u00ed\u0161_si%3F", "http://dbpedia.org/resource/W*A*L*T*E*R", "http://dbpedia.org/resource/W.E.B.", "http://dbpedia.org/resource/W.I.T.C.H._(TV_series)", "http://dbpedia.org/resource/W/_Bob_&_David", "http://dbpedia.org/resource/W00tstock", "http://dbpedia.org/resource/W1A_(TV_series)", "http://dbpedia.org/resource/W5_(TV_program)", "http://dbpedia.org/resource/WAGS_(TV_series)", "http://dbpedia.org/resource/WAGS_Atlanta", "http://dbpedia.org/resource/WAGS_Miami", "http://dbpedia.org/resource/WAG_Nation", "http://dbpedia.org/resource/WAGs_Boutique", "http://dbpedia.org/resource/WCG_Ultimate_Gamer", "http://dbpedia.org/resource/WCW_All_Nighter", "http://dbpedia.org/resource/WCW_Main_Event", "http://dbpedia.org/resource/WCW_Monday_Nitro", "http://dbpedia.org/resource/WCW_Power_Hour", "http://dbpedia.org/resource/WCW_Prime", "http://dbpedia.org/resource/WCW_Pro", "http://dbpedia.org/resource/WCW_Saturday_Night", "http://dbpedia.org/resource/WCW_Thunder", "http://dbpedia.org/resource/WCW_WorldWide", "http://dbpedia.org/resource/WDAZ-TV", "http://dbpedia.org/resource/WDIO-DT", "http://dbpedia.org/resource/WGN_Morning_News", "http://dbpedia.org/resource/WHIH_Newsfront", "http://dbpedia.org/resource/WHO_Radio_Wise_Guys", "http://dbpedia.org/resource/WIGS_(web_channel)", "http://dbpedia.org/resource/WIOU_(TV_series)", "http://dbpedia.org/resource/WITS_Academy", "http://dbpedia.org/resource/WKLL", "http://dbpedia.org/resource/WKRP_in_Cincinnati", "http://dbpedia.org/resource/WMAC_Masters", "http://dbpedia.org/resource/WMRA_World_Cup", "http://dbpedia.org/resource/WNBA_on_ABC", "http://dbpedia.org/resource/WNBA_on_ESPN", "http://dbpedia.org/resource/WNBA_on_Lifetime", "http://dbpedia.org/resource/WNBA_on_NBC", "http://dbpedia.org/resource/WNBA_on_Oxygen", "http://dbpedia.org/resource/WOMEN!", "http://dbpedia.org/resource/WOW!_(TV_series)", "http://dbpedia.org/resource/WOW:_The_CatholicTV_Challenge", "http://dbpedia.org/resource/WPC_56", "http://dbpedia.org/resource/WQMU", "http://dbpedia.org/resource/WTA_125K_series", "http://dbpedia.org/resource/WWE's_Most_Wanted_Treasures", "http://dbpedia.org/resource/WWE_205_Live", "http://dbpedia.org/resource/WWE_2K", "http://dbpedia.org/resource/WWE_Afterburn", "http://dbpedia.org/resource/WWE_Backstage", "http://dbpedia.org/resource/WWE_Bottom_Line", "http://dbpedia.org/resource/WWE_Confidential", "http://dbpedia.org/resource/WWE_Diva_Search", "http://dbpedia.org/resource/WWE_ECW", "http://dbpedia.org/resource/WWE_Experience", "http://dbpedia.org/resource/WWE_Free_for_All", "http://dbpedia.org/resource/WWE_Heat", "http://dbpedia.org/resource/WWE_Legends'_House", "http://dbpedia.org/resource/WWE_Legends_of_Wrestling", "http://dbpedia.org/resource/WWE_Madison_Square_Garden_Classics", "http://dbpedia.org/resource/WWE_Main_Event", "http://dbpedia.org/resource/WWE_Mixed_Match_Challenge", "http://dbpedia.org/resource/WWE_NXT", "http://dbpedia.org/resource/WWE_NXT_(TV_series)", "http://dbpedia.org/resource/WWE_NXT_Level_Up", "http://dbpedia.org/resource/WWE_Raw", "http://dbpedia.org/resource/WWE_Rivals", "http://dbpedia.org/resource/WWE_Saturday_Morning_Slam", "http://dbpedia.org/resource/WWE_Slam_City", "http://dbpedia.org/resource/WWE_SmackDown", "http://dbpedia.org/resource/WWE_Superstars", "http://dbpedia.org/resource/WWE_Tagged_Classics", "http://dbpedia.org/resource/WWE_Tough_Enough", "http://dbpedia.org/resource/WWE_Tribute_to_the_Troops", "http://dbpedia.org/resource/WWE_Velocity", "http://dbpedia.org/resource/WWE_Vintage", "http://dbpedia.org/resource/WWE_Wal3ooha", "http://dbpedia.org/resource/WWE_Workout_Series", "http://dbpedia.org/resource/WWE_Worlds_Collide_(series)", "http://dbpedia.org/resource/WWF_All_American_Wrestling", "http://dbpedia.org/resource/WWF_Championship_Wrestling", "http://dbpedia.org/resource/WWF_Hasbro_action_figures", "http://dbpedia.org/resource/WWF_Jakked/Metal", "http://dbpedia.org/resource/WWF_LiveWire", "http://dbpedia.org/resource/WWF_Mania", "http://dbpedia.org/resource/WWF_Prime_Time_Wrestling", "http://dbpedia.org/resource/WWF_Shotgun_Saturday_Night", "http://dbpedia.org/resource/WWF_Superstars_of_Wrestling", "http://dbpedia.org/resource/WWF_The_Main_Event", "http://dbpedia.org/resource/WWF_Wrestling_Challenge", "http://dbpedia.org/resource/WWF_on_MSG_Network", "http://dbpedia.org/resource/WWII_in_HD", "http://dbpedia.org/resource/WXSX-CA", "http://dbpedia.org/resource/WYSIWYG_(TV_series)", "http://dbpedia.org/resource/W_(TV_series)", "http://dbpedia.org/resource/W_Juliet", "http://dbpedia.org/resource/W_roli_g\u0142\u00f3wnej...", "http://dbpedia.org/resource/Wa$ted!_(American_TV_series)", "http://dbpedia.org/resource/Wa$ted!_(New_Zealand_TV_series)", "http://dbpedia.org/resource/Waada_(TV_series)", "http://dbpedia.org/resource/Waar_Parriwar", "http://dbpedia.org/resource/Waaris_(1999_TV_series)", "http://dbpedia.org/resource/Waaris_(2008_TV_series)", "http://dbpedia.org/resource/Waaris_(2008_Zee_TV_series)", "http://dbpedia.org/resource/Waaris_(2016_TV_series)", "http://dbpedia.org/resource/Wacaday", "http://dbpedia.org/resource/Wachamakulit", "http://dbpedia.org/resource/Wacko_(TV_series)", "http://dbpedia.org/resource/Wacky_Races_(1968_TV_series)", "http://dbpedia.org/resource/Wacky_Races_(2017_TV_series)", "http://dbpedia.org/resource/Waco:_Madman_or_Messiah", "http://dbpedia.org/resource/Waco_(miniseries)", "http://dbpedia.org/resource/Waco_Custom_Cabin_series", "http://dbpedia.org/resource/Waco_people", "http://dbpedia.org/resource/Wafa_(TV_series)", "http://dbpedia.org/resource/Waffle_(game_show)", "http://dbpedia.org/resource/Waffle_the_Wonder_Dog", "http://dbpedia.org/resource/Waffles_+_Mochi", "http://dbpedia.org/resource/Wag_Kukurap", "http://dbpedia.org/resource/Wagan_Land", "http://dbpedia.org/resource/Wagas", "http://dbpedia.org/resource/Wagaya_no_Rekishi", "http://dbpedia.org/resource/Wagle_Ki_Duniya", "http://dbpedia.org/resource/Wagle_Ki_Duniya_\u2013_Nayi_Peedhi_Naye_Kissey", "http://dbpedia.org/resource/Wagner_(film)", "http://dbpedia.org/resource/Wagon_Train", "http://dbpedia.org/resource/Wah!_Wah!_Kya_Baat_Hai!", "http://dbpedia.org/resource/Wah_Bhai_Wah_(TV_series)", "http://dbpedia.org/resource/Wah_Janaab", "http://dbpedia.org/resource/Wahlburgers", "http://dbpedia.org/resource/Wahlburgers_(TV_series)", "http://dbpedia.org/resource/Wahlgrens_v\u00e4rld", "http://dbpedia.org/resource/Waikiki_(film)", "http://dbpedia.org/resource/Wainwrights_On_The_Air", "http://dbpedia.org/resource/Waissman", "http://dbpedia.org/resource/Wait,_My_Youth", "http://dbpedia.org/resource/Wait_Till_Your_Father_Gets_Home", "http://dbpedia.org/resource/Wait_till_Your_Mother_Gets_Home!", "http://dbpedia.org/resource/Waiting_for_God_(TV_series)", "http://dbpedia.org/resource/Waiting_for_the_Barbarians_(opera)", "http://dbpedia.org/resource/Waiting_in_the_Summer", "http://dbpedia.org/resource/Wajh_al-Qamar", "http://dbpedia.org/resource/Waka_&_Tammy:_What_The_Flocka", "http://dbpedia.org/resource/Wakaba_Girl", "http://dbpedia.org/resource/Wakakozake", "http://dbpedia.org/resource/Wake,_Rattle,_and_Roll", "http://dbpedia.org/resource/Wake_Me_When_the_War_Is_Over", "http://dbpedia.org/resource/Wake_Up!_WA", "http://dbpedia.org/resource/Wake_Up_(TV_program)", "http://dbpedia.org/resource/Wake_Up_(TV_series)", "http://dbpedia.org/resource/Wake_Up_2", "http://dbpedia.org/resource/Wake_Up_Call_(2002_TV_program)", "http://dbpedia.org/resource/Wake_Up_Call_(2014_TV_series)", "http://dbpedia.org/resource/Wake_Up_Call_(TV_series)", "http://dbpedia.org/resource/Wake_Up_Ladies:_The_Series", "http://dbpedia.org/resource/Wake_Up_Ladies:_Very_Complicated", "http://dbpedia.org/resource/Wake_Up_with_Al", "http://dbpedia.org/resource/Wake_in_Fright_(miniseries)", "http://dbpedia.org/resource/Wakefield_(TV_series)", "http://dbpedia.org/resource/Wakey_Wakey_Campers", "http://dbpedia.org/resource/Wakfu_(TV_series)", "http://dbpedia.org/resource/Waking_the_Dead_(TV_series)", "http://dbpedia.org/resource/Wako_Wako", "http://dbpedia.org/resource/Waktu_Rehat", "http://dbpedia.org/resource/Waku_Waku_Volley", "http://dbpedia.org/resource/Wakusei_Robo_Danguard_Ace", "http://dbpedia.org/resource/Walang_Hanggan_(2003_TV_series)", "http://dbpedia.org/resource/Walang_Hanggan_(2012_TV_series)", "http://dbpedia.org/resource/Walang_Hanggang_Paalam", "http://dbpedia.org/resource/Walang_Iwanan", "http://dbpedia.org/resource/Walang_Iwanan_(TV_series)", "http://dbpedia.org/resource/Walang_Kapalit", "http://dbpedia.org/resource/Walang_Tulugan_with_the_Master_Showman", "http://dbpedia.org/resource/Walchensee-class_tanker", "http://dbpedia.org/resource/Waldheimat_(TV_series)", "http://dbpedia.org/resource/Wales_This_Week", "http://dbpedia.org/resource/Wales_Today", "http://dbpedia.org/resource/Wales_at_Six", "http://dbpedia.org/resource/Walk_cycle", "http://dbpedia.org/resource/Walk_on_the_Wild_Side_(TV_series)", "http://dbpedia.org/resource/Walk_the_Line_(TV_series)", "http://dbpedia.org/resource/Walk_the_Prank", "http://dbpedia.org/resource/Walker,_Texas_Ranger", "http://dbpedia.org/resource/Walker,_Texas_Ranger:_Trial_by_Fire", "http://dbpedia.org/resource/Walker:_Independence", "http://dbpedia.org/resource/Walker_(TV_series)", "http://dbpedia.org/resource/Walking_Britain's_Lost_Railways", "http://dbpedia.org/resource/Walking_Forward", "http://dbpedia.org/resource/Walking_Tall_(TV_series)", "http://dbpedia.org/resource/Walking_in_Circles", "http://dbpedia.org/resource/Walking_in_the_Kingdom", "http://dbpedia.org/resource/Walking_with...", "http://dbpedia.org/resource/Walking_with_Beasts", "http://dbpedia.org/resource/Walking_with_Cavemen", "http://dbpedia.org/resource/Walking_with_Dinosaurs", "http://dbpedia.org/resource/Walking_with_Monsters", "http://dbpedia.org/resource/Walkman_DD_Series", "http://dbpedia.org/resource/Walks_Around_Britain_(TV_series)", "http://dbpedia.org/resource/Wall_Street_Week", "http://dbpedia.org/resource/Wall_of_Chefs", "http://dbpedia.org/resource/Wall_of_Fame_(game_show)", "http://dbpedia.org/resource/Wallace_&_Gromit's_Musical_Marvels", "http://dbpedia.org/resource/Wallace_and_Gromit", "http://dbpedia.org/resource/Wallace_and_Gromit's_Cracking_Contraptions", "http://dbpedia.org/resource/Wallace_and_Gromit's_World_of_Invention", "http://dbpedia.org/resource/Wallander_(British_TV_series)", "http://dbpedia.org/resource/Wallander_(Swedish_TV_series)", "http://dbpedia.org/resource/Wallenberg:_A_Hero's_Story", "http://dbpedia.org/resource/Wallflowers_(web_series)", "http://dbpedia.org/resource/Walliams_&_Friend", "http://dbpedia.org/resource/Walls_of_Constantinople", "http://dbpedia.org/resource/Walls_of_Dubrovnik", "http://dbpedia.org/resource/Walls_of_Nicosia", "http://dbpedia.org/resource/Walls_of_Ston", "http://dbpedia.org/resource/Wally_Gator", "http://dbpedia.org/resource/Wallykazam!", "http://dbpedia.org/resource/Walt:_The_Man_Behind_the_Myth", "http://dbpedia.org/resource/Walt_Disney's_Mickey_Mouse", "http://dbpedia.org/resource/Walt_Disney_(film)", "http://dbpedia.org/resource/Walt_Disney_anthology_television_series", "http://dbpedia.org/resource/Walter_&_Emily", "http://dbpedia.org/resource/Walter_(1982_film)", "http://dbpedia.org/resource/Walter_(2014_film)", "http://dbpedia.org/resource/Walter_Melon_(TV_series)", "http://dbpedia.org/resource/Walter_and_Tandoori", "http://dbpedia.org/resource/Walulis_(web_series)", "http://dbpedia.org/resource/Walulis_sieht_fern", "http://dbpedia.org/resource/Wan-chun", "http://dbpedia.org/resource/Wan_Jai_Gub_Nai_Jom_Ying", "http://dbpedia.org/resource/WandaVision", "http://dbpedia.org/resource/Wanda_Does_It", "http://dbpedia.org/resource/Wanda_at_Large", "http://dbpedia.org/resource/Wander_Over_Yonder", "http://dbpedia.org/resource/Wandering_Son", "http://dbpedia.org/resource/Wanderings_of_Sanmao", "http://dbpedia.org/resource/Wanderlust_(2006_film)", "http://dbpedia.org/resource/Wanderlust_(British_TV_series)", "http://dbpedia.org/resource/Wanderlust_(Irish_TV_series)", "http://dbpedia.org/resource/Wanderly_Wagon", "http://dbpedia.org/resource/Wandjina!", "http://dbpedia.org/resource/Wang's_Family", "http://dbpedia.org/resource/Wangan_Midnight", "http://dbpedia.org/resource/Wanna-Ben", "http://dbpedia.org/resource/Wanna_Be_a_VJ", "http://dbpedia.org/resource/Wanna_Bet%3F", "http://dbpedia.org/resource/Wanna_Come_In%3F", "http://dbpedia.org/resource/Wannabe_(TV_series)", "http://dbpedia.org/resource/Wannabe_Ryan", "http://dbpedia.org/resource/Wansapanataym", "http://dbpedia.org/resource/Want_a_Taste%3F", "http://dbpedia.org/resource/Wanted_(2005_TV_series)", "http://dbpedia.org/resource/Wanted_(2013_TV_program)", "http://dbpedia.org/resource/Wanted_(2016_Australian_TV_series)", "http://dbpedia.org/resource/Wanted_(2016_TV_series)", "http://dbpedia.org/resource/Wanted_(South_Korean_TV_series)", "http://dbpedia.org/resource/Wanted_(TV_series)", "http://dbpedia.org/resource/Wanted_(TV_show)", "http://dbpedia.org/resource/Wanted_(game_show)", "http://dbpedia.org/resource/Wanted_Dead_or_Alive_(TV_series)", "http://dbpedia.org/resource/Wanted_Down_Under", "http://dbpedia.org/resource/Wapta_Glacier", "http://dbpedia.org/resource/Waqt_Batayega_Kaun_Apna_Kaun_Paraya", "http://dbpedia.org/resource/War_&_Peace_(2016_TV_series)", "http://dbpedia.org/resource/War_Art_with_Eddie_Redmayne", "http://dbpedia.org/resource/War_Between_the_Provinces", "http://dbpedia.org/resource/War_Brides_(1980_film)", "http://dbpedia.org/resource/War_Feels_Like_War", "http://dbpedia.org/resource/War_Stories_(comics)", "http://dbpedia.org/resource/War_Stories_with_Oliver_North", "http://dbpedia.org/resource/War_Walks", "http://dbpedia.org/resource/War_Wolves", "http://dbpedia.org/resource/War_and_Beauty", "http://dbpedia.org/resource/War_and_Destiny", "http://dbpedia.org/resource/War_and_Peace_(1972_TV_series)", "http://dbpedia.org/resource/War_and_Peace_(2007_miniseries)", "http://dbpedia.org/resource/War_and_Peace_(opera)", "http://dbpedia.org/resource/War_and_Remembrance_(miniseries)", "http://dbpedia.org/resource/War_in_Peace", "http://dbpedia.org/resource/War_of_Currents", "http://dbpedia.org/resource/War_of_Money", "http://dbpedia.org/resource/War_of_the_Century", "http://dbpedia.org/resource/War_of_the_Cities", "http://dbpedia.org/resource/War_of_the_Flemish_Succession", "http://dbpedia.org/resource/War_of_the_Genders", "http://dbpedia.org/resource/War_of_the_Limburg_Succession", "http://dbpedia.org/resource/War_of_the_Worlds_(1988_TV_series)", "http://dbpedia.org/resource/War_of_the_Worlds_(2019_TV_series)", "http://dbpedia.org/resource/War_of_the_Worlds_2:_The_Next_Wave", "http://dbpedia.org/resource/War_on_Waste", "http://dbpedia.org/resource/Waratte_Iitomo!", "http://dbpedia.org/resource/Warau_Inu", "http://dbpedia.org/resource/Warau_Michael", "http://dbpedia.org/resource/Warbirds_over_Wanaka", "http://dbpedia.org/resource/Warden_of_Red_Rock", "http://dbpedia.org/resource/Warehouse_13", "http://dbpedia.org/resource/Warehouse_13_(season_5)", "http://dbpedia.org/resource/Warhammer_40,000", "http://dbpedia.org/resource/Warhammer_Fantasy_(setting)", "http://dbpedia.org/resource/Wario_(franchise)", "http://dbpedia.org/resource/Waris_(serial)", "http://dbpedia.org/resource/Warm_Springs_(film)", "http://dbpedia.org/resource/Warm_and_Cozy", "http://dbpedia.org/resource/Warner_Archive_Collection", "http://dbpedia.org/resource/Warner_Bros._Presents", "http://dbpedia.org/resource/Warning:_Parental_Advisory", "http://dbpedia.org/resource/Warotenka", "http://dbpedia.org/resource/Warp_10:_Influences,_Classics,_Remixes", "http://dbpedia.org/resource/Warped!", "http://dbpedia.org/resource/Warped_Roadies", "http://dbpedia.org/resource/Warren_(TV_series)", "http://dbpedia.org/resource/Warren_Beatty:_Mister_Hollywood", "http://dbpedia.org/resource/Warren_United", "http://dbpedia.org/resource/Warren_the_Ape", "http://dbpedia.org/resource/Warrior_(TV_series)", "http://dbpedia.org/resource/Warrior_(miniseries)", "http://dbpedia.org/resource/Warrior_Baek_Dong-soo", "http://dbpedia.org/resource/Warrior_Challenge", "http://dbpedia.org/resource/Warrior_Nun_(TV_series)", "http://dbpedia.org/resource/Warrior_Queen", "http://dbpedia.org/resource/Warrior_of_Love_Rainbowman", "http://dbpedia.org/resource/Warrior_tracked_armoured_vehicle", "http://dbpedia.org/resource/Warriors_(1999_TV_series)", "http://dbpedia.org/resource/Warriors_(2009_TV_series)", "http://dbpedia.org/resource/Warriors_in_Transit", "http://dbpedia.org/resource/Warriors_of_Kudlak", "http://dbpedia.org/resource/Warriors_of_the_Yang_Clan", "http://dbpedia.org/resource/Wars_in_Lombardy", "http://dbpedia.org/resource/Wars_of_Bribery", "http://dbpedia.org/resource/Wars_of_In-Laws_II", "http://dbpedia.org/resource/Wars_of_In-laws", "http://dbpedia.org/resource/Wars_of_Li\u00e8ge", "http://dbpedia.org/resource/Wars_of_the_Delian_League", "http://dbpedia.org/resource/Wars_of_the_Diadochi", "http://dbpedia.org/resource/Wars_of_the_Roses", "http://dbpedia.org/resource/Warsaw_Shore", "http://dbpedia.org/resource/Warship_(1973_TV_series)", "http://dbpedia.org/resource/Warship_(2010_TV_series)", "http://dbpedia.org/resource/Wartime_Farm", "http://dbpedia.org/resource/Was_It_Love%3F", "http://dbpedia.org/resource/Was_It_Something_I_Said%3F_(panel_show)", "http://dbpedia.org/resource/Was_Justice_Denied%3F", "http://dbpedia.org/resource/Wasabi_Mon_Amour", "http://dbpedia.org/resource/Washington:_Behind_Closed_Doors", "http://dbpedia.org/resource/Washington_(miniseries)", "http://dbpedia.org/resource/Washington_Bridge_(Providence,_Rhode_Island)", "http://dbpedia.org/resource/Washington_Exclusive", "http://dbpedia.org/resource/Washington_Heights_(TV_series)", "http://dbpedia.org/resource/Washington_Journal", "http://dbpedia.org/resource/Washington_Report_(TV_series)", "http://dbpedia.org/resource/Washington_Watch_with_Roland_Martin", "http://dbpedia.org/resource/Washington_Week", "http://dbpedia.org/resource/Wasted_(British_TV_series)", "http://dbpedia.org/resource/Wasteland_(American_TV_series)", "http://dbpedia.org/resource/Wasteland_(Czech_TV_series)", "http://dbpedia.org/resource/Wata_Rauma", "http://dbpedia.org/resource/Wataha", "http://dbpedia.org/resource/Wataru_Seken_wa_Oni_Bakari", "http://dbpedia.org/resource/Watashi_no_Aozora", "http://dbpedia.org/resource/Watashi_wa_Shadow", "http://dbpedia.org/resource/Watatatow", "http://dbpedia.org/resource/Watch_Mr._Wizard", "http://dbpedia.org/resource/Watch_My_Chops", "http://dbpedia.org/resource/Watch_Over_Me", "http://dbpedia.org/resource/Watch_This_Space", "http://dbpedia.org/resource/Watch_What_Happens_Live_with_Andy_Cohen", "http://dbpedia.org/resource/Watch_Your_Mouth_(TV_series)", "http://dbpedia.org/resource/Watch_the_Sound_with_Mark_Ronson", "http://dbpedia.org/resource/Watch_with_Mother", "http://dbpedia.org/resource/Watchdog_(TV_programme)", "http://dbpedia.org/resource/Watchdog_(TV_series)", "http://dbpedia.org/resource/Watchdog_Test_House", "http://dbpedia.org/resource/Watcher_(TV_series)", "http://dbpedia.org/resource/Watching_(TV_series)", "http://dbpedia.org/resource/Watching_Ellie", "http://dbpedia.org/resource/Watchmen", "http://dbpedia.org/resource/Watchmen:_Motion_Comic", "http://dbpedia.org/resource/Watchmen:_The_End_Is_Nigh", "http://dbpedia.org/resource/Watchmen_(TV_series)", "http://dbpedia.org/resource/Water_(2006_film)", "http://dbpedia.org/resource/Water_Boys_(TV_series)", "http://dbpedia.org/resource/Water_Boys_2", "http://dbpedia.org/resource/Water_Boys_2005_Natsu", "http://dbpedia.org/resource/Water_Boyy:_The_Series", "http://dbpedia.org/resource/Water_Lilies_(Monet_series)", "http://dbpedia.org/resource/Water_Police_(Australian_TV_series)", "http://dbpedia.org/resource/Water_Polo_Yankees", "http://dbpedia.org/resource/Water_Rats_(TV_series)", "http://dbpedia.org/resource/Water_Under_the_Bridge_(miniseries)", "http://dbpedia.org/resource/Water_on_the_Table", "http://dbpedia.org/resource/Watercolour_Challenge", "http://dbpedia.org/resource/Waterfront_(miniseries)", "http://dbpedia.org/resource/Waterfront_Beat", "http://dbpedia.org/resource/Watergate_(TV_series)", "http://dbpedia.org/resource/Disney_Live", "http://dbpedia.org/resource/Disneymania_(series)", "http://dbpedia.org/resource/Disperatamente_Giulia", "http://dbpedia.org/resource/Display_list", "http://dbpedia.org/resource/Disposable_camera", "http://dbpedia.org/resource/Disputation_of_Barcelona", "http://dbpedia.org/resource/Distinguished_Service_to_Music_Medal", "http://dbpedia.org/resource/Dita_(TV_series)", "http://dbpedia.org/resource/Ditmar_Award", "http://dbpedia.org/resource/Dittsche", "http://dbpedia.org/resource/Diva_Las_Vegas", "http://dbpedia.org/resource/Diva_Starz", "http://dbpedia.org/resource/Dive_(TV_series)", "http://dbpedia.org/resource/Diver_Dan", "http://dbpedia.org/resource/Diversitas", "http://dbpedia.org/resource/Divide_Peaks", "http://dbpedia.org/resource/Divine_Canine", "http://dbpedia.org/resource/Divine_Right:_The_Adventures_of_Max_Faraday", "http://dbpedia.org/resource/Dixie_Series", "http://dbpedia.org/resource/Dizzy_(series)", "http://dbpedia.org/resource/Di\u00e1rio_da_Lexa", "http://dbpedia.org/resource/DjangoFest", "http://dbpedia.org/resource/Djinn_(comics)", "http://dbpedia.org/resource/Dmitry_Donskoy_(opera)", "http://dbpedia.org/resource/Dnepropetrovsk_Sputnik", "http://dbpedia.org/resource/Do_Go_On", "http://dbpedia.org/resource/Doberman_Deka", "http://dbpedia.org/resource/Dobol_A_sa_Dobol_B", "http://dbpedia.org/resource/Dobrynya_Nikitich_(opera)", "http://dbpedia.org/resource/Dobr\u00e1_\u010dtvr\u0165", "http://dbpedia.org/resource/Doc_Corkle", "http://dbpedia.org/resource/Doc_Potts", "http://dbpedia.org/resource/Doc_Savage", "http://dbpedia.org/resource/Doc_Zone", "http://dbpedia.org/resource/Dock_Walloper", "http://dbpedia.org/resource/Doctor*Ology", "http://dbpedia.org/resource/Doctor,_Doctor_(talk_show)", "http://dbpedia.org/resource/Doctor_Puppet", "http://dbpedia.org/resource/Doctor_Strange:_The_Oath", "http://dbpedia.org/resource/Doctor_Tomorrow", "http://dbpedia.org/resource/Doctor_Who:_The_Commentaries", "http://dbpedia.org/resource/Doctor_Who_Files", "http://dbpedia.org/resource/Doctor_Who_exhibitions", "http://dbpedia.org/resource/Doctors_to_Be", "http://dbpedia.org/resource/Doctors_to_Be:_20_Years_On", "http://dbpedia.org/resource/Doctrine_of_Labyrinths", "http://dbpedia.org/resource/Document_(TV_series)", "http://dbpedia.org/resource/Dog_Days_(opera)", "http://dbpedia.org/resource/Dog_Falls,_Glen_Affric", "http://dbpedia.org/resource/Dog_Star_Man", "http://dbpedia.org/resource/Dog_Tales", "http://dbpedia.org/resource/Dogs_of_War_(comics)", "http://dbpedia.org/resource/Dogwitch", "http://dbpedia.org/resource/Dogwoman", "http://dbpedia.org/resource/Doki_Doki_Penguin_Land", "http://dbpedia.org/resource/Dokkiri_Doctor", "http://dbpedia.org/resource/Doktor_Martin_(Czech_TV_series)", "http://dbpedia.org/resource/Doktor_Mugg", "http://dbpedia.org/resource/Doktor_Sleepless", "http://dbpedia.org/resource/Dolby_noise-reduction_system", "http://dbpedia.org/resource/Dolce_Vita_&_Co", "http://dbpedia.org/resource/Dolina_sunca", "http://dbpedia.org/resource/Dolores_Hernandez_Lecture_Series", "http://dbpedia.org/resource/Dolphin_Juice", "http://dbpedia.org/resource/Dom-2", "http://dbpedia.org/resource/California_Water_Wars", "http://dbpedia.org/resource/Call_911", "http://dbpedia.org/resource/Call_My_Bluff_(U.S._game_show)", "http://dbpedia.org/resource/Calypso_(telenovela)", "http://dbpedia.org/resource/Cambio_de_piel_(telenovela)", "http://dbpedia.org/resource/Cambodian_Campaign", "http://dbpedia.org/resource/Camila_(telenovela)", "http://dbpedia.org/resource/Camp_Orange_(UK_&_Ireland)", "http://dbpedia.org/resource/Campaign_at_the_Eastern_Foothills_of_Funiu_Mountain", "http://dbpedia.org/resource/Campbell_Brothers", "http://dbpedia.org/resource/Campbell_Brown_(TV_series)", "http://dbpedia.org/resource/Campeonato_Brasileiro_de_Turismo", "http://dbpedia.org/resource/Campeones_de_la_vida_(Mexican_telenovela)", "http://dbpedia.org/resource/Campion_(TV_series)", "http://dbpedia.org/resource/Can_We_Love%3F", "http://dbpedia.org/resource/Fervaal", "http://dbpedia.org/resource/Festspiel_Baden-Baden", "http://dbpedia.org/resource/Festum_Ovorum", "http://dbpedia.org/resource/Feuerdrachen", "http://dbpedia.org/resource/Fevey", "http://dbpedia.org/resource/Fiat-Abarth_750", "http://dbpedia.org/resource/Fiat_B.R.", "http://dbpedia.org/resource/Fibber_McGee_and_Molly", "http://dbpedia.org/resource/Field_camera", "http://dbpedia.org/resource/Fieracavalli", "http://dbpedia.org/resource/Fierrabras_(opera)", "http://dbpedia.org/resource/Fifth_series_of_the_new_Taiwan_dollar_banknote", "http://dbpedia.org/resource/Figaro_Gets_a_Divorce", "http://dbpedia.org/resource/Fight_Science", "http://dbpedia.org/resource/Fight_for_Fame", "http://dbpedia.org/resource/Fight_for_Tomorrow", "http://dbpedia.org/resource/Fighter's_History", "http://dbpedia.org/resource/Fighting_Beauty_Wulong", "http://dbpedia.org/resource/Fighting_Fantasy", "http://dbpedia.org/resource/File_on_4", "http://dbpedia.org/resource/FilmXtra_Uncut", "http://dbpedia.org/resource/Film_Noir_Classic_Collection", "http://dbpedia.org/resource/Film_Superlist", "http://dbpedia.org/resource/Film_chain", "http://dbpedia.org/resource/Filmfare_Award_for_Best_Director", "http://dbpedia.org/resource/Filmfare_Award_for_Best_Female_Debut", "http://dbpedia.org/resource/Filmo", "http://dbpedia.org/resource/Filum_terminale", "http://dbpedia.org/resource/Final_Crisis:_Legion_of_3_Worlds", "http://dbpedia.org/resource/Financial_roadshows", "http://dbpedia.org/resource/Finding_8", "http://dbpedia.org/resource/Finding_the_Fallen", "http://dbpedia.org/resource/FinePix_IS_Pro", "http://dbpedia.org/resource/FinePix_S1_Pro", "http://dbpedia.org/resource/FinePix_S2_Pro", "http://dbpedia.org/resource/FinePix_S3_Pro", "http://dbpedia.org/resource/FinePix_S5_Pro", "http://dbpedia.org/resource/FinePix_S9500", "http://dbpedia.org/resource/Fine_Prints_of_the_Year", "http://dbpedia.org/resource/Finkleman's_45s", "http://dbpedia.org/resource/Finnish_Touring_Car_Championship", "http://dbpedia.org/resource/Finnish_football_league_system", "http://dbpedia.org/resource/Finnish\u2013Novgorodian_wars", "http://dbpedia.org/resource/Fire_Brats", "http://dbpedia.org/resource/Fire_Crackers", "http://dbpedia.org/resource/Firekeeper_Saga", "http://dbpedia.org/resource/Fireproofing", "http://dbpedia.org/resource/Firland", "http://dbpedia.org/resource/First_Appearances", "http://dbpedia.org/resource/First_Fandom_Hall_of_Fame_award", "http://dbpedia.org/resource/Harold_Shea", "http://dbpedia.org/resource/International_Sim\u00f3n_Bol\u00edvar_Prize", "http://dbpedia.org/resource/Jersey_Shore_Shark_Attack", "http://dbpedia.org/resource/King_Sejong_the_Great_(TV_series)", "http://dbpedia.org/resource/Legends_of_Skyfall", "http://dbpedia.org/resource/Lonely_Planet_Six_Degrees", "http://dbpedia.org/resource/MLB:_The_Show", "http://dbpedia.org/resource/MLB_Slugfest", "http://dbpedia.org/resource/Maryland_Sheep_and_Wool_Festival", "http://dbpedia.org/resource/Meg_and_Seron", "http://dbpedia.org/resource/NBA_Showtime", "http://dbpedia.org/resource/Original_songs_in_Smash", "http://dbpedia.org/resource/SABC_Special_Assignment", "http://dbpedia.org/resource/SDS_Sigma_series", "http://dbpedia.org/resource/SEETAL", "http://dbpedia.org/resource/SPHERES", "http://dbpedia.org/resource/Sahasa_Simha_Comics_Series", "http://dbpedia.org/resource/Sal\u00f3n_Internacional_del_Autom\u00f3vil_M\u00e9xico", "http://dbpedia.org/resource/Scholastic_Scrimmage", "http://dbpedia.org/resource/Scourge_of_the_Underworld", "http://dbpedia.org/resource/Scream_of_the_Shalka", "http://dbpedia.org/resource/Screen_Tests", "http://dbpedia.org/resource/Screener", "http://dbpedia.org/resource/Scripted_sequence", "http://dbpedia.org/resource/Scud", "http://dbpedia.org/resource/Scylla_(Gatti)", "http://dbpedia.org/resource/Sea_Hawks_(TV_series)", "http://dbpedia.org/resource/Sea_Stories_(TV_series)", "http://dbpedia.org/resource/Search_Engine_(radio_show)", "http://dbpedia.org/resource/Seaview_(TV_series)", "http://dbpedia.org/resource/Seaview_SVII", "http://dbpedia.org/resource/Second_Chance_(musical)", "http://dbpedia.org/resource/Second_Encirclement_Campaign_against_Jiangxi_Soviet", "http://dbpedia.org/resource/Secret_Agent_(video_game)", "http://dbpedia.org/resource/Secret_History_(TV_series)", "http://dbpedia.org/resource/Secret_History_(book_series)", "http://dbpedia.org/resource/Secret_Origins", "http://dbpedia.org/resource/Secret_Warriors", "http://dbpedia.org/resource/Seducci\u00f3n_(telenovela)", "http://dbpedia.org/resource/Seekers_(novel_series)", "http://dbpedia.org/resource/Selknam_people", "http://dbpedia.org/resource/Semele_(Eccles)", "http://dbpedia.org/resource/Semitic_people", "http://dbpedia.org/resource/Sensei_(First_Comics)", "http://dbpedia.org/resource/Sensible_Soccer", "http://dbpedia.org/resource/Sensitive_Skin_(UK_TV_series)", "http://dbpedia.org/resource/Sentinel_(comic_book)", "http://dbpedia.org/resource/September_Song_(TV_series)", "http://dbpedia.org/resource/Septimus_Heap", "http://dbpedia.org/resource/Sequence_(filmmaking)", "http://dbpedia.org/resource/Sequence_(medicine)", "http://dbpedia.org/resource/Serendipity_(book_series)", "http://dbpedia.org/resource/Service_(motor_vehicle)", "http://dbpedia.org/resource/Seven_Dreams:_A_Book_of_North_American_Landscapes", "http://dbpedia.org/resource/Seven_Sisters,_Sussex", "http://dbpedia.org/resource/Seventh_Avenue_(miniseries)", "http://dbpedia.org/resource/Sex_Ed:_The_Series", "http://dbpedia.org/resource/Se\u00f1ora_(telenovela)", "http://dbpedia.org/resource/Shades_(TV_series)", "http://dbpedia.org/resource/Shades_series", "http://dbpedia.org/resource/Shadows_(anthology)", "http://dbpedia.org/resource/Shaggy_Dog_Story_(TV)", "http://dbpedia.org/resource/Shah_Ismayil_(opera)", "http://dbpedia.org/resource/Shalako", "http://dbpedia.org/resource/Shari_Flanzer", "http://dbpedia.org/resource/Shark:_Mind_of_a_Demon", "http://dbpedia.org/resource/Shark_Bay_(TV_series)", "http://dbpedia.org/resource/Sharpe_(novel_series)", "http://dbpedia.org/resource/Sherlock_Holmes_(1931_film_series)", "http://dbpedia.org/resource/Shimoda_Conference", "http://dbpedia.org/resource/Shinobi_(series)", "http://dbpedia.org/resource/Shivers_(novel_series)", "http://dbpedia.org/resource/Shock_(musical)", "http://dbpedia.org/resource/Shock_Treatment_(TV_series)", "http://dbpedia.org/resource/Shocker_(paintball_marker)", "http://dbpedia.org/resource/Shopaholic_(TV_series)", "http://dbpedia.org/resource/Shopaholic_(novels)", "http://dbpedia.org/resource/Showdown_(game)", "http://dbpedia.org/resource/Showtime_(Croatian_TV_series)", "http://dbpedia.org/resource/Shrapnel_(Radical_Comics)", "http://dbpedia.org/resource/Shuffle_(game_show)", "http://dbpedia.org/resource/SiS_(TV_series)", "http://dbpedia.org/resource/Siegfried_Lorenz", "http://dbpedia.org/resource/Siffleur_Falls", "http://dbpedia.org/resource/Silent_Hill_(comics)", "http://dbpedia.org/resource/Silo_(series)", "http://dbpedia.org/resource/Silverwing_(series)", "http://dbpedia.org/resource/Simba", "http://dbpedia.org/resource/Simplemente_Mar\u00eda_(1969_telenovela)", "http://dbpedia.org/resource/Simplemente_Mar\u00eda_(1989_telenovela)", "http://dbpedia.org/resource/Simplemente_Mar\u00eda_(2015_telenovela)", "http://dbpedia.org/resource/Simplemente_Mar\u00eda_(Venezuelan_telenovela)", "http://dbpedia.org/resource/Singles_(miniseries)", "http://dbpedia.org/resource/Sinister_Dexter", "http://dbpedia.org/resource/Sirena_(telenovela)", "http://dbpedia.org/resource/Siuslaw_people", "http://dbpedia.org/resource/Siva_(rebreather)", "http://dbpedia.org/resource/Skin_(British_TV_programme)", "http://dbpedia.org/resource/Skippers_(TV_programme)", "http://dbpedia.org/resource/Skylanders", "http://dbpedia.org/resource/Skylark_(series)", "http://dbpedia.org/resource/Skylight_Music_Theatre", "http://dbpedia.org/resource/Slavey_people", "http://dbpedia.org/resource/Sled_Storm", "http://dbpedia.org/resource/Sleeper_(comics)", "http://dbpedia.org/resource/Sleeping_Dogs_(TV_series)", "http://dbpedia.org/resource/Sleeping_Dogs_Lie_(1998_film)", "http://dbpedia.org/resource/Slide_show", "http://dbpedia.org/resource/Sloan_Fellowship", "http://dbpedia.org/resource/Slocum_(westerns)", "http://dbpedia.org/resource/Small_Change_trilogy", "http://dbpedia.org/resource/Smena_(camera)", "http://dbpedia.org/resource/Smith's_Bank", "http://dbpedia.org/resource/Smoking_Gun_-_Minkan_Kas\u014dken_Ch\u014dsa'in_Nagareda_Midori", "http://dbpedia.org/resource/Smothers_Brothers", "http://dbpedia.org/resource/Snapshots_(TV_series)", "http://dbpedia.org/resource/Sniper_(film_series)", "http://dbpedia.org/resource/Snotties_(TV_series)", "http://dbpedia.org/resource/Snowfall_Trilogy", "http://dbpedia.org/resource/So_Dark_(TV_series)", "http://dbpedia.org/resource/So_It_Goes_(TV_series)", "http://dbpedia.org/resource/Social_system", "http://dbpedia.org/resource/Soda_(TV_series)", "http://dbpedia.org/resource/Soda_(comics)", "http://dbpedia.org/resource/Software", "http://dbpedia.org/resource/Soil_(manga)", "http://dbpedia.org/resource/Sojourn_(comics)", "http://dbpedia.org/resource/Solo_(DC_Comics)", "http://dbpedia.org/resource/Solus_(comics)", "http://dbpedia.org/resource/Something_Stupid", "http://dbpedia.org/resource/Sons_and_Lovers_(1981_TV_serial)", "http://dbpedia.org/resource/Sony_Entertainment_Television", "http://dbpedia.org/resource/Soo_(puppet)", "http://dbpedia.org/resource/Soon_(musical)", "http://dbpedia.org/resource/Sooty", "http://dbpedia.org/resource/Sophie's_Choice_(opera)", "http://dbpedia.org/resource/Sophie_(book_series)", "http://dbpedia.org/resource/Sound_Advice", "http://dbpedia.org/resource/Sound_of_Colors", "http://dbpedia.org/resource/Soundings_(radio_drama)", "http://dbpedia.org/resource/Soundtrack_'08", "http://dbpedia.org/resource/Southern_Cross_Ten", "http://dbpedia.org/resource/Southern_Discomfort_(Fabian_Society_pamphlets)", "http://dbpedia.org/resource/Space_Adventures_(comics)", "http://dbpedia.org/resource/Space_Battleship_Yamato_2199", "http://dbpedia.org/resource/Space_Museum_(comics)", "http://dbpedia.org/resource/Space_Shots_(trading_cards)", "http://dbpedia.org/resource/Spartacus_Trial", "http://dbpedia.org/resource/Spartan_race", "http://dbpedia.org/resource/Spawn:_Godslayer", "http://dbpedia.org/resource/Speak_&_Spell_(toy)", "http://dbpedia.org/resource/Special_Forces_(comics)", "http://dbpedia.org/resource/Special_Power_Excursion_Reactor_Test_Program", "http://dbpedia.org/resource/Specialty_show", "http://dbpedia.org/resource/Spectra_(installation)", "http://dbpedia.org/resource/Spectrum_(radio_program)", "http://dbpedia.org/resource/Speedball_(video_game)", "http://dbpedia.org/resource/Spelling_Bee_(game_show)", "http://dbpedia.org/resource/Spetsnaz_(miniseries)", "http://dbpedia.org/resource/Spheres_(TV_series)", "http://dbpedia.org/resource/Spitfire_(New_Universe)", "http://dbpedia.org/resource/Splash!_(UK_TV_series)", "http://dbpedia.org/resource/Splatter_Theatre", "http://dbpedia.org/resource/Split_Personality_(game_show)", "http://dbpedia.org/resource/Sponge_(TV_series)", "http://dbpedia.org/resource/Sports_Racer_Series", "http://dbpedia.org/resource/Sports_Tonight_Live", "http://dbpedia.org/resource/Sportsworld_(Canada)", "http://dbpedia.org/resource/Spotlight_(BBC_Northern_Ireland_TV_programme)", "http://dbpedia.org/resource/Sprawl_trilogy", "http://dbpedia.org/resource/Sprint_Cup_Series", "http://dbpedia.org/resource/Sprite_(manga)", "http://dbpedia.org/resource/Spruce_Run_(Delaware_County,_Ohio)", "http://dbpedia.org/resource/Sputnik_(TV_programme)", "http://dbpedia.org/resource/SpyBoy", "http://dbpedia.org/resource/Spy_(2004_TV_series)", "http://dbpedia.org/resource/Square_One_(game_show)", "http://dbpedia.org/resource/St._Clare's_(series)", "http://dbpedia.org/resource/Statens_offentliga_utredningar", "http://dbpedia.org/resource/Super_Sidekicks", "http://dbpedia.org/resource/Tareq_wa_Shireen", "http://dbpedia.org/resource/The_Amazing_Spider-Man", "http://dbpedia.org/resource/The_Florida_SpringFest", "http://dbpedia.org/resource/The_Legend_of_Snow_White", "http://dbpedia.org/resource/The_Sea_of_Fertility", "http://dbpedia.org/resource/The_Secret_City_Adventures", "http://dbpedia.org/resource/The_Secret_Garden_(opera)", "http://dbpedia.org/resource/The_Secret_Seven_(Frank_Richards)", "http://dbpedia.org/resource/The_Seems", "http://dbpedia.org/resource/The_Selector", "http://dbpedia.org/resource/The_Seven_Ages_of_Man_(painting_series)", "http://dbpedia.org/resource/The_Sex_Education_Show", "http://dbpedia.org/resource/The_Siege_of_Belgrade", "http://dbpedia.org/resource/The_Siege_of_Rhodes", "http://dbpedia.org/resource/The_Silent_Service_(TV_series)", "http://dbpedia.org/resource/The_Slot_(TV_series)", "http://dbpedia.org/resource/The_Smurfs_(comics)", "http://dbpedia.org/resource/The_Smurfs_merchandising", "http://dbpedia.org/resource/The_Smurfs_music", "http://dbpedia.org/resource/The_Snow_Queen_(opera)", "http://dbpedia.org/resource/The_Social_(Canadian_TV_series)", "http://dbpedia.org/resource/The_Softwire", "http://dbpedia.org/resource/The_Son_of_a_Gunn_Show", "http://dbpedia.org/resource/The_Spire_(comics)", "http://dbpedia.org/resource/Tom_Slick_(TV_series)", "http://dbpedia.org/resource/United_Slovenia", "http://dbpedia.org/resource/Venom:_Separation_Anxiety", "http://dbpedia.org/resource/Web_series", "http://dbpedia.org/resource/Wikipedia_Seigenthaler_biography_incident", "http://dbpedia.org/resource/Gdleen", "http://dbpedia.org/resource/Gear_Fighter_Dendoh", "http://dbpedia.org/resource/Geek_Code", "http://dbpedia.org/resource/Geekfest", "http://dbpedia.org/resource/Geld.Macht.Liebe", "http://dbpedia.org/resource/Geliebte_Schwestern", "http://dbpedia.org/resource/Gem_Twist", "http://dbpedia.org/resource/Gemini_Awards", "http://dbpedia.org/resource/Gemini_Blood", "http://dbpedia.org/resource/Gen12", "http://dbpedia.org/resource/General_Electric_Summer_Originals", "http://dbpedia.org/resource/General_Foods_25th_Anniversary_Show:_A_Salute_to_Rodgers_and_Hammerstein", "http://dbpedia.org/resource/General_Motors_Motorama", "http://dbpedia.org/resource/Genes_to_Cognition_Project", "http://dbpedia.org/resource/Genesis_Survivor_Gaiarth", "http://dbpedia.org/resource/Geneva_Motor_Show", "http://dbpedia.org/resource/Genitrix_(opera)", "http://dbpedia.org/resource/Genji_Ts\u016bshin_Agedama", "http://dbpedia.org/resource/Genji_monogatari_(opera)", "http://dbpedia.org/resource/Genka_calendar", "http://dbpedia.org/resource/Genoese_colonies", "http://dbpedia.org/resource/Genoese_towers_in_Corsica", "http://dbpedia.org/resource/Genuine_Ken", "http://dbpedia.org/resource/Geoff_and_Judy", "http://dbpedia.org/resource/Geoglyphs_of_Chug-Chug", "http://dbpedia.org/resource/Georg_B\u00fcchner_Prize", "http://dbpedia.org/resource/Charlie_Brown's_All-Stars", "http://dbpedia.org/resource/Chatsbury_bushfire", "http://dbpedia.org/resource/Checkmate_(TV_series)", "http://dbpedia.org/resource/Chef_To_Go", "http://dbpedia.org/resource/Chefs", "http://dbpedia.org/resource/Chen\u2013Chiang_summit", "http://dbpedia.org/resource/Cher_(2008\u20132011_residency_show)", "http://dbpedia.org/resource/Cheshire_County_Show", "http://dbpedia.org/resource/Child_Genius_(TV_Series)", "http://dbpedia.org/resource/Chiller_Theatre_(New_York)", "http://dbpedia.org/resource/Chilula_people", "http://dbpedia.org/resource/China's_Next_Top_Model_(cycle_1)", "http://dbpedia.org/resource/China's_Next_Top_Model_(cycle_2)", "http://dbpedia.org/resource/Chinese_Music_Radio_Awards", "http://dbpedia.org/resource/Chipe_Libre", "http://dbpedia.org/resource/Chiquititas_(2013_telenovela)", "http://dbpedia.org/resource/Chiquititas_(Portugal)", "http://dbpedia.org/resource/Chispita_(telenovela)", "http://dbpedia.org/resource/Chit-Chat_(TV_series)", "http://dbpedia.org/resource/Chithiram_Pesuthadi_(TV_series)", "http://dbpedia.org/resource/Hayom_Yom", "http://dbpedia.org/resource/Hazardous_Inflight_Weather_Advisory_Service", "http://dbpedia.org/resource/Hazel_(comics)", "http://dbpedia.org/resource/Ha\u014d_Taikei_Ry\u016b_Knight", "http://dbpedia.org/resource/He_Shoots,_He_Scores", "http://dbpedia.org/resource/Health_Security_Express", "http://dbpedia.org/resource/Health_in_Latvia", "http://dbpedia.org/resource/Health_stamp", "http://dbpedia.org/resource/Hear_Word!", "http://dbpedia.org/resource/Hearst_Metrotone_News", "http://dbpedia.org/resource/HeartQuest", "http://dbpedia.org/resource/Heart_North_Wales_Coast", "http://dbpedia.org/resource/Heart_of_the_Dragon_(TV_series)", "http://dbpedia.org/resource/Heart_of_the_Matter_(TV_series)", "http://dbpedia.org/resource/Heartbeat_Love", "http://dbpedia.org/resource/Heartbreak_High_(2022_TV_series)", "http://dbpedia.org/resource/Heat_wave_of_1995_derecho_series", "http://dbpedia.org/resource/Heaven's_Will_(manga)", "http://dbpedia.org/resource/Heavenly_Court", "http://dbpedia.org/resource/Heavenly_In-Laws", "http://dbpedia.org/resource/Heavens_Cafe", "http://dbpedia.org/resource/Heavy_Metal_L-Gaim", "http://dbpedia.org/resource/Heavyweight_Champ", "http://dbpedia.org/resource/Heddiw", "http://dbpedia.org/resource/Height_Modernization", "http://dbpedia.org/resource/Heisman_Trophy", "http://dbpedia.org/resource/Helden_der_Kreisklasse", "http://dbpedia.org/resource/Cucumber_(TV_series)", "http://dbpedia.org/resource/Cuidado_con_el_\u00e1ngel_(1959_telenovela)", "http://dbpedia.org/resource/Cumbres_Borrascosas_(1964_telenovela)", "http://dbpedia.org/resource/Cumbres_Borrascosas_(1976_telenovela)", "http://dbpedia.org/resource/Cumbres_Borrascosas_(1979_telenovela)", "http://dbpedia.org/resource/Cuts", "http://dbpedia.org/resource/Cyrus-class_post_ship", "http://dbpedia.org/resource/Animals_Do_the_Funniest_Things", "http://dbpedia.org/resource/EX-treme_Dating", "http://dbpedia.org/resource/Ghostwriter_(TV_series)", "http://dbpedia.org/resource/Gofrette_(book_series)", "http://dbpedia.org/resource/Hit_List_TV", "http://dbpedia.org/resource/Hit_n_Run_Tour_(Kiss_tour)", "http://dbpedia.org/resource/Hollywood_Zombies", "http://dbpedia.org/resource/In_Verrem", "http://dbpedia.org/resource/International_Conference_on_Computer_and_Information_Technology", "http://dbpedia.org/resource/International_Conference_on_Systems_Engineering", "http://dbpedia.org/resource/Jericho_Season_3:_Civil_War", "http://dbpedia.org/resource/John_Scott_Medal", "http://dbpedia.org/resource/Junior_MasterChef_Thailand", "http://dbpedia.org/resource/La_Soir\u00e9e", "http://dbpedia.org/resource/Le_Panorama", "http://dbpedia.org/resource/Le_Pays", "http://dbpedia.org/resource/Lloyd_Hopkins_Trilogy", "http://dbpedia.org/resource/Marvel_Collectors'_Item_Classics", "http://dbpedia.org/resource/Mastropiero_que_nunca", "http://dbpedia.org/resource/My_Australian_Story", "http://dbpedia.org/resource/National_Curriculum_assessment", "http://dbpedia.org/resource/Olympus_E-30", "http://dbpedia.org/resource/PLASA_Show", "http://dbpedia.org/resource/Pass_the_Buck_(U.S._game_show)", "http://dbpedia.org/resource/Personal_Appearance_Theater", "http://dbpedia.org/resource/Pro_Athl\u00e9_Tour", "http://dbpedia.org/resource/Scotty_Iseri", "http://dbpedia.org/resource/Smash_Cuts", "http://dbpedia.org/resource/Snopes_trilogy", "http://dbpedia.org/resource/Southampton_Boat_Show", "http://dbpedia.org/resource/Tales_to_Astonish", "http://dbpedia.org/resource/Taxi_Driver_(TV_series)", "http://dbpedia.org/resource/Tessa_\u2013_Leben_f\u00fcr_die_Liebe", "http://dbpedia.org/resource/The_10_Percenters", "http://dbpedia.org/resource/The_Country_House_Revealed", "http://dbpedia.org/resource/The_Folks_on_the_Hill", "http://dbpedia.org/resource/The_Fosters_(1976_TV_series)", "http://dbpedia.org/resource/The_Gunpowder_Plot:_Exploding_The_Legend", "http://dbpedia.org/resource/The_Moment_of_Truth_(UK_game_show)", "http://dbpedia.org/resource/The_Railroad_Hour", "http://dbpedia.org/resource/The_Reality_of_Speed", "http://dbpedia.org/resource/The_Scott_and_Gary_Show", "http://dbpedia.org/resource/The_Worthing_series", "http://dbpedia.org/resource/Vackor_az_els\u0151_b\u00e9ben", "http://dbpedia.org/resource/Vampire_Ang_Daddy_Ko", "http://dbpedia.org/resource/W5_(TV_series)", "http://dbpedia.org/resource/Wish_You_Were_Here_(TV_series)", "http://dbpedia.org/resource/Yara_(telenovela)", "http://dbpedia.org/resource/Animal_Cops:_Houston", "http://dbpedia.org/resource/Crossroads_(comics)", "http://dbpedia.org/resource/Edge_of_the_Spider-Verse", "http://dbpedia.org/resource/Five_Nights_at_Freddy's_(series)", "http://dbpedia.org/resource/Fox_Sports_Central_Asia", "http://dbpedia.org/resource/G_Force_(TV_series)", "http://dbpedia.org/resource/Hawaii_Five-0_(season_1)", "http://dbpedia.org/resource/Hey,_Hey,_It's_Saturday!_(United_Kingdom)", "http://dbpedia.org/resource/Inset_day", "http://dbpedia.org/resource/Jaankhilavan_Jasoos", "http://dbpedia.org/resource/Japanese_in_Mangaland", "http://dbpedia.org/resource/Jeremy_Hardy_Speaks_to_the_Nation", "http://dbpedia.org/resource/Koecher\u2013Maass_series", "http://dbpedia.org/resource/Kondoa_Irangi_Rock_Paintings", "http://dbpedia.org/resource/Lion_comics", "http://dbpedia.org/resource/Little_Parents,_Big_Charlie", "http://dbpedia.org/resource/Luscombe_8", "http://dbpedia.org/resource/Marvel_Super-Heroes_(comics)", "http://dbpedia.org/resource/Mas_Vale_Tarde", "http://dbpedia.org/resource/Michael_Holigan's_Your_New_House", "http://dbpedia.org/resource/Monsieur_Beaucaire_(opera)", "http://dbpedia.org/resource/MusicVR", "http://dbpedia.org/resource/Music_to_See_(1957_TV_series)", "http://dbpedia.org/resource/N\u00e9vtelen_h\u0151s\u00f6k", "http://dbpedia.org/resource/Olympus_PEN_E-PL7", "http://dbpedia.org/resource/One_Way_Ticket_(2012_sitcom)", "http://dbpedia.org/resource/Phantom_Cam", "http://dbpedia.org/resource/Reisekamera", "http://dbpedia.org/resource/R\u00e9tromobile", "http://dbpedia.org/resource/San_Francisco_Flower_&_Garden_Show", "http://dbpedia.org/resource/Spider-Man:_With_Great_Power", "http://dbpedia.org/resource/Stourport_Ring", "http://dbpedia.org/resource/Strictly_Breaks", "http://dbpedia.org/resource/Tele_Cine_Awards", "http://dbpedia.org/resource/Terminator_2:_Infinity", "http://dbpedia.org/resource/The_DemonWars_Saga", "http://dbpedia.org/resource/The_Rosales_Saga", "http://dbpedia.org/resource/Time_Crisis_(series)", "http://dbpedia.org/resource/Union_Calendar", "http://dbpedia.org/resource/Without_Breasts_There_Is_No_Paradise", "http://dbpedia.org/resource/Young_Heroes_in_Love", "http://dbpedia.org/resource/Hujum", "http://dbpedia.org/resource/Hulk:_Gray", "http://dbpedia.org/resource/Hum_Award_for_Best_Actor", "http://dbpedia.org/resource/Human,_All_Too_Human_(TV_series)", "http://dbpedia.org/resource/Human_Edge", "http://dbpedia.org/resource/Human_Kindness_Day", "http://dbpedia.org/resource/Human_Prey", "http://dbpedia.org/resource/Humble_&_Fred", "http://dbpedia.org/resource/Hume\u2013Adams_dialogue", "http://dbpedia.org/resource/Humpbacks:_From_Fire_to_Ice", "http://dbpedia.org/resource/Humrahi", "http://dbpedia.org/resource/Hungarian_Folk_Tales", "http://dbpedia.org/resource/Hungarian_basketball_league_system", "http://dbpedia.org/resource/Hungarian_handball_league_system", "http://dbpedia.org/resource/Hungarian_water_polo_league_system", "http://dbpedia.org/resource/Hunslet_Mill", "http://dbpedia.org/resource/Hunters_Brooke_arson", "http://dbpedia.org/resource/Hunting_for_Bambi", "http://dbpedia.org/resource/Hunyadi_L\u00e1szl\u00f3_(opera)", "http://dbpedia.org/resource/Hush,_Hush_(series)", "http://dbpedia.org/resource/Hutchinson_Novella", "http://dbpedia.org/resource/Hutsell_Computer_War_Games", "http://dbpedia.org/resource/Hydrogen_Jukebox", "http://dbpedia.org/resource/Hydrothermal_vents_and_seamounts_of_the_Azores", "http://dbpedia.org/resource/Hyper-Actives", "http://dbpedia.org/resource/American_Xplorer", "http://dbpedia.org/resource/Barmageddon", "http://dbpedia.org/resource/Contemporary_Psychoanalytic_Studies", "http://dbpedia.org/resource/Coraz\u00f3n_salvaje_(2009_telenovela)", "http://dbpedia.org/resource/Cybersurfers", "http://dbpedia.org/resource/Database_Console_Commands_(Transact-SQL)", "http://dbpedia.org/resource/Ender's_Game_(series)", "http://dbpedia.org/resource/Foreign_Relations_Series", "http://dbpedia.org/resource/Guadalupe_(telenovela)", "http://dbpedia.org/resource/Gutierritos_(1966_telenovela)", "http://dbpedia.org/resource/Hawaii_Five-0_(season_3)", "http://dbpedia.org/resource/Independent_People_(television)", "http://dbpedia.org/resource/John_W._Campbell_Memorial_Award_for_Best_Science_Fiction_Novel", "http://dbpedia.org/resource/Kerberos_Panzer_J\u00e4ger", "http://dbpedia.org/resource/Knallerfrauen", "http://dbpedia.org/resource/Koa'e_Fault_Zone", "http://dbpedia.org/resource/Kodak_Pixpro_S-1", "http://dbpedia.org/resource/Maggie:_It's_Me", "http://dbpedia.org/resource/Make_Bradford_British", "http://dbpedia.org/resource/Man_vs._Beast", "http://dbpedia.org/resource/Manoram-class_ferry", "http://dbpedia.org/resource/Maths_Mansion", "http://dbpedia.org/resource/Melbourne_Arts_Precinct", "http://dbpedia.org/resource/Mildred_Keith", "http://dbpedia.org/resource/Monk_(CITV)", "http://dbpedia.org/resource/Montyon_Prizes", "http://dbpedia.org/resource/Morrison_Hills", "http://dbpedia.org/resource/Motiv_Liebe", "http://dbpedia.org/resource/Mozart_und_Meisel", "http://dbpedia.org/resource/Mr._Mystic", "http://dbpedia.org/resource/Mundos_opuestos_(telenovela)", "http://dbpedia.org/resource/Music_at_Plush", "http://dbpedia.org/resource/Music_from_Eighteenth-Century_Prague", "http://dbpedia.org/resource/NABC_Player_of_the_Year", "http://dbpedia.org/resource/NFL_Fever_(series)", "http://dbpedia.org/resource/NFL_Full_Contact", "http://dbpedia.org/resource/Napol\u00e9on_(miniseries)", "http://dbpedia.org/resource/Next_Top_Model_(Greece)", "http://dbpedia.org/resource/Nieuport-Delage_Sesquiplan", "http://dbpedia.org/resource/Norge_1:50000", "http://dbpedia.org/resource/Operation_Priha", "http://dbpedia.org/resource/Operation_T\u00e2n", "http://dbpedia.org/resource/Oretachi_Geasen_Zoku_Sono", "http://dbpedia.org/resource/Ottoman\u2013Hotaki_War_(1722\u201327)", "http://dbpedia.org/resource/Oxford_Fashion_Week", "http://dbpedia.org/resource/Panasonic_Lumix_DMC-FZ38", "http://dbpedia.org/resource/Pasi\u00f3n_(telenovela)", "http://dbpedia.org/resource/Pentax_Q7", "http://dbpedia.org/resource/Penthouse_(telenovela)", "http://dbpedia.org/resource/Phantom_Agents", "http://dbpedia.org/resource/Philosophy_in_90_Minutes_series", "http://dbpedia.org/resource/Players_Tour_Championship_2014/2015", "http://dbpedia.org/resource/Pretty_Deadly", "http://dbpedia.org/resource/Professor_Kitzel", "http://dbpedia.org/resource/Pulse_(TV_series)", "http://dbpedia.org/resource/Ripley's_Bureau_of_Investigation", "http://dbpedia.org/resource/Roman\u2013Etruscan_Wars", "http://dbpedia.org/resource/Salyut_programme", "http://dbpedia.org/resource/Saturday_Showcase", "http://dbpedia.org/resource/Screen_Songs", "http://dbpedia.org/resource/Sega_Mega_Drive_Classic_Collection", "http://dbpedia.org/resource/Sexi_Mong", "http://dbpedia.org/resource/Sherlock_Holmes_(puppetry)", "http://dbpedia.org/resource/Skinny_Bitch_Fitness", "http://dbpedia.org/resource/Spooksville", "http://dbpedia.org/resource/Spotlight_(1975_TV_series)", "http://dbpedia.org/resource/Stairway_to_Stardom", "http://dbpedia.org/resource/Star_Cairns", "http://dbpedia.org/resource/Star_Wars:_Jedi_Apprentice", "http://dbpedia.org/resource/Summer_Nights_(concert_tour)", "http://dbpedia.org/resource/Synopses_of_the_British_Fauna", "http://dbpedia.org/resource/Taboo-Tattoo", "http://dbpedia.org/resource/Television_Newsreel", "http://dbpedia.org/resource/The_3rd_Hospital", "http://dbpedia.org/resource/The_Apprentice_(UK_series_seven)", "http://dbpedia.org/resource/The_Astronut_Show", "http://dbpedia.org/resource/The_Beach_Crew", "http://dbpedia.org/resource/The_Brig_Society", "http://dbpedia.org/resource/The_Chase_(U.S._game_show)", "http://dbpedia.org/resource/The_Electrification_of_the_Soviet_Union", "http://dbpedia.org/resource/The_Golden_Touch_of_Frankie_Carle", "http://dbpedia.org/resource/The_Helga_Pictures", "http://dbpedia.org/resource/The_Hot_Breakfast", "http://dbpedia.org/resource/The_Indian_Picture_Opera", "http://dbpedia.org/resource/The_Magickers", "http://dbpedia.org/resource/The_National_Trust_(TV_series)", "http://dbpedia.org/resource/The_Paul_Lynde_Halloween_Special", "http://dbpedia.org/resource/The_Ran_Quadruplets", "http://dbpedia.org/resource/The_Scarlet_Letter_(opera)", "http://dbpedia.org/resource/The_Short_Oxford_History_of_the_Modern_World", "http://dbpedia.org/resource/The_Superior_Foes_of_Spider-Man", "http://dbpedia.org/resource/The_Unsellables_(TV_series)", "http://dbpedia.org/resource/The_Wanderer_(1994_TV_series)", "http://dbpedia.org/resource/The_Wicked_Years", "http://dbpedia.org/resource/The_Widower_(film)", "http://dbpedia.org/resource/The_World_About_Us", "http://dbpedia.org/resource/Toophan", "http://dbpedia.org/resource/Treasure_Hunter", "http://dbpedia.org/resource/Tutinama", "http://dbpedia.org/resource/Ultimate_Comics:_Iron_Man", "http://dbpedia.org/resource/Uncanny_X-Force", "http://dbpedia.org/resource/Variety_Tonight", "http://dbpedia.org/resource/Vater_wider_Willen", "http://dbpedia.org/resource/Vermillion_(Helix)", "http://dbpedia.org/resource/Von_Null_auf_42", "http://dbpedia.org/resource/WNBL_Grand_Final", "http://dbpedia.org/resource/Wanneroo_wetlands", "http://dbpedia.org/resource/Weird_Wars", "http://dbpedia.org/resource/Where_the_Heart_Is_(US_TV_series)", "http://dbpedia.org/resource/Wings_Over_the_World_tour", "http://dbpedia.org/resource/X-Men:_The_198", "http://dbpedia.org/resource/Eagle_series", "http://dbpedia.org/resource/Earth_Defense_Force_(series)", "http://dbpedia.org/resource/Earthsea_(book_series)", "http://dbpedia.org/resource/Dutch_Supercar_Challenge", "http://dbpedia.org/resource/E3_(disambiguation)", "http://dbpedia.org/resource/EOWS", "http://dbpedia.org/resource/ESPN2_College_Football_Friday_Primetime", "http://dbpedia.org/resource/Jasoosi_Dunya", "http://dbpedia.org/resource/Jat_reservation_agitation", "http://dbpedia.org/resource/Jazz_Casual", "http://dbpedia.org/resource/Jazz_Inspired", "http://dbpedia.org/resource/Jazz_Meets_Folk", "http://dbpedia.org/resource/Jazz_Profiles", "http://dbpedia.org/resource/Jazzmatazz", "http://dbpedia.org/resource/Jenny_Sparks:_The_Secret_History_of_the_Authority", "http://dbpedia.org/resource/Jepht\u00e9", "http://dbpedia.org/resource/Jerry_Cornelius", "http://dbpedia.org/resource/Jerry_on_the_Job", "http://dbpedia.org/resource/Jersey_International_Air_Display", "http://dbpedia.org/resource/ATTO_dyes", "http://dbpedia.org/resource/CrankyGeeks", "http://dbpedia.org/resource/Dragon_Ball_Z:_The_Legacy_of_Goku_(series)", "http://dbpedia.org/resource/Erica_Enders-Stevens", "http://dbpedia.org/resource/Kiah_&_Tara_Jean", "http://dbpedia.org/resource/MTV_Force_India_The_Fast_and_The_Gorgeous", "http://dbpedia.org/resource/Marcador_Internacional", "http://dbpedia.org/resource/Norman_Ormal", "http://dbpedia.org/resource/Ontopic", "http://dbpedia.org/resource/Our_House_(UKTV_Style)", "http://dbpedia.org/resource/PBA_on_Sports5", "http://dbpedia.org/resource/Paraquat_murders", "http://dbpedia.org/resource/Ram_Milaayi_Jodi", "http://dbpedia.org/resource/Schnell_ermittelt", "http://dbpedia.org/resource/Split_Ends_(UK_TV_series)", "http://dbpedia.org/resource/Tamer_Wa_Shaw'eyyah", "http://dbpedia.org/resource/The_Amazing_Mr._Malone", "http://dbpedia.org/resource/The_Flying_Dogtor", "http://dbpedia.org/resource/The_Frontier_(TV_series)", "http://dbpedia.org/resource/The_Story_of_Modern_Science", "http://dbpedia.org/resource/The_Unexplained_(2011_TV_series)", "http://dbpedia.org/resource/The_Worst_of_Hollywood", "http://dbpedia.org/resource/Thor_Steingraber", "http://dbpedia.org/resource/Three_Commentaries_on_the_Spring_and_Autumn_Annals", "http://dbpedia.org/resource/Travel_Sick", "http://dbpedia.org/resource/Trucks_and_Tractor_Power", "http://dbpedia.org/resource/Airline_staff_travel", "http://dbpedia.org/resource/Banjul_Cops", "http://dbpedia.org/resource/Bridge_Builder", "http://dbpedia.org/resource/DAG_(TV_series)", "http://dbpedia.org/resource/Eurofest_2007", "http://dbpedia.org/resource/Garage_Matches", "http://dbpedia.org/resource/HYDROSOL", "http://dbpedia.org/resource/I.N.V.U.", "http://dbpedia.org/resource/Judie_Byrd's_Kitchen", "http://dbpedia.org/resource/Jul_i_T\u00f8yengata", "http://dbpedia.org/resource/King_of_the_Royal_Mounted", "http://dbpedia.org/resource/Les_Femmes_en_Blanc", "http://dbpedia.org/resource/Les_plaisirs_de_Versailles", "http://dbpedia.org/resource/Lizzie_The_Lizard", "http://dbpedia.org/resource/Los_disparates", "http://dbpedia.org/resource/Love_Celeb", "http://dbpedia.org/resource/Marina_(telenovela)", "http://dbpedia.org/resource/Mickey_Mouse_and_Friends_(TV_series)", "http://dbpedia.org/resource/Modest-class_barge", "http://dbpedia.org/resource/Myth-o-Mania", "http://dbpedia.org/resource/NOOMA", "http://dbpedia.org/resource/Neptune_Presents", "http://dbpedia.org/resource/Nikon_Coolpix_7900", "http://dbpedia.org/resource/Noche_de_Gala", "http://dbpedia.org/resource/Open_Door_(BBC_TV)", "http://dbpedia.org/resource/Out_of_the_Fog_(TV_series)", "http://dbpedia.org/resource/Outriders", "http://dbpedia.org/resource/Paddington_(1975_TV_series)", "http://dbpedia.org/resource/Pals_For_Life", "http://dbpedia.org/resource/Proceedings_of_the_British_Academy", "http://dbpedia.org/resource/Project_Gotham_Racing_(series)", "http://dbpedia.org/resource/Psychedelic_States", "http://dbpedia.org/resource/RS_Integrator", "http://dbpedia.org/resource/Rajshree-class_inshore_patrol_vessel", "http://dbpedia.org/resource/Richard_Edgar", "http://dbpedia.org/resource/Sex_and_Shopping", "http://dbpedia.org/resource/Slinky_Malinki", "http://dbpedia.org/resource/Slinky_Malinki_Open_The_Door", "http://dbpedia.org/resource/Sportsline_(Sky_News)", "http://dbpedia.org/resource/Steel_Monsters", "http://dbpedia.org/resource/Story_of_the_Nations_series", "http://dbpedia.org/resource/Strat_Plus", "http://dbpedia.org/resource/Super_Kwentuhan", "http://dbpedia.org/resource/Taien_calendar", "http://dbpedia.org/resource/Telstra_Business_Awards", "http://dbpedia.org/resource/The_Allan_Stewart_Tapes", "http://dbpedia.org/resource/The_Brave_Fighter_of_Legend_Da-Garn", "http://dbpedia.org/resource/The_Calendar_of_Nature", "http://dbpedia.org/resource/The_Catholic_Hour_(TV_series)", "http://dbpedia.org/resource/The_Den_(Ireland)", "http://dbpedia.org/resource/The_Hungry_Detective", "http://dbpedia.org/resource/The_Mentor_Philosophers", "http://dbpedia.org/resource/The_Miracle_of_Bali", "http://dbpedia.org/resource/The_Pat_Kenny_Show", "http://dbpedia.org/resource/The_Queendom_of_Sol", "http://dbpedia.org/resource/The_Sierra_Jensen_Series", "http://dbpedia.org/resource/The_Silent_Ones_(comics)", "http://dbpedia.org/resource/The_Sword_of_Truth", "http://dbpedia.org/resource/The_Tommy_Hanlon_Show", "http://dbpedia.org/resource/The_Wright_Taste", "http://dbpedia.org/resource/This_Is_Your_Life_(UK_TV_series)", "http://dbpedia.org/resource/Th\u00e9\u00e2tre_Optique", "http://dbpedia.org/resource/Tonight_(TVNZ_television_programme)", "http://dbpedia.org/resource/United_States_naval_gunfire_support_debate", "http://dbpedia.org/resource/Valeria_(telenovela)", "http://dbpedia.org/resource/Venom:_Lethal_Protector", "http://dbpedia.org/resource/Wakakusa_no_Charlotte", "http://dbpedia.org/resource/Waverley_Novels", "http://dbpedia.org/resource/Weekend_Escapes_with_Warwick_Davis", "http://dbpedia.org/resource/Wil_&_Lehmo", "http://dbpedia.org/resource/Wyoming_Marathon", "http://dbpedia.org/resource/Xuanming_calendar", "http://dbpedia.org/resource/Zaregoto_Series", "http://dbpedia.org/resource/Escobar,_el_Patr\u00f3n_del_Mal", "http://dbpedia.org/resource/Esmeralda_(Brazilian_telenovela)", "http://dbpedia.org/resource/Espejismo_(telenovela)", "http://dbpedia.org/resource/Estafa_de_amor_(1968_telenovela)", "http://dbpedia.org/resource/Esther_(opera)", "http://dbpedia.org/resource/Action_Movie_Kid", "http://dbpedia.org/resource/Coliseum_Mineral,_Fossil,_Gem,_and_Jewelry_Show", "http://dbpedia.org/resource/Dog_&_Cat_Training_with_Joel_Silverman", "http://dbpedia.org/resource/Eastside_Hockey_Manager_series", "http://dbpedia.org/resource/Forever_(U.S._TV_series)", "http://dbpedia.org/resource/Full_Color_Football:_The_History_of_the_American_Football_League", "http://dbpedia.org/resource/Give_Us_This_Day_(Australian_TV_series)", "http://dbpedia.org/resource/Good_Morning,_Internet!", "http://dbpedia.org/resource/ICC_Africa_Under-19_Championships", "http://dbpedia.org/resource/In_Person_(TV_series)", "http://dbpedia.org/resource/Jinnah\u2013Mountbatten_Talks", "http://dbpedia.org/resource/June_Field", "http://dbpedia.org/resource/Keep_It_in_the_Family_(U.S._game_show)", "http://dbpedia.org/resource/La_mujer_prohibida_(1991_telenovela)", "http://dbpedia.org/resource/La_vie_secr\u00e8te_des_jeunes", "http://dbpedia.org/resource/Le_Club_des_100_Watts", "http://dbpedia.org/resource/Le_lac_des_f\u00e9es", "http://dbpedia.org/resource/Lent_Bumps_2015", "http://dbpedia.org/resource/Lepa_Brena_Live_at_Dom_sindikata", "http://dbpedia.org/resource/List_of_The_Middle_characters", "http://dbpedia.org/resource/Liverpool_Boat_Show", "http://dbpedia.org/resource/Lunar_Orbiter_program", "http://dbpedia.org/resource/Magic_Pickle", "http://dbpedia.org/resource/Manhattan_Connection", "http://dbpedia.org/resource/Marketplace_(Irish_TV_series)", "http://dbpedia.org/resource/Mati_O_Manush", "http://dbpedia.org/resource/Matri_Shree_Media_Award", "http://dbpedia.org/resource/Mi_amor_por_ti", "http://dbpedia.org/resource/Mike's_On", "http://dbpedia.org/resource/Milano-Roma", "http://dbpedia.org/resource/Mr._Interesting's_Guide_to_the_Continental_United_States", "http://dbpedia.org/resource/Mr._and_Mrs._Spider-Man", "http://dbpedia.org/resource/My_Destiny_(TV_series)", "http://dbpedia.org/resource/My_Dysfunctional_Family", "http://dbpedia.org/resource/M\u00e1s_all\u00e1_de_la_muerte", "http://dbpedia.org/resource/Neva_Enfilade_of_the_Winter_Palace", "http://dbpedia.org/resource/Ninja_Spirit_(video_series)", "http://dbpedia.org/resource/Nit\u00e9tis", "http://dbpedia.org/resource/OMAP", "http://dbpedia.org/resource/Off_to_See_the_Wizard", "http://dbpedia.org/resource/On_the_Fringe", "http://dbpedia.org/resource/Opera_Theatre_of_Lucca", "http://dbpedia.org/resource/Operation_Liberate_Men", "http://dbpedia.org/resource/Otoriyose_\u014cji_Iida_Yoshimi", "http://dbpedia.org/resource/Parent_Rescue", "http://dbpedia.org/resource/Pentax_*ist_DL", "http://dbpedia.org/resource/Periods.", "http://dbpedia.org/resource/Petrotrin_oil_spill", "http://dbpedia.org/resource/Phoenix14news", "http://dbpedia.org/resource/Planes_That_Never_Flew", "http://dbpedia.org/resource/Popstars_(UK_TV_series)", "http://dbpedia.org/resource/Power_Play_(Canadian_political_affairs_series)", "http://dbpedia.org/resource/Prime_Time_Sports", "http://dbpedia.org/resource/Product_pipeline", "http://dbpedia.org/resource/Property_Shop", "http://dbpedia.org/resource/Pupu_Tupuna", "http://dbpedia.org/resource/Russian_Dolls_(U.S._TV_series)", "http://dbpedia.org/resource/SOKO_Rhein-Main", "http://dbpedia.org/resource/Santa_Paws", "http://dbpedia.org/resource/Shadow_Hearts_(series)", "http://dbpedia.org/resource/Spell_Cast", "http://dbpedia.org/resource/SunPCi", "http://dbpedia.org/resource/Sunday_Football_(AFL)", "http://dbpedia.org/resource/Sunday_Suspense", "http://dbpedia.org/resource/Surprise_Sur_Prise", "http://dbpedia.org/resource/S\u00e1bado_Al_Mediod\u00eda", "http://dbpedia.org/resource/TVNZ_Teletext", "http://dbpedia.org/resource/TV_Patrol_Caraga", "http://dbpedia.org/resource/The_Bounty_Hunter_Wars", "http://dbpedia.org/resource/The_Catholic_Guy", "http://dbpedia.org/resource/The_Dark_Tower:_Battle_of_Jericho_Hill", "http://dbpedia.org/resource/The_Holdfast_Chronicles", "http://dbpedia.org/resource/The_Little_Revue", "http://dbpedia.org/resource/The_Parade_of_States", "http://dbpedia.org/resource/The_Shock_of_the_New", "http://dbpedia.org/resource/The_Snow_Queen_(anime)", "http://dbpedia.org/resource/The_Trek_Life", "http://dbpedia.org/resource/The_Vinyl_Cafe", "http://dbpedia.org/resource/The_Who_Tour_1965", "http://dbpedia.org/resource/Theory_of_Lie_groups", "http://dbpedia.org/resource/Think_Fast_(game_show)", "http://dbpedia.org/resource/Tuborg_GreenFest", "http://dbpedia.org/resource/Ultimate_Motorhead_Show", "http://dbpedia.org/resource/Un_si\u00e8cle_d'\u00e9crivains", "http://dbpedia.org/resource/Uncensored_from_Texas_Death_Row", "http://dbpedia.org/resource/Vanessa_(TV_series)", "http://dbpedia.org/resource/Veep_(TV_series)", "http://dbpedia.org/resource/We_Are_the_Eighties", "http://dbpedia.org/resource/Wiley_Bad_Science_Series", "http://dbpedia.org/resource/Wrestling_Spirit", "http://dbpedia.org/resource/YU_retROCKspektiva", "http://dbpedia.org/resource/Seoul_Motor_Show", "http://dbpedia.org/resource/June_2008_tornado_outbreak_sequence", "http://dbpedia.org/resource/J\u016bs\u014d_Kik\u014d_Dancouga_Nova", "http://dbpedia.org/resource/Kin'iro_no_Corda:_The_After_School_Etude", "http://dbpedia.org/resource/Kumikyoku_Nico_Nico_Douga", "http://dbpedia.org/resource/Legends_of_Hockey", "http://dbpedia.org/resource/Les_plus_grands_Belges", "http://dbpedia.org/resource/Men's_Fashion_Insider", "http://dbpedia.org/resource/Mistresses_(UK_TV_series)", "http://dbpedia.org/resource/Nokia_5200", "http://dbpedia.org/resource/Northern_Moravia_witch_trials", "http://dbpedia.org/resource/Oblivious_(U.S._game_show)", "http://dbpedia.org/resource/Piatigorsky_Cup", "http://dbpedia.org/resource/Sunday_Night_at_10", "http://dbpedia.org/resource/The_Space_Ship_Under_the_Apple_Tree", "http://dbpedia.org/resource/The_World_in_Action", "http://dbpedia.org/resource/24K_(radio_show)", "http://dbpedia.org/resource/Appointment_with_Adventure", "http://dbpedia.org/resource/Expedici\u00f3n_Robinson", "http://dbpedia.org/resource/F\u00eate_Galante_(opera)", "http://dbpedia.org/resource/Glamour_Solos", "http://dbpedia.org/resource/Greensleeves_Rhythm_Album", "http://dbpedia.org/resource/High_Score_Girl", "http://dbpedia.org/resource/ISpy", "http://dbpedia.org/resource/Kinder,_Kinder", "http://dbpedia.org/resource/La_caverne", "http://dbpedia.org/resource/Le_crescendo", "http://dbpedia.org/resource/Leica_X_Vario", "http://dbpedia.org/resource/Life_in_Progress", "http://dbpedia.org/resource/Louisville_sewer_explosions", "http://dbpedia.org/resource/MTV_World_Stage_Live_in_Malaysia", "http://dbpedia.org/resource/Main_Julian_England", "http://dbpedia.org/resource/Malta_Convoys", "http://dbpedia.org/resource/Man_Booker_International_Prize", "http://dbpedia.org/resource/Mart\u00edn_Rivas_(telenovela)", "http://dbpedia.org/resource/Meet_the_Stans", "http://dbpedia.org/resource/Mumbai_Confidential", "http://dbpedia.org/resource/Nebula_Award_for_Best_Short_Story", "http://dbpedia.org/resource/Official_National_Lampoon_Bicentennial_Calendar_1976", "http://dbpedia.org/resource/Olympus_mju", "http://dbpedia.org/resource/On_Your_Behalf", "http://dbpedia.org/resource/Oxford_Chemistry_Primers", "http://dbpedia.org/resource/P3_Dokument\u00e4r", "http://dbpedia.org/resource/PTV_Global", "http://dbpedia.org/resource/Peavey_ValveKing", "http://dbpedia.org/resource/Peter_Steiners_Theaterstadl", "http://dbpedia.org/resource/Piano_Lesson_(TV_series)", "http://dbpedia.org/resource/Priest's_Spell_Compendium", "http://dbpedia.org/resource/Proleptic_calendar", "http://dbpedia.org/resource/Rawdatu_'s-safa", "http://dbpedia.org/resource/Red_Bull_Music_Academy", "http://dbpedia.org/resource/Red_Guards_on_Honghu_Lake", "http://dbpedia.org/resource/Red_White_&_New", "http://dbpedia.org/resource/Robertson_Cup_Championship_Tournament", "http://dbpedia.org/resource/Rote_Bergsteiger_(TV_series)", "http://dbpedia.org/resource/Sail_Indonesia", "http://dbpedia.org/resource/Scaly_Adventures", "http://dbpedia.org/resource/Scania_F-series", "http://dbpedia.org/resource/Sesquicentenary_Celebrations_Series", "http://dbpedia.org/resource/Shane_(UK_TV_series)", "http://dbpedia.org/resource/Shirley_Abicair_in_Australia", "http://dbpedia.org/resource/Solaris_Urbino_10", "http://dbpedia.org/resource/Sony_Cyber-shot_DSC-RX100_IV", "http://dbpedia.org/resource/Sprite_(soft_drink)", "http://dbpedia.org/resource/Super_thermal_power_station", "http://dbpedia.org/resource/Swing_Easy_(TV_series)", "http://dbpedia.org/resource/Sylvain_et_Sylvette", "http://dbpedia.org/resource/The_Best_of_the_Post", "http://dbpedia.org/resource/The_Disney_Collection:_The_Best-Loved_Songs_from_Disney_Motion_Pictures,_Television,_and_Theme_Parks", "http://dbpedia.org/resource/The_Essentials_(TCM)", "http://dbpedia.org/resource/The_Likeaballs", "http://dbpedia.org/resource/The_Magic_School_Bus_(book_series)", "http://dbpedia.org/resource/The_Mike_Bullard_Show", "http://dbpedia.org/resource/The_New_Heroes", "http://dbpedia.org/resource/The_Pattern_of_Marriage", "http://dbpedia.org/resource/The_Star_and_the_Story", "http://dbpedia.org/resource/The_Towers_of_Bois-Maury", "http://dbpedia.org/resource/The_Wild_Soccer_Bunch", "http://dbpedia.org/resource/This_is_Your_Laugh", "http://dbpedia.org/resource/Top_Guns", "http://dbpedia.org/resource/Tsubu_Doll", "http://dbpedia.org/resource/Ultra_Marines", "http://dbpedia.org/resource/Una_mujer_(1965_telenovela)", "http://dbpedia.org/resource/Unterwegs_nach_Atlantis_(TV_series)", "http://dbpedia.org/resource/Video_Smash_Hits", "http://dbpedia.org/resource/Walter_Sutcliffe", "http://dbpedia.org/resource/Western_Holiday", "http://dbpedia.org/resource/Your_Life_in_Their_Hands", "http://dbpedia.org/resource/\u00c1gua_Viva_(telenovela)", "http://dbpedia.org/resource/2_Minute_Drill", "http://dbpedia.org/resource/America's_Money_Class_with_Suze_Orman", "http://dbpedia.org/resource/America_\u014cdan_Ultra_Quiz", "http://dbpedia.org/resource/Animal_Cops:_South_Africa", "http://dbpedia.org/resource/Associated_Shades", "http://dbpedia.org/resource/Cool_Zone", "http://dbpedia.org/resource/Die_Didi-Show", "http://dbpedia.org/resource/Fish_(U.S._TV_series)", "http://dbpedia.org/resource/Fons_and_Porter's_Love_of_Quilting", "http://dbpedia.org/resource/Friday_Island_(TV_show)", "http://dbpedia.org/resource/Give_Us_This_Day_(TV_show)", "http://dbpedia.org/resource/Grandpa_Read's_Quiet_Time_Tales", "http://dbpedia.org/resource/Happiness_(TV_series)", "http://dbpedia.org/resource/Hollywood_or_Bust_(TV_series)", "http://dbpedia.org/resource/House_Calendar", "http://dbpedia.org/resource/Japan_Academy_Prize_for_Outstanding_Performance_by_an_Actor_in_a_Leading_Role", "http://dbpedia.org/resource/Kaiki_Renai_Sakusen", "http://dbpedia.org/resource/King_of_Vegas", "http://dbpedia.org/resource/Kodak_EasyShare_DX6490", "http://dbpedia.org/resource/Korean_DMZ_Conflict_(1966\u201369)", "http://dbpedia.org/resource/La_Femme_Nikita:_Music_from_the_Television_Series", "http://dbpedia.org/resource/Larry_King_Now", "http://dbpedia.org/resource/Legacy_of_the_Drow", "http://dbpedia.org/resource/Legionnaires_3", "http://dbpedia.org/resource/Leica_M4", "http://dbpedia.org/resource/Licence_to_Grill", "http://dbpedia.org/resource/Local_Edition", "http://dbpedia.org/resource/Locus_Award_for_Best_Short_Story", "http://dbpedia.org/resource/Man-seated:_arms_in_adoration_(hieroglyph)", "http://dbpedia.org/resource/Manu_Rere", "http://dbpedia.org/resource/Marian_Engel_Award", "http://dbpedia.org/resource/Marie_de'_Medici_cycle", "http://dbpedia.org/resource/Marvel_Super_Hero_Squad", "http://dbpedia.org/resource/Mastigont_system", "http://dbpedia.org/resource/Meet_McGraw", "http://dbpedia.org/resource/Mike,_der_Taschengeldexperte", "http://dbpedia.org/resource/Mitsudomoe_(manga)", "http://dbpedia.org/resource/Mountain_Dew_Vertical_Challenge", "http://dbpedia.org/resource/Mr._Personality", "http://dbpedia.org/resource/Mutiny_Acts", "http://dbpedia.org/resource/NATO_targets", "http://dbpedia.org/resource/NForce_700", "http://dbpedia.org/resource/Naniwa_Kin'y\u016bd\u014d", "http://dbpedia.org/resource/Nathans_Circus", "http://dbpedia.org/resource/Neo_Pornographia", "http://dbpedia.org/resource/Noises,_Sounds_&_Sweet_Airs", "http://dbpedia.org/resource/Noticiero_Cript\u00f3n", "http://dbpedia.org/resource/On-ride_camera", "http://dbpedia.org/resource/On_the_Real", "http://dbpedia.org/resource/One_Night_Stand_(U.S._TV_series)", "http://dbpedia.org/resource/Pilot_&_Huxley", "http://dbpedia.org/resource/Piltdown,_East_Sussex", "http://dbpedia.org/resource/Pressure_Cooker_(game_show)", "http://dbpedia.org/resource/Provincial_Geographies_of_India", "http://dbpedia.org/resource/Reina_de_corazones_(American_telenovela)", "http://dbpedia.org/resource/Rikki_and_Me", "http://dbpedia.org/resource/Roshan_Sitara", "http://dbpedia.org/resource/Rough_Crossing_(TV_series)", "http://dbpedia.org/resource/Rugrats_Pre-School_Daze", "http://dbpedia.org/resource/Running_Man_(TV_series)", "http://dbpedia.org/resource/SD_Gundam_G_Generation", "http://dbpedia.org/resource/Sandymount_Strand", "http://dbpedia.org/resource/SevenMeters", "http://dbpedia.org/resource/Shell's_Wonderful_World_of_Golf", "http://dbpedia.org/resource/Sony_A5000", "http://dbpedia.org/resource/South_Sinai_regional_development_programme", "http://dbpedia.org/resource/Sports_Today", "http://dbpedia.org/resource/Spotlight_(2008_TV_series)", "http://dbpedia.org/resource/Strip_Poker_(game_show)", "http://dbpedia.org/resource/Sunny_Days_and_Nights", "http://dbpedia.org/resource/Sword_and_Sorceress_series", "http://dbpedia.org/resource/TEXUS", "http://dbpedia.org/resource/TV_Hell", "http://dbpedia.org/resource/TV_Patrol_Pampanga", "http://dbpedia.org/resource/Thai_lunar_calendar", "http://dbpedia.org/resource/Thanks_of_Congress", "http://dbpedia.org/resource/That'll_Be_the_Day_(musical)", "http://dbpedia.org/resource/That's_My_Desire_(TV_series)", "http://dbpedia.org/resource/The_American_Revolution_(miniseries)", "http://dbpedia.org/resource/The_Ballad_of_Canal", "http://dbpedia.org/resource/The_Black_Man's_Land_Trilogy", "http://dbpedia.org/resource/The_Dark_Tower:_The_Little_Sisters_of_Eluria", "http://dbpedia.org/resource/The_Golden_Show", "http://dbpedia.org/resource/The_Mole_(U.S._TV_series)", "http://dbpedia.org/resource/The_Morbegs", "http://dbpedia.org/resource/The_Sadhu", "http://dbpedia.org/resource/Th\u00e9s\u00e9e_(Gossec)", "http://dbpedia.org/resource/Tin_Goyenda", "http://dbpedia.org/resource/Tombs_of_Malta", "http://dbpedia.org/resource/Tonda_Couple", "http://dbpedia.org/resource/Tonight_(TV_programme)", "http://dbpedia.org/resource/Ultimate_Power", "http://dbpedia.org/resource/Un_caso_di_coscienza_(TV_series)", "http://dbpedia.org/resource/Weltflug.tv_\u2013_The_Gyrocopter_World_Tour", "http://dbpedia.org/resource/Wildfire_(TV_series)", "http://dbpedia.org/resource/Worldwide_Soccer:_Euro_Edition", "http://dbpedia.org/resource/X-Men_Unlimited", "http://dbpedia.org/resource/Yele_Sambat", "http://dbpedia.org/resource/Yuri_Seijin_Naoko-san", "http://dbpedia.org/resource/\u010cty\u0159l\u00edstek", "http://dbpedia.org/resource/Kunicon", "http://dbpedia.org/resource/Kupetzky_(TV_series)", "http://dbpedia.org/resource/Kvarteret_Skatan", "http://dbpedia.org/resource/L'Affaire_Labricole", "http://dbpedia.org/resource/L'ambassadrice", "http://dbpedia.org/resource/L'amor_coniugale", "http://dbpedia.org/resource/L'heureux_malgr\u00e9_lui", "http://dbpedia.org/resource/L'incoronazione_di_Poppea", "http://dbpedia.org/resource/L'oriflamme_(opera)", "http://dbpedia.org/resource/L'\u00c9cole_des_fans", "http://dbpedia.org/resource/L'\u00c9l\u00e8ve_Ducobu", "http://dbpedia.org/resource/L'\u00c9tat_de_Grace", "http://dbpedia.org/resource/L'\u00c9t\u00e9_indien_(TV_program)", "http://dbpedia.org/resource/After_the_Attack", "http://dbpedia.org/resource/Bagong_Umaga,_Bagong_Balita", "http://dbpedia.org/resource/CLICK_Barkada_Hunt", "http://dbpedia.org/resource/David_Haye_versus", "http://dbpedia.org/resource/E-Branch_Trilogy", "http://dbpedia.org/resource/Family_Beef", "http://dbpedia.org/resource/Grand_Slam_(1990_TV_series)", "http://dbpedia.org/resource/Grand_Slam_(U.S._game_show)", "http://dbpedia.org/resource/Greg_Anderson_(dragster_driver)", "http://dbpedia.org/resource/Horrible_Histories:_Nottingham", "http://dbpedia.org/resource/It's_a_Wise_Child", "http://dbpedia.org/resource/Jock_Jams", "http://dbpedia.org/resource/Jonah_(miniseries)", "http://dbpedia.org/resource/Kerala_State_Film_Award", "http://dbpedia.org/resource/Kick-Ass_2_(comics)", "http://dbpedia.org/resource/La_mujer_de_Judas_(Mexican_telenovela)", "http://dbpedia.org/resource/Legacy_of_the_May_Revolution", "http://dbpedia.org/resource/Lent_Bumps_2005", "http://dbpedia.org/resource/Live_by_Request", "http://dbpedia.org/resource/Los_Horcones_massacre", "http://dbpedia.org/resource/Low_Carbon_Building_Programme", "http://dbpedia.org/resource/Lucy_of_the_Southern_Rainbow", "http://dbpedia.org/resource/MTV_Video_Music_Award_for_Best_Art_Direction", "http://dbpedia.org/resource/Machos_(telenovela)", "http://dbpedia.org/resource/Magdalena_(telenovela)", "http://dbpedia.org/resource/Making_Miracles", "http://dbpedia.org/resource/Mandingo_Massacre", "http://dbpedia.org/resource/Martin_Shaw:_Aviators", "http://dbpedia.org/resource/Masters_of_Survival", "http://dbpedia.org/resource/Medita\u00e7\u00e3o_(prose)", "http://dbpedia.org/resource/Meri_Saheli_Meri_Humjoli", "http://dbpedia.org/resource/Michael_Bentine's_Potty_Time", "http://dbpedia.org/resource/Misterbnb", "http://dbpedia.org/resource/Modern_Pentathlon_World_Cup", "http://dbpedia.org/resource/Moral_Essays", "http://dbpedia.org/resource/Morning_Star_(Philippine_TV_show)", "http://dbpedia.org/resource/Music_of_the_Front_Mission_series", "http://dbpedia.org/resource/NForce_500", "http://dbpedia.org/resource/NHL_FaceOff", "http://dbpedia.org/resource/Nass_Mlah_City_2", "http://dbpedia.org/resource/Near_Death_(comics)", "http://dbpedia.org/resource/Night_Court_U.S.A.", "http://dbpedia.org/resource/Nikolai_Dante", "http://dbpedia.org/resource/Noticieros_56", "http://dbpedia.org/resource/Nzebi_languages", "http://dbpedia.org/resource/Official_DC_Index", "http://dbpedia.org/resource/Official_History_of_Australia_in_the_War_of_1914\u20131918", "http://dbpedia.org/resource/Open_de_Nice_C\u00f4te_d'Azur", "http://dbpedia.org/resource/Outside_Source", "http://dbpedia.org/resource/PUC19", "http://dbpedia.org/resource/Paddington_Bear_(1989_TV_series)", "http://dbpedia.org/resource/Panasonic_Lumix_DMC-LZ30", "http://dbpedia.org/resource/Pay_Off_Your_Mortgage_in_Two_Years", "http://dbpedia.org/resource/Pop,_Songs_&_Death", "http://dbpedia.org/resource/Princess_Fragrant", "http://dbpedia.org/resource/Proware_Epica_(RAID_series)", "http://dbpedia.org/resource/Q_&_Q", "http://dbpedia.org/resource/Quantum_and_Woody", "http://dbpedia.org/resource/Quirpa_de_Tres_Mujeres", "http://dbpedia.org/resource/Rabbit_Bites", "http://dbpedia.org/resource/Richard_Ng_six_star_gau_gau_zan", "http://dbpedia.org/resource/Rio_Del_Mar_(1999_TV_series)", "http://dbpedia.org/resource/Roland_CUBE", "http://dbpedia.org/resource/Rolleicord", "http://dbpedia.org/resource/Root_beer", "http://dbpedia.org/resource/Royal_Lancashire_Show", "http://dbpedia.org/resource/Seven_Second_Delay", "http://dbpedia.org/resource/Shaman's_Tears", "http://dbpedia.org/resource/Sicilian_Film_Festival", "http://dbpedia.org/resource/Six_Degrees", "http://dbpedia.org/resource/Sony_Handycam_NEX-VG10", "http://dbpedia.org/resource/Sony_Vaio_FW_series", "http://dbpedia.org/resource/Spaceware_Sky_Vision_II", "http://dbpedia.org/resource/Spirit_Bay", "http://dbpedia.org/resource/Sports_Tonight_(Ireland)", "http://dbpedia.org/resource/Spy_High", "http://dbpedia.org/resource/Star_Knows_My_Heart", "http://dbpedia.org/resource/Suffolk_Show", "http://dbpedia.org/resource/Super_Agent", "http://dbpedia.org/resource/Survivor_(TV_series)", "http://dbpedia.org/resource/Survivor_Live", "http://dbpedia.org/resource/Takio", "http://dbpedia.org/resource/Tales_of_the_Zombie", "http://dbpedia.org/resource/Tektronix_4050", "http://dbpedia.org/resource/The_ALTdot_COMedy_Lounge", "http://dbpedia.org/resource/The_AWA_Review", "http://dbpedia.org/resource/The_Addams_Family_(1992_animated_series)", "http://dbpedia.org/resource/The_Annual_World's_Best_SF", "http://dbpedia.org/resource/The_Back_Series", "http://dbpedia.org/resource/The_Best_American_Short_Stories", "http://dbpedia.org/resource/The_Big_Show_(with_Manic_Mike)", "http://dbpedia.org/resource/The_Blue_Octavo_Notebooks", "http://dbpedia.org/resource/The_Cartoon_History_of_the_Universe", "http://dbpedia.org/resource/The_Edge_with_Jake_Sasseville", "http://dbpedia.org/resource/The_Inheritance_Trilogy_(N.K._Jemisin)", "http://dbpedia.org/resource/The_Last_Rune", "http://dbpedia.org/resource/The_Last_Word_(TV_series)", "http://dbpedia.org/resource/The_Office_(UK_TV_series)", "http://dbpedia.org/resource/The_Sleeze_Brothers", "http://dbpedia.org/resource/The_Social_Seminar", "http://dbpedia.org/resource/The_Tribute_Show", "http://dbpedia.org/resource/The_Voice_Kids_(Greek_TV_series)", "http://dbpedia.org/resource/Timeless_Gift", "http://dbpedia.org/resource/Tiny_Titans", "http://dbpedia.org/resource/Top_Up_TV_Promotional_Channel", "http://dbpedia.org/resource/Victoria_and_Shane_Grow_Their_Own", "http://dbpedia.org/resource/Wales_on_the_Menu", "http://dbpedia.org/resource/Wide_World_of_Sports_(U.S._TV_series)", "http://dbpedia.org/resource/Wolf_Cub_Village", "http://dbpedia.org/resource/Women_Can_Do_It", "http://dbpedia.org/resource/Young_India_Fellowship", "http://dbpedia.org/resource/Young_Seven", "http://dbpedia.org/resource/Above_the_Line_(TV_series)", "http://dbpedia.org/resource/Animal_Cops:_Miami", "http://dbpedia.org/resource/Athu_Ithu_Ethu", "http://dbpedia.org/resource/Burke_(series)", "http://dbpedia.org/resource/Children's_Hospital_(2010_TV_series)", "http://dbpedia.org/resource/Digital_Arts_and_Culture", "http://dbpedia.org/resource/Express_Yourself_(TV_series)", "http://dbpedia.org/resource/GMA_Flash_Report", "http://dbpedia.org/resource/GMT_(TV_series)", "http://dbpedia.org/resource/Gin-Ryu", "http://dbpedia.org/resource/Golf_at_Altitude", "http://dbpedia.org/resource/Googoosh_Comeback_Tour", "http://dbpedia.org/resource/Grand_Theft_Auto_(series)", "http://dbpedia.org/resource/Hacked_(TV_series)", "http://dbpedia.org/resource/Hawaii_Five-O_(season_7)", "http://dbpedia.org/resource/Hollywood's_Top_Ten", "http://dbpedia.org/resource/House_Rules_(Australia_TV_series)", "http://dbpedia.org/resource/Immoral_Study", "http://dbpedia.org/resource/It_Takes_Two_(sitcom)", "http://dbpedia.org/resource/James_May's_Things_You_Need_To_Know", "http://dbpedia.org/resource/Jammin'", "http://dbpedia.org/resource/Keep_It_in_the_Family_(UK_game_show)", "http://dbpedia.org/resource/Kick-Ass_(film_series)", "http://dbpedia.org/resource/La_Intrusa_(Venezuelan_telenovela)", "http://dbpedia.org/resource/La_vestale", "http://dbpedia.org/resource/Lands_of_Lore_series", "http://dbpedia.org/resource/Legend_of_Chu_and_Han", "http://dbpedia.org/resource/Les_Anges_de_la_t\u00e9l\u00e9r\u00e9alit\u00e9", "http://dbpedia.org/resource/Lifepak", "http://dbpedia.org/resource/Love_Phones", "http://dbpedia.org/resource/M6_mine", "http://dbpedia.org/resource/Mari-chan", "http://dbpedia.org/resource/Marina_(Philippine_TV_series)", "http://dbpedia.org/resource/Melbourne_International_Flower_and_Garden_Show", "http://dbpedia.org/resource/Menus_for_Moderns", "http://dbpedia.org/resource/Mikhail_Kruglov", "http://dbpedia.org/resource/Mind_Fusion", "http://dbpedia.org/resource/Monster_Rancher", "http://dbpedia.org/resource/Munay-ki", "http://dbpedia.org/resource/Mustansiriya_University_bombings", "http://dbpedia.org/resource/Nabedache", "http://dbpedia.org/resource/No_Kitchen_Required", "http://dbpedia.org/resource/Nora_(telenovela)", "http://dbpedia.org/resource/Oi_Aparadektoi", "http://dbpedia.org/resource/Olympus_Camedia_C-700_Ultra_Zoom", "http://dbpedia.org/resource/Orson_Welles'_Great_Mysteries", "http://dbpedia.org/resource/Palibhasa_Sikat", "http://dbpedia.org/resource/Pass_the_Buck_(1998_UK_game_show)", "http://dbpedia.org/resource/Pehmed_ja_karvased", "http://dbpedia.org/resource/Pornstar_Acad\u00e9mie", "http://dbpedia.org/resource/Postal_(video_game_series)", "http://dbpedia.org/resource/Protagonistas_de_la_Fama", "http://dbpedia.org/resource/Raymondskill_Falls", "http://dbpedia.org/resource/Relaciones_geogr\u00e1ficas", "http://dbpedia.org/resource/Remembering_Bo", "http://dbpedia.org/resource/Republican_Party_presidential_debates,_2012", "http://dbpedia.org/resource/Rockgol", "http://dbpedia.org/resource/Rolls-Royce_RB282", "http://dbpedia.org/resource/Ronin_(DC_Comics)", "http://dbpedia.org/resource/Rosyjska_Ruletka", "http://dbpedia.org/resource/Safety_life_cycle", "http://dbpedia.org/resource/Scarlet_Spider_(comic_book)", "http://dbpedia.org/resource/Sony_NW-A800", "http://dbpedia.org/resource/Spycatcher_(TV_series)", "http://dbpedia.org/resource/Stadt,_Land,_Mord!", "http://dbpedia.org/resource/Sugar_Creek_Gang", "http://dbpedia.org/resource/Syncretistic_controversy", "http://dbpedia.org/resource/TITV_Everest_2007", "http://dbpedia.org/resource/TelSell", "http://dbpedia.org/resource/Thanaweya_Amma", "http://dbpedia.org/resource/The_Bird_That_Drinks_Blood", "http://dbpedia.org/resource/The_Book_of_the_New_Sun", "http://dbpedia.org/resource/The_Butterflies_of_Zagorsk", "http://dbpedia.org/resource/The_Curious_House_Guest", "http://dbpedia.org/resource/The_Dingilliad", "http://dbpedia.org/resource/The_Flip_(TV_Show)", "http://dbpedia.org/resource/The_Gisele_MacKenzie_Show", "http://dbpedia.org/resource/The_New_Annotated_Sherlock_Holmes", "http://dbpedia.org/resource/The_Race_Race", "http://dbpedia.org/resource/The_Smoke_House", "http://dbpedia.org/resource/The_Sons_of_Hercules", "http://dbpedia.org/resource/The_Spud_Goodman_Show", "http://dbpedia.org/resource/Tom_and_Jerry_Spotlight_Collection", "http://dbpedia.org/resource/Tomica_Hero_Series", "http://dbpedia.org/resource/True_Grime:_Crime_Scene_Clean_Up", "http://dbpedia.org/resource/Un_Paso_Adelante_(TV_series)", "http://dbpedia.org/resource/United_States_Road_Racing_Championship", "http://dbpedia.org/resource/Used_Car_Roadshow", "http://dbpedia.org/resource/WWE_Heroes", "http://dbpedia.org/resource/Wacky_Packages", "http://dbpedia.org/resource/Walt_Disney's_Funny_Factory", "http://dbpedia.org/resource/Welcome_Aboard_(NBC_TV_series)", "http://dbpedia.org/resource/Welsh_football_league_system", "http://dbpedia.org/resource/Zee_Gaurav_Puraskar", "http://dbpedia.org/resource/Lent_Bumps_2002", "http://dbpedia.org/resource/Lent_Bumps_2003", "http://dbpedia.org/resource/Lent_Bumps_2007", "http://dbpedia.org/resource/Lent_Bumps_2010", "http://dbpedia.org/resource/Lent_Bumps_2011", "http://dbpedia.org/resource/Lent_Bumps_2014", "http://dbpedia.org/resource/Lent_Bumps_2016", "http://dbpedia.org/resource/Les_Chemins_invisibles", "http://dbpedia.org/resource/Les_Coulisses_du_pouvoir", "http://dbpedia.org/resource/Les_Dingodossiers", "http://dbpedia.org/resource/Les_Habits_Noirs", "http://dbpedia.org/resource/Les_Pintades", "http://dbpedia.org/resource/Les_Poup\u00e9es_de_Paris", "http://dbpedia.org/resource/Les_amazones", "http://dbpedia.org/resource/Les_ann\u00e9es_lyc\u00e9e", "http://dbpedia.org/resource/Les_pieds_dans_le_plat", "http://dbpedia.org/resource/Les_sibarites", "http://dbpedia.org/resource/Les_troqueurs", "http://dbpedia.org/resource/Let's_Design", "http://dbpedia.org/resource/Let's_Do_Coffee", "http://dbpedia.org/resource/Let's_Go_Square_Dancing", "http://dbpedia.org/resource/Let's_Play_Reporter", "http://dbpedia.org/resource/Letters_of_Centinel", "http://dbpedia.org/resource/Letters_to_a_Philosophical_Unbeliever", "http://dbpedia.org/resource/Leviathan:_Political_Cabaret", "http://dbpedia.org/resource/Levyraati", "http://dbpedia.org/resource/Lewis_&_Clark:_Great_Journey_West", "http://dbpedia.org/resource/Lharn_Poo_Koo_E-Joo", "http://dbpedia.org/resource/Liaison_(TV_series)", "http://dbpedia.org/resource/Fireside_Theater", "http://dbpedia.org/resource/First_Dates_(Australia)", "http://dbpedia.org/resource/First_Dates_(Ireland)", "http://dbpedia.org/resource/First_North_Americans_(novels)", "http://dbpedia.org/resource/Flagship_Program", "http://dbpedia.org/resource/Man_bijt_hond", "http://dbpedia.org/resource/Manchester_Medieval_Studies", "http://dbpedia.org/resource/Mandeans", "http://dbpedia.org/resource/Maryland_(2022_film)", "http://dbpedia.org/resource/Guardians_of_Time_Trilogy", "http://dbpedia.org/resource/Grimm_(TV_Series)", "http://dbpedia.org/resource/Outback_ER", "http://dbpedia.org/resource/Oxford_Historical_Monographs", "http://dbpedia.org/resource/Paddle_Pop_Adventures", "http://dbpedia.org/resource/Panasonic_Lumix_DMC-GX8", "http://dbpedia.org/resource/Panpaka_Pants", "http://dbpedia.org/resource/Paper_Port_(TV_series)", "http://dbpedia.org/resource/Mindrocker_(series)", "http://dbpedia.org/resource/Mirko_and_Slavko", "http://dbpedia.org/resource/Pobre_millonaria", "http://dbpedia.org/resource/Post_Mart", "http://dbpedia.org/resource/Studio_86", "http://dbpedia.org/resource/Studio_Kafka", "http://dbpedia.org/resource/Subsequent_Nuremberg_trials", "http://dbpedia.org/resource/Sudu_Andagena_Kalu_Awidin", "http://dbpedia.org/resource/Sunagawa_Struggle", "http://dbpedia.org/resource/Suzakinishi_the_Animation", "http://dbpedia.org/resource/Svenska_nyheter", "http://dbpedia.org/resource/Tezaur_folcloric", "http://dbpedia.org/resource/The_Angel,_the_Devil_and_I", "http://dbpedia.org/resource/The_Case_Died_with_Her", "http://dbpedia.org/resource/The_Chinese_Road", "http://dbpedia.org/resource/The_Crusades,_An_Arab_Perspective", "http://dbpedia.org/resource/The_Dagger_and_the_Coin", "http://dbpedia.org/resource/The_Diana_Dors_Show", "http://dbpedia.org/resource/The_Diplomat_(TV_series)", "http://dbpedia.org/resource/The_Flying_Doctor_(TV_series)", "http://dbpedia.org/resource/The_Girl_from_the_Well", "http://dbpedia.org/resource/Panizzi_Lectures", "http://dbpedia.org/resource/Parking_Mad", "http://dbpedia.org/resource/Parliament_Hill_Rehabilitation", "http://dbpedia.org/resource/Women's_Tales", "http://dbpedia.org/resource/Women_in_German_history_series", "http://dbpedia.org/resource/Woobinda,_Animal_Doctor", "http://dbpedia.org/resource/World_Perspectives", "http://dbpedia.org/resource/World_Solar_Challenge_2013", "http://dbpedia.org/resource/Worlds_Beyond_(TV_series)", "http://dbpedia.org/resource/Wuthering_Heights_(1978_TV_serial)", "http://dbpedia.org/resource/Xochicuicatl_cuecuechtli", "http://dbpedia.org/resource/Planetary_Pebbles_(series)", "http://dbpedia.org/resource/Platonic_(TV_series)", "http://dbpedia.org/resource/Playbox_(1955_TV_series)", "http://dbpedia.org/resource/Players_Tour_Championship_2015/2016", "http://dbpedia.org/resource/Players_of_the_Faithful", "http://dbpedia.org/resource/Poori_(teledrama)", "http://dbpedia.org/resource/Karuk_people", "http://dbpedia.org/resource/Kaska_people", "http://dbpedia.org/resource/Sachi_Baat_SK_Niazi_k_Sath", "http://dbpedia.org/resource/SafeCare_(programme)", "http://dbpedia.org/resource/Sano_Ichiro", "http://dbpedia.org/resource/Sapporo_Super_Clear", "http://dbpedia.org/resource/Iraqi_Jews", "http://dbpedia.org/resource/Naagin_(TV_series)", "http://dbpedia.org/resource/Name_days_in_France", "http://dbpedia.org/resource/Agnes_Sorel_(opera)", "http://dbpedia.org/resource/Agni_(opera)", "http://dbpedia.org/resource/Agro_(puppet)", "http://dbpedia.org/resource/Ai_no_Gakko_Cuore_Monogatari", "http://dbpedia.org/resource/Aino_(opera)", "http://dbpedia.org/resource/Air-defense_experiments", "http://dbpedia.org/resource/Air_(comics)", "http://dbpedia.org/resource/Air_Creation_Fun", "http://dbpedia.org/resource/Air_Traffic_Controller_(video_game)", "http://dbpedia.org/resource/Airborne_Climax", "http://dbpedia.org/resource/Airborne_Fun", "http://dbpedia.org/resource/Airborne_Sting", "http://dbpedia.org/resource/Airport_Homes_race_riots", "http://dbpedia.org/resource/Airs_above_the_ground", "http://dbpedia.org/resource/Aisa_Karay_Ga_Toh_Maray_Ga", "http://dbpedia.org/resource/Alan_Moore's_Yuggoth_Cultures_and_Other_Growths", "http://dbpedia.org/resource/Alan_Parker_(radio_show)", "http://dbpedia.org/resource/Alara_(fairy)", "http://dbpedia.org/resource/Alarm_in_den_Bergen", "http://dbpedia.org/resource/Alasdair_Fotheringham", "http://dbpedia.org/resource/Alaska_Daily", "http://dbpedia.org/resource/Alban_(opera)", "http://dbpedia.org/resource/Albany_Fish_Traps", "http://dbpedia.org/resource/Albedo_Anthropomorphics", "http://dbpedia.org/resource/Albert_Einstein_World_Award_of_Science", "http://dbpedia.org/resource/Albert_Leon_Whiteman_Memorial_Prize", "http://dbpedia.org/resource/Albert_Pendarvis", "http://dbpedia.org/resource/Albion_(comics)", "http://dbpedia.org/resource/Albion_and_Albanius", "http://dbpedia.org/resource/Alcine", "http://dbpedia.org/resource/Aldebaran_(comics)", "http://dbpedia.org/resource/2014_Albanian_demonstrations_in_Macedonia", "http://dbpedia.org/resource/2014_Indian_Super_League_finals", "http://dbpedia.org/resource/2014\u201315_Nicaraguan_protests", "http://dbpedia.org/resource/Deep_Red_(1994_film)", "http://dbpedia.org/resource/Deep_Rooted_Tree", "http://dbpedia.org/resource/Deep_Sea_Detectives", "http://dbpedia.org/resource/Deep_Shock", "http://dbpedia.org/resource/Deep_South_Paranormal", "http://dbpedia.org/resource/Deep_State_(TV_series)", "http://dbpedia.org/resource/Deep_Time_History", "http://dbpedia.org/resource/Deep_Water_(2019_series)", "http://dbpedia.org/resource/Deep_Water_(TV_series)", "http://dbpedia.org/resource/Deep_in_My_Heart_(1999_film)", "http://dbpedia.org/resource/Deep_in_the_Realm_of_Conscience", "http://dbpedia.org/resource/Deeparadhana", "http://dbpedia.org/resource/Deer_Hunter_(series)", "http://dbpedia.org/resource/Deer_Squad", "http://dbpedia.org/resource/Deewana_(TV_series)", "http://dbpedia.org/resource/Deewangi", "http://dbpedia.org/resource/Deewar-e-Shab", "http://dbpedia.org/resource/Deewar_(TV_series)", "http://dbpedia.org/resource/Def_Comedy_Jam", "http://dbpedia.org/resource/Def_Poetry_Jam", "http://dbpedia.org/resource/Defectors_(game_show)", "http://dbpedia.org/resource/Defend_Your_Castle", "http://dbpedia.org/resource/Defenders_of_the_Earth", "http://dbpedia.org/resource/Defending_Jacob_(miniseries)", "http://dbpedia.org/resource/Defending_the_Guilty", "http://dbpedia.org/resource/Defiance_(TV_series)", "http://dbpedia.org/resource/Defiance_(season_3)", "http://dbpedia.org/resource/Definitely_Neighbors", "http://dbpedia.org/resource/Definition_(game_show)", "http://dbpedia.org/resource/Defunctland", "http://dbpedia.org/resource/Defying_Gravity_(TV_series)", "http://dbpedia.org/resource/Defying_the_Nazis:_The_Sharps'_War", "http://dbpedia.org/resource/Degrassi:_Next_Class", "http://dbpedia.org/resource/Degrassi:_The_Next_Generation", "http://dbpedia.org/resource/Degrassi:_The_Next_Generation_(season_1)", "http://dbpedia.org/resource/Degrassi:_The_Next_Generation_(season_3)", "http://dbpedia.org/resource/Degrassi:_The_Next_Generation_(season_4)", "http://dbpedia.org/resource/Degrassi:_The_Next_Generation_(season_5)", "http://dbpedia.org/resource/Degrassi:_The_Next_Generation_(season_6)", "http://dbpedia.org/resource/Degrassi:_The_Next_Generation_(season_8)", "http://dbpedia.org/resource/Degrassi:_The_Next_Generation_(season_9)", "http://dbpedia.org/resource/Degrassi_(season_10)", "http://dbpedia.org/resource/Degrassi_Goes_Hollywood", "http://dbpedia.org/resource/Degrassi_High", "http://dbpedia.org/resource/Degrassi_Junior_High", "http://dbpedia.org/resource/Degrassi_Takes_Manhattan", "http://dbpedia.org/resource/Degrassi_Talks", "http://dbpedia.org/resource/Dehleez_(1981_TV_series)", "http://dbpedia.org/resource/Dehleez_(2009_TV_series)", "http://dbpedia.org/resource/Deion's_Family_Playbook", "http://dbpedia.org/resource/Deion_&_Pilar:_Prime_Time_Love", "http://dbpedia.org/resource/Deivam_Thandha_Veedu", "http://dbpedia.org/resource/Deivam_Thantha_Poove", "http://dbpedia.org/resource/Deivamagal", "http://dbpedia.org/resource/Deja_Vu_(TV_series)", "http://dbpedia.org/resource/Deja_Vu_Tour", "http://dbpedia.org/resource/Dejavu_di_Kinabalu", "http://dbpedia.org/resource/Dej\u00e9monos_de_Vargas", "http://dbpedia.org/resource/Dej\u00e9monos_de_vainas", "http://dbpedia.org/resource/Deka_Kurokawa_Suzuki", "http://dbpedia.org/resource/Dekh_Bhai_Dekh", "http://dbpedia.org/resource/Dekha_Ek_Khwaab", "http://dbpedia.org/resource/Dekho_Chaand_Aaya", "http://dbpedia.org/resource/Dekho_Magar_Pyaar_Se", "http://dbpedia.org/resource/Del_Monte_Kitchenomics", "http://dbpedia.org/resource/Del_Tierro", "http://dbpedia.org/resource/Del_altar_a_la_tumba", "http://dbpedia.org/resource/Delayed_Justice", "http://dbpedia.org/resource/Delet_Haksamim", "http://dbpedia.org/resource/Delete_(miniseries)", "http://dbpedia.org/resource/Delfy_and_His_Friends", "http://dbpedia.org/resource/Delhi_Crime", "http://dbpedia.org/resource/Delicacies_Destiny", "http://dbpedia.org/resource/Delicious_(TV_series)", "http://dbpedia.org/resource/Delicious_Gakuin", "http://dbpedia.org/resource/Delicious_Miss_Brown", "http://dbpedia.org/resource/Delicious_Proposal", "http://dbpedia.org/resource/Delicious_Rendezvous", "http://dbpedia.org/resource/Deliciousness_(TV_series)", "http://dbpedia.org/resource/Delilah:_The_Mysterious_Case_of_Delilah_Ambrose", "http://dbpedia.org/resource/Delilah_&_Julius", "http://dbpedia.org/resource/Delilah_(American_TV_series)", "http://dbpedia.org/resource/Delilah_(Canadian_TV_series)", "http://dbpedia.org/resource/Deliver_Me_(TV_series)", "http://dbpedia.org/resource/Deliver_Us_from_Evil_(1973_film)", "http://dbpedia.org/resource/Deliverance_Creek", "http://dbpedia.org/resource/Delivery_(web_series)", "http://dbpedia.org/resource/Dellaventura", "http://dbpedia.org/resource/Delocated", "http://dbpedia.org/resource/Delph_Locks", "http://dbpedia.org/resource/Delta_(American_TV_series)", "http://dbpedia.org/resource/Delta_(Australian_TV_series)", "http://dbpedia.org/resource/Delta_County,_U.S.A.", "http://dbpedia.org/resource/Delta_House", "http://dbpedia.org/resource/Delta_State_(TV_series)", "http://dbpedia.org/resource/Deltora_Quest_(series)", "http://dbpedia.org/resource/Deluxe_Paint", "http://dbpedia.org/resource/Delvecchio_(TV_series)", "http://dbpedia.org/resource/Dem_T\u00e4ter_auf_der_Spur", "http://dbpedia.org/resource/Demain_Pr\u00e9sident", "http://dbpedia.org/resource/Demente_(TV_series)", "http://dbpedia.org/resource/Demente_criminal", "http://dbpedia.org/resource/Demetri_Martin._Person.", "http://dbpedia.org/resource/Demi-Gods_and_Semi-Devils_(1982_TV_series)", "http://dbpedia.org/resource/Demi-Gods_and_Semi-Devils_(1997_TV_series)", "http://dbpedia.org/resource/Demi-Gods_and_Semi-Devils_(2003_TV_series)", "http://dbpedia.org/resource/Demi_Lovato:_Dancing_with_the_Devil", "http://dbpedia.org/resource/Demi_Lovato:_Stay_Strong", "http://dbpedia.org/resource/Demob_(TV_series)", "http://dbpedia.org/resource/Democratic_Party_(Yugoslavia)", "http://dbpedia.org/resource/Demofoonte_(Myslive\u010dek)_(1769)", "http://dbpedia.org/resource/Demofoonte_(Myslive\u010dek)_(1775)", "http://dbpedia.org/resource/Demographics_of_Argentina", "http://dbpedia.org/resource/Demographics_of_Colombia", "http://dbpedia.org/resource/Demographics_of_Greenland", "http://dbpedia.org/resource/Demographics_of_Paraguay", "http://dbpedia.org/resource/Demolition_Man_(TV_series)", "http://dbpedia.org/resource/DemonTech_series", "http://dbpedia.org/resource/Demon_Beast_Invasion", "http://dbpedia.org/resource/Demon_Fighter_Kocho", "http://dbpedia.org/resource/Demon_From_Afar", "http://dbpedia.org/resource/Demon_King_Daimao", "http://dbpedia.org/resource/Demon_Lord_Dante", "http://dbpedia.org/resource/Demonbane", "http://dbpedia.org/resource/Demons_(TV_series)", "http://dbpedia.org/resource/Demonstrations_in_Physics", "http://dbpedia.org/resource/Dempsey_(film)", "http://dbpedia.org/resource/Dempsey_and_Makepeace", "http://dbpedia.org/resource/Den_11._time", "http://dbpedia.org/resource/Den_Brother", "http://dbpedia.org/resource/Den_Kongelige_G\u00e6st", "http://dbpedia.org/resource/Den_t\u00e4nkande_brevb\u00e4raren", "http://dbpedia.org/resource/Den_vilda_bebin", "http://dbpedia.org/resource/Deng_Xiaoping_at_History's_Crossroads", "http://dbpedia.org/resource/Dengeki_G's_Radio", "http://dbpedia.org/resource/Dengeki_Sentai_Changeman", "http://dbpedia.org/resource/Denise_(TV_program)", "http://dbpedia.org/resource/Denise_Richards:_It's_Complicated", "http://dbpedia.org/resource/Denji_Sentai_Megaranger", "http://dbpedia.org/resource/Denjin_Zaborger", "http://dbpedia.org/resource/Denkigai_no_Honya-san", "http://dbpedia.org/resource/Dennis_&_Gnasher:_Unleashed!", "http://dbpedia.org/resource/Dennis_Miller_Live", "http://dbpedia.org/resource/Dennis_and_Gnasher_(1996_TV_series)", "http://dbpedia.org/resource/Dennis_the_Menace_(1959_TV_series)", "http://dbpedia.org/resource/Dennis_the_Menace_(1986_TV_series)", "http://dbpedia.org/resource/Dennis_the_Menace_(1987_film)", "http://dbpedia.org/resource/Dennis_the_Menace_and_Gnasher_(2009_TV_series)", "http://dbpedia.org/resource/Dennou_Keisatsu_Cybercop", "http://dbpedia.org/resource/Denny's_Sho", "http://dbpedia.org/resource/Denn\u014d_Coil", "http://dbpedia.org/resource/Denpa_teki_na_Kanojo", "http://dbpedia.org/resource/Dense_(film)", "http://dbpedia.org/resource/Densha_Otoko_(TV_series)", "http://dbpedia.org/resource/Denshi_Sentai_Denjiman", "http://dbpedia.org/resource/Denver,_the_Last_Dinosaur", "http://dbpedia.org/resource/Deon_Cole's_Black_Box", "http://dbpedia.org/resource/Department_S_(TV_series)", "http://dbpedia.org/resource/Departure_(TV_series)", "http://dbpedia.org/resource/Departures_(TV_series)", "http://dbpedia.org/resource/Depi_Evratesil", "http://dbpedia.org/resource/Depoe_Bay_Bridge", "http://dbpedia.org/resource/Depois_do_Adeus", "http://dbpedia.org/resource/Depositary_(film)", "http://dbpedia.org/resource/Deputy_(TV_series)", "http://dbpedia.org/resource/Deputy_Dawg", "http://dbpedia.org/resource/Der_Barbier_von_Bagdad", "http://dbpedia.org/resource/Der_Bastian", "http://dbpedia.org/resource/Der_Bergdoktor_(2008_TV_series)", "http://dbpedia.org/resource/Der_Clown", "http://dbpedia.org/resource/Der_Club_(talk_show)", "http://dbpedia.org/resource/Der_Corregidor", "http://dbpedia.org/resource/Der_Dicke", "http://dbpedia.org/resource/Der_Diktator", "http://dbpedia.org/resource/Der_Fahnder", "http://dbpedia.org/resource/Der_Forellenhof", "http://dbpedia.org/resource/Der_Hausgeist", "http://dbpedia.org/resource/Der_Jasager", "http://dbpedia.org/resource/Der_J\u00fcngste_Tag", "http://dbpedia.org/resource/Der_Kaiser_von_Atlantis", "http://dbpedia.org/resource/Der_Kaiser_von_Schexing", "http://dbpedia.org/resource/Der_Kommissar_(TV_series)", "http://dbpedia.org/resource/Der_Kom\u00f6dienstadel", "http://dbpedia.org/resource/Der_Kriminalist", "http://dbpedia.org/resource/Der_Kurier_der_Kaiserin", "http://dbpedia.org/resource/Der_K\u00f6nig_Kandaules", "http://dbpedia.org/resource/Der_Landarzt", "http://dbpedia.org/resource/Der_Lehrer", "http://dbpedia.org/resource/Der_Leihopa", "http://dbpedia.org/resource/Der_Millionenbauer", "http://dbpedia.org/resource/Der_Mond", "http://dbpedia.org/resource/Der_Nachtkurier_meldet\u2026", "http://dbpedia.org/resource/Der_Pass", "http://dbpedia.org/resource/Der_Penny-Markt_auf_der_Reeperbahn", "http://dbpedia.org/resource/Der_Prinz_von_Homburg_(opera)", "http://dbpedia.org/resource/Der_Protagonist", "http://dbpedia.org/resource/Der_Rauchfangkehrer", "http://dbpedia.org/resource/Der_Revisor", "http://dbpedia.org/resource/Der_Roland_von_Berlin_(opera)", "http://dbpedia.org/resource/Der_Schatzgr\u00e4ber", "http://dbpedia.org/resource/Der_Schw\u00e4chste_fliegt!", "http://dbpedia.org/resource/Der_Spatz_vom_Wallrafplatz", "http://dbpedia.org/resource/Der_Staatsanwalt_hat_das_Wort", "http://dbpedia.org/resource/Der_Templer_und_die_J\u00fcdin", "http://dbpedia.org/resource/Der_Traumg\u00f6rge", "http://dbpedia.org/resource/Der_Trompeter_von_S\u00e4kkingen", "http://dbpedia.org/resource/Der_Vampyr", "http://dbpedia.org/resource/Der_Waffenschmied", "http://dbpedia.org/resource/Der_Wald", "http://dbpedia.org/resource/Der_Zwerg", "http://dbpedia.org/resource/Der_ferne_Klang", "http://dbpedia.org/resource/Der_geduldige_Socrates", "http://dbpedia.org/resource/Der_junge_Lord", "http://dbpedia.org/resource/Der_kleine_Ritter_Trenk", "http://dbpedia.org/resource/Der_kleine_Vampir_\u2013_Neue_Abenteuer", "http://dbpedia.org/resource/Der_letzte_Bulle", "http://dbpedia.org/resource/Der_letzte_Zeuge", "http://dbpedia.org/resource/Der_neumodische_Liebhaber_Damon", "http://dbpedia.org/resource/Der_schwarze_Kanal", "http://dbpedia.org/resource/Derana_Dream_Star", "http://dbpedia.org/resource/Derby_Day_(light_opera)", "http://dbpedia.org/resource/Derby_Stallion", "http://dbpedia.org/resource/Derek_(TV_series)", "http://dbpedia.org/resource/Derek_Acorah's_Ghost_Towns", "http://dbpedia.org/resource/Derek_and_Simon", "http://dbpedia.org/resource/Derren_Brown:_The_Events", "http://dbpedia.org/resource/Derrick_(TV_series)", "http://dbpedia.org/resource/Derry_Girls", "http://dbpedia.org/resource/Des_(TV_series)", "http://dbpedia.org/resource/Des_Mein_Niklla_Hoga_Chand", "http://dbpedia.org/resource/Des_O'Connor_Tonight", "http://dbpedia.org/resource/Des_chiffres_et_des_lettres", "http://dbpedia.org/resource/Des_racines_et_des_ailes", "http://dbpedia.org/resource/Desafio_de_Estrellas", "http://dbpedia.org/resource/Desaf\u00edo:_La_Gran_Batalla", "http://dbpedia.org/resource/Desaf\u00edo_(TV_series)", "http://dbpedia.org/resource/Desaparecida", "http://dbpedia.org/resource/Desaparecidos_(Spanish_TV_series)", "http://dbpedia.org/resource/Desaparecidos_(TV_series)", "http://dbpedia.org/resource/Desayunos_informales", "http://dbpedia.org/resource/Descendants:_School_of_Secrets", "http://dbpedia.org/resource/Descendants:_Wicked_World", "http://dbpedia.org/resource/Descendants_(2015_film)", "http://dbpedia.org/resource/Descendants_2", "http://dbpedia.org/resource/Descendants_3", "http://dbpedia.org/resource/Descendants_of_Darkness", "http://dbpedia.org/resource/Descendants_of_the_Sun", "http://dbpedia.org/resource/Descendants_of_the_Sun:_The_Philippine_Adaptation", "http://dbpedia.org/resource/Descending_Angel", "http://dbpedia.org/resource/Descontrol_(TV_series)", "http://dbpedia.org/resource/Descubierta-class_corvette", "http://dbpedia.org/resource/Desde_Gayola", "http://dbpedia.org/resource/Desejo_Proibido", "http://dbpedia.org/resource/Desejos_de_Mulher", "http://dbpedia.org/resource/Desencuentro_(1964_TV_series)", "http://dbpedia.org/resource/Desencuentro_(1997_TV_series)", "http://dbpedia.org/resource/Desert_Car_Kings", "http://dbpedia.org/resource/Desert_Coral", "http://dbpedia.org/resource/Desert_Island_Discs", "http://dbpedia.org/resource/Desert_Punk", "http://dbpedia.org/resource/Desert_Rose_(TV_series)", "http://dbpedia.org/resource/Desert_of_Fire", "http://dbpedia.org/resource/Deserving_Design", "http://dbpedia.org/resource/Desh_Ki_Beti_Nandini", "http://dbpedia.org/resource/Desher_Maati", "http://dbpedia.org/resource/Desi_Explorers", "http://dbpedia.org/resource/Desi_Rascals", "http://dbpedia.org/resource/DesignAge", "http://dbpedia.org/resource/Design_1047_battlecruiser", "http://dbpedia.org/resource/Design_Indaba", "http://dbpedia.org/resource/Design_Rivals", "http://dbpedia.org/resource/Design_Squad", "http://dbpedia.org/resource/Design_U", "http://dbpedia.org/resource/Design_on_a_Dime", "http://dbpedia.org/resource/Designated_Survivor:_60_Days", "http://dbpedia.org/resource/Designated_Survivor_(TV_series)", "http://dbpedia.org/resource/Designer_Guys", "http://dbpedia.org/resource/Designer_Superstar_Challenge", "http://dbpedia.org/resource/Designerspirene", "http://dbpedia.org/resource/Designing_Spaces", "http://dbpedia.org/resource/Designing_Women", "http://dbpedia.org/resource/Desire_(TV_series)", "http://dbpedia.org/resource/Desmond's", "http://dbpedia.org/resource/Desmond_and_the_Channel_9-Pins", "http://dbpedia.org/resource/Desolation_Canyon_(film)", "http://dbpedia.org/resource/Despatch_Box", "http://dbpedia.org/resource/Despedida_de_Solteiro", "http://dbpedia.org/resource/Despedida_de_Solteros", "http://dbpedia.org/resource/Despera", "http://dbpedia.org/resource/Desperados_(TV_series)", "http://dbpedia.org/resource/Desperate_Choices:_To_Save_My_Child", "http://dbpedia.org/resource/Desperate_Housewives", "http://dbpedia.org/resource/Desperate_Housewives_(season_1)", "http://dbpedia.org/resource/Desperate_Housewives_(season_2)", "http://dbpedia.org/resource/Desperate_Housewives_(season_3)", "http://dbpedia.org/resource/Desperate_Housewives_(season_4)", "http://dbpedia.org/resource/Desperate_Housewives_(season_5)", "http://dbpedia.org/resource/Desperate_Housewives_(season_6)", "http://dbpedia.org/resource/Desperate_Housewives_(season_7)", "http://dbpedia.org/resource/Desperate_Housewives_(season_8)", "http://dbpedia.org/resource/Desperate_Housewives_Africa", "http://dbpedia.org/resource/Desperate_Justice", "http://dbpedia.org/resource/Desperate_Lives", "http://dbpedia.org/resource/Desperate_Rescue:_The_Cathy_Mahone_Story", "http://dbpedia.org/resource/Desperate_Romantics", "http://dbpedia.org/resource/Desperate_Scousewives", "http://dbpedia.org/resource/Desperate_for_Love", "http://dbpedia.org/resource/Desperately_Seeking_Santa", "http://dbpedia.org/resource/Desperately_Seeking_Something", "http://dbpedia.org/resource/Despertar_contigo", "http://dbpedia.org/resource/Dessert_First_with_Anne_Thornton", "http://dbpedia.org/resource/Dessert_Games", "http://dbpedia.org/resource/Destan_(TV_series)", "http://dbpedia.org/resource/Deste_Tous", "http://dbpedia.org/resource/Destilando_Amor", "http://dbpedia.org/resource/Destination:_Imagination", "http://dbpedia.org/resource/Destination_Fear", "http://dbpedia.org/resource/Destination_Fear_(2019_TV_series)", "http://dbpedia.org/resource/Destination_Tennis", "http://dbpedia.org/resource/Destination_Truth", "http://dbpedia.org/resource/Destined_to_Love_You", "http://dbpedia.org/resource/Destined_to_be_Yours", "http://dbpedia.org/resource/Destino_(1963_TV_series)", "http://dbpedia.org/resource/Destino_(2013_Mexican_TV_series)", "http://dbpedia.org/resource/Destino_(Brazilian_TV_series)", "http://dbpedia.org/resource/Destino_(Mexican_TV_series)", "http://dbpedia.org/resource/Destino_Imortal", "http://dbpedia.org/resource/Destino_de_Mujer", "http://dbpedia.org/resource/Destino_la_gloria", "http://dbpedia.org/resource/Destinos", "http://dbpedia.org/resource/Destiny_(Jan\u00e1\u010dek)", "http://dbpedia.org/resource/Destiny_Ridge", "http://dbpedia.org/resource/Destiny_Rose", "http://dbpedia.org/resource/Destiny_in_Her_Hands", "http://dbpedia.org/resource/Destroy_Build_Destroy", "http://dbpedia.org/resource/Destroyed_in_Seconds", "http://dbpedia.org/resource/Destry_(TV_series)", "http://dbpedia.org/resource/Desus_&_Mero_(2016_TV_series)", "http://dbpedia.org/resource/Desus_&_Mero_(2019_TV_series)", "http://dbpedia.org/resource/Det_R\u00f8de_Kapel", "http://dbpedia.org/resource/Det_blir_jul_p\u00e5_M\u00f6lleg\u00e5rden", "http://dbpedia.org/resource/Det_kommer_mera", "http://dbpedia.org/resource/Det_sjungande_tr\u00e4det_(opera)", "http://dbpedia.org/resource/Detective's_Wife", "http://dbpedia.org/resource/Detective_Chinatown_(web_series)", "http://dbpedia.org/resource/Detective_Didi", "http://dbpedia.org/resource/Detective_Investigation_Files", "http://dbpedia.org/resource/Detective_Investigation_Files_II", "http://dbpedia.org/resource/Detective_Investigation_Files_III", "http://dbpedia.org/resource/Detective_Investigation_Files_IV", "http://dbpedia.org/resource/Detective_Investigation_Files_Series", "http://dbpedia.org/resource/Detective_Novice", "http://dbpedia.org/resource/Detective_School", "http://dbpedia.org/resource/Detective_School_Q", "http://dbpedia.org/resource/Detective_in_the_House", "http://dbpedia.org/resource/Detectives_in_Trouble", "http://dbpedia.org/resource/Detectorists", "http://dbpedia.org/resource/Detektivb\u00fcro_Roth", "http://dbpedia.org/resource/Detention:_The_Siege_at_Johnson_High", "http://dbpedia.org/resource/Detention_(American_TV_series)", "http://dbpedia.org/resource/Detention_(Taiwanese_TV_series)", "http://dbpedia.org/resource/Detentionaire", "http://dbpedia.org/resource/Detonator_Orgun", "http://dbpedia.org/resource/Detroit_1-8-7", "http://dbpedia.org/resource/Detroit_Diesel_Series_149", "http://dbpedia.org/resource/Detroit_Diesel_Series_71", "http://dbpedia.org/resource/Detroit_Metal_City", "http://dbpedia.org/resource/Detroiters_(TV_series)", "http://dbpedia.org/resource/Detr\u00e1s_del_muro", "http://dbpedia.org/resource/Deudas", "http://dbpedia.org/resource/Deus_Salve_o_Rei", "http://dbpedia.org/resource/Deus_Vitae", "http://dbpedia.org/resource/Deutsch-les-Landes", "http://dbpedia.org/resource/Deutsche_Bank_Prize_in_Financial_Economics", "http://dbpedia.org/resource/Deutsche_Tourenwagen_Masters", "http://dbpedia.org/resource/Deutsche_Tourenwagen_Meisterschaft", "http://dbpedia.org/resource/Deutscher_Filmpreis", "http://dbpedia.org/resource/Deutscher_Jugendliteraturpreis", "http://dbpedia.org/resource/Deutschland-class_cruiser", "http://dbpedia.org/resource/Deutschland_83", "http://dbpedia.org/resource/Deutschland_86", "http://dbpedia.org/resource/Deutschland_89", "http://dbpedia.org/resource/Deutschland_sucht_den_Superstar", "http://dbpedia.org/resource/Deutschlands_MeisterKoch", "http://dbpedia.org/resource/Dev_(TV_series)", "http://dbpedia.org/resource/Dev_DD", "http://dbpedia.org/resource/Deva_Shree_Ganesha", "http://dbpedia.org/resource/Devanshi_(TV_series)", "http://dbpedia.org/resource/Devashard", "http://dbpedia.org/resource/Devathai_(2013_TV_series)", "http://dbpedia.org/resource/Devathaiyai_Kanden_(TV_series)", "http://dbpedia.org/resource/Devi_(TV_series)", "http://dbpedia.org/resource/Devi_Adi_Parashakti", "http://dbpedia.org/resource/Device_Forts", "http://dbpedia.org/resource/Devil's_Advocate_(TV_series)", "http://dbpedia.org/resource/Devil's_Diary", "http://dbpedia.org/resource/Devil's_Disciples", "http://dbpedia.org/resource/Devil's_Dust", "http://dbpedia.org/resource/Devil's_Playground_(TV_series)", "http://dbpedia.org/resource/Devil_(TV_series)", "http://dbpedia.org/resource/Devil_Beside_You", "http://dbpedia.org/resource/Devil_Dog:_The_Hound_of_Hell", "http://dbpedia.org/resource/Devil_Hunter_Yohko", "http://dbpedia.org/resource/Devil_Lady", "http://dbpedia.org/resource/Devil_May_Care_(TV_series)", "http://dbpedia.org/resource/Devil_May_Cry", "http://dbpedia.org/resource/Devil_May_Cry:_The_Animated_Series", "http://dbpedia.org/resource/Devil_May_Cry_3_(manga)", "http://dbpedia.org/resource/Devil_Sister", "http://dbpedia.org/resource/Devil_Survivor_2:_The_Animation", "http://dbpedia.org/resource/Devil_in_Ohio", "http://dbpedia.org/resource/Devilish_Charm", "http://dbpedia.org/resource/Devils_(TV_series)", "http://dbpedia.org/resource/Devils_and_Realist", "http://dbpedia.org/resource/Devilsdorp", "http://dbpedia.org/resource/Devious_Maids", "http://dbpedia.org/resource/Devlin_(TV_series)", "http://dbpedia.org/resource/Devlok_with_Devdutt_Pattanaik", "http://dbpedia.org/resource/Devmanus", "http://dbpedia.org/resource/Devon_County_Show", "http://dbpedia.org/resource/Devon_Ke_Dev...Mahadev", "http://dbpedia.org/resource/Devotion_(TV_series)", "http://dbpedia.org/resource/Devs", "http://dbpedia.org/resource/Devyani_(TV_series)", "http://dbpedia.org/resource/Dewa_(TV_series)", "http://dbpedia.org/resource/Deweni_Inima", "http://dbpedia.org/resource/Dex_Hamilton:_Alien_Entomologist", "http://dbpedia.org/resource/Dexter's_Laboratory", "http://dbpedia.org/resource/Dexter's_Laboratory:_Ego_Trip", "http://dbpedia.org/resource/Dexter:_New_Blood", "http://dbpedia.org/resource/Dexter_(TV_series)", "http://dbpedia.org/resource/Dhaani_(serial)", "http://dbpedia.org/resource/Dhadkan_(TV_series)", "http://dbpedia.org/resource/Dhadkan_Zindaggi_Kii", "http://dbpedia.org/resource/Dhani_Tackles_the_Globe", "http://dbpedia.org/resource/Dharaka", "http://dbpedia.org/resource/Dharam_Veer_(TV_series)", "http://dbpedia.org/resource/Dharampatni", "http://dbpedia.org/resource/Dharifulhu", "http://dbpedia.org/resource/Dharkan_(TV_series)", "http://dbpedia.org/resource/Dharm_Yoddha_Garud", "http://dbpedia.org/resource/Dharma_&_Greg", "http://dbpedia.org/resource/Dharmakshetra", "http://dbpedia.org/resource/Dharmayutham", "http://dbpedia.org/resource/Dharti_Ka_Veer_Yodha_Prithviraj_Chauhan", "http://dbpedia.org/resource/Dhathuputhri", "http://dbpedia.org/resource/Dhee_(TV_show)", "http://dbpedia.org/resource/Dhee_Ultimate_Dance_Show", "http://dbpedia.org/resource/Dheewanaa_Hiyy", "http://dbpedia.org/resource/Dhhai_Kilo_Prem", "http://dbpedia.org/resource/Dhimal", "http://dbpedia.org/resource/Dhimaner_Dinkaal", "http://dbpedia.org/resource/Dhindora", "http://dbpedia.org/resource/Dhirumeh_Nethas", "http://dbpedia.org/resource/Dhoadhi", "http://dbpedia.org/resource/Dhoapatta", "http://dbpedia.org/resource/Dhol_Bajnay_Laga", "http://dbpedia.org/resource/Dholkichya_Talavar", "http://dbpedia.org/resource/Dhoom_Machaao_Dhoom", "http://dbpedia.org/resource/Dhoondh_Legi_Manzil_Humein", "http://dbpedia.org/resource/Dhoop_Ki_Deewar", "http://dbpedia.org/resource/Dhoop_Kinare", "http://dbpedia.org/resource/Dhoop_Mein_Thandi_Chaav...Maa", "http://dbpedia.org/resource/Dhrubatara", "http://dbpedia.org/resource/Dhulokona", "http://dbpedia.org/resource/Dhund_(TV_series)", "http://dbpedia.org/resource/Dhuwan", "http://dbpedia.org/resource/Di-Gata_Defenders", "http://dbpedia.org/resource/DiResta", "http://dbpedia.org/resource/Di_Ba't_Ikaw", "http://dbpedia.org/resource/Di_Mana_Melani", "http://dbpedia.org/resource/Di_Na_Muli", "http://dbpedia.org/resource/Diablero", "http://dbpedia.org/resource/Diablo_Guardi\u00e1n", "http://dbpedia.org/resource/Diabolical_Women", "http://dbpedia.org/resource/Diabolik_(TV_series)", "http://dbpedia.org/resource/Diagnosis:_Murder", "http://dbpedia.org/resource/Diagnosis:_Murder_(season_1)", "http://dbpedia.org/resource/Diagnosis:_Murder_(season_2)", "http://dbpedia.org/resource/Diagnosis:_Murder_(season_4)", "http://dbpedia.org/resource/Diagnosis:_Murder_(season_6)", "http://dbpedia.org/resource/Diagnosis:_Unknown", "http://dbpedia.org/resource/Diagnosis_(American_TV_series)", "http://dbpedia.org/resource/Diagnosis_(Polish_TV_series)", "http://dbpedia.org/resource/Diagnosis_X", "http://dbpedia.org/resource/Dial_100_(TV_series)", "http://dbpedia.org/resource/Dial_Hot_Line", "http://dbpedia.org/resource/Dial_MTV", "http://dbpedia.org/resource/Dial_M_(British_TV_series)", "http://dbpedia.org/resource/Dial_M_(Philippine_TV_program)", "http://dbpedia.org/resource/Dialogues_of_the_Carmelites", "http://dbpedia.org/resource/Diamantendetektiv_Dick_Donald", "http://dbpedia.org/resource/Diammonium_phosphate", "http://dbpedia.org/resource/Diamond_Geezer", "http://dbpedia.org/resource/Diamond_Girl_(film)", "http://dbpedia.org/resource/Diamond_Lover", "http://dbpedia.org/resource/Diamonds_(British_TV_series)", "http://dbpedia.org/resource/Diamonds_(Canadian_TV_series)", "http://dbpedia.org/resource/Diamonds_(TV_series)", "http://dbpedia.org/resource/Diana,_7_Days", "http://dbpedia.org/resource/Diana,_Our_Mother:_Her_Life_and_Legacy", "http://dbpedia.org/resource/Diana:_A_Tribute_to_the_People's_Princess", "http://dbpedia.org/resource/Diana:_Her_True_Story", "http://dbpedia.org/resource/Diana_(American_TV_series)", "http://dbpedia.org/resource/Diana_(British_TV_series)", "http://dbpedia.org/resource/Diana_(camera)", "http://dbpedia.org/resource/Diana_Carolina", "http://dbpedia.org/resource/Diana_Mini_Camera", "http://dbpedia.org/resource/Diana_and_I", "http://dbpedia.org/resource/Diana_von_Solange", "http://dbpedia.org/resource/Dianne_(TV_series)", "http://dbpedia.org/resource/Diarios_de_la_cuarentena", "http://dbpedia.org/resource/Diary_(American_TV_series)", "http://dbpedia.org/resource/Diary_(Maldivian_TV_series)", "http://dbpedia.org/resource/Diary_of_a_Bad_Man", "http://dbpedia.org/resource/Diary_of_a_Future_President", "http://dbpedia.org/resource/Diary_of_a_Gigolo", "http://dbpedia.org/resource/Diary_of_a_Night_Watchman", "http://dbpedia.org/resource/Diary_of_a_Prosecutor", "http://dbpedia.org/resource/Diary_of_a_Wimpy_Kid_(film_series)", "http://dbpedia.org/resource/Diary_of_a_Young_Comic", "http://dbpedia.org/resource/Diary_of_an_Uber_Driver", "http://dbpedia.org/resource/Dice:_Undisputed", "http://dbpedia.org/resource/Dice_(TV_series)", "http://dbpedia.org/resource/Dice_(miniseries)", "http://dbpedia.org/resource/Dicey_Business", "http://dbpedia.org/resource/Dicha_robada", "http://dbpedia.org/resource/Dick_&_Dom_in_da_Bungalow", "http://dbpedia.org/resource/Dick_Cavett_Meets_ABBA", "http://dbpedia.org/resource/Dick_Clark's_New_Year's_Rockin'_Eve", "http://dbpedia.org/resource/Dick_Clark's_World_of_Talent", "http://dbpedia.org/resource/Dick_Figures", "http://dbpedia.org/resource/Dick_Powell's_Zane_Grey_Theatre", "http://dbpedia.org/resource/Dick_Spanner,_P.I.", "http://dbpedia.org/resource/Dick_Tracy_(TV_series)", "http://dbpedia.org/resource/Dick_Turpin_(TV_series)", "http://dbpedia.org/resource/Dick_and_Dom's_Funny_Business", "http://dbpedia.org/resource/Dick_and_Dom_in_da_Bungalow", "http://dbpedia.org/resource/Dickens_(TV_series)", "http://dbpedia.org/resource/Dickens_in_America", "http://dbpedia.org/resource/Dickensian_(TV_series)", "http://dbpedia.org/resource/Dickin_Medal", "http://dbpedia.org/resource/Dickinson's_Real_Deal", "http://dbpedia.org/resource/Dickinson_(TV_series)", "http://dbpedia.org/resource/Dicktown_(TV_series)", "http://dbpedia.org/resource/Dicte_(TV_series)", "http://dbpedia.org/resource/Did_We_Really_Love%3F", "http://dbpedia.org/resource/Did_You_See...%3F", "http://dbpedia.org/resource/Diddy_Movies", "http://dbpedia.org/resource/Diddy_TV", "http://dbpedia.org/resource/Didi_&_Ditto", "http://dbpedia.org/resource/Didi_No._1", "http://dbpedia.org/resource/Didi_and_B.", "http://dbpedia.org/resource/Didn't_They_Do_Well", "http://dbpedia.org/resource/Didone_abbandonata_(Albinoni)", "http://dbpedia.org/resource/Didone_abbandonata_(Sarro)", "http://dbpedia.org/resource/Die_4_da", "http://dbpedia.org/resource/Die_Abenteuer_des_braven_Soldaten_Schwejk", "http://dbpedia.org/resource/Die_Aff\u00e4re_Semmeling", "http://dbpedia.org/resource/Die_Alpensaga", "http://dbpedia.org/resource/Die_Bambus-B\u00e4ren-Bande", "http://dbpedia.org/resource/Die_Bergwacht", "http://dbpedia.org/resource/Die_Bienen_\u2013_T\u00f6dliche_Bedrohung", "http://dbpedia.org/resource/Die_B\u00fcrgschaft_(opera)", "http://dbpedia.org/resource/Die_Camper", "http://dbpedia.org/resource/Die_Chance_deines_Lebens", "http://dbpedia.org/resource/Die_Chefin", "http://dbpedia.org/resource/Die_Cleveren", "http://dbpedia.org/resource/Die_Deutschen", "http://dbpedia.org/resource/Die_Dreisten_Drei", "http://dbpedia.org/resource/Die_Fallers_\u2013_Die_SWR_Schwarzwaldserie", "http://dbpedia.org/resource/Die_Familienanw\u00e4ltin", "http://dbpedia.org/resource/Die_Fastnachtsbeichte_(opera)", "http://dbpedia.org/resource/Die_Feen", "http://dbpedia.org/resource/Die_Firma_Hesselbach", "http://dbpedia.org/resource/Die_Gezeichneten", "http://dbpedia.org/resource/Die_Gipfelzipfler", "http://dbpedia.org/resource/Die_Hamletmaschine_(opera)", "http://dbpedia.org/resource/Die_Harald_Schmidt_Show", "http://dbpedia.org/resource/Die_Harmonie_der_Welt", "http://dbpedia.org/resource/Die_Hausmeisterin", "http://dbpedia.org/resource/Die_Hesselbachs", "http://dbpedia.org/resource/Die_Kinder", "http://dbpedia.org/resource/Die_Kinder_vom_Alstertal", "http://dbpedia.org/resource/Die_Knickerbocker-Bande", "http://dbpedia.org/resource/Die_Knoff-Hoff-Show", "http://dbpedia.org/resource/Die_Kommissarin", "http://dbpedia.org/resource/Die_K\u00f6nigin_von_Saba", "http://dbpedia.org/resource/Die_Liebe_der_Danae", "http://dbpedia.org/resource/Die_Lottosieger", "http://dbpedia.org/resource/Die_Ludolfs_\u2013_4_Br\u00fcder_auf'm_Schrottplatz", "http://dbpedia.org/resource/Die_Manns_\u2013_Ein_Jahrhundertroman", "http://dbpedia.org/resource/Die_Model_WG_(Austrian_TV_series)", "http://dbpedia.org/resource/Die_Model_WG_(German_TV_series)", "http://dbpedia.org/resource/Die_Muminfamilie", "http://dbpedia.org/resource/Die_Nibelungen", "http://dbpedia.org/resource/Die_Oliver_Pocher_Show", "http://dbpedia.org/resource/Die_Pfefferk\u00f6rner", "http://dbpedia.org/resource/Die_Pilgerin", "http://dbpedia.org/resource/Die_ProSieben_M\u00e4rchenstunde", "http://dbpedia.org/resource/Die_Rettungsflieger", "http://dbpedia.org/resource/Die_Rosen_von_Dublin", "http://dbpedia.org/resource/Die_Rosenheim-Cops", "http://dbpedia.org/resource/Die_Rote_Meile", "http://dbpedia.org/resource/Die_R\u00e4uber_(opera)", "http://dbpedia.org/resource/Die_Sendung_mit_dem_Elefanten", "http://dbpedia.org/resource/Die_Sendung_mit_der_Maus", "http://dbpedia.org/resource/Die_Soldaten", "http://dbpedia.org/resource/Die_Stunde_der_Offiziere", "http://dbpedia.org/resource/Die_Unverbesserlichen", "http://dbpedia.org/resource/Die_Wache", "http://dbpedia.org/resource/Die_Wochenshow", "http://dbpedia.org/resource/Die_W\u00f6lfe", "http://dbpedia.org/resource/Die_drei_Pintos", "http://dbpedia.org/resource/Die_gro\u00dfen_Kriminalf\u00e4lle", "http://dbpedia.org/resource/Die_rote_Kapelle", "http://dbpedia.org/resource/Die_schwarze_Maske", "http://dbpedia.org/resource/Die_tote_Stadt", "http://dbpedia.org/resource/Die_t\u00f6dlichen_W\u00fcnsche", "http://dbpedia.org/resource/Diego_and_Glot", "http://dbpedia.org/resource/Dienstag_aus_Licht", "http://dbpedia.org/resource/Dieppe_(film)", "http://dbpedia.org/resource/Diese_Drombuschs", "http://dbpedia.org/resource/Diese_Kaminskis", "http://dbpedia.org/resource/Diesel_Brothers", "http://dbpedia.org/resource/Dieselr\u00e5ttor_&_sj\u00f6mansm\u00f6ss", "http://dbpedia.org/resource/DietTribe", "http://dbpedia.org/resource/Dieter:_Der_Film", "http://dbpedia.org/resource/Dietland_(TV_series)", "http://dbpedia.org/resource/Diff'rent_Strokes", "http://dbpedia.org/resource/Difference_of_Opinion", "http://dbpedia.org/resource/Different_Dreams", "http://dbpedia.org/resource/Different_Kind_of_Woman", "http://dbpedia.org/resource/Difficult_People", "http://dbpedia.org/resource/Dig_(TV_series)", "http://dbpedia.org/resource/Dig_Deeper:_The_Disappearance_of_Birgit_Meier", "http://dbpedia.org/resource/Dig_Your_Roots", "http://dbpedia.org/resource/Digby_Dragon", "http://dbpedia.org/resource/Digest_Writer", "http://dbpedia.org/resource/Diggers_(TV_series)", "http://dbpedia.org/resource/Diggiloo", "http://dbpedia.org/resource/Digging_for_Britain", "http://dbpedia.org/resource/Digging_for_the_Truth", "http://dbpedia.org/resource/Diggstown_(TV_series)", "http://dbpedia.org/resource/Digimon_Adventure", "http://dbpedia.org/resource/Digimon_Adventure_02", "http://dbpedia.org/resource/Digimon_Data_Squad", "http://dbpedia.org/resource/Digimon_Frontier", "http://dbpedia.org/resource/Digimon_Fusion", "http://dbpedia.org/resource/Digimon_Fusion_(season_1)", "http://dbpedia.org/resource/Digimon_Tamers", "http://dbpedia.org/resource/Digital_LG_Quiz", "http://dbpedia.org/resource/Digital_Tour", "http://dbpedia.org/resource/Dignity_(TV_series)", "http://dbpedia.org/resource/Dikhawa", "http://dbpedia.org/resource/Dil,_Diya,_Dehleez_(TV_series)", "http://dbpedia.org/resource/Dil-e-Beqarar", "http://dbpedia.org/resource/Dil-e-Bereham", "http://dbpedia.org/resource/Dil-e-Gumshuda", "http://dbpedia.org/resource/Dil-e-Jaanam_(2017_TV_series)", "http://dbpedia.org/resource/Dil-e-Momin", "http://dbpedia.org/resource/Dil-e-Muztar", "http://dbpedia.org/resource/Dil-e-Nadaan_(TV_series)", "http://dbpedia.org/resource/Dil-e-Veeran", "http://dbpedia.org/resource/Dil_Awaiz", "http://dbpedia.org/resource/Dil_Awaiz_(2022_TV_series)", "http://dbpedia.org/resource/Dil_Banjaara", "http://dbpedia.org/resource/Dil_Bekaraar", "http://dbpedia.org/resource/Dil_Deke_Dekho_(TV_series)", "http://dbpedia.org/resource/Dil_Dhoondta_Hai", "http://dbpedia.org/resource/Dil_Diyan_Gallan", "http://dbpedia.org/resource/Dil_Dosti_Dance", "http://dbpedia.org/resource/Dil_Dosti_Dobara", "http://dbpedia.org/resource/Dil_Dosti_Duniyadari", "http://dbpedia.org/resource/Dil_Hai_Chota_Sa_Choti_Si_Asha", "http://dbpedia.org/resource/Dil_Hai_Hindustani", "http://dbpedia.org/resource/Dil_Hi_Toh_Hai", "http://dbpedia.org/resource/Dil_Ishq", "http://dbpedia.org/resource/Dil_Jaise_Dhadke..._Dhadakne_Do", "http://dbpedia.org/resource/Dil_Jeetegi_Desi_Girl", "http://dbpedia.org/resource/Dil_Ka_Kia_Rung_Karun", "http://dbpedia.org/resource/Dil_Ki_Baatein_Dil_Hi_Jaane", "http://dbpedia.org/resource/Dil_Ki_Nazar_Se_Khoobsurat", "http://dbpedia.org/resource/Dil_Kiya_Karay", "http://dbpedia.org/resource/Dil_Lagi", "http://dbpedia.org/resource/Dil_Mom_Ka_Diya", "http://dbpedia.org/resource/Dil_Muhallay_Ki_Haveli", "http://dbpedia.org/resource/Dil_Na_Umeed_To_Nahi", "http://dbpedia.org/resource/Dil_Nawaz", "http://dbpedia.org/resource/Dil_Ruba", "http://dbpedia.org/resource/Dil_Sambhal_Jaa_Zara", "http://dbpedia.org/resource/Dil_Se_Di_Dua..._Saubhagyavati_Bhava%3F", "http://dbpedia.org/resource/Dil_Se_Dil_Tak", "http://dbpedia.org/resource/Dil_Se_Diya_Vachan", "http://dbpedia.org/resource/Dil_Tanha_Tanha", "http://dbpedia.org/resource/Dil_Tera_Hogaya", "http://dbpedia.org/resource/Dil_Tere_Naam", "http://dbpedia.org/resource/Dil_Toh_Happy_Hai_Ji", "http://dbpedia.org/resource/Dil_Yeh_Ziddi_Hai", "http://dbpedia.org/resource/Dilara_(TV_series)", "http://dbpedia.org/resource/Dilbert", "http://dbpedia.org/resource/Dilbert_(TV_series)", "http://dbpedia.org/resource/Dilfareb", "http://dbpedia.org/resource/Dill_Mill_Gayye", "http://dbpedia.org/resource/Dilli_Wali_Thakur_Gurls", "http://dbpedia.org/resource/Dillinger_(1991_film)", "http://dbpedia.org/resource/Dilya_Ghari_Tu_Sukhi_Raha", "http://dbpedia.org/resource/Dim_Dam_Dom", "http://dbpedia.org/resource/Dime_Qui\u00e9n_Soy:_Mistress_of_War", "http://dbpedia.org/resource/Dimension_20", "http://dbpedia.org/resource/Dimension_404", "http://dbpedia.org/resource/Dimension_W", "http://dbpedia.org/resource/Dimethoxyamphetamine", "http://dbpedia.org/resource/Dimitri_(Jonci\u00e8res)", "http://dbpedia.org/resource/Dimitrij", "http://dbpedia.org/resource/Dinah!", "http://dbpedia.org/resource/Diners,_Drive-Ins_and_Dives", "http://dbpedia.org/resource/Ding_Dong_School", "http://dbpedia.org/resource/Dinhing_Dapita_Sadya", "http://dbpedia.org/resource/Dining_Downunder", "http://dbpedia.org/resource/Dink,_the_Little_Dinosaur", "http://dbpedia.org/resource/Dinky_Dog", "http://dbpedia.org/resource/Dinner:_Impossible", "http://dbpedia.org/resource/Dinner_Date", "http://dbpedia.org/resource/Dinner_Date_(American_TV_series)", "http://dbpedia.org/resource/Dinner_Mate", "http://dbpedia.org/resource/Dinner_and_a_Movie", "http://dbpedia.org/resource/Dinner_at_Eight_(1989_film)", "http://dbpedia.org/resource/Dinner_at_Tiffani's", "http://dbpedia.org/resource/Dinner_for_Five", "http://dbpedia.org/resource/Dinner_with_Dani", "http://dbpedia.org/resource/Dinner_with_Don", "http://dbpedia.org/resource/Dinner_with_Friends_(film)", "http://dbpedia.org/resource/Dinner_with_Friends_with_Brett_Gelman_and_Friends", "http://dbpedia.org/resource/Dinner_with_a_Vampire", "http://dbpedia.org/resource/Dinner_with_the_Band", "http://dbpedia.org/resource/Dinner_with_the_Family", "http://dbpedia.org/resource/Dinnerladies", "http://dbpedia.org/resource/Dinnerladies_(TV_series)", "http://dbpedia.org/resource/Dino-Riders", "http://dbpedia.org/resource/Dino:_Stay_Out!", "http://dbpedia.org/resource/Dino:_The_Great_Egg-Scape", "http://dbpedia.org/resource/DinoSquad", "http://dbpedia.org/resource/Dino_Babies", "http://dbpedia.org/resource/Dino_Dan", "http://dbpedia.org/resource/Dino_Dana", "http://dbpedia.org/resource/Dino_Girl_Gauko", "http://dbpedia.org/resource/Dino_Ki_Dulhaniya", "http://dbpedia.org/resource/Dino_Ranch", "http://dbpedia.org/resource/Dinocroc_vs._Supergator", "http://dbpedia.org/resource/Dinofroz", "http://dbpedia.org/resource/Dinosapien", "http://dbpedia.org/resource/Dinosaucers", "http://dbpedia.org/resource/Dinosaur!", "http://dbpedia.org/resource/Dinosaur_Baby_Holy_Heroes", "http://dbpedia.org/resource/Dinosaur_Britain", "http://dbpedia.org/resource/Dinosaur_Corps_Koseidon", "http://dbpedia.org/resource/Dinosaur_Planet_(TV_series)", "http://dbpedia.org/resource/Dinosaur_Revolution", "http://dbpedia.org/resource/Dinosaur_Train", "http://dbpedia.org/resource/Dinosaur_Wars_(film)", "http://dbpedia.org/resource/Dinosaurs,_Myths_and_Monsters", "http://dbpedia.org/resource/Dinosaurs:_The_Final_Day_with_David_Attenborough", "http://dbpedia.org/resource/Dinosaurs_(TV_series)", "http://dbpedia.org/resource/Dinoshark", "http://dbpedia.org/resource/Dinotopia_(TV_series)", "http://dbpedia.org/resource/Dinotopia_(miniseries)", "http://dbpedia.org/resource/Dinotrux", "http://dbpedia.org/resource/Dio_vede_e_provvede", "http://dbpedia.org/resource/Diomedes,_el_cacique_de_la_junta", "http://dbpedia.org/resource/Dip_(TV_series)", "http://dbpedia.org/resource/Dipdap", "http://dbpedia.org/resource/Diplodos", "http://dbpedia.org/resource/Diplomatic_Immunity_(Canadian_TV_series)", "http://dbpedia.org/resource/Diplomatic_Immunity_(New_Zealand_TV_series)", "http://dbpedia.org/resource/Diplomatic_Passport_(TV_series)", "http://dbpedia.org/resource/Dips_(TV_series)", "http://dbpedia.org/resource/Directions_in_Music", "http://dbpedia.org/resource/Directo_USA", "http://dbpedia.org/resource/Directors_Commentary", "http://dbpedia.org/resource/Direito_de_Amar", "http://dbpedia.org/resource/Diretta_Stadio", "http://dbpedia.org/resource/Dirili\u015f:_Ertu\u011frul", "http://dbpedia.org/resource/Dirk_Gently's_Holistic_Detective_Agency_(TV_series)", "http://dbpedia.org/resource/Dirk_Gently_(TV_series)", "http://dbpedia.org/resource/Dirt_(TV_series)", "http://dbpedia.org/resource/Dirt_Game", "http://dbpedia.org/resource/Dirtgirlworld", "http://dbpedia.org/resource/Dirty_Dancing:_The_Time_of_Your_Life", "http://dbpedia.org/resource/Dirty_Dancing_(1988_TV_series)", "http://dbpedia.org/resource/Dirty_Dancing_(2006_TV_series)", "http://dbpedia.org/resource/Dirty_Dancing_(2017_film)", "http://dbpedia.org/resource/Dirty_Dancing_(reality_TV_series)", "http://dbpedia.org/resource/Dirty_Filthy_Love", "http://dbpedia.org/resource/Dirty_Harry_(film_series)", "http://dbpedia.org/resource/Dirty_Jobs", "http://dbpedia.org/resource/Dirty_Jobs_(Australian_TV_series)", "http://dbpedia.org/resource/Dirty_John_(TV_series)", "http://dbpedia.org/resource/Dirty_Laundry_Live", "http://dbpedia.org/resource/Dirty_Linen_(Philippine_TV_Series)", "http://dbpedia.org/resource/Dirty_Money:_The_Story_of_the_Criminal_Assets_Bureau", "http://dbpedia.org/resource/Dirty_Money_(2011_TV_series)", "http://dbpedia.org/resource/Dirty_Money_(2018_TV_series)", "http://dbpedia.org/resource/Dirty_Money_(game_show)", "http://dbpedia.org/resource/Dirty_Pair", "http://dbpedia.org/resource/Dirty_Pictures", "http://dbpedia.org/resource/Dirty_Rotten_Cheater", "http://dbpedia.org/resource/Dirty_Sally", "http://dbpedia.org/resource/Dirty_Sanchez_(TV_series)", "http://dbpedia.org/resource/Dirty_Sexy_Funny", "http://dbpedia.org/resource/Dirty_Sexy_Money", "http://dbpedia.org/resource/Dirty_Sexy_Things", "http://dbpedia.org/resource/Dirty_Soap", "http://dbpedia.org/resource/Dirty_War_(film)", "http://dbpedia.org/resource/Dirty_Work_(TV_series)", "http://dbpedia.org/resource/Disappearance_(2002_film)", "http://dbpedia.org/resource/Disappeared_(TV_program)", "http://dbpedia.org/resource/Disappearing_Acts", "http://dbpedia.org/resource/Disappearing_London", "http://dbpedia.org/resource/Disappearing_World_(TV_series)", "http://dbpedia.org/resource/Disaster_DIY", "http://dbpedia.org/resource/Disaster_Date", "http://dbpedia.org/resource/Disaster_Masters", "http://dbpedia.org/resource/Disaster_Zone:_Volcano_in_New_York", "http://dbpedia.org/resource/Disaster_at_Silo_7", "http://dbpedia.org/resource/Disaster_on_the_Coastliner", "http://dbpedia.org/resource/Disband_(TV_series)", "http://dbpedia.org/resource/Disclaimer_(TV_series)", "http://dbpedia.org/resource/Disclosed", "http://dbpedia.org/resource/Disco_2_(TV_series)", "http://dbpedia.org/resource/Disco_Beaver_from_Outer_Space", "http://dbpedia.org/resource/Discorama", "http://dbpedia.org/resource/Discoring", "http://dbpedia.org/resource/Discover_Tasmania", "http://dbpedia.org/resource/Discoveries_(TV_series)", "http://dbpedia.org/resource/Discovering_the_Bible", "http://dbpedia.org/resource/Discovery_(American_TV_series)", "http://dbpedia.org/resource/Discovery_(Canadian_TV_series)", "http://dbpedia.org/resource/Discovery_Atlas", "http://dbpedia.org/resource/Discovery_of_Love", "http://dbpedia.org/resource/Discworld", "http://dbpedia.org/resource/Disenchantment_(TV_series)", "http://dbpedia.org/resource/Dise\u00f1ando_tu_amor", "http://dbpedia.org/resource/Disgaea", "http://dbpedia.org/resource/Dish!", "http://dbpedia.org/resource/Dish_Nation", "http://dbpedia.org/resource/Dishayen", "http://dbpedia.org/resource/Disinformation_(TV_series)", "http://dbpedia.org/resource/Disjointed", "http://dbpedia.org/resource/Dismal_Lakes", "http://dbpedia.org/resource/Disney's_Activity_Center", "http://dbpedia.org/resource/Disney's_Aladdin:_A_Musical_Spectacular", "http://dbpedia.org/resource/Disney's_Animated_Storybook", "http://dbpedia.org/resource/Disney's_Fairy_Tale_Weddings", "http://dbpedia.org/resource/Disney's_Freaky_Friday_(1995_film)", "http://dbpedia.org/resource/Disney's_Friends_for_Change", "http://dbpedia.org/resource/Disney's_Friends_for_Change_Games", "http://dbpedia.org/resource/Disney's_House_of_Mouse", "http://dbpedia.org/resource/Disney_Channel_(UK_and_Ireland)", "http://dbpedia.org/resource/Disney_Channel_Games", "http://dbpedia.org/resource/Disney_Channel_in_Concert", "http://dbpedia.org/resource/Disney_Club", "http://dbpedia.org/resource/Disney_Fam_Jam", "http://dbpedia.org/resource/Disney_Family_Album", "http://dbpedia.org/resource/Disney_Parks_Christmas_Day_Parade", "http://dbpedia.org/resource/Disney_Q_Family_Mastermind", "http://dbpedia.org/resource/Disney_Sing-Along_Songs", "http://dbpedia.org/resource/Disney_Theatrical_Group", "http://dbpedia.org/resource/Disney_Think_Fast", "http://dbpedia.org/resource/Disney_Time", "http://dbpedia.org/resource/Disney_anthology_television_series", "http://dbpedia.org/resource/Disney_on_Ice", "http://dbpedia.org/resource/Disokkupati", "http://dbpedia.org/resource/Dispatches_(TV_programme)", "http://dbpedia.org/resource/Dispatches_from_Elsewhere", "http://dbpedia.org/resource/Dispatches_from_a_Field_Hospital", "http://dbpedia.org/resource/Disraeli_(TV_serial)", "http://dbpedia.org/resource/Disrupt_&_Dismantle", "http://dbpedia.org/resource/Disrupt_with_Karen_Finney", "http://dbpedia.org/resource/Dissenters'_March", "http://dbpedia.org/resource/Distant_Shores_(British_TV_series)", "http://dbpedia.org/resource/Distinguished_Canadians", "http://dbpedia.org/resource/Distorted_(TV_series)", "http://dbpedia.org/resource/Distraction_(game_show)", "http://dbpedia.org/resource/Distretto_di_Polizia", "http://dbpedia.org/resource/Dit_was_het_nieuws", "http://dbpedia.org/resource/Ditha_Sab", "http://dbpedia.org/resource/Ditte_&_Louise", "http://dbpedia.org/resource/Diva_(2010_TV_series)", "http://dbpedia.org/resource/Divas_Hit_the_Road", "http://dbpedia.org/resource/Divas_in_Distress", "http://dbpedia.org/resource/Dive_Club", "http://dbpedia.org/resource/Divergence_Eve", "http://dbpedia.org/resource/Divergent_trilogy", "http://dbpedia.org/resource/Diverted", "http://dbpedia.org/resource/Divided_(American_game_show)", "http://dbpedia.org/resource/Divided_(British_game_show)", "http://dbpedia.org/resource/Divided_(Indian_game_show)", "http://dbpedia.org/resource/Divina,_est\u00e1_en_tu_coraz\u00f3n", "http://dbpedia.org/resource/Divine_Design", "http://dbpedia.org/resource/Divine_Melody", "http://dbpedia.org/resource/Divine_Retribution_(TV_series)", "http://dbpedia.org/resource/Division_4", "http://dbpedia.org/resource/Divisional_Public_School_and_College", "http://dbpedia.org/resource/Divithura_(teledrama)", "http://dbpedia.org/resource/Divorce_(TV_series)", "http://dbpedia.org/resource/Divorce_Court", "http://dbpedia.org/resource/Divorce_Court_(Australian_TV_series)", "http://dbpedia.org/resource/Divorce_His,_Divorce_Hers", "http://dbpedia.org/resource/Divorce_Lawyer_in_Love", "http://dbpedia.org/resource/Divorce_Wars:_A_Love_Story", "http://dbpedia.org/resource/Divorciadas", "http://dbpedia.org/resource/Divya_Drishti", "http://dbpedia.org/resource/Dixi_(TV_series)", "http://dbpedia.org/resource/Dixieland_Jazz_(TV_series)", "http://dbpedia.org/resource/Dixon_of_Dock_Green", "http://dbpedia.org/resource/Diya_Aur_Baati_Hum", "http://dbpedia.org/resource/Diyala_campaign", "http://dbpedia.org/resource/Diyar-e-Dil", "http://dbpedia.org/resource/Diyos_at_Bayan", "http://dbpedia.org/resource/Diz_Iz_It!", "http://dbpedia.org/resource/Dizengoff_Prize", "http://dbpedia.org/resource/Dizzy_Heights_(TV_series)", "http://dbpedia.org/resource/Django_(TV_series)", "http://dbpedia.org/resource/Djemai_Family", "http://dbpedia.org/resource/Djibril_\u2013_The_Devil_Angel", "http://dbpedia.org/resource/Djihad_(film)", "http://dbpedia.org/resource/Dnevnik_HRT", "http://dbpedia.org/resource/Dnevnik_MRT", "http://dbpedia.org/resource/Do-ol_Ah-in_Going_All_Directions", "http://dbpedia.org/resource/DoDo,_The_Kid_from_Outer_Space", "http://dbpedia.org/resource/DoReMi_Market", "http://dbpedia.org/resource/Do_Bol", "http://dbpedia.org/resource/Do_Dil_Bandhe_Ek_Dori_Se", "http://dbpedia.org/resource/Do_Dil_Ek_Jaan", "http://dbpedia.org/resource/Do_Do_Sol_Sol_La_La_Sol", "http://dbpedia.org/resource/Do_Hanson_Ka_Jodaa", "http://dbpedia.org/resource/Do_It_(TV_series)", "http://dbpedia.org/resource/Do_It_for_Yourself", "http://dbpedia.org/resource/Do_Lafzon_Ki_Kahani_(TV_series)", "http://dbpedia.org/resource/Do_No_Harm_(TV_series)", "http://dbpedia.org/resource/Do_Not_Adjust_Your_Set", "http://dbpedia.org/resource/Do_Not_Disturb_(TV_series)", "http://dbpedia.org/resource/Do_Not_Fold,_Spindle_or_Mutilate", "http://dbpedia.org/resource/Do_Not_Go_Gentle_Into_That_Good_Night_(film)", "http://dbpedia.org/resource/Do_Over", "http://dbpedia.org/resource/Do_Qadam_Door_Thay", "http://dbpedia.org/resource/Do_S_Deka", "http://dbpedia.org/resource/Do_Saal_Ki_Aurat", "http://dbpedia.org/resource/Do_Saheliyaan..._Kismat_Ki_Kathputaliyaan", "http://dbpedia.org/resource/Abaza_(TV_show)", "http://dbpedia.org/resource/Abele_(Alfieri)", "http://dbpedia.org/resource/Abigail_(telenovela)", "http://dbpedia.org/resource/Abro_(TV_serial)", "http://dbpedia.org/resource/Abr\u00e1zame_muy_fuerte", "http://dbpedia.org/resource/Absolute_Power_(comedy)", "http://dbpedia.org/resource/Absolutely_(sketch_show)", "http://dbpedia.org/resource/Sturmgesch\u00fctz", "http://dbpedia.org/resource/Tailhook_scandal", "http://dbpedia.org/resource/The_Chaser_APEC_pranks", "http://dbpedia.org/resource/The_Disasters_of_War", "http://dbpedia.org/resource/The_Rose_of_Persia", "http://dbpedia.org/resource/There_is_No_Natural_Religion", "http://dbpedia.org/resource/Thirty-six_Views_of_Mount_Fuji_(Hiroshige)", "http://dbpedia.org/resource/Uno_(card_game)", "http://dbpedia.org/resource/WDR_Computerclub", "http://dbpedia.org/resource/Winter_Line", "http://dbpedia.org/resource/ABS-CBN_International_Report", "http://dbpedia.org/resource/Agora_Trilogy", "http://dbpedia.org/resource/Fantastic_Four:_1234", "http://dbpedia.org/resource/Fedora_AOS", "http://dbpedia.org/resource/GEC_4000_series", "http://dbpedia.org/resource/Hot_Air_Balloon_(rock_opera)", "http://dbpedia.org/resource/I'm_Alright_Now", "http://dbpedia.org/resource/IBM_3590", "http://dbpedia.org/resource/July_1979_Madrid_bombings", "http://dbpedia.org/resource/Kimber_Aegis", "http://dbpedia.org/resource/Kodak_DCS_400_series", "http://dbpedia.org/resource/La_Academia_(Paraguay)", "http://dbpedia.org/resource/La_Academia_USA", "http://dbpedia.org/resource/List_of_American_Idol_finalists", "http://dbpedia.org/resource/Marvel_1602", "http://dbpedia.org/resource/Marvel_1985", "http://dbpedia.org/resource/Mitsubishi_Fuso_Aero_Bus", "http://dbpedia.org/resource/Nokia_6600_slide", "http://dbpedia.org/resource/Pretty_Little_Liars_(TV_series)", "http://dbpedia.org/resource/Psychomotor_agitation", "http://dbpedia.org/resource/Quasar_2000", "http://dbpedia.org/resource/Radeon_HD_7000_Series", "http://dbpedia.org/resource/Rickenbacker_300_Series", "http://dbpedia.org/resource/Roderick_Alleyn", "http://dbpedia.org/resource/Scottish_Agricultural_Revolution", "http://dbpedia.org/resource/See_America_First", "http://dbpedia.org/resource/Sega_All-Stars_(series)", "http://dbpedia.org/resource/September_2010_Lahore_bombings", "http://dbpedia.org/resource/Sophia_Aliberti", "http://dbpedia.org/resource/Sound_BlasterAxx", "http://dbpedia.org/resource/Swallows_and_Amazons_series", "http://dbpedia.org/resource/The_180", "http://dbpedia.org/resource/The_A-List_(2007_TV_series)", "http://dbpedia.org/resource/The_A-List_(novel_series)", "http://dbpedia.org/resource/The_Africans_(radio_program)", "http://dbpedia.org/resource/The_Amazing_Joy_Buzzards", "http://dbpedia.org/resource/The_Amory_Wars", "http://dbpedia.org/resource/The_Amtrak_Wars", "http://dbpedia.org/resource/The_Chronicles_of_Amber", "http://dbpedia.org/resource/The_Stand:_American_Nightmares", "http://dbpedia.org/resource/Trial_of_the_193", "http://dbpedia.org/resource/Type_625_research_vessel", "http://dbpedia.org/resource/UFC_All_Access", "http://dbpedia.org/resource/UNESCO_Albert_Einstein_medal", "http://dbpedia.org/resource/VH1:_All_Access", "http://dbpedia.org/resource/Animal_X_(TV_series)", "http://dbpedia.org/resource/Arthurian_legend", "http://dbpedia.org/resource/Back_in_the_Day_(TV_series)", "http://dbpedia.org/resource/Bakole_people", "http://dbpedia.org/resource/Gbandi", "http://dbpedia.org/resource/Genesis_of_Aquarion_(OVA)", "http://dbpedia.org/resource/Hellblazer_Special:_Bad_Blood", "http://dbpedia.org/resource/Juno_and_Avos_(opera)", "http://dbpedia.org/resource/Le_roi_Arthus", "http://dbpedia.org/resource/List_of_Arrow_characters", "http://dbpedia.org/resource/Memory_Bank_(UK_game_show)", "http://dbpedia.org/resource/Operation_AntiSec", "http://dbpedia.org/resource/Oswald_Bastable", "http://dbpedia.org/resource/Ralphi_\u2013_Der_Schlaub\u00e4r_aus_der_Augsburger_Puppenkiste", "http://dbpedia.org/resource/Seagate_Barracuda", "http://dbpedia.org/resource/The_Apple_Tree", "http://dbpedia.org/resource/The_Appleyards", "http://dbpedia.org/resource/The_Archers", "http://dbpedia.org/resource/The_Archives_of_Anthropos", "http://dbpedia.org/resource/The_Associates_(U.S._TV_series)", "http://dbpedia.org/resource/The_Avatar_Series", "http://dbpedia.org/resource/The_Babysitter_(novel_series)", "http://dbpedia.org/resource/The_Bachelor_(Israeli_TV_series)", "http://dbpedia.org/resource/The_Ballantyne_Novels", "http://dbpedia.org/resource/The_Baroness_(novels)", "http://dbpedia.org/resource/The_Beatles_Anthology", "http://dbpedia.org/resource/The_Big_Gay_Sketch_Show", "http://dbpedia.org/resource/The_Rob,_Arnie,_and_Dawn_Show", "http://dbpedia.org/resource/Walt_Disney_Presents:_Annette", "http://dbpedia.org/resource/Green_Lantern:_Mosaic", "http://dbpedia.org/resource/Inspector_Nardone", "http://dbpedia.org/resource/La_morte_d'Orfeo", "http://dbpedia.org/resource/Lake_Miwok", "http://dbpedia.org/resource/Mi_amor_frente_al_pasado", "http://dbpedia.org/resource/Mia's_Big_Adventure_Collection", "http://dbpedia.org/resource/Michael_Bennett_(book_series)", "http://dbpedia.org/resource/Michael_Moorcock's_Multiverse", "http://dbpedia.org/resource/Micheline", "http://dbpedia.org/resource/Mickey_McGuire_(film_series)", "http://dbpedia.org/resource/Mickey_Mouse_(comic_book)", "http://dbpedia.org/resource/Midnight_Club", "http://dbpedia.org/resource/Midnighters_trilogy", "http://dbpedia.org/resource/Midweek_(BBC_Radio_4)", "http://dbpedia.org/resource/Mighty_Max_(toyline)", "http://dbpedia.org/resource/Milady_3000", "http://dbpedia.org/resource/Milagros_(telenovela)", "http://dbpedia.org/resource/Milenko_Nedelkovski_Show", "http://dbpedia.org/resource/Milgram_experiment", "http://dbpedia.org/resource/Mille_(TV_series)", "http://dbpedia.org/resource/Millennium:_Tribal_Wisdom_and_the_Modern_World", "http://dbpedia.org/resource/Millennium_(video_game_series)", "http://dbpedia.org/resource/Millennium_Technology_Prize", "http://dbpedia.org/resource/Milton_(cartoon)", "http://dbpedia.org/resource/Mimmi_(book_series)", "http://dbpedia.org/resource/MindTrap", "http://dbpedia.org/resource/Minh_Nguyen", "http://dbpedia.org/resource/Minidoka_Project", "http://dbpedia.org/resource/Misaeng_(TV_series)", "http://dbpedia.org/resource/Miss_Julie_(Alwyn_opera)", "http://dbpedia.org/resource/Miss_Julie_(Rorem_opera)", "http://dbpedia.org/resource/Miss_Prissy", "http://dbpedia.org/resource/Mit_Leib_und_Seele_(TV_series)", "http://dbpedia.org/resource/Mixed_Doubles_(play)", "http://dbpedia.org/resource/Mo's_Mischief", "http://dbpedia.org/resource/Mock_&_Sweet", "http://dbpedia.org/resource/Mock_Turtles_(opera)", "http://dbpedia.org/resource/Model_F_keyboard", "http://dbpedia.org/resource/Model_Wife", "http://dbpedia.org/resource/Modesty_Blaise", "http://dbpedia.org/resource/Moment_in_Peking_(2014_TV_series)", "http://dbpedia.org/resource/Mona_(opera)", "http://dbpedia.org/resource/Monarch:_The_Big_Bear_of_Tallac", "http://dbpedia.org/resource/Mond_Mond_Mond", "http://dbpedia.org/resource/Monday_demonstrations_in_East_Germany", "http://dbpedia.org/resource/Monkey_Business_(TV_series)", "http://dbpedia.org/resource/Monkey_Magic_(British_TV_series)", "http://dbpedia.org/resource/Mono_tribe", "http://dbpedia.org/resource/Montauk_Project", "http://dbpedia.org/resource/Monte_Carlo_(radio_programme)", "http://dbpedia.org/resource/Montmorency_series", "http://dbpedia.org/resource/Moomins", "http://dbpedia.org/resource/Moon_River_(TV_series)", "http://dbpedia.org/resource/Mooney_(radio_programme)", "http://dbpedia.org/resource/Mordant's_Need", "http://dbpedia.org/resource/More_or_Less_(radio_programme)", "http://dbpedia.org/resource/Morgen_schon", "http://dbpedia.org/resource/Morgen_und_Abend", "http://dbpedia.org/resource/Morning_Call_(CNBC)", "http://dbpedia.org/resource/Morning_Star_(TV_series)", "http://dbpedia.org/resource/Mortdecai", "http://dbpedia.org/resource/Moses_(1968)", "http://dbpedia.org/resource/Most_Haunted:_Midsummer_Murders", "http://dbpedia.org/resource/Mother_and_Child_Scheme", "http://dbpedia.org/resource/MotoGP", "http://dbpedia.org/resource/Motoring_(TV_series)", "http://dbpedia.org/resource/Mountain_Meadows_massacre", "http://dbpedia.org/resource/Moving_Pictures_(TV_series)", "http://dbpedia.org/resource/Mozu", "http://dbpedia.org/resource/Mr._President_(radio_series)", "http://dbpedia.org/resource/Mrityunjay_(TV_series)", "http://dbpedia.org/resource/Ms._Tree", "http://dbpedia.org/resource/Much_Ado_About_Nothing_(opera)", "http://dbpedia.org/resource/Muddy_River_(Massachusetts)", "http://dbpedia.org/resource/Muirhead_Library_of_Philosophy", "http://dbpedia.org/resource/Mulk_(TV_series)", "http://dbpedia.org/resource/Multiverse_(Michael_Moorcock)", "http://dbpedia.org/resource/Munk's_Roll", "http://dbpedia.org/resource/Muppet_Babies", "http://dbpedia.org/resource/Murnaghan_(programme)", "http://dbpedia.org/resource/Music_Machine_(album_series)", "http://dbpedia.org/resource/Music_of_the_United_States_of_America_(publications)", "http://dbpedia.org/resource/Mutant_(role-playing_game)", "http://dbpedia.org/resource/Mutio_Scevola", "http://dbpedia.org/resource/Muttley", "http://dbpedia.org/resource/My_Baby_(series)", "http://dbpedia.org/resource/My_Fair_Lady_(1958_TV_series)", "http://dbpedia.org/resource/My_Generation_(game_show)", "http://dbpedia.org/resource/My_Girlfriend_(TV_series)", "http://dbpedia.org/resource/My_Music_(radio)", "http://dbpedia.org/resource/My_Sister_and_I_(TV_series)", "http://dbpedia.org/resource/My_Story_(Scholastic_New_Zealand)", "http://dbpedia.org/resource/My_Story_(Scholastic_UK)", "http://dbpedia.org/resource/My_Struggle_(Knausg\u00e5rd_novels)", "http://dbpedia.org/resource/Mykyta_the_Fox", "http://dbpedia.org/resource/Mylene_Flare_Jenius", "http://dbpedia.org/resource/Mystery_Files", "http://dbpedia.org/resource/Mystery_Files_(British_TV_series)", "http://dbpedia.org/resource/Mystery_House_(radio_drama)", "http://dbpedia.org/resource/Mystery_Mansion_(board_game)", "http://dbpedia.org/resource/Mystic_Comics", "http://dbpedia.org/resource/Mystique_(Blackpool_Pleasure_Beach)", "http://dbpedia.org/resource/Myst\u00e8re_(Cirque_du_Soleil)", "http://dbpedia.org/resource/MythAdventures", "http://dbpedia.org/resource/Mythos_(Marvel_Comics)", "http://dbpedia.org/resource/Mythos_(film)", "http://dbpedia.org/resource/Mythos_Island", "http://dbpedia.org/resource/M\u00e9duse_(opera)", "http://dbpedia.org/resource/NHL_Hitz", "http://dbpedia.org/resource/Naanal", "http://dbpedia.org/resource/Nabulsi_soap", "http://dbpedia.org/resource/Nacho_(telenovela)", "http://dbpedia.org/resource/Nanako_SOS", "http://dbpedia.org/resource/Nanami-chan", "http://dbpedia.org/resource/Nancy_Drew", "http://dbpedia.org/resource/Nanosatellite_Launch_System", "http://dbpedia.org/resource/Nanta_(show)", "http://dbpedia.org/resource/Nargiz_(opera)", "http://dbpedia.org/resource/Nashorn,_Zebra_&_Co.", "http://dbpedia.org/resource/Natacha_(comics)", "http://dbpedia.org/resource/Nathan_Hills", "http://dbpedia.org/resource/Nation_Lakes", "http://dbpedia.org/resource/National_Comics_(series)", "http://dbpedia.org/resource/National_Design_Awards", "http://dbpedia.org/resource/National_Finance_Commission_Award", "http://dbpedia.org/resource/National_Lampoon_Lemmings", "http://dbpedia.org/resource/National_Learning_Network", "http://dbpedia.org/resource/National_Medal_of_Arts", "http://dbpedia.org/resource/National_Youth_Service_(Zimbabwe)", "http://dbpedia.org/resource/Natoma_(opera)", "http://dbpedia.org/resource/Nature_(radio_programme)", "http://dbpedia.org/resource/Nehi", "http://dbpedia.org/resource/New_Deal_for_Communities", "http://dbpedia.org/resource/New_Series_Adventures_(Doctor_Who)", "http://dbpedia.org/resource/New_Star_Soccer", "http://dbpedia.org/resource/Newspapers_in_Education", "http://dbpedia.org/resource/Ninja_High_School", "http://dbpedia.org/resource/Nobody_Likes_Onions", "http://dbpedia.org/resource/North_American_Challenge_Skate", "http://dbpedia.org/resource/North_American_Poker_Tour", "http://dbpedia.org/resource/Not_for_Tourists", "http://dbpedia.org/resource/Novell_Embedded_Systems_Technology", "http://dbpedia.org/resource/Rats_of_NIMH", "http://dbpedia.org/resource/Rocky_and_Mugsy", "http://dbpedia.org/resource/Samsung_NX_series", "http://dbpedia.org/resource/Shevchenko_National_Prize", "http://dbpedia.org/resource/Show_Me_the_Monet", "http://dbpedia.org/resource/Sock_Monkey", "http://dbpedia.org/resource/Strikeforce:_Morituri", "http://dbpedia.org/resource/TAG_Heuer_Monaco", "http://dbpedia.org/resource/The_'Nam", "http://dbpedia.org/resource/The_Bob_Monkhouse_Hour", "http://dbpedia.org/resource/The_Bob_Monkhouse_Show", "http://dbpedia.org/resource/The_Great_Moghuls_(film)", "http://dbpedia.org/resource/The_Mikado", "http://dbpedia.org/resource/The_Mitford_Years", "http://dbpedia.org/resource/The_Money_Machine", "http://dbpedia.org/resource/The_Monkey_King's_Daughter", "http://dbpedia.org/resource/The_Morgaine_Stories", "http://dbpedia.org/resource/The_Morland_Dynasty", "http://dbpedia.org/resource/The_Movement_(comics)", "http://dbpedia.org/resource/The_Murchison_Murders", "http://dbpedia.org/resource/The_Music_Box_(TV_series)", "http://dbpedia.org/resource/The_National_Lampoon_Radio_Hour", "http://dbpedia.org/resource/Uppo-Nalle", "http://dbpedia.org/resource/Virgin_Missing_Adventures", "http://dbpedia.org/resource/Virgin_New_Adventures", "http://dbpedia.org/resource/Yamaha_Motif", "http://dbpedia.org/resource/Fujifilm_XF1", "http://dbpedia.org/resource/Grandes_\u00e9tudes_de_Paganini", "http://dbpedia.org/resource/Guitar_Xpress", "http://dbpedia.org/resource/ITN_World_News", "http://dbpedia.org/resource/ITTF_World_Tour", "http://dbpedia.org/resource/Kapitan_\u017bbik", "http://dbpedia.org/resource/Moose_and_Zee", "http://dbpedia.org/resource/Nissan_Z-car", "http://dbpedia.org/resource/Olympus_XA", "http://dbpedia.org/resource/Qinetiq_Zephyr", "http://dbpedia.org/resource/Sharp_Wizard", "http://dbpedia.org/resource/Star_Wars:_X-wing_(book_series)", "http://dbpedia.org/resource/The_Willow_Pattern", "http://dbpedia.org/resource/The_Winchesters", "http://dbpedia.org/resource/The_Wishing_Well_(film)", "http://dbpedia.org/resource/The_Witchfinder_(TV_series)", "http://dbpedia.org/resource/The_Witching", "http://dbpedia.org/resource/The_Wizard_Knight", "http://dbpedia.org/resource/The_X_Factor_(U.S._TV_series)", "http://dbpedia.org/resource/Two-Face:_Year_One", "http://dbpedia.org/resource/Verschoten_&_Zoon", "http://dbpedia.org/resource/WOW_series", "http://dbpedia.org/resource/Wake_Up_with_Whoopi", "http://dbpedia.org/resource/Whittington_(opera)", "http://dbpedia.org/resource/Who_Gets_the_Dog%3F_(2007_film)", "http://dbpedia.org/resource/Wicked_(novel_series)", "http://dbpedia.org/resource/Wide_Wide_World", "http://dbpedia.org/resource/Wignacourt_towers", "http://dbpedia.org/resource/Wild_Decembers_(TV_series)", "http://dbpedia.org/resource/Wildbach", "http://dbpedia.org/resource/Wildbach_(TV_series)", "http://dbpedia.org/resource/Wilding_series", "http://dbpedia.org/resource/Wildsiderz", "http://dbpedia.org/resource/Wilks_Memorial_Award", "http://dbpedia.org/resource/Will_Work_for_Food_(TV_series)", "http://dbpedia.org/resource/William_Ratcliff_(Cui)", "http://dbpedia.org/resource/Windmill_(TV_series)", "http://dbpedia.org/resource/Wingfield_Series", "http://dbpedia.org/resource/Winifred_Lawson", "http://dbpedia.org/resource/Winky_Dink_and_You", "http://dbpedia.org/resource/Winning_Streak", "http://dbpedia.org/resource/Winston_Science_Fiction", "http://dbpedia.org/resource/Wisdom_(TV_series)", "http://dbpedia.org/resource/Witness:_Five_Plays_from_the_Gospel_of_Luke", "http://dbpedia.org/resource/Women's_Murder_Club_(novel_series)", "http://dbpedia.org/resource/Women's_Viewpoint", "http://dbpedia.org/resource/Wonderful_World_(TV_series)", "http://dbpedia.org/resource/Wonderstruck", "http://dbpedia.org/resource/Word_of_Mouth_(radio_programme)", "http://dbpedia.org/resource/Words_and_Music_(TV_series)", "http://dbpedia.org/resource/Wordsmith_(TV_series)", "http://dbpedia.org/resource/World_War_One_(TV_series)", "http://dbpedia.org/resource/World_Without_End_(comics)", "http://dbpedia.org/resource/Worms_(series)", "http://dbpedia.org/resource/Wormwood:_Gentleman_Corpse", "http://dbpedia.org/resource/Worst-Case_Scenario_(TV_series)", "http://dbpedia.org/resource/Would_You_Believe_(TV_series)", "http://dbpedia.org/resource/Wrecked_(UK_TV_series)", "http://dbpedia.org/resource/Wrinkles_(radio_series)", "http://dbpedia.org/resource/Write_On_(TV_series)", "http://dbpedia.org/resource/X-Change_(series)", "http://dbpedia.org/resource/X-Men:_Children_of_the_Atom_(comics)", "http://dbpedia.org/resource/X-Men_(comic_book)", "http://dbpedia.org/resource/XDCAM", "http://dbpedia.org/resource/XIII_(comics)", "http://dbpedia.org/resource/XXXenophile", "http://dbpedia.org/resource/X_(game_series)", "http://dbpedia.org/resource/X_Marks_the_Spot_(game_show)", "http://dbpedia.org/resource/Xanadu_Houses", "http://dbpedia.org/resource/Xombie_(comics)", "http://dbpedia.org/resource/Xpress_(TV_series)", "http://dbpedia.org/resource/Yacht_Rock", "http://dbpedia.org/resource/Yamaska_(TV_series)", "http://dbpedia.org/resource/Yasha_(manga)", "http://dbpedia.org/resource/Yellow_Dog_(Variety)", "http://dbpedia.org/resource/Yerukala_people", "http://dbpedia.org/resource/Yiddishkeit_(TV_series)", "http://dbpedia.org/resource/Yogi_Bear", "http://dbpedia.org/resource/Yoshimune_(anime)", "http://dbpedia.org/resource/Young_Reporters_for_the_Environment", "http://dbpedia.org/resource/Young_Sherlock_Holmes_(books)", "http://dbpedia.org/resource/Ys_(anime)", "http://dbpedia.org/resource/Yuri_(satellite)", "http://dbpedia.org/resource/ZAKA", "http://dbpedia.org/resource/ZMD:_Zombies_of_Mass_Destruction_(comics)", "http://dbpedia.org/resource/Z_series_space_suits", "http://dbpedia.org/resource/Zahra's_Blue_Eyes", "http://dbpedia.org/resource/Zap_Comix", "http://dbpedia.org/resource/Zappas_Olympics", "http://dbpedia.org/resource/Zarya_(opera)", "http://dbpedia.org/resource/Ze_(manga)", "http://dbpedia.org/resource/Zeit_genug", "http://dbpedia.org/resource/Zembla_(TV_series)", "http://dbpedia.org/resource/Zero_One_(TV_series)", "http://dbpedia.org/resource/Zero_to_Hero", "http://dbpedia.org/resource/Zig_et_Puce", "http://dbpedia.org/resource/Zigor", "http://dbpedia.org/resource/Zillion_(anime)", "http://dbpedia.org/resource/Ziyuan_(satellite)", "http://dbpedia.org/resource/Ziz_Gorges", "http://dbpedia.org/resource/Zodiac-films", "http://dbpedia.org/resource/Zonder_Ernst", "http://dbpedia.org/resource/Zoot_Suit_Riots", "http://dbpedia.org/resource/Zumba_Fitness_Dance_Party", "http://dbpedia.org/resource/\u00c1gueda_(telenovela)", "http://dbpedia.org/resource/\u00c9n\u00e9e_et_Lavinie_(Collasse)", "http://dbpedia.org/resource/\u00c9n\u00e9e_et_Lavinie_(Dauvergne)", "http://dbpedia.org/resource/\u00c9xitos_y_Recuerdos", "http://dbpedia.org/resource/Hamburger\u2013Hamilton_stages", "http://dbpedia.org/resource/Hamilton_Invaders", "http://dbpedia.org/resource/Hamilton_Town_Belt", "http://dbpedia.org/resource/Hammerin'_Harry", "http://dbpedia.org/resource/Hammering_Man", "http://dbpedia.org/resource/Hampshire_Book_Awards", "http://dbpedia.org/resource/Hamster_Vice", "http://dbpedia.org/resource/Hana_Yori_mo_Hana_no_Gotoku", "http://dbpedia.org/resource/Hana_to_Ry\u016b", "http://dbpedia.org/resource/Hanada_Sh\u014dnen_Shi", "http://dbpedia.org/resource/Hand_of_Hope", "http://dbpedia.org/resource/Handbook_of_North_American_Indians", "http://dbpedia.org/resource/Handbook_of_South_American_Indians", "http://dbpedia.org/resource/Handbook_of_the_Natural_Region_Divisions_of_Germany", "http://dbpedia.org/resource/Hanjuku-Joshi", "http://dbpedia.org/resource/Hank_Zipzer", "http://dbpedia.org/resource/Hanna_\u2013_Folge_deinem_Herzen", "http://dbpedia.org/resource/Hannibal_Lecter_(franchise)", "http://dbpedia.org/resource/Asi_es_la_Vida", "http://dbpedia.org/resource/Ford_Saturday_Night_Football", "http://dbpedia.org/resource/Herreavdelingen", "http://dbpedia.org/resource/Italian_Formula_4_Championship", "http://dbpedia.org/resource/Karl_Formes", "http://dbpedia.org/resource/La_Dolce_Vita_(TV_series)", "http://dbpedia.org/resource/Ladyland", "http://dbpedia.org/resource/Lee_and_Herring_(radio_series)", "http://dbpedia.org/resource/Lettres_provinciales", "http://dbpedia.org/resource/Magical_Hat", "http://dbpedia.org/resource/Matthew's_Best_Hit_TV", "http://dbpedia.org/resource/Olympics_Triplecast", "http://dbpedia.org/resource/Pastel_Yumi,_the_Magic_Idol", "http://dbpedia.org/resource/Primetime_Emmy_Award_for_Outstanding_Main_Title_Theme_Music", "http://dbpedia.org/resource/TV3_News", "http://dbpedia.org/resource/Taungurong", "http://dbpedia.org/resource/The_Faerie_Wars_Chronicles", "http://dbpedia.org/resource/The_Riftwar_Legacy", "http://dbpedia.org/resource/Video_magazine", "http://dbpedia.org/resource/WWE_Insurrextion", "http://dbpedia.org/resource/Weekend_Breakfast_(radio_show)", "http://dbpedia.org/resource/Wyoming_Democratic_caucuses,_2008", "http://dbpedia.org/resource/Big_Top_Ballet", "http://dbpedia.org/resource/CS1", "http://dbpedia.org/resource/Canon_XC10", "http://dbpedia.org/resource/Clever_(TV_series)", "http://dbpedia.org/resource/Do\u00f1a_B\u00e1rbara_(2008_telenovela)", "http://dbpedia.org/resource/Falling_for_Innocence", "http://dbpedia.org/resource/Fast_Money_(CNBC)", "http://dbpedia.org/resource/Franklin_6_series", "http://dbpedia.org/resource/Great_Barrier_Reef_(TV_series)", "http://dbpedia.org/resource/IBM_Electric_typewriter", "http://dbpedia.org/resource/India's_Great_Driving_Challenge", "http://dbpedia.org/resource/International_Motorsports_Hall_of_Fame_200", "http://dbpedia.org/resource/Intersection_for_the_Arts_Literary_Series", "http://dbpedia.org/resource/Jake_&_Blake", "http://dbpedia.org/resource/Kare_Baka", "http://dbpedia.org/resource/Kassai_and_Leuk", "http://dbpedia.org/resource/La_parodia", "http://dbpedia.org/resource/La_reine_Fiammette", "http://dbpedia.org/resource/Lacy's_Caves", "http://dbpedia.org/resource/Las_noticias_del_gui\u00f1ol", "http://dbpedia.org/resource/Le_Fric_Show", "http://dbpedia.org/resource/Let's_Eat_at_Home!", "http://dbpedia.org/resource/Lo_Sconosciuto", "http://dbpedia.org/resource/Luke_Nguyen's_Vietnam", "http://dbpedia.org/resource/Lupo_Alberto", "http://dbpedia.org/resource/Maggie_(1981_TV_series)", "http://dbpedia.org/resource/Maggie_(TV_series)", "http://dbpedia.org/resource/Mammals_of_Africa", "http://dbpedia.org/resource/Masterplots", "http://dbpedia.org/resource/Mental_Engineering", "http://dbpedia.org/resource/Motorola_Razr3", "http://dbpedia.org/resource/Mr._Brown_Coffee", "http://dbpedia.org/resource/My_Plaything", "http://dbpedia.org/resource/NBA_Sunday_Showcase_on_ABC", "http://dbpedia.org/resource/Nebula_Award_for_Best_Novel", "http://dbpedia.org/resource/New_Mermaids", "http://dbpedia.org/resource/New_York_State_Summer_School_of_the_Arts", "http://dbpedia.org/resource/Neynava_truck", "http://dbpedia.org/resource/Nickelodeon_UK_Kids'_Choice_Awards", "http://dbpedia.org/resource/Night_of_the_Proms", "http://dbpedia.org/resource/Nikon_Coolpix_P510", "http://dbpedia.org/resource/Ohio_Bicentennial", "http://dbpedia.org/resource/One_Hundred_Thousand_Bad_Jokes", "http://dbpedia.org/resource/Pennyland_project", "http://dbpedia.org/resource/Pentax_Q10", "http://dbpedia.org/resource/Pizarre", "http://dbpedia.org/resource/Providence_(TV_series)", "http://dbpedia.org/resource/Prudence_&_Caution", "http://dbpedia.org/resource/Radharc", "http://dbpedia.org/resource/Radio_Belgique", "http://dbpedia.org/resource/Ragged_Isle", "http://dbpedia.org/resource/Ravioli_(TV_series)", "http://dbpedia.org/resource/Robots_and_Avatars", "http://dbpedia.org/resource/Samt_und_Seide", "http://dbpedia.org/resource/Scarlett_Hill", "http://dbpedia.org/resource/Schulz_&_Schulz", "http://dbpedia.org/resource/Six_Characters_in_Search_of_an_Author_(opera)", "http://dbpedia.org/resource/Star_Radio_Network", "http://dbpedia.org/resource/Stiamo_bene_insieme", "http://dbpedia.org/resource/Super_Bowl_at_XL", "http://dbpedia.org/resource/Superdance_South_Africa_(TV_series)", "http://dbpedia.org/resource/Tales_of_the_Moonlight_Cutter", "http://dbpedia.org/resource/Teachings_of_Presidents_of_the_Church", "http://dbpedia.org/resource/Television's_Greatest_Hits", "http://dbpedia.org/resource/The_Accounts_of_Jingkang", "http://dbpedia.org/resource/The_Cavanaughs_(web_series)", "http://dbpedia.org/resource/The_Gift_(TV_series)", "http://dbpedia.org/resource/The_Second_Stage_Turbine_Blade_(comics)", "http://dbpedia.org/resource/The_Sensational_Spider-Man_(vol._2)", "http://dbpedia.org/resource/The_Tiara_Club", "http://dbpedia.org/resource/The_World_of_Beachcomber", "http://dbpedia.org/resource/Theban\u2013Spartan_War", "http://dbpedia.org/resource/Thuggee_and_Dacoity_Suppression_Acts,_1836\u20131848", "http://dbpedia.org/resource/Toda_Mujer", "http://dbpedia.org/resource/Tom_Clancy's_Net_Force_Explorers:_Shadow_of_Honor", "http://dbpedia.org/resource/Tom_Clancy's_Net_Force_Explorers:_The_Ultimate_Escape", "http://dbpedia.org/resource/Trimline_telephone", "http://dbpedia.org/resource/Tuubi", "http://dbpedia.org/resource/Two_Boys", "http://dbpedia.org/resource/Type_079_landing_ship_medium", "http://dbpedia.org/resource/Ujan_Ganger_Naiya", "http://dbpedia.org/resource/Ultraman_vs._Kamen_Rider", "http://dbpedia.org/resource/Unbeatables", "http://dbpedia.org/resource/Washington_Report_(DuMont_TV_series)", "http://dbpedia.org/resource/Wincon", "http://dbpedia.org/resource/World_Tamil_Conference", "http://dbpedia.org/resource/X\u00e1_L\u1ee3i_Pagoda_raids", "http://dbpedia.org/resource/Yalova_Peninsula_massacres_(1920\u201321)", "http://dbpedia.org/resource/Young_Doctor_Malone", "http://dbpedia.org/resource/History_of_the_Rugby_League_Conference", "http://dbpedia.org/resource/History_of_the_Squamish_people", "http://dbpedia.org/resource/History_wars", "http://dbpedia.org/resource/Hit_30", "http://dbpedia.org/resource/Hitchgathering", "http://dbpedia.org/resource/Hitler's_Bodyguard_(TV_series)", "http://dbpedia.org/resource/Hiyokoi", "http://dbpedia.org/resource/HoHoCon", "http://dbpedia.org/resource/Hobbes\u2013Wallis_controversy", "http://dbpedia.org/resource/Hockey_Central", "http://dbpedia.org/resource/Hodgepodge_Lodge", "http://dbpedia.org/resource/Hoffmann_kiln", "http://dbpedia.org/resource/Hoffnung_Music_Festival", "http://dbpedia.org/resource/Hog's_Back_Falls", "http://dbpedia.org/resource/Hogarth_Living_Poets", "http://dbpedia.org/resource/Hokum_&_Hex", "http://dbpedia.org/resource/Hold_the_Dream", "http://dbpedia.org/resource/Hole_cam", "http://dbpedia.org/resource/Holiday_Film_Festival", "http://dbpedia.org/resource/Holiday_Hit_Squad", "http://dbpedia.org/resource/Holiday_Showcase", "http://dbpedia.org/resource/Holiday_on_Ice", "http://dbpedia.org/resource/Holidays_at_Home", "http://dbpedia.org/resource/Holidays_in_the_Danger_Zone", "http://dbpedia.org/resource/Holly_the_Ghost", "http://dbpedia.org/resource/Hollywood's_Comedy_Nights", "http://dbpedia.org/resource/Hollywood_Love_Story", "http://dbpedia.org/resource/Hollywood_Star_Playhouse", "http://dbpedia.org/resource/Hollywood_Superstars", "http://dbpedia.org/resource/Hollywood_Trials", "http://dbpedia.org/resource/Holmegaard_bow", "http://dbpedia.org/resource/Holy_Avenger", "http://dbpedia.org/resource/Home_Things", "http://dbpedia.org/resource/Home_University_Library_of_Modern_Knowledge", "http://dbpedia.org/resource/Home_and_Away:_Romances", "http://dbpedia.org/resource/Home_and_Away:_Weddings", "http://dbpedia.org/resource/Homecoming_Scotland_2009", "http://dbpedia.org/resource/Homicide:_Second_Shift", "http://dbpedia.org/resource/Homofonia", "http://dbpedia.org/resource/Honda_CM_series", "http://dbpedia.org/resource/Honda_Challenge", "http://dbpedia.org/resource/Honda_NR", "http://dbpedia.org/resource/Honest_Doubt", "http://dbpedia.org/resource/Honey,_We're_Killing_the_Kids", "http://dbpedia.org/resource/Emperatriz_(1990_telenovela)", "http://dbpedia.org/resource/En_busca_del_para\u00edso_(1982_telenovela)", "http://dbpedia.org/resource/Encadenados_(1969_telenovela)", "http://dbpedia.org/resource/Encadenados_(telenovela)", "http://dbpedia.org/resource/Encirclement_Campaign_against_Hunan\u2013Jiangxi_Soviet", "http://dbpedia.org/resource/Encounter_(1960_TV_series)", "http://dbpedia.org/resource/Encounter_(TV_series)", "http://dbpedia.org/resource/Encrucijada_(telenovela)", "http://dbpedia.org/resource/Endemic_birds_of_Japan", "http://dbpedia.org/resource/Endemic_birds_of_New_Caledonia", "http://dbpedia.org/resource/Endemic_birds_of_eastern_North_America", "http://dbpedia.org/resource/Endemic_birds_of_the_Himalayas", "http://dbpedia.org/resource/Endemic_birds_of_western_North_America", "http://dbpedia.org/resource/Ender's_Game_series", "http://dbpedia.org/resource/Emcee_Africa", "http://dbpedia.org/resource/Emergency_(series)", "http://dbpedia.org/resource/Emilia_(telenovela)", "http://dbpedia.org/resource/Internet_Killed_Television", "http://dbpedia.org/resource/Nikon_S4", "http://dbpedia.org/resource/No_Manches", "http://dbpedia.org/resource/R\u00f6da_tr\u00e5den", "http://dbpedia.org/resource/Star_Awards_2005", "http://dbpedia.org/resource/Wish_Ko_Lang", "http://dbpedia.org/resource/Balita_Ngayon", "http://dbpedia.org/resource/Color_Me_a_Rainbow", "http://dbpedia.org/resource/Eurolaul", "http://dbpedia.org/resource/Fun_&_Fortune", "http://dbpedia.org/resource/Gabriela_(telenovela)", "http://dbpedia.org/resource/Generations_(U.S._TV_series)", "http://dbpedia.org/resource/Get_a_Life_(TV_series)", "http://dbpedia.org/resource/God_of_War_(series)", "http://dbpedia.org/resource/History_of_Saturday_Night_Live_(1975\u201380)", "http://dbpedia.org/resource/Homefront_(U.S._TV_series)", "http://dbpedia.org/resource/Iffet", "http://dbpedia.org/resource/Jet_Set_Radio_(series)", "http://dbpedia.org/resource/Kapag_nasa_Katwiran,_Ipaglaban_Mo!", "http://dbpedia.org/resource/Kiss_of_Rose_Princess", "http://dbpedia.org/resource/Konkan_Maratha", "http://dbpedia.org/resource/Leonardo_(TV_series)", "http://dbpedia.org/resource/Mach_a_\u0160ebestov\u00e1", "http://dbpedia.org/resource/Mainly_for_Women", "http://dbpedia.org/resource/Marie_(TV_series)", "http://dbpedia.org/resource/Marvel_Knights_4", "http://dbpedia.org/resource/MeeBOX", "http://dbpedia.org/resource/Mistborn_series", "http://dbpedia.org/resource/Moody's_Manual", "http://dbpedia.org/resource/Moses_(documentary)", "http://dbpedia.org/resource/Music_to_See_(1970s_TV_series)", "http://dbpedia.org/resource/My_Inner_Beast", "http://dbpedia.org/resource/Myst_(series)", "http://dbpedia.org/resource/NZ_on_Screen", "http://dbpedia.org/resource/Nang_Talung", "http://dbpedia.org/resource/National_Lampoon's_Class_of_'86", "http://dbpedia.org/resource/Next_Caller", "http://dbpedia.org/resource/Nowhere_Men", "http://dbpedia.org/resource/On_the_Job_(TV_series)", "http://dbpedia.org/resource/On_the_Record_(BBC_TV_series)", "http://dbpedia.org/resource/Pentax_PC35AF", "http://dbpedia.org/resource/Phish_in_Hampton", "http://dbpedia.org/resource/Phosphorus_halide", "http://dbpedia.org/resource/Pobre_Ni\u00f1a_Rica", "http://dbpedia.org/resource/Questione_Ladina", "http://dbpedia.org/resource/Results_Service", "http://dbpedia.org/resource/Revolution_618_(TV_Talk_show)", "http://dbpedia.org/resource/Risk_Takers", "http://dbpedia.org/resource/Rogue_Angel", "http://dbpedia.org/resource/Rubbery_Figures", "http://dbpedia.org/resource/Samsung_NX1", "http://dbpedia.org/resource/Savage_Sword_of_Conan", "http://dbpedia.org/resource/Showdown_with_Larry_Elder", "http://dbpedia.org/resource/Sin_Cities", "http://dbpedia.org/resource/Somaliland_Campaign", "http://dbpedia.org/resource/Star_Awards_2004", "http://dbpedia.org/resource/Sun_Belt_Conference_Men's_Basketball_Player_of_the_Year", "http://dbpedia.org/resource/Sunshine_Millions", "http://dbpedia.org/resource/Surge_Events", "http://dbpedia.org/resource/TASB_(psychedelics)", "http://dbpedia.org/resource/THPB_UAV", "http://dbpedia.org/resource/Talk2", "http://dbpedia.org/resource/Target_Luna", "http://dbpedia.org/resource/Tarim_mummies", "http://dbpedia.org/resource/Tatayet", "http://dbpedia.org/resource/Tatta_Hitotsu_no_Koi", "http://dbpedia.org/resource/Tellos", "http://dbpedia.org/resource/Telos_Doctor_Who_novellas", "http://dbpedia.org/resource/The_21_Conspiracy", "http://dbpedia.org/resource/The_Addams_Family_(1973_animated_series)", "http://dbpedia.org/resource/The_Artist's_Cottage_project", "http://dbpedia.org/resource/The_Benefactor", "http://dbpedia.org/resource/The_Bold_and_the_Beautiful_secondary_characters", "http://dbpedia.org/resource/The_Chronicles_of_Prydain", "http://dbpedia.org/resource/The_Colm_and_Lucy_Show", "http://dbpedia.org/resource/The_Cops_(TV_series)", "http://dbpedia.org/resource/The_Countess", "http://dbpedia.org/resource/The_Dark_Abode", "http://dbpedia.org/resource/The_Day_the_Music_Died_(radio)", "http://dbpedia.org/resource/The_Exclusives_(TV_show)", "http://dbpedia.org/resource/The_Firebringer_Trilogy", "http://dbpedia.org/resource/The_Good_Night_Chicago_Show", "http://dbpedia.org/resource/The_Intimates", "http://dbpedia.org/resource/The_Jimmy_Parkinson_Show", "http://dbpedia.org/resource/The_Mole_(UK_TV_series)", "http://dbpedia.org/resource/The_No._1_Ladies'_Detective_Agency", "http://dbpedia.org/resource/The_Return_of_the_Condor_Heroes_(Taiwanese_TV_series)", "http://dbpedia.org/resource/The_River_Flows_Eastwards", "http://dbpedia.org/resource/The_Robot_Johnson_Show", "http://dbpedia.org/resource/The_Royal_Diaries", "http://dbpedia.org/resource/The_Seven_Fabulous_Wonders", "http://dbpedia.org/resource/The_Ultimates_2", "http://dbpedia.org/resource/The_Un-Credible_Shrinking_Man", "http://dbpedia.org/resource/They_Go_On", "http://dbpedia.org/resource/This_I_Believe_(TV_series)", "http://dbpedia.org/resource/This_Is_That", "http://dbpedia.org/resource/Tierarzt_Dr._Engel", "http://dbpedia.org/resource/Today_(Irish_TV_series)", "http://dbpedia.org/resource/Tom-Tom_and_Nana", "http://dbpedia.org/resource/T\u00e9l\u00e8phe", "http://dbpedia.org/resource/Ultra_Quiz", "http://dbpedia.org/resource/Valeria_(1966_telenovela)", "http://dbpedia.org/resource/Vietnam:_The_Camera_at_War", "http://dbpedia.org/resource/West_Coast_Live", "http://dbpedia.org/resource/Westside_(TV_series)", "http://dbpedia.org/resource/Winning_Lines_(U.S._game_show)", "http://dbpedia.org/resource/Zaporizhian_March_(music)", "http://dbpedia.org/resource/Zoorama", "http://dbpedia.org/resource/Marvel_Superheroes:_What_the--%3F!", "http://dbpedia.org/resource/George_of_the_Jungle_(Season_2)", "http://dbpedia.org/resource/German_Mexican", "http://dbpedia.org/resource/Those_Who_Kill_(U.S._TV_series)", "http://dbpedia.org/resource/Medieval_World_Series", "http://dbpedia.org/resource/Meet_the_Izzards", "http://dbpedia.org/resource/Rivers_of_New_South_Wales", "http://dbpedia.org/resource/Not_Love_Alone", "http://dbpedia.org/resource/The_Twilight_Children", "http://dbpedia.org/resource/The_Tyrant_King", "http://dbpedia.org/resource/The_Way_It_Is_(radio_programme)", "http://dbpedia.org/resource/The_Wingfeather_Saga", "http://dbpedia.org/resource/Theatre_Date", "http://dbpedia.org/resource/This_Is_Your_Right", "http://dbpedia.org/resource/Thou_Shalt_Not_Kill_(TV_series)", "http://dbpedia.org/resource/Integration_tv", "http://dbpedia.org/resource/Jamaican_Canadian", "http://dbpedia.org/resource/Jamaicans_of_African_ancestry", "http://dbpedia.org/resource/James_Bond_in_film", "http://dbpedia.org/resource/Chambers_(series)__30_minutes__1", "http://dbpedia.org/resource/Sapphire_Films__UK-tv-prog-stub__1", "http://dbpedia.org/resource/Sarah_the_Teen_Princess__Sarah_the_Teen_Princess__1", "http://dbpedia.org/resource/Saturday_Night's_Main_Event__Saturday_Night's_Main_Event__1", "http://dbpedia.org/resource/Saturday_Primetime__Saturday_Primetime__1", "http://dbpedia.org/resource/Saved_by_the_Bell__Saved_by_the_Bell__1", "http://dbpedia.org/resource/Saving_Emily__Saving_Emily__1", "http://dbpedia.org/resource/Saving_Milly__Saving_Milly__1", "http://dbpedia.org/resource/Say_It_with_Music_(1957_TV_series)__Say_It_with_Music__1", "http://dbpedia.org/resource/School_Wars:_Hero__School_Wars__1", "http://dbpedia.org/resource/Scream_Street_(TV_series)__Scream_Street__1", "http://dbpedia.org/resource/Seachd_L\u00e0__Seachd_L\u00e0__1", "http://dbpedia.org/resource/Second_Sight_(Midsomer_Murders)__UK-tv-prog-stub__1", "http://dbpedia.org/resource/Spartan_Race_(TV_series)", "http://dbpedia.org/resource/Spatterjay", "http://dbpedia.org/resource/UNHhhh__Trixie_and_Katya_Save_the_World__1", "http://dbpedia.org/resource/USA_Today__:_The_Television_Show__1", "http://dbpedia.org/resource/VBirds__1", "http://dbpedia.org/resource/VBirds__:_Perfect__1", "http://dbpedia.org/resource/Val_Meets_The_VIPs__In_The_Limelight_With_Lesley__1", "http://dbpedia.org/resource/Vibe_Australia__Move_it_Mob_Style__1", "http://dbpedia.org/resource/Vickers_Wellington_LN514__Wellington_Bomber__1", "http://dbpedia.org/resource/Ukrainian_Brazilian", "http://dbpedia.org/resource/Ukrainian_diaspora_in_the_United_Kingdom", "http://dbpedia.org/resource/Ultra_Rich_Asian_Girls", "http://dbpedia.org/resource/Underground_(2016_TV_series)", "http://dbpedia.org/resource/Untitled_Film_Stills_(photograph_series)", "http://dbpedia.org/resource/Ute_Tribe", "http://dbpedia.org/resource/Uthiri_Pookal_(TV_series)", "http://dbpedia.org/resource/Uw_Oykangand_people", "http://dbpedia.org/resource/Uzboi-Landon-Morava_(ULM)", "http://dbpedia.org/resource/Vaidehi_(Tamil_TV_series)", "http://dbpedia.org/resource/Skins_(TV_series)", "http://dbpedia.org/resource/Wess'Har_Series", "http://dbpedia.org/resource/Hamshenis", "http://dbpedia.org/resource/Creek_people", "http://dbpedia.org/resource/Arab_British", "http://dbpedia.org/resource/British_Iranian", "http://dbpedia.org/resource/Lebanese_British", "http://dbpedia.org/resource/World's_Worst_Driver", "http://dbpedia.org/resource/List_of_Command_&_Conquer_factions", "http://dbpedia.org/resource/Gelivable_Sunday", "http://dbpedia.org/resource/Lachlan_Fox", "http://dbpedia.org/resource/Mabi", "http://dbpedia.org/resource/Mundhanai_Mudichu_(2010_TV_series)", "http://dbpedia.org/resource/Sisterhood_of_the_Travelling_Pants", "http://dbpedia.org/resource/Unnamed_Planet", "http://dbpedia.org/resource/Fear_Factor:_Khatron_Ke_Khiladi_(season_7)", "http://dbpedia.org/resource/List_of_Top_20_Countdown:_Most_Shocking_episodes", "http://dbpedia.org/resource/Rome:_Rise_and_fall_of_an_empire", "http://dbpedia.org/resource/The_Flintstones_(film_series)", "http://dbpedia.org/resource/Ai_to_Makoto", "http://dbpedia.org/resource/Aida", "http://dbpedia.org/resource/Aifric", "http://dbpedia.org/resource/Aik_Aur_Munafiq", "http://dbpedia.org/resource/Aik_Aur_Sitam_Hai", "http://dbpedia.org/resource/Aik_Din_Geo_Kay_Sath", "http://dbpedia.org/resource/Aik_Din_Geo_Ke_Saath", "http://dbpedia.org/resource/Aik_Hai_Nigar", "http://dbpedia.org/resource/Aik_Larki_Aam_Si", "http://dbpedia.org/resource/Aik_Nayee_Cinderella", "http://dbpedia.org/resource/Aik_Pal", "http://dbpedia.org/resource/Aik_Sitam_Aur", "http://dbpedia.org/resource/Aik_Thi_Misaal", "http://dbpedia.org/resource/Aik_Thi_Rania", "http://dbpedia.org/resource/Aika_R-16:_Virgin_Mission", "http://dbpedia.org/resource/Aikatsu_Planet!", "http://dbpedia.org/resource/Aikotoba_wa_Y\u016bki", "http://dbpedia.org/resource/Aikurushii", "http://dbpedia.org/resource/Aim_High_(TV_series)", "http://dbpedia.org/resource/Aim_in_Life", "http://dbpedia.org/resource/Aiman_(TV_program)", "http://dbpedia.org/resource/Ain't_Misbehavin'_(TV_series)", "http://dbpedia.org/resource/Ain't_That_America", "http://dbpedia.org/resource/Ain't_That_America_(TV_series)", "http://dbpedia.org/resource/Ainadamar", "http://dbpedia.org/resource/Ainak_Wala_Jin", "http://dbpedia.org/resource/Ainori", "http://dbpedia.org/resource/Ainsi_soient-ils", "http://dbpedia.org/resource/Aion_(manga)", "http://dbpedia.org/resource/Air_&_Sea_Show", "http://dbpedia.org/resource/Air_Aces", "http://dbpedia.org/resource/Air_America_(TV_series)", "http://dbpedia.org/resource/Air_City", "http://dbpedia.org/resource/Air_Creation_GT", "http://dbpedia.org/resource/Air_Force_One_Is_Down", "http://dbpedia.org/resource/Air_Guitar_in_Oulu", "http://dbpedia.org/resource/Air_Hostess_(TV_series)", "http://dbpedia.org/resource/Air_Power_(TV_series)", "http://dbpedia.org/resource/Air_Time_'57", "http://dbpedia.org/resource/Air_Ways", "http://dbpedia.org/resource/Airborne_XT", "http://dbpedia.org/resource/Airbus_A320neo_family", "http://dbpedia.org/resource/Aircraft_Apprentice_Scheme", "http://dbpedia.org/resource/Airforce_(TV_series)", "http://dbpedia.org/resource/Airline_(1982_TV_series)", "http://dbpedia.org/resource/Airline_(1998_TV_series)", "http://dbpedia.org/resource/Airline_(American_TV_series)", "http://dbpedia.org/resource/Airlines_(Indian_TV_series)", "http://dbpedia.org/resource/Airmageddon", "http://dbpedia.org/resource/Airplane_Repo", "http://dbpedia.org/resource/Airplay40", "http://dbpedia.org/resource/Airport_(TV_series)", "http://dbpedia.org/resource/Airport_24/7:_Miami", "http://dbpedia.org/resource/Airport_Core_Programme", "http://dbpedia.org/resource/Airport_Live", "http://dbpedia.org/resource/Airshow_(TV_series)", "http://dbpedia.org/resource/Airwaves_(TV_series)", "http://dbpedia.org/resource/Airwolf", "http://dbpedia.org/resource/Aisa_Des_Hai_Mera_(TV_series)", "http://dbpedia.org/resource/Aisay_Nahi_Chalay_Ga", "http://dbpedia.org/resource/Aise_Karo_Naa_Vidaa", "http://dbpedia.org/resource/Aiseki_Shokud\u014d", "http://dbpedia.org/resource/Aisha_(TV_series)", "http://dbpedia.org/resource/Aishiteiru_to_Itte_Kure", "http://dbpedia.org/resource/Aishiteru:_Kaiy\u014d", "http://dbpedia.org/resource/Aisi_Deewangi_Dekhi_Nahi_Kahi", "http://dbpedia.org/resource/Aisi_Hai_Tanhai", "http://dbpedia.org/resource/Aisyah_Putri_The_Series:_Jilbab_In_Love", "http://dbpedia.org/resource/Aitebaar", "http://dbpedia.org/resource/Aiura", "http://dbpedia.org/resource/Aizliegtais_pa\u0146\u0113miens", "http://dbpedia.org/resource/Aja_Aja_Tayo!", "http://dbpedia.org/resource/Ajax,_dit_is_mijn_club", "http://dbpedia.org/resource/Ajaxjournaal", "http://dbpedia.org/resource/Ajeeb_(TV_series)", "http://dbpedia.org/resource/Ajeeb_Daastaan_Hai_Ye", "http://dbpedia.org/resource/Aji_Sunte_Ho", "http://dbpedia.org/resource/Ajithana_Sahasagalu", "http://dbpedia.org/resource/Ajnabi", "http://dbpedia.org/resource/Ajnabi_Lage_Zindagi", "http://dbpedia.org/resource/Ajooni", "http://dbpedia.org/resource/Ajunahi_Barsaat_Aahe", "http://dbpedia.org/resource/Ajyal", "http://dbpedia.org/resource/Akademi_Fantasi_Indosiar", "http://dbpedia.org/resource/Akademi_Fantasia", "http://dbpedia.org/resource/Akai_Meiro", "http://dbpedia.org/resource/Akash_Vaani", "http://dbpedia.org/resource/Akashadoothu_(TV_series)", "http://dbpedia.org/resource/Akasya_Dura\u011f\u0131", "http://dbpedia.org/resource/Akatsuki-iro_no_Senpuku_Majo", "http://dbpedia.org/resource/Akatsuki_(TV_series)", "http://dbpedia.org/resource/Akazukin_Chacha", "http://dbpedia.org/resource/Akbar_Birbal_Remixed", "http://dbpedia.org/resource/Akbar_Ka_Bal_Birbal", "http://dbpedia.org/resource/Akbari_Asghari", "http://dbpedia.org/resource/Akeli_(TV_series)", "http://dbpedia.org/resource/Aker_Peaks", "http://dbpedia.org/resource/Akhnaten_(opera)", "http://dbpedia.org/resource/Akhri_Barish", "http://dbpedia.org/resource/Aki_Sora", "http://dbpedia.org/resource/Akin_Pa_Rin_ang_Bukas", "http://dbpedia.org/resource/Akira_(manga)", "http://dbpedia.org/resource/Akira_Toriyama's_Manga_Theater", "http://dbpedia.org/resource/Akis_(TV_series)", "http://dbpedia.org/resource/Akka_(TV_series)", "http://dbpedia.org/resource/Akka_Chellelu_(TV_series)", "http://dbpedia.org/resource/Akka_Mogudu", "http://dbpedia.org/resource/Akkad_Bakkad_Bambey_Bo", "http://dbpedia.org/resource/Akkamma_Stalinum_Pathrose_Gandhiyum", "http://dbpedia.org/resource/Akkara_Kazhchakal", "http://dbpedia.org/resource/Ako_Ang_Simula", "http://dbpedia.org/resource/Ako_si_Kim_Samsoon", "http://dbpedia.org/resource/Akoon_Aw_La", "http://dbpedia.org/resource/Aks_(TV_series)", "http://dbpedia.org/resource/Aksharathettu_(TV_series)", "http://dbpedia.org/resource/Aksyon_(TV_program)", "http://dbpedia.org/resource/Aksyon_Bisaya", "http://dbpedia.org/resource/Aksyon_Dabaw", "http://dbpedia.org/resource/Aksyon_JournalisMO", "http://dbpedia.org/resource/Akte_Gr\u00fcninger", "http://dbpedia.org/resource/Aktenzeichen_XY_\u2026_ungel\u00f6st", "http://dbpedia.org/resource/Aktenzeichen_XY\u2026_ungel\u00f6st", "http://dbpedia.org/resource/Aktuelle_Kamera", "http://dbpedia.org/resource/Aktuellt", "http://dbpedia.org/resource/Aku_Titipkan_Cinta", "http://dbpedia.org/resource/Akuma-kun", "http://dbpedia.org/resource/Akumaizer_3", "http://dbpedia.org/resource/Akumetsu", "http://dbpedia.org/resource/Akumu-chan", "http://dbpedia.org/resource/Akumy\u014d", "http://dbpedia.org/resource/Ak\u014d_R\u014dshi_(1964_TV_series)", "http://dbpedia.org/resource/Ak\u014d_R\u014dshi_(1979_TV_series)", "http://dbpedia.org/resource/Al-Ababeed", "http://dbpedia.org/resource/Al-Gama'a", "http://dbpedia.org/resource/Al-Taghreba_al-Falastenya", "http://dbpedia.org/resource/AlRawabi_School_for_Girls", "http://dbpedia.org/resource/Al_Bernameg", "http://dbpedia.org/resource/Al_Cappuccino", "http://dbpedia.org/resource/Al_Hayba", "http://dbpedia.org/resource/Al_Jazeera_America_News", "http://dbpedia.org/resource/Al_Jazeera_Investigates", "http://dbpedia.org/resource/Al_Murray's_Compete_for_the_Meat", "http://dbpedia.org/resource/Al_Murray's_Great_British_Pub_Quiz", "http://dbpedia.org/resource/Al_Murray's_Happy_Hour", "http://dbpedia.org/resource/Al_Murray's_Multiple_Personality_Disorder", "http://dbpedia.org/resource/Al_Oeming_\u2013_Man_of_the_North", "http://dbpedia.org/resource/Al_Paradise", "http://dbpedia.org/resource/Al_Punto", "http://dbpedia.org/resource/Al_Qahera_Al_Youm", "http://dbpedia.org/resource/Al_Ramsay_Shield", "http://dbpedia.org/resource/Al_Rojo_Vivo_(2002_TV_program)", "http://dbpedia.org/resource/Al_TV", "http://dbpedia.org/resource/Al_Yazmal\u0131m", "http://dbpedia.org/resource/Al_borde_del_deseo", "http://dbpedia.org/resource/Al_di_l\u00e0_del_lago", "http://dbpedia.org/resource/Al_diablo_con_los_guapos", "http://dbpedia.org/resource/Al_filo_de_la_muerte", "http://dbpedia.org/resource/Al_final_del_arco_iris", "http://dbpedia.org/resource/Al_fondo_hay_sitio", "http://dbpedia.org/resource/Al_gran_sole_carico_d'amore", "http://dbpedia.org/resource/Al_otro_lado_(2005_film)", "http://dbpedia.org/resource/Al_otro_lado_del_muro", "http://dbpedia.org/resource/Al_ritmo_de_tu_coraz\u00f3n", "http://dbpedia.org/resource/Al_rojo_vivo_(1980_TV_series)", "http://dbpedia.org/resource/Al_salir_de_clase", "http://dbpedia.org/resource/Ala_Al_Hilwa_Wa_Al_Morra", "http://dbpedia.org/resource/Alabang_Girls", "http://dbpedia.org/resource/Alabaster_(manga)", "http://dbpedia.org/resource/Aladdin_(1958_film)", "http://dbpedia.org/resource/Aladdin_(Indian_TV_series)", "http://dbpedia.org/resource/Aladdin_(animated_TV_series)", "http://dbpedia.org/resource/Aladdin_\u2013_Naam_Toh_Suna_Hoga", "http://dbpedia.org/resource/Aladin_&_Alakadam", "http://dbpedia.org/resource/Alagang_Kapatid", "http://dbpedia.org/resource/Alahor_in_Granata", "http://dbpedia.org/resource/Alaigal_(TV_series)", "http://dbpedia.org/resource/Alaipayuthey_(TV_series)", "http://dbpedia.org/resource/Alakdana", "http://dbpedia.org/resource/Alam_Simsim", "http://dbpedia.org/resource/Alamat_(TV_program)", "http://dbpedia.org/resource/Alan_Carr's_Celebrity_Ding_Dong", "http://dbpedia.org/resource/Alan_Carr's_Epic_Gameshow", "http://dbpedia.org/resource/Alan_Carr's_Happy_Hour", "http://dbpedia.org/resource/Alan_Carr's_Specstacular", "http://dbpedia.org/resource/Alan_Carr:_Chatty_Man", "http://dbpedia.org/resource/Alan_Davies:_As_Yet_Untitled", "http://dbpedia.org/resource/Alan_Davies_Apr\u00e8s-Ski", "http://dbpedia.org/resource/Alan_Jones_Live", "http://dbpedia.org/resource/Alan_Partridge:_Welcome_to_the_Places_of_My_Life", "http://dbpedia.org/resource/Alang-Alang_(TV_series)", "http://dbpedia.org/resource/Alans", "http://dbpedia.org/resource/Alarm_f\u00fcr_Cobra_11_\u2013_Die_Autobahnpolizei", "http://dbpedia.org/resource/Alas_Dose_sa_Trese", "http://dbpedia.org/resource/Alas_Smith_and_Jones", "http://dbpedia.org/resource/Alaska:_The_Last_Frontier", "http://dbpedia.org/resource/Alaska_Off-Road_Warriors", "http://dbpedia.org/resource/Alaska_State_Troopers_(TV_series)", "http://dbpedia.org/resource/Alaska_Wing_Men", "http://dbpedia.org/resource/Alaska_y_Mario", "http://dbpedia.org/resource/Alaskan_Bush_People", "http://dbpedia.org/resource/Alaskan_Killer_Bigfoot", "http://dbpedia.org/resource/Alaskan_Women_Looking_for_Love", "http://dbpedia.org/resource/Alaxmi_Ka_Super_Parivaar", "http://dbpedia.org/resource/Alba_(TV_series)", "http://dbpedia.org/resource/Alba_Marina", "http://dbpedia.org/resource/Alba_Roversi", "http://dbpedia.org/resource/Albanian_passport", "http://dbpedia.org/resource/Albanians_Got_Talent", "http://dbpedia.org/resource/Albasheer_Show", "http://dbpedia.org/resource/Albert's_Place", "http://dbpedia.org/resource/Albert_&_Herbert", "http://dbpedia.org/resource/Albert_(1985_film)", "http://dbpedia.org/resource/Albert_(2016_film)", "http://dbpedia.org/resource/Albert_Says..._Nature_Knows_Best", "http://dbpedia.org/resource/Albert_and_Me", "http://dbpedia.org/resource/Albert_and_Victoria", "http://dbpedia.org/resource/Albert_the_Fifth_Musketeer", "http://dbpedia.org/resource/Albertano_contra_los_mostros", "http://dbpedia.org/resource/Alberto_Agnesi", "http://dbpedia.org/resource/Albie_(TV_series)", "http://dbpedia.org/resource/Albion_Market", "http://dbpedia.org/resource/Alborada_(TV_series)", "http://dbpedia.org/resource/Album_of_History", "http://dbpedia.org/resource/Alcanzar_una_estrella", "http://dbpedia.org/resource/Alcanzar_una_estrella_II", "http://dbpedia.org/resource/Alcatraz:_The_Whole_Shocking_Story", "http://dbpedia.org/resource/Alcatraz_(TV_series)", "http://dbpedia.org/resource/Alceste_(Schweitzer)", "http://dbpedia.org/resource/Alchemy_of_Souls", "http://dbpedia.org/resource/Alcoa_Premiere", "http://dbpedia.org/resource/Alcoa_Presents:_One_Step_Beyond", "http://dbpedia.org/resource/Alcoa_Theatre", "http://dbpedia.org/resource/Alcock_and_Gander", "http://dbpedia.org/resource/Alcyone_(opera)", "http://dbpedia.org/resource/Alderamin_on_the_Sky", "http://dbpedia.org/resource/Aldermen's_wars", "http://dbpedia.org/resource/Aldnoah.Zero", "http://dbpedia.org/resource/AleX", "http://dbpedia.org/resource/Alec_Mapa:_Baby_Daddy", "http://dbpedia.org/resource/Alegrijes_y_Rebujos", "http://dbpedia.org/resource/Alegr\u00edas_De_Mediod\u00eda", "http://dbpedia.org/resource/Alejandra_(TV_series)", "http://dbpedia.org/resource/Alejo_&_Valentina", "http://dbpedia.org/resource/Alessandro_Cattelan:_One_Simple_Question", "http://dbpedia.org/resource/Alessandro_Severo", "http://dbpedia.org/resource/Alessandro_Stradella_(opera)", "http://dbpedia.org/resource/Alev_Alev_(TV_series)", "http://dbpedia.org/resource/Alex,_Inc.", "http://dbpedia.org/resource/Alex_&_Amie", "http://dbpedia.org/resource/Alex_&_Co.", "http://dbpedia.org/resource/Alex_Cross_(novel_series)", "http://dbpedia.org/resource/Alex_Haley's_Queen", "http://dbpedia.org/resource/Alex_Polizzi:_Chefs_on_Trial", "http://dbpedia.org/resource/Alex_Polizzi:_The_Fixer", "http://dbpedia.org/resource/Alex_Rider_(TV_series)", "http://dbpedia.org/resource/Alex_Wagner_Tonight", "http://dbpedia.org/resource/Alex_Wheatle_(film)", "http://dbpedia.org/resource/Alex_Witt_Reports", "http://dbpedia.org/resource/Alex_in_Wonderland_(TV_series)", "http://dbpedia.org/resource/Alexa_&_Katie", "http://dbpedia.org/resource/Alexander:_The_Other_Side_of_Dawn", "http://dbpedia.org/resource/Alexander_Armstrong's_Big_Ask", "http://dbpedia.org/resource/Alexander_Davydov_(singer)", "http://dbpedia.org/resource/Alexander_Zwo", "http://dbpedia.org/resource/Alexander_the_Great_(miniseries)", "http://dbpedia.org/resource/Alexander_the_Greatest", "http://dbpedia.org/resource/Alexandre_bis", "http://dbpedia.org/resource/Alexei_Sayle's_Merry-Go-Round", "http://dbpedia.org/resource/Alexei_Sayle's_Stuff", "http://dbpedia.org/resource/Alfa_Romeo_Disco_Volante", "http://dbpedia.org/resource/Alfonso_Bonzo", "http://dbpedia.org/resource/Alfonso_XII-class_cruiser", "http://dbpedia.org/resource/Alfonso_und_Estrella", "http://dbpedia.org/resource/Alfred_Chicken", "http://dbpedia.org/resource/Alfred_Hitchcock_Presents", "http://dbpedia.org/resource/Alfred_Hitchcock_Presents_(1985_TV_series)", "http://dbpedia.org/resource/Alfred_I._duPont\u2013Columbia_University_Award", "http://dbpedia.org/resource/Alfred_J._Kwak", "http://dbpedia.org/resource/Alfresco_(TV_series)", "http://dbpedia.org/resource/Algeria,_History_and_Civilization", "http://dbpedia.org/resource/Alguien_que_me_quiera", "http://dbpedia.org/resource/Alguien_te_mira_(American_TV_series)", "http://dbpedia.org/resource/Alguna_Pregunta_M\u00e9s%3F", "http://dbpedia.org/resource/Alguna_vez_tendremos_alas", "http://dbpedia.org/resource/Alhola", "http://dbpedia.org/resource/Ali:_An_American_Hero", "http://dbpedia.org/resource/Ali_Baba:_Dastaan-E-Kabul", "http://dbpedia.org/resource/Ali_Ki_Ammi", "http://dbpedia.org/resource/Ali_Velshi_on_Target", "http://dbpedia.org/resource/Aliados", "http://dbpedia.org/resource/Alias_(TV_series)", "http://dbpedia.org/resource/Alias_(season_3)", "http://dbpedia.org/resource/Alias_(season_4)", "http://dbpedia.org/resource/Alias_(season_5)", "http://dbpedia.org/resource/Alias_Grace_(miniseries)", "http://dbpedia.org/resource/Alias_Smith_and_Jones", "http://dbpedia.org/resource/Alias_the_Jester", "http://dbpedia.org/resource/Alice's_Wonderland_Bakery", "http://dbpedia.org/resource/Alice,_I_Think_(TV_series)", "http://dbpedia.org/resource/Alice_(American_TV_series)", "http://dbpedia.org/resource/Alice_(Brazilian_TV_series)", "http://dbpedia.org/resource/Alice_(South_Korean_TV_series)", "http://dbpedia.org/resource/Alice_(miniseries)", "http://dbpedia.org/resource/Alice_Bungisngis_and_Her_Wonder_Walis", "http://dbpedia.org/resource/Alice_Comedies", "http://dbpedia.org/resource/Alice_in_Borderland", "http://dbpedia.org/resource/Alice_in_Borderland_(TV_series)", "http://dbpedia.org/resource/Alice_in_Murderland_(manga)", "http://dbpedia.org/resource/Alice_in_Wonderland_(1983_film)", "http://dbpedia.org/resource/Alice_in_Wonderland_(1985_film)", "http://dbpedia.org/resource/Alice_in_Wonderland_(1999_film)", "http://dbpedia.org/resource/Alice_in_Wonderland_or_What's_a_Nice_Kid_like_You_Doing_in_a_Place_like_This%3F", "http://dbpedia.org/resource/Alice_on_Deadlines", "http://dbpedia.org/resource/Alice_series", "http://dbpedia.org/resource/Alice_through_the_Looking_Glass_(1998_film)", "http://dbpedia.org/resource/Alice_to_Nowhere", "http://dbpedia.org/resource/Alice_\u2013_A_Fight_For_Life", "http://dbpedia.org/resource/Alicia_en_el_pa\u00eds_de_las_maravillas", "http://dbpedia.org/resource/Alien:_Isolation_\u2013_The_Digital_Series", "http://dbpedia.org/resource/Alien_(Armenian_TV_series)", "http://dbpedia.org/resource/Alien_(franchise)", "http://dbpedia.org/resource/Alien_Abduction:_Incident_in_Lake_County", "http://dbpedia.org/resource/Alien_Apocalypse", "http://dbpedia.org/resource/Alien_Arsenal", "http://dbpedia.org/resource/Alien_Avengers", "http://dbpedia.org/resource/Alien_Breed_(series)", "http://dbpedia.org/resource/Alien_Dawn", "http://dbpedia.org/resource/Alien_Encounters_(TV_series)", "http://dbpedia.org/resource/Alien_Express", "http://dbpedia.org/resource/Alien_Investigations", "http://dbpedia.org/resource/Alien_Lockdown", "http://dbpedia.org/resource/Alien_Mom,_Alien_Dad", "http://dbpedia.org/resource/Alien_Nation:_Body_and_Soul", "http://dbpedia.org/resource/Alien_Nation:_Dark_Horizon", "http://dbpedia.org/resource/Alien_Nation:_Millennium", "http://dbpedia.org/resource/Alien_Nation:_The_Enemy_Within", "http://dbpedia.org/resource/Alien_Nation:_The_Udara_Legacy", "http://dbpedia.org/resource/Alien_Nation_(TV_series)", "http://dbpedia.org/resource/Alien_News_Desk", "http://dbpedia.org/resource/Alien_Opponent", "http://dbpedia.org/resource/Alien_Planet", "http://dbpedia.org/resource/Alien_Racers", "http://dbpedia.org/resource/Alien_Siege", "http://dbpedia.org/resource/Alien_TV", "http://dbpedia.org/resource/Alien_Worlds_(TV_series)", "http://dbpedia.org/resource/Alien_vs._Predator_(franchise)", "http://dbpedia.org/resource/Alienated_(TV_series)", "http://dbpedia.org/resource/Alienators:_Evolution_Continues", "http://dbpedia.org/resource/Aliens_in_America", "http://dbpedia.org/resource/Aliens_in_the_Family", "http://dbpedia.org/resource/Aliens_of_London", "http://dbpedia.org/resource/Alif_(TV_series)", "http://dbpedia.org/resource/Alif_Allah_Aur_Insaan", "http://dbpedia.org/resource/Alif_Laila", "http://dbpedia.org/resource/Alif_Laila_(2020_TV_series)", "http://dbpedia.org/resource/Alif_Noon", "http://dbpedia.org/resource/Alina,_regina_di_Golconda", "http://dbpedia.org/resource/Alisa_(TV_series)", "http://dbpedia.org/resource/Alisa_Knows_What_to_Do!", "http://dbpedia.org/resource/2099:_World_of_Tomorrow", "http://dbpedia.org/resource/20_September_Samarra_attack", "http://dbpedia.org/resource/20_Years_of_Hell", "http://dbpedia.org/resource/20th_Anniversary_Series", "http://dbpedia.org/resource/21_Beacon_Street", "http://dbpedia.org/resource/21c_(TV_series)", "http://dbpedia.org/resource/21st_GLAAD_Media_Awards", "http://dbpedia.org/resource/21st_Precinct", "http://dbpedia.org/resource/22_December_2013_South_Thailand_bombings", "http://dbpedia.org/resource/22nd_GLAAD_Media_Awards", "http://dbpedia.org/resource/Arriba,_Arriba!", "http://dbpedia.org/resource/Arriba_Argentinos", "http://dbpedia.org/resource/Arriba_gente", "http://dbpedia.org/resource/Arrighetto", "http://dbpedia.org/resource/Arriva_Cristina", "http://dbpedia.org/resource/Arrivano_i_Rossi", "http://dbpedia.org/resource/Arrow_(TV_series)", "http://dbpedia.org/resource/Arrows_(TV_series)", "http://dbpedia.org/resource/Arrowverse", "http://dbpedia.org/resource/Arroz_con_leche_(TV_series)", "http://dbpedia.org/resource/Arsenal_Military_Academy", "http://dbpedia.org/resource/Arsenic_&_Old_Lace", "http://dbpedia.org/resource/Arsenio_(TV_series)", "http://dbpedia.org/resource/Arslaan", "http://dbpedia.org/resource/Ars\u00e8ne_Lupin_(TV_series)", "http://dbpedia.org/resource/Art_Angel", "http://dbpedia.org/resource/Art_Attack", "http://dbpedia.org/resource/Art_Bell's_Dark_Matter", "http://dbpedia.org/resource/Art_Jam", "http://dbpedia.org/resource/Art_Mann_Presents", "http://dbpedia.org/resource/Art_Ninja", "http://dbpedia.org/resource/Art_in_Action_(TV_series)", "http://dbpedia.org/resource/Art_of_Persia_(TV_series)", "http://dbpedia.org/resource/Art_of_Spain_(TV_series)", "http://dbpedia.org/resource/Artaxerxes_(opera)", "http://dbpedia.org/resource/Arthdal_Chronicles", "http://dbpedia.org/resource/Arthrogram", "http://dbpedia.org/resource/Arthur!_and_the_Square_Knights_of_the_Round_Table", "http://dbpedia.org/resource/Arthur's_Treasured_Volumes", "http://dbpedia.org/resource/Arthur_&_George_(TV_series)", "http://dbpedia.org/resource/Arthur_(TV_series)", "http://dbpedia.org/resource/Arthur_C._Clarke's_Mysterious_Universe", "http://dbpedia.org/resource/Arthur_C._Clarke's_Mysterious_World", "http://dbpedia.org/resource/Arthur_C._Clarke's_World_of_Strange_Powers", "http://dbpedia.org/resource/Arthur_Godfrey_and_His_Friends", "http://dbpedia.org/resource/Arthur_of_the_Britons", "http://dbpedia.org/resource/Articulate_(TV_series)", "http://dbpedia.org/resource/Artificial_Beauty", "http://dbpedia.org/resource/Artificial_Breathing", "http://dbpedia.org/resource/Artificial_City", "http://dbpedia.org/resource/Artikulo_247", "http://dbpedia.org/resource/Artist_of_the_Year", "http://dbpedia.org/resource/Artista_Academy", "http://dbpedia.org/resource/Artistic_Differences", "http://dbpedia.org/resource/Artists_(radio_series)", "http://dbpedia.org/resource/Artit_Ching_Duang", "http://dbpedia.org/resource/Artois-class_frigate", "http://dbpedia.org/resource/Arts_'73", "http://dbpedia.org/resource/Artstar", "http://dbpedia.org/resource/Arturo_&_Kiwi", "http://dbpedia.org/resource/Artzooka!", "http://dbpedia.org/resource/Aruanas", "http://dbpedia.org/resource/Arundhathi_(TV_series)", "http://dbpedia.org/resource/Arundhati_(2011_TV_series)", "http://dbpedia.org/resource/Arundhati_(2016_TV_series)", "http://dbpedia.org/resource/Aruvi_(TV_series)", "http://dbpedia.org/resource/Arvire_et_\u00c9v\u00e9lina", "http://dbpedia.org/resource/Arya", "http://dbpedia.org/resource/Aryamaan_\u2013_Brahmaand_Ka_Yodha", "http://dbpedia.org/resource/Aryana_(TV_series)", "http://dbpedia.org/resource/Arzoo_Hai_Tu", "http://dbpedia.org/resource/As_Aventuras_de_Gui_&_Estopa", "http://dbpedia.org/resource/As_Aventuras_de_Poliana", "http://dbpedia.org/resource/As_Brasileiras", "http://dbpedia.org/resource/As_Cariocas", "http://dbpedia.org/resource/As_Far_as_My_Feet_Will_Carry_Me_(TV_series)", "http://dbpedia.org/resource/As_Filhas_da_M\u00e3e", "http://dbpedia.org/resource/As_Five", "http://dbpedia.org/resource/As_Good_Cooks_Go", "http://dbpedia.org/resource/As_Good_as_Dead_(1995_film)", "http://dbpedia.org/resource/As_I'm_Suffering_From_Kadhal", "http://dbpedia.org/resource/As_If_(American_TV_series)", "http://dbpedia.org/resource/As_If_(British_TV_series)", "http://dbpedia.org/resource/As_Is_(film)", "http://dbpedia.org/resource/As_It_Happens", "http://dbpedia.org/resource/As_Schools_Match_Wits", "http://dbpedia.org/resource/As_Seen_on_TV_(game_show)", "http://dbpedia.org/resource/As_Summers_Die", "http://dbpedia.org/resource/As_Sure_as_Fate", "http://dbpedia.org/resource/As_Time_Goes_By_(TV_series)", "http://dbpedia.org/resource/As_Told_by_Ginger", "http://dbpedia.org/resource/As_We_See_It", "http://dbpedia.org/resource/As_You_Like_It_(TV_series)", "http://dbpedia.org/resource/As_for_Me_and_My_House_(TV_series)", "http://dbpedia.org/resource/As_the_Bell_Rings_(American_TV_series)", "http://dbpedia.org/resource/As_the_Bell_Rings_(Australian_TV_series)", "http://dbpedia.org/resource/As_the_Bell_Rings_(British_TV_series)", "http://dbpedia.org/resource/As_the_Bell_Rings_(Chinese_TV_series)", "http://dbpedia.org/resource/As_the_Bell_Rings_(Japanese_TV_series)", "http://dbpedia.org/resource/As_the_Bell_Rings_(Russian_TV_series)", "http://dbpedia.org/resource/As_the_Bell_Rings_(Singaporean_TV_series)", "http://dbpedia.org/resource/As_the_Bell_Rings_(Taiwanese_TV_series)", "http://dbpedia.org/resource/As_the_Cookie_Crumbles", "http://dbpedia.org/resource/As_the_World_Turns", "http://dbpedia.org/resource/Asa_ga_Kita", "http://dbpedia.org/resource/Asaichi", "http://dbpedia.org/resource/Asambhav_(TV_series)", "http://dbpedia.org/resource/Asar_Talo_Lahat_Panalo!", "http://dbpedia.org/resource/Asatha_Povathu_Yaaru%3F", "http://dbpedia.org/resource/Asawa_Ko,_Karibal_Ko", "http://dbpedia.org/resource/Asayan", "http://dbpedia.org/resource/Ascanio", "http://dbpedia.org/resource/Ascanio_in_Alba", "http://dbpedia.org/resource/Ascension_(miniseries)", "http://dbpedia.org/resource/Aseerzadi", "http://dbpedia.org/resource/Asemane_shab", "http://dbpedia.org/resource/Asenso_Pinoy", "http://dbpedia.org/resource/Asfur", "http://dbpedia.org/resource/Asgaard_(game_show)", "http://dbpedia.org/resource/Ash_Wednesday_bushfires", "http://dbpedia.org/resource/Ash_vs_Evil_Dead", "http://dbpedia.org/resource/Ashenden_(TV_series)", "http://dbpedia.org/resource/Ashes_of_Love_(TV_series)", "http://dbpedia.org/resource/Ashes_to_Ashes_(British_TV_series)", "http://dbpedia.org/resource/Ashford_Caves", "http://dbpedia.org/resource/Ashita,_Mama_ga_Inai", "http://dbpedia.org/resource/Ashita_Ga_Arusa_(TV_series)", "http://dbpedia.org/resource/Ashiyana", "http://dbpedia.org/resource/Ashk_(TV_series)", "http://dbpedia.org/resource/Ashlee_+_Evan_(TV_series)", "http://dbpedia.org/resource/Ashley_Banjo's_Secret_Street_Crew", "http://dbpedia.org/resource/Ashokan_Edicts_in_Delhi", "http://dbpedia.org/resource/Ashura_no_Gotoku_(TV_series)", "http://dbpedia.org/resource/Asi_(TV_series)", "http://dbpedia.org/resource/Asia's_Got_Talent", "http://dbpedia.org/resource/Asia's_Next_Top_Model", "http://dbpedia.org/resource/Asia-Pacific_Rally_Championship", "http://dbpedia.org/resource/Asia_Bagus", "http://dbpedia.org/resource/Asia_Business_Report", "http://dbpedia.org/resource/Asia_Market_Week", "http://dbpedia.org/resource/Asia_Market_Wrap", "http://dbpedia.org/resource/Asia_Pacific_Poker_Tour", "http://dbpedia.org/resource/Asia_Pacific_Screen_Awards", "http://dbpedia.org/resource/Asia_Squawk_Box", "http://dbpedia.org/resource/Asia_Today", "http://dbpedia.org/resource/Asia_Uncut", "http://dbpedia.org/resource/Asian_Formula_Three_Championship", "http://dbpedia.org/resource/Asian_Idol", "http://dbpedia.org/resource/Asian_Le_Mans_Series", "http://dbpedia.org/resource/Asian_Magazine", "http://dbpedia.org/resource/Asian_Provocateur", "http://dbpedia.org/resource/Asian_Treasures", "http://dbpedia.org/resource/Asian_Wave", "http://dbpedia.org/resource/Asintado", "http://dbpedia.org/resource/Asisten_Rumah_Tangga", "http://dbpedia.org/resource/Ask_Aida", "http://dbpedia.org/resource/Ask_Aspel", "http://dbpedia.org/resource/Ask_Harriet", "http://dbpedia.org/resource/Ask_Max", "http://dbpedia.org/resource/Ask_My_Mom", "http://dbpedia.org/resource/Ask_No_Questions", "http://dbpedia.org/resource/Ask_Rhod_Gilbert", "http://dbpedia.org/resource/Ask_a_Silly_Answer", "http://dbpedia.org/resource/Ask_a_silly_Answer", "http://dbpedia.org/resource/Ask_the_Doctor", "http://dbpedia.org/resource/Ask_the_Family", "http://dbpedia.org/resource/Ask_the_Leyland_Brothers", "http://dbpedia.org/resource/Ask_the_Stars", "http://dbpedia.org/resource/Ask_the_StoryBots", "http://dbpedia.org/resource/Askold's_Grave_(opera)", "http://dbpedia.org/resource/Asla_Vazge\u00e7mem", "http://dbpedia.org/resource/Asmal\u0131_Konak", "http://dbpedia.org/resource/Asmara_(TV_series)", "http://dbpedia.org/resource/Asmaradana", "http://dbpedia.org/resource/Aso_ni_San_Roque", "http://dbpedia.org/resource/Asphalt_(series)", "http://dbpedia.org/resource/Asphalt_Man", "http://dbpedia.org/resource/Aspirants_(web_series)", "http://dbpedia.org/resource/Aspirin_(TV_series)", "http://dbpedia.org/resource/Assassin's_Creed_Chronicles", "http://dbpedia.org/resource/Assassination_Classroom", "http://dbpedia.org/resource/Assassinator_Jing_Ke", "http://dbpedia.org/resource/Assassinio_nella_cattedrale", "http://dbpedia.org/resource/Assault!_Human!!", "http://dbpedia.org/resource/Assault_at_West_Point:_The_Court-Martial_of_Johnson_Whittaker", "http://dbpedia.org/resource/Assault_on_the_Wayne", "http://dbpedia.org/resource/Assaulted_Nuts_(TV_series)", "http://dbpedia.org/resource/Assemble_Insert", "http://dbpedia.org/resource/Assembly_(TV_series)", "http://dbpedia.org/resource/Assignment:_Underwater", "http://dbpedia.org/resource/Assignment_(TV_program)", "http://dbpedia.org/resource/Assignment_Vienna", "http://dbpedia.org/resource/Associates_Triangular_Series_in_West_Indies_in_2006\u201307", "http://dbpedia.org/resource/Assorted_Gems", "http://dbpedia.org/resource/Assume_the_Position_with_Mr._Wuhl", "http://dbpedia.org/resource/Assy_McGee", "http://dbpedia.org/resource/Ass\u00e9dio", "http://dbpedia.org/resource/Astaghfaar", "http://dbpedia.org/resource/Asteroid_(film)", "http://dbpedia.org/resource/Asteroid_Terrestrial-impact_Last_Alert_System", "http://dbpedia.org/resource/Astey_Ladies", "http://dbpedia.org/resource/Astigs", "http://dbpedia.org/resource/Astitva...Ek_Prem_Kahani", "http://dbpedia.org/resource/Aston_Martin_Vantage_(2005)", "http://dbpedia.org/resource/Astonishia_Story", "http://dbpedia.org/resource/Astor_Showcase", "http://dbpedia.org/resource/Astra_Force", "http://dbpedia.org/resource/Astral_Project_(manga)", "http://dbpedia.org/resource/Astrid_and_Lilly_Save_the_World", "http://dbpedia.org/resource/Astrid_in_Wonderland", "http://dbpedia.org/resource/Astro_Boy", "http://dbpedia.org/resource/Astro_Boy_(1963_TV_series)", "http://dbpedia.org/resource/Astro_Farm", "http://dbpedia.org/resource/Astro_Plan", "http://dbpedia.org/resource/Astro_Ria", "http://dbpedia.org/resource/Astroblast!", "http://dbpedia.org/resource/Astroganger", "http://dbpedia.org/resource/Astronarium", "http://dbpedia.org/resource/Astronauts_(TV_series)", "http://dbpedia.org/resource/Astronomy_Club:_The_Sketch_Show", "http://dbpedia.org/resource/Astronomy_Today", "http://dbpedia.org/resource/Asu_no_Hikari_o_Tsukame", "http://dbpedia.org/resource/Asur_(web_series)", "http://dbpedia.org/resource/Asura_Cryin'", "http://dbpedia.org/resource/Asus_Fonepad", "http://dbpedia.org/resource/Asus_VivoTab", "http://dbpedia.org/resource/Asus_ZenFone", "http://dbpedia.org/resource/Aswamedham", "http://dbpedia.org/resource/Aswat_(TV_program)", "http://dbpedia.org/resource/Asylum_(2015_TV_series)", "http://dbpedia.org/resource/As\u00ed_en_el_barrio_como_en_el_cielo", "http://dbpedia.org/resource/As\u00ed_se_baila", "http://dbpedia.org/resource/As\u00ed_son_ellas", "http://dbpedia.org/resource/At_Ease_(TV_series)", "http://dbpedia.org/resource/At_Eighteen", "http://dbpedia.org/resource/At_Home_Ka_Dito", "http://dbpedia.org/resource/At_Home_With_Julia", "http://dbpedia.org/resource/At_Home_with_Amy_Sedaris", "http://dbpedia.org/resource/At_Home_with_Billie_Burke", "http://dbpedia.org/resource/At_Home_with_GMA_Regional_TV", "http://dbpedia.org/resource/At_Home_with_John_Newmark", "http://dbpedia.org/resource/At_Home_with_Julia", "http://dbpedia.org/resource/At_Home_with_Love", "http://dbpedia.org/resource/At_Home_with_the_Braithwaites", "http://dbpedia.org/resource/At_Home_with_the_Eubanks", "http://dbpedia.org/resource/At_Home_with_the_Noonans", "http://dbpedia.org/resource/At_Home_with_the_Webbers", "http://dbpedia.org/resource/At_Last_the_1948_Show", "http://dbpedia.org/resource/At_Mother's_Request", "http://dbpedia.org/resource/At_Point_Blank_(TV_series)", "http://dbpedia.org/resource/At_Risk_(2010_film)", "http://dbpedia.org/resource/At_Seven_on_7", "http://dbpedia.org/resource/At_Your_Service-Star_Power", "http://dbpedia.org/resource/At_Your_Service_(TV_series)", "http://dbpedia.org/resource/At_a_Distance,_Spring_Is_Green", "http://dbpedia.org/resource/At_the_Dolphin_Bay", "http://dbpedia.org/resource/At_the_End_of_My_Leash", "http://dbpedia.org/resource/At_the_Hotel", "http://dbpedia.org/resource/At_the_Movies_(1982_TV_program)", "http://dbpedia.org/resource/At_the_Movies_(1986_TV_program)", "http://dbpedia.org/resource/At_the_Movies_(Australian_TV_program)", "http://dbpedia.org/resource/At_the_Threshold_of_an_Era", "http://dbpedia.org/resource/Atamania", "http://dbpedia.org/resource/Atamasthana", "http://dbpedia.org/resource/Atari_8-bit_family", "http://dbpedia.org/resource/Atari_Flashback", "http://dbpedia.org/resource/Ataru_(TV_series)", "http://dbpedia.org/resource/Atashinchi_no_Danshi", "http://dbpedia.org/resource/Ate_ng_Ate_Ko", "http://dbpedia.org/resource/Atelier_Fontana_-_Le_sorelle_della_moda", "http://dbpedia.org/resource/Atenaide_(Vivaldi)", "http://dbpedia.org/resource/Athabasca_System_Hydroelectric_Stations", "http://dbpedia.org/resource/Atheism:_A_Rough_History_of_Disbelief", "http://dbpedia.org/resource/Athena:_Goddess_of_War", "http://dbpedia.org/resource/Athina-Thessaloniki", "http://dbpedia.org/resource/Athipookal", "http://dbpedia.org/resource/Athiyaayam", "http://dbpedia.org/resource/Athmasakhi", "http://dbpedia.org/resource/Atholl-class_corvette", "http://dbpedia.org/resource/Ating_Alamin", "http://dbpedia.org/resource/Atlanta_(TV_series)", "http://dbpedia.org/resource/Atlanta_Exes", "http://dbpedia.org/resource/Atlantic:_The_Wildest_Ocean_on_Earth", "http://dbpedia.org/resource/Atlantic_Championship", "http://dbpedia.org/resource/Atlantic_Crossing_(TV_series)", "http://dbpedia.org/resource/Atlantic_Summer", "http://dbpedia.org/resource/Atlantic_campaign_of_1806", "http://dbpedia.org/resource/Atlantic_campaign_of_May_1794", "http://dbpedia.org/resource/Atlantika", "http://dbpedia.org/resource/Atlantis_(2011_film)", "http://dbpedia.org/resource/Atlantis_(TV_series)", "http://dbpedia.org/resource/Atlantis_High", "http://dbpedia.org/resource/Atletico_Partick", "http://dbpedia.org/resource/Atl\u00e1ntida_(opera)", "http://dbpedia.org/resource/Atmen_gibt_das_Leben", "http://dbpedia.org/resource/Atmospheres_(TV_series)", "http://dbpedia.org/resource/Atom_Ant", "http://dbpedia.org/resource/Atom_Squad", "http://dbpedia.org/resource/Atom_TV", "http://dbpedia.org/resource/Atomic_Betty", "http://dbpedia.org/resource/Atomic_Dog_(film)", "http://dbpedia.org/resource/Atomic_Puppet", "http://dbpedia.org/resource/Atomic_Train", "http://dbpedia.org/resource/Atomic_Twister", "http://dbpedia.org/resource/Ator", "http://dbpedia.org/resource/Atormentada", "http://dbpedia.org/resource/Atracci\u00f3n_x4", "http://dbpedia.org/resource/Atrapa_los_Millones", "http://dbpedia.org/resource/Atrapada_(1991_TV_series)", "http://dbpedia.org/resource/Atrapada_(2018_TV_series)", "http://dbpedia.org/resource/Atrevidos", "http://dbpedia.org/resource/Atr\u00e9vete", "http://dbpedia.org/resource/Atr\u00e9vete_a_olvidarme", "http://dbpedia.org/resource/Atr\u00e9vete_a_so\u00f1ar", "http://dbpedia.org/resource/Atsuhime_(TV_series)", "http://dbpedia.org/resource/Attachments_(TV_series)", "http://dbpedia.org/resource/Attack_of_the_50_Ft._Woman_(1993_film)", "http://dbpedia.org/resource/Attack_of_the_5_Ft._2_In._Women", "http://dbpedia.org/resource/Attack_of_the_Graske", "http://dbpedia.org/resource/Attack_of_the_Killer_Tomatoes_(TV_series)", "http://dbpedia.org/resource/Attack_of_the_Sabretooth", "http://dbpedia.org/resource/Attack_of_the_Show!", "http://dbpedia.org/resource/Attack_on_Fear", "http://dbpedia.org/resource/Attack_on_Terror:_The_FBI_vs._the_Ku_Klux_Klan", "http://dbpedia.org/resource/Attack_on_Titan:_Before_the_Fall", "http://dbpedia.org/resource/Attack_on_Titan:_Counter_Rockets", "http://dbpedia.org/resource/Attack_on_Titan:_Junior_High", "http://dbpedia.org/resource/Attack_on_Tomorrow", "http://dbpedia.org/resource/Attacks_from_the_Future:_Rinoplasticos", "http://dbpedia.org/resource/Attagirl_(TV_series)", "http://dbpedia.org/resource/Attenborough:_60_Years_in_the_Wild", "http://dbpedia.org/resource/Attenborough_in_Paradise", "http://dbpedia.org/resource/Attention,_Love!", "http://dbpedia.org/resource/Attention_Scum", "http://dbpedia.org/resource/Attic_Gold", "http://dbpedia.org/resource/Attica_(1980_film)", "http://dbpedia.org/resource/Attila_(miniseries)", "http://dbpedia.org/resource/Attila_(opera)", "http://dbpedia.org/resource/Attitude_Pictures_Ltd", "http://dbpedia.org/resource/Attitudes_(talk_show)", "http://dbpedia.org/resource/Atunda_Ayenda", "http://dbpedia.org/resource/Atypical", "http://dbpedia.org/resource/At\u00ednale_Al_Precio", "http://dbpedia.org/resource/At\u00f3mico", "http://dbpedia.org/resource/At\u00f3mico_(television_program)", "http://dbpedia.org/resource/Au_Pair_(film)", "http://dbpedia.org/resource/Au_Pair_3:_Adventure_in_Paradise", "http://dbpedia.org/resource/Au_Pair_II", "http://dbpedia.org/resource/Au_nom_de_la_loi", "http://dbpedia.org/resource/Aubrey_and_Gus", "http://dbpedia.org/resource/Auction_Hunters", "http://dbpedia.org/resource/Auction_Kings", "http://dbpedia.org/resource/Auction_Room", "http://dbpedia.org/resource/Auction_Squad", "http://dbpedia.org/resource/Audience_Award_for_Most_Popular_Show", "http://dbpedia.org/resource/Audio-Files", "http://dbpedia.org/resource/Audrina", "http://dbpedia.org/resource/Audubon_Wildlife_Theatre", "http://dbpedia.org/resource/Auf_Achse_(TV_series)", "http://dbpedia.org/resource/Auf_Wiedersehen,_Pet", "http://dbpedia.org/resource/Auf_Wiedersehen_My_Pet", "http://dbpedia.org/resource/Augie_Doggie_and_Doggie_Daddy", "http://dbpedia.org/resource/August_14_(TV_series)", "http://dbpedia.org/resource/August_1991_(film)", "http://dbpedia.org/resource/August_2015_Egypt_bombings", "http://dbpedia.org/resource/Augustine:_The_Decline_of_the_Roman_Empire", "http://dbpedia.org/resource/Auld_Ones", "http://dbpedia.org/resource/Aunn_Zara", "http://dbpedia.org/resource/Aunque_mal_paguen", "http://dbpedia.org/resource/Aunque_me_Cueste_la_Vida", "http://dbpedia.org/resource/Auntie's_Bloomers", "http://dbpedia.org/resource/Auntie_Boss!", "http://dbpedia.org/resource/Aunty_Donna's_Big_Ol'_House_of_Fun", "http://dbpedia.org/resource/Aur_Pyaar_Ho_Gaya_(TV_series)", "http://dbpedia.org/resource/Aura_Battler_Dunbine", "http://dbpedia.org/resource/Aurealis_Award_for_best_children's_fiction_(told_primarily_through_words)", "http://dbpedia.org/resource/Aurealis_Award_for_best_horror_novel", "http://dbpedia.org/resource/Aurealis_Award_for_best_illustrated_book_or_graphic_novel", "http://dbpedia.org/resource/Aurelia_(TV_series)", "http://dbpedia.org/resource/Aurelia_(telenovela)", "http://dbpedia.org/resource/Aurora_(1984_film)", "http://dbpedia.org/resource/Aurora_(TV_series)", "http://dbpedia.org/resource/Auschwitz:_The_Nazis_and_'The_Final_Solution'", "http://dbpedia.org/resource/Aussie_Barbecue_Heroes", "http://dbpedia.org/resource/Aussie_Gold", "http://dbpedia.org/resource/Aussie_Gold_Hunters", "http://dbpedia.org/resource/Aussie_Ladette_to_Lady", "http://dbpedia.org/resource/Aussie_Lobster_Men", "http://dbpedia.org/resource/Aussie_Pickers", "http://dbpedia.org/resource/Aussie_Queer_Eye_for_the_Straight_Guy", "http://dbpedia.org/resource/Austin_&_Ally", "http://dbpedia.org/resource/Austin_City_Limits", "http://dbpedia.org/resource/Austin_Mahone_Takeover", "http://dbpedia.org/resource/Austin_Powers_(film_series)", "http://dbpedia.org/resource/Austin_Powers_series", "http://dbpedia.org/resource/Austin_Princess", "http://dbpedia.org/resource/Austin_Stories", "http://dbpedia.org/resource/Australasian_New_Car_Assessment_Program", "http://dbpedia.org/resource/Australia's_Amateur_Hour", "http://dbpedia.org/resource/Australia's_Best_Backyards", "http://dbpedia.org/resource/Australia's_Brainiest", "http://dbpedia.org/resource/Australia's_Cheapest_Weddings", "http://dbpedia.org/resource/Australia's_Funniest_Home_Videos", "http://dbpedia.org/resource/Australia's_Got_Talent", "http://dbpedia.org/resource/Australia's_Got_Talent:_Challengers_&_Champions", "http://dbpedia.org/resource/Australia's_Got_Talent_(season_3)", "http://dbpedia.org/resource/Australia's_Got_Talent_(season_4)", "http://dbpedia.org/resource/Australia's_Got_Talent_(season_5)", "http://dbpedia.org/resource/Australia's_Got_Talent_(season_6)", "http://dbpedia.org/resource/Australia's_Got_Talent_(season_7)", "http://dbpedia.org/resource/Australia's_Got_Talent_(season_8)", "http://dbpedia.org/resource/Australia's_Greatest_Athlete", "http://dbpedia.org/resource/Australia's_Most_Wanted", "http://dbpedia.org/resource/Australia's_Naughtiest_Home_Videos", "http://dbpedia.org/resource/Australia's_Next_Top_Model", "http://dbpedia.org/resource/Australia's_Perfect_Couple", "http://dbpedia.org/resource/Australia's_Sexiest_Tradie", "http://dbpedia.org/resource/Australia:_The_Story_of_Us", "http://dbpedia.org/resource/Australia_This_Week", "http://dbpedia.org/resource/Australia_Unites:_Reach_Out_to_Asia", "http://dbpedia.org/resource/Australia_Unlimited", "http://dbpedia.org/resource/Australia_Versus", "http://dbpedia.org/resource/Australia_Wide", "http://dbpedia.org/resource/Australia_You're_Standing_In_It", "http://dbpedia.org/resource/Australian_Families_of_Crime", "http://dbpedia.org/resource/Australian_GT_Championship", "http://dbpedia.org/resource/Australian_Gangster", "http://dbpedia.org/resource/Australian_Idol", "http://dbpedia.org/resource/Australian_International_Airshow", "http://dbpedia.org/resource/Australian_Ninja_Warrior", "http://dbpedia.org/resource/Australian_Playhouse", "http://dbpedia.org/resource/Australian_Plays", "http://dbpedia.org/resource/Australian_Princess", "http://dbpedia.org/resource/Australian_Rally_Championship", "http://dbpedia.org/resource/Australian_Spartan", "http://dbpedia.org/resource/Australian_Story", "http://dbpedia.org/resource/Australian_Survivor", "http://dbpedia.org/resource/Australian_Survivor_(season_3)", "http://dbpedia.org/resource/Australian_Walkabout", "http://dbpedia.org/resource/Australian_diaspora", "http://dbpedia.org/resource/Australian_frontier_wars", "http://dbpedia.org/resource/Austria's_Next_Topmodel", "http://dbpedia.org/resource/Austroasiatic_languages", "http://dbpedia.org/resource/Author_Meets_the_Critics", "http://dbpedia.org/resource/Autism_Is_a_World", "http://dbpedia.org/resource/Auto-B-Good", "http://dbpedia.org/resource/AutoMan", "http://dbpedia.org/resource/Auto_Mobil_International", "http://dbpedia.org/resource/Auto_Shankar_(web_series)", "http://dbpedia.org/resource/Auto_Trader_(TV_series)", "http://dbpedia.org/resource/Autoline_Detroit", "http://dbpedia.org/resource/Automan", "http://dbpedia.org/resource/Automaniac", "http://dbpedia.org/resource/Automatic_Terminal_Information_Service", "http://dbpedia.org/resource/Auton_(film_series)", "http://dbpedia.org/resource/Autonomies", "http://dbpedia.org/resource/Autopsy:_The_Last_Hours_of...", "http://dbpedia.org/resource/Autumn's_Concerto", "http://dbpedia.org/resource/Autumn_Affair", "http://dbpedia.org/resource/Autumn_Offensive_of_1947_in_Northeast_China", "http://dbpedia.org/resource/Autumn_Shower", "http://dbpedia.org/resource/Autumn_in_My_Heart", "http://dbpedia.org/resource/Auwers_synthesis", "http://dbpedia.org/resource/Aux_fronti\u00e8res_du_possible", "http://dbpedia.org/resource/Avaghachi_Sansar", "http://dbpedia.org/resource/Avahteriya", "http://dbpedia.org/resource/Aval_(TV_series)", "http://dbpedia.org/resource/Aval_Appadithan_(TV_series)", "http://dbpedia.org/resource/Avalanche_(1994_film)", "http://dbpedia.org/resource/Avalanche_Alley", "http://dbpedia.org/resource/Avalanche_Sharks", "http://dbpedia.org/resource/Avalon_High_(film)", "http://dbpedia.org/resource/Avalum_Naanum", "http://dbpedia.org/resource/Avanti!_Avanti!", "http://dbpedia.org/resource/Avanti_un_altro!", "http://dbpedia.org/resource/Avatar:_The_Last_Airbender", "http://dbpedia.org/resource/Avatar:_The_Last_Airbender_(season_1)", "http://dbpedia.org/resource/Avatar:_The_Last_Airbender_(season_3)", "http://dbpedia.org/resource/Avatar:_The_Last_Airbender_(upcoming_TV_series)", "http://dbpedia.org/resource/Avataro_Sentai_Donbrothers", "http://dbpedia.org/resource/Ave_F\u00e9nix_(TV_series)", "http://dbpedia.org/resource/Avec_un_grand_A", "http://dbpedia.org/resource/Avenger_(film)", "http://dbpedia.org/resource/Avenger_Penguins", "http://dbpedia.org/resource/Avengers_Assemble_(TV_series)", "http://dbpedia.org/resource/Avengers_Social_Club", "http://dbpedia.org/resource/Avenging_Angel_(2007_film)", "http://dbpedia.org/resource/Avenida_Brasil_(TV_series)", "http://dbpedia.org/resource/Avenida_Per\u00fa", "http://dbpedia.org/resource/Aventura_(TV_series)", "http://dbpedia.org/resource/Aventuras_en_el_tiempo", "http://dbpedia.org/resource/Avenue_5", "http://dbpedia.org/resource/Average_Joe_(TV_series)", "http://dbpedia.org/resource/Avernum", "http://dbpedia.org/resource/Aviation_Nation", "http://dbpedia.org/resource/Avon_Voices", "http://dbpedia.org/resource/Avro_Avian", "http://dbpedia.org/resource/Avrodh:_The_Siege_Within", "http://dbpedia.org/resource/Avrodh:_The_Siege_Within_2", "http://dbpedia.org/resource/Avrupa_Yakas\u0131", "http://dbpedia.org/resource/Awadhi_people", "http://dbpedia.org/resource/Awaiting_Kirin", "http://dbpedia.org/resource/Awake:_The_Million_Dollar_Game", "http://dbpedia.org/resource/Awake_(TV_series)", "http://dbpedia.org/resource/Awaken_(TV_series)", "http://dbpedia.org/resource/Awantura_o_kas\u0119", "http://dbpedia.org/resource/Away_(TV_series)", "http://dbpedia.org/resource/Awaz_-_Dil_Se_Dil_Tak", "http://dbpedia.org/resource/Awdat_Asoid", "http://dbpedia.org/resource/Awesome_Adventures", "http://dbpedia.org/resource/Awesome_Magical_Tales", "http://dbpedia.org/resource/AwesomenessTV_(TV_series)", "http://dbpedia.org/resource/Awfully_Lawful", "http://dbpedia.org/resource/Awkwafina_Is_Nora_from_Queens", "http://dbpedia.org/resource/Awkward_(TV_series)", "http://dbpedia.org/resource/Awkward_Black_Girl", "http://dbpedia.org/resource/Ax_Men", "http://dbpedia.org/resource/Axe_Cop_(TV_series)", "http://dbpedia.org/resource/Axis_&_Allies", "http://dbpedia.org/resource/Ay_Mar\u00eda_qu\u00e9_punter\u00eda", "http://dbpedia.org/resource/Ayakashi:_Samurai_Horror_Tales", "http://dbpedia.org/resource/Ayane's_High_Kick", "http://dbpedia.org/resource/Aye_Mere_Humsafar", "http://dbpedia.org/resource/Aye_Musht-e-Khaak", "http://dbpedia.org/resource/Aye_Zindagi_(TV_series)", "http://dbpedia.org/resource/Ayesha_(TV_series)", "http://dbpedia.org/resource/Ayodhya_dispute", "http://dbpedia.org/resource/Ayomoy", "http://dbpedia.org/resource/Ayr\u0131l\u0131k", "http://dbpedia.org/resource/Ayuready%3F", "http://dbpedia.org/resource/Ayushmaan", "http://dbpedia.org/resource/Ayushman_Bhava_(TV_series)", "http://dbpedia.org/resource/Ayutha_Ezhuthu_(TV_series)", "http://dbpedia.org/resource/Azar_Ki_Ayegi_Baraat", "http://dbpedia.org/resource/Azeroth_Choppers", "http://dbpedia.org/resource/Azhagi_(TV_series)", "http://dbpedia.org/resource/Azhagiya_Tamil_Magal", "http://dbpedia.org/resource/Azhagiya_Thamizh_Magal", "http://dbpedia.org/resource/Azhagu_(TV_series)", "http://dbpedia.org/resource/Azhdar_Show", "http://dbpedia.org/resource/Azmaish", "http://dbpedia.org/resource/1997_Ireland_rugby_union_tour", "http://dbpedia.org/resource/1997_Wales_rugby_union_tour", "http://dbpedia.org/resource/1998_Australia_rugby_union_tour", "http://dbpedia.org/resource/1998_Wales_rugby_union_tour", "http://dbpedia.org/resource/1999_United_States_rugby_union_tour", "http://dbpedia.org/resource/1N58xx_schottky_diodes", "http://dbpedia.org/resource/1_For_3", "http://dbpedia.org/resource/1_vs._100_(U.S._game_show)", "http://dbpedia.org/resource/1_vs._100_(UK_game_show)", "http://dbpedia.org/resource/1st_iHeartRadio_Music_Awards", "http://dbpedia.org/resource/20/20_(Canadian_TV_series)", "http://dbpedia.org/resource/20/20_(New_Zealand)", "http://dbpedia.org/resource/20/20_(U.S._TV_series)", "http://dbpedia.org/resource/2000_Cochabamba_protests", "http://dbpedia.org/resource/2000_Italy_rugby_union_tour", "http://dbpedia.org/resource/Battle_of_Klyastitsy", "http://dbpedia.org/resource/Battle_of_Komaki_and_Nagakute", "http://dbpedia.org/resource/Battle_of_Krasnoi", "http://dbpedia.org/resource/Battle_of_Kunlun_Pass", "http://dbpedia.org/resource/Battle_of_Lum\u00eb", "http://dbpedia.org/resource/Battle_of_Marietta", "http://dbpedia.org/resource/Battle_of_Mogadishu_(November_2007)", "http://dbpedia.org/resource/Battle_of_Monte_Cassino", "http://dbpedia.org/resource/Battle_of_Monte_Grappa", "http://dbpedia.org/resource/Battle_of_Moscow_(1612)", "http://dbpedia.org/resource/Battle_of_Mount_Tambu", "http://dbpedia.org/resource/Battle_of_Mouscron", "http://dbpedia.org/resource/Battle_of_Mubo", "http://dbpedia.org/resource/Battle_of_M\u00f6ckern", "http://dbpedia.org/resource/Battle_of_Nauplia_(1822)", "http://dbpedia.org/resource/Battle_of_Noonday_Creek", "http://dbpedia.org/resource/Battle_of_Norwalk", "http://dbpedia.org/resource/Battle_of_Okinawa", "http://dbpedia.org/resource/Battle_of_Ormoc_Bay", "http://dbpedia.org/resource/Battle_of_Pasong_Tamo", "http://dbpedia.org/resource/Battle_of_Pliska", "http://dbpedia.org/resource/Battle_of_Pokoku_and_Irrawaddy_River_operations", "http://dbpedia.org/resource/Battle_of_Radzymin_(1944)", "http://dbpedia.org/resource/Battle_of_Route_Bismarck", "http://dbpedia.org/resource/Battle_of_R\u00f8denes", "http://dbpedia.org/resource/Battle_of_Santa_Clara", "http://dbpedia.org/resource/Battle_of_Shangcai", "http://dbpedia.org/resource/Battle_of_Sittimungulum", "http://dbpedia.org/resource/Battle_of_Tang'erli", "http://dbpedia.org/resource/Battle_of_Tangtou\u2013Guocun", "http://dbpedia.org/resource/Battle_of_Tongues", "http://dbpedia.org/resource/Battle_of_Trebeshina", "http://dbpedia.org/resource/Battle_of_Two_Flowers", "http://dbpedia.org/resource/Battle_of_Ulm", "http://dbpedia.org/resource/Battle_of_Unsan", "http://dbpedia.org/resource/Battle_of_Verri\u00e8res_Ridge", "http://dbpedia.org/resource/Battle_of_Vy\u0161ehrad", "http://dbpedia.org/resource/Battle_of_Wawon", "http://dbpedia.org/resource/Battle_of_the_Ages", "http://dbpedia.org/resource/Battle_of_the_Barracks", "http://dbpedia.org/resource/Battle_of_the_Black_River", "http://dbpedia.org/resource/Battle_of_the_Blades", "http://dbpedia.org/resource/Battle_of_the_Brains_(British_game_show)", "http://dbpedia.org/resource/Battle_of_the_Brains_(Philippine_game_show)", "http://dbpedia.org/resource/Battle_of_the_Chefs:_Harare", "http://dbpedia.org/resource/Battle_of_the_Choirs", "http://dbpedia.org/resource/Battle_of_the_Ex_Besties", "http://dbpedia.org/resource/Battle_of_the_Frontiers", "http://dbpedia.org/resource/Battle_of_the_Network_Reality_Stars", "http://dbpedia.org/resource/Battle_of_the_Network_Stars", "http://dbpedia.org/resource/Battle_of_the_Planets", "http://dbpedia.org/resource/Battle_of_the_Supercars", "http://dbpedia.org/resource/Battle_of_\u0141om\u017ca_(1939)", "http://dbpedia.org/resource/Battledogs", "http://dbpedia.org/resource/Battlefield_(American_TV_series)", "http://dbpedia.org/resource/Battlefield_Britain", "http://dbpedia.org/resource/Battlefield_Detectives", "http://dbpedia.org/resource/Battlefield_Network", "http://dbpedia.org/resource/Battlefish", "http://dbpedia.org/resource/Battlefronts", "http://dbpedia.org/resource/Battleground_(TV_program)", "http://dbpedia.org/resource/Battleground_(TV_series)", "http://dbpedia.org/resource/Battleground_Earth", "http://dbpedia.org/resource/Battles_BC", "http://dbpedia.org/resource/Battles_of_La_Naval_de_Manila", "http://dbpedia.org/resource/Battles_of_Latrun_(1948)", "http://dbpedia.org/resource/Battles_of_Negba", "http://dbpedia.org/resource/Battles_of_Rzhev", "http://dbpedia.org/resource/Battles_of_Viminacium", "http://dbpedia.org/resource/Battles_of_the_Isonzo", "http://dbpedia.org/resource/Battlestar_Galactica", "http://dbpedia.org/resource/Battlestar_Galactica:_Blood_&_Chrome", "http://dbpedia.org/resource/Battlestar_Galactica:_Razor", "http://dbpedia.org/resource/Battlestar_Galactica:_Razor_Flashbacks", "http://dbpedia.org/resource/Battlestar_Galactica:_The_Face_of_the_Enemy", "http://dbpedia.org/resource/Battlestar_Galactica:_The_Plan", "http://dbpedia.org/resource/Battlestar_Galactica:_The_Resistance", "http://dbpedia.org/resource/Battlestar_Galactica_(1978_TV_series)", "http://dbpedia.org/resource/Battlestar_Galactica_(2004_TV_series)", "http://dbpedia.org/resource/Battlestar_Galactica_(miniseries)", "http://dbpedia.org/resource/Battlestars_(game_show)", "http://dbpedia.org/resource/Battletoads", "http://dbpedia.org/resource/Batwoman_(TV_series)", "http://dbpedia.org/resource/Bawal_Na_Game_Show", "http://dbpedia.org/resource/Bawal_ang_Pasaway_kay_Mareng_Winnie", "http://dbpedia.org/resource/Bawang_Merah_Bawang_Putih_(TV_series)", "http://dbpedia.org/resource/Bawara_Dil", "http://dbpedia.org/resource/Baxter_(TV_series)", "http://dbpedia.org/resource/Bay_Aib", "http://dbpedia.org/resource/Bay_Bridge_Series", "http://dbpedia.org/resource/Bay_City_Blues", "http://dbpedia.org/resource/Bay_Dardi", "http://dbpedia.org/resource/Bay_Khudi", "http://dbpedia.org/resource/Bay_Qasoor", "http://dbpedia.org/resource/Bay_State_(TV_series)", "http://dbpedia.org/resource/Bay_\u00d6nder", "http://dbpedia.org/resource/Bayan_Ko_(TV_series)", "http://dbpedia.org/resource/Bayani_(TV_series)", "http://dbpedia.org/resource/Bayly_(talk_show)", "http://dbpedia.org/resource/Baymax!", "http://dbpedia.org/resource/Bayou_Romance", "http://dbpedia.org/resource/Bayside_Shakedown", "http://dbpedia.org/resource/Bayttaab_Dil_Kee_Tamanna_Hai", "http://dbpedia.org/resource/Bayu_Cinta_Luna", "http://dbpedia.org/resource/Baywatch", "http://dbpedia.org/resource/Baywatch:_Hawaiian_Wedding", "http://dbpedia.org/resource/Baywatch_Nights", "http://dbpedia.org/resource/Baz's_Culture_Clash", "http://dbpedia.org/resource/Bazm_E_Tariq_Aziz", "http://dbpedia.org/resource/BeTipul", "http://dbpedia.org/resource/Be_Aitbaar", "http://dbpedia.org/resource/Be_Careful_with_My_Heart", "http://dbpedia.org/resource/Be_Cool,_Scooby-Doo!", "http://dbpedia.org/resource/Be_Happy_(TV_series)", "http://dbpedia.org/resource/Be_Home_for_Dinner", "http://dbpedia.org/resource/Be_Inteha", "http://dbpedia.org/resource/Be_Melodramatic", "http://dbpedia.org/resource/Be_My_Baby_(web_series)", "http://dbpedia.org/resource/Be_My_Dream_Family", "http://dbpedia.org/resource/Be_My_Guest_(Australian_TV_series)", "http://dbpedia.org/resource/Be_My_Guest_(talk_show)", "http://dbpedia.org/resource/Be_My_Lady", "http://dbpedia.org/resource/Be_My_Princess", "http://dbpedia.org/resource/Be_My_Valentine,_Charlie_Brown", "http://dbpedia.org/resource/Be_Our_Guest_(TV_series)", "http://dbpedia.org/resource/Be_Positive", "http://dbpedia.org/resource/Be_Real_with_JR_Digs", "http://dbpedia.org/resource/Be_Rehem", "http://dbpedia.org/resource/Be_Strong,_Geum-soon!", "http://dbpedia.org/resource/Be_Winner", "http://dbpedia.org/resource/Be_the_Boss", "http://dbpedia.org/resource/Be_the_Creature", "http://dbpedia.org/resource/Be_with_You_(TV_series)", "http://dbpedia.org/resource/Beach.Ball.Babes", "http://dbpedia.org/resource/Beach_Bites_with_Katie_Lee", "http://dbpedia.org/resource/Beach_Bros", "http://dbpedia.org/resource/Beach_Clash", "http://dbpedia.org/resource/Beach_Cops", "http://dbpedia.org/resource/Beach_Girls_(American_TV_series)", "http://dbpedia.org/resource/Beach_Girls_(Indian_TV_series)", "http://dbpedia.org/resource/Beach_Heat:_Miami", "http://dbpedia.org/resource/Beach_Patrol", "http://dbpedia.org/resource/Beach_Patrol_(film)", "http://dbpedia.org/resource/Beached_Az", "http://dbpedia.org/resource/Beaches_(2017_film)", "http://dbpedia.org/resource/Beacon_23", "http://dbpedia.org/resource/Beacon_Hill_(TV_series)", "http://dbpedia.org/resource/Beacon_Hill_(web_series)", "http://dbpedia.org/resource/Beaconsfield_(film)", "http://dbpedia.org/resource/Beadle's_About", "http://dbpedia.org/resource/Beagle:_In_Darwin's_wake", "http://dbpedia.org/resource/Beakman's_World", "http://dbpedia.org/resource/Beany_and_Cecil", "http://dbpedia.org/resource/Bear_Behaving_Badly", "http://dbpedia.org/resource/Bear_Grylls:_Face_the_Wild", "http://dbpedia.org/resource/Bear_Grylls:_Mission_Survive", "http://dbpedia.org/resource/Bear_Whisperer", "http://dbpedia.org/resource/Bear_in_the_Big_Blue_House", "http://dbpedia.org/resource/Bearcats!", "http://dbpedia.org/resource/Bearing_Witness", "http://dbpedia.org/resource/Beast_(TV_series)", "http://dbpedia.org/resource/Beast_Hunter", "http://dbpedia.org/resource/Beast_King_GoLion", "http://dbpedia.org/resource/Beast_Legends", "http://dbpedia.org/resource/Beast_Machines:_Transformers", "http://dbpedia.org/resource/Beast_Wars:_Transformers", "http://dbpedia.org/resource/Beast_Wars_(IDW_Publishing)", "http://dbpedia.org/resource/Beastly_Boyz", "http://dbpedia.org/resource/Beastmaster_(TV_series)", "http://dbpedia.org/resource/Beastmaster_III:_The_Eye_of_Braxus", "http://dbpedia.org/resource/Beasts_(TV_series)", "http://dbpedia.org/resource/Beasts_of_Asia_(TV_series)", "http://dbpedia.org/resource/Beat-Club", "http://dbpedia.org/resource/Beat_(TV_series)", "http://dbpedia.org/resource/Beat_Angel_Escalayer", "http://dbpedia.org/resource/Beat_Bobby_Flay", "http://dbpedia.org/resource/Beat_Bugs", "http://dbpedia.org/resource/Beat_Konducta", "http://dbpedia.org/resource/Beat_Shazam", "http://dbpedia.org/resource/Beat_TV", "http://dbpedia.org/resource/Beat_The_Blondes", "http://dbpedia.org/resource/Beat_The_Genius", "http://dbpedia.org/resource/Beat_of_the_City", "http://dbpedia.org/resource/Beat_the_Boss", "http://dbpedia.org/resource/Beat_the_Brain", "http://dbpedia.org/resource/Beat_the_Chef", "http://dbpedia.org/resource/Beat_the_Chefs", "http://dbpedia.org/resource/Beat_the_Clock", "http://dbpedia.org/resource/Beat_the_Crusher", "http://dbpedia.org/resource/Beat_the_Geeks", "http://dbpedia.org/resource/Beat_the_House", "http://dbpedia.org/resource/Beat_the_Odds", "http://dbpedia.org/resource/Beat_the_Star", "http://dbpedia.org/resource/Beat_the_Star_(Australian_game_show)", "http://dbpedia.org/resource/Beat_the_Teacher", "http://dbpedia.org/resource/Beating_Again", "http://dbpedia.org/resource/Beating_Heart_(TV_series)", "http://dbpedia.org/resource/Beatmania_IIDX", "http://dbpedia.org/resource/Beatrice_di_Tenda", "http://dbpedia.org/resource/Beatrix_Cenci", "http://dbpedia.org/resource/Beau_Brummell:_This_Charming_Man", "http://dbpedia.org/resource/Beau_Geste_(TV_series)", "http://dbpedia.org/resource/Beautiful_&_Twisted", "http://dbpedia.org/resource/Beautiful_Bones:_Sakurako's_Investigation", "http://dbpedia.org/resource/Beautiful_Connection", "http://dbpedia.org/resource/Beautiful_Cooking", "http://dbpedia.org/resource/Beautiful_Daughters", "http://dbpedia.org/resource/Beautiful_Days_(TV_series)", "http://dbpedia.org/resource/Beautiful_Girl_(film)", "http://dbpedia.org/resource/Beautiful_Gong_Shim", "http://dbpedia.org/resource/Beautiful_Illusions", "http://dbpedia.org/resource/Beautiful_Justice", "http://dbpedia.org/resource/Beautiful_Life_(Chinese_TV_series)", "http://dbpedia.org/resource/Beautiful_Life_(Japanese_TV_series)", "http://dbpedia.org/resource/Beautiful_Love,_Wonderful_Life", "http://dbpedia.org/resource/Beautiful_Minds_(TV_programme)", "http://dbpedia.org/resource/Beautiful_People_(American_TV_series)", "http://dbpedia.org/resource/Beautiful_People_(British_TV_series)", "http://dbpedia.org/resource/Beautiful_Rain", "http://dbpedia.org/resource/Beautiful_Secret", "http://dbpedia.org/resource/Beautiful_Strangers_(TV_series)", "http://dbpedia.org/resource/Beautiful_Trio", "http://dbpedia.org/resource/Beautiful_Wilhelmine", "http://dbpedia.org/resource/Beautiful_Wives_Club", "http://dbpedia.org/resource/Beautiful_World_(TV_series)", "http://dbpedia.org/resource/Beautiful_Young_Minds", "http://dbpedia.org/resource/Beauty's_Rival_in_Palace", "http://dbpedia.org/resource/Beauty_&_the_Beast_(2012_TV_series)", "http://dbpedia.org/resource/Beauty_&_the_Briefcase", "http://dbpedia.org/resource/Beauty_Knows_No_Pain", "http://dbpedia.org/resource/Beauty_Pop", "http://dbpedia.org/resource/Beauty_Queen_(TV_series)", "http://dbpedia.org/resource/Beauty_Queen_of_Jerusalem_(TV_show)", "http://dbpedia.org/resource/Beauty_School_Cop_Outs", "http://dbpedia.org/resource/Beauty_World_(TV_series)", "http://dbpedia.org/resource/Beauty_and_the_Baker", "http://dbpedia.org/resource/Beauty_and_the_Beast:_Ugly_Face_of_Prejudice", "http://dbpedia.org/resource/Beauty_and_the_Beast_(1976_TV_film)", "http://dbpedia.org/resource/Beauty_and_the_Beast_(1987_TV_series)", "http://dbpedia.org/resource/Beauty_and_the_Beast_(talk_show)", "http://dbpedia.org/resource/Beauty_and_the_Boss_(TV_series)", "http://dbpedia.org/resource/Beauty_and_the_Geek", "http://dbpedia.org/resource/Beauty_and_the_Geek_(British_TV_series)", "http://dbpedia.org/resource/Beauty_and_the_Geek_Australia", "http://dbpedia.org/resource/Beauty_at_War", "http://dbpedia.org/resource/Beauty_is_My_Business", "http://dbpedia.org/resource/Beaver_Falls_(TV_series)", "http://dbpedia.org/resource/Beavis_and_Butt-Head", "http://dbpedia.org/resource/Bebaak_(2021)", "http://dbpedia.org/resource/Bebaakee", "http://dbpedia.org/resource/Bebasi", "http://dbpedia.org/resource/Bebe_and_Me", "http://dbpedia.org/resource/Beb\u00ea_a_Bordo", "http://dbpedia.org/resource/Because_I_Said_So_(TV_series)", "http://dbpedia.org/resource/Because_This_Is_My_First_Life", "http://dbpedia.org/resource/Because_This_Is_My_First_Twenty", "http://dbpedia.org/resource/Because_of_You_(TV_series)", "http://dbpedia.org/resource/Becca's_Bunch", "http://dbpedia.org/resource/Bechari_Mehrunnisa", "http://dbpedia.org/resource/Bechari_Qudsia", "http://dbpedia.org/resource/Beck:_The_Eye_of_the_Storm", "http://dbpedia.org/resource/Beck_(British_TV_series)", "http://dbpedia.org/resource/Beck_(Swedish_TV_series)", "http://dbpedia.org/resource/Beck_(film)", "http://dbpedia.org/resource/Beck_(manga)", "http://dbpedia.org/resource/Beck_is_Back!", "http://dbpedia.org/resource/Beck_\u2013_Annonsmannen", "http://dbpedia.org/resource/Beck_\u2013_Enslingen", "http://dbpedia.org/resource/Beck_\u2013_H\u00e4mndens_pris", "http://dbpedia.org/resource/Beck_\u2013_Kartellen", "http://dbpedia.org/resource/Beck_\u2013_Levande_begravd", "http://dbpedia.org/resource/Beck_\u2013_Mannen_med_ikonerna", "http://dbpedia.org/resource/Beck_\u2013_Mannen_utan_ansikte", "http://dbpedia.org/resource/Beck_\u2013_Monstret", "http://dbpedia.org/resource/Beck_\u2013_Ok\u00e4nd_avs\u00e4ndare", "http://dbpedia.org/resource/Beck_\u2013_Pensionat_P\u00e4rlan", "http://dbpedia.org/resource/Beck_\u2013_Pojken_i_glaskulan", "http://dbpedia.org/resource/Beck_\u2013_Sista_vittnet", "http://dbpedia.org/resource/Beck_\u2013_Sp\u00e5r_i_m\u00f6rker", "http://dbpedia.org/resource/Beck_\u2013_The_Money_Man", "http://dbpedia.org/resource/Beck_\u2013_Vita_n\u00e4tter", "http://dbpedia.org/resource/Beck_\u2013_\u00d6ga_f\u00f6r_\u00f6ga", "http://dbpedia.org/resource/Becker_(TV_series)", "http://dbpedia.org/resource/Beckinfield", "http://dbpedia.org/resource/Beckman_Young_Investigators_Award", "http://dbpedia.org/resource/Becky's_Back", "http://dbpedia.org/resource/Becky_and_Barnaby_Bear", "http://dbpedia.org/resource/Becoming_A_Popstar", "http://dbpedia.org/resource/Becoming_Dick", "http://dbpedia.org/resource/Becoming_Elizabeth", "http://dbpedia.org/resource/Becoming_Human", "http://dbpedia.org/resource/Becoming_Mike_Nichols", "http://dbpedia.org/resource/Becoming_Us", "http://dbpedia.org/resource/Becoming_Warren_Buffett", "http://dbpedia.org/resource/Becoming_Witch", "http://dbpedia.org/resource/Becoming_You", "http://dbpedia.org/resource/Becoming_a_Billionaire", "http://dbpedia.org/resource/BedHead", "http://dbpedia.org/resource/Bed_Stories_(TV_series)", "http://dbpedia.org/resource/Bed_of_Roses_(TV_series)", "http://dbpedia.org/resource/Bedardi_Saiyaan", "http://dbpedia.org/resource/Bede_BD-5", "http://dbpedia.org/resource/Beder_Meye_Jyotsna_(TV_series)", "http://dbpedia.org/resource/Bedford_QL", "http://dbpedia.org/resource/Bedlam_(2011_TV_series)", "http://dbpedia.org/resource/Bedlam_(2013_TV_series)", "http://dbpedia.org/resource/Bedre_skilt_end_aldrig", "http://dbpedia.org/resource/Bedsitcom", "http://dbpedia.org/resource/Bedtime_(TV_series)", "http://dbpedia.org/resource/Bee_and_PuppyCat", "http://dbpedia.org/resource/Beecham_House", "http://dbpedia.org/resource/Beechgrove_(TV_series)", "http://dbpedia.org/resource/Beef:_The_Series", "http://dbpedia.org/resource/Beef_House", "http://dbpedia.org/resource/Beehive_(TV_series)", "http://dbpedia.org/resource/Beelzebub_(manga)", "http://dbpedia.org/resource/Beend_Banoongaa_Ghodi_Chadhunga", "http://dbpedia.org/resource/Beerland", "http://dbpedia.org/resource/Beet_the_Vandel_Buster", "http://dbpedia.org/resource/Beethoven's_Last_Night", "http://dbpedia.org/resource/Beethoven_(TV_series)", "http://dbpedia.org/resource/Beethoven_Lives_Upstairs", "http://dbpedia.org/resource/Beethoven_Virus", "http://dbpedia.org/resource/Beetlejuice_(TV_series)", "http://dbpedia.org/resource/Beezie_Madden", "http://dbpedia.org/resource/Before_30", "http://dbpedia.org/resource/Before_They_Were_Stars", "http://dbpedia.org/resource/Before_We_Get_Married", "http://dbpedia.org/resource/Before_We_Ruled_the_Earth", "http://dbpedia.org/resource/Before_You_Say_I_Do", "http://dbpedia.org/resource/Before_the_Game", "http://dbpedia.org/resource/Before_the_Impact", "http://dbpedia.org/resource/Before_the_League", "http://dbpedia.org/resource/Beforeigners", "http://dbpedia.org/resource/Beg,_Borrow_&_Deal", "http://dbpedia.org/resource/Beggar_My_Neighbour_(TV_series)", "http://dbpedia.org/resource/Beggars_and_Choosers_(TV_series)", "http://dbpedia.org/resource/Begin_A_Game", "http://dbpedia.org/resource/Begin_Again_(TV_series)", "http://dbpedia.org/resource/Begram_ivories", "http://dbpedia.org/resource/Begusarai_(TV_series)", "http://dbpedia.org/resource/Beh_Bote_Nga", "http://dbpedia.org/resource/Behadd", "http://dbpedia.org/resource/Beharbari_Outpost", "http://dbpedia.org/resource/Behave_Yourself!_(TV_series)", "http://dbpedia.org/resource/Behaving_Badly_(TV_serial)", "http://dbpedia.org/resource/Behemoth_(2011_film)", "http://dbpedia.org/resource/Behenein", "http://dbpedia.org/resource/Behind_Closed_Doors_(1958_TV_series)", "http://dbpedia.org/resource/Behind_Closed_Doors_(1996_TV_series)", "http://dbpedia.org/resource/Behind_Closed_Doors_(2003_film)", "http://dbpedia.org/resource/Behind_Her_Eyes_(TV_series)", "http://dbpedia.org/resource/Behind_Mansion_Walls", "http://dbpedia.org/resource/Behind_Silk_Curtains", "http://dbpedia.org/resource/Behind_Your_Smile", "http://dbpedia.org/resource/Behind_the_Attraction", "http://dbpedia.org/resource/Behind_the_Bash", "http://dbpedia.org/resource/Behind_the_Camera:_The_Unauthorized_Story_of_Charlie's_Angels", "http://dbpedia.org/resource/Behind_the_Candelabra", "http://dbpedia.org/resource/Behind_the_Legend", "http://dbpedia.org/resource/Behind_the_Mask_(TV_series)", "http://dbpedia.org/resource/Behind_the_Music", "http://dbpedia.org/resource/Behind_the_News", "http://dbpedia.org/resource/Behind_the_Scenes_(American_TV_series)", "http://dbpedia.org/resource/Behind_the_Scenes_(SPACE_TV_series)", "http://dbpedia.org/resource/Behind_the_Screen_(TV_series)", "http://dbpedia.org/resource/Behind_the_Wall:_Bubba_Wallace", "http://dbpedia.org/resource/Behind_the_Water", "http://dbpedia.org/resource/Behind_the_White_Tower", "http://dbpedia.org/resource/Behkawa", "http://dbpedia.org/resource/Behula_(TV_series)", "http://dbpedia.org/resource/Behzat_\u00c7._Bir_Ankara_Polisiyesi", "http://dbpedia.org/resource/Beija_Sapo", "http://dbpedia.org/resource/Beijing_Love_Story_(TV_series)", "http://dbpedia.org/resource/Being..._N-Dubz", "http://dbpedia.org/resource/Being:_Liverpool", "http://dbpedia.org/resource/Being_Bobby_Brown", "http://dbpedia.org/resource/Being_Eileen", "http://dbpedia.org/resource/Being_Erica", "http://dbpedia.org/resource/Being_Eve", "http://dbpedia.org/resource/Being_Human_(British_TV_series)", "http://dbpedia.org/resource/Being_Human_(North_American_TV_series)", "http://dbpedia.org/resource/Being_Human_(North_American_season_1)", "http://dbpedia.org/resource/Being_Human_(North_American_season_2)", "http://dbpedia.org/resource/Being_Human_(North_American_season_3)", "http://dbpedia.org/resource/Being_Human_(North_American_season_4)", "http://dbpedia.org/resource/Being_Human_novels", "http://dbpedia.org/resource/Being_Ian", "http://dbpedia.org/resource/Being_Jewish_in_France", "http://dbpedia.org/resource/Being_Lara_Bingle", "http://dbpedia.org/resource/Being_Mary_Jane", "http://dbpedia.org/resource/Being_Mick", "http://dbpedia.org/resource/Being_Victor", "http://dbpedia.org/resource/Beintehaa", "http://dbpedia.org/resource/Beki_Boxer", "http://dbpedia.org/resource/Bel-Air_(TV_series)", "http://dbpedia.org/resource/BelAZ_75600", "http://dbpedia.org/resource/Bel_Ami_(South_Korean_TV_series)", "http://dbpedia.org/resource/Bela,_a_Feia", "http://dbpedia.org/resource/Bela_Rahma", "http://dbpedia.org/resource/Belan_Wali_Bahu", "http://dbpedia.org/resource/Belapur_Ki_Dayan", "http://dbpedia.org/resource/Belaventura", "http://dbpedia.org/resource/Beleza_Pura", "http://dbpedia.org/resource/Belfagor", "http://dbpedia.org/resource/Belfer_(TV_series)", "http://dbpedia.org/resource/Belfry_Witches", "http://dbpedia.org/resource/Belgium's_Got_Talent_(Wallonia)", "http://dbpedia.org/resource/Belgium's_Got_Talent_(Walloon_TV_series)", "http://dbpedia.org/resource/Belgrade\u2013Pristina_negotiations", "http://dbpedia.org/resource/Belgravia_(TV_series)", "http://dbpedia.org/resource/Belief_(TV_series)", "http://dbpedia.org/resource/Believe_(TV_series)", "http://dbpedia.org/resource/Believe_Me:_The_Abduction_of_Lisa_McVey", "http://dbpedia.org/resource/Believe_Nothing", "http://dbpedia.org/resource/Belize_Barrier_Reef", "http://dbpedia.org/resource/Belkin_Wemo", "http://dbpedia.org/resource/Bella_Block", "http://dbpedia.org/resource/Bella_Germania", "http://dbpedia.org/resource/Bella_Mafia", "http://dbpedia.org/resource/Bella_and_the_Bulldogs", "http://dbpedia.org/resource/Bella_calamidades", "http://dbpedia.org/resource/Bellamy's_Backyard_Safari", "http://dbpedia.org/resource/Bellamy's_People", "http://dbpedia.org/resource/Bellamy_(TV_series)", "http://dbpedia.org/resource/Bellanca_Viking", "http://dbpedia.org/resource/Bellator_Fighting_Championships:_Season_One", "http://dbpedia.org/resource/Bellator_MMA:_Season_Eight", "http://dbpedia.org/resource/Bellator_MMA_in_2015", "http://dbpedia.org/resource/Bellbird_(TV_series)", "http://dbpedia.org/resource/Belle's", "http://dbpedia.org/resource/Belle,_Sebastian_and_the_Horses", "http://dbpedia.org/resource/Belle_Collective", "http://dbpedia.org/resource/Belle_and_Sebastian_(1965_TV_series)", "http://dbpedia.org/resource/Belle_and_Sebastian_(2017_TV_series)", "http://dbpedia.org/resource/Bellerbys_College", "http://dbpedia.org/resource/Bellevue_(TV_series)", "http://dbpedia.org/resource/Bellezas_Indomables", "http://dbpedia.org/resource/Bellum_Batonianum", "http://dbpedia.org/resource/Bell\u00edsima", "http://dbpedia.org/resource/Belmonte_(TV_series)", "http://dbpedia.org/resource/Belonging_(TV_series)", "http://dbpedia.org/resource/Below_Deck", "http://dbpedia.org/resource/Below_Deck_Down_Under", "http://dbpedia.org/resource/Below_Deck_Mediterranean", "http://dbpedia.org/resource/Below_Deck_Sailing_Yacht", "http://dbpedia.org/resource/Below_the_Lion_Rock", "http://dbpedia.org/resource/Below_the_Surface_(Danish_TV_series)", "http://dbpedia.org/resource/Belphegor,_or_Phantom_of_the_Louvre_(1965_miniseries)", "http://dbpedia.org/resource/Belt_Parkway", "http://dbpedia.org/resource/Beltway_Series", "http://dbpedia.org/resource/Bel\u00edssima", "http://dbpedia.org/resource/Bem-Vindos_a_Beirais", "http://dbpedia.org/resource/Bem_me_Quer", "http://dbpedia.org/resource/Ben's_Menu", "http://dbpedia.org/resource/Ben's_Mill", "http://dbpedia.org/resource/Ben-Gurion_-Jabotinsky_Agreements_(London_Agreements)", "http://dbpedia.org/resource/Ben-To", "http://dbpedia.org/resource/Ben_&_Holly's_Little_Kingdom", "http://dbpedia.org/resource/Ben_10", "http://dbpedia.org/resource/Ben_10:_Alien_Force", "http://dbpedia.org/resource/Ben_10:_Destroy_All_Aliens", "http://dbpedia.org/resource/Ben_10:_Omniverse", "http://dbpedia.org/resource/Ben_10:_Ultimate_Alien", "http://dbpedia.org/resource/Ben_10:_Ultimate_Challenge", "http://dbpedia.org/resource/Ben_10_(2005_TV_series)", "http://dbpedia.org/resource/Ben_10_(2016_TV_series)", "http://dbpedia.org/resource/Ben_10_Versus_the_Universe:_The_Movie", "http://dbpedia.org/resource/Ben_Casey", "http://dbpedia.org/resource/Ben_Elton:_The_Man_from_Auntie", "http://dbpedia.org/resource/Ben_Elton_Live_from_Planet_Earth", "http://dbpedia.org/resource/Ben_Fogle:_New_Lives_in_the_Wild", "http://dbpedia.org/resource/Ben_Hall_(TV_series)", "http://dbpedia.org/resource/Ben_Hur_(miniseries)", "http://dbpedia.org/resource/Ben_Jerrod", "http://dbpedia.org/resource/Ben_Onu_\u00c7ok_Sevdim", "http://dbpedia.org/resource/Ben_Phillips_Blows_Up", "http://dbpedia.org/resource/Ben_Sorensen's_Real_Country", "http://dbpedia.org/resource/Ben_X_Jim", "http://dbpedia.org/resource/Ben_and_Kate", "http://dbpedia.org/resource/Ben_et_Thomas", "http://dbpedia.org/resource/Benaam_(TV_series)", "http://dbpedia.org/resource/Benched_(TV_series)", "http://dbpedia.org/resource/Benchmark_(game_show)", "http://dbpedia.org/resource/Benders_(TV_series)", "http://dbpedia.org/resource/Bendita_mentira", "http://dbpedia.org/resource/Bene_Bou", "http://dbpedia.org/resource/Beneath_The_Lies_-_The_Series", "http://dbpedia.org/resource/Beneath_the_Lies_\u2013_The_Series", "http://dbpedia.org/resource/Benedict_Arnold:_A_Question_of_Honor", "http://dbpedia.org/resource/Benefis", "http://dbpedia.org/resource/Benefit_Busters", "http://dbpedia.org/resource/Benefits_Street", "http://dbpedia.org/resource/Benelli_Sei", "http://dbpedia.org/resource/Benelux'_Next_Top_Model", "http://dbpedia.org/resource/Bene\u0161_decrees", "http://dbpedia.org/resource/Bengaluru_Benne_Dose", "http://dbpedia.org/resource/Benidorm_(Belgian_TV_series)", "http://dbpedia.org/resource/Benidorm_(British_TV_series)", "http://dbpedia.org/resource/Benidorm_Bastards", "http://dbpedia.org/resource/Benidorm_Fest", "http://dbpedia.org/resource/Benim_Hala_Umudum_Var", "http://dbpedia.org/resource/Benito_(film)", "http://dbpedia.org/resource/Benjamin_Franklin_(film)", "http://dbpedia.org/resource/Benjamin_Franklin_(miniseries)", "http://dbpedia.org/resource/Benji's_Very_Own_Christmas_Story", "http://dbpedia.org/resource/Benji,_Zax_&_the_Alien_Prince", "http://dbpedia.org/resource/Benner_&_Benner", "http://dbpedia.org/resource/Bennington_(radio_show)", "http://dbpedia.org/resource/Benson_(TV_series)", "http://dbpedia.org/resource/Bent_(TV_series)", "http://dbpedia.org/resource/Bentley_R_Type", "http://dbpedia.org/resource/Benza_English", "http://dbpedia.org/resource/Beovizija", "http://dbpedia.org/resource/Beowulf:_Return_to_the_Shieldlands", "http://dbpedia.org/resource/Bepanah_Pyaar", "http://dbpedia.org/resource/Bepannah", "http://dbpedia.org/resource/Beppinsan", "http://dbpedia.org/resource/Berdeen_Falls", "http://dbpedia.org/resource/Bereft_(film)", "http://dbpedia.org/resource/Beretta_70", "http://dbpedia.org/resource/Beretta_90two", "http://dbpedia.org/resource/Beretta_92", "http://dbpedia.org/resource/Beretta_Model_38", "http://dbpedia.org/resource/Bergerac_(TV_series)", "http://dbpedia.org/resource/Bering_Sea_Beast", "http://dbpedia.org/resource/Bering_Sea_Gold", "http://dbpedia.org/resource/Berkeley_Square_(TV_series)", "http://dbpedia.org/resource/Berks_(TV_series)", "http://dbpedia.org/resource/Berlin,_Berlin", "http://dbpedia.org/resource/Berlin-class_replenishment_ship", "http://dbpedia.org/resource/Berlin_(TV_series)", "http://dbpedia.org/resource/Berlin_Station_(TV_series)", "http://dbpedia.org/resource/Bermuda_Tentacles", "http://dbpedia.org/resource/Berm\u00fadez_(TV_series)", "http://dbpedia.org/resource/Bernard's_Watch", "http://dbpedia.org/resource/Bernard_(TV_series)", "http://dbpedia.org/resource/Bernard_and_the_Genie", "http://dbpedia.org/resource/Bernardo_Alves", "http://dbpedia.org/resource/Bernds_Hexe", "http://dbpedia.org/resource/Bernhard,_schavuit_van_Oranje", "http://dbpedia.org/resource/Bernice_Summerfield", "http://dbpedia.org/resource/Berrenger's", "http://dbpedia.org/resource/Berry_Bees_(TV_series)", "http://dbpedia.org/resource/Berry_and_Dolly", "http://dbpedia.org/resource/Bersama_Meraih_Mimpi", "http://dbpedia.org/resource/Berserk_(manga)", "http://dbpedia.org/resource/Bert's_Family_Feud", "http://dbpedia.org/resource/Bert_(TV_series)", "http://dbpedia.org/resource/Bert_D'Angelo/Superstar", "http://dbpedia.org/resource/Bert_and_Dickie", "http://dbpedia.org/resource/Bert_and_Ernie's_Great_Adventures", "http://dbpedia.org/resource/Bert_the_Conqueror", "http://dbpedia.org/resource/Bertha_(TV_series)", "http://dbpedia.org/resource/Bertie_(TV_series)", "http://dbpedia.org/resource/Bertrand_(film)", "http://dbpedia.org/resource/Berukhi", "http://dbpedia.org/resource/Beryl's_Lot", "http://dbpedia.org/resource/Besharam_(TV_series)", "http://dbpedia.org/resource/Bessie_(film)", "http://dbpedia.org/resource/Best!_Movies!_Ever!", "http://dbpedia.org/resource/Best.Worst.Weekend.Ever.", "http://dbpedia.org/resource/Best:_His_Mother's_Son", "http://dbpedia.org/resource/Best_Baker_in_America", "http://dbpedia.org/resource/Best_Bet", "http://dbpedia.org/resource/Best_Bits_(Australian_TV_series)", "http://dbpedia.org/resource/Best_Bits_(New_Zealand_TV_series)", "http://dbpedia.org/resource/Best_Chicken", "http://dbpedia.org/resource/Best_Ed", "http://dbpedia.org/resource/Best_Friend's_Date", "http://dbpedia.org/resource/Best_Friends_Forever%3F", "http://dbpedia.org/resource/Best_Friends_Forever_(American_TV_series)", "http://dbpedia.org/resource/Best_Friends_Forever_(Indonesian_TV_series)", "http://dbpedia.org/resource/Best_Friends_Whenever", "http://dbpedia.org/resource/Best_Funeral_Ever", "http://dbpedia.org/resource/Best_Hits_Kayosai", "http://dbpedia.org/resource/Best_Home_Cook", "http://dbpedia.org/resource/Best_Ink", "http://dbpedia.org/resource/Best_Leftovers_Ever!", "http://dbpedia.org/resource/Best_New_Restaurant", "http://dbpedia.org/resource/Best_Player", "http://dbpedia.org/resource/Best_Recipes_Ever", "http://dbpedia.org/resource/Best_Selling_Secrets", "http://dbpedia.org/resource/Best_Shot_(TV_series)", "http://dbpedia.org/resource/Best_Student_Council", "http://dbpedia.org/resource/Best_Time", "http://dbpedia.org/resource/Best_Time_Ever_with_Neil_Patrick_Harris", "http://dbpedia.org/resource/Best_Week_Ever", "http://dbpedia.org/resource/Best_of_2Pac", "http://dbpedia.org/resource/Best_of_British_(TV_series)", "http://dbpedia.org/resource/Best_of_Enemies_(TV_series)", "http://dbpedia.org/resource/Best_of_Friends", "http://dbpedia.org/resource/Best_of_I_Love_the...", "http://dbpedia.org/resource/Best_of_Luck_Nikki", "http://dbpedia.org/resource/Best_of_World_Championship_Wrestling", "http://dbpedia.org/resource/Best_of_the_West", "http://dbpedia.org/resource/Best_of_the_Worst_(TV_program)", "http://dbpedia.org/resource/Best_of_the_Worst_(game_show)", "http://dbpedia.org/resource/Bestsellers_(web_series)", "http://dbpedia.org/resource/Bet_ng_Bayan", "http://dbpedia.org/resource/Bet_on_Your_Baby", "http://dbpedia.org/resource/Beta_Hi_Chahiye", "http://dbpedia.org/resource/Betaal", "http://dbpedia.org/resource/Betaal_Pachisi_(TV_series)", "http://dbpedia.org/resource/Betas", "http://dbpedia.org/resource/Bethenny_&_Fredrik", "http://dbpedia.org/resource/Bethenny_(talk_show)", "http://dbpedia.org/resource/Bethenny_Ever_After", "http://dbpedia.org/resource/Bethpage_Air_Show", "http://dbpedia.org/resource/Beti_(TV_series)", "http://dbpedia.org/resource/Beti_Jaisi", "http://dbpedia.org/resource/Betiyaan_Apni_Yaa_Paraaya_Dhan", "http://dbpedia.org/resource/Beto_Rockfeller", "http://dbpedia.org/resource/Betoch", "http://dbpedia.org/resource/Betrayal_(1974_film)", "http://dbpedia.org/resource/Betrayal_(1978_film)", "http://dbpedia.org/resource/Betrayal_(TV_series)", "http://dbpedia.org/resource/Betrayer_(film)", "http://dbpedia.org/resource/Betsy's_Kindergarten_Adventures", "http://dbpedia.org/resource/Betsy-Tacy", "http://dbpedia.org/resource/Bette_(TV_series)", "http://dbpedia.org/resource/Better_(talk_show)", "http://dbpedia.org/resource/Better_Call_Saul", "http://dbpedia.org/resource/Better_Days_(TV_series)", "http://dbpedia.org/resource/Better_Halves_(TV_series)", "http://dbpedia.org/resource/Better_Homes", "http://dbpedia.org/resource/Better_Homes_and_Gardens_(TV_program)", "http://dbpedia.org/resource/Better_Late_Than_Never_(1979_film)", "http://dbpedia.org/resource/Better_Late_Than_Never_(TV_series)", "http://dbpedia.org/resource/Better_Living_TV_Theater", "http://dbpedia.org/resource/Better_Man_(2016_TV_series)", "http://dbpedia.org/resource/Better_Man_(miniseries)", "http://dbpedia.org/resource/Better_Off_Ted", "http://dbpedia.org/resource/Better_Things_(TV_series)", "http://dbpedia.org/resource/Better_Tomorrow_(TV_series)", "http://dbpedia.org/resource/Better_than_Us", "http://dbpedia.org/resource/Better_with_You", "http://dbpedia.org/resource/Betterman_(TV_series)", "http://dbpedia.org/resource/Bettina_S.", "http://dbpedia.org/resource/Betty's_Bunch", "http://dbpedia.org/resource/Betty_&_Coretta", "http://dbpedia.org/resource/Betty_(TV_series)", "http://dbpedia.org/resource/Betty_Toons", "http://dbpedia.org/resource/Betty_White's_Off_Their_Rockers", "http://dbpedia.org/resource/Betty_en_NY", "http://dbpedia.org/resource/Bettys_Diagnose", "http://dbpedia.org/resource/Betul_ke_bohong%3F", "http://dbpedia.org/resource/Between_(TV_series)", "http://dbpedia.org/resource/Between_Brothers", "http://dbpedia.org/resource/Between_Friends_(1983_film)", "http://dbpedia.org/resource/Between_Love_&_Desire", "http://dbpedia.org/resource/Between_Love_and_Hate_(1993_film)", "http://dbpedia.org/resource/Between_Two_Ferns_with_Zach_Galifianakis", "http://dbpedia.org/resource/Between_Two_Women_(1986_film)", "http://dbpedia.org/resource/Between_Two_Worlds_(TV_series)", "http://dbpedia.org/resource/Between_the_Covers_(TV_programme)", "http://dbpedia.org/resource/Between_the_Lines_(TV_series)", "http://dbpedia.org/resource/Between_the_Lines_(game_show)", "http://dbpedia.org/resource/Between_the_Lions", "http://dbpedia.org/resource/Between_the_Sheets_(TV_series)", "http://dbpedia.org/resource/Beugr\u00f3", "http://dbpedia.org/resource/Beulah_(series)", "http://dbpedia.org/resource/Beulah_Land_(miniseries)", "http://dbpedia.org/resource/Beverly's_Full_House", "http://dbpedia.org/resource/Beverly_Hills,_90210", "http://dbpedia.org/resource/Beverly_Hills,_90210_(season_10)", "http://dbpedia.org/resource/Beverly_Hills,_90210_(season_9)", "http://dbpedia.org/resource/Beverly_Hills_Bordello", "http://dbpedia.org/resource/Beverly_Hills_Buntz", "http://dbpedia.org/resource/Beverly_Hills_Chihuahua_(film_series)", "http://dbpedia.org/resource/Beverly_Hills_Fabulous", "http://dbpedia.org/resource/Beverly_Hills_Family_Robinson", "http://dbpedia.org/resource/Beverly_Hills_Madam", "http://dbpedia.org/resource/Beverly_Hills_Nannies", "http://dbpedia.org/resource/Beverly_Hills_Pawn", "http://dbpedia.org/resource/Beverly_Hills_Teens", "http://dbpedia.org/resource/Beverly_Hills_Vet", "http://dbpedia.org/resource/Bewafa_(TV_series)", "http://dbpedia.org/resource/Bewafaa_sii_Wafaa", "http://dbpedia.org/resource/Beware_of_Dog_(TV_series)", "http://dbpedia.org/resource/Beware_the_Batman", "http://dbpedia.org/resource/Bewegte_M\u00e4nner", "http://dbpedia.org/resource/Bewitched", "http://dbpedia.org/resource/BeyWarriors:_BeyRaiderz", "http://dbpedia.org/resource/BeyWarriors:_Cyborg", "http://dbpedia.org/resource/BeyWheelz", "http://dbpedia.org/resource/Beyblade", "http://dbpedia.org/resource/Beyhadh", "http://dbpedia.org/resource/Beyhadh_2", "http://dbpedia.org/resource/Beyonc\u00e9:_Lemonade", "http://dbpedia.org/resource/Beyond_(American_TV_series)", "http://dbpedia.org/resource/Beyond_(Canadian_TV_series)", "http://dbpedia.org/resource/Beyond_(Singaporean_TV_series)", "http://dbpedia.org/resource/Beyond_Belief:_Fact_or_Fiction", "http://dbpedia.org/resource/Beyond_Betrayal", "http://dbpedia.org/resource/Beyond_Evil_(TV_series)", "http://dbpedia.org/resource/Beyond_Fear_(film)", "http://dbpedia.org/resource/Beyond_Geek", "http://dbpedia.org/resource/Beyond_Human_(TV_series)", "http://dbpedia.org/resource/Beyond_Invention", "http://dbpedia.org/resource/Beyond_My_Touch", "http://dbpedia.org/resource/Beyond_Our_Control", "http://dbpedia.org/resource/Beyond_Our_Ken", "http://dbpedia.org/resource/Beyond_Reality_(TV_series)", "http://dbpedia.org/resource/Beyond_Reason_(TV_series)", "http://dbpedia.org/resource/Beyond_River_Cottage", "http://dbpedia.org/resource/Beyond_Scared_Straight", "http://dbpedia.org/resource/Beyond_Survival", "http://dbpedia.org/resource/Beyond_Tomorrow_(TV_series)", "http://dbpedia.org/resource/Beyond_Vaudeville", "http://dbpedia.org/resource/Beyond_Westworld", "http://dbpedia.org/resource/Beyond_Words_(TV_series)", "http://dbpedia.org/resource/Beyond_a_Joke_(2009_TV_series)", "http://dbpedia.org/resource/Beyond_the_Axis_of_Truth", "http://dbpedia.org/resource/Beyond_the_Beyond_(manga)", "http://dbpedia.org/resource/Beyond_the_Blackboard", "http://dbpedia.org/resource/Beyond_the_Boundary", "http://dbpedia.org/resource/Beyond_the_Break", "http://dbpedia.org/resource/Beyond_the_Clouds_(TV_series)", "http://dbpedia.org/resource/Beyond_the_Darklands_(Australian_TV_series)", "http://dbpedia.org/resource/Beyond_the_Darklands_(New_Zealand_TV_series)", "http://dbpedia.org/resource/Beyond_the_Edge_(TV_series)", "http://dbpedia.org/resource/Beyond_the_Glory", "http://dbpedia.org/resource/Beyond_the_Prairie:_The_True_Story_of_Laura_Ingalls_Wilder", "http://dbpedia.org/resource/Beyond_the_Rainbow_(TV_series)", "http://dbpedia.org/resource/Beyond_the_Realm_of_Conscience", "http://dbpedia.org/resource/Beyond_the_Tank", "http://dbpedia.org/resource/Beyond_the_Walls_(TV_series)", "http://dbpedia.org/resource/Beyond_the_aXis_of_Truth_II", "http://dbpedia.org/resource/Bh_Se_Bhade", "http://dbpedia.org/resource/Bhaag_Bakool_Bhaag", "http://dbpedia.org/resource/Bhaag_Beanie_Bhaag", "http://dbpedia.org/resource/Bhaage_Re_Mann", "http://dbpedia.org/resource/Bhaago_KK_Aaya", "http://dbpedia.org/resource/Bhabhi_(TV_series)", "http://dbpedia.org/resource/Bhabiji_Ghar_Par_Hain!", "http://dbpedia.org/resource/Bhadra_(2019_TV_series)", "http://dbpedia.org/resource/Bhadragol", "http://dbpedia.org/resource/Bhaggolokkhi", "http://dbpedia.org/resource/Bhagonwali-Baante_Apni_Taqdeer", "http://dbpedia.org/resource/Bhagya_Lakshmi", "http://dbpedia.org/resource/Bhagyadevatha_(TV_series)", "http://dbpedia.org/resource/Bhagyajathakam_(TV_series)", "http://dbpedia.org/resource/Bhagyalaxmi", "http://dbpedia.org/resource/Bhagyarekha_(TV_series)", "http://dbpedia.org/resource/Bhagyavidhaata", "http://dbpedia.org/resource/Bhai_(TV_series)", "http://dbpedia.org/resource/Bhai_Bhaiya_Aur_Brother", "http://dbpedia.org/resource/Bhairavi_Aavigalukku_Priyamanaval", "http://dbpedia.org/resource/Bhakharwadi_(TV_series)", "http://dbpedia.org/resource/Bhakter_Bhogobaan_Shri_Krishna", "http://dbpedia.org/resource/Bhakton_Ki_Bhakti_Mein_Shakti", "http://dbpedia.org/resource/Bhalobasha_Bhalobasha", "http://dbpedia.org/resource/Bhama_Vijayam", "http://dbpedia.org/resource/Bhanumotir_Khel", "http://dbpedia.org/resource/Bhanwar_(TV_series)", "http://dbpedia.org/resource/Bharaas", "http://dbpedia.org/resource/Bharaghar", "http://dbpedia.org/resource/Bharam", "http://dbpedia.org/resource/Bharat_Ek_Khoj", "http://dbpedia.org/resource/Bharat_Ka_Veer_Putra_\u2013_Maharana_Pratap", "http://dbpedia.org/resource/Bharat_Ki_Shaan:_Singing_Star", "http://dbpedia.org/resource/Bharat_ki_Chhap", "http://dbpedia.org/resource/Bharathi_Kannamma_(2014_TV_series)", "http://dbpedia.org/resource/Bharathi_Kannamma_(2019_TV_series)", "http://dbpedia.org/resource/Bharati-class_interceptor_boat", "http://dbpedia.org/resource/Bharatidasan_Colony", "http://dbpedia.org/resource/Bharatvarsh_(TV_series)", "http://dbpedia.org/resource/Bharosa_Pyar_Tera", "http://dbpedia.org/resource/Bharya_(TV_series)", "http://dbpedia.org/resource/Bhasha", "http://dbpedia.org/resource/Bhaskar_Bharti", "http://dbpedia.org/resource/Bhaukaal_(web_series)", "http://dbpedia.org/resource/Bhavani_(TV_series)", "http://dbpedia.org/resource/Bheja_Fry_(film_series)", "http://dbpedia.org/resource/Bhim-class_tugboat", "http://dbpedia.org/resource/Bhima_Jewels_Comedy_Festival", "http://dbpedia.org/resource/Bholi_Bano", "http://dbpedia.org/resource/Bhoojo_to_Jeeto", "http://dbpedia.org/resource/Bhook_(TV_series)", "http://dbpedia.org/resource/Bhool", "http://dbpedia.org/resource/Bhool_(2014_TV_series)", "http://dbpedia.org/resource/Bhool_(2019_TV_series)", "http://dbpedia.org/resource/Bhoomikanya", "http://dbpedia.org/resource/Bhoot_Aaya", "http://dbpedia.org/resource/Bhootu", "http://dbpedia.org/resource/Bhootwala_Serial", "http://dbpedia.org/resource/Bhram_(web_series)", "http://dbpedia.org/resource/Bhramanam", "http://dbpedia.org/resource/Bia_(TV_series)", "http://dbpedia.org/resource/Aix-en-Provence_possessions", "http://dbpedia.org/resource/Ajankohtainen_kakkonen", "http://dbpedia.org/resource/Ajoneuvos", "http://dbpedia.org/resource/Akane-chan", "http://dbpedia.org/resource/Akiko_(comic_book)", "http://dbpedia.org/resource/Akkaa_p\u00e4\u00e4lle", "http://dbpedia.org/resource/Akuma_na_Eros", "http://dbpedia.org/resource/Al-Quds_TV", "http://dbpedia.org/resource/Al-Rawi", "http://dbpedia.org/resource/Al-Yamamah_arms_deal", "http://dbpedia.org/resource/Al_Maktab_Raqam_19", "http://dbpedia.org/resource/Al_Mouaallima_Wal_Oustaz_(The_teacher_and_the_professor)", "http://dbpedia.org/resource/Al_Murray's_Road_to_Berlin", "http://dbpedia.org/resource/Alabama_Claims", "http://dbpedia.org/resource/Alaca_H\u00f6y\u00fck_bronze_standards", "http://dbpedia.org/resource/Alan's_Big_One", "http://dbpedia.org/resource/Alan_Hamel's_Comedy_Bag", "http://dbpedia.org/resource/Football_on_5", "http://dbpedia.org/resource/Footballer_Wants_a_Wife", "http://dbpedia.org/resource/Footballers'_Wives", "http://dbpedia.org/resource/Footballers'_Wives:_Extra_Time", "http://dbpedia.org/resource/Footballism", "http://dbpedia.org/resource/Footprints_in_the_Sand_(TV_series)", "http://dbpedia.org/resource/Footsteps_(film)", "http://dbpedia.org/resource/Footy_Classified", "http://dbpedia.org/resource/For-Profit_Online_University", "http://dbpedia.org/resource/For_&_Against", "http://dbpedia.org/resource/For_All_Mankind_(TV_series)", "http://dbpedia.org/resource/For_All_Time", "http://dbpedia.org/resource/For_Better_or_Worse_(1959_TV_series)", "http://dbpedia.org/resource/For_Better_or_Worse_(2011_TV_series)", "http://dbpedia.org/resource/For_Dummies", "http://dbpedia.org/resource/For_Hope", "http://dbpedia.org/resource/For_Life_(TV_series)", "http://dbpedia.org/resource/For_Love_or_Country:_The_Arturo_Sandoval_Story", "http://dbpedia.org/resource/For_Love_or_Money_(2013_TV_series)", "http://dbpedia.org/resource/For_Love_or_Money_(American_TV_series)", "http://dbpedia.org/resource/For_Love_or_Money_(Australian_TV_program)", "http://dbpedia.org/resource/For_Love_or_Money_(Australian_TV_series)", "http://dbpedia.org/resource/For_Love_or_Money_(Philippine_TV_series)", "http://dbpedia.org/resource/For_Love_or_Money_(game_show)", "http://dbpedia.org/resource/For_M", "http://dbpedia.org/resource/For_Maddie_with_Love", "http://dbpedia.org/resource/For_My_Daughter's_Honor", "http://dbpedia.org/resource/For_One_Night", "http://dbpedia.org/resource/For_One_Night_Only_(Irish_TV_series)", "http://dbpedia.org/resource/For_One_Night_Only_(TV_series)", "http://dbpedia.org/resource/For_Peete's_Sake", "http://dbpedia.org/resource/For_Richer,_for_Poorer_(film)", "http://dbpedia.org/resource/For_Richer...For_Poorer", "http://dbpedia.org/resource/For_Us_the_Living:_The_Medgar_Evers_Story", "http://dbpedia.org/resource/For_What_It's_Worth_(game_show)", "http://dbpedia.org/resource/For_Whom_the_Bell_Tolls_(TV_series)", "http://dbpedia.org/resource/For_Your_Love_(TV_series)", "http://dbpedia.org/resource/For_the_First_Time_in_Forever:_A_Frozen_Sing-Along_Celebration", "http://dbpedia.org/resource/For_the_Last_Time", "http://dbpedia.org/resource/For_the_Love_of_Ada", "http://dbpedia.org/resource/For_the_Love_of_Cars", "http://dbpedia.org/resource/For_the_Love_of_Nancy", "http://dbpedia.org/resource/For_the_Love_of_Ray_J", "http://dbpedia.org/resource/For_the_Love_of_Ray_J_(season_1)", "http://dbpedia.org/resource/For_the_Love_of_Ray_J_(season_2)", "http://dbpedia.org/resource/For_the_People_(1965_TV_series)", "http://dbpedia.org/resource/For_the_People_(2002_TV_series)", "http://dbpedia.org/resource/For_the_People_(2018_TV_series)", "http://dbpedia.org/resource/For_the_Record_(Canadian_TV_series)", "http://dbpedia.org/resource/For_the_Record_with_Greta", "http://dbpedia.org/resource/For_the_Rest_of_His_Life", "http://dbpedia.org/resource/For_the_Rest_of_Your_Life", "http://dbpedia.org/resource/For_the_Term_of_His_Natural_Life_(miniseries)", "http://dbpedia.org/resource/Forbidden_(1984_film)", "http://dbpedia.org/resource/Forbidden_Iran", "http://dbpedia.org/resource/Forbidden_Love_(1982_film)", "http://dbpedia.org/resource/Forbidden_Love_(2004_TV_series)", "http://dbpedia.org/resource/Forbidden_Love_(web_series)", "http://dbpedia.org/resource/Forbidden_Nights", "http://dbpedia.org/resource/Forbidden_Science", "http://dbpedia.org/resource/Force_Five", "http://dbpedia.org/resource/Force_Motors_Trax", "http://dbpedia.org/resource/Forces_of_Nature_(TV_series)", "http://dbpedia.org/resource/Ford:_The_Man_and_the_Machine", "http://dbpedia.org/resource/Ford_Cologne_V6_engine", "http://dbpedia.org/resource/Ford_Credit_125", "http://dbpedia.org/resource/Ford_Festival", "http://dbpedia.org/resource/Ford_Nation", "http://dbpedia.org/resource/Ford_Star_Jubilee", "http://dbpedia.org/resource/Forecast_Earth", "http://dbpedia.org/resource/Forecasting_Love_and_Weather", "http://dbpedia.org/resource/Foreign_Affairs_(1964_TV_series)", "http://dbpedia.org/resource/Foreign_Affairs_(1966_TV_series)", "http://dbpedia.org/resource/Foreign_Body_(web_series)", "http://dbpedia.org/resource/Foreign_Correspondent_(TV_series)", "http://dbpedia.org/resource/Foreign_Exchange_(1970_film)", "http://dbpedia.org/resource/Foreign_Exchange_(Australian_TV_series)", "http://dbpedia.org/resource/Foreign_Exchange_(CNBC_World_TV_program)", "http://dbpedia.org/resource/Foreign_Exchange_(PBS_TV_program)", "http://dbpedia.org/resource/Foreign_Exchange_(TV_series)", "http://dbpedia.org/resource/Foreign_Intrigue", "http://dbpedia.org/resource/Foreign_Objects_(TV_series)", "http://dbpedia.org/resource/Forensic_Factor", "http://dbpedia.org/resource/Forensic_Files", "http://dbpedia.org/resource/Forensic_Files_(season_1)", "http://dbpedia.org/resource/Forensic_Files_(season_10)", "http://dbpedia.org/resource/Forensic_Files_(season_11)", "http://dbpedia.org/resource/Forensic_Files_(season_12)", "http://dbpedia.org/resource/Forensic_Files_(season_14)", "http://dbpedia.org/resource/Forensic_Files_(season_2)", "http://dbpedia.org/resource/Forensic_Files_(season_3)", "http://dbpedia.org/resource/Forensic_Files_(season_4)", "http://dbpedia.org/resource/Forensic_Files_(season_5)", "http://dbpedia.org/resource/Forensic_Files_(season_6)", "http://dbpedia.org/resource/Forensic_Files_(season_7)", "http://dbpedia.org/resource/Forensic_Files_(season_8)", "http://dbpedia.org/resource/Forensic_Files_(season_9)", "http://dbpedia.org/resource/Forensic_Files_II", "http://dbpedia.org/resource/Forensic_Heroes", "http://dbpedia.org/resource/Forensic_Heroes_II", "http://dbpedia.org/resource/Forensic_Heroes_III", "http://dbpedia.org/resource/Forensic_Heroes_IV", "http://dbpedia.org/resource/Forensic_Investigators", "http://dbpedia.org/resource/Forest_(TV_series)", "http://dbpedia.org/resource/Forest_Friends", "http://dbpedia.org/resource/Forest_Hills_Drive:_Homecoming", "http://dbpedia.org/resource/Forest_of_the_Dead", "http://dbpedia.org/resource/Forever_(1978_film)", "http://dbpedia.org/resource/Forever_(2014_TV_series)", "http://dbpedia.org/resource/Forever_(2018_TV_series)", "http://dbpedia.org/resource/Forever_(Dutch_TV_series)", "http://dbpedia.org/resource/Forever_(Philippine_TV_series)", "http://dbpedia.org/resource/Forever_Eden", "http://dbpedia.org/resource/Forever_Green", "http://dbpedia.org/resource/Forever_Knight", "http://dbpedia.org/resource/Forever_Love_(1998_film)", "http://dbpedia.org/resource/Forever_Mandalay", "http://dbpedia.org/resource/Forever_Summer:_Hamptons", "http://dbpedia.org/resource/Forever_Young_(2014_TV_series)", "http://dbpedia.org/resource/Forever_Young_(American_TV_series)", "http://dbpedia.org/resource/Forever_Young_(TV_series)", "http://dbpedia.org/resource/Forever_and_Ever_(TV_series)", "http://dbpedia.org/resource/Forever_in_My_Heart", "http://dbpedia.org/resource/Forevermore_(TV_series)", "http://dbpedia.org/resource/Forged_in_Fire", "http://dbpedia.org/resource/Forged_in_Fire_(TV_series)", "http://dbpedia.org/resource/Forget_Me_Not_(TV_series)", "http://dbpedia.org/resource/Forget_Me_Not_Farm", "http://dbpedia.org/resource/Forget_You_Remember_Love", "http://dbpedia.org/resource/Forget_and_Forgive", "http://dbpedia.org/resource/Forgive_Me_(TV_series)", "http://dbpedia.org/resource/Forgive_or_Forget", "http://dbpedia.org/resource/Forgotten_(2012_film)", "http://dbpedia.org/resource/Forgotten_(TV_series)", "http://dbpedia.org/resource/Forgotten_Four:_The_Integration_of_Pro_Football", "http://dbpedia.org/resource/Forgotten_Sins", "http://dbpedia.org/resource/Forgotten_Weapons", "http://dbpedia.org/resource/Forky_Asks_a_Question", "http://dbpedia.org/resource/Formal_Wars", "http://dbpedia.org/resource/Formula_1:_Drive_to_Survive", "http://dbpedia.org/resource/Formula_1_Debrief", "http://dbpedia.org/resource/Formula_1_Decade", "http://dbpedia.org/resource/Formula_3_Euro_Series", "http://dbpedia.org/resource/Formula_3_Sudamericana", "http://dbpedia.org/resource/Formula_Crane_45", "http://dbpedia.org/resource/Formula_D", "http://dbpedia.org/resource/Formula_E", "http://dbpedia.org/resource/Formula_Masters_China", "http://dbpedia.org/resource/Formula_One_Decade", "http://dbpedia.org/resource/Formula_One_coverage_on_ITV", "http://dbpedia.org/resource/Formula_Volkswagen_Germany", "http://dbpedia.org/resource/Fort_Boyard:_Ultimate_Challenge", "http://dbpedia.org/resource/Fort_Boyard_(game_show)", "http://dbpedia.org/resource/Fort_Laramie_(radio)", "http://dbpedia.org/resource/Fort_Moultrie", "http://dbpedia.org/resource/Fortean_TV", "http://dbpedia.org/resource/Fortier_(TV_series)", "http://dbpedia.org/resource/Fortifications_of_Birgu", "http://dbpedia.org/resource/Fortifications_of_Chania", "http://dbpedia.org/resource/Fortifications_of_Famagusta", "http://dbpedia.org/resource/Fortifications_of_Heraklion", "http://dbpedia.org/resource/Fortifications_of_Mdina", "http://dbpedia.org/resource/Fortifications_of_Messina", "http://dbpedia.org/resource/Fortifications_of_Senglea", "http://dbpedia.org/resource/Fortifications_of_Valletta", "http://dbpedia.org/resource/Fortitude_(TV_series)", "http://dbpedia.org/resource/Fortress_Wall_of_Seoul", "http://dbpedia.org/resource/Fortuna_(TV_series)", "http://dbpedia.org/resource/Fortunata_y_Jacinta_(TV_series)", "http://dbpedia.org/resource/Fortunate_Son_(TV_series)", "http://dbpedia.org/resource/Fortune:_Million_Pound_Giveaway", "http://dbpedia.org/resource/Fortune_Dane", "http://dbpedia.org/resource/Fortune_Hunter_(TV_series)", "http://dbpedia.org/resource/Fortune_Street", "http://dbpedia.org/resource/Fortunes_of_War_(TV_series)", "http://dbpedia.org/resource/Fortycoats_&_Co.", "http://dbpedia.org/resource/Fortysomething_(TV_series)", "http://dbpedia.org/resource/Forza_(series)", "http://dbpedia.org/resource/For\u00e7a-Tarefa", "http://dbpedia.org/resource/For\u00e7a_de_um_Desejo", "http://dbpedia.org/resource/Fos_Sto_Tounel", "http://dbpedia.org/resource/Fosse/Verdon", "http://dbpedia.org/resource/Fossil_Detectives", "http://dbpedia.org/resource/Foster's_Home_for_Imaginary_Friends", "http://dbpedia.org/resource/Foster_and_Laurie", "http://dbpedia.org/resource/Foul_Play_(TV_series)", "http://dbpedia.org/resource/Foundation_(TV_series)", "http://dbpedia.org/resource/Foundation_Series", "http://dbpedia.org/resource/Foundation_of_the_Kingdom", "http://dbpedia.org/resource/Foundation_series", "http://dbpedia.org/resource/Founding_Emperor_of_Ming_Dynasty", "http://dbpedia.org/resource/Four_(TV_series)", "http://dbpedia.org/resource/Four_Brothers_(mountain_range)", "http://dbpedia.org/resource/Four_Corners_(American_TV_series)", "http://dbpedia.org/resource/Four_Corners_(Australian_TV_program)", "http://dbpedia.org/resource/Four_Days_in_July", "http://dbpedia.org/resource/Four_Days_in_October", "http://dbpedia.org/resource/Four_Directions_(TV_series)", "http://dbpedia.org/resource/Four_Eyes!", "http://dbpedia.org/resource/Four_Eyes_and_Six_Guns", "http://dbpedia.org/resource/Four_Falls_of_Buffalo", "http://dbpedia.org/resource/Four_Feather_Falls", "http://dbpedia.org/resource/Four_Freedoms_(Norman_Rockwell)", "http://dbpedia.org/resource/Four_Hours_at_the_Capitol", "http://dbpedia.org/resource/Four_Hours_in_My_Lai", "http://dbpedia.org/resource/Four_Kings", "http://dbpedia.org/resource/Four_Ladies_(TV_series)", "http://dbpedia.org/resource/Four_Live_(Irish_TV_programme)", "http://dbpedia.org/resource/Four_Live_(New_Zealand_TV_programme)", "http://dbpedia.org/resource/Four_Lives", "http://dbpedia.org/resource/Four_More_Shots_Please!", "http://dbpedia.org/resource/Four_Rooms_(TV_series)", "http://dbpedia.org/resource/Four_Seasons_in_Havana", "http://dbpedia.org/resource/Four_Sisters", "http://dbpedia.org/resource/Four_Star_Playhouse", "http://dbpedia.org/resource/Four_Star_Revue", "http://dbpedia.org/resource/Four_Tank-Men_and_a_Dog", "http://dbpedia.org/resource/Four_Times_of_the_Day", "http://dbpedia.org/resource/Four_Times_of_the_Day_(Joseph_Vernet)", "http://dbpedia.org/resource/Four_Weddings", "http://dbpedia.org/resource/Four_Weddings_(Australian_TV_series)", "http://dbpedia.org/resource/Four_Weddings_and_a_Funeral_(miniseries)", "http://dbpedia.org/resource/Four_in_a_Bed", "http://dbpedia.org/resource/Four_in_a_Bed_(series_6)", "http://dbpedia.org/resource/Four_in_the_Morning_(TV_series)", "http://dbpedia.org/resource/Four_of_a_Kind_(TV_series)", "http://dbpedia.org/resource/Four_on_the_Floor_(American_TV_program)", "http://dbpedia.org/resource/Four_on_the_Floor_(Canadian_TV_series)", "http://dbpedia.org/resource/Four_to_the_Floor_(TV_series)", "http://dbpedia.org/resource/Fourplay_(web_series)", "http://dbpedia.org/resource/Foursome_(2006_TV_series)", "http://dbpedia.org/resource/Foursome_(2016_TV_series)", "http://dbpedia.org/resource/Foursome_(TV_series)", "http://dbpedia.org/resource/Fourteen_Locks", "http://dbpedia.org/resource/Fourways_Farm", "http://dbpedia.org/resource/Fox's_Peter_Pan_&_the_Pirates", "http://dbpedia.org/resource/Fox_&_Friends", "http://dbpedia.org/resource/Fox_&_Friends_First", "http://dbpedia.org/resource/Fox_(TV_series)", "http://dbpedia.org/resource/Fox_College_Football", "http://dbpedia.org/resource/Fox_College_Hoops", "http://dbpedia.org/resource/Fox_Football_Fone-in", "http://dbpedia.org/resource/Fox_Major_League_Baseball", "http://dbpedia.org/resource/Fox_NASCAR", "http://dbpedia.org/resource/Fox_NFL", "http://dbpedia.org/resource/Fox_NFL_Kickoff", "http://dbpedia.org/resource/Fox_NFL_Sunday", "http://dbpedia.org/resource/Fox_New_Year's_Eve_specials", "http://dbpedia.org/resource/Fox_News_@_Night", "http://dbpedia.org/resource/Fox_News_Live", "http://dbpedia.org/resource/Fox_News_Specialists", "http://dbpedia.org/resource/Fox_News_Sunday", "http://dbpedia.org/resource/Fox_News_Update", "http://dbpedia.org/resource/Fox_News_Watch", "http://dbpedia.org/resource/Fox_Online", "http://dbpedia.org/resource/Fox_Report", "http://dbpedia.org/resource/Fox_Soccer_Report", "http://dbpedia.org/resource/Fox_Spirit_Matchmaker", "http://dbpedia.org/resource/Fox_Sports_FC", "http://dbpedia.org/resource/Fox_Sports_Live", "http://dbpedia.org/resource/Fox_UFC", "http://dbpedia.org/resource/Fox_Volant_of_the_Snowy_Mountain_(2006_TV_series)", "http://dbpedia.org/resource/Fox_Wars_(TV_programme)", "http://dbpedia.org/resource/Foxfire_(1987_film)", "http://dbpedia.org/resource/Foxhunter", "http://dbpedia.org/resource/Foxy_Fables", "http://dbpedia.org/resource/Foxy_Lady_(TV_series)", "http://dbpedia.org/resource/Foyle's_War", "http://dbpedia.org/resource/Fra_Gherardo", "http://dbpedia.org/resource/Fractured_Flickers", "http://dbpedia.org/resource/Frafra_people", "http://dbpedia.org/resource/Fraggle_Rock", "http://dbpedia.org/resource/Fraggle_Rock:_Back_to_the_Rock", "http://dbpedia.org/resource/Fraggle_Rock:_The_Animated_Series", "http://dbpedia.org/resource/Fragments_(Torchwood)", "http://dbpedia.org/resource/Fraidy_Cat_(TV_series)", "http://dbpedia.org/resource/Framed!_A_Sicilian_Murder_Mystery", "http://dbpedia.org/resource/Framed_(1990_film)", "http://dbpedia.org/resource/Framed_(American_TV_program)", "http://dbpedia.org/resource/Framed_(TV_series)", "http://dbpedia.org/resource/Framing_Britney_Spears", "http://dbpedia.org/resource/Frammenti", "http://dbpedia.org/resource/Frammenti_(TV_series)", "http://dbpedia.org/resource/France_Five", "http://dbpedia.org/resource/Frances_Farmer_Presents", "http://dbpedia.org/resource/Francesco's_Italy:_Top_to_Toe", "http://dbpedia.org/resource/Francie_and_Josie", "http://dbpedia.org/resource/Francis_Albert_Sinatra_Does_His_Thing", "http://dbpedia.org/resource/Francis_Brennan's_Grand_Tour", "http://dbpedia.org/resource/Francis_Storm_Investigates", "http://dbpedia.org/resource/Francisco,_El_Jesuita", "http://dbpedia.org/resource/Francisco_el_Matem\u00e1tico", "http://dbpedia.org/resource/Francisco_el_Matem\u00e1tico:_Clase_2017", "http://dbpedia.org/resource/Franco-Turkish_War", "http://dbpedia.org/resource/Frank's_Place", "http://dbpedia.org/resource/Frank_Herbert's_Children_of_Dune", "http://dbpedia.org/resource/Frank_Herbert's_Dune", "http://dbpedia.org/resource/Frank_Leaves_for_the_Orient", "http://dbpedia.org/resource/Frank_Pappa_Show", "http://dbpedia.org/resource/Frank_Sinatra:_A_Man_and_His_Music", "http://dbpedia.org/resource/Frank_Skinner's_Opinionated", "http://dbpedia.org/resource/Frank_Stewart_Gospel_Hour", "http://dbpedia.org/resource/Frank_Stubbs_Promotes", "http://dbpedia.org/resource/Frank_TV", "http://dbpedia.org/resource/Frank_Wesson_Rifles", "http://dbpedia.org/resource/Frank_and_Francesca", "http://dbpedia.org/resource/Frank_of_Ireland", "http://dbpedia.org/resource/Frank_the_Entertainer_in_a_Basement_Affair", "http://dbpedia.org/resource/Franke_Sloothaak", "http://dbpedia.org/resource/Frankelda's_Book_of_Spooks", "http://dbpedia.org/resource/Franken_Fran", "http://dbpedia.org/resource/Frankenstein's_Aunt", "http://dbpedia.org/resource/Frankenstein's_Wedding", "http://dbpedia.org/resource/Frankenstein,_MD", "http://dbpedia.org/resource/Frankenstein:_The_True_Story", "http://dbpedia.org/resource/Frankenstein_(1973_film)", "http://dbpedia.org/resource/Frankenstein_(1992_film)", "http://dbpedia.org/resource/Frankenstein_(2004_film)", "http://dbpedia.org/resource/Frankenstein_(2007_film)", "http://dbpedia.org/resource/Frankenstein_(miniseries)", "http://dbpedia.org/resource/Frankenstein_Jr._and_The_Impossibles", "http://dbpedia.org/resource/Frankfurt_Documents", "http://dbpedia.org/resource/Frankie's_House_(TV_series)", "http://dbpedia.org/resource/Frankie_&_Neffe", "http://dbpedia.org/resource/Frankie_(TV_series)", "http://dbpedia.org/resource/Frankie_Boyle's_New_World_Order", "http://dbpedia.org/resource/Frankie_Boyle's_Tour_of_Scotland", "http://dbpedia.org/resource/Frankie_Boyle's_Tramadol_Nights", "http://dbpedia.org/resource/Frankie_Drake_Mysteries", "http://dbpedia.org/resource/Frankie_Edgar_vs._Gray_Maynard", "http://dbpedia.org/resource/Franklin_&_Bash", "http://dbpedia.org/resource/Franklin_(TV_series)", "http://dbpedia.org/resource/Franklin_(miniseries)", "http://dbpedia.org/resource/Franklin_O-335", "http://dbpedia.org/resource/Franklin_and_Friends", "http://dbpedia.org/resource/Frankly_Howerd", "http://dbpedia.org/resource/Frannie's_Turn", "http://dbpedia.org/resource/Franny's_Feet", "http://dbpedia.org/resource/Franny_K._Stein", "http://dbpedia.org/resource/Fran\u00e7oise_Durocher,_Waitress", "http://dbpedia.org/resource/Fraochy_Bay", "http://dbpedia.org/resource/Frasier", "http://dbpedia.org/resource/Frasier_(season_9)", "http://dbpedia.org/resource/Frat_House", "http://dbpedia.org/resource/Fratelli_Benvenuti", "http://dbpedia.org/resource/Fraternity_Life", "http://dbpedia.org/resource/Frau_Margot", "http://dbpedia.org/resource/Fraud_(TV_series)", "http://dbpedia.org/resource/Fraud_Squad_TV", "http://dbpedia.org/resource/Frauentausch", "http://dbpedia.org/resource/Frayed_(TV_series)", "http://dbpedia.org/resource/Freak_(web_series)", "http://dbpedia.org/resource/Freak_Out_(TV_series)", "http://dbpedia.org/resource/Freak_Show_(TV_series)", "http://dbpedia.org/resource/Freakazoid!", "http://dbpedia.org/resource/Freakish_(TV_series)", "http://dbpedia.org/resource/Freaknik:_The_Musical", "http://dbpedia.org/resource/Freakonomics_Radio", "http://dbpedia.org/resource/Freaks_(manga)", "http://dbpedia.org/resource/Freaks_and_Geeks", "http://dbpedia.org/resource/Freakshow_(TV_series)", "http://dbpedia.org/resource/Freaktown", "http://dbpedia.org/resource/FreakyLinks", "http://dbpedia.org/resource/Freaky_(TV_series)", "http://dbpedia.org/resource/Freaky_Eaters_(American_TV_program)", "http://dbpedia.org/resource/Freaky_Eaters_(British_TV_programme)", "http://dbpedia.org/resource/Freaky_Friday_(2018_film)", "http://dbpedia.org/resource/Freaky_Stories", "http://dbpedia.org/resource/Fred's_Head", "http://dbpedia.org/resource/Fred:_The_Movie", "http://dbpedia.org/resource/Fred:_The_Show", "http://dbpedia.org/resource/Fred_3:_Camp_Fred", "http://dbpedia.org/resource/Fred_Flintstone_and_Friends", "http://dbpedia.org/resource/Fred_Penner's_Place", "http://dbpedia.org/resource/Fred_and_Barney_Meet_The_Thing", "http://dbpedia.org/resource/Fred_and_Barney_Meet_the_Shmoo", "http://dbpedia.org/resource/Fred_and_Barney_Meet_the_Thing", "http://dbpedia.org/resource/Fredag_hela_veckan", "http://dbpedia.org/resource/Fredd_Bear's_Breakfast-A-Go-Go", "http://dbpedia.org/resource/Freddi_Fish", "http://dbpedia.org/resource/Freddie", "http://dbpedia.org/resource/Freddie_(TV_series)", "http://dbpedia.org/resource/Freddie_Mercury:_The_Great_Pretender", "http://dbpedia.org/resource/Freddie_the_Freeloader's_Christmas_Dinner", "http://dbpedia.org/resource/Freddy's_Nightmares", "http://dbpedia.org/resource/Frederick_Armory", "http://dbpedia.org/resource/Frederick_Douglass_(Ulysses_Kay_opera)", "http://dbpedia.org/resource/Frederick_Forsyth_Presents", "http://dbpedia.org/resource/FreeRayshawn", "http://dbpedia.org/resource/Free_Agents", "http://dbpedia.org/resource/Free_Agents_(American_TV_series)", "http://dbpedia.org/resource/Free_Collars_Kingdom", "http://dbpedia.org/resource/Free_Country_(TV_series)", "http://dbpedia.org/resource/Free_European_Song_Contest", "http://dbpedia.org/resource/Free_Meek", "http://dbpedia.org/resource/Free_Radio", "http://dbpedia.org/resource/Free_Radio_(TV_series)", "http://dbpedia.org/resource/Free_Rein", "http://dbpedia.org/resource/Free_Ride_(TV_series)", "http://dbpedia.org/resource/Free_Sh!t_Men", "http://dbpedia.org/resource/Free_Spirit_(TV_series)", "http://dbpedia.org/resource/Free_State\u2013Basotho_Wars", "http://dbpedia.org/resource/Free_Stuff", "http://dbpedia.org/resource/Free_The_Army_tour", "http://dbpedia.org/resource/Free_Willy_(TV_series)", "http://dbpedia.org/resource/Free_Willy_(film_series)", "http://dbpedia.org/resource/Free_for_All_(TV_series)", "http://dbpedia.org/resource/Freebie_and_the_Bean_(TV_series)", "http://dbpedia.org/resource/Freedom_(1981_film)", "http://dbpedia.org/resource/Freedom_(TV_series)", "http://dbpedia.org/resource/Freedom_Fighter,_Lee_Hoe-young", "http://dbpedia.org/resource/Freedom_Fighters:_The_Ray", "http://dbpedia.org/resource/Freedom_Machines", "http://dbpedia.org/resource/Freedom_Road", "http://dbpedia.org/resource/Freedom_Song_(film)", "http://dbpedia.org/resource/Freedom_Watch_with_Judge_Napolitano", "http://dbpedia.org/resource/Freefonix", "http://dbpedia.org/resource/Freej", "http://dbpedia.org/resource/Freelancers_(TV_series)", "http://dbpedia.org/resource/Freeman's_Mind", "http://dbpedia.org/resource/Freeman_(TV_pilot)", "http://dbpedia.org/resource/Freeter,_Ie_wo_Kau", "http://dbpedia.org/resource/Freetime_(TV_series)", "http://dbpedia.org/resource/Freeway_Face-Off", "http://dbpedia.org/resource/Freeway_Warrior", "http://dbpedia.org/resource/Freewheelers", "http://dbpedia.org/resource/Freeze_(TV_series)", "http://dbpedia.org/resource/Freeze_Frame_(1992_film)", "http://dbpedia.org/resource/Freeze_Out_(game_show)", "http://dbpedia.org/resource/Freeze_the_Fear_with_Wim_Hof", "http://dbpedia.org/resource/Freezerburns", "http://dbpedia.org/resource/French_600_Series_submarines", "http://dbpedia.org/resource/French_F4_Championship", "http://dbpedia.org/resource/French_Fields", "http://dbpedia.org/resource/French_Food_at_Home", "http://dbpedia.org/resource/French_Republican_Calendar", "http://dbpedia.org/resource/French_Revolutionary_Wars", "http://dbpedia.org/resource/French_Silk_(film)", "http://dbpedia.org/resource/French_and_Saunders", "http://dbpedia.org/resource/French_diaspora", "http://dbpedia.org/resource/French_for_Love", "http://dbpedia.org/resource/French_in_Action", "http://dbpedia.org/resource/Frenemies:_Loyalty_Turned_Lethal", "http://dbpedia.org/resource/Frenemies_(film)", "http://dbpedia.org/resource/Frequency_(TV_series)", "http://dbpedia.org/resource/Fresh,_Fried_and_Crispy", "http://dbpedia.org/resource/Fresh_Air", "http://dbpedia.org/resource/Fresh_Beat_Band_of_Spies", "http://dbpedia.org/resource/Fresh_Fields", "http://dbpedia.org/resource/Fresh_Gear", "http://dbpedia.org/resource/Fresh_Meat_(TV_series)", "http://dbpedia.org/resource/Fresh_Off_the_Boat", "http://dbpedia.org/resource/Fresh_Water_(film)", "http://dbpedia.org/resource/Fresh_with_the_Australian_Women's_Weekly", "http://dbpedia.org/resource/Freshers_(British_TV_series)", "http://dbpedia.org/resource/Freshers_(Indian_TV_series)", "http://dbpedia.org/resource/Freshers_(TV_series)", "http://dbpedia.org/resource/Freshly_Squeezed", "http://dbpedia.org/resource/Freshman_Dorm", "http://dbpedia.org/resource/Freshman_Father", "http://dbpedia.org/resource/Freshwater_Blue", "http://dbpedia.org/resource/Fresno_(miniseries)", "http://dbpedia.org/resource/Freud_(TV_series)", "http://dbpedia.org/resource/Freunde_(TV_series)", "http://dbpedia.org/resource/Frida,_en_trotj\u00e4narinna", "http://dbpedia.org/resource/Friday_Download", "http://dbpedia.org/resource/Friday_Island_(TV_series)", "http://dbpedia.org/resource/Friday_Joy_Package", "http://dbpedia.org/resource/Friday_Live", "http://dbpedia.org/resource/Friday_Night!_with_Ralph_Benmergui", "http://dbpedia.org/resource/Friday_Night,_Saturday_Morning", "http://dbpedia.org/resource/Friday_Night_Baseball", "http://dbpedia.org/resource/Friday_Night_Dinner", "http://dbpedia.org/resource/Friday_Night_Football_(AFL)", "http://dbpedia.org/resource/Friday_Night_Football_(NRL)", "http://dbpedia.org/resource/Friday_Night_Footy", "http://dbpedia.org/resource/Friday_Night_Games", "http://dbpedia.org/resource/Friday_Night_Lights_(TV_series)", "http://dbpedia.org/resource/Friday_Night_Lights_(season_3)", "http://dbpedia.org/resource/Friday_Night_Lights_(season_5)", "http://dbpedia.org/resource/Friday_Night_Lights_Out", "http://dbpedia.org/resource/Friday_Night_Tykes", "http://dbpedia.org/resource/Friday_Night_Videos", "http://dbpedia.org/resource/Friday_Night_with_Jonathan_Ross", "http://dbpedia.org/resource/Friday_on_My_Mind_(miniseries)", "http://dbpedia.org/resource/Friday_the_13th:_The_Series", "http://dbpedia.org/resource/Fridays_(TV_series)", "http://dbpedia.org/resource/Fridge_Wars", "http://dbpedia.org/resource/Fried_(2015_TV_series)", "http://dbpedia.org/resource/Friedenstag", "http://dbpedia.org/resource/Friend,_Our_Legend", "http://dbpedia.org/resource/Friend.ship_with_Krist-Singto", "http://dbpedia.org/resource/Friend_Club", "http://dbpedia.org/resource/Friend_Zone_(TV_series)", "http://dbpedia.org/resource/Friend_Zone_2:_Dangerous_Area", "http://dbpedia.org/resource/Friend_or_Foe%3F_(game_show)", "http://dbpedia.org/resource/Friendly_Driver", "http://dbpedia.org/resource/Friendly_Fire_(1979_film)", "http://dbpedia.org/resource/Friendly_Fire_(TV_series)", "http://dbpedia.org/resource/Friendly_Fire_(event)", "http://dbpedia.org/resource/Friendly_Neighborhood_Spider-Man", "http://dbpedia.org/resource/Friendly_Persuasion_(1975_film)", "http://dbpedia.org/resource/Friends", "http://dbpedia.org/resource/Friends:_Conditions_Apply", "http://dbpedia.org/resource/Friends:_The_Reunion", "http://dbpedia.org/resource/Friends_&_Enemies", "http://dbpedia.org/resource/Friends_'Til_the_End", "http://dbpedia.org/resource/Friends_(1979_TV_series)", "http://dbpedia.org/resource/Friends_(2002_TV_series)", "http://dbpedia.org/resource/Friends_(2021_TV_program)", "http://dbpedia.org/resource/Friends_(Polish_TV_series)", "http://dbpedia.org/resource/Friends_(season_1)", "http://dbpedia.org/resource/Friends_(season_10)", "http://dbpedia.org/resource/Friends_(season_2)", "http://dbpedia.org/resource/Friends_(season_3)", "http://dbpedia.org/resource/Friends_(season_4)", "http://dbpedia.org/resource/Friends_(season_5)", "http://dbpedia.org/resource/Friends_(season_6)", "http://dbpedia.org/resource/Friends_(season_7)", "http://dbpedia.org/resource/Friends_(season_8)", "http://dbpedia.org/resource/Friends_(season_9)", "http://dbpedia.org/resource/Friends_After_3.11", "http://dbpedia.org/resource/Friends_Again_(TV_series)", "http://dbpedia.org/resource/Friends_Forever_(TV_series)", "http://dbpedia.org/resource/Friends_Like_These", "http://dbpedia.org/resource/Friends_and_Crocodiles", "http://dbpedia.org/resource/Friends_and_Heroes", "http://dbpedia.org/resource/Friends_and_Lovers_(TV_series)", "http://dbpedia.org/resource/Friends_from_College", "http://dbpedia.org/resource/Friends_of_God:_A_Road_Trip_with_Alexandra_Pelosi", "http://dbpedia.org/resource/Friends_of_the_People", "http://dbpedia.org/resource/Friends_to_Lovers%3F", "http://dbpedia.org/resource/Friends_with_Benefits_(TV_series)", "http://dbpedia.org/resource/Friends_with_Better_Lives", "http://dbpedia.org/resource/Friendzone_(TV_series)", "http://dbpedia.org/resource/Fries_with_That%3F", "http://dbpedia.org/resource/Frikjent", "http://dbpedia.org/resource/Fringe_(TV_series)", "http://dbpedia.org/resource/Frisky_Dingo", "http://dbpedia.org/resource/Fritz:_The_Walter_Mondale_Story", "http://dbpedia.org/resource/Frock_Me", "http://dbpedia.org/resource/Frog_&_Friends", "http://dbpedia.org/resource/Frog_(film)", "http://dbpedia.org/resource/Frog_Baseball", "http://dbpedia.org/resource/From_(TV_series)", "http://dbpedia.org/resource/From_All_of_Us_to_All_of_You", "http://dbpedia.org/resource/From_Beijing_to_Moscow", "http://dbpedia.org/resource/From_C_to_C:_Chinese_Canadian_Stories_of_Migration", "http://dbpedia.org/resource/From_Chao_Phraya_to_Irrawaddy", "http://dbpedia.org/resource/From_Cradle_to_Stage_(TV_series)", "http://dbpedia.org/resource/From_Darkness", "http://dbpedia.org/resource/From_Dusk_till_Dawn:_The_Series", "http://dbpedia.org/resource/From_G's_to_Gents", "http://dbpedia.org/resource/From_Hand_to_Art", "http://dbpedia.org/resource/From_Here_on_OUT", "http://dbpedia.org/resource/From_Here_to_Eternity_(miniseries)", "http://dbpedia.org/resource/From_Kobe", "http://dbpedia.org/resource/From_Now_On,_Showtime!", "http://dbpedia.org/resource/From_Out_of_the_Rain", "http://dbpedia.org/resource/From_Raxacoricofallapatorius_with_Love", "http://dbpedia.org/resource/From_Scratch_(TV_series)", "http://dbpedia.org/resource/From_Six_to_Ten", "http://dbpedia.org/resource/From_Star_Wars_to_Jedi:_The_Making_of_a_Saga", "http://dbpedia.org/resource/From_There_to_Here", "http://dbpedia.org/resource/From_These_Roots", "http://dbpedia.org/resource/From_a_Bird's_Eye_View", "http://dbpedia.org/resource/From_the_Basement", "http://dbpedia.org/resource/From_the_Earth_to_the_Moon_(miniseries)", "http://dbpedia.org/resource/From_the_Ground_Up_with_Debbie_Travis", "http://dbpedia.org/resource/From_the_Heart_(TV_campaign)", "http://dbpedia.org/resource/From_the_House_of_the_Dead", "http://dbpedia.org/resource/From_the_Mixed-Up_Files_of_Mrs._Basil_E._Frankweiler_(1995_film)", "http://dbpedia.org/resource/From_the_Vault_(Magic:_The_Gathering)", "http://dbpedia.org/resource/Fromage", "http://dbpedia.org/resource/Front_Page_Challenge", "http://dbpedia.org/resource/Front_Page_Detective", "http://dbpedia.org/resource/Front_Row_(TV_program)", "http://dbpedia.org/resource/Front_Row_Center", "http://dbpedia.org/resource/Front_Street_Block", "http://dbpedia.org/resource/Front_and_Center", "http://dbpedia.org/resource/Front_and_Centre", "http://dbpedia.org/resource/Frontier_(2016_TV_series)", "http://dbpedia.org/resource/Frontier_Circus", "http://dbpedia.org/resource/Frontier_Doctor", "http://dbpedia.org/resource/Frontier_Gentleman", "http://dbpedia.org/resource/Frontier_House", "http://dbpedia.org/resource/Frontier_Justice_(TV_series)", "http://dbpedia.org/resource/Frontier_Series", "http://dbpedia.org/resource/Frontier_Theatre", "http://dbpedia.org/resource/Frontiers_(1996_TV_series)", "http://dbpedia.org/resource/Frontline_(American_TV_program)", "http://dbpedia.org/resource/Frontline_(Australian_TV_series)", "http://dbpedia.org/resource/Frontline_Pilipinas", "http://dbpedia.org/resource/Frontotemporal_dementia", "http://dbpedia.org/resource/Frontpage:_Ulat_ni_Mel_Tiangco", "http://dbpedia.org/resource/Frontpage_(TV_series)", "http://dbpedia.org/resource/Frosty's_Winter_Wonderland", "http://dbpedia.org/resource/Frosty_Returns", "http://dbpedia.org/resource/Frosty_the_Snowman_(TV_special)", "http://dbpedia.org/resource/Frozen_(franchise)", "http://dbpedia.org/resource/Frozen_Planet", "http://dbpedia.org/resource/Frozen_Stupid", "http://dbpedia.org/resource/Frozen_in_Love", "http://dbpedia.org/resource/Fruits_Basket", "http://dbpedia.org/resource/Fruity_Pie", "http://dbpedia.org/resource/Fry's_Planet_Word", "http://dbpedia.org/resource/Frying", "http://dbpedia.org/resource/Fr\u00e5ga_Lund", "http://dbpedia.org/resource/Fr\u00e9ttir", "http://dbpedia.org/resource/Fr\u00f6ken_Frimans_krig", "http://dbpedia.org/resource/Fu@K_I_Love_U", "http://dbpedia.org/resource/Fu_Bai_Fu_(TV_series)", "http://dbpedia.org/resource/Fuan_no_Tane", "http://dbpedia.org/resource/Fubar_Age_of_Computer", "http://dbpedia.org/resource/Fuck,_That's_Delicious", "http://dbpedia.org/resource/Fuck_Me_I'm_Famous", "http://dbpedia.org/resource/Fudge_(TV_series)", "http://dbpedia.org/resource/Fud\u00eancio_e_Seus_Amigos", "http://dbpedia.org/resource/Fuego_ardiente", "http://dbpedia.org/resource/Fuego_en_la_sangre_(TV_series)", "http://dbpedia.org/resource/Fuel_protests_in_the_United_Kingdom", "http://dbpedia.org/resource/Fugazi_Live_Series", "http://dbpedia.org/resource/Fugget_About_It", "http://dbpedia.org/resource/Fugitiva", "http://dbpedia.org/resource/Fugitive_Strike_Force", "http://dbpedia.org/resource/Fugitivos", "http://dbpedia.org/resource/Fugo_Keiji", "http://dbpedia.org/resource/Fugueuse", "http://dbpedia.org/resource/Fuji_GX680", "http://dbpedia.org/resource/Fujifilm_FinePix_HS10", "http://dbpedia.org/resource/Fujifilm_FinePix_S1800", "http://dbpedia.org/resource/Fujifilm_X-E2", "http://dbpedia.org/resource/Fujifilm_X-M1", "http://dbpedia.org/resource/Fujifilm_X-Pro1", "http://dbpedia.org/resource/Fujifilm_X-Pro2", "http://dbpedia.org/resource/Fujifilm_X-S1", "http://dbpedia.org/resource/Fujifilm_X-T1", "http://dbpedia.org/resource/Fujifilm_X-T10", "http://dbpedia.org/resource/Fujifilm_X70", "http://dbpedia.org/resource/Fujimi_Orchestra", "http://dbpedia.org/resource/Fujoshi_Rumi", "http://dbpedia.org/resource/Fukkashi", "http://dbpedia.org/resource/Fukuoka_Prize", "http://dbpedia.org/resource/Fukushima_Daiichi_nuclear_disaster_(Unit_1_Reactor)", "http://dbpedia.org/resource/Fukushima_Daiichi_nuclear_disaster_(Unit_2_Reactor)", "http://dbpedia.org/resource/Fukushima_Daiichi_nuclear_disaster_(Unit_3_Reactor)", "http://dbpedia.org/resource/Fukushima_Daiichi_nuclear_disaster_casualties", "http://dbpedia.org/resource/Ful_Haus", "http://dbpedia.org/resource/Fuldamobil", "http://dbpedia.org/resource/Full-Court_Miracle", "http://dbpedia.org/resource/Full_Body_Massage", "http://dbpedia.org/resource/Full_Circle_(1960_TV_series)", "http://dbpedia.org/resource/Full_Circle_(2013_TV_series)", "http://dbpedia.org/resource/Full_Circle_(TV_series)", "http://dbpedia.org/resource/Full_Circle_with_Michael_Palin", "http://dbpedia.org/resource/Full_Eclipse", "http://dbpedia.org/resource/Full_English_(TV_series)", "http://dbpedia.org/resource/Full_Force_Nature", "http://dbpedia.org/resource/Full_Frontal_(Australian_TV_series)", "http://dbpedia.org/resource/Full_Frontal_Fashion", "http://dbpedia.org/resource/Full_Frontal_with_Samantha_Bee", "http://dbpedia.org/resource/Full_Frys", "http://dbpedia.org/resource/Full_House", "http://dbpedia.org/resource/Full_House_(Armenian_TV_series)", "http://dbpedia.org/resource/Full_House_(British_TV_series)", "http://dbpedia.org/resource/Full_House_(Philippine_TV_series)", "http://dbpedia.org/resource/Full_House_(South_Korean_TV_series)", "http://dbpedia.org/resource/Full_House_(manhwa)", "http://dbpedia.org/resource/Full_House_(season_8)", "http://dbpedia.org/resource/Full_House_Take_2", "http://dbpedia.org/resource/Full_House_Tonight", "http://dbpedia.org/resource/Full_Measure_with_Sharyl_Attkisson", "http://dbpedia.org/resource/Full_Metal_Challenge", "http://dbpedia.org/resource/Full_Metal_Jousting", "http://dbpedia.org/resource/Full_Moon_Over_Miami", "http://dbpedia.org/resource/Full_Out", "http://dbpedia.org/resource/Full_Stretch", "http://dbpedia.org/resource/Full_Swing_(TV_series)", "http://dbpedia.org/resource/Full_Swing_(game_show)", "http://dbpedia.org/resource/Full_Tension", "http://dbpedia.org/resource/Full_Throttle_Girl", "http://dbpedia.org/resource/Full_Throttle_Saloon", "http://dbpedia.org/resource/Fuller_House_(TV_series)", "http://dbpedia.org/resource/Fullmetal_Alchemist", "http://dbpedia.org/resource/Fully_Booked", "http://dbpedia.org/resource/Fully_Integrated_Robotised_Engine", "http://dbpedia.org/resource/Fun_Factory_(TV_series)", "http://dbpedia.org/resource/Fun_Farm", "http://dbpedia.org/resource/Fun_House_(American_game_show)", "http://dbpedia.org/resource/Fun_House_(British_game_show)", "http://dbpedia.org/resource/Fun_Khana", "http://dbpedia.org/resource/Fun_School", "http://dbpedia.org/resource/Fun_Song_Factory", "http://dbpedia.org/resource/Fun_Time_(TV_program)", "http://dbpedia.org/resource/Fun_Time_(TV_series)", "http://dbpedia.org/resource/Fun_at_the_Funeral_Parlour", "http://dbpedia.org/resource/Fun_with_Charades", "http://dbpedia.org/resource/Fun_with_Frith", "http://dbpedia.org/resource/Funday_PawPet_Show", "http://dbpedia.org/resource/Funding_Together", "http://dbpedia.org/resource/Funhit_Mein_Jaari", "http://dbpedia.org/resource/Funjabbi_Chak_De", "http://dbpedia.org/resource/Funk_Flex_Full_Throttle", "http://dbpedia.org/resource/Funkstreife_Isar_12", "http://dbpedia.org/resource/Funky_Cops", "http://dbpedia.org/resource/Funky_Squad", "http://dbpedia.org/resource/Funky_Valley", "http://dbpedia.org/resource/Funland_(TV_series)", "http://dbpedia.org/resource/Funnel_Web", "http://dbpedia.org/resource/Funniest_Wins", "http://dbpedia.org/resource/Funny_Business_(TV_series)", "http://dbpedia.org/resource/Funny_Farm_(TV_series)", "http://dbpedia.org/resource/Funny_Farm_(play)", "http://dbpedia.org/resource/Funny_Girls_(TV_series)", "http://dbpedia.org/resource/Funny_Ka,_Pare_Ko", "http://dbpedia.org/resource/Funny_Man_(TV_series)", "http://dbpedia.org/resource/Funny_Nights_with_Pearle_Maaney", "http://dbpedia.org/resource/Funny_Pets", "http://dbpedia.org/resource/Funny_You_Should_Ask_(1968_game_show)", "http://dbpedia.org/resource/Funny_You_Should_Ask_(2017_game_show)", "http://dbpedia.org/resource/Funny_or_Die_Presents", "http://dbpedia.org/resource/Funny_or_Die_Presents:_America's_Next_Weatherman", "http://dbpedia.org/resource/Funnybones", "http://dbpedia.org/resource/Funtastic_Quiz", "http://dbpedia.org/resource/Fuori_corso", "http://dbpedia.org/resource/Fuoriclasse", "http://dbpedia.org/resource/Fur_&_Feather", "http://dbpedia.org/resource/Fur_TV", "http://dbpedia.org/resource/Furaana_Dheynan", "http://dbpedia.org/resource/Furo_MTV", "http://dbpedia.org/resource/Furongian", "http://dbpedia.org/resource/Further_Adventures_of_Lucky_Jim", "http://dbpedia.org/resource/Furuhata_Ninzabur\u014d", "http://dbpedia.org/resource/Fury_(American_TV_series)", "http://dbpedia.org/resource/Fury_(Russian_TV_series)", "http://dbpedia.org/resource/Fury_in_Petticoats", "http://dbpedia.org/resource/Furze_World_Wonders", "http://dbpedia.org/resource/Fushigi_Y\u00fbgi", "http://dbpedia.org/resource/Futaba-kun_Change!", "http://dbpedia.org/resource/Futakoi_Alternative", "http://dbpedia.org/resource/Futbolilits", "http://dbpedia.org/resource/Futmalls", "http://dbpedia.org/resource/Futurama", "http://dbpedia.org/resource/Futurama_(season_5)", "http://dbpedia.org/resource/Future-Worm!", "http://dbpedia.org/resource/Future_Boy_Conan", "http://dbpedia.org/resource/Future_Cop_(TV_series)", "http://dbpedia.org/resource/Future_Diary", "http://dbpedia.org/resource/Future_Fantastic", "http://dbpedia.org/resource/Future_GPX_Cyber_Formula", "http://dbpedia.org/resource/Future_GPX_Cyber_Formula_SIN", "http://dbpedia.org/resource/Future_Lovers_(manga)", "http://dbpedia.org/resource/Future_Man_(TV_series)", "http://dbpedia.org/resource/Future_Shock_(TV_series)", "http://dbpedia.org/resource/Future_Stars", "http://dbpedia.org/resource/Future_Weapons", "http://dbpedia.org/resource/Futuresport", "http://dbpedia.org/resource/Futz!", "http://dbpedia.org/resource/Fuun_Lion-Maru", "http://dbpedia.org/resource/Fuzzbucket", "http://dbpedia.org/resource/Fu\u00dfballtrainer_Wulff", "http://dbpedia.org/resource/F\u00e1brica_de_sue\u00f1os", "http://dbpedia.org/resource/F\u00e1ilte_Towers", "http://dbpedia.org/resource/F\u00e9lix_(TV_series)", "http://dbpedia.org/resource/F\u00edsica_o_Qu\u00edmica", "http://dbpedia.org/resource/F\u00edsica_o_Qu\u00edmica:_El_reencuentro", "http://dbpedia.org/resource/F\u00f3rmula_Truck", "http://dbpedia.org/resource/F\u00f3stbr\u00e6\u00f0ur", "http://dbpedia.org/resource/F\u00f6rsta_K\u00e4rleken", "http://dbpedia.org/resource/F\u00f8rstegangstjenesten", "http://dbpedia.org/resource/F\u00fatbol_Picante", "http://dbpedia.org/resource/F\u00fcr_alle_F\u00e4lle_Stefanie", "http://dbpedia.org/resource/F\u0131r\u0131ldak_Ailesi", "http://dbpedia.org/resource/F\u016bma_no_Kojir\u014d", "http://dbpedia.org/resource/F\u016brin_Kazan_(TV_series)", "http://dbpedia.org/resource/G-Force:_Guardians_of_Space", "http://dbpedia.org/resource/G-Men_'75", "http://dbpedia.org/resource/G-On_Riders", "http://dbpedia.org/resource/G-Saviour", "http://dbpedia.org/resource/G-Spot_(TV_series)", "http://dbpedia.org/resource/G-Star", "http://dbpedia.org/resource/G-Taste", "http://dbpedia.org/resource/G-mik", "http://dbpedia.org/resource/G.B.H._(TV_series)", "http://dbpedia.org/resource/G.D.O.D._(Get_Dough_or_Die)", "http://dbpedia.org/resource/G.I._Joe:_A_Real_American_Hero_(1983_TV_series)", "http://dbpedia.org/resource/G.I._Joe:_A_Real_American_Hero_(1989_TV_series)", "http://dbpedia.org/resource/G.I._Joe:_Renegades", "http://dbpedia.org/resource/G.I._Joe:_Resolute", "http://dbpedia.org/resource/G.I._Joe_(film_series)", "http://dbpedia.org/resource/G.I._Joe_Extreme", "http://dbpedia.org/resource/G.P.", "http://dbpedia.org/resource/G.R.I.N.D._Get_Ready_It's_a_New_Day", "http://dbpedia.org/resource/G4's_Training_Camp", "http://dbpedia.org/resource/G4_Underground", "http://dbpedia.org/resource/G4tv.com_(TV_series)", "http://dbpedia.org/resource/GAA..._(TV_programme)", "http://dbpedia.org/resource/GAA_Beo", "http://dbpedia.org/resource/GAZ_Sobol", "http://dbpedia.org/resource/GA_Geijutsuka_Art_Design_Class", "http://dbpedia.org/resource/GB_Class_1", "http://dbpedia.org/resource/GB_Class_2", "http://dbpedia.org/resource/GCB_(TV_series)", "http://dbpedia.org/resource/GE_Genesis", "http://dbpedia.org/resource/GE_True", "http://dbpedia.org/resource/GE_\u2013_Good_Ending", "http://dbpedia.org/resource/GG_Bond", "http://dbpedia.org/resource/GIAT_30", "http://dbpedia.org/resource/GJ_Club", "http://dbpedia.org/resource/GLAAD_Media_Award", "http://dbpedia.org/resource/GLOW_(TV_series)", "http://dbpedia.org/resource/GMA3:_What_You_Need_To_Know", "http://dbpedia.org/resource/GMA_Balita", "http://dbpedia.org/resource/GMA_Headline_News", "http://dbpedia.org/resource/GMA_Network_News", "http://dbpedia.org/resource/GMA_News_Digest", "http://dbpedia.org/resource/GMA_News_Live", "http://dbpedia.org/resource/GMA_Regional_TV_Early_Edition", "http://dbpedia.org/resource/GMA_Regional_TV_Live!", "http://dbpedia.org/resource/GMA_Saturday/Sunday_Report", "http://dbpedia.org/resource/GMA_Supershow", "http://dbpedia.org/resource/GMA_Weekend_Report", "http://dbpedia.org/resource/GMTV", "http://dbpedia.org/resource/GMTV_News_(South)", "http://dbpedia.org/resource/GMT_(TV_programme)", "http://dbpedia.org/resource/GMT_(programme)", "http://dbpedia.org/resource/GM_TDH-4801_&_TDM-4801", "http://dbpedia.org/resource/GM_chassis", "http://dbpedia.org/resource/GP2_Asia_Series", "http://dbpedia.org/resource/GSG_9_\u2013_Ihr_Einsatz_ist_ihr_Leben", "http://dbpedia.org/resource/GSN_Live", "http://dbpedia.org/resource/GSN_Radio", "http://dbpedia.org/resource/GTK_(TV_series)", "http://dbpedia.org/resource/GT_Asia_Series", "http://dbpedia.org/resource/GT_Road_(TV_series)", "http://dbpedia.org/resource/GWR_1813_Class", "http://dbpedia.org/resource/GWR_2602_Class", "http://dbpedia.org/resource/GWR_360_Class", "http://dbpedia.org/resource/GWR_3700_Class", "http://dbpedia.org/resource/GWR_439_Class", "http://dbpedia.org/resource/GWR_455_Class", "http://dbpedia.org/resource/GWR_927_Class", "http://dbpedia.org/resource/G_Diaries", "http://dbpedia.org/resource/G_Hall_Thu", "http://dbpedia.org/resource/G_String_Divas", "http://dbpedia.org/resource/G_vs_E", "http://dbpedia.org/resource/Gaalivaana", "http://dbpedia.org/resource/Gaaner_Oparey", "http://dbpedia.org/resource/Gaano_Kadalas_ang_Minsan_(TV_series)", "http://dbpedia.org/resource/Gaatchora", "http://dbpedia.org/resource/Gabbar_Poonchwala", "http://dbpedia.org/resource/Gabby's_Dollhouse", "http://dbpedia.org/resource/Gabby_Duran_&_the_Unsittables", "http://dbpedia.org/resource/Gabriel's_Fire", "http://dbpedia.org/resource/Gabriel_Iglesias_Presents_Stand_Up_Revolution", "http://dbpedia.org/resource/Gabriel_y_Gabriela", "http://dbpedia.org/resource/Gabriela,_giros_del_destino", "http://dbpedia.org/resource/Gabriela_(1964_TV_series)", "http://dbpedia.org/resource/Gabriela_(1975_TV_series)", "http://dbpedia.org/resource/Gabriela_(2012_TV_series)", "http://dbpedia.org/resource/Gabrielle_(talk_show)", "http://dbpedia.org/resource/Gaby's_Xtraordinary_Files", "http://dbpedia.org/resource/Gachkouto", "http://dbpedia.org/resource/Gad_Guard", "http://dbpedia.org/resource/Gadget_&_the_Gadgetinis", "http://dbpedia.org/resource/Gadget_Boy_&_Heather", "http://dbpedia.org/resource/Gadget_Geeks", "http://dbpedia.org/resource/Gadget_Man", "http://dbpedia.org/resource/Gadgetman", "http://dbpedia.org/resource/Gaelic_calendar", "http://dbpedia.org/resource/Gag_Concert", "http://dbpedia.org/resource/Gag_Factor", "http://dbpedia.org/resource/Gagambino", "http://dbpedia.org/resource/Gaia_Symphony", "http://dbpedia.org/resource/Gaiji_Keisatsu", "http://dbpedia.org/resource/Gaiking", "http://dbpedia.org/resource/Gaj-class_tugboat", "http://dbpedia.org/resource/Gajab_Desh_Ki_Ajab_Kahaniyaan", "http://dbpedia.org/resource/Gaju_Bhai", "http://dbpedia.org/resource/Gakk\u014d_ja_Oshierarenai!", "http://dbpedia.org/resource/Gakk\u014d_no_Kaidan_(2015_TV_series)", "http://dbpedia.org/resource/Gakk\u014d_no_Kaidan_(novel_series)", "http://dbpedia.org/resource/Gakuen_Alice", "http://dbpedia.org/resource/Gakuen_Polizi", "http://dbpedia.org/resource/Gal_Circle", "http://dbpedia.org/resource/Gala_c\u01b0\u1eddi", "http://dbpedia.org/resource/Galactic_Empire_(series)", "http://dbpedia.org/resource/Galactic_Gale_Baxingar", "http://dbpedia.org/resource/Galactic_Whirlwind_Sasuraiger", "http://dbpedia.org/resource/Galactica_1980", "http://dbpedia.org/resource/Galacticast", "http://dbpedia.org/resource/Galactik_Football", "http://dbpedia.org/resource/Galapagos:_Beyond_Darwin", "http://dbpedia.org/resource/Galapagos_(1955_film)", "http://dbpedia.org/resource/Galapagos_3D", "http://dbpedia.org/resource/Galavant", "http://dbpedia.org/resource/Galaxy_Boy_Troop", "http://dbpedia.org/resource/Galaxy_Cyclone_Braiger", "http://dbpedia.org/resource/Galaxy_Fr\u00e4ulein_Yuna", "http://dbpedia.org/resource/Galaxy_Goof-Ups", "http://dbpedia.org/resource/Galaxy_High_School", "http://dbpedia.org/resource/Galaxy_Star", "http://dbpedia.org/resource/Galaxy_of_Fear", "http://dbpedia.org/resource/Galema:_Anak_ni_Zuma", "http://dbpedia.org/resource/Galette_des_rois", "http://dbpedia.org/resource/Galidor:_Defenders_of_the_Outer_Dimension", "http://dbpedia.org/resource/Galilei_Donna", "http://dbpedia.org/resource/Galileo_(German_TV_series)", "http://dbpedia.org/resource/Galileo_(Japanese_TV_series)", "http://dbpedia.org/resource/Galileo_Galilei_(opera)", "http://dbpedia.org/resource/Galis", "http://dbpedia.org/resource/Gallantry_(opera)", "http://dbpedia.org/resource/Gallery_(TV_series)", "http://dbpedia.org/resource/Gallery_Girls", "http://dbpedia.org/resource/Galli_Galli_Sim_Sim", "http://dbpedia.org/resource/Gallic_Wars", "http://dbpedia.org/resource/Gallipoli_(miniseries)", "http://dbpedia.org/resource/Galloping_Galaxies!", "http://dbpedia.org/resource/Gallowglass_(TV_series)", "http://dbpedia.org/resource/Galtar_and_the_Golden_Lance", "http://dbpedia.org/resource/Galti_Se_Mis-Tech", "http://dbpedia.org/resource/Gal\u00e1pagos_(2006_TV_series)", "http://dbpedia.org/resource/Gamane_Yaa", "http://dbpedia.org/resource/Gamaran", "http://dbpedia.org/resource/Gambit_(British_game_show)", "http://dbpedia.org/resource/Gambit_(game_show)", "http://dbpedia.org/resource/Gamble_on_Love", "http://dbpedia.org/resource/Game,_Set_and_Match", "http://dbpedia.org/resource/Game2:_Winter", "http://dbpedia.org/resource/Game60", "http://dbpedia.org/resource/GameCenter_CX", "http://dbpedia.org/resource/GameFace", "http://dbpedia.org/resource/GameTrailers_TV_with_Geoff_Keighley", "http://dbpedia.org/resource/Game_'N_Go", "http://dbpedia.org/resource/Game_Change_(film)", "http://dbpedia.org/resource/Game_Developers_Choice_Awards", "http://dbpedia.org/resource/Game_Grumps", "http://dbpedia.org/resource/Game_Ka_Na_Ba%3F", "http://dbpedia.org/resource/Game_Makers", "http://dbpedia.org/resource/Game_Night_(web_series)", "http://dbpedia.org/resource/Game_On!_(2020_game_show)", "http://dbpedia.org/resource/Game_On:_A_Comedy_Crossover_Event", "http://dbpedia.org/resource/Game_On_(2002_game_show)", "http://dbpedia.org/resource/Game_On_(British_TV_series)", "http://dbpedia.org/resource/Game_On_(Canadian_TV_series)", "http://dbpedia.org/resource/Game_Over_(TV_series)", "http://dbpedia.org/resource/Game_Plan_(TV_series)", "http://dbpedia.org/resource/Game_Prattana", "http://dbpedia.org/resource/Game_Rai_Game_Rak", "http://dbpedia.org/resource/Game_Shakers", "http://dbpedia.org/resource/Game_Show_Yoo_Hee_Nak_Rak", "http://dbpedia.org/resource/Game_Show_in_My_Head", "http://dbpedia.org/resource/Game_for_a_Laugh", "http://dbpedia.org/resource/Game_ng_Bayan", "http://dbpedia.org/resource/Game_of_Arms", "http://dbpedia.org/resource/Game_of_Bros", "http://dbpedia.org/resource/Game_of_Clones", "http://dbpedia.org/resource/Game_of_Crowns", "http://dbpedia.org/resource/Game_of_Games", "http://dbpedia.org/resource/Game_of_Games_Suomi", "http://dbpedia.org/resource/Game_of_Homes", "http://dbpedia.org/resource/Game_of_Hunting", "http://dbpedia.org/resource/Game_of_Outlaws", "http://dbpedia.org/resource/Game_of_Silence_(American_TV_series)", "http://dbpedia.org/resource/Game_of_Talents", "http://dbpedia.org/resource/Game_of_Thrones", "http://dbpedia.org/resource/Game_of_Thrones_(season_2)", "http://dbpedia.org/resource/Gameboys", "http://dbpedia.org/resource/Gamebros", "http://dbpedia.org/resource/Gamekings", "http://dbpedia.org/resource/Gamepad_(TV_series)", "http://dbpedia.org/resource/Gameplay_of_The_Elder_Scrolls_series", "http://dbpedia.org/resource/Gamer's_Guide_to_Pretty_Much_Everything", "http://dbpedia.org/resource/Gamer.tv", "http://dbpedia.org/resource/GamesMaster", "http://dbpedia.org/resource/Games_Night", "http://dbpedia.org/resource/Games_People_Play_(1980_TV_series)", "http://dbpedia.org/resource/Games_People_Play_(2019_TV_series)", "http://dbpedia.org/resource/Games_Uplate_Live", "http://dbpedia.org/resource/Games_World", "http://dbpedia.org/resource/Gameshow_Marathon_(American_TV_series)", "http://dbpedia.org/resource/Gameshow_Marathon_(British_game_show)", "http://dbpedia.org/resource/Gamezville", "http://dbpedia.org/resource/Gamify_(TV_series)", "http://dbpedia.org/resource/Gaming_Show_(In_My_Parents'_Garage)", "http://dbpedia.org/resource/Gaming_Wall_Street", "http://dbpedia.org/resource/Gamini_(web_series)", "http://dbpedia.org/resource/Gamma_(miniseries)", "http://dbpedia.org/resource/Gamsung_Camping", "http://dbpedia.org/resource/Ganbare!!_Robocon", "http://dbpedia.org/resource/Ganbaron", "http://dbpedia.org/resource/Ganbatte_Ikimasshoi", "http://dbpedia.org/resource/Gandang_Gabi,_Vice!", "http://dbpedia.org/resource/Gandh_Phulancha_Gela_Sangun", "http://dbpedia.org/resource/Gandii_Baat", "http://dbpedia.org/resource/Gando_(TV_series)", "http://dbpedia.org/resource/Gand\u00eda_Shore", "http://dbpedia.org/resource/Gang_Related_(TV_series)", "http://dbpedia.org/resource/Gang_Starz", "http://dbpedia.org/resource/Ganga_(TV_series)", "http://dbpedia.org/resource/Ganga_Kii_Dheej", "http://dbpedia.org/resource/Ganga_Yamuna_Saraswati", "http://dbpedia.org/resource/Gangaa", "http://dbpedia.org/resource/Gangaram_(TV_series)", "http://dbpedia.org/resource/Ganges_(TV_series)", "http://dbpedia.org/resource/Gangland_(TV_series)", "http://dbpedia.org/resource/Gangland_Undercover", "http://dbpedia.org/resource/Ganglands", "http://dbpedia.org/resource/Gangnam_Beauty", "http://dbpedia.org/resource/Gangnam_Scandal", "http://dbpedia.org/resource/Gangs_of_Filmistaan", "http://dbpedia.org/resource/Gangs_of_Haseepur", "http://dbpedia.org/resource/Gangs_of_London_(TV_series)", "http://dbpedia.org/resource/Gangs_of_Oz", "http://dbpedia.org/resource/Gangsta_Granny_(film)", "http://dbpedia.org/resource/Gangstars", "http://dbpedia.org/resource/Gangster_(film_series)", "http://dbpedia.org/resource/Gangsters:_America's_Most_Evil", "http://dbpedia.org/resource/Gangsters_(TV_series)", "http://dbpedia.org/resource/Ganjina", "http://dbpedia.org/resource/Gank_Your_Heart_(TV_series)", "http://dbpedia.org/resource/Gankutsuou:_The_Count_of_Monte_Cristo", "http://dbpedia.org/resource/Ganti_(2005_TV_series)", "http://dbpedia.org/resource/Gantz", "http://dbpedia.org/resource/Gantz_(film)", "http://dbpedia.org/resource/Ganyan_Kita_Kamahal", "http://dbpedia.org/resource/Ganz_UV", "http://dbpedia.org/resource/Gap-dong", "http://dbpedia.org/resource/Gap_Year_(TV_series)", "http://dbpedia.org/resource/Garage_Club", "http://dbpedia.org/resource/Garage_Gold", "http://dbpedia.org/resource/Garage_Sale_Mystery", "http://dbpedia.org/resource/Garbage_Pail_Kids_(TV_series)", "http://dbpedia.org/resource/GardenSMART", "http://dbpedia.org/resource/Gardeners'_World", "http://dbpedia.org/resource/Gardening_Australia", "http://dbpedia.org/resource/Gardening_by_the_Yard", "http://dbpedia.org/resource/Gardening_for_Kids_with_Madi", "http://dbpedia.org/resource/Garfield's_Babes_and_Bullets", "http://dbpedia.org/resource/Garfield's_Feline_Fantasies", "http://dbpedia.org/resource/Garfield's_Halloween_Adventure", "http://dbpedia.org/resource/Garfield's_Thanksgiving", "http://dbpedia.org/resource/Garfield_Goes_Hollywood", "http://dbpedia.org/resource/Garfield_Goose_and_Friends", "http://dbpedia.org/resource/Garfield_Originals", "http://dbpedia.org/resource/Garfield_and_Friends", "http://dbpedia.org/resource/Garfield_in_Paradise", "http://dbpedia.org/resource/Garfield_in_the_Rough", "http://dbpedia.org/resource/Garfield_merchandise", "http://dbpedia.org/resource/Garfield_on_the_Town", "http://dbpedia.org/resource/Garfield_television_specials", "http://dbpedia.org/resource/Garfunkel_and_Oates_(TV_series)", "http://dbpedia.org/resource/Gargantia_on_the_Verdurous_Planet", "http://dbpedia.org/resource/Gargoyles_(TV_film)", "http://dbpedia.org/resource/Gargoyles_(TV_series)", "http://dbpedia.org/resource/Gariahater_Ganglords", "http://dbpedia.org/resource/Garnock_Way", "http://dbpedia.org/resource/Garo:_Makai_Retsuden", "http://dbpedia.org/resource/Garo:_Makai_Senki", "http://dbpedia.org/resource/Garo:_Makai_no_Hana", "http://dbpedia.org/resource/Garo:_The_Animation", "http://dbpedia.org/resource/Garo:_Yami_o_Terasu_Mono", "http://dbpedia.org/resource/Garo_(TV_series)", "http://dbpedia.org/resource/Garo_Special:_Beast_of_the_Demon_Night", "http://dbpedia.org/resource/Garrison's_Gorillas", "http://dbpedia.org/resource/Garrow's_Law", "http://dbpedia.org/resource/Garry_Halliday", "http://dbpedia.org/resource/Garth:_Live_at_Notre_Dame", "http://dbpedia.org/resource/Garth_Marenghi's_Darkplace", "http://dbpedia.org/resource/Garth_at_Wynn", "http://dbpedia.org/resource/Garvan\u2013Olin_Medal", "http://dbpedia.org/resource/Gary:_Tank_Commander", "http://dbpedia.org/resource/Gary_&_Mike", "http://dbpedia.org/resource/Gary_Busey:_Pet_Judge", "http://dbpedia.org/resource/Gary_Larson's_Tales_from_the_Far_Side", "http://dbpedia.org/resource/Gary_Spetze's_Painting_Wild_Places", "http://dbpedia.org/resource/Gary_Unmarried", "http://dbpedia.org/resource/Gary_Wright_(racing_driver)", "http://dbpedia.org/resource/Gary_and_His_Demons", "http://dbpedia.org/resource/Gary_the_Rat", "http://dbpedia.org/resource/Garz\u00f3n_vive", "http://dbpedia.org/resource/Gar\u014dden", "http://dbpedia.org/resource/Gasaraki", "http://dbpedia.org/resource/Gaslight_(1958_film)", "http://dbpedia.org/resource/Gaslit_(TV_series)", "http://dbpedia.org/resource/Gasoleros", "http://dbpedia.org/resource/Gaspard_and_Lisa_(TV_series)", "http://dbpedia.org/resource/Gata_Salvaje", "http://dbpedia.org/resource/Gatchaman_Crowds", "http://dbpedia.org/resource/Gate_(novel_series)", "http://dbpedia.org/resource/Gate_7", "http://dbpedia.org/resource/Gate_Keepers_21", "http://dbpedia.org/resource/Gatekeepers_(game_show)", "http://dbpedia.org/resource/Gates_(TV_series)", "http://dbpedia.org/resource/Gatha_Navnathanchi", "http://dbpedia.org/resource/Gathbandhan", "http://dbpedia.org/resource/Gattimela", "http://dbpedia.org/resource/Gattu_Battu", "http://dbpedia.org/resource/Gauguin_the_Savage", "http://dbpedia.org/resource/Gaunt's_Ghosts", "http://dbpedia.org/resource/Gav_Ha'Uma", "http://dbpedia.org/resource/Gavilan_(TV_series)", "http://dbpedia.org/resource/Gavilanes_(TV_series)", "http://dbpedia.org/resource/Gavin_&_Stacey", "http://dbpedia.org/resource/Gavin_Crawford's_Wild_West", "http://dbpedia.org/resource/Gawain_(opera)", "http://dbpedia.org/resource/Gawayn", "http://dbpedia.org/resource/Gay_Army", "http://dbpedia.org/resource/Gay_Life_(TV_series)", "http://dbpedia.org/resource/Gay_Meets_Girl", "http://dbpedia.org/resource/Gay_Mountain", "http://dbpedia.org/resource/Gay_News_and_Views", "http://dbpedia.org/resource/Gay_Republicans", "http://dbpedia.org/resource/Gay_USA", "http://dbpedia.org/resource/Gay_Weddings", "http://dbpedia.org/resource/Gay_for_Play_Game_Show_Starring_RuPaul", "http://dbpedia.org/resource/Gaya_Sa_Pelikula", "http://dbpedia.org/resource/Gayathri_(TV_series)", "http://dbpedia.org/resource/Gaybo's_Grumpy_Men", "http://dbpedia.org/resource/Gaybo_Laughs_Back", "http://dbpedia.org/resource/Gaycation_(TV_series)", "http://dbpedia.org/resource/Gayme_Show", "http://dbpedia.org/resource/Gaytime_TV", "http://dbpedia.org/resource/Gazette_(TV_series)", "http://dbpedia.org/resource/Gbanga", "http://dbpedia.org/resource/Gdgd_Fairies", "http://dbpedia.org/resource/GeTai_Challenge", "http://dbpedia.org/resource/Geantra\u00ed", "http://dbpedia.org/resource/Gears_and_Tears", "http://dbpedia.org/resource/Gears_of_War", "http://dbpedia.org/resource/Gece_G\u00fcnd\u00fcz", "http://dbpedia.org/resource/Gecko's_Garage", "http://dbpedia.org/resource/Geek_Charming", "http://dbpedia.org/resource/Geeking_Out", "http://dbpedia.org/resource/Geet_Dholi", "http://dbpedia.org/resource/Geet_\u2013_Hui_Sabse_Parayi", "http://dbpedia.org/resource/Geetha_(TV_series)", "http://dbpedia.org/resource/Geethanjali_(TV_series)", "http://dbpedia.org/resource/Gegen_den_Wind", "http://dbpedia.org/resource/Gehaktdag", "http://dbpedia.org/resource/Geharha:_The_Dark_and_Long_Haired_Monster", "http://dbpedia.org/resource/Gehraiyaan_(web_series)", "http://dbpedia.org/resource/Geiger\u2013Marsden_experiment", "http://dbpedia.org/resource/Gekiganger_III", "http://dbpedia.org/resource/Gekisou_Sentai_Carranger", "http://dbpedia.org/resource/Gelathi", "http://dbpedia.org/resource/Gellunu_Furaana", "http://dbpedia.org/resource/Gemilang_(TV_series)", "http://dbpedia.org/resource/Gemini_Division", "http://dbpedia.org/resource/Gemini_Home_Entertainment", "http://dbpedia.org/resource/Gemini_Knives", "http://dbpedia.org/resource/Gemini_Man_(TV_series)", "http://dbpedia.org/resource/Gemma_Collins:_Diva", "http://dbpedia.org/resource/Gemma_Collins:_Self-Harm_&_Me", "http://dbpedia.org/resource/Gems_(TV_series)", "http://dbpedia.org/resource/Gen:Lock", "http://dbpedia.org/resource/Gen_V", "http://dbpedia.org/resource/Gene_Autry's_Melody_Ranch", "http://dbpedia.org/resource/Gene_Simmons_Family_Jewels", "http://dbpedia.org/resource/Genealogy_Roadshow_(American_TV_series)", "http://dbpedia.org/resource/Geneforge_(series)", "http://dbpedia.org/resource/General's_Lady", "http://dbpedia.org/resource/General_Electric_Theater", "http://dbpedia.org/resource/General_Hospital", "http://dbpedia.org/resource/General_Hospital:_Night_Shift", "http://dbpedia.org/resource/General_Hospital:_Twist_of_Fate", "http://dbpedia.org/resource/General_Hospital_(British_TV_series)", "http://dbpedia.org/resource/General_Intercessions", "http://dbpedia.org/resource/General_Motors_50th_Anniversary_Show", "http://dbpedia.org/resource/General_Motors_60\u00b0_V6_engine", "http://dbpedia.org/resource/General_Motors_Theatre", "http://dbpedia.org/resource/General_Roman_Calendar", "http://dbpedia.org/resource/General_Rouge_no_Gaisen", "http://dbpedia.org/resource/General_and_I", "http://dbpedia.org/resource/Generalized_hypergeometric_function", "http://dbpedia.org/resource/Generation_(Canadian_TV_program)", "http://dbpedia.org/resource/Generation_(TV_series)", "http://dbpedia.org/resource/Generation_Cross", "http://dbpedia.org/resource/Generation_Cryo", "http://dbpedia.org/resource/Generation_Drag", "http://dbpedia.org/resource/Generation_Gap_(TV_series)", "http://dbpedia.org/resource/Generation_Gap_(game_show)", "http://dbpedia.org/resource/Generation_Gifted", "http://dbpedia.org/resource/Generation_Jets", "http://dbpedia.org/resource/Generation_Kill_(miniseries)", "http://dbpedia.org/resource/Generation_O!", "http://dbpedia.org/resource/Generation_War", "http://dbpedia.org/resource/Generation_X_(film)", "http://dbpedia.org/resource/Generations:_The_Legacy", "http://dbpedia.org/resource/Generations_(American_TV_series)", "http://dbpedia.org/resource/Generations_(South_African_TV_series)", "http://dbpedia.org/resource/Generator_Gawl", "http://dbpedia.org/resource/Generator_Rex", "http://dbpedia.org/resource/Genes_(game_show)", "http://dbpedia.org/resource/Genes_(season_2)", "http://dbpedia.org/resource/Geneshaft", "http://dbpedia.org/resource/Genesis:_The_Creation_and_the_Flood", "http://dbpedia.org/resource/Genesis_(TV_series)", "http://dbpedia.org/resource/Genesis_Climber_MOSPEADA", "http://dbpedia.org/resource/Genesis_II_(film)", "http://dbpedia.org/resource/Genesis_of_Aquarion", "http://dbpedia.org/resource/Genetics_Society_of_America_Medal", "http://dbpedia.org/resource/Genghis_Khan_(2004_TV_series)", "http://dbpedia.org/resource/Genghis_Khan_(ATV_TV_series)", "http://dbpedia.org/resource/Genghis_Khan_(TVB_TV_series)", "http://dbpedia.org/resource/Genghis_Khan_(TV_programme)", "http://dbpedia.org/resource/Genie_in_the_House", "http://dbpedia.org/resource/Genista_Caves", "http://dbpedia.org/resource/Genius_(1999_film)", "http://dbpedia.org/resource/Genius_(American_TV_series)", "http://dbpedia.org/resource/Genius_(British_TV_series)", "http://dbpedia.org/resource/Genius_(TV_series)", "http://dbpedia.org/resource/Genius_(radio_series)", "http://dbpedia.org/resource/Genius_Junior", "http://dbpedia.org/resource/Genius_of_Britain", "http://dbpedia.org/resource/Geni\u015f_Aile", "http://dbpedia.org/resource/Genkaku_Picasso", "http://dbpedia.org/resource/Genoa_International_Boat_Show", "http://dbpedia.org/resource/Genocyber", "http://dbpedia.org/resource/Genseishin_Justirisers", "http://dbpedia.org/resource/Genshiken", "http://dbpedia.org/resource/Gens\u014d_Suikogaiden", "http://dbpedia.org/resource/Gente_(magazine)", "http://dbpedia.org/resource/Gente_bien_(TV_series)", "http://dbpedia.org/resource/Gente_de_Primera", "http://dbpedia.org/resource/Gente_di_mare_(TV_series)", "http://dbpedia.org/resource/Gente_sin_historia", "http://dbpedia.org/resource/Gentefied", "http://dbpedia.org/resource/Gentleman_Jack_(TV_series)", "http://dbpedia.org/resource/Gentleman_Thief_(2001_film)", "http://dbpedia.org/resource/Gentlemen_and_Players_(TV_series)", "http://dbpedia.org/resource/Geo_Cartoon", "http://dbpedia.org/resource/Geobreeders", "http://dbpedia.org/resource/Geoff_Lloyd_with_Annabel_Port", "http://dbpedia.org/resource/Geographers_on_Film", "http://dbpedia.org/resource/Geographically_Speaking", "http://dbpedia.org/resource/Geometry_Wars", "http://dbpedia.org/resource/Geordie_Racer", "http://dbpedia.org/resource/Geordie_Shore", "http://dbpedia.org/resource/Geordie_Shore_OGs", "http://dbpedia.org/resource/George_&_Alana", "http://dbpedia.org/resource/George_&_Paul", "http://dbpedia.org/resource/George_&_Tammy", "http://dbpedia.org/resource/George_(1972_TV_series)", "http://dbpedia.org/resource/George_(1993_TV_series)", "http://dbpedia.org/resource/George_Burns_Comedy_Week", "http://dbpedia.org/resource/George_Carlin's_American_Dream", "http://dbpedia.org/resource/George_Carlin_at_USC", "http://dbpedia.org/resource/George_Clarke's_Amazing_Spaces", "http://dbpedia.org/resource/George_H.W._Bush_(film)", "http://dbpedia.org/resource/George_Lopez_(TV_series)", "http://dbpedia.org/resource/George_Negus_Tonight", "http://dbpedia.org/resource/George_Orwell:_A_Life_in_Pictures", "http://dbpedia.org/resource/George_S._Patton's_speech_to_the_Third_Army", "http://dbpedia.org/resource/George_Shrinks", "http://dbpedia.org/resource/George_Stroumboulopoulos_Tonight", "http://dbpedia.org/resource/George_W._Beadle_Award", "http://dbpedia.org/resource/George_W._Bush_(film)", "http://dbpedia.org/resource/George_Wallace_(film)", "http://dbpedia.org/resource/George_Washington_(miniseries)", "http://dbpedia.org/resource/George_Washington_II:_The_Forging_of_a_Nation", "http://dbpedia.org/resource/George_and_Cecil", "http://dbpedia.org/resource/George_and_Leo", "http://dbpedia.org/resource/George_and_Martha", "http://dbpedia.org/resource/George_and_Mildred", "http://dbpedia.org/resource/George_and_the_Dragon_(TV_series)", "http://dbpedia.org/resource/George_of_the_Jungle", "http://dbpedia.org/resource/George_of_the_Jungle_(2007_TV_series)", "http://dbpedia.org/resource/Georgetown_University_Forum", "http://dbpedia.org/resource/Georgia's_Got_Talent", "http://dbpedia.org/resource/Georgia_O'Keeffe_(film)", "http://dbpedia.org/resource/Geostar", "http://dbpedia.org/resource/HGTV_Design_Star_All_Stars", "http://dbpedia.org/resource/HGTV_Star", "http://dbpedia.org/resource/HIStory_(web_series)", "http://dbpedia.org/resource/HIT_(TV_series)", "http://dbpedia.org/resource/HJ-10", "http://dbpedia.org/resource/HMS_Paradise", "http://dbpedia.org/resource/HM_Coastal_Motor_Boat_4", "http://dbpedia.org/resource/HP:_To_the_Highest_Level_Na!", "http://dbpedia.org/resource/HPI_(TV_series)", "http://dbpedia.org/resource/HP_Integrity_Servers", "http://dbpedia.org/resource/HP_Pavilion_TX1000_Series_Tablet_PC", "http://dbpedia.org/resource/HP_Pavilion_dv2000", "http://dbpedia.org/resource/HP_Pavilion_dv9700t", "http://dbpedia.org/resource/HP_TouchSmart", "http://dbpedia.org/resource/HS2000", "http://dbpedia.org/resource/HSH_Class_01", "http://dbpedia.org/resource/HSH_Class_T211.0", "http://dbpedia.org/resource/HTC_One_series", "http://dbpedia.org/resource/HUD_(TV_program)", "http://dbpedia.org/resource/H_(TV_series)", "http://dbpedia.org/resource/Ha'Nephilim", "http://dbpedia.org/resource/Ha-Chaim_Ze_Lo_Hacol", "http://dbpedia.org/resource/Ha-Chatzer_(TV_series)", "http://dbpedia.org/resource/Ha-Comedy_Store", "http://dbpedia.org/resource/Ha-Yeladim_Mi'Givat_Napoleon", "http://dbpedia.org/resource/HaBigbagim", "http://dbpedia.org/resource/HaDavar_HaGadol_HaBa", "http://dbpedia.org/resource/HaDugmaniot", "http://dbpedia.org/resource/HaMerotz_LaMillion", "http://dbpedia.org/resource/HaMerotz_LaMillion_1", "http://dbpedia.org/resource/HaMerotz_LaMillion_2", "http://dbpedia.org/resource/HaMerotz_LaMillion_3", "http://dbpedia.org/resource/HaMerotz_LaMillion_4", "http://dbpedia.org/resource/HaMis'ada_HaGdola", "http://dbpedia.org/resource/HaMisrad", "http://dbpedia.org/resource/HaPijamot", "http://dbpedia.org/resource/HaShir_Shelanu", "http://dbpedia.org/resource/HaShminiya", "http://dbpedia.org/resource/Ha_Ha_Hayop", "http://dbpedia.org/resource/Ha_llegado_una_intrusa", "http://dbpedia.org/resource/Haara_Dil", "http://dbpedia.org/resource/Haara_Kotiya", "http://dbpedia.org/resource/Haas_Das_se_Nuuskas", "http://dbpedia.org/resource/Haasaa", "http://dbpedia.org/resource/Haasil_(Indian_TV_series)", "http://dbpedia.org/resource/Haasil_(Pakistani_TV_series)", "http://dbpedia.org/resource/Habang_Kapiling_Ka", "http://dbpedia.org/resource/Habang_May_Buhay", "http://dbpedia.org/resource/Hablamos_Espa\u00f1ol", "http://dbpedia.org/resource/Hache_(TV_series)", "http://dbpedia.org/resource/Hacio", "http://dbpedia.org/resource/Hack_(TV_series)", "http://dbpedia.org/resource/Hack_My_Life", "http://dbpedia.org/resource/Hacka_Doll", "http://dbpedia.org/resource/Hacker's_Olympic_Rundown", "http://dbpedia.org/resource/Hacker_Time", "http://dbpedia.org/resource/Hacking_Democracy", "http://dbpedia.org/resource/Hacks_(TV_series)", "http://dbpedia.org/resource/Hadleigh_(TV_series)", "http://dbpedia.org/resource/Hadley!", "http://dbpedia.org/resource/Hadrian_(TV_programme)", "http://dbpedia.org/resource/Hadrian_(opera)", "http://dbpedia.org/resource/Haechi_(TV_series)", "http://dbpedia.org/resource/Hafenpolizei", "http://dbpedia.org/resource/Haft_Khan_(game_show)", "http://dbpedia.org/resource/Haft_Sang_(TV_series)", "http://dbpedia.org/resource/Haftarah", "http://dbpedia.org/resource/Hagen_(TV_series)", "http://dbpedia.org/resource/Haggard_(TV_series)", "http://dbpedia.org/resource/Haggis_Baggis", "http://dbpedia.org/resource/Haguregumo", "http://dbpedia.org/resource/Hahamakin_ang_Lahat", "http://dbpedia.org/resource/Hahamishia_Hakamerit", "http://dbpedia.org/resource/Haibane_Renmei", "http://dbpedia.org/resource/Hail_to_the_Chief_(TV_series)", "http://dbpedia.org/resource/Hailey_Dean_Mysteries", "http://dbpedia.org/resource/Hainan_Adventure_with_Nigel_Marven", "http://dbpedia.org/resource/Hainan_Kopi_Tales", "http://dbpedia.org/resource/Hair_(TV_series)", "http://dbpedia.org/resource/Hair_Battle_Spectacular", "http://dbpedia.org/resource/Hairspray:_The_School_Musical", "http://dbpedia.org/resource/Hairspray_Live!", "http://dbpedia.org/resource/Hairy_Bikers:_Route_66", "http://dbpedia.org/resource/Hairy_Bikers_(American_TV_series)", "http://dbpedia.org/resource/Hairy_Dan", "http://dbpedia.org/resource/Hairy_Jeremy", "http://dbpedia.org/resource/Haiti:_Where_Did_the_Money_Go", "http://dbpedia.org/resource/Haiwaan_:_The_Monster", "http://dbpedia.org/resource/Haiwan_(TV_series)", "http://dbpedia.org/resource/Haize_Hegoa_type_patrol_boat", "http://dbpedia.org/resource/Haja_Cora\u00e7\u00e3o", "http://dbpedia.org/resource/Hajime_no_Ippo", "http://dbpedia.org/resource/Haka_Life", "http://dbpedia.org/resource/Hakka_Hakki", "http://dbpedia.org/resource/Hakkenden:_Eight_Dogs_of_the_East", "http://dbpedia.org/resource/Hakuba_no_\u014cji-sama", "http://dbpedia.org/resource/Hakui_no_Namida", "http://dbpedia.org/resource/Hal_Lashwood's_Alabama_Jubilee", "http://dbpedia.org/resource/Hala_Khorshid", "http://dbpedia.org/resource/Halal-TV", "http://dbpedia.org/resource/Halal_Gurls", "http://dbpedia.org/resource/Halcyon_(TV_series)", "http://dbpedia.org/resource/Hale_and_Pace", "http://dbpedia.org/resource/Half-Life:_Full_Life_Consequences", "http://dbpedia.org/resource/Half-Life_(series)", "http://dbpedia.org/resource/Half-Moon_Friends", "http://dbpedia.org/resource/Half-Opened_Windows", "http://dbpedia.org/resource/Half_&_Half", "http://dbpedia.org/resource/Half_Cut_Tea", "http://dbpedia.org/resource/Half_Marriage_(TV_series)", "http://dbpedia.org/resource/Half_Moon_Investigations_(TV_series)", "http://dbpedia.org/resource/Half_Nelson_(TV_series)", "http://dbpedia.org/resource/Half_a_World_Away_(miniseries)", "http://dbpedia.org/resource/Halfway_Home_(TV_series)", "http://dbpedia.org/resource/Halfworlds", "http://dbpedia.org/resource/Halifax:_Retribution", "http://dbpedia.org/resource/Halifax_f.p.", "http://dbpedia.org/resource/Halik_(TV_series)", "http://dbpedia.org/resource/Halik_sa_Apoy", "http://dbpedia.org/resource/Halita", "http://dbpedia.org/resource/Halka", "http://dbpedia.org/resource/Halka_Na_Lo", "http://dbpedia.org/resource/Hall's_Pictorial_Weekly", "http://dbpedia.org/resource/Hallelujah!_(TV_series)", "http://dbpedia.org/resource/Hallmark_Channel_(Scandilux)", "http://dbpedia.org/resource/Hallmark_Hall_of_Fame", "http://dbpedia.org/resource/Hallo,_Onkel_Doc!", "http://dbpedia.org/resource/Hallo_K3_(TV_series)", "http://dbpedia.org/resource/Hallo_Spencer", "http://dbpedia.org/resource/Hallo_aus_Berlin", "http://dbpedia.org/resource/Halloween_Baking_Championship", "http://dbpedia.org/resource/Halloween_Is_Grinch_Night", "http://dbpedia.org/resource/Halloween_Wars", "http://dbpedia.org/resource/Halloween_solar_storms,_2003", "http://dbpedia.org/resource/Halloween_with_the_New_Addams_Family", "http://dbpedia.org/resource/Halloweentown_(film)", "http://dbpedia.org/resource/Halloweentown_High", "http://dbpedia.org/resource/Halloweentown_II:_Kalabar's_Revenge", "http://dbpedia.org/resource/Halo_(TV_series)", "http://dbpedia.org/resource/Halo_4:_Forward_Unto_Dawn", "http://dbpedia.org/resource/Halston_(miniseries)", "http://dbpedia.org/resource/Halt_and_Catch_Fire_(TV_series)", "http://dbpedia.org/resource/Haluatko_miljon\u00e4\u00e4riksi%3F", "http://dbpedia.org/resource/Halv_\u00e5tta_hos_mig", "http://dbpedia.org/resource/Halvseint", "http://dbpedia.org/resource/Ham_on_the_Street", "http://dbpedia.org/resource/Hama_Ekani_Kalaayahtakai", "http://dbpedia.org/resource/Hama_Governorate_clashes_(2011\u201312)", "http://dbpedia.org/resource/Hamaar_Sautan_Hamaar_Saheli", "http://dbpedia.org/resource/Hamaari_Beti_Raaj_Karegi", "http://dbpedia.org/resource/Hamari_Bahu_Silk", "http://dbpedia.org/resource/Hamari_Betiyoon_Ka_Vivaah", "http://dbpedia.org/resource/Hamari_Devrani", "http://dbpedia.org/resource/Hamari_Sister_Didi", "http://dbpedia.org/resource/Hamari_Wali_Good_News", "http://dbpedia.org/resource/Hamblen_Block", "http://dbpedia.org/resource/Hamburg_Ravensbr\u00fcck_trials", "http://dbpedia.org/resource/Hamburg_Transit", "http://dbpedia.org/resource/Hamdiu_&_Shyhretja", "http://dbpedia.org/resource/Hamelen_(TV_series)", "http://dbpedia.org/resource/Hamilton's_Pharmacopeia", "http://dbpedia.org/resource/Hamilton's_Quest", "http://dbpedia.org/resource/Hamilton_Farm_Petroglyphs", "http://dbpedia.org/resource/Hamish_&_Andy_(radio_show)", "http://dbpedia.org/resource/Hamish_Macbeth_(TV_series)", "http://dbpedia.org/resource/Hamish_and_Andy's_Gap_Year", "http://dbpedia.org/resource/Hamish_and_Andy's_\u201cPerfect\u201d_Holiday", "http://dbpedia.org/resource/Hamlet._XXI_Century", "http://dbpedia.org/resource/Hamlet_(1959_film)", "http://dbpedia.org/resource/Hamlet_(2009_film)", "http://dbpedia.org/resource/Hammer_House_of_Horror", "http://dbpedia.org/resource/Hammer_House_of_Mystery_and_Suspense", "http://dbpedia.org/resource/Hammer_of_the_Gods_(2009_film)", "http://dbpedia.org/resource/Hammerhead:_Shark_Frenzy", "http://dbpedia.org/resource/Hammerman", "http://dbpedia.org/resource/Hammertime", "http://dbpedia.org/resource/Hamon_ng_Kalikasan", "http://dbpedia.org/resource/Hampton_Court_(TV_series)", "http://dbpedia.org/resource/Hampton_Court_Palace_Flower_Show", "http://dbpedia.org/resource/Hamro_Team", "http://dbpedia.org/resource/Hamster_&_Gretel", "http://dbpedia.org/resource/Han_Liu_Bang", "http://dbpedia.org/resource/Hana-Kimi", "http://dbpedia.org/resource/Hana-Kimi_(TV_series)", "http://dbpedia.org/resource/Hana_Moyu", "http://dbpedia.org/resource/Hana_Yori_Dango_(TV_series)", "http://dbpedia.org/resource/Hana_Yori_Dango_Returns", "http://dbpedia.org/resource/Hana_no_Ran", "http://dbpedia.org/resource/Hana_no_Sh\u014dgai", "http://dbpedia.org/resource/Hana_no_Zubora-Meshi", "http://dbpedia.org/resource/Hana_to_Akuma", "http://dbpedia.org/resource/Hanaa_(web_series)", "http://dbpedia.org/resource/Hanako_to_Anne", "http://dbpedia.org/resource/Hanamaru_Kindergarten", "http://dbpedia.org/resource/Hanappe_Bazooka", "http://dbpedia.org/resource/Hanasakeru_Seish\u014dnen", "http://dbpedia.org/resource/Hanasaku_Iroha", "http://dbpedia.org/resource/Hanaukyo_Maid_Team", "http://dbpedia.org/resource/Hanayamata", "http://dbpedia.org/resource/Hanazakari_no_Kimitachi_e", "http://dbpedia.org/resource/Hanazakari_no_Kimitachi_e_(2011_TV_series)", "http://dbpedia.org/resource/Hanazakarino_Kimitachihe", "http://dbpedia.org/resource/Hanazuki:_Full_of_Treasures", "http://dbpedia.org/resource/Hanbun,_Aoi", "http://dbpedia.org/resource/Hanbun_no_Tsuki_ga_Noboru_Sora", "http://dbpedia.org/resource/Hancock_(1963_TV_series)", "http://dbpedia.org/resource/Hancock_and_Joan", "http://dbpedia.org/resource/Hand_In_Hand_(Singaporean_TV_series)", "http://dbpedia.org/resource/Hand_Maid_May", "http://dbpedia.org/resource/Hand_aufs_Herz", "http://dbpedia.org/resource/Hand_in_Hand:_A_Benefit_for_Hurricane_Relief", "http://dbpedia.org/resource/Hand_in_Hand_(Singaporean_TV_series)", "http://dbpedia.org/resource/Hand_of_God_(TV_series)", "http://dbpedia.org/resource/Handa_Cup", "http://dbpedia.org/resource/Handcrafted_America", "http://dbpedia.org/resource/Handel's_Last_Chance", "http://dbpedia.org/resource/Hands_(TV_series)", "http://dbpedia.org/resource/Hands_of_Murder", "http://dbpedia.org/resource/Hands_of_a_Murderer", "http://dbpedia.org/resource/Handsome_Boys_of_the_20th_Century", "http://dbpedia.org/resource/Handsome_Siblings_(TV_series)", "http://dbpedia.org/resource/Handsome_Tigers", "http://dbpedia.org/resource/Handu_pumpulla", "http://dbpedia.org/resource/Handy_Manny", "http://dbpedia.org/resource/Handyman_(TV_series)", "http://dbpedia.org/resource/Handyman_Superstar_Challenge", "http://dbpedia.org/resource/Hanekonma", "http://dbpedia.org/resource/Hanep_Buhay", "http://dbpedia.org/resource/Hang_Time_(TV_series)", "http://dbpedia.org/resource/Hang_Ups_(TV_series)", "http://dbpedia.org/resource/Hangar_17", "http://dbpedia.org/resource/Hangar_1:_The_UFO_Files", "http://dbpedia.org/resource/Hanggang_Kailan_(TV_series)", "http://dbpedia.org/resource/Hanggang_Makita_Kang_Muli", "http://dbpedia.org/resource/Hanggang_Saan", "http://dbpedia.org/resource/Hanggang_sa_Dulo_ng_Buhay_Ko", "http://dbpedia.org/resource/Hangin'_In", "http://dbpedia.org/resource/Hangin'_with_Mr._Cooper", "http://dbpedia.org/resource/Hanging_In", "http://dbpedia.org/resource/Hanging_With", "http://dbpedia.org/resource/Hanging_by_a_Thread_(1979_film)", "http://dbpedia.org/resource/Hanging_with_Hector", "http://dbpedia.org/resource/Hangman's_Graveyard", "http://dbpedia.org/resource/Hangman_Comics", "http://dbpedia.org/resource/Hangor_S-131", "http://dbpedia.org/resource/Hangout_with_Yoo", "http://dbpedia.org/resource/Hania_(TV_series)", "http://dbpedia.org/resource/Hanjuku_Hero", "http://dbpedia.org/resource/Hank_(1965_TV_series)", "http://dbpedia.org/resource/Hank_(2009_TV_series)", "http://dbpedia.org/resource/Hank_Parker's_Outdoor_Magazine", "http://dbpedia.org/resource/Hank_Zipzer's_Christmas_Catastrophe", "http://dbpedia.org/resource/Hank_Zipzer_(TV_series)", "http://dbpedia.org/resource/Hanks'_Dugouts", "http://dbpedia.org/resource/Hanna-Barbera's_50th:_A_Yabba_Dabba_Doo_Celebration", "http://dbpedia.org/resource/Hanna-Barbera's_All-Star_Comedy_Ice_Revue", "http://dbpedia.org/resource/Hanna-Barbera_Superstars_10", "http://dbpedia.org/resource/Hanna_(TV_series)", "http://dbpedia.org/resource/Hannah's_Law", "http://dbpedia.org/resource/Hannah_Montana", "http://dbpedia.org/resource/Hannah_Montana_(season_2)", "http://dbpedia.org/resource/Hannah_Montana_(season_4)", "http://dbpedia.org/resource/Hannay_(TV_series)", "http://dbpedia.org/resource/Hanna\u2013Barbera's_World_of_Super_Adventure", "http://dbpedia.org/resource/Hannibal_(2006_TV_film)", "http://dbpedia.org/resource/Hannibal_(TV_series)", "http://dbpedia.org/resource/Hannity", "http://dbpedia.org/resource/Hannity's_America", "http://dbpedia.org/resource/Hannity_&_Colmes", "http://dbpedia.org/resource/Hans_Brinker_and_the_Silver_Skates_(film)", "http://dbpedia.org/resource/Hans_G\u00fcnter_Winkler", "http://dbpedia.org/resource/Hans_Heiling", "http://dbpedia.org/resource/Hans_in_the_Kitchen", "http://dbpedia.org/resource/Hansel_and_Gretel_(1983_TV_special)", "http://dbpedia.org/resource/Hansel_and_Gretel_(opera)", "http://dbpedia.org/resource/Hansi_He_Hansi...Mil_Toh_Lein", "http://dbpedia.org/resource/Hanzawa_Naoki", "http://dbpedia.org/resource/Han\u0131m\u0131n_\u00c7iftli\u011fi_(TV_series)", "http://dbpedia.org/resource/Han\u2013Xiongnu_War", "http://dbpedia.org/resource/Hap_and_Leonard_(TV_series)", "http://dbpedia.org/resource/Hapi_House!", "http://dbpedia.org/resource/Hapi_ang_Buhay", "http://dbpedia.org/resource/Hapinas", "http://dbpedia.org/resource/Haplos_(TV_series)", "http://dbpedia.org/resource/Happening_'68", "http://dbpedia.org/resource/Happening_Now", "http://dbpedia.org/resource/Happily_Divorced", "http://dbpedia.org/resource/Happily_Ever_After:_Fairy_Tales_for_Every_Child", "http://dbpedia.org/resource/Happily_Ever_After_(1961_TV_series)", "http://dbpedia.org/resource/Happily_Ever_After_(2007_TV_series)", "http://dbpedia.org/resource/Happiness_(British_TV_series)", "http://dbpedia.org/resource/Happiness_(South_Korean_TV_series)", "http://dbpedia.org/resource/Happiness_Is_a_Warm_Blanket,_Charlie_Brown", "http://dbpedia.org/resource/Happiness_in_the_Wind", "http://dbpedia.org/resource/Happu_Ki_Ultan_Paltan", "http://dbpedia.org/resource/Happy!_(TV_series)", "http://dbpedia.org/resource/Happy's_Party", "http://dbpedia.org/resource/Happy_(1960_TV_series)", "http://dbpedia.org/resource/Happy_300_Days", "http://dbpedia.org/resource/Happy_Anniversary,_Charlie_Brown", "http://dbpedia.org/resource/Happy_Anniversary_and_Goodbye", "http://dbpedia.org/resource/Happy_Beach", "http://dbpedia.org/resource/Happy_Birthday,_Charlie_Brown", "http://dbpedia.org/resource/Happy_Birthday,_Garfield", "http://dbpedia.org/resource/Happy_Birthday_(TV_series)", "http://dbpedia.org/resource/Happy_Birthday_BBC_Two", "http://dbpedia.org/resource/Happy_Birthday_Oscar_Wilde", "http://dbpedia.org/resource/Happy_Cafe", "http://dbpedia.org/resource/Happy_Camp_(TV_series)", "http://dbpedia.org/resource/Happy_Can_Already!", "http://dbpedia.org/resource/Happy_Can_Already!_2", "http://dbpedia.org/resource/Happy_Can_Already!_3", "http://dbpedia.org/resource/Happy_Can_Already!_4", "http://dbpedia.org/resource/Happy_Days", "http://dbpedia.org/resource/Happy_Ending_(TV_series)", "http://dbpedia.org/resource/Happy_Endings:_Happy_Rides", "http://dbpedia.org/resource/Happy_Endings_(TV_series)", "http://dbpedia.org/resource/Happy_Endings_(season_1)", "http://dbpedia.org/resource/Happy_Ever_After_(British_TV_series)", "http://dbpedia.org/resource/Happy_Ever_After_(Hong_Kong_TV_series)", "http://dbpedia.org/resource/Happy_Face_Killer_(film)", "http://dbpedia.org/resource/Happy_Face_Murders", "http://dbpedia.org/resource/Happy_Families_(1985_TV_series)", "http://dbpedia.org/resource/Happy_Families_(1989_TV_series)", "http://dbpedia.org/resource/Happy_Family_(American_TV_series)", "http://dbpedia.org/resource/Happy_Family_(Singaporean_TV_series)", "http://dbpedia.org/resource/Happy_Family_Plan", "http://dbpedia.org/resource/Happy_Go_Lucky_(1961_TV_series)", "http://dbpedia.org/resource/Happy_Hollidays", "http://dbpedia.org/resource/Happy_Home_(TV_series)", "http://dbpedia.org/resource/Happy_Hour_(TV_series)", "http://dbpedia.org/resource/Happy_Hours_(TV_series)", "http://dbpedia.org/resource/Happy_Hustle_High", "http://dbpedia.org/resource/Happy_Jail", "http://dbpedia.org/resource/Happy_Kappy", "http://dbpedia.org/resource/Happy_Land_(TV_program)", "http://dbpedia.org/resource/Happy_Mania", "http://dbpedia.org/resource/Happy_Merry-Go-Round", "http://dbpedia.org/resource/Happy_Michelin_Kitchen", "http://dbpedia.org/resource/Happy_Monster_Band", "http://dbpedia.org/resource/Happy_Mother-in-Law,_Pretty_Daughter-in-Law", "http://dbpedia.org/resource/Happy_Ness:_The_Secret_of_the_Loch", "http://dbpedia.org/resource/Happy_New_Year,_America", "http://dbpedia.org/resource/Happy_New_Year,_Charlie_Brown!", "http://dbpedia.org/resource/Happy_Seven", "http://dbpedia.org/resource/Happy_Since_I_Met_You", "http://dbpedia.org/resource/Happy_Sisters", "http://dbpedia.org/resource/Happy_Sunday", "http://dbpedia.org/resource/Happy_Time_(TV_program)", "http://dbpedia.org/resource/Happy_Together_(American_TV_series)", "http://dbpedia.org/resource/Happy_Together_(Philippine_TV_series)", "http://dbpedia.org/resource/Happy_Together_(Russian_TV_series)", "http://dbpedia.org/resource/Happy_Together_(South_Korean_TV_series)", "http://dbpedia.org/resource/Happy_Together_(talk_show)", "http://dbpedia.org/resource/Happy_Town_(TV_series)", "http://dbpedia.org/resource/Happy_Tree_Friends", "http://dbpedia.org/resource/Happy_Tree_Friends_(TV_series)", "http://dbpedia.org/resource/Happy_Truck_HAPPinas", "http://dbpedia.org/resource/Happy_Truck_ng_Bayan", "http://dbpedia.org/resource/Happy_Valley_(TV_series)", "http://dbpedia.org/resource/Happy_Wife,_Happy_Life", "http://dbpedia.org/resource/Happy_Yipee_Yehey!", "http://dbpedia.org/resource/Happyish", "http://dbpedia.org/resource/Happyland_(TV_series)", "http://dbpedia.org/resource/Haq_Se", "http://dbpedia.org/resource/Haqeeqat_(2019_TV_series)", "http://dbpedia.org/resource/Haqeeqat_(Indian_TV_series)", "http://dbpedia.org/resource/Har_Ghar_Kuch_Kehta_Hai", "http://dbpedia.org/resource/Har_Mard_Ka_Dard", "http://dbpedia.org/resource/Har_Mushkil_Ka_Hal_Akbar_Birbal", "http://dbpedia.org/resource/Har_Shaakh_Pe_Ullu_Baithaa_Hai", "http://dbpedia.org/resource/Hara_Hara_Mahadeva_(TV_series)", "http://dbpedia.org/resource/Harald_Schmidt_(TV_series)", "http://dbpedia.org/resource/Harano_Sur_(TV_series)", "http://dbpedia.org/resource/Harapan_ng_Bise", "http://dbpedia.org/resource/Harbor_Command", "http://dbpedia.org/resource/Harbormaster_(TV_series)", "http://dbpedia.org/resource/Harbour_Lights_(TV_series)", "http://dbpedia.org/resource/Harbourmaster_(TV_series)", "http://dbpedia.org/resource/Hard_(TV_series)", "http://dbpedia.org/resource/Hard_Candy_Fitness", "http://dbpedia.org/resource/Hard_Cases_(TV_series)", "http://dbpedia.org/resource/Hard_Cell", "http://dbpedia.org/resource/Hard_Copy_(South_African_TV_series)", "http://dbpedia.org/resource/Hard_Copy_(TV_program)", "http://dbpedia.org/resource/Hard_Drinkin'_Lincoln", "http://dbpedia.org/resource/Hard_Fate", "http://dbpedia.org/resource/Hard_Knocks_(1987_TV_series)", "http://dbpedia.org/resource/Hard_Knocks_(2001_TV_series)", "http://dbpedia.org/resource/Hard_Luck_Duck", "http://dbpedia.org/resource/Hard_Quiz", "http://dbpedia.org/resource/Hard_Rock_Medical", "http://dbpedia.org/resource/Hard_Sell_(TV_series)", "http://dbpedia.org/resource/Hard_Spell", "http://dbpedia.org/resource/Hard_Spell_Abbey", "http://dbpedia.org/resource/Hard_Sun", "http://dbpedia.org/resource/Hard_Time_(film)", "http://dbpedia.org/resource/Hard_Time_on_Planet_Earth", "http://dbpedia.org/resource/Hard_Times_(British_TV_series)", "http://dbpedia.org/resource/Hard_Times_(Canadian_TV_series)", "http://dbpedia.org/resource/Hardball_(1989_TV_series)", "http://dbpedia.org/resource/Hardball_(1994_TV_series)", "http://dbpedia.org/resource/Hardball_(2019_TV_series)", "http://dbpedia.org/resource/Hardball_with_Chris_Matthews", "http://dbpedia.org/resource/Hardcase_(1972_film)", "http://dbpedia.org/resource/Hardcastle_and_McCormick", "http://dbpedia.org/resource/Hardcore_Pawn", "http://dbpedia.org/resource/Hardcore_Pawn:_Chicago", "http://dbpedia.org/resource/Hardcover_Mysteries_(TV_series)", "http://dbpedia.org/resource/Hardhat_and_Legs", "http://dbpedia.org/resource/Hardware_(TV_series)", "http://dbpedia.org/resource/Hardwell_On_Air", "http://dbpedia.org/resource/Hardwicke_House", "http://dbpedia.org/resource/Hardwood_Classics", "http://dbpedia.org/resource/Hardy_Bucks", "http://dbpedia.org/resource/Hare_and_Wolf", "http://dbpedia.org/resource/Hareport", "http://dbpedia.org/resource/Hari_Hari_Churiyaan", "http://dbpedia.org/resource/Hari_Mirchi_Lal_Mirchi", "http://dbpedia.org/resource/Harichandanam", "http://dbpedia.org/resource/Harina_de_otro_costal", "http://dbpedia.org/resource/Hark_at_Barker", "http://dbpedia.org/resource/Harke_Haldar", "http://dbpedia.org/resource/Harlan_County_War", "http://dbpedia.org/resource/Harlem_(TV_series)", "http://dbpedia.org/resource/Harlem_Beat", "http://dbpedia.org/resource/Harlem_Globetrotters_(TV_series)", "http://dbpedia.org/resource/Harlem_Heights_(TV_series)", "http://dbpedia.org/resource/Harlequin_Puppet_Theatre", "http://dbpedia.org/resource/Harlequinade_(Australian_TV_play)", "http://dbpedia.org/resource/Harley_Quinn_(TV_series)", "http://dbpedia.org/resource/Harley_Street_(TV_series)", "http://dbpedia.org/resource/Harley_and_the_Davidsons", "http://dbpedia.org/resource/Harlock_Saga", "http://dbpedia.org/resource/Harlots_(TV_series)", "http://dbpedia.org/resource/HarmonQuest", "http://dbpedia.org/resource/Harnessing_Peacocks_(film)", "http://dbpedia.org/resource/Harold_Robbins'_The_Survivors", "http://dbpedia.org/resource/Harold_Shipman:_Doctor_Death", "http://dbpedia.org/resource/Haromoni", "http://dbpedia.org/resource/Haromoni@", "http://dbpedia.org/resource/Harper's_Island", "http://dbpedia.org/resource/Harper_Valley_PTA_(TV_series)", "http://dbpedia.org/resource/Harphoul_Mohini", "http://dbpedia.org/resource/Harpies_(film)", "http://dbpedia.org/resource/Harpoon_(series)", "http://dbpedia.org/resource/Harriet's_Back_in_Town", "http://dbpedia.org/resource/Harriet_Lee_(TV_series)", "http://dbpedia.org/resource/Harriet_the_Spy:_Blog_Wars", "http://dbpedia.org/resource/Harriet_the_Spy_(TV_series)", "http://dbpedia.org/resource/Harrigan_(TV_series)", "http://dbpedia.org/resource/Harrigan_and_Son", "http://dbpedia.org/resource/Harris_Against_the_World", "http://dbpedia.org/resource/Harris_and_Company", "http://dbpedia.org/resource/Harrison_Bergeron_(film)", "http://dbpedia.org/resource/Harriswood_Crescent", "http://dbpedia.org/resource/Harrow_(TV_series)", "http://dbpedia.org/resource/Harry's_Game", "http://dbpedia.org/resource/Harry's_Girls", "http://dbpedia.org/resource/Harry's_Heroes", "http://dbpedia.org/resource/Harry's_Hong_Kong", "http://dbpedia.org/resource/Harry's_Law", "http://dbpedia.org/resource/Harry's_Mad", "http://dbpedia.org/resource/Harry's_Practice", "http://dbpedia.org/resource/Harry_&_Bunnie", "http://dbpedia.org/resource/Harry_&_Meghan:_Escaping_the_Palace", "http://dbpedia.org/resource/Harry_&_Paul", "http://dbpedia.org/resource/Harry_(American_TV_series)", "http://dbpedia.org/resource/Harry_(British_TV_series)", "http://dbpedia.org/resource/Harry_(game_show)", "http://dbpedia.org/resource/Harry_(talk_show)", "http://dbpedia.org/resource/Harry_Batt", "http://dbpedia.org/resource/Harry_Enfield's_Brand_Spanking_New_Show", "http://dbpedia.org/resource/Harry_Enfield_&_Chums", "http://dbpedia.org/resource/Harry_Hill's_Alien_Fun_Capsule", "http://dbpedia.org/resource/Harry_Hill's_Fruit_Corner", "http://dbpedia.org/resource/Harry_Hill's_Shark_Infested_Custard", "http://dbpedia.org/resource/Harry_Hill's_TV_Burp", "http://dbpedia.org/resource/Harry_Hill_(TV_series)", "http://dbpedia.org/resource/Harry_Loves_Lisa", "http://dbpedia.org/resource/Harry_O", "http://dbpedia.org/resource/Harry_Potter", "http://dbpedia.org/resource/Harry_Potter_(film_series)", "http://dbpedia.org/resource/Harry_Potter_20th_Anniversary:_Return_to_Hogwarts", "http://dbpedia.org/resource/Harry_and_Cosh", "http://dbpedia.org/resource/Harry_and_His_Bucket_Full_of_Dinosaurs", "http://dbpedia.org/resource/Harry_and_the_Hendersons_(TV_series)", "http://dbpedia.org/resource/Harry_and_the_Wrinklies_(TV_series)", "http://dbpedia.org/resource/Harry_the_Bunny", "http://dbpedia.org/resource/Harrying_of_the_North", "http://dbpedia.org/resource/Harsh_Realm", "http://dbpedia.org/resource/Hart_aber_fair", "http://dbpedia.org/resource/Hart_of_Dixie", "http://dbpedia.org/resource/Hart_to_Hart", "http://dbpedia.org/resource/Hart_van_Nederland", "http://dbpedia.org/resource/Hartbeat", "http://dbpedia.org/resource/Harts_of_the_West", "http://dbpedia.org/resource/Haru_(TV_series)", "http://dbpedia.org/resource/Haru_no_Sakamichi_(TV_series)"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/director> <http://dbpedia.org/resource/Michael_Deeley> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/foundation> <http://dbpedia.org/resource/Menlo_Park,_California> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}"}, "answers": ["6"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Edwin_of_Northumbria> <http://dbpedia.org/property/veneratedIn> ?uri } "}, "answers": ["http://dbpedia.org/resource/Anglican_Communion", "http://dbpedia.org/resource/Roman_Catholic_Church", "http://dbpedia.org/resource/Eastern_Orthodox_Church"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Picasso's_Last_Words_(Drink_to_Me)> <http://dbpedia.org/property/recorded> ?uri } "}, "answers": ["September\u2013October 1973"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pawan_Hans> <http://dbpedia.org/property/hubAirport> ?uri . <http://dbpedia.org/resource/India> <http://dbpedia.org/ontology/largestCity> ?uri} "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/South_Asia_Subregional_Economic_Cooperation> <http://dbpedia.org/property/memeber> ?uri . <http://dbpedia.org/resource/Aishath_Saffa> <http://dbpedia.org/ontology/nationality> ?uri} "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jimmy_Wales> <http://dbpedia.org/property/owner> ?uri . <http://dbpedia.org/resource/Latvian_Wikipedia> <http://dbpedia.org/ontology/board> ?uri} "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/network> <http://dbpedia.org/resource/NBC> . ?uri <http://dbpedia.org/property/notableWork> <http://dbpedia.org/resource/Frasier> . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/coach> <http://dbpedia.org/resource/Chip_Kelly> . ?x <http://dbpedia.org/ontology/debutTeam> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/designer> <http://dbpedia.org/resource/Malaysian_Highway_Authority> . ?x <http://dbpedia.org/property/crosses> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/speedway)> <http://dbpedia.org/resource/Ekstraliga> . ?x <http://dbpedia.org/property/nicknames> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/members> <http://dbpedia.org/resource/Bangladesh> . ?x <http://dbpedia.org/ontology/members> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/operator> <http://dbpedia.org/resource/Starwood_Capital_Group> . ?x <http://dbpedia.org/ontology/residence> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/architect> <http://dbpedia.org/resource/Philip_Webb> . ?x <http://dbpedia.org/property/builder> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ivanpah_Solar_Power_Facility> <http://dbpedia.org/property/owner> ?uri . <http://dbpedia.org/resource/Dart_(programming_language)> <http://dbpedia.org/ontology/developer> ?uri} "}, "answers": ["http://dbpedia.org/resource/Google"]}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/ingredient> <http://dbpedia.org/resource/Agaricus_bisporus> . ?x <http://dbpedia.org/property/erritory> ?uri }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/partner> <http://dbpedia.org/resource/Dolores_del_R\u00edo> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/placeOfBirth> <http://dbpedia.org/resource/Texarkana> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Band>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Rosie_Huntington-Whiteley> <http://dbpedia.org/ontology/partner> ?uri } "}, "answers": ["http://dbpedia.org/resource/Jason_Statham"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/draftTeam> <http://dbpedia.org/resource/Chicago_Bulls> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SportsTeam>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ganzert> . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/WineRegion>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Domenico_Modugno> <http://dbpedia.org/property/constituency> ?uri } "}, "answers": ["http://dbpedia.org/resource/Turin", "Rome IV"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Chicken_Little_(1943_film)> <http://dbpedia.org/ontology/producer> ?x . ?x <http://dbpedia.org/property/awards> ?uri . }"}, "answers": ["1", "3", "26", ""]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bottineau_LRT> <http://dbpedia.org/property/headquarters> ?x . ?x <http://dbpedia.org/ontology/publicTransitSystem> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/John_Speraw> <http://dbpedia.org/ontology/hometown> ?uri } "}, "answers": ["http://dbpedia.org/resource/California"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/fields> <http://dbpedia.org/resource/Philosophy> . ?x <http://dbpedia.org/ontology/discipline> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/doctoralStudents> <http://dbpedia.org/resource/\u0218erban_\u021ai\u021beica> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}"}, "answers": ["http://dbpedia.org/resource/Werner_Heisenberg"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Josef_Johansson> <http://dbpedia.org/property/hometown> ?uri . <http://dbpedia.org/resource/Nader_Guirat> <http://dbpedia.org/ontology/birthPlace> ?uri} "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Journal_of_Cerebral_Blood_Flow_&_Metabolism> <http://dbpedia.org/ontology/academicDiscipline> ?uri } "}, "answers": ["http://dbpedia.org/resource/Brain", "http://dbpedia.org/resource/Cerebral_circulation", "http://dbpedia.org/resource/Neuroimaging"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/David_Scherman> <http://dbpedia.org/ontology/training> ?uri } "}, "answers": ["http://dbpedia.org/resource/Dartmouth_College"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/portrayer> <http://dbpedia.org/resource/Sean_Young> . }"}, "answers": ["http://dbpedia.org/resource/List_of_Blade_Runner_characters", "http://dbpedia.org/resource/Chani_(character)", "http://dbpedia.org/resource/List_of_The_Young_and_the_Restless_characters_(2010)__Meggie_McClaine__1"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/producer> <http://dbpedia.org/resource/Peter-John_Vettese> . ?x <http://dbpedia.org/property/writer> ?uri . }"}, "answers": ["*Phil Bentley\n*Steve Hart\n*Jamie Hartman", "* Peter Cox\n* Peter-John Vettese", "Robin Gibb", "* Tina Arena\n* Peter-John Vettese", "http://dbpedia.org/resource/Candice_Alley", "Adam Argyle", "http://dbpedia.org/resource/Jenny_Lindfors", "http://dbpedia.org/resource/Spark_(singer)", "http://dbpedia.org/resource/Peter_Vettese"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/locatedInArea> <http://dbpedia.org/resource/Inyo_National_Forest> . ?uri <http://dbpedia.org/property/location> <http://dbpedia.org/resource/California> . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Piotr_Baron> <http://dbpedia.org/ontology/manager> ?x . ?x <http://dbpedia.org/property/nickname> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/debutTeam> <http://dbpedia.org/resource/Houston_Astros> . ?x <http://dbpedia.org/ontology/team> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/locatedInArea> <http://dbpedia.org/resource/Yosemite_National_Park> . ?x <http://dbpedia.org/ontology/firstAscentPerson> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/city> <http://dbpedia.org/resource/Nashville,_Tennessee> . ?x <http://dbpedia.org/property/licensees> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/division> <http://dbpedia.org/resource/Firmicutes> . ?uri <http://dbpedia.org/property/domain> <http://dbpedia.org/resource/Bacteria> . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/producer> <http://dbpedia.org/resource/Queer_as_Folk_(UK_TV_series)> . ?x <http://dbpedia.org/property/notableWork> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/doctoralStudents> <http://dbpedia.org/resource/R\u00f3bert_Erban> . ?uri <http://dbpedia.org/property/scientist> <http://dbpedia.org/resource/Erich_Bagge> . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bobby_Beasley> <http://dbpedia.org/ontology/trainer> ?uri . <http://dbpedia.org/resource/Martin_Molony> <http://dbpedia.org/property/race> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Brad_Paisley_discography> <http://dbpedia.org/property/artist> ?uri } "}, "answers": ["http://dbpedia.org/resource/Brad_Paisley", "Brad Paisley"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/doctoralAdvisor> <http://dbpedia.org/resource/Ernest_Rutherford> . }"}, "answers": ["17"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/quarterbacks> <http://dbpedia.org/resource/Quarterback> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/AmericanFootballPlayer>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Henri_Maspero> <http://dbpedia.org/ontology/academicAdvisor> ?uri } "}, "answers": ["http://dbpedia.org/resource/Sylvain_L\u00e9vi", "http://dbpedia.org/resource/\u00c9douard_Chavannes"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lydia_Clarke> <http://dbpedia.org/property/starring> ?uri . <http://dbpedia.org/resource/Soylent_Green> <http://dbpedia.org/ontology/spouse> ?uri} "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/FWD.us> <http://dbpedia.org/property/keyPeople> ?uri } "}, "answers": ["http://dbpedia.org/resource/Candice_Jones", "http://dbpedia.org/resource/Mark_Zuckerberg", "http://dbpedia.org/resource/Joe_Green_(entrepreneur)", ""]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Into_the_Dalek> <http://dbpedia.org/property/executiveProducer> ?uri } "}, "answers": ["http://dbpedia.org/resource/Brian_Minchin", "Steven Moffat"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/riverMouth> <http://dbpedia.org/resource/Arkansas> . ?x <http://dbpedia.org/property/cities> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/subsidiary> <http://dbpedia.org/resource/Sony_Corporation_shareholders> . ?uri <http://dbpedia.org/property/manufacturer> ?x . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/locationCountry> <http://dbpedia.org/resource/Ontario,_Indiana> . ?x <http://dbpedia.org/property/locations> ?uri }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/author> <http://dbpedia.org/resource/Wiktionary> . ?x <http://dbpedia.org/property/board> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ajahn_Sao_Kantas\u012blo> <http://dbpedia.org/property/nationality> ?uri } "}, "answers": ["http://dbpedia.org/resource/Thailand"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/director> <http://dbpedia.org/resource/Tim_Burton> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": ["22"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/notableInstruments> <http://dbpedia.org/resource/Drums> . ?x <http://dbpedia.org/ontology/genre> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Earl_B._Ruth> <http://dbpedia.org/ontology/appointer> ?uri } "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Samuel_Isham> <http://dbpedia.org/property/education> ?uri } "}, "answers": ["http://dbpedia.org/resource/Phillips_Academy"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Vargas_(state)> . ?x <http://dbpedia.org/property/debutteam> ?uri . }"}, "answers": ["St. Louis Cardinals", "Chicago White Sox", "http://dbpedia.org/resource/San_Francisco_Giants", "Houston Astros"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/Battle_of_France> . ?x <http://dbpedia.org/ontology/award> ?uri . }"}, "answers": ["452"]}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Colonels_Softball_Complex> } "}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ontario> <http://dbpedia.org/ontology/location> ?uri } "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Juno_I> <http://dbpedia.org/ontology/launchSite> ?uri } "}, "answers": ["http://dbpedia.org/resource/Cape_Canaveral_Launch_Complex_26", "http://dbpedia.org/resource/Cape_Canaveral_Launch_Complex_5", "http://dbpedia.org/resource/Cape_Canaveral_Space_Force_Station", "http://dbpedia.org/resource/Florida"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/country> <http://dbpedia.org/resource/Swedish_languages> . ?uri <http://dbpedia.org/ontology/ingredient> ?x . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Rheinmetall_MG_60> <http://dbpedia.org/ontology/origin> ?uri } "}, "answers": ["http://dbpedia.org/resource/West_Germany"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/cinematography> <http://dbpedia.org/resource/Gregg_Toland> . }"}, "answers": ["62"]}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/owner> <http://dbpedia.org/resource/Metro-North_Railroad> . ?x <http://dbpedia.org/property/owner> ?uri }"}, "answers": ["15"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/architect> <http://dbpedia.org/resource/Dundas_Castle> . ?x <http://dbpedia.org/ontology/restingPlace> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Barbara_Bush> <http://dbpedia.org/property/children> ?uri } "}, "answers": ["http://dbpedia.org/resource/George_W._Bush", "http://dbpedia.org/resource/Marvin_Bush", "http://dbpedia.org/resource/Jeb_Bush", "http://dbpedia.org/resource/Dorothy_Bush_Koch", "http://dbpedia.org/resource/Neil_Bush", "http://dbpedia.org/resource/Pauline_Robinson_Bush", ""]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/inflow> <http://dbpedia.org/resource/The_Irian_Sea> . ?x <http://dbpedia.org/property/cities> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Miguel_de_Cervantes> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Musical>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/position> <http://dbpedia.org/resource/Defenceman> . ?x <http://dbpedia.org/ontology/team> ?uri . }"}, "answers": ["1608"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/currentclub> <http://dbpedia.org/resource/Los_Angeles_Kings> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SportsTeam>}"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/developer> <http://dbpedia.org/resource/J._Michael_Straczynski> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": ["http://dbpedia.org/resource/Jayce_and_the_Wheeled_Warriors"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/purpose> <http://dbpedia.org/resource/Environmentalism> . ?uri <http://dbpedia.org/ontology/organisation> ?x . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Darcs> <http://dbpedia.org/ontology/license> ?uri } "}, "answers": ["http://dbpedia.org/resource/GNU_General_Public_License"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/commandStructure> <http://dbpedia.org/resource/United_States_Navy> . ?uri <http://dbpedia.org/property/garrison> <http://dbpedia.org/resource/Arlington_County,_Virginia> . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Stephen_Kozmeniuk> <http://dbpedia.org/property/producer> ?x . ?x <http://dbpedia.org/ontology/artist> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Deborah_Crombie> <http://dbpedia.org/property/almaMater> ?uri } "}, "answers": ["Austin College"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/successor> <http://dbpedia.org/resource/James_W._Hyatt> . ?x <http://dbpedia.org/ontology/restingplace> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/hubAirport> <http://dbpedia.org/resource/Los_Angeles_International_Airport> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Airline>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Fabio_Mercurio> <http://dbpedia.org/ontology/employer> ?x . ?x <http://dbpedia.org/property/owner> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/award> <http://dbpedia.org/resource/Timeform> . ?x <http://dbpedia.org/ontology/owner> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/director> <http://dbpedia.org/resource/The_Peanuts_Movie> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/FictionalCharacter>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/team> <http://dbpedia.org/resource/Toronto_Argonauts> . }"}, "answers": ["478"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dornier_Aerodyne> <http://dbpedia.org/property/nationalOrigin> ?uri . <http://dbpedia.org/resource/Hirth_Acrostar> <http://dbpedia.org/ontology/origin> ?uri} "}, "answers": ["http://dbpedia.org/resource/West_Germany"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/notedWork> <http://dbpedia.org/resource/Colin_Brake> . ?x <http://dbpedia.org/ontology/starring> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/author> <http://dbpedia.org/resource/K._W._Jeter> . ?x <http://dbpedia.org/ontology/series> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Blade_Runner_(franchise)"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/president> <http://dbpedia.org/resource/Emanuel_de_Guzman> . ?x <http://dbpedia.org/ontology/athletics> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/mainInterests> <http://dbpedia.org/resource/Metaphysics> } "}, "answers": ["243"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/prizes> <http://dbpedia.org/resource/Gold_Medal_of_the_Royal_Astronomical_Society> . }"}, "answers": ["23"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/executiveProducer> <http://dbpedia.org/resource/Glen_and_Les_Charles> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/purpose> <http://dbpedia.org/resource/South_Asia_Subregional_Economic_Cooperation> . ?x <http://dbpedia.org/ontology/foundationCountry> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/artist> <http://dbpedia.org/resource/Katy_B._Raptor> . ?x <http://dbpedia.org/property/label> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bobby_Hoppe> <http://dbpedia.org/property/pastteams> ?uri } "}, "answers": ["* San Francisco 49ers \n* Washington Redskins"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cathedral_Peak_(California)> <http://dbpedia.org/ontology/mountain> ?uri } "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Erik_Bergman_(Lutheran_minister)> <http://dbpedia.org/property/children> ?uri } "}, "answers": ["http://dbpedia.org/resource/Margareta_Bergman", "http://dbpedia.org/resource/Ingmar_Bergman", "http://dbpedia.org/resource/Dag_Bergman"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/placeOfBurial> <http://dbpedia.org/resource/Mausoleum_of_Augustus> . }"}, "answers": ["5"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/sisterStations> <http://dbpedia.org/resource/WASH_(FM)> . ?x <http://dbpedia.org/ontology/programmeFormat> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Classic_rock", "http://dbpedia.org/resource/Contemporary_hit_radio", "http://dbpedia.org/resource/Country_music", "http://dbpedia.org/resource/All-news_radio", "http://dbpedia.org/resource/Alternative_rock"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/league> <http://dbpedia.org/resource/National_Hockey_League> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/HockeyPlayer>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/James_McClure_(table_tennis)> <http://dbpedia.org/ontology/birthPlace> ?uri } "}, "answers": ["http://dbpedia.org/resource/Indianapolis"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/recordLabel> <http://dbpedia.org/resource/Sony_Music_Entertainment> . ?uri <http://dbpedia.org/property/musicComposer> ?x . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/genre> <http://dbpedia.org/resource/Progressive_rock> . ?x <http://dbpedia.org/ontology/recordLabel> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Shipshaped_Recordings", "http://dbpedia.org/resource/Superstar_Destroyer", "http://dbpedia.org/resource/Big_Scary_Monsters_Recording_Company", "http://dbpedia.org/resource/Mooncrest_Records", "http://dbpedia.org/resource/Bell_Records", "http://dbpedia.org/resource/DJM_Records", "http://dbpedia.org/resource/Island_Records", "http://dbpedia.org/resource/Transatlantic_Records", "http://dbpedia.org/resource/Talking_Elephant", "http://dbpedia.org/resource/Warner_Records", "http://dbpedia.org/resource/20th_Century_Fox_Records", "http://dbpedia.org/resource/Collectables_Records", "http://dbpedia.org/resource/Columbia_Records", "http://dbpedia.org/resource/Atlantic_Records", "http://dbpedia.org/resource/United_Artists_Records", "http://dbpedia.org/resource/Rise_Records", "http://dbpedia.org/resource/Smalltown_America_Records", "http://dbpedia.org/resource/Sargent_House", "http://dbpedia.org/resource/Peaceville_Records", "http://dbpedia.org/resource/Century_Media_Records", "http://dbpedia.org/resource/Earache_Records", "http://dbpedia.org/resource/Parlophone", "http://dbpedia.org/resource/Napalm_Records", "http://dbpedia.org/resource/Lion_Music", "http://dbpedia.org/resource/Frontier_Records", "http://dbpedia.org/resource/Inside_Out_Music", "http://dbpedia.org/resource/Lujo_mammarenavirus", "http://dbpedia.org/resource/Equal_Vision_Records", "http://dbpedia.org/resource/Chrysalis_Records", "http://dbpedia.org/resource/EMI_Records", "http://dbpedia.org/resource/Decca_Records", "http://dbpedia.org/resource/MCA_Records", "http://dbpedia.org/resource/Camel_(band)", "http://dbpedia.org/resource/FeedMe_Music", "http://dbpedia.org/resource/Venus_Fridge_Records", "http://dbpedia.org/resource/Cantora_Records", "http://dbpedia.org/resource/Warner_Music_Group", "http://dbpedia.org/resource/Baratos_Afins", "http://dbpedia.org/resource/Laser_Company", "http://dbpedia.org/resource/Paradoxx_Music", "http://dbpedia.org/resource/Frontiers_Records", "http://dbpedia.org/resource/Universal_Music_Group", "http://dbpedia.org/resource/Sumerian_Records", "http://dbpedia.org/resource/DiscReet_Records", "http://dbpedia.org/resource/Menart_Records", "http://dbpedia.org/resource/Jugoton", "http://dbpedia.org/resource/Croatia_Records", "http://dbpedia.org/resource/Epic_Records", "http://dbpedia.org/resource/Black_Mark_Production", "http://dbpedia.org/resource/Kscope", "http://dbpedia.org/resource/VHF_Records", "http://dbpedia.org/resource/Ipecac_Recordings", "http://dbpedia.org/resource/Cuneiform_Records", "http://dbpedia.org/resource/Neurot_Recordings", "http://dbpedia.org/resource/Thrill_Jockey", "http://dbpedia.org/resource/Web_of_Mimicry", "http://dbpedia.org/resource/Volcano_Entertainment", "http://dbpedia.org/resource/Zoo_Entertainment_(record_label)", "http://dbpedia.org/resource/Prophecy_Productions", "http://dbpedia.org/resource/Serjical_Strike_Records", "http://dbpedia.org/resource/Cherry_Red_Records", "http://dbpedia.org/resource/Voiceprint_Records", "http://dbpedia.org/resource/Hawkwind", "http://dbpedia.org/resource/A&M_Records", "http://dbpedia.org/resource/Noise_Records", "http://dbpedia.org/resource/Concord_Records", "http://dbpedia.org/resource/Diskoton", "http://dbpedia.org/resource/Fueled_by_Ramen", "http://dbpedia.org/resource/Ian_Boddy", "http://dbpedia.org/resource/Cleopatra_Records", "http://dbpedia.org/resource/Black_Widow_Records", "http://dbpedia.org/resource/ATP_Recordings", "http://dbpedia.org/resource/Vertigo_Records", "http://dbpedia.org/resource/Mercury_Records", "http://mals.ru/", "http://dbpedia.org/resource/Independent_music", "http://dbpedia.org/resource/Harvest_Records", "http://dbpedia.org/resource/EMI", "http://dbpedia.org/resource/Favored_Nations", "http://dbpedia.org/resource/Magna_Carta_Records", "http://dbpedia.org/resource/King_Records_(Japan)", "http://dbpedia.org/resource/Odeon_Records", "http://dbpedia.org/resource/CBS_Records_International", "http://dbpedia.org/resource/Sony_Music", "http://dbpedia.org/resource/Merge_Records", "http://dbpedia.org/resource/Interscope_Records", "http://dbpedia.org/resource/Superball_Music", "http://dbpedia.org/resource/Fonit_Cetra", "http://dbpedia.org/resource/Dawn_Records", "http://dbpedia.org/resource/Hurdy_Gurdy_Records", "http://dbpedia.org/resource/Geffen_Records", "http://dbpedia.org/resource/Elektra_Records", "https://www.discogs.com/label/745-Outpost-Recordings", "http://dbpedia.org/resource/V2_Records", "http://dbpedia.org/resource/PolyGram", "http://dbpedia.org/resource/Phonogram_Inc.", "http://dbpedia.org/resource/Virgin_Records", "http://dbpedia.org/resource/Charisma_Records", "http://dbpedia.org/resource/Dunhill_Records", "http://dbpedia.org/resource/Fontana_Records", "http://dbpedia.org/resource/Probe_Records", "http://dbpedia.org/resource/Sony_Music_India", "http://dbpedia.org/resource/City_Records", "http://dbpedia.org/resource/Jugodisk", "http://dbpedia.org/resource/ZKP_RTLJ", "http://dbpedia.org/resource/Hi-Fi_Centar", "http://dbpedia.org/resource/PGP-RTB", "http://dbpedia.org/resource/M_Factory", "http://dbpedia.org/resource/Samy_(Label)", "http://dbpedia.org/resource/WIT_(Label)", "http://dbpedia.org/resource/Shrapnel_Records", "http://dbpedia.org/resource/Progress_Records", "http://dbpedia.org/resource/Record_Heaven", "http://dbpedia.org/resource/Ariola", "http://dbpedia.org/resource/RCA_Records", "http://dbpedia.org/resource/Mascot_Label_Group", "http://dbpedia.org/resource/Concord_Music_Group", "http://dbpedia.org/resource/Fantasy_Records", "http://dbpedia.org/resource/Barclay_(record_label)", "http://dbpedia.org/resource/Trend_Records", "http://dbpedia.org/resource/Sleaszy_Rider_Records", "http://dbpedia.org/resource/Sensory_Records", "http://dbpedia.org/resource/Nippon_Crown", "http://dbpedia.org/resource/SST_Records", "http://dbpedia.org/resource/Polydor_Records", "http://dbpedia.org/resource/Electrecord", "http://dbpedia.org/resource/ABC_Records", "http://dbpedia.org/resource/Capitol_Records", "http://dbpedia.org/resource/Private_Music", "http://dbpedia.org/resource/Windham_Hill_Records", "http://dbpedia.org/resource/Freia_Music", "http://dbpedia.org/resource/Roadrunner_Records", "http://dbpedia.org/resource/Rock_Ridge_Music", "http://dbpedia.org/resource/Arista_Records", "http://dbpedia.org/resource/Anthem_Records", "http://dbpedia.org/resource/Loma_Vista_Recordings", "http://dbpedia.org/resource/Cult_Records", "http://dbpedia.org/resource/Reprise_Records", "http://dbpedia.org/resource/Easy_Star_Records", "http://dbpedia.org/resource/Triple_Crown_Records", "http://dbpedia.org/resource/Som_Livre", "http://dbpedia.org/resource/Low_Transit_Industries", "http://dbpedia.org/resource/Dangerbird_Records", "http://dbpedia.org/resource/Albert_Productions", "http://dbpedia.org/resource/Arena_Rock_Recording_Company", "http://dbpedia.org/resource/MapleMusic_Recordings", "http://dbpedia.org/resource/Polyvinyl_Record_Co.", "http://dbpedia.org/resource/Suicide_Squeeze_Records", "http://dbpedia.org/resource/Luckyhorse_Industries", "http://dbpedia.org/resource/Doce_Harmonia", "http://dbpedia.org/resource/Gospel_Records", "http://dbpedia.org/resource/Havremusikk", "http://dbpedia.org/resource/Navigator_Records", "http://dbpedia.org/resource/Recommended_Records", "http://dbpedia.org/resource/Philips_Records", "http://dbpedia.org/resource/Northern_Spy_Records", "http://dbpedia.org/resource/Bertelsmann_Music_Group", "http://dbpedia.org/resource/Spalax_(record_company)", "http://dbpedia.org/resource/Tzadik_Records", "http://dbpedia.org/resource/Angura_Sound", "http://dbpedia.org/resource/Open_Letter_Records", "http://dbpedia.org/resource/Sony_Music_Entertainment_Japan", "http://dbpedia.org/resource/Free-Will", "http://dbpedia.org/resource/Astralwerks", "http://dbpedia.org/resource/Tetragrammaton_Records", "http://dbpedia.org/resource/Edel_SE_&_Co._KGaA", "http://dbpedia.org/resource/Carrere_Records", "http://dbpedia.org/resource/Clay_Records", "http://dbpedia.org/resource/Path\u00e9_Records_(China)", "http://dbpedia.org/resource/MoonJune_Records", "http://dbpedia.org/resource/Sky_Records", "http://dbpedia.org/resource/Palace_of_Lights", "http://dbpedia.org/resource/Dreyfus_Records", "http://dbpedia.org/resource/Gramavision_Records", "http://dbpedia.org/resource/JMS_Records", "http://dbpedia.org/resource/Disques_Vogue", "http://dbpedia.org/resource/Jupiter_Records", "http://dbpedia.org/resource/Panton_Records", "http://dbpedia.org/resource/Eagle_Records", "http://dbpedia.org/resource/Metal_Mind_Productions", "http://dbpedia.org/resource/London_Recordings", "http://dbpedia.org/resource/Mushroom_Records", "http://dbpedia.org/resource/Unicorn_Digital", "http://dbpedia.org/resource/Musea_Records", "http://dbpedia.org/resource/EMI_Music_Japan", "http://dbpedia.org/resource/Bronze_Records", "http://dbpedia.org/resource/Swan_Song_Records", "http://dbpedia.org/resource/Seacrest_Oy", "http://dbpedia.org/resource/Avex_Inc.", "http://dbpedia.org/resource/Nippon_Phonogram", "http://dbpedia.org/resource/Relapse_Records", "http://dbpedia.org/resource/Falcon_Records_(Canadian_label)", "http://dbpedia.org/resource/Northern_Spy", "http://dbpedia.org/resource/The_Social_Registry", "http://dbpedia.org/resource/Three_One_G", "http://dbpedia.org/resource/First_Records", "http://dbpedia.org/resource/L'Orchestra", "http://dbpedia.org/resource/M.A.C.E._Music", "http://dbpedia.org/resource/Syn-Phonic_Music", "http://dbpedia.org/resource/Galileo_Records", "http://dbpedia.org/resource/SPV_GmbH", "http://dbpedia.org/resource/Melodic_Revolution_Records", "http://dbpedia.org/resource/East_West_Records", "http://dbpedia.org/resource/Atco_Records", "http://dbpedia.org/resource/RSO_Records", "http://dbpedia.org/resource/Legacy_Recordings", "http://dbpedia.org/resource/Sony", "http://dbpedia.org/resource/Sanctuary_Records", "http://dbpedia.org/resource/JVC", "http://dbpedia.org/resource/R.A.I.G.", "http://dbpedia.org/resource/Tooth_&_Nail_Records", "http://dbpedia.org/resource/Unborde", "http://dbpedia.org/resource/AFM_Records", "http://dbpedia.org/resource/Nuclear_Blast", "http://dbpedia.org/resource/Festival_Records", "http://dbpedia.org/resource/Independent_record_label", "http://dbpedia.org/resource/Epitaph_Records", "http://dbpedia.org/resource/Party_Smasher_Inc.", "http://dbpedia.org/resource/Wooden_Nickel_Records", "http://dbpedia.org/resource/Aquarian_Nation", "http://dbpedia.org/resource/Raven_Records", "http://dbpedia.org/resource/Artvoice", "http://dbpedia.org/resource/Abstract_Logix", "http://dbpedia.org/resource/Cypress_Records", "http://dbpedia.org/resource/Liberation_Records", "http://dbpedia.org/resource/EMI_America_Records", "http://dbpedia.org/resource/Telarc_International_Corporation", "http://dbpedia.org/resource/SABA_(electronics_manufacturer)", "http://dbpedia.org/resource/Pickwick_Records", "http://dbpedia.org/resource/Heads_Up_International", "http://dbpedia.org/resource/MPS_Records", "http://dbpedia.org/resource/Bizarre_Records", "http://dbpedia.org/resource/Pacific_Jazz_Records", "http://dbpedia.org/resource/Avex_Trax", "http://dbpedia.org/resource/Gan-Shin", "http://dbpedia.org/resource/Canadian_Broadcasting_Corporation", "http://dbpedia.org/resource/Celebration_Records", "http://dbpedia.org/resource/Quality_Records", "http://dbpedia.org/resource/Snapper_Music", "http://dbpedia.org/resource/Deram_Records", "http://dbpedia.org/resource/Skin_Graft_Records", "http://dbpedia.org/resource/Lovepump_United_Records", "http://dbpedia.org/resource/Zum_Records", "http://dbpedia.org/resource/Millennium_Records", "http://dbpedia.org/resource/Parrot_Records", "http://dbpedia.org/resource/Linus_Entertainment", "http://dbpedia.org/resource/Mushroom_Records_(Canada)", "http://dbpedia.org/resource/Sire_Records", "http://dbpedia.org/resource/Silence_Records", "http://dbpedia.org/resource/Buddah_Records", "http://dbpedia.org/resource/MGM_Records", "http://dbpedia.org/resource/Yoshimoto_Kogyo", "http://dbpedia.org/resource/Threshold_Records", "http://dbpedia.org/resource/Tragic_Hero_Records", "http://dbpedia.org/resource/Sinnbus", "http://dbpedia.org/resource/Thirsty_Ear_Recordings", "http://dbpedia.org/resource/Baby_Records_(Italy)", "http://dbpedia.org/resource/CAR_Juke_Box", "http://dbpedia.org/resource/Crisler_Music", "http://dbpedia.org/resource/Telerecord", "http://dbpedia.org/resource/Apollon_Records", "http://dbpedia.org/resource/Vanguard_Records", "http://dbpedia.org/resource/Mountain_Records", "http://dbpedia.org/resource/Angel_Air", "http://dbpedia.org/resource/Amiga_(record_label)", "http://dbpedia.org/resource/Supraphon", "http://dbpedia.org/resource/Polskie_Nagrania_Muza", "http://dbpedia.org/resource/Polskie_Radio", "http://dbpedia.org/resource/Portrait_Records", "http://dbpedia.org/resource/Esoteric_Recordings", "http://dbpedia.org/resource/The_End_Records", "http://dbpedia.org/resource/Umbrello_Records", "http://dbpedia.org/resource/Toy's_Factory", "http://dbpedia.org/resource/Montalban_Hotel", "http://dbpedia.org/resource/Magma_Records", "http://dbpedia.org/resource/Shelsmusic", "http://dbpedia.org/resource/Dine_Alone_Records", "http://dbpedia.org/resource/Trance_Syndicate", "http://dbpedia.org/resource/Domino_Recording_Company", "http://dbpedia.org/resource/Mystic_Production", "http://dbpedia.org/resource/Progressive_Promotion_Records", "http://dbpedia.org/resource/Passport_Records", "http://dbpedia.org/resource/Urgence_Disk", "http://dbpedia.org/resource/Independiente_(record_label)", "http://dbpedia.org/resource/Brain_Records", "http://dbpedia.org/resource/Schneeball_(record_label)", "http://dbpedia.org/resource/Bandcamp", "http://dbpedia.org/resource/Thunder_Bay_Press", "http://dbpedia.org/resource/Baker_&_Taylor", "http://www.thetank.com/", "http://dbpedia.org/resource/Lantis_(company)", "http://dbpedia.org/resource/ROAR!_Rock_of_Angels_Records", "http://dbpedia.org/resource/City_Slang", "http://dbpedia.org/resource/Metal_Blade_Records", "http://dbpedia.org/resource/Republic_Records", "http://dbpedia.org/resource/Rise_Above_Records", "http://dbpedia.org/resource/Casa_Ricordi", "http://dbpedia.org/resource/Pony_Canyon", "http://dbpedia.org/resource/Yamaha_Corporation", "http://dbpedia.org/resource/Ugly_Things", "http://dbpedia.org/resource/RCA", "http://dbpedia.org/resource/Charly_Records", "http://dbpedia.org/resource/BYG_Records", "http://dbpedia.org/resource/Gentle_Art_of_Music", "http://dbpedia.org/resource/ZYX_Music", "http://dbpedia.org/resource/Powderworks_Records", "http://dbpedia.org/resource/Poets_of_the_Fall", "http://dbpedia.org/resource/Discipline_Global_Mobile", "http://dbpedia.org/resource/Burning_Shed", "http://dbpedia.org/resource/Fuel_2000", "http://dbpedia.org/resource/RandM_Records", "http://dbpedia.org/resource/Love_Records", "http://dbpedia.org/resource/Jaro_Medien", "http://dbpedia.org/resource/Drag_City_(record_label)", "http://dbpedia.org/resource/Eclipse_Records", "http://dbpedia.org/resource/Don_Kirshner", "http://dbpedia.org/resource/Modular_Recordings", "http://dbpedia.org/resource/Axiom_(record_label)", "http://dbpedia.org/resource/Subharmonic_(record_label)", "http://dbpedia.org/resource/M.O.D._Technologies", "http://dbpedia.org/resource/Caroline_Records", "http://dbpedia.org/resource/Prawn_Song_Records", "http://dbpedia.org/resource/ATO_Records", "http://dbpedia.org/resource/Subliminal_Sounds", "http://dbpedia.org/resource/Partisan_Records", "http://dbpedia.org/resource/Alert_Records", "http://dbpedia.org/resource/Repertoire_Records", "http://dbpedia.org/resource/Sultan_Records", "http://dbpedia.org/resource/Suzy_(record_label)", "http://dbpedia.org/resource/ROIR", "http://dbpedia.org/resource/Tigermoth", "http://dbpedia.org/resource/InVogue_Records", "http://dbpedia.org/resource/American_Gramaphone", "http://dbpedia.org/resource/Cyclopes", "http://dbpedia.org/resource/Limelight_Records", "http://dbpedia.org/resource/NEARfest", "http://dbpedia.org/resource/Kisaki", "http://dbpedia.org/resource/Al_Coury", "http://dbpedia.org/resource/Bearsville_Records", "http://dbpedia.org/resource/Rhino_Entertainment", "http://dbpedia.org/resource/Delerium_Records", "http://dbpedia.org/resource/Pilz_(record_label)", "http://dbpedia.org/resource/Sound_Master", "http://dbpedia.org/resource/Warp_(record_label)", "http://dbpedia.org/resource/Beta-lactam_Ring_Records", "http://dbpedia.org/resource/Rough_Trade_Records", "http://dbpedia.org/resource/Food_Records", "http://dbpedia.org/resource/Good_Clean_Fun_Records", "http://dbpedia.org/resource/Music_recording_certification", "http://dbpedia.org/resource/Presence_Records", "http://dbpedia.org/resource/Major_League_Productions", "http://dbpedia.org/resource/Jon_Solomon", "http://dbpedia.org/resource/Regal_Zonophone_Records", "http://dbpedia.org/resource/Imperial_Records", "http://dbpedia.org/resource/Bovema", "http://dbpedia.org/resource/E-sound", "http://dbpedia.org/resource/Pop_One", "http://dbpedia.org/resource/Fearless_Records", "http://dbpedia.org/resource/Immortal_Records", "http://dbpedia.org/resource/Black_and_Greene_Records", "http://dbpedia.org/resource/Mehum_Music", "http://dbpedia.org/resource/Syn-Phonic", "http://dbpedia.org/resource/Dischi_Ricordi", "http://dbpedia.org/resource/Manticore_Records", "http://dbpedia.org/resource/Monument_Records", "http://dbpedia.org/resource/Shock_Records", "http://dbpedia.org/resource/Giant_Electric_Pea", "http://dbpedia.org/resource/SCI_Fidelity_Records", "http://dbpedia.org/resource/Chiswick_Records", "http://dbpedia.org/resource/Antilles_Records", "http://dbpedia.org/resource/Stiff_Records", "http://dbpedia.org/resource/Beggars_Banquet_Records", "http://dbpedia.org/resource/Alternative_Tentacles", "http://dbpedia.org/resource/Geekfest", "http://dbpedia.org/resource/New_Disorder_Records", "http://dbpedia.org/resource/Captain_Oi!_Records", "http://dbpedia.org/resource/Adeline_Records", "http://dbpedia.org/resource/Prank_Records", "http://dbpedia.org/resource/Pirates_Press_Records", "http://dbpedia.org/resource/Level_Plane_Records", "http://dbpedia.org/resource/Lookout_Records", "http://dbpedia.org/resource/BMG_Rights_Management", "http://dbpedia.org/resource/Denon_Records", "http://dbpedia.org/resource/Avantgarde_Music", "http://dbpedia.org/resource/No_Fashion_Records", "http://dbpedia.org/resource/Mystic_Records", "http://dbpedia.org/resource/Secretly_Canadian", "http://dbpedia.org/resource/5_Minute_Walk", "http://dbpedia.org/resource/Mostly_Autumn", "http://dbpedia.org/resource/JVCKenwood_Victor_Entertainment", "http://dbpedia.org/resource/Melt-Banana", "http://dbpedia.org/resource/Gold_Standard_Laboratories", "http://dbpedia.org/resource/Tribunal_Records", "http://dbpedia.org/resource/Capricorn_Records", "http://dbpedia.org/resource/Purple_Pyramid_Records", "http://dbpedia.org/resource/Foundation_2000", "http://dbpedia.org/resource/Angel_Air_Records", "http://dbpedia.org/resource/PGP-RTS", "http://dbpedia.org/resource/Out_on_a_Limb_Records", "http://dbpedia.org/resource/ECM_Records", "http://dbpedia.org/resource/Good_Fight_Entertainment", "http://dbpedia.org/resource/MNRK_Music_Group", "http://www.nosleeprecs.com", "http://dbpedia.org/resource/Fruits_de_Mer_Records", "http://dbpedia.org/resource/Mascot_Records", "http://dbpedia.org/resource/Fiction_Records", "http://dbpedia.org/resource/Astor_Records", "http://dbpedia.org/resource/The_Rocket_Record_Company", "http://dbpedia.org/resource/Amuse_Inc.", "http://dbpedia.org/resource/One_Eleven_Records", "http://dbpedia.org/resource/CandyRat_Records", "http://dbpedia.org/resource/XL_Recordings", "http://dbpedia.org/resource/UK_Records", "http://dbpedia.org/resource/Temporary_Residence_Limited", "http://dbpedia.org/resource/Tabu_Recordings", "http://dbpedia.org/resource/Big_Wheel_Recreation", "http://dbpedia.org/resource/Gilead_Media", "http://dbpedia.org/resource/MMD_Records", "http://dbpedia.org/resource/Kioon_Music", "http://dbpedia.org/resource/DCide", "http://dbpedia.org/resource/Nike,_Inc.", "http://dbpedia.org/resource/Tokuma_Shoten", "http://dbpedia.org/resource/Demon_Music_Group", "http://dbpedia.org/resource/Pye_International_Records", "http://dbpedia.org/resource/Soundtek_Music_Ltd", "http://dbpedia.org/resource/Warner_Music_Sweden", "http://dbpedia.org/resource/Big_Skin_Records", "http://dbpedia.org/resource/Suburban_Records", "http://dbpedia.org/resource/Relentless_Pursuit_Records", "http://dbpedia.org/resource/For_Life_Music", "http://dbpedia.org/resource/Extasy_Records", "http://dbpedia.org/resource/Bedrock_Records", "http://dbpedia.org/resource/Metromedia", "http://dbpedia.org/resource/AJK_(record_label)", "http://dbpedia.org/resource/Roulette_Records", "http://dbpedia.org/resource/Sophomore_GmbH", "http://dbpedia.org/resource/Castle_Communications", "http://dbpedia.org/resource/Silva_Screen_Records", "http://dbpedia.org/resource/U_Call_It_Productions", "http://dbpedia.org/resource/HMV", "http://dbpedia.org/resource/Saregama", "http://dbpedia.org/resource/Asha_Audio", "http://dbpedia.org/resource/CBS", "http://dbpedia.org/resource/Monkeyboy_Records", "http://dbpedia.org/resource/Fire_Records_(Pakistan)", "http://dbpedia.org/resource/The_Times_Group", "http://dbpedia.org/resource/Transgressive_Records", "http://dbpedia.org/resource/Music_For_Nations", "http://dbpedia.org/resource/Topshelf_Records", "http://dbpedia.org/resource/Direction_Records_(British_label)", "http://dbpedia.org/resource/Megaforce_Records", "http://dbpedia.org/resource/Danger_Crue_Records", "http://dbpedia.org/resource/Tides_Records", "http://dbpedia.org/resource/Illegal_Records", "http://dbpedia.org/resource/I.R.S._Records", "http://dbpedia.org/resource/Janus_Records", "http://dbpedia.org/resource/ZTT_Records", "http://dbpedia.org/resource/Regal_Recordings", "http://dbpedia.org/resource/Glassville_Records", "http://dbpedia.org/resource/Konk_(recording_studio)", "http://dbpedia.org/resource/Nippon_Columbia", "http://dbpedia.org/resource/Razzia_Records", "http://dbpedia.org/resource/Verglas_Music", "http://dbpedia.org/resource/Eulogy_Recordings", "http://dbpedia.org/resource/Yenta_Records", "http://dbpedia.org/resource/BASF", "http://dbpedia.org/resource/Rockosmos", "http://dbpedia.org/resource/Melodiya", "http://www.its-oh.net", "http://dbpedia.org/resource/Verve_Records", "http://dbpedia.org/resource/Revolver_Music", "http://dbpedia.org/resource/Sony_Classical_Records", "http://dbpedia.org/resource/Southern_Records", "http://dbpedia.org/resource/Angel_Records", "http://dbpedia.org/resource/Higher_Octave_Music", "http://dbpedia.org/resource/Wounded_Bird_Records", "http://dbpedia.org/resource/Blue_\u00c9lan_Records", "http://dbpedia.org/resource/Purple_Records", "http://dbpedia.org/resource/Rune_Grammofon", "http://dbpedia.org/resource/MC_Lars", "http://dbpedia.org/resource/AMMD", "http://dbpedia.org/resource/Eldorado_(Gravadora)", "http://dbpedia.org/resource/Grava\u00e7\u00f5es_El\u00e9tricas_S.A.", "http://dbpedia.org/resource/Philips/Phonogram", "http://dbpedia.org/resource/Solid_Approach", "http://dbpedia.org/resource/ArtBeat_Music", "http://dbpedia.org/resource/A_Silent_Place", "http://dbpedia.org/resource/Rocket_Recordings", "http://dbpedia.org/resource/42_Records", "http://dbpedia.org/resource/Homesleep_Music", "http://dbpedia.org/resource/Subterranean_Records", "http://dbpedia.org/resource/Casablanca_Records", "http://dbpedia.org/resource/Hollywood_Records", "http://dbpedia.org/resource/Word_Records", "http://dbpedia.org/resource/Open_Sky", "http://dbpedia.org/resource/On_Through_the_Night", "http://dbpedia.org/resource/Leesta_Vall", "http://dbpedia.org/resource/Moon_Safari_(band)", "http://dbpedia.org/resource/Voices_of_Wonder", "http://dbpedia.org/resource/Dindisc", "http://dbpedia.org/resource/Ralph_Records", "http://dbpedia.org/resource/Cut-throat_Records", "http://dbpedia.org/resource/Neat_Records", "http://dbpedia.org/resource/Giant_Records_(Warner)", "http://dbpedia.org/resource/Naxos_(company)", "http://dbpedia.org/resource/Teldec", "http://dbpedia.org/resource/Metronome", "http://dbpedia.org/resource/Renaissance_Recordings", "http://dbpedia.org/resource/Babyboomer_Music", "http://dbpedia.org/resource/Happy_Street_Records", "http://dbpedia.org/resource/Progrock_Records", "http://dbpedia.org/resource/Rocshire_Records", "http://dbpedia.org/resource/T-Toone_music", "http://dbpedia.org/resource/X-Records", "http://dbpedia.org/resource/Sony_BMG", "http://dbpedia.org/resource/Mistlur_Records", "http://dbpedia.org/resource/Sony_Records", "http://dbpedia.org/resource/JEMP_Records", "http://dbpedia.org/resource/Rubber_Jungle_Records", "http://dbpedia.org/resource/Sick_Room_Records", "http://dbpedia.org/resource/Missing_Finger_Records", "http://dbpedia.org/resource/Cyclops_Records", "http://dbpedia.org/resource/Mellow_Records", "http://dbpedia.org/resource/Velut_Luna", "http://dbpedia.org/resource/Triangle_Records", "http://dbpedia.org/resource/Red_Hot_Records", "http://dbpedia.org/resource/PolyEast_Records", "http://dbpedia.org/resource/Sony_Music_Philippines", "http://dbpedia.org/resource/Kaum_Records", "http://dbpedia.org/resource/Itaca_Records", "http://dbpedia.org/resource/Astro_Magnetics", "http://dbpedia.org/resource/Eyeball_Records", "http://dbpedia.org/resource/John_Mitchell_(musician)", "http://dbpedia.org/resource/Artistdirect", "http://dbpedia.org/resource/MGM_Distribution", "http://dbpedia.org/resource/Daffodil_Records_(Canadian_label)", "http://dbpedia.org/resource/Dramatico", "http://dbpedia.org/resource/Enigma_Records", "http://dbpedia.org/resource/CMC_International", "http://dbpedia.org/resource/Spinefarm_Records", "http://dbpedia.org/resource/Janus", "http://dbpedia.org/resource/MCA_Inc.", "http://dbpedia.org/resource/Columbia_Graphophone_Company", "http://dbpedia.org/resource/Sue_Records", "http://dbpedia.org/resource/Stateside_Records", "http://dbpedia.org/resource/Immediate_Records", "http://dbpedia.org/resource/Mausoleum_Records", "http://dbpedia.org/resource/Black_Lotus_Records", "http://dbpedia.org/resource/Avalon_Records", "http://dbpedia.org/resource/Strangelight_Records", "http://dbpedia.org/resource/Gramy_Records", "http://dbpedia.org/resource/Relativity_Records", "http://dbpedia.org/resource/Pye_Records", "http://dbpedia.org/resource/Axe_Records", "http://dbpedia.org/resource/GUN_Records", "http://dbpedia.org/resource/Sylvan_Music", "http://dbpedia.org/resource/Deep_Elm_Records", "http://dbpedia.org/resource/A-F_Records", "http://dbpedia.org/resource/One_Day_Savior_Recordings", "http://dbpedia.org/resource/Zebra_Records", "http://dbpedia.org/resource/Bellaphon_Records", "http://dbpedia.org/resource/Broadcast_Music,_Inc.", "http://dbpedia.org/resource/Impact/Legend", "http://dbpedia.org/resource/Daffodil_Records", "http://dbpedia.org/resource/Universal_Music_Japan", "http://dbpedia.org/resource/Eagle_Rock_Entertainment", "http://dbpedia.org/resource/At-mooss_records", "http://dbpedia.org/resource/Spiegelei", "http://dbpedia.org/resource/Deadline_Music_Records", "http://dbpedia.org/resource/Jet_Records", "http://dbpedia.org/resource/Rearts", "http://dbpedia.org/resource/Magaibutsu", "http://dbpedia.org/resource/Combat_Records", "http://dbpedia.org/resource/Stray_Records", "http://dbpedia.org/resource/Komuna_(company)", "http://dbpedia.org/resource/Touch_Records_(Finland)", "http://dbpedia.org/resource/Basick_Records", "http://dbpedia.org/resource/Ohr_(record_label)", "http://dbpedia.org/resource/Full_Moon_Records", "http://dbpedia.org/resource/Hammerheart_Records", "http://dbpedia.org/resource/Season_of_Mist", "http://dbpedia.org/resource/The_Gathering_(band)", "http://dbpedia.org/resource/GRT_Records", "http://dbpedia.org/resource/Unidisc_Music", "http://dbpedia.org/resource/BGO_Records", "http://dbpedia.org/resource/Fonomusic", "http://dbpedia.org/resource/Six_Degrees_Records", "http://dbpedia.org/resource/Metropolis_Records", "http://dbpedia.org/resource/Hux_Records", "http://dbpedia.org/resource/HTD_Records", "http://dbpedia.org/resource/Erewhon_(music_label)", "http://dbpedia.org/resource/Disques_Francor", "http://dbpedia.org/resource/Exogenic_Records", "http://dbpedia.org/resource/Wolfgang_Records", "http://dbpedia.org/resource/Magna_Carta", "http://dbpedia.org/resource/Svart_Records", "http://dbpedia.org/resource/E.G._Records", "http://dbpedia.org/resource/TNSrecords", "http://dbpedia.org/resource/Bomber_Music", "http://dbpedia.org/resource/Noh_Poetry_Records", "http://dbpedia.org/resource/Think_Tank_Media", "http://dbpedia.org/resource/Not_Lame_Recordings", "http://dbpedia.org/resource/Umbrella", "http://dbpedia.org/resource/Yep_Roc_Records", "http://dbpedia.org/resource/Mercury/Polygram", "http://dbpedia.org/resource/Muse_Sickle", "http://dbpedia.org/resource/Paisley_Pop", "http://dbpedia.org/resource/Space_Baby", "http://dbpedia.org/resource/Wizzard_in_Vinyl", "http://dbpedia.org/resource/Liberation_Music", "http://dbpedia.org/resource/Independent_Label_Group", "http://dbpedia.org/resource/Dew_Process", "http://dbpedia.org/resource/Memphis_Industries", "http://dbpedia.org/resource/Smalltown_Supersound", "http://dbpedia.org/resource/Mexican_Summer", "http://dbpedia.org/resource/Trunk_Records", "http://dbpedia.org/resource/Run_Hard_Music", "http://dbpedia.org/resource/Stax_Records", "http://dbpedia.org/resource/One_Records_(Serbia)", "http://dbpedia.org/resource/Unsigned_artist", "http://dbpedia.org/resource/Market_Square_Records", "http://dbpedia.org/resource/Layered_Reality_Productions", "http://dbpedia.org/resource/Frenetic_Records", "http://dbpedia.org/resource/Moorworks", "http://dbpedia.org/resource/Omnibus_Records", "http://dbpedia.org/resource/PIAS_Recordings", "http://dbpedia.org/resource/Mylodon_Records", "http://dbpedia.org/resource/Dragon_Watermelon_/_Ballistico", "http://dbpedia.org/resource/Poptones", "http://dbpedia.org/resource/AltrOck_Productions", "http://dbpedia.org/resource/50_Records", "http://www.onairmuzik.com", "http://dbpedia.org/resource/Fatboy_(album)", "http://dbpedia.org/resource/Gr\u00f6nland_Records", "http://dbpedia.org/resource/Innova_Recordings", "http://dbpedia.org/resource/UgEXPLODE_Records", "http://dbpedia.org/resource/Blue_Horizon_(record_label)", "http://dbpedia.org/resource/NUX_Organization", "http://dbpedia.org/resource/See_for_Miles_Records", "http://dbpedia.org/resource/Stickman_Records_(indie_rock)", "http://dbpedia.org/resource/Azul_Music", "http://dbpedia.org/resource/Universal_Music_India", "http://dbpedia.org/resource/Cargo_Music", "http://dbpedia.org/resource/Headhunter_Records", "http://dbpedia.org/resource/Knitting_Factory_Records", "http://dbpedia.org/resource/Lava_Records", "http://dbpedia.org/resource/Hannibal_Records", "http://dbpedia.org/resource/Bad_Vugum", "http://dbpedia.org/resource/P._Tuotanto", "http://dbpedia.org/resource/Ratas_Music", "https://www.innerknotrecords.com/", "https://www.insideoutmusic.com/", "http://dbpedia.org/resource/Candlelight_Records", "http://dbpedia.org/resource/Jagjaguwar", "http://dbpedia.org/resource/Marmalade_Records", "http://dbpedia.org/resource/Sonet_Records", "http://dbpedia.org/resource/DRO_Records", "http://dbpedia.org/resource/Avispa", "http://dbpedia.org/resource/Liberty_Records", "http://dbpedia.org/resource/Universal_Music_Enterprises", "http://dbpedia.org/resource/Chess_Records", "http://dbpedia.org/resource/Celluloid_Records", "http://dbpedia.org/resource/Joyful_Noise_Recordings", "http://dbpedia.org/resource/Touch_and_Go_Records", "http://dbpedia.org/resource/Polaris_(label)", "http://dbpedia.org/resource/Genin_Records", "http://dbpedia.org/resource/Drive-Thru_Records", "http://dbpedia.org/resource/L'Abeille_R\u00f4de", "http://dbpedia.org/resource/Kobalt_Label_Services", "http://dbpedia.org/resource/Polar_Music", "http://dbpedia.org/resource/KittyWu_Records", "http://dbpedia.org/resource/Nash_Format", "http://dbpedia.org/resource/Absolutely_Kosher_Records", "http://dbpedia.org/resource/Removador_Recordings_&_Solutions", "http://dbpedia.org/resource/Sword_Records,_Inc.", "http://dbpedia.org/resource/Mabell", "http://dbpedia.org/resource/Engine_Room_Recordings", "http://dbpedia.org/resource/The_Royal_Potato_Family", "http://dbpedia.org/resource/AWAL", "http://dbpedia.org/resource/Fernando_Perdomo", "http://dbpedia.org/resource/Ark_Records", "http://dbpedia.org/resource/Star_Song_Communications", "http://dbpedia.org/resource/Asylum_Records", "http://dbpedia.org/resource/The_Orchard_(company)", "http://dbpedia.org/resource/Sony_Music_Publishing", "http://dbpedia.org/resource/Tee_Pee_Records", "http://dbpedia.org/resource/Outside_Music", "http://dbpedia.org/resource/Machine_Shop_Records", "http://dbpedia.org/resource/Bethel_Music", "http://dbpedia.org/resource/Essential_Records_(Christian)", "http://dbpedia.org/resource/Reunion_Records", "http://dbpedia.org/resource/Provident_Label_Group", "http://dbpedia.org/resource/Integrity_Music", "http://dbpedia.org/resource/JPU_Records", "http://dbpedia.org/resource/Nakano_Records", "http://dbpedia.org/resource/Manticore", "http://dbpedia.org/resource/TuneCore", "http://dbpedia.org/resource/Torrent_Records_LLC", "http://dbpedia.org/resource/Cotillion_Records", "http://dbpedia.org/resource/3:16_Media", "http://dbpedia.org/resource/A_Records", "http://dbpedia.org/resource/Bellaphon_(record_label)", "http://dbpedia.org/resource/RTV_S", "http://dbpedia.org/resource/Raglas_Records", "http://dbpedia.org/resource/Sorabia_disk", "http://dbpedia.org/resource/Vans_(record_label)", "http://dbpedia.org/resource/Rethink_(record_label)", "http://dbpedia.org/resource/Yellowdog_Creative_Project_Management", "http://dbpedia.org/resource/Invisible_Hands_Music", "http://dbpedia.org/resource/Paper_Bag_Records", "http://dbpedia.org/resource/Psychic_Handshake", "http://dbpedia.org/resource/Mute_Records", "http://dbpedia.org/resource/Mountain_Size_Records", "http://dbpedia.org/resource/Oh/Ya_Records", "http://dbpedia.org/resource/Razor_&_Tie", "http://dbpedia.org/resource/Bieler_Bros._Records", "http://dbpedia.org/resource/Hed_Arzi_Music", "http://dbpedia.org/resource/Planet_Records", "http://dbpedia.org/resource/RCA/Jive_Label_Group", "http://dbpedia.org/resource/Hungaroton", "http://dbpedia.org/resource/Pausa_Records", "http://dbpedia.org/resource/Produttori_Associati", "http://dbpedia.org/resource/DreamWorks_Records", "http://dbpedia.org/resource/Planaria_Recordings", "http://dbpedia.org/resource/Steinar_(singer)", "http://dbpedia.org/resource/Anova_Music", "http://dbpedia.org/resource/MeteorCity", "http://dbpedia.org/resource/A&M_Octone_Records", "http://dbpedia.org/resource/Garden_of_Delights_(record_label)", "http://dbpedia.org/resource/Delphine_Records", "http://dbpedia.org/resource/AZ_(record_label)", "http://dbpedia.org/resource/Fragile_Records", "http://dbpedia.org/resource/Trax_Records", "http://dbpedia.org/resource/Alice_In...", "http://dbpedia.org/resource/Jungle_Records", "http://dbpedia.org/resource/Numero_Uno_(company)", "http://dbpedia.org/resource/Permanent_Records", "http://dbpedia.org/resource/Qualiton_Records", "http://dbpedia.org/resource/American_Recordings_(record_label)", "http://dbpedia.org/resource/Axis_of_Justice", "http://dbpedia.org/resource/Balkanton", "http://dbpedia.org/resource/GMP_(Bulgarian_record_label)", "http://dbpedia.org/resource/Varna_Sound", "http://dbpedia.org/resource/Vitality_Music", "http://dbpedia.org/resource/No_Records", "http://dbpedia.org/resource/Sugar_Music", "http://dbpedia.org/resource/Sub_Pop", "http://dbpedia.org/resource/His_Master's_Voice", "http://dbpedia.org/resource/Lingasong_Records", "http://dbpedia.org/resource/Motown", "http://dbpedia.org/resource/Magic_Bullet_Records", "http://dbpedia.org/resource/Hydra_Head_Records", "http://dbpedia.org/resource/Wea", "http://dbpedia.org/resource/Durium", "http://dbpedia.org/resource/Dig-It_(record_label)", "http://dbpedia.org/resource/Ultra_Records", "http://dbpedia.org/resource/Wierd_Records", "http://dbpedia.org/resource/Pendu_Sound_Recordings", "http://dbpedia.org/resource/Profound_Lore_Records", "http://dbpedia.org/resource/Samadhi_Sound", "http://dbpedia.org/resource/Japanese_dry_garden", "http://dbpedia.org/resource/Festival_Music_(F2)", "http://dbpedia.org/resource/14th_Floor_Records", "http://dbpedia.org/resource/Silvertone_Records_(1980)", "http://dbpedia.org/resource/Entertainment_One", "http://dbpedia.org/resource/Hypnotic_Records", "http://dbpedia.org/resource/Dan_Carey_(record_producer)", "http://dbpedia.org/resource/Ezigja_Music", "http://dbpedia.org/resource/Apple_Records", "http://dbpedia.org/resource/Barking_Pumpkin_Records", "http://dbpedia.org/resource/Zappa_Records", "http://dbpedia.org/resource/Attic_Records", "http://dbpedia.org/resource/Distribuidora_Belgrano_Norte", "http://dbpedia.org/resource/Ciclo_3_Records", "http://dbpedia.org/resource/New_Abra", "http://www.marquee.co.jp/label/bell_antique.htm", "http://dbpedia.org/resource/Made_in_Japan_Record", "http://dbpedia.org/resource/Binary/Universal_Music_Group", "http://dbpedia.org/resource/Digital_Nations_Artist", "http://dbpedia.org/resource/Virgin_EMI_Records", "http://dbpedia.org/resource/Daiichi_Kosho_Company", "http://dbpedia.org/resource/Massacre_Records", "http://dbpedia.org/resource/Too_Pure", "http://dbpedia.org/resource/Sparmac", "http://dbpedia.org/resource/Cube_Records", "http://dbpedia.org/resource/Fly_Records", "http://dbpedia.org/resource/Warner_Music_Australia", "http://dbpedia.org/resource/UNFD", "http://www.onedaysavior.com/", "http://dbpedia.org/resource/DXP_Productions", "http://dbpedia.org/resource/Sparrow_Records", "http://dbpedia.org/resource/Credential_Recordings", "http://dbpedia.org/resource/Lo_Recordings", "http://dbpedia.org/resource/I_and_Ear", "http://dbpedia.org/resource/Planaria_(record_label)", "http://dbpedia.org/resource/Shatter_Your_Leaves", "http://dbpedia.org/resource/Sockets_(record_label)", "http://dbpedia.org/resource/Bureau_B", "http://dbpedia.org/resource/Negram_(record_label)", "http://www.scyllarecords.com", "http://dbpedia.org/resource/MAM_Records", "http://dbpedia.org/resource/King_Biscuit_Flower_Hour", "http://dbpedia.org/resource/DRT_Entertainment", "http://dbpedia.org/resource/Alucard_Music", "http://dbpedia.org/resource/Sunflower_Records", "http://dbpedia.org/resource/Laurie_Records", "http://dbpedia.org/resource/ESP-Disk", "http://dbpedia.org/resource/Rykodisc", "http://dbpedia.org/resource/Synton_Archive_Recordings", "http://dbpedia.org/resource/Velour_Music", "http://dbpedia.org/resource/Body_of_Work_Recordings", "http://dbpedia.org/resource/Ooberman", "http://dbpedia.org/resource/Doing_Being_Music,_Universal_Music,_Spinefarm_Records", "http://dbpedia.org/resource/Full_Time_Hobby", "http://dbpedia.org/resource/Downtown_Records", "http://dbpedia.org/resource/RCRD_LBL", "http://dbpedia.org/resource/Second_Battle", "http://dbpedia.org/resource/FRG_Records", "http://dbpedia.org/resource/Harmacy_Records", "http://dbpedia.org/resource/RAIG_Records", "http://dbpedia.org/resource/Sunhair_Records", "http://dbpedia.org/resource/TidyLike_Records", "http://dbpedia.org/resource/Vincebus_Eruptum_Records", "http://dbpedia.org/resource/TVR_(TV_network)", "http://dbpedia.org/resource/Roton_Music", "http://dbpedia.org/resource/Blood_and_Ink_Records", "http://dbpedia.org/resource/Drowned_in_Sound", "http://dbpedia.org/resource/Fierce_Panda_Records", "http://dbpedia.org/resource/Blast_First", "http://dbpedia.org/resource/Try_Harder_Records", "http://dbpedia.org/resource/Quickfix", "http://dbpedia.org/resource/List_of_record_labels:_R\u2013Z", "http://dbpedia.org/resource/Durium_Records", "http://dbpedia.org/resource/The_Rank_Organisation", "http://dbpedia.org/resource/Song_Haus_Music", "http://dbpedia.org/resource/Sumthing_Distribution", "http://dbpedia.org/resource/Marshall_Amplification", "http://dbpedia.org/resource/Dischord_Records", "http://dbpedia.org/resource/Shout!_Factory", "http://dbpedia.org/resource/BIVCO_Records", "http://dbpedia.org/resource/Phoenix_Rising_(record_label)", "http://dbpedia.org/resource/Oarfin_Records", "http://dbpedia.org/resource/Lance_King", "http://dbpedia.org/resource/Sena_(company)"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/end> <http://dbpedia.org/resource/Kazan> . ?x <http://dbpedia.org/ontology/railwayTrack> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/manufacturer> <http://dbpedia.org/resource/Asus> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Device>}"}, "answers": ["http://dbpedia.org/resource/Asus_Transformer_Pad_TF701T", "http://dbpedia.org/resource/Asus_ZenFone_8", "http://dbpedia.org/resource/Asus_ZenFone_9", "http://dbpedia.org/resource/PlayStation_3", "http://dbpedia.org/resource/Asus_EeeBook", "http://dbpedia.org/resource/Nexus_7_(2013)", "http://dbpedia.org/resource/Nexus_Player", "http://dbpedia.org/resource/ROG_Phone", "http://dbpedia.org/resource/ROG_Phone_5", "http://dbpedia.org/resource/ROG_Phone_6"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Fran\u00e7ois_Beauchemin> <http://dbpedia.org/ontology/formerTeam> ?uri } "}, "answers": ["http://dbpedia.org/resource/Anaheim_Ducks", "http://dbpedia.org/resource/Colorado_Avalanche", "http://dbpedia.org/resource/Columbus_Blue_Jackets", "http://dbpedia.org/resource/Montreal_Canadiens", "http://dbpedia.org/resource/Toronto_Maple_Leafs"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Red_Marauder> <http://dbpedia.org/ontology/colour> ?uri } "}, "answers": ["http://dbpedia.org/resource/United_Kingdom"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/doctoralStudent> <http://dbpedia.org/resource/Erich_Bagge> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/parentOrganisation> <http://dbpedia.org/resource/Gestapo> . ?x <http://dbpedia.org/property/leader> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/United_States> . ?x <http://dbpedia.org/property/venue> ?uri . }"}, "answers": ["432"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/company> <http://dbpedia.org/resource/HBO> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": ["http://dbpedia.org/resource/All_Aboard!_Rosie's_Family_Cruise", "http://dbpedia.org/resource/Always_Outnumbered", "http://dbpedia.org/resource/Def_Comedy_Jam", "http://dbpedia.org/resource/Happily_Ever_After:_Fairy_Tales_for_Every_Child", "http://dbpedia.org/resource/Tagget", "http://dbpedia.org/resource/Whitewash_(1994_film)", "http://dbpedia.org/resource/Angry_Boys", "http://dbpedia.org/resource/Arresting_Behavior", "http://dbpedia.org/resource/Entourage_(American_TV_series)", "http://dbpedia.org/resource/Get_Smart_(1995_TV_series)", "http://dbpedia.org/resource/Getting_On_(American_TV_series)", "http://dbpedia.org/resource/Glory!_Glory!", "http://dbpedia.org/resource/The_Bedford_Diaries", "http://dbpedia.org/resource/The_Ben_Stiller_Show", "http://dbpedia.org/resource/Bored_to_Death", "http://dbpedia.org/resource/Raven_Hawk", "http://dbpedia.org/resource/Real_Time_with_Bill_Maher", "http://dbpedia.org/resource/The_Country_Mouse_and_the_City_Mouse:_A_Christmas_Tale", "http://dbpedia.org/resource/The_Erotic_Traveler", "http://dbpedia.org/resource/The_Girl's_Guide_to_Depravity", "http://dbpedia.org/resource/The_Jury_(TV_series)", "http://dbpedia.org/resource/The_Last_Frontier_(TV_series)", "http://dbpedia.org/resource/The_Movies_(miniseries)", "http://dbpedia.org/resource/The_Ricky_Gervais_Show_(TV_series)", "http://dbpedia.org/resource/The_Righteous_Gemstones", "http://dbpedia.org/resource/Jonah_from_Tonga", "http://dbpedia.org/resource/Band_of_Brothers_(miniseries)", "http://dbpedia.org/resource/Insecure_(TV_series)", "http://dbpedia.org/resource/Ja'mie:_Private_School_Girl", "http://dbpedia.org/resource/A_Tiny_Audience", "http://dbpedia.org/resource/Cathouse:_The_Series", "http://dbpedia.org/resource/Capadocia_(TV_series)", "http://dbpedia.org/resource/Down_the_Shore", "http://dbpedia.org/resource/Countdown_to_Looking_Glass", "http://dbpedia.org/resource/Crashbox", "http://dbpedia.org/resource/Curb_Your_Enthusiasm", "http://dbpedia.org/resource/Daddy_Dearest", "http://dbpedia.org/resource/HBO_Storybook_Musicals", "http://dbpedia.org/resource/Roc_(TV_series)", "http://dbpedia.org/resource/Lip_Service_(1988_film)", "http://dbpedia.org/resource/Luck_(TV_series)", "http://dbpedia.org/resource/Lucky_Louie", "http://dbpedia.org/resource/Olive_Kitteridge_(miniseries)", "http://dbpedia.org/resource/Show_Me_a_Hero", "http://dbpedia.org/resource/Blinded_by_the_Lights_(TV_series)", "http://dbpedia.org/resource/Hung_(TV_series)", "http://dbpedia.org/resource/Little_Britain_USA", "http://dbpedia.org/resource/Path_to_War"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lucy_Sullivan_Is_Getting_Married> <http://dbpedia.org/property/starring> ?uri } "}, "answers": ["http://dbpedia.org/resource/Debbie_Chazen", "http://dbpedia.org/resource/Sam_Loggin", "http://dbpedia.org/resource/Gerard_Butler", "http://dbpedia.org/resource/Sara_Stockbridge", "http://dbpedia.org/resource/Gwyneth_Strong", "http://dbpedia.org/resource/Letitia_Dean", "http://dbpedia.org/resource/Michael_Troughton", "http://dbpedia.org/resource/Zo\u00eb_Eeles"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/currentMembers> <http://dbpedia.org/resource/Hynief> . ?uri <http://dbpedia.org/ontology/bandMember> ?x . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/foundation> <http://dbpedia.org/resource/New_York> . ?uri <http://dbpedia.org/ontology/board> ?x . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/channel> <http://dbpedia.org/resource/NBC> . ?uri <http://dbpedia.org/property/presenter> ?x . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/battles> <http://dbpedia.org/resource/\u00c9cole_Militaire> . ?x <http://dbpedia.org/property/territory> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lao_Plaza_Hotel> <http://dbpedia.org/property/locationCountry> ?uri } "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pandaruan_Bridge> <http://dbpedia.org/ontology/owner> ?uri . <http://dbpedia.org/resource/Malaysia_Junior_Hockey_League> <http://dbpedia.org/property/country> ?uri} "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/children> <http://dbpedia.org/resource/Mother_Mary_Alphonsa> . ?uri <http://dbpedia.org/ontology/writer> <http://dbpedia.org/resource/Julian_Hawthorne> . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/hubAirport> <http://dbpedia.org/resource/Selangor> . ?x <http://dbpedia.org/property/hubs> ?uri }"}, "answers": ["http://dbpedia.org/resource/Selangor", "http://dbpedia.org/resource/Subang,_Indonesia", "http://dbpedia.org/resource/Sultan_Abdul_Aziz_Shah_Airport", "http://dbpedia.org/resource/Malaysia"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/United_World_College_of_Costa_Rica> <http://dbpedia.org/property/president> ?uri } "}, "answers": ["http://dbpedia.org/resource/Nelson_Mandela", "http://dbpedia.org/resource/Queen_Noor"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cheasty_Boulevard_South> <http://dbpedia.org/property/Landmark> ?x . ?x <http://dbpedia.org/ontology/city> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/director> <http://dbpedia.org/resource/Ridley_Scott> . ?uri <http://dbpedia.org/property/musicComposer> <http://dbpedia.org/resource/Vangelis> . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/language> <http://dbpedia.org/resource/French_language> . ?x <http://dbpedia.org/property/currency> ?uri . }"}, "answers": ["72"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/battles> <http://dbpedia.org/resource/Arthur_St._Clair> . ?x <http://dbpedia.org/property/combatant> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/ingredient> <http://dbpedia.org/resource/Pork> . ?x <http://dbpedia.org/property/ingredients> ?uri }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Central_European_Summer_Time> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Newspaper>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Paul_Paul> <http://dbpedia.org/ontology/doctoralAdvisor> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/presenter> <http://dbpedia.org/resource/Swedish_Academy> . ?x <http://dbpedia.org/ontology/Award> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/academicPhilosophy> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Journal>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lula_J._Davis> <http://dbpedia.org/ontology/residence> ?uri . <http://dbpedia.org/resource/John_McTaggart_(jockey)> <http://dbpedia.org/property/deathPlace> ?uri} "}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lake_Victoria> <http://dbpedia.org/ontology/nearestCity> ?uri } "}, "answers": ["http://dbpedia.org/resource/Tanzania", "http://dbpedia.org/resource/Entebbe", "http://dbpedia.org/resource/Uganda", "http://dbpedia.org/resource/Kenya", "http://dbpedia.org/resource/Musoma", "http://dbpedia.org/resource/Mwanza", "http://dbpedia.org/resource/Bukoba", "http://dbpedia.org/resource/Homa_Bay", "http://dbpedia.org/resource/Kendu_Bay", "http://dbpedia.org/resource/Jinja,_Uganda", "http://dbpedia.org/resource/Kampala", "http://dbpedia.org/resource/Kisumu"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Charles_LeMaire> <http://dbpedia.org/property/awards> ?uri . <http://dbpedia.org/resource/Eric_Roth> <http://dbpedia.org/ontology/award> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Academy_Awards"]}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/maintainedBy> <http://dbpedia.org/resource/Malaysian_PWD_Bamenda> . ?x <http://dbpedia.org/property/crosses> ?uri }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/company> <http://dbpedia.org/resource/HBO> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": ["48"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/canonizedBy> <http://dbpedia.org/resource/Pope_Benedict_XVI> . }"}, "answers": ["44"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/museum> <http://dbpedia.org/resource/Mus\u00e9e_d'Orsay> . ?x <http://dbpedia.org/property/work> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/university> <http://dbpedia.org/resource/University_of_Toronto> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/author> <http://dbpedia.org/resource/Miguel_de_Cervantes> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book>}"}, "answers": ["4"]}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/bandMember> <http://dbpedia.org/resource/Skull_Gang> } "}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/league> <http://dbpedia.org/resource/Czech_Extraliga> . ?x <http://dbpedia.org/ontology/formerTeam> ?uri . }"}, "answers": ["http://dbpedia.org/resource/HK_Dukla_Tren\u010d\u00edn", "http://dbpedia.org/resource/HK_Nitra", "http://dbpedia.org/resource/HK_Orange_20", "http://dbpedia.org/resource/Muskegon_Lumberjacks", "http://dbpedia.org/resource/Vancouver_Giants", "http://dbpedia.org/resource/HK_36_Skalica", "http://dbpedia.org/resource/Red_Deer_Rebels", "http://dbpedia.org/resource/HC_'05_Bansk\u00e1_Bystrica", "http://dbpedia.org/resource/HC_Slovan_Bratislava", "http://dbpedia.org/resource/HC_Sparta_Praha", "http://dbpedia.org/resource/Detroit_Red_Wings", "http://dbpedia.org/resource/Metallurg_Magnitogorsk", "http://dbpedia.org/resource/Carolina_Hurricanes", "http://dbpedia.org/resource/HC_Neftekhimik_Nizhnekamsk", "http://dbpedia.org/resource/HC_Ocel\u00e1\u0159i_T\u0159inec", "http://dbpedia.org/resource/Stockton_Heat", "http://dbpedia.org/resource/HC_Dynamo_Pardubice", "http://dbpedia.org/resource/V\u00e5lerenga_Ishockey", "http://dbpedia.org/resource/Furuset_Ishockey", "http://dbpedia.org/resource/GCK_Lions", "http://dbpedia.org/resource/Tappara", "http://dbpedia.org/resource/HC_B\u00edl\u00ed_Tyg\u0159i_Liberec", "http://dbpedia.org/resource/HC_Energie_Karlovy_Vary", "http://dbpedia.org/resource/HC_Kometa_Brno", "http://dbpedia.org/resource/HC_\u0160koda_Plze\u0148", "http://dbpedia.org/resource/Orli_Znojmo", "http://dbpedia.org/resource/Pir\u00e1ti_Chomutov", "http://dbpedia.org/resource/Mora_IK", "http://dbpedia.org/resource/Philadelphia_Flyers", "http://dbpedia.org/resource/Edmonton_Oilers", "http://dbpedia.org/resource/BK_Mlad\u00e1_Boleslav", "http://dbpedia.org/resource/HC_TPS", "http://dbpedia.org/resource/Lukko", "http://dbpedia.org/resource/Amur_Khabarovsk", "http://dbpedia.org/resource/JYP_Jyv\u00e4skyl\u00e4", "http://dbpedia.org/resource/Hartford_Wolf_Pack", "http://dbpedia.org/resource/HC_Slavia_Praha", "http://dbpedia.org/resource/HC_V\u00edtkovice_Ridera", "http://dbpedia.org/resource/Peoria_Rivermen_(AHL)", "http://dbpedia.org/resource/HK_Liep\u0101jas_Metalurgs", "http://dbpedia.org/resource/HK_Riga", "http://dbpedia.org/resource/Dinamo_Riga", "http://dbpedia.org/resource/SK_Trha\u010di_Kada\u0148", "http://dbpedia.org/resource/TJ_Slovan_D\u011b\u010d\u00edn", "http://dbpedia.org/resource/Espoo_Blues", "http://dbpedia.org/resource/HC_Ko\u0161ice", "http://dbpedia.org/resource/HC_Yugra", "http://dbpedia.org/resource/Oulun_K\u00e4rp\u00e4t", "http://dbpedia.org/resource/BK_Havl\u00ed\u010dk\u016fv_Brod", "http://dbpedia.org/resource/Motor_\u010cesk\u00e9_Bud\u011bjovice", "http://dbpedia.org/resource/Lausanne_HC", "http://dbpedia.org/resource/HC_Fr\u00fddek-M\u00edstek", "http://dbpedia.org/resource/HC_Sibir_Novosibirsk", "http://dbpedia.org/resource/London_Knights", "http://dbpedia.org/resource/Avangard_Omsk", "http://dbpedia.org/resource/Boston_Bruins", "http://dbpedia.org/resource/Buffalo_Sabres", "http://dbpedia.org/resource/St._Louis_Blues", "http://dbpedia.org/resource/SC_Rapperswil-Jona_Lakers", "http://dbpedia.org/resource/San_Jose_Sharks", "http://dbpedia.org/resource/New_Jersey_Devils", "http://dbpedia.org/resource/HC_Litv\u00ednov", "http://dbpedia.org/resource/Rochester_Americans", "http://dbpedia.org/resource/Metallurg_Novokuznetsk", "http://dbpedia.org/resource/Colorado_Avalanche", "http://dbpedia.org/resource/HC_Donbass", "http://dbpedia.org/resource/HC_Lev_Poprad", "http://dbpedia.org/resource/Florida_Panthers", "http://dbpedia.org/resource/Czech_Extraliga", "http://dbpedia.org/resource/National_Hockey_League", "http://dbpedia.org/resource/Ryt\u00ed\u0159i_Kladno", "http://dbpedia.org/resource/Ottawa_Senators", "http://dbpedia.org/resource/KalPa", "http://dbpedia.org/resource/\u0160HK_37_Pie\u0161\u0165any", "http://dbpedia.org/resource/Barys_Nur-Sultan", "http://dbpedia.org/resource/Charlotte_Checkers", "http://dbpedia.org/resource/Lahti_Pelicans", "http://dbpedia.org/resource/Manchester_Monarchs_(AHL)", "http://dbpedia.org/resource/Ontario_Reign", "http://dbpedia.org/resource/Utica_Comets", "http://dbpedia.org/resource/Chicago_Wolves", "http://dbpedia.org/resource/Gen\u00e8ve-Servette_HC", "http://dbpedia.org/resource/Columbus_Blue_Jackets", "http://dbpedia.org/resource/HC_Davos", "http://dbpedia.org/resource/Calgary_Flames", "http://dbpedia.org/resource/New_York_Rangers", "http://dbpedia.org/resource/Mountfield_HK", "http://dbpedia.org/resource/HC_Most", "http://dbpedia.org/resource/HC_Stadion_Litom\u011b\u0159ice", "http://dbpedia.org/resource/San_Antonio_Rampage", "http://dbpedia.org/resource/Utah_Grizzlies_(1995\u20132005)", "http://dbpedia.org/resource/Springfield_Falcons", "http://dbpedia.org/resource/HK_Martin", "http://dbpedia.org/resource/Buran_Voronezh", "http://dbpedia.org/resource/HC_Neman_Grodno", "http://dbpedia.org/resource/Hershey_Bears", "http://dbpedia.org/resource/Lowell_Devils", "http://dbpedia.org/resource/HK_Acroni_Jesenice", "http://dbpedia.org/resource/HK_Slavija", "http://dbpedia.org/resource/Team_Zagreb", "http://dbpedia.org/resource/AIK_IF", "http://dbpedia.org/resource/Aalborg_Pirates", "http://dbpedia.org/resource/Herlev_Eagles", "http://dbpedia.org/resource/KHL_Medve\u0161\u010dak_Zagreb", "http://dbpedia.org/resource/Sparta_Warriors", "http://dbpedia.org/resource/IK_Oskarshamn", "http://dbpedia.org/resource/R\u00f8dovre_Mighty_Bulls", "http://dbpedia.org/resource/AZ_Hav\u00ed\u0159ov", "http://dbpedia.org/resource/Stoczniowiec_Gda\u0144sk", "http://dbpedia.org/resource/Cracovia_(ice_hockey)", "http://dbpedia.org/resource/HC_Dukla_Jihlava", "http://dbpedia.org/resource/Fargo_Force", "http://dbpedia.org/resource/Edmonton_Oil_Kings", "http://dbpedia.org/resource/Kamloops_Blazers", "http://dbpedia.org/resource/Norfolk_Admirals_(AHL)", "http://dbpedia.org/resource/HC_Dynamo_Moscow", "http://dbpedia.org/resource/Severstal_Cherepovets", "http://dbpedia.org/resource/Nashville_Predators", "http://dbpedia.org/resource/Tampa_Bay_Lightning", "http://dbpedia.org/resource/HK_91_Senica", "http://dbpedia.org/resource/HK_Poprad", "http://dbpedia.org/resource/Draci_\u0160umperk", "http://dbpedia.org/resource/SK_Hor\u00e1ck\u00e1_Slavia_T\u0159eb\u00ed\u010d", "http://dbpedia.org/resource/PSG_Berani_Zl\u00edn", "http://dbpedia.org/resource/Ak_Bars_Kazan", "http://dbpedia.org/resource/HKM_Zvolen", "http://dbpedia.org/resource/HK_Spi\u0161sk\u00e1_Nov\u00e1_Ves", "http://dbpedia.org/resource/HC_07_Detva", "http://dbpedia.org/resource/HC_Kunlun_Red_Star", "http://dbpedia.org/resource/Chicago_Blackhawks", "http://dbpedia.org/resource/Winnipeg_Jets", "http://dbpedia.org/resource/Admiral_Vladivostok", "http://dbpedia.org/resource/HC_Sochi", "http://dbpedia.org/resource/HC_Spartak_Moscow", "http://dbpedia.org/resource/Providence_Bruins", "http://dbpedia.org/resource/Vlci_\u017dilina", "http://dbpedia.org/resource/HC_Vrchlab\u00ed", "http://dbpedia.org/resource/Everett_Silvertips", "http://dbpedia.org/resource/Saskatoon_Blades", "http://dbpedia.org/resource/Springfield_Indians", "http://dbpedia.org/resource/Peoria_Rivermen_(IHL)", "http://dbpedia.org/resource/Long_Beach_Ice_Dogs", "http://dbpedia.org/resource/Orlando_Solar_Bears_(IHL)", "http://dbpedia.org/resource/Toronto_Maple_Leafs", "http://dbpedia.org/resource/VHK_Vset\u00edn", "http://dbpedia.org/resource/Atlant_Moscow_Oblast", "http://dbpedia.org/resource/Atlanta_Thrashers", "http://dbpedia.org/resource/Traktor_Chelyabinsk", "http://dbpedia.org/resource/HC_Olomouc", "http://dbpedia.org/resource/HC_Lada_Togliatti", "http://dbpedia.org/resource/Metallurg_Zhlobin", "http://dbpedia.org/resource/Anaheim_Ducks", "http://dbpedia.org/resource/American_Hockey_League", "http://dbpedia.org/resource/Evansville_IceMen", "http://dbpedia.org/resource/ECHL", "http://dbpedia.org/resource/Elmira_Jackals", "http://dbpedia.org/resource/Binghamton_Senators", "http://dbpedia.org/resource/Washington_Capitals", "http://dbpedia.org/resource/Montreal_Canadiens", "http://dbpedia.org/resource/HC_Vityaz", "http://dbpedia.org/resource/F\u00e4rjestad_BK", "http://dbpedia.org/resource/Salavat_Yulaev_Ufa", "http://dbpedia.org/resource/HC_Lev_Praha", "http://dbpedia.org/resource/EC_KAC", "http://dbpedia.org/resource/Ilves", "http://dbpedia.org/resource/Jokerit", "http://dbpedia.org/resource/HC_Dinamo_Minsk", "http://dbpedia.org/resource/\u00d6rebro_HK", "http://dbpedia.org/resource/MHk_32_Liptovsk\u00fd_Mikul\u00e1\u0161", "http://dbpedia.org/resource/Lokomotiv_Yaroslavl", "http://dbpedia.org/resource/Avtomobilist_Yekaterinburg", "http://dbpedia.org/resource/EC_VSV", "http://dbpedia.org/resource/HC_Bozen\u2013Bolzano", "http://dbpedia.org/resource/HC_ZUBR_P\u0159erov", "http://dbpedia.org/resource/Rapaces_de_Gap", "http://dbpedia.org/resource/\u00c9toile_Noire_de_Strasbourg", "http://dbpedia.org/resource/Binghamton_Rangers", "http://dbpedia.org/resource/Porin_\u00c4ss\u00e4t_(men's_ice_hockey)", "http://dbpedia.org/resource/Portland_Pirates", "http://dbpedia.org/resource/Richmond_Renegades", "http://dbpedia.org/resource/EHC_Freiburg", "http://dbpedia.org/resource/Manitoba_Moose", "http://dbpedia.org/resource/Des_Moines_Buccaneers", "http://dbpedia.org/resource/HC_Slovan_\u00daste\u010dt\u00ed_Lvi", "http://dbpedia.org/resource/Dallas_Stars", "http://dbpedia.org/resource/Pittsburgh_Penguins", "http://dbpedia.org/resource/HC_Nov\u00e9_Z\u00e1mky", "http://dbpedia.org/resource/Amarillo_Wranglers_(NAHL)", "http://dbpedia.org/resource/HK_95_Panthers_Pova\u017esk\u00e1_Bystrica", "http://dbpedia.org/resource/SaiPa", "http://dbpedia.org/resource/Waterloo_Black_Hawks", "http://dbpedia.org/resource/Hamilton_Bulldogs_(AHL)", "http://dbpedia.org/resource/Kansas_City_Blades", "http://dbpedia.org/resource/Columbia_Inferno", "http://dbpedia.org/resource/Br\u00fbleurs_de_Loups", "http://dbpedia.org/resource/Dragons_de_Rouen", "http://dbpedia.org/resource/Vancouver_Canucks", "http://dbpedia.org/resource/Arizona_Coyotes", "http://dbpedia.org/resource/HC_RT_Torax_Poruba", "http://dbpedia.org/resource/Atlanta_Gladiators", "http://dbpedia.org/resource/Dornbirn_Bulldogs", "http://dbpedia.org/resource/Lemp\u00e4\u00e4l\u00e4n_Kisa", "http://dbpedia.org/resource/MHK_Dubnica_nad_V\u00e1hom", "http://dbpedia.org/resource/HK_Liep\u0101ja", "http://dbpedia.org/resource/SK_LSPA/Riga", "http://dbpedia.org/resource/Toronto_Marlies", "http://dbpedia.org/resource/Mikkelin_Jukurit", "http://dbpedia.org/resource/Torpedo_Nizhny_Novgorod", "http://dbpedia.org/resource/Bridgeport_Islanders", "http://dbpedia.org/resource/Modo_Hockey", "http://dbpedia.org/resource/Albany_River_Rats", "http://dbpedia.org/resource/Sarnia_Sting", "http://dbpedia.org/resource/HC_Ben\u00e1tky_nad_Jizerou", "http://dbpedia.org/resource/HC_Shakhtyor_Soligorsk", "http://dbpedia.org/resource/KLH_Vajgar_Jind\u0159ich\u016fv_Hradec", "http://dbpedia.org/resource/HC_Beroun\u0161t\u00ed_Medv\u011bdi", "http://dbpedia.org/resource/Russian_Superleague", "http://dbpedia.org/resource/Los_Angeles_Kings", "http://dbpedia.org/resource/Gatineau_Olympiques", "http://dbpedia.org/resource/HC_Fribourg-Gott\u00e9ron", "http://dbpedia.org/resource/Link\u00f6ping_HC", "http://dbpedia.org/resource/R\u00f6gle_BK", "http://dbpedia.org/resource/HK_Kurbads", "http://dbpedia.org/resource/HK_Riga_2000", "http://dbpedia.org/resource/Feh\u00e9rv\u00e1r_AV19", "http://dbpedia.org/resource/Idaho_Steelheads", "http://dbpedia.org/resource/Iisalmen_Peli-Karhut", "http://dbpedia.org/resource/Grand_Rapids_Griffins", "http://dbpedia.org/resource/Rockford_IceHogs", "http://dbpedia.org/resource/Bryn\u00e4s_IF", "http://dbpedia.org/resource/Milwaukee_Admirals", "http://dbpedia.org/resource/V\u00e4sterviks_IK", "http://dbpedia.org/resource/Omaha_Lancers", "http://dbpedia.org/resource/SHC_Klatovy", "http://dbpedia.org/resource/Debreceni_Hoki_Klub", "http://dbpedia.org/resource/Charlotte_Checkers_(1993\u20132010)", "http://dbpedia.org/resource/DVTK_Jegesmedv\u00e9k", "http://dbpedia.org/resource/MAC_Budapest", "http://dbpedia.org/resource/Orlando_Solar_Bears", "http://dbpedia.org/resource/HC_Pre\u0161ov_Penguins", "http://dbpedia.org/resource/HC_Ambr\u00ec-Piotta", "http://dbpedia.org/resource/HC_Izhstal", "http://dbpedia.org/resource/HC_Lugano", "http://dbpedia.org/resource/Skellefte\u00e5_AIK", "http://dbpedia.org/resource/Leksands_IF", "http://dbpedia.org/resource/Worcester_IceCats", "http://dbpedia.org/resource/Laval_Rocket", "http://dbpedia.org/resource/St._John's_IceCaps", "http://dbpedia.org/resource/EC_Red_Bull_Salzburg", "http://dbpedia.org/resource/Malm\u00f6_Redhawks", "http://dbpedia.org/resource/EHC_Kloten", "http://dbpedia.org/resource/Peterborough_Petes", "http://dbpedia.org/resource/Albany_Devils", "http://dbpedia.org/resource/Baie-Comeau_Drakkar", "http://dbpedia.org/resource/Adirondack_Phantoms", "http://dbpedia.org/resource/Rimouski_Oc\u00e9anic", "http://dbpedia.org/resource/Lehigh_Valley_Phantoms", "http://dbpedia.org/resource/HPK", "http://dbpedia.org/resource/Timr\u00e5_IK", "http://dbpedia.org/resource/Cincinnati_Mighty_Ducks", "http://dbpedia.org/resource/HC_CSKA_Moscow", "http://dbpedia.org/resource/Victoriaville_Tigres", "http://dbpedia.org/resource/Vegas_Golden_Knights", "http://dbpedia.org/resource/Fr\u00f6lunda_HC", "http://dbpedia.org/resource/HC_\u00c4ss\u00e4t_Pori_Oy", "http://dbpedia.org/resource/HC_B\u0159eclav", "http://dbpedia.org/resource/HC_Chrudim", "http://dbpedia.org/resource/Texas_Stars", "http://dbpedia.org/resource/Bakersfield_Condors", "http://dbpedia.org/resource/S\u00f6dert\u00e4lje_SK", "http://dbpedia.org/resource/Kazzinc-Torpedo", "http://dbpedia.org/resource/SKA_Saint_Petersburg", "http://dbpedia.org/resource/San_Jose_Barracuda", "http://dbpedia.org/resource/Tucson_Roadrunners", "http://dbpedia.org/resource/L\u00f6wen_Frankfurt", "http://dbpedia.org/resource/National_League_(ice_hockey)", "http://dbpedia.org/resource/Kontinental_Hockey_League", "http://dbpedia.org/resource/SC_Bern", "http://dbpedia.org/resource/Iowa_Stars", "http://dbpedia.org/resource/Lethbridge_Hurricanes", "http://dbpedia.org/resource/Acadie\u2013Bathurst_Titan", "http://dbpedia.org/resource/Drummondville_Voltigeurs", "http://dbpedia.org/resource/New_York_Islanders", "http://dbpedia.org/resource/St._John's_Maple_Leafs", "http://dbpedia.org/resource/EV_Zug", "http://dbpedia.org/resource/Soo_Eagles", "http://dbpedia.org/resource/BIK_Karlskoga", "http://dbpedia.org/resource/Victoria_Royals", "http://dbpedia.org/resource/V\u00e4xj\u00f6_Lakers", "http://dbpedia.org/resource/N\u00fcrnberg_Ice_Tigers", "http://dbpedia.org/resource/SCL_Tigers"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/leaderName> <http://dbpedia.org/resource/Grand_Masters'_Choice> . ?x <http://dbpedia.org/ontology/birthPlace> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Doonesbury_(musical)> <http://dbpedia.org/property/lyrics> ?uri } "}, "answers": ["http://dbpedia.org/resource/Garry_Trudeau"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/leaderName> <http://dbpedia.org/resource/Houston_City_Council> . ?x <http://dbpedia.org/ontology/location> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Charles_Phelps_Taft> <http://dbpedia.org/property/parents> ?uri . <http://dbpedia.org/resource/Robert_A._Taft> <http://dbpedia.org/ontology/parent> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/predecessor> <http://dbpedia.org/resource/Duncan_Sandys> . ?x <http://dbpedia.org/ontology/primeMinister> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Juhu_Aerodrome> <http://dbpedia.org/property/cityServed> ?uri } "}, "answers": ["Mumbai since 1928"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/assembly> <http://dbpedia.org/resource/Canada> . ?x <http://dbpedia.org/ontology/predecessor> ?uri . }"}, "answers": ["33"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/hubs> <http://dbpedia.org/resource/San_Francisco_International_Airport> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Airline>}"}, "answers": ["http://dbpedia.org/resource/Virgin_America", "http://dbpedia.org/resource/Alaska_Airlines", "http://dbpedia.org/resource/United_Airlines", "http://dbpedia.org/resource/United_Express", "http://dbpedia.org/resource/Republic_Airlines", "http://dbpedia.org/resource/Wings_West_Airlines", "http://dbpedia.org/resource/Hughes_Airwest", "http://dbpedia.org/resource/SkyWest_Airlines", "http://dbpedia.org/resource/Pacific_Air_Lines", "http://dbpedia.org/resource/Pacific_Southwest_Airlines"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/Miao_Rebellion> . ?x <http://dbpedia.org/ontology/religion> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/architect> <http://dbpedia.org/resource/Stanford_White> . ?x <http://dbpedia.org/property/restingplace> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/family> <http://dbpedia.org/resource/Meadow_Soprano> . ?x <http://dbpedia.org/property/religion> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/piano> <http://dbpedia.org/resource/Piano> . ?uri <http://dbpedia.org/ontology/voice> ?x . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/race> <http://dbpedia.org/resource/Breeders'_Cup_Juvenile_Turf> . ?x <http://dbpedia.org/property/locations> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/athletics> <http://dbpedia.org/resource/Bahamas_Association_of_Athletic_Associations> . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/University>}"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/manufacturer> <http://dbpedia.org/resource/Sony> . }"}, "answers": ["http://dbpedia.org/resource/Walkman", "http://dbpedia.org/resource/Walkman_F_Series", "http://dbpedia.org/resource/Walkman_Z_Series", "http://dbpedia.org/resource/Mylo_(Sony)", "http://dbpedia.org/resource/Sony_CLI\u00c9_PEG-SJ22", "http://dbpedia.org/resource/PlayStation_(console)", "http://dbpedia.org/resource/PlayStation_2", "http://dbpedia.org/resource/PlayStation_3", "http://dbpedia.org/resource/PlayStation_4", "http://dbpedia.org/resource/PlayStation_5", "http://dbpedia.org/resource/PlayStation_Portable", "http://dbpedia.org/resource/PlayStation_VR", "http://dbpedia.org/resource/PlayStation_Vita", "http://dbpedia.org/resource/PlayStation_controller", "http://dbpedia.org/resource/PocketStation", "http://dbpedia.org/resource/Sony_Dash", "http://dbpedia.org/resource/Magic_Link", "http://dbpedia.org/resource/Glasstron", "http://dbpedia.org/resource/Sixaxis", "http://dbpedia.org/resource/PlayStation_2_models", "http://dbpedia.org/resource/CLI\u00c9", "http://dbpedia.org/resource/PlayStation_Analog_Joystick", "http://dbpedia.org/resource/Sony_NW-A810", "http://dbpedia.org/resource/DualShock", "http://dbpedia.org/resource/Dual_Analog_Controller", "http://dbpedia.org/resource/Sony_Digital_Paper_DPTS1", "http://dbpedia.org/resource/Sony_Multimedia_CD-ROM_Player", "http://dbpedia.org/resource/Sony_Reader", "http://dbpedia.org/resource/Sony_Tablet", "http://dbpedia.org/resource/Sony_Vaio_PCV_series", "http://dbpedia.org/resource/Sony_Vision-S", "http://dbpedia.org/resource/Sony_Xperia_5_III", "http://dbpedia.org/resource/Sony_Xperia_E", "http://dbpedia.org/resource/Sony_Xperia_Tablet_Z", "http://dbpedia.org/resource/Sony_Xperia_Z2_tablet", "http://dbpedia.org/resource/Sony_Xperia_Z3_Tablet_Compact", "http://dbpedia.org/resource/MSX", "http://dbpedia.org/resource/PlayStation_models", "http://dbpedia.org/resource/Yahoo!_Smart_TV", "http://dbpedia.org/resource/PSX_(digital_video_recorder)", "http://dbpedia.org/resource/Super_NES_CD-ROM", "http://dbpedia.org/resource/Walkman_X_series", "http://dbpedia.org/resource/Sony_CLI\u00c9_NR_Series", "http://dbpedia.org/resource/Sony_CLI\u00c9_TJ_Series", "http://dbpedia.org/resource/Sony_Xperia__Sony_Xperia__1", "http://dbpedia.org/resource/PlayStation_Classic__PlayStation_Classic__1"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/channel> <http://dbpedia.org/resource/CBBC_(TV_channel)> . ?x <http://dbpedia.org/property/producer> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/recordLabel> <http://dbpedia.org/resource/RCA_Records> . ?uri <http://dbpedia.org/ontology/music> ?x . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ivan_Fomin> <http://dbpedia.org/ontology/significantBuilding> ?uri } "}, "answers": ["http://dbpedia.org/resource/Moscow", "http://dbpedia.org/resource/Moscow_Metro", "http://dbpedia.org/resource/Government_Building,_Kyiv", "http://dbpedia.org/resource/Krasnye_Vorota_(Moscow_Metro)", "http://dbpedia.org/resource/Kyiv"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/language> <http://dbpedia.org/resource/Swedish> . ?uri <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Stockholm> . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Aegean_Sea> <http://dbpedia.org/ontology/inflow> ?x . ?x <http://dbpedia.org/property/cities> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Sylvain_L\u00e9vi> <http://dbpedia.org/ontology/school> ?x . ?x <http://dbpedia.org/property/subject> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Tales_of_Suspense> <http://dbpedia.org/property/writers> ?uri } "}, "answers": ["http://dbpedia.org/resource/Larry_Lieber", "http://dbpedia.org/resource/Robert_Bernstein_(comics)", "http://dbpedia.org/resource/Stan_Lee", ""]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Abigail_Adams> <http://dbpedia.org/property/children> ?uri } "}, "answers": ["5"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Fr._Agnel_Multipurpose_School_and_Junior_College> <http://dbpedia.org/ontology/sport> ?uri . <http://dbpedia.org/resource/Vishwajyot_High_School> <http://dbpedia.org/property/team> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/prizes> <http://dbpedia.org/resource/National_Medal_of_Science> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/PhD>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/relation> <http://dbpedia.org/resource/Kennedy_family> . }"}, "answers": ["21"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/archipelago> <http://dbpedia.org/resource/Greater_Antilles> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Island>}"}, "answers": ["http://dbpedia.org/resource/Geography_of_Jamaica", "http://dbpedia.org/resource/Isla_Magueyes", "http://dbpedia.org/resource/Cayman_Brac", "http://dbpedia.org/resource/Cayo_Norte", "http://dbpedia.org/resource/Grand_Cayman", "http://dbpedia.org/resource/Hispaniola", "http://dbpedia.org/resource/Little_Cayman"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/commandStructure> <http://dbpedia.org/resource/The_Pentagon> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MilitaryUnit>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/mouthMountain> <http://dbpedia.org/resource/Old_Saybrook,_Connecticut> } "}, "answers": ["http://dbpedia.org/resource/Connecticut_River"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/team> <http://dbpedia.org/resource/San_Francisco_Giants> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/BaseballPlayer>}"}, "answers": ["http://dbpedia.org/resource/Lon_Simmons"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/city> <http://dbpedia.org/resource/Reading,_Berkshire> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/School>}"}, "answers": ["http://dbpedia.org/resource/Denefield_School", "http://dbpedia.org/resource/UTC_Reading", "http://dbpedia.org/resource/Hamilton_School", "http://dbpedia.org/resource/The_Abbey_School,_Reading", "http://dbpedia.org/resource/Reading_Blue_Coat_School", "http://dbpedia.org/resource/Reading_College", "http://dbpedia.org/resource/Reading_Girls'_School", "http://dbpedia.org/resource/Reading_School", "http://dbpedia.org/resource/Redlands_Primary_School,_Reading", "http://dbpedia.org/resource/The_Highlands_School,_Reading", "http://dbpedia.org/resource/The_Piggott_School", "http://dbpedia.org/resource/The_Willink_School", "http://dbpedia.org/resource/John_Madejski_Academy", "http://dbpedia.org/resource/Kendrick_School", "http://dbpedia.org/resource/Bulmershe_College", "http://dbpedia.org/resource/Caversham_Primary_School", "http://dbpedia.org/resource/Oakbank_School,_Ryeish_Green", "http://dbpedia.org/resource/Highdown_School", "http://dbpedia.org/resource/Maiden_Erlegh_School", "http://dbpedia.org/resource/Leighton_Park_School", "http://dbpedia.org/resource/Queen_Anne's_School", "http://dbpedia.org/resource/St_Joseph's_College,_Reading", "http://dbpedia.org/resource/Blessed_Hugh_Faringdon_Catholic_School", "http://dbpedia.org/resource/King's_Academy_Prospect", "http://dbpedia.org/resource/Padworth_College"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/tenants> <http://dbpedia.org/resource/Toronto_Marlies> . ?tenants ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/relatives> <http://dbpedia.org/resource/Uncle_Henry_(Oz)> . ?uri <http://dbpedia.org/ontology/relative> <http://dbpedia.org/resource/Aunt_Em> . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/parentCompany> <http://dbpedia.org/resource/Kumho_Asiana_Group> } "}, "answers": ["http://dbpedia.org/resource/Asiana_Airlines"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/location> <http://dbpedia.org/resource/Toronto> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Building>}"}, "answers": ["125"]}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/club> <http://dbpedia.org/resource/Middlesbrough_F.C> . . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/title> <http://dbpedia.org/resource/Miss_Louisiana_USA> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Spouse>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Fr._Agnel_Stadium> <http://dbpedia.org/property/owner> ?uri } "}, "answers": ["http://dbpedia.org/resource/Fr._Agnel_Multipurpose_School_and_Junior_College"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Atlanta> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Norway> <http://dbpedia.org/property/presenter> ?x . ?x <http://dbpedia.org/ontology/award> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/company> <http://dbpedia.org/resource/Comedy_Central> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": ["http://dbpedia.org/resource/Why%3F_with_Hannibal_Buress", "http://dbpedia.org/resource/Primetime_Glick", "http://dbpedia.org/resource/That's_My_Bush!", "http://dbpedia.org/resource/Jeff_&_Some_Aliens", "http://dbpedia.org/resource/Comedy_Central_Presents", "http://dbpedia.org/resource/TripTank", "http://dbpedia.org/resource/Drunk_History", "http://dbpedia.org/resource/South_Park"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/computingPlatform> <http://dbpedia.org/resource/PlayStation_4> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Software>}"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/influencedBy> <http://dbpedia.org/resource/Costanzo_Preve> . ?x <http://dbpedia.org/property/influncer> ?uri . }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Andrew_W._Lewis> <http://dbpedia.org/ontology/almaMater> ?uri } "}, "answers": ["http://dbpedia.org/resource/Dartmouth_College", "http://dbpedia.org/resource/Harvard_University", "http://dbpedia.org/resource/University_of_Chicago"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/nearestCity> <http://dbpedia.org/resource/Englewood,_Colorado> . ?x <http://dbpedia.org/ontology/district> ?uri }"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Marv_McFadden> <http://dbpedia.org/property/pastteams> ?uri } "}, "answers": ["1"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kakae> <http://dbpedia.org/ontology/title> ?uri } "}, "answers": ["High Chief of Maui"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Heroman> <http://dbpedia.org/ontology/author> ?uri } "}, "answers": ["http://dbpedia.org/resource/Stan_Lee"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ronda_Rousey> <http://dbpedia.org/property/champion> ?uri . <http://dbpedia.org/resource/Team_Tate> <http://dbpedia.org/ontology/tenant> ?uri} "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/country> <http://dbpedia.org/resource/Poland> . ?x <http://dbpedia.org/ontology/engineer> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/musicComposer> <http://dbpedia.org/resource/Bernard_Herrmann> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/magazine> <http://dbpedia.org/resource/Gangan_Comics> . ?uri <http://dbpedia.org/ontology/author> ?x . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/successor> <http://dbpedia.org/resource/Advanced_Micro_Devices> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Device>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Perianne_Jones> <http://dbpedia.org/ontology/club> ?uri } "}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/education> <http://dbpedia.org/resource/Middle_Temple> . ?x <http://dbpedia.org/ontology/opponent> ?uri . }"}, "answers": ["http://dbpedia.org/resource/Francis_Bacon", "http://dbpedia.org/resource/Edward_Coke", "http://dbpedia.org/resource/William_Knollys,_1st_Earl_of_Banbury", "http://dbpedia.org/resource/Frances_Carr,_Countess_of_Somerset", "http://dbpedia.org/resource/Anne_of_Denmark", "http://dbpedia.org/resource/Charles_Howard,_1st_Earl_of_Nottingham", "http://dbpedia.org/resource/Henry_Howard,_1st_Earl_of_Northampton", "http://dbpedia.org/resource/Thomas_Lake", "http://dbpedia.org/resource/Thomas_Howard,_1st_Earl_of_Suffolk"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/school> <http://dbpedia.org/resource/Private_school> . ?x <http://dbpedia.org/ontology/sport> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/director> <http://dbpedia.org/resource/Justin_Zackham> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": ["http://dbpedia.org/resource/Going_Greek", "http://dbpedia.org/resource/The_Big_Wedding"]}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Mekong_River_Commission> <http://dbpedia.org/ontology/membership> ?uri } "}, "answers": ["Cambodia,Laos,Thailand,Vietnam"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Five> <http://dbpedia.org/ontology/series> ?x . ?x <http://dbpedia.org/property/starring> ?uri . }"}, "answers": []}, {"query": {"sparql": "SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/placeOfDeath> <http://dbpedia.org/resource/Malaysia> . ?x <http://dbpedia.org/ontology/religion> ?uri . }"}, "answers": ["0"]}, {"query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/writer> <http://dbpedia.org/resource/HBO_Pakistan> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": []}, {"query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Doug_Acomb> <http://dbpedia.org/property/playedFor> ?uri } "}, "answers": ["http://dbpedia.org/resource/Toronto_Maple_Leafs"]}]} \ No newline at end of file diff --git a/data/predicted/lc-quad-requeried-linked-test-predicted-append-1-4-epochs.csv b/data/predicted/lc-quad-requeried-linked-test-predicted-append-1-large-3-epochs.csv similarity index 73% rename from data/predicted/lc-quad-requeried-linked-test-predicted-append-1-4-epochs.csv rename to data/predicted/lc-quad-requeried-linked-test-predicted-append-1-large-3-epochs.csv index d123e33ca22b4cf612a88106ed2fc3fe0537dfc3..b6ec6bbfbfb44f6d000049b676982da54f7ec995 100644 --- a/data/predicted/lc-quad-requeried-linked-test-predicted-append-1-4-epochs.csv +++ b/data/predicted/lc-quad-requeried-linked-test-predicted-append-1-large-3-epochs.csv @@ -1,729 +1,729 @@ text,summary -"Which sects people are part of local political parties which fall under the International Muslim Brotherhood? | 'local political parties'-res:Political_Parties_(book) | 'International Muslim Brotherhood'-res:Muslim_Brotherhood | 'sects'-dbp:seats | 'fall'-dbo:movement","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/party> <http://dbpedia.org/resource/International_Brotherhood> . ?x <http://dbpedia.org/ontology/religion> ?uri . }" +"Which sects people are part of local political parties which fall under the International Muslim Brotherhood? | 'local political parties'-res:Political_Parties_(book) | 'International Muslim Brotherhood'-res:Muslim_Brotherhood | 'sects'-dbp:seats | 'fall'-dbo:movement","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/party> <http://dbpedia.org/resource/International_Muslim_Brotherhood> . ?x <http://dbpedia.org/property/religion> ?uri . }" "Who is the office holder with deputies as Neil Brown and Andrew Peacock? | 'Neil Brown'-res:Neil_Brown_(Australian_politician) | 'Andrew Peacock'-res:Andrew_Peacock | 'office holder'-dbo:owner | 'deputies'-dbo:deputy","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/deputy> <http://dbpedia.org/resource/Neil_Brown_(Australian_politician)> . ?uri <http://dbpedia.org/ontology/officeHolder> <http://dbpedia.org/resource/Andrew_Peacock> . }" -"How many other battles have the military person fought whose one of the battles is World War II ? | 'II'-res:Ii | 'World War'-res:World_War_II | 'battles'-dbp:battles | 'battles'-dbp:battles"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/battle> <http://dbpedia.org/resource/World_War_II> . ?x <http://dbpedia.org/property/battles> ?uri }" -"Whose network's parent organisation is Comcast? | 'parent organisation'-res:Parent | 'Comcast'-res:Comcast | 'parent organisation'-dbo:parentOrganisation | 'network'-dbo:network","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/parentOrganisation> <http://dbpedia.org/resource/Comcast> . ?uri <http://dbpedia.org/property/network> ?x . }" -"Name the movies distributed by RKO Pictures and has music composer as Bernard Herrmann? | 'RKO Pictures'-res:RKO_Pictures | 'Bernard Herrmann'-res:Bernard_Herrmann | 'name'-dbp:name | 'movies'-dbo:film | 'distributed'-dbo:distributor | 'music composer'-dbo:creator","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/distributor> <http://dbpedia.org/resource/RKO_Pictures> . ?uri <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Bernard_Herrmann> . }" +"How many other battles have the military person fought whose one of the battles is World War II ? | 'II'-res:Ii | 'World War'-res:World_War_II | 'battles'-dbp:battles | 'battles'-dbp:battles"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/World_War_II> . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MilitaryPerson>}" +"Whose network's parent organisation is Comcast? | 'parent organisation'-res:Parent | 'Comcast'-res:Comcast | 'parent organisation'-dbo:parentOrganisation | 'network'-dbo:network","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/parentOrganisation> <http://dbpedia.org/resource/Comcast> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Network>}" +"Name the movies distributed by RKO Pictures and has music composer as Bernard Herrmann? | 'RKO Pictures'-res:RKO_Pictures | 'Bernard Herrmann'-res:Bernard_Herrmann | 'name'-dbp:name | 'movies'-dbo:film | 'distributed'-dbo:distributor | 'music composer'-dbo:creator","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/distributor> <http://dbpedia.org/resource/RKO_Pictures> . ?uri <http://dbpedia.org/property/musicComposer> <http://dbpedia.org/resource/Bernard_Herrmann> . }" "What is the magazine which have been founded by Ralph J. Gleason? | 'J'-res:J | 'Ralph Gleason'-res:Ralph_J._Gleason | 'founded by'-dbo:founder | 'magazine'-dbo:Magazine","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/founder> <http://dbpedia.org/resource/Ralph_J._Gleason> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Magazine>}" -"In which cities can the beverage related to Barq's be found? | 'Barq'-res:Barq | 'cities'-dbo:country | 'beverage'-dbo:strength | 'related'-dbo:related","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Barq's> related ?x <http://dbpedia.org/property/city> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Beverage>}" -"Who was in military unit which played the role of Air interdiction? | 'Air interdiction'-res:Air_interdiction | 'military unit'-dbo:militaryUnit | 'played'-dbo:portrayer | 'role'-dbo:role","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Air_interdiction> <http://dbpedia.org/property/role> ?x . ?x <http://dbpedia.org/ontology/militaryUnit> ?uri . }" +"In which cities can the beverage related to Barq's be found? | 'Barq'-res:Barq | 'cities'-dbo:country | 'beverage'-dbo:strength | 'related'-dbo:related","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Barq> <http://dbpedia.org/ontology/related> ?x . ?x <http://dbpedia.org/property/cities> ?uri . }" +"Who was in military unit which played the role of Air interdiction? | 'Air interdiction'-res:Air_interdiction | 'military unit'-dbo:militaryUnit | 'played'-dbo:portrayer | 'role'-dbo:role","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/role> <http://dbpedia.org/resource/Air_interdiction> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MilitaryUnit>}" "Who are the current members of Insects vs Robots? | 'Insects vs Robots'-res:Insects_vs_Robots | 'current members'-dbp:currentMembers"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Insects_vs_Robots> <http://dbpedia.org/property/currentMembers> ?uri } " -"Name the nationalteam of Trn Vit Hng ? | 'Trn Vit Hng'-res:Trần_Việt_Hương | 'nationalteam'-dbp:nationalteam"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Trên_Việt_Hương> <http://dbpedia.org/property/nationalteam> ?uri } " +"Name the nationalteam of Trn Vit Hng ? | 'Trn Vit Hng'-res:Trần_Việt_Hương | 'nationalteam'-dbp:nationalteam"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Trần_Việt_Hương> <http://dbpedia.org/property/nationalteam> ?uri } " "Whihc uni did Joshua A. Siegel attend ? | 'whihc uni'-res:University_Station_(MTR) | 'A'-res:A | 'Joshua Siegel'-res:Joshua_A._Siegel | 'attend'-dbp:education"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Joshua_A._Siegel> <http://dbpedia.org/property/education> ?uri } " "How many books are written by the author who is famous for Novelas Ejemplares? | 'Novelas Ejemplares'-res:Novelas_ejemplares | 'books'-dbo:volume | 'written'-dbo:animal | 'author'-dbo:author | 'famous'-dbo:service","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/notableWork> <http://dbpedia.org/resource/Novelas_ejemplares> . ?uri <http://dbpedia.org/property/author> ?x . }" -"to which university did both, the Stanford Cardinal and Gerald Reaven go? | 'both,'-res:Both | 'Stanford Cardinal'-res:Stanford_Cardinal | 'Gerald Reaven'-res:Gerald_Reaven | 'university'-dbp:university","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Stanford_Cardinal> . ?uri . <http://dbpedia.org/resource/Gerald_Reaven> <http://dbpedia.org/property/university> ?uri . }" +"to which university did both, the Stanford Cardinal and Gerald Reaven go? | 'both,'-res:Both | 'Stanford Cardinal'-res:Stanford_Cardinal | 'Gerald Reaven'-res:Gerald_Reaven | 'university'-dbp:university","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Stanford_Cardinal> <http://dbpedia.org/ontology/institution> ?uri . <http://dbpedia.org/resource/Gerald_Reaven> <http://dbpedia.org/property/university> ?uri . }" "where did Deion Sanders debut? | 'Deion Sanders'-res:Deion_Sanders | 'debut'-dbp:debutteam"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Deion_Sanders> <http://dbpedia.org/property/debutteam> ?uri } " "What cities are nearer to Fuountain Lake Farm? | 'Fuountain Lake Farm'-res:Fountain_Lake_Farm | 'nearer'-dbo:nearestCity"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Fountain_Lake_Farm> <http://dbpedia.org/ontology/nearestCity> ?uri } " "Which artists trained in San Francisco Art Institute? | 'San Francisco Art Institute'-res:San_Francisco_Art_Institute | 'trained'-dbp:training | 'artist'-dbo:Artist","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/training> <http://dbpedia.org/resource/San_Francisco_Art_Institute> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Artist>}" -"Name the country with currency as Aureus ? | 'Aureus'-res:Aureus_University_School_of_Medicine | 'name'-dbp:name | 'country'-dbo:kingdom | 'currency'-dbo:currency","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/currency> <http://dbpedia.org/resource/Aureus_University_School_of_Medicine> . }" -"what awards have been given to A. Peter Dewey? | 'A'-res:A | 'Peter Dewey'-res:A._Peter_Dewey | 'awards'-dbo:award"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/A._Peter_Dewey> <http://dbpedia.org/property/awards> ?uri } " -"Muhammad Yunus has won how many awards? | 'Muhammad yunus'-res:Muhammad_Yunus | 'won'-dbo:award | 'awards'-dbo:award","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/award> <http://dbpedia.org/resource/Muhammad_Yunus> . }" -"List the associates of bands which have a label by Motown ? | 'Motown'-res:Motown | 'associates'-dbo:team | 'bands'-dbo:staff | 'label'-dbp:label","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/label> <http://dbpedia.org/resource/Motown> . ?x <http://dbpedia.org/property/associatedBand> ?uri . }" +"Name the country with currency as Aureus ? | 'Aureus'-res:Aureus_University_School_of_Medicine | 'name'-dbp:name | 'country'-dbo:kingdom | 'currency'-dbo:currency","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/currency> <http://dbpedia.org/resource/Aureus_University_School_of_Medicine> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Country>}" +"what awards have been given to A. Peter Dewey? | 'A'-res:A | 'Peter Dewey'-res:A._Peter_Dewey | 'awards'-dbo:award","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/A._Peter_Dewey> <http://dbpedia.org/ontology/award> ?x . ?x <http://dbpedia.org/property/awards> ?uri . }" +"Muhammad Yunus has won how many awards? | 'Muhammad yunus'-res:Muhammad_Yunus | 'won'-dbo:award | 'awards'-dbo:award","SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Muhammad_Yunus> <http://dbpedia.org/ontology/award> ?uri . }" +"List the associates of bands which have a label by Motown ? | 'Motown'-res:Motown | 'associates'-dbo:team | 'bands'-dbo:staff | 'label'-dbp:label","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Motown> . ?x <http://dbpedia.org/ontology/associatedMusicalArtist> ?uri . }" "What is the faith of Kwai Chang Caine ? | 'Kwai Chang Caine'-res:Kwai_Chang_Caine | 'faith'-dbo:religion"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kwai_Chang_Caine> <http://dbpedia.org/ontology/religion> ?uri } " -"What are the houses of the legislature where the leader is called Pullaiahgaripalli ? | 'Pullaiahgaripalli'-res:Pullaiahgaripalli | 'houses'-dbo:house | 'legislature'-dbo:politicalPartyInLegislature | 'leader'-dbo:leader | 'called'-dbp:nickname","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/leader> <http://dbpedia.org/resource/Pullaiahgaripalli> . ?x <http://dbpedia.org/ontology/house> ?uri . }" +"What are the houses of the legislature where the leader is called Pullaiahgaripalli ? | 'Pullaiahgaripalli'-res:Pullaiahgaripalli | 'houses'-dbo:house | 'legislature'-dbo:politicalPartyInLegislature | 'leader'-dbo:leader | 'called'-dbp:nickname","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/leaderName> <http://dbpedia.org/resource/Pullaiahgaripalli> . ?x <http://dbpedia.org/ontology/house> ?uri . }" "How many religions are followed by the group whose architectural style can be seen on Sanggar Agung? | 'Sanggar Agung'-res:Sanggar_Agung | 'religions'-dbo:religion | 'architectural style'-dbo:type","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/architecturalStyle> <http://dbpedia.org/resource/Sanggar_Agung> . ?x <http://dbpedia.org/ontology/religion> ?uri . }" "How many things are written in C++? | 'C++'-res:C++ | 'written'-dbp:writtenIn","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/writtenIn> <http://dbpedia.org/resource/C++> . }" -"What are the hubs of PLUS Helicopter Services, a highway helicopter unit of PLUS Expressways? | 'PLUS'-res:Plus | 'Helicopter Services,'-res:PLUS_Expressways | 'highway helicopter unit'-res:Serbian_police_helicopter_unit | 'PLUS'-res:Plus | 'Expressways'-res:Expressways_of_Singapore | 'hubs'-dbp:hubs"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/PLUS_Expressways> <http://dbpedia.org/ontology/highwayHorseUnit> ?uri . <http://dbpedia.org/resource/PLUS_Hồng_services> <http://dbpedia.org/property/hubs> ?uri} " -"Who are the architect of the stadium whose one of the architect is louis D. Astorino ? | 'louis D. Astorino'-res:Louis_D._Astorino | 'architect'-dbo:architect | 'stadium'-dbo:stadium | 'architect'-dbo:architect","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/architect> <http://dbpedia.org/resource/Louis_D._Astorino> . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Stadium>}" -"What is a common ingredient used in boyt Blodpalt and Kaszanka ? | 'Boyt blodpalt'-res:Blodpalt | 'Kaszanka'-res:Kaszanka | 'common ingredient'-dbo:ingredient","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Blodpalt> <http://dbpedia.org/ontology/ingredient> ?uri . <http://dbpedia.org/resource/Kaszanka> <http://dbpedia.org/property/origin> ?uri . }" +"What are the hubs of PLUS Helicopter Services, a highway helicopter unit of PLUS Expressways? | 'PLUS'-res:Plus | 'Helicopter Services,'-res:PLUS_Expressways | 'highway helicopter unit'-res:Serbian_police_helicopter_unit | 'PLUS'-res:Plus | 'Expressways'-res:Expressways_of_Singapore | 'hubs'-dbp:hubs"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/PLUS_Expressways> <http://dbpedia.org/property/hubs> ?uri } " +"Who are the architect of the stadium whose one of the architect is louis D. Astorino ? | 'louis D. Astorino'-res:Louis_D._Astorino | 'architect'-dbo:architect | 'stadium'-dbo:stadium | 'architect'-dbo:architect","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/architect> <http://dbpedia.org/resource/Louis_D._Astorino> . ?x <http://dbpedia.org/property/designer> ?uri . }" +"What is a common ingredient used in boyt Blodpalt and Kaszanka ? | 'Boyt blodpalt'-res:Blodpalt | 'Kaszanka'-res:Kaszanka | 'common ingredient'-dbo:ingredient"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kaszanka> <http://dbpedia.org/ontology/ingredient> ?uri } " "Which movies's screenplay is written by Akiva Goldsman | 'screenplay'-res:Katha_Screenplay_Darsakatvam_Appalaraju | 'Akiva Goldsman'-res:Akiva_Goldsman | 'screenplay'-dbp:screenplay | 'movie'-dbo:Film","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/screenplay> <http://dbpedia.org/resource/Akiva_Goldsman> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" -"Give me all commanders which had an important role in both, the Battle of Fort Stephenson and Battle of the Thames? | 'Battle of Fort Stephenson'-res:Battle_of_Fort_Stephenson | 'Battle of the Thames'-res:Battle_of_the_Thames | 'commanders'-dbo:commander | 'role'-dbp:place","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Battle_of_Fort_Stephenson> <http://dbpedia.org/ontology/commander> ?x . ?x <http://dbpedia.org/property/place> ?uri . }" -"To which series does the book belong which came after the Blade Runner 2? | 'Blade Runner 2'-res:Blade_Runner_2:_The_Edge_of_Human | 'series'-dbo:series | 'book'-dbo:volume | 'belong'-dbo:date","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Blade_Runner_2:_The_Edge_of_Human> <http://dbpedia.org/ontology/series> ?x . ?x <http://dbpedia.org/property/subject> ?uri . }" +"Give me all commanders which had an important role in both, the Battle of Fort Stephenson and Battle of the Thames? | 'Battle of Fort Stephenson'-res:Battle_of_Fort_Stephenson | 'Battle of the Thames'-res:Battle_of_the_Thames | 'commanders'-dbo:commander | 'role'-dbp:place","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/commander> <http://dbpedia.org/resource/Battle_of_Fort_Stephenson> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MilitaryConflict>}" +"To which series does the book belong which came after the Blade Runner 2? | 'Blade Runner 2'-res:Blade_Runner_2:_The_Edge_of_Human | 'series'-dbo:series | 'book'-dbo:volume | 'belong'-dbo:date","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/successor> <http://dbpedia.org/resource/Blade_Runner_2:_The_Edge_of_Human> . ?x <http://dbpedia.org/property/series> ?uri . }" "In which city did The Ultimate Fighter: Team Rousey vs. Team Tate take place ? | 'The Ultimate Fighter: Team Rousey vs Team Tate'-res:The_Ultimate_Fighter:_Team_Rousey_vs._Team_Tate | 'city'-dbp:city | 'place'-dbo:place"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Ultimate_Fighter:_Team_Rousey_vs._Team_Tate> <http://dbpedia.org/property/city> ?uri } " -"What is the organisation whose purposes are Environmentalism and Peace? | 'Environmentalism and Peace'-res:Peace | 'organisation'-dbo:organisation | 'purposes'-dbp:purpose","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/purpose> <http://dbpedia.org/resource/Environmentalism> and Peace . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Organisation>}" -"Count the number of sports team members which have player named Matt Williams ? | 'Matt Williams'-res:Matt_Williams_(New_Zealand_footballer) | 'name'-dbp:name | 'name'-dbp:name"," SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/name> <http://dbpedia.org/resource/Matt_Williams_(New_Zealand_footballer)> } " -"How many different people own the Timeform award winners? | 'Timeform award winners'-res:Timeform","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/award> <http://dbpedia.org/resource/Timeform> . ?x <http://dbpedia.org/property/owner> ?uri . }" -"Which city is known for the people working in the western penn hospital? | 'western penn hospital'-res:Toronto_Western_Hospital | 'city'-dbo:city | 'working'-dbo:language","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/employer> <http://dbpedia.org/resource/Toronto_Western_Hospital> . ?x <http://dbpedia.org/ontology/knownFor> ?uri . }" -"Which education center Sidney Catlin Partrodge attended which was also the alma mater of Lisa Brummel ? | 'education center Sidney Catlin Partrodge'-res:Sidney_Catlin_Partridge | 'Lisa Brummel'-res:Lisa_Brummel | 'attended'-dbo:fat | 'alma mater'-dbo:almaMater"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Sidney_Catlin_Partridge> <http://dbpedia.org/ontology/education> ?uri . <http://dbpedia.org/resource/Lisa_Brummel> <http://dbpedia.org/property/almaMater> ?uri} " +"What is the organisation whose purposes are Environmentalism and Peace? | 'Environmentalism and Peace'-res:Peace | 'organisation'-dbo:organisation | 'purposes'-dbp:purpose","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/purpose> <http://dbpedia.org/resource/Environmentalism> . ?uri <http://dbpedia.org/ontology/organisation> <http://dbpedia.org/resource/Peace> . }" +"Count the number of sports team members which have player named Matt Williams ? | 'Matt Williams'-res:Matt_Williams_(New_Zealand_footballer) | 'name'-dbp:name | 'name'-dbp:name"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/name> <http://dbpedia.org/resource/Matt_Williams_(New_Zealand_footballer)> . ?x <http://dbpedia.org/property/name> ?uri }" +"How many different people own the Timeform award winners? | 'Timeform award winners'-res:Timeform","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/awards> <http://dbpedia.org/resource/Timeform> . ?x <http://dbpedia.org/ontology/owner> ?uri . }" +"Which city is known for the people working in the western penn hospital? | 'western penn hospital'-res:Toronto_Western_Hospital | 'city'-dbo:city | 'working'-dbo:language","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/hospital> <http://dbpedia.org/resource/Toronto_Western_Hospital> . ?x <http://dbpedia.org/ontology/knownFor> ?uri . }" +"Which education center Sidney Catlin Partrodge attended which was also the alma mater of Lisa Brummel ? | 'education center Sidney Catlin Partrodge'-res:Sidney_Catlin_Partridge | 'Lisa Brummel'-res:Lisa_Brummel | 'attended'-dbo:fat | 'alma mater'-dbo:almaMater"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Sidney_Catlin_Partridge> <http://dbpedia.org/property/education> ?uri . <http://dbpedia.org/resource/Lisa_Brummel> <http://dbpedia.org/ontology/almaMater> ?uri} " "How many subjects are covered in the publications of Doubleday? | 'Doubleday'-res:Doubleday_(publisher) | 'subjects'-dbo:discipline | 'covered'-dbo:frozen | 'publications'-dbp:publications","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/publisher> <http://dbpedia.org/resource/Doubleday_(publisher)> . ?x <http://dbpedia.org/ontology/subject> ?uri . }" -"List the served region of the organisations of Trade association. | 'Trade association'-res:Trade_association | 'served region'-dbo:regionServed | 'organisations'-dbo:organisation","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/regionServed> <http://dbpedia.org/resource/Trade_association> . ?x <http://dbpedia.org/property/organisation> ?uri . }" +"List the served region of the organisations of Trade association. | 'Trade association'-res:Trade_association | 'served region'-dbo:regionServed | 'organisations'-dbo:organisation"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Trade_association> <http://dbpedia.org/property/regionServed> ?uri } " "Who composed the music for Tonight's the Night ? | 'Tonight's the Night'-res:Tonight's_the_Night_(2003_musical) | 'music'-dbp:music"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Tonight's_the_Night_(2003_musical)> <http://dbpedia.org/property/music> ?uri } " "What awards have been given to race horses bred by Bert Michell? | 'Bert Michell'-res:Bert_S._Michell | 'awards'-dbo:award | 'race horses'-dbo:race | 'bred'-dbo:genus","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/breeder> <http://dbpedia.org/resource/Bert_S._Michell> . ?x <http://dbpedia.org/property/awards> ?uri . }" -"Which party won the elections when Y.S. Rajasekhara Reddy was in power? | 'YS'-res:Ys | 'Rajasekhara Reddy'-res:Y._S._Rajasekhara_Reddy | 'party'-dbo:party | 'won'-dbo:city | 'elections'-dbo:selection | 'power'-dbo:weight","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/leader> <http://dbpedia.org/resource/Y._S._Rajasekhara_Reddy> . ?x <http://dbpedia.org/property/affiliation> ?uri . }" +"Which party won the elections when Y.S. Rajasekhara Reddy was in power? | 'YS'-res:Ys | 'Rajasekhara Reddy'-res:Y._S._Rajasekhara_Reddy | 'party'-dbo:party | 'won'-dbo:city | 'elections'-dbo:selection | 'power'-dbo:weight","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Y._S._Rajasekhara_Reddy> <http://dbpedia.org/property/leaderName> ?x . ?x <http://dbpedia.org/ontology/party> ?uri . }" "Who is the producer of Frampton's Camel ? | 'Frampton's Camel'-res:Frampton's_Camel | 'producer'-dbo:producer"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Frampton's_Camel> <http://dbpedia.org/ontology/producer> ?uri } " -"What is the alma mater of the scientist who is known for Rational analysis ? | 'scientist'-res:Scientist | 'Rational analysis'-res:Rational_analysis | 'alma mater'-dbo:school","SELECT DISTINCT ?uri WHERE { ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}" -"Whose relatives are Clan McDuck and Huey, Dewey, and Louie? | 'Clan McDuck'-res:Clan_McDuck | 'Huey, Dewey,'-res:Huey,_Dewey,_and_Louie | 'Louie'-res:Louie | 'relatives'-dbp:relatives | 'relatives'-dbp:relatives","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/relatives> <http://dbpedia.org/resource/Clan_McDuck> . ?uri <http://dbpedia.org/ontology/relative> <http://dbpedia.org/resource/Louie> . }" +"What is the alma mater of the scientist who is known for Rational analysis ? | 'scientist'-res:Scientist | 'Rational analysis'-res:Rational_analysis | 'alma mater'-dbo:school","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/knownFor> <http://dbpedia.org/resource/Rational_analysis> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}" +"Whose relatives are Clan McDuck and Huey, Dewey, and Louie? | 'Clan McDuck'-res:Clan_McDuck | 'Huey, Dewey,'-res:Huey,_Dewey,_and_Louie | 'Louie'-res:Louie | 'relatives'-dbp:relatives | 'relatives'-dbp:relatives","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Clan_McDuck> <http://dbpedia.org/property/relatives> ?uri . <http://dbpedia.org/resource/Huey,_Dewey> <http://dbpedia.org/ontology/relative> ?uri . }" "What currencies are used in the country whose capital is Podgorica? | 'Currencies'-res:Currencies_of_Puerto_Rico | 'Podgorica'-res:Podgorica | 'capital'-dbo:capital | 'currencies'-dbp:currency","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/capital> <http://dbpedia.org/resource/Podgorica> . ?x <http://dbpedia.org/property/currency> ?uri . }" "Where was William Anthony trained ? | 'William Anthony'-res:William_Anthony_(artist) | 'trained'-dbo:training"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/William_Anthony_(artist)> <http://dbpedia.org/ontology/training> ?uri } " -"Count all the ethinic group who speaks language which belongs to Anglo-Frisian language family ? | 'Anglo-Frisian language'-res:Anglo-Frisian_languages | 'count'-dbo:country | 'ethinic'-dbo:ethnicGroup | 'speaks'-dbo:language | 'language'-dbo:languageFamily | 'belongs'-dbp:date","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/languageFamily> <http://dbpedia.org/resource/Anglo-Frisian_languages> . }" +"Count all the ethinic group who speaks language which belongs to Anglo-Frisian language family ? | 'Anglo-Frisian language'-res:Anglo-Frisian_languages | 'count'-dbo:country | 'ethinic'-dbo:ethnicGroup | 'speaks'-dbo:language | 'language'-dbo:languageFamily | 'belongs'-dbp:date","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/languageFamily> <http://dbpedia.org/resource/Anglo-Frisian_languages> . ?x <http://dbpedia.org/property/ethnicGroup> ?uri . }" "Which comic characters were created by Paul Dini? | 'Paul Dini'-res:Paul_Dini | 'created by'-dbp:creators | 'characters'-dbo:ComicsCharacter","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/creators> <http://dbpedia.org/resource/Paul_Dini> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/ComicsCharacter>}" -"Which city council owns the Ted Williams tunnel and Leonard Memorial ridge? | 'Ted Williams tunnel'-res:Ted_Williams_Tunnel | 'Leonard Memorial ridge'-res:Ridge | 'owns'-dbo:owner | 'owns'-dbo:owner","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ted_Williams_Tunnel> <http://dbpedia.org/ontology/owner> ?uri . <http://dbpedia.org/resource/Leonard_Meme_(locatedInArea)> <http://dbpedia.org/property/owners> ?uri . }" -"How many bands collaborated with artists who signed up with EMI? | 'EMI'-res:Emi | 'bands'-dbo:staff | 'collaborated'-dbo:band | 'artists'-dbo:rkdArtistsId | 'signed'-dbo:movement","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/recordLabel> <http://dbpedia.org/resource/EMI> . ?uri <http://dbpedia.org/property/associatedMusicalArtist> ?x . }" -"How many TV shows are of the company which are of company which is a subsidiary of Big Ticket Entertainment ? | 'entertainment ticket'-res:Big_Ticket_Entertainment | 'shows'-dbo:place | 'company'-dbo:company | 'company'-dbo:company | 'subsidiary'-dbo:subsidiary"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/subsidiary> <http://dbpedia.org/resource/Big_Ticket_Entertainment> . ?uri <http://dbpedia.org/property/company> ?x }" -"In how many places are Marjas found? | 'Marjas'-res:Barjas | 'places'-dbo:height","SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Barjas> <http://dbpedia.org/ontology/restingPlace> ?uri . }" -"Whose shrines are in a place governed by Justin Trudeau? | 'Justin Trudeau'-res:Justin_Trudeau | 'shrines'-dbo:chain | 'place'-dbo:place | 'governed'-dbo:director","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/leaderName> <http://dbpedia.org/resource/Justin_Trudeau> . ?uri <http://dbpedia.org/property/shrines> ?x . }" +"Which city council owns the Ted Williams tunnel and Leonard Memorial ridge? | 'Ted Williams tunnel'-res:Ted_Williams_Tunnel | 'Leonard Memorial ridge'-res:Ridge | 'owns'-dbo:owner | 'owns'-dbo:owner","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ted_Williams_Tunnel> <http://dbpedia.org/property/owning> ?uri . <http://dbpedia.org/resource/Leonard_Memorial_Ridge> <http://dbpedia.org/ontology/owner> ?uri . }" +"How many bands collaborated with artists who signed up with EMI? | 'EMI'-res:Emi | 'bands'-dbo:staff | 'collaborated'-dbo:band | 'artists'-dbo:rkdArtistsId | 'signed'-dbo:movement","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/recordLabel> <http://dbpedia.org/resource/EMi> . ?x <http://dbpedia.org/ontology/associatedMusicalArtist> ?uri . }" +"How many TV shows are of the company which are of company which is a subsidiary of Big Ticket Entertainment ? | 'entertainment ticket'-res:Big_Ticket_Entertainment | 'shows'-dbo:place | 'company'-dbo:company | 'company'-dbo:company | 'subsidiary'-dbo:subsidiary","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/subsidiary> <http://dbpedia.org/resource/Big_Ticket_Entertainment> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" +"In how many places are Marjas found? | 'Marjas'-res:Barjas | 'places'-dbo:height","SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Barjas> <http://dbpedia.org/ontology/locationCity> ?uri . }" +"Whose shrines are in a place governed by Justin Trudeau? | 'Justin Trudeau'-res:Justin_Trudeau | 'shrines'-dbo:chain | 'place'-dbo:place | 'governed'-dbo:director","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/leaderName> <http://dbpedia.org/resource/Justin_Trudeau> . ?x <http://dbpedia.org/ontology/restingPlace> ?uri . }" "Who is the leader of Hackweiser ? | 'Hackweiser'-res:Hackweiser | 'leader'-dbp:leaderName"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Hackweiser> <http://dbpedia.org/property/leaderName> ?uri } " "Where was the successor of Hank Brown born? | 'Hank Brown'-res:Hank_Brown | 'successor'-dbo:successor | 'born'-dbo:birthPlace","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Hank_Brown> <http://dbpedia.org/property/successor> ?x . ?x <http://dbpedia.org/ontology/birthPlace> ?uri . }" -"What is the relegious affiliations of Katyayana ? | 'relegious affiliations'-res:Smithsonian_Affiliations | 'Katyayana'-res:Katyayana_(Buddhist) | 'relegious'-dbo:religion"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Katyayana_(Buddhist)> <http://dbpedia.org/property/religion> ?uri } " -"Which party has come in power in Mumbai North? | 'Mumbai North'-res:Mumbai_North_(Lok_Sabha_constituency) | 'in power'-dbp:constituency | 'party'-dbo:party"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Mumbai_North_(Lok_Sabha_constituency)> <http://dbpedia.org/property/party> ?uri } " -"Where are all the protected areas near Bend, Oregon? | 'Bend, Oregon'-res:Bend,_Oregon | 'protected'-dbo:custodian","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/custodian> <http://dbpedia.org/resource/Bend,_Oregon> . }" -"which movies have been published by Cinema International Corporation? | 'Cinema International Corporation'-res:Cinema_International_Corporation | 'published'-dbo:distributor"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/distributor> <http://dbpedia.org/resource/Cinema_International_Corporation> } " -"Count the total number of academic discipline of the journals whose one of the academic discipline is Neuroimaging ? | 'Neuroimaging'-res:Neuroimaging | 'count'-dbo:type | 'total'-dbo:result | 'academic discipline'-dbo:abstract | 'journals'-dbp:journal | 'academic discipline'-dbo:abstract"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/academicDiscipline> <http://dbpedia.org/resource/Neuroimaging> . ?x <http://dbpedia.org/property/discipline> ?uri }" -"What are some cities which have a Ferris wheel? | 'Ferris wheel'-res:Ferris_wheel | 'cities'-dbo:country"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ferris_wheel> <http://dbpedia.org/ontology/country> ?uri } " +"What is the relegious affiliations of Katyayana ? | 'relegious affiliations'-res:Smithsonian_Affiliations | 'Katyayana'-res:Katyayana_(Buddhist) | 'relegious'-dbo:religion"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Katyayana_(Buddhist)> <http://dbpedia.org/property/affiliations> ?uri } " +"Which party has come in power in Mumbai North? | 'Mumbai North'-res:Mumbai_North_(Lok_Sabha_constituency) | 'in power'-dbp:constituency | 'party'-dbo:party","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/incumbent> <http://dbpedia.org/resource/Mumbai_North_(Lok_Sabha_constituency)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Party>}" +"Where are all the protected areas near Bend, Oregon? | 'Bend, Oregon'-res:Bend,_Oregon | 'protected'-dbo:custodian"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bend,_Oregon> <http://dbpedia.org/ontology/custodian> ?uri } " +"which movies have been published by Cinema International Corporation? | 'Cinema International Corporation'-res:Cinema_International_Corporation | 'published'-dbo:distributor","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/publisher> <http://dbpedia.org/resource/Cinema_International_Corporation> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" +"Count the total number of academic discipline of the journals whose one of the academic discipline is Neuroimaging ? | 'Neuroimaging'-res:Neuroimaging | 'count'-dbo:type | 'total'-dbo:result | 'academic discipline'-dbo:abstract | 'journals'-dbp:journal | 'academic discipline'-dbo:abstract"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/discipline> <http://dbpedia.org/resource/Neuroimaging> . ?x <http://dbpedia.org/ontology/academicDiscipline> ?uri }" +"What are some cities which have a Ferris wheel? | 'Ferris wheel'-res:Ferris_wheel | 'cities'-dbo:country","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ferris_wheel> <http://dbpedia.org/ontology/ground> ?x . ?x <http://dbpedia.org/property/cities> ?uri . }" "Who are the producers of the movies which has music by Gary Chang ? | 'Gary Chang'-res:Gary_Chang | 'producers'-dbo:manufacturer | 'movies'-dbo:film | 'music'-dbo:musicComposer","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Gary_Chang> . ?x <http://dbpedia.org/ontology/producer> ?uri . }" "To which nation did David Animle Hanses owe his allegiance? | 'David Animle Hanses'-res:David_Animle_Hansen | 'nation'-dbo:country | 'owe'-dbo:leader | 'allegiance'-dbo:allegiance"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/David_Animle_Hansen> <http://dbpedia.org/property/allegiance> ?uri } " -"What is the alma mater of the actors of The God Who Wasn't There ? | 'The God Who Wasn't There'-res:The_God_Who_Wasn't_There | 'actor'-dbp:starring | 'alma mater'-dbp:almaMater","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_God_Who_Wasn't_Theredbp:starring> ?x . ?x <http://dbpedia.org/property/almaMater> ?uri . }" -"The players born in Bellaire, Ohio have played for which team? | 'Bellaire, Ohio'-res:Bellaire,_Ohio | 'players'-dbo:material | 'born'-dbo:birthPlace | 'played'-dbo:portrayer | 'team'-dbo:team","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Bellaire,_Ohio> . ?x <http://dbpedia.org/property/team> ?uri . }" +"What is the alma mater of the actors of The God Who Wasn't There ? | 'The God Who Wasn't There'-res:The_God_Who_Wasn't_There | 'actor'-dbp:starring | 'alma mater'-dbp:almaMater"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_God_Who_Wasn't_There> <http://dbpedia.org/property/starring> ?uri } " +"The players born in Bellaire, Ohio have played for which team? | 'Bellaire, Ohio'-res:Bellaire,_Ohio | 'players'-dbo:material | 'born'-dbo:birthPlace | 'played'-dbo:portrayer | 'team'-dbo:team","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Bellaire,_Ohio> . ?uri <http://dbpedia.org/property/team> ?x . }" "What is the birth name of Putri Raemawasti ? | 'Putri Raemawasti'-res:Putri_Raemawasti | 'birth name'-dbo:birthName"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Putri_Raemawasti> <http://dbpedia.org/ontology/birthName> ?uri } " -"Musical artists who are associated with Ren & Angela were born where ? | 'Ren & Angela'-res:Ren_Bonian | 'musical artists'-dbo:musicalArtist | 'associated'-dbo:associate | 'born'-dbo:birthPlace","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ren_Bonian> <http://dbpedia.org/property/associatedMusicalArtist> ?x . ?x <http://dbpedia.org/ontology/birthPlace> ?uri . }" -"Who designed the language integrated query? | 'language integrated query'-res:Language_Integrated_Query | 'designed'-dbo:designer"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Language_Integrated_Query> <http://dbpedia.org/ontology/designer> ?uri } " +"Musical artists who are associated with Ren & Angela were born where ? | 'Ren & Angela'-res:Ren_Bonian | 'musical artists'-dbo:musicalArtist | 'associated'-dbo:associate | 'born'-dbo:birthPlace","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/associatedMusicalArtist> <http://dbpedia.org/resource/Ren_Bonian> . ?uri <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Angécia> . }" +"Who designed the language integrated query? | 'language integrated query'-res:Language_Integrated_Query | 'designed'-dbo:designer"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Language_Integrated_Query> <http://dbpedia.org/property/designer> ?uri } " "Name the debut team of Dan Otero ? | 'Dan Otero'-res:Dan_Otero | 'debut team'-dbo:debutTeam"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dan_Otero> <http://dbpedia.org/ontology/debutTeam> ?uri } " "Who founded the Not on our Watch NGO? | 'Not on our Watch'-res:Not_on_Our_Watch_(organization) | 'founded'-dbo:foundedBy"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Not_on_Our_Watch_(organization)> <http://dbpedia.org/ontology/foundedBy> ?uri } " -"Which company owns Sony bank ? | 'Sony bank'-res:Sony_Bank | 'company'-dbo:owningCompany"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Sony_Bank> <http://dbpedia.org/ontology/owningCompany> ?uri } " +"Which company owns Sony bank ? | 'Sony bank'-res:Sony_Bank | 'company'-dbo:owningCompany"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/owningCompany> <http://dbpedia.org/resource/Sony_Bank> } " "What are the movies whose screenplay is done by Eric Roth? | 'screenplay'-res:Screenplay | 'Eric Roth'-res:Eric_Roth | 'screenplay'-dbp:screenplay | 'movie'-dbo:Film","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/screenplay> <http://dbpedia.org/resource/Eric_Roth> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" -"What is the total number of writers whose singles are recorded in Miami? | 'Miami'-res:Miami | 'total'-dbo:populationTotal | 'writers'-dbo:writer | 'singles'-dbo:slogan | 'recorded'-dbo:recordedIn"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/recordedIn> <http://dbpedia.org/resource/Miami> . ?uri <http://dbpedia.org/property/writer> ?x }" +"What is the total number of writers whose singles are recorded in Miami? | 'Miami'-res:Miami | 'total'-dbo:populationTotal | 'writers'-dbo:writer | 'singles'-dbo:slogan | 'recorded'-dbo:recordedIn","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/recordedIn> <http://dbpedia.org/resource/Miami> . ?x <http://dbpedia.org/property/writer> ?uri . }" "What religions are followed by members of the societies whose architectural influences can be seen on the Sanggar Agung ? | 'societies'-res:Societies_of_Saint_Lucia | 'Sanggar Agung'-res:Sanggar_Agung | 'architectural'-dbp:architecturalStyle | 'religion'-dbo:religion","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/architecturalStyle> <http://dbpedia.org/resource/Sanggar_Agung> . ?x <http://dbpedia.org/ontology/religion> ?uri . }" -"How many members are there in the European Go Federation? | 'European Go Federation'-res:Europe | 'European Go Federation'-res:European_Go_Federation | 'members'-dbo:membership | ''-dbo:country","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/membership> <http://dbpedia.org/resource/European_Go_Federation> . }" -"Daniel L D Granger and Job Durfee have based their political career in which US state? | 'L'-res:L | 'daniel D Granger'-res:Daniel_D._Johnson | 'D'-res:D | 'daniel L Granger'-res:Daniel_L._D._Granger | 'Job Durfee'-res:Job_Durfee | 'US'-res:United_States | 'based'-dbo:office | 'political career'-dbo:occupation","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/office> <http://dbpedia.org/resource/Daniel_L._D._Granger> . ?uri <http://dbpedia.org/property/occupation> <http://dbpedia.org/resource/Job_Durfee> . }" -"Marika Gombitov makes songs in which languages? | 'Marika gombitov'-res:Marika_Nezer | 'songs'-dbo:anthem | 'languages'-dbo:language"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/language> <http://dbpedia.org/resource/Marika_Gombitov> } " -"What are some musical artists associated with the ones signed up with EMI? | 'EMI'-res:Emi | 'musical artists'-dbo:show | 'associated'-dbo:associatedBand | 'signed'-dbo:movement","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/label> <http://dbpedia.org/resource/EMI> . ?x <http://dbpedia.org/ontology/associatedMusicalArtist> ?uri . }" +"How many members are there in the European Go Federation? | 'European Go Federation'-res:Europe | 'European Go Federation'-res:European_Go_Federation | 'members'-dbo:membership | ''-dbo:country","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/party> <http://dbpedia.org/resource/European_Go_Federation> . ?x <http://dbpedia.org/ontology/membership> ?uri . }" +"Daniel L D Granger and Job Durfee have based their political career in which US state? | 'L'-res:L | 'daniel D Granger'-res:Daniel_D._Johnson | 'D'-res:D | 'daniel L Granger'-res:Daniel_L._D._Granger | 'Job Durfee'-res:Job_Durfee | 'US'-res:United_States | 'based'-dbo:office | 'political career'-dbo:occupation","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/occupation> <http://dbpedia.org/resource/Daniel_L._D._Granger> . ?uri <http://dbpedia.org/property/birthPlace> <http://dbpedia.org/resource/United_States> . }" +"Marika Gombitov makes songs in which languages? | 'Marika gombitov'-res:Marika_Nezer | 'songs'-dbo:anthem | 'languages'-dbo:language","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/producer> <http://dbpedia.org/resource/Marika_Nezer> . ?x <http://dbpedia.org/property/languages> ?uri . }" +"What are some musical artists associated with the ones signed up with EMI? | 'EMI'-res:Emi | 'musical artists'-dbo:show | 'associated'-dbo:associatedBand | 'signed'-dbo:movement","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/label> <http://dbpedia.org/resource/EMi> . ?uri <http://dbpedia.org/ontology/associatedBand> ?x . }" "Name the scientist whose supervisor also supervised Mary Ainsworth? | 'scientist'-res:Scientist_(musician) | 'Mary Ainsworth'-res:Mary_Ainsworth | 'name'-dbp:name | 'supervisor'-dbo:doctoralAdvisor | 'supervised'-dbo:doctoralAdvisor","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/doctoralAdvisor> <http://dbpedia.org/resource/Mary_Ainsworth> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}" -"To which political party does Virendra Kataria belongs ? | 'Virendra Kataria'-res:Virendra_Kataria | 'political party'-dbo:party | 'belongs'-dbp:date"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Virendra_Kataria> <http://dbpedia.org/property/party> ?uri } " +"To which political party does Virendra Kataria belongs ? | 'Virendra Kataria'-res:Virendra_Kataria | 'political party'-dbo:party | 'belongs'-dbp:date"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Virendra_Kataria> <http://dbpedia.org/ontology/party> ?uri } " "Copley Medal has been awarded to which scientists? | 'copley Medal'-res:Copley_Medal | 'scientists'-res:Scientists_for_Global_Responsibility | 'awarded'-dbp:awards | 'scientist'-dbo:Scientist","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/awards> <http://dbpedia.org/resource/Copley_Medal> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}" -"What is the total number of awards whose presenter's headquarters is Beverly Hills, California? | 'Beverly Hills, California'-res:Beverly_Hills,_California | 'total'-dbo:populationTotal | 'awards'-dbo:award | 'presenter'-dbo:presenter | 'headquarters'-dbp:headquarters","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Beverly_Hills,_California> . ?x <http://dbpedia.org/ontology/award> ?uri . }" -"Who is the narrator of The Price of Beauty ? | 'The Price of Beauty'-res:The_Price_of_Beauty | 'narrator'-dbo:narrator"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Price_of_Beauty> <http://dbpedia.org/property/narrated> ?uri } " -"How many albums did the maker of The Band produce? | 'The Band produce'-res:Produce_101 | 'albums'-dbo:album | 'maker'-dbo:producer","SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Produce_101> <http://dbpedia.org/property/producer> ?x . ?x <http://dbpedia.org/ontology/album> ?uri . }" -"Food in which countries has shallot in it? | 'countries'-res:Countries_of_the_United_Kingdom | 'food'-dbo:supplies | 'shallot'-dbo:award","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/species> <http://dbpedia.org/resource/shallot> . ?x <http://dbpedia.org/property/country> ?uri . }" -"What are the movies whose music composer uses a Hammond organ? | 'Hammond organ'-res:Hammond_organ | 'movies'-dbo:film | 'music composer'-dbo:musicComposer","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/instruments> <http://dbpedia.org/resource/Hammond_organ> . ?uri <http://dbpedia.org/property/musicComposer> ?x . }" +"What is the total number of awards whose presenter's headquarters is Beverly Hills, California? | 'Beverly Hills, California'-res:Beverly_Hills,_California | 'total'-dbo:populationTotal | 'awards'-dbo:award | 'presenter'-dbo:presenter | 'headquarters'-dbp:headquarters","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Beverly_Hills,_California> . ?x <http://dbpedia.org/ontology/presenter> ?uri . }" +"Who is the narrator of The Price of Beauty ? | 'The Price of Beauty'-res:The_Price_of_Beauty | 'narrator'-dbo:narrator"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Price_of_Beauty> <http://dbpedia.org/ontology/narrator> ?uri } " +"How many albums did the maker of The Band produce? | 'The Band produce'-res:Produce_101 | 'albums'-dbo:album | 'maker'-dbo:producer","SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Produce_101> <http://dbpedia.org/ontology/album> ?x . ?x <http://dbpedia.org/property/producer> ?uri . }" +"Food in which countries has shallot in it? | 'countries'-res:Countries_of_the_United_Kingdom | 'food'-dbo:supplies | 'shallot'-dbo:award","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/species> <http://dbpedia.org/resource/Canadian_vodka> . ?x <http://dbpedia.org/property/country> ?uri . }" +"What are the movies whose music composer uses a Hammond organ? | 'Hammond organ'-res:Hammond_organ | 'movies'-dbo:film | 'music composer'-dbo:musicComposer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/musicComposer> <http://dbpedia.org/resource/Hammond_organ> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" "Name the TV show with artist Christopher Franke and cast member Jason Carter ? | 'TV'-res:Tv_test_pattern | 'show with artist Christopher Franke'-res:Christopher_Franke | 'cast member Jason Carter'-res:Jason_Carter_(actor) | 'name'-dbp:name","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/artist> <http://dbpedia.org/resource/Christopher_Franke> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" -"Where was the deadbody discovered of one of the alumni of General Educational Development? | 'deadbody'-res:Deadboy_&_the_Elephantmen | 'General Educational Development'-res:General_Educational_Development | 'Education'-dbp:education | 'body discovered'-dbp:bodyDiscovered","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/education> <http://dbpedia.org/resource/General_Educational_Development> . ?x <http://dbpedia.org/property/bodyDiscovered> ?uri . }" -"Who designed the bridge in Oddamavadi? | 'Oddamavadi'-res:Oddamavadi | 'designed'-dbo:architect | 'bridge'-dbo:bridgeCarries","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/architect> <http://dbpedia.org/resource/Oddamavadi> . ?x <http://dbpedia.org/property/bridgeCarries> ?uri . }" +"Where was the deadbody discovered of one of the alumni of General Educational Development? | 'deadbody'-res:Deadboy_&_the_Elephantmen | 'General Educational Development'-res:General_Educational_Development | 'Education'-dbp:education | 'body discovered'-dbp:bodyDiscovered","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/education> <http://dbpedia.org/resource/General_Educational_Development> . ?x <http://dbpedia.org/ontology/restingplace> ?uri . }" +"Who designed the bridge in Oddamavadi? | 'Oddamavadi'-res:Oddamavadi | 'designed'-dbo:architect | 'bridge'-dbo:bridgeCarries","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/architect> <http://dbpedia.org/resource/Oddamavadi> . ?x <http://dbpedia.org/property/designer> ?uri . }" "List the debut team of the baseball player who born in Houston. | 'Houston'-res:Houston_Astros | 'debut team'-dbo:team | 'baseball player'-dbo:participant | 'born'-dbo:birthPlace","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Houston_Astros> . ?x <http://dbpedia.org/property/debutteam> ?uri . }" -"Who edited British Gazette ? | 'British Gazette'-res:United_Kingdom | 'British Gazette'-res:British_Gazette | 'edited'-dbo:editor | ''-dbo:country"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/British_Gazette> <http://dbpedia.org/property/editor> ?uri } " -"What acts and artists are associated with people who have worked with Divertis? | 'Divertis'-res:Divertis | 'associated acts'-dbp:associatedActs | 'associated'-dbo:associatedMusicalArtist","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/associatedActs> <http://dbpedia.org/resource/Divertis> . ?x <http://dbpedia.org/ontology/associatedMusicalArtist> ?uri . }" +"Who edited British Gazette ? | 'British Gazette'-res:United_Kingdom | 'British Gazette'-res:British_Gazette | 'edited'-dbo:editor | ''-dbo:country"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/British_Gazette> <http://dbpedia.org/ontology/editor> ?uri } " +"What acts and artists are associated with people who have worked with Divertis? | 'Divertis'-res:Divertis | 'associated acts'-dbp:associatedActs | 'associated'-dbo:associatedMusicalArtist","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/associatedActs> <http://dbpedia.org/resource/Divertis> . ?uri <http://dbpedia.org/ontology/associatedMusicalArtist> ?x . }" "Which company has developed games whose music is done by Gerard Marino? | 'Gerard Marino'-res:Gerard_Marino | 'company'-dbo:company | 'developed'-dbo:leader | 'games'-dbo:games | 'music'-dbp:music","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Gerard_Marino> . ?uri <http://dbpedia.org/ontology/developer> ?x . }" -"Who all have developed softwares for Unix Like OSes? | 'softwares'-res:Soft_Machine | 'Unix Like OSes'-res:Unix | 'developed'-dbo:developer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/developer> <http://dbpedia.org/resource/Unix_> Like_OSes . }" -"What are some party leaders of the parties which have had a seat in Berlin? | 'Berlin'-res:Berlin | 'party leaders'-dbo:team | 'parties'-dbo:chain | 'seat'-dbp:seat","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/seat> <http://dbpedia.org/resource/Berlin> . ?x <http://dbpedia.org/ontology/party> ?uri . }" -"Name all the soccer players who played in a under 18 club for La Liga? | 'soccer players'-res:Major_League_Soccer_Players_Union | 'La Liga'-res:La_Liga | 'name'-dbp:name | 'played'-dbo:participant | '18 club'-dbp:body","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/club> <http://dbpedia.org/resource/La_Liga> . ?uri <http://dbpedia.org/ontology/debutteam> ?x . }" -"Which employer of Michael M. Sears is also the producer of Delta III ? | 'Michael M. Sears'-res:Michael_M._Sears | 'Delta III'-res:Delta_III | 'employer'-dbo:employer | 'producer'-dbo:producer"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Michael_M._Sears> <http://dbpedia.org/ontology/producer> ?uri . <http://dbpedia.org/resource/Delta_III> <http://dbpedia.org/property/employer> ?uri} " +"Who all have developed softwares for Unix Like OSes? | 'softwares'-res:Soft_Machine | 'Unix Like OSes'-res:Unix | 'developed'-dbo:developer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/developer> <http://dbpedia.org/resource/Soft_Machine> . }" +"What are some party leaders of the parties which have had a seat in Berlin? | 'Berlin'-res:Berlin | 'party leaders'-dbo:team | 'parties'-dbo:chain | 'seat'-dbp:seat","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/seat> <http://dbpedia.org/resource/Berlin> . ?x <http://dbpedia.org/ontology/leader> ?uri . }" +"Name all the soccer players who played in a under 18 club for La Liga? | 'soccer players'-res:Major_League_Soccer_Players_Union | 'La Liga'-res:La_Liga | 'name'-dbp:name | 'played'-dbo:participant | '18 club'-dbp:body","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/youthclubs> <http://dbpedia.org/resource/La_Liga> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SoccerPlayer>}" +"Which employer of Michael M. Sears is also the producer of Delta III ? | 'Michael M. Sears'-res:Michael_M._Sears | 'Delta III'-res:Delta_III | 'employer'-dbo:employer | 'producer'-dbo:producer"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Michael_M._Sears> <http://dbpedia.org/property/employer> ?uri . <http://dbpedia.org/resource/Delta_III> <http://dbpedia.org/ontology/producer> ?uri} " "Which person designed the cars which has been designed by ASC Creative Services? | 'ASC Creative Services'-res:ASC_Creative_Services | 'person'-dbo:type | 'designed'-dbo:architect | 'cars'-dbo:management | 'designed'-dbo:architect","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/architect> <http://dbpedia.org/resource/ASC_Creative_Services> . ?x <http://dbpedia.org/property/designer> ?uri . }" -"Count the number of important works done by the writers of The Second Coming? | 'The Second Coming'-res:The_Second_Coming_(TV_serial) | 'writers'-dbo:author | 'works'-dbo:notableWork","SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/The_Second_Coming_(TV_serial)> <http://dbpedia.org/property/writers> ?x . ?x <http://dbpedia.org/ontology/notableWork> ?uri . }" -"For whom did Michael Springer palyed for which is also had a former student named Donald Brooks ? | 'Michael Springer'-res:Michael_Springer | 'Donald Brooks'-res:Donald_Brooks | 'palyed'-dbo:alias | 'former student'-dbo:retired"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Michael_Springer> <http://dbpedia.org/ontology/formerStudent> ?uri . <http://dbpedia.org/resource/Donald_Brooks> <http://dbpedia.org/property/formerStudents> ?uri} " -"Which series was written by Eric Jendresen and John Orloff? | 'Eric Jendresen'-res:Erik_Jendresen | 'John Orloff'-res:John_Orloff | 'series'-dbo:series | 'written'-dbo:writer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/writer> <http://dbpedia.org/resource/Erik_Jendresen> . ?uri <http://dbpedia.org/property/series> <http://dbpedia.org/resource/John_Orloff> . }" -"What are the nicknames given to the characters of The Wolves of the Mercy Falls? | 'The Wolves of the Mercy Falls'-res:List_of_The_Wolves_of_Mercy_Falls_characters | 'nickname'-dbp:nickname","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Wolves_of_Mercy_Falls_characters> <http://dbpedia.org/property/nickname> ?uri . }" +"Count the number of important works done by the writers of The Second Coming? | 'The Second Coming'-res:The_Second_Coming_(TV_serial) | 'writers'-dbo:author | 'works'-dbo:notableWork","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/author> <http://dbpedia.org/resource/The_Second_Coming_(TV_serial)> . ?x <http://dbpedia.org/property/notableWork> ?uri . }" +"For whom did Michael Springer palyed for which is also had a former student named Donald Brooks ? | 'Michael Springer'-res:Michael_Springer | 'Donald Brooks'-res:Donald_Brooks | 'palyed'-dbo:alias | 'former student'-dbo:retired"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Michael_Springer> <http://dbpedia.org/property/almaMater> ?uri . <http://dbpedia.org/resource/Donald_Brooks> <http://dbpedia.org/ontology/profession> ?uri} " +"Which series was written by Eric Jendresen and John Orloff? | 'Eric Jendresen'-res:Erik_Jendresen | 'John Orloff'-res:John_Orloff | 'series'-dbo:series | 'written'-dbo:writer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/writer> <http://dbpedia.org/resource/Eric_Jendresen> . ?uri <http://dbpedia.org/property/series> <http://dbpedia.org/resource/John_Orloff> . }" +"What are the nicknames given to the characters of The Wolves of the Mercy Falls? | 'The Wolves of the Mercy Falls'-res:List_of_The_Wolves_of_Mercy_Falls_characters | 'nickname'-dbp:nickname"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Wolves_of_Mercy_Falls_characters> <http://dbpedia.org/property/nickname> ?uri } " "What is the religious affiliation of Neungin High School? | 'Neungin High School'-res:Neungin_High_School | 'religious affiliation'-dbp:religiousAffiliation"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Neungin_High_School> <http://dbpedia.org/property/religiousAffiliation> ?uri } " "Who is the owner of the South end ? | 'the South end'-res:The_South_End | 'owner'-dbp:owners"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_South_End> <http://dbpedia.org/property/owners> ?uri } " "For how many other teams have the members of Atlant Moscow Oblast played? | 'Atlant Moscow Oblast'-res:Atlant_Moscow_Oblast | 'team'-dbp:playedFor | 'teams'-dbo:formerTeam","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/playedFor> <http://dbpedia.org/resource/Atlant_Moscow_Oblast> . ?x <http://dbpedia.org/ontology/formerTeam> ?uri . }" "In which time zone is Pong Pha? | 'Pong Pha'-res:Pong_Pha | 'time zone'-dbo:timeZone"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pong_Pha> <http://dbpedia.org/ontology/timeZone> ?uri } " -"Which bacteria's taxonomic class is Bacilli? | 'Bacteria'-res:Bacteria | 'taxonomic class'-res:Class_(biology) | 'Bacilli'-res:Bacilli","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/taxonomicClass> <http://dbpedia.org/resource/Bacilli> . }" +"Which bacteria's taxonomic class is Bacilli? | 'Bacteria'-res:Bacteria | 'taxonomic class'-res:Class_(biology) | 'Bacilli'-res:Bacilli","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/kingdom> <http://dbpedia.org/resource/Bacilli> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Bacteria>}" "What honours did Reigh Count receive? | 'Reigh Count'-res:Reigh_Count | 'honours'-dbo:honours | 'receive'-dbo:board"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Reigh_Count> <http://dbpedia.org/ontology/honours> ?uri } " "What is the television show whose related with Doctor Who Confidential? | 'Doctor Who Confidential'-res:Doctor_Who_Confidential | 'related'-dbo:related | 'television show'-dbo:TelevisionShow","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/related> <http://dbpedia.org/resource/Doctor_Who_Confidential> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" -"In which city wasThe Triple Door (The Courage album) performed live? | 'city wasThe Triple Door (The Courage album)'-res:Live_at_The_Triple_Door_(The_Courage_album) | 'performed'-dbo:artist | 'live'-dbo:languageFamily"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Live_at_The_Triple_Door_(The_Courage_album)> <http://dbpedia.org/property/artist> ?uri } " +"In which city wasThe Triple Door (The Courage album) performed live? | 'city wasThe Triple Door (The Courage album)'-res:Live_at_The_Triple_Door_(The_Courage_album) | 'performed'-dbo:artist | 'live'-dbo:languageFamily","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Triple_Door_(The_Courage_album)> <http://dbpedia.org/property/artist> ?x . ?x <http://dbpedia.org/ontology/locationCity> ?uri . }" "List the battles fought by Ali Habib Mahmud ? | 'Ali Habib Mahmud'-res:Ali_Habib_Mahmud | 'battles'-dbo:battle | 'fought'-dbo:type"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ali_Habib_Mahmud> <http://dbpedia.org/property/battles> ?uri } " -"How many companies were started in the states? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'started'-dbo:source","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/source> <http://dbpedia.org/resource/New_York_Stock_Exchange_(J)> . ?uri <http://dbpedia.org/property/foundation> ?x . }" +"How many companies were started in the states? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'started'-dbo:source","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/birthPlace> <http://dbpedia.org/resource/United_States> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}" "How many movies are distributed by Cinema International Corporation? | 'Cinema International Corporation'-res:Cinema_International_Corporation | 'distributed by'-dbo:distributor | 'movie'-dbo:Film","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/distributor> <http://dbpedia.org/resource/Cinema_International_Corporation> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" -"To which educational institute does Cornell University Press belong to? | 'Cornell University Press'-res:Cornell_University_Press | 'educational institute'-dbo:university | 'belong'-dbo:date"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cornell_University_Press> <http://dbpedia.org/property/education> ?uri } " -"In which country's cuisine, ham is an important part? | 'ham'-res:Ham | 'country'-dbo:country","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/ingredient> <http://dbpedia.org/resource/Ham> . ?x <http://dbpedia.org/property/country> ?uri . }" -"List the softwares which runs on Microsoft Windows and has license as Software as a service? | 'softwares'-res:Software | 'Microsoft Windows'-res:Microsoft_Windows | 'Software'-res:Software | 'runs'-dbo:symbol | 'license'-dbo:license | 'service'-dbo:industry","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/license> <http://dbpedia.org/resource/Microsoft_Windows> . ?uri <http://dbpedia.org/property/softwares> <http://dbpedia.org/resource/Software_as_a_service> . }" -"Give me the list of cars which are the predecessor of Full Sized Cars? | 'Full Sized Cars'-res:Man-Sized_Wreath | 'cars'-dbo:management | 'predecessor'-dbo:predecessor","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Full_Sized_Wreath> <http://dbpedia.org/property/predecessor> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Automobile>}" -"What are some software which are written in languages that are run on Unix like OS? | 'software'-res:Software_Publishing_Corporation | 'OS'-res:OS | 'Unix like'-res:Unix | 'written'-dbo:fate | 'languages'-dbo:language | 'run'-dbp:work","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/computingPlatform> <http://dbpedia.org/resource/Unix_OS> . ?uri <http://dbpedia.org/property/language> ?x . }" +"To which educational institute does Cornell University Press belong to? | 'Cornell University Press'-res:Cornell_University_Press | 'educational institute'-dbo:university | 'belong'-dbo:date"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/university> <http://dbpedia.org/resource/Cornell_University_Press> } " +"In which country's cuisine, ham is an important part? | 'ham'-res:Ham | 'country'-dbo:country","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/veneratedIn> <http://dbpedia.org/resource/Ham> . }" +"List the softwares which runs on Microsoft Windows and has license as Software as a service? | 'softwares'-res:Software | 'Microsoft Windows'-res:Microsoft_Windows | 'Software'-res:Software | 'runs'-dbo:symbol | 'license'-dbo:license | 'service'-dbo:industry","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/computingPlatform> <http://dbpedia.org/resource/Microsoft_Windows> . ?uri <http://dbpedia.org/property/license> <http://dbpedia.org/resource/Software_as_a_service> . }" +"Give me the list of cars which are the predecessor of Full Sized Cars? | 'Full Sized Cars'-res:Man-Sized_Wreath | 'cars'-dbo:management | 'predecessor'-dbo:predecessor"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Full_Sized_Cars> <http://dbpedia.org/property/predecessor> ?uri } " +"What are some software which are written in languages that are run on Unix like OS? | 'software'-res:Software_Publishing_Corporation | 'OS'-res:OS | 'Unix like'-res:Unix | 'written'-dbo:fate | 'languages'-dbo:language | 'run'-dbp:work","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/computingPlatform> <http://dbpedia.org/resource/Unix> . ?uri <http://dbpedia.org/property/programmingLanguage> ?x . }" "List all the movies whose directors were born in Kenosha, Wisconsin? | 'Kenosha, Wisconsin'-res:Kenosha,_Wisconsin | 'born in'-dbo:birthPlace | 'director'-dbp:director","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Kenosha,_Wisconsin> . ?uri <http://dbpedia.org/property/director> ?x . }" "Name the fictional character whose relative are Duck family and Clan McDuck? | 'Duck family'-res:Duck_family | 'Clan McDuck'-res:Clan_McDuck | 'name'-dbp:name | 'fictional character'-dbo:status | 'relative'-dbo:relative","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/relative> <http://dbpedia.org/resource/Duck_family> . ?uri <http://dbpedia.org/property/relatives> <http://dbpedia.org/resource/Clan_McDuck> . }" "Which state does Jerome B. Chaffee belong ? | 'Jerome B. Chaffee'-res:Jerome_B._Chaffee | 'state'-dbp:state"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jerome_B._Chaffee> <http://dbpedia.org/property/state> ?uri } " "What awards are won by the screenwriter of Lucky You? | 'Lucky You'-res:Lucky_You_(film) | 'screenwriter'-dbp:screenplay | 'awards'-dbo:award","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lucky_You_(film)> <http://dbpedia.org/property/screenplay> ?x . ?x <http://dbpedia.org/ontology/award> ?uri . }" "Name the Pole driver of 1994 Spanish Grand Prix ? | '1994 Spanish Grand Prix'-res:1994_Spanish_Grand_Prix | 'Pole driver'-dbp:poleDriver"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/1994_Spanish_Grand_Prix> <http://dbpedia.org/property/poleDriver> ?uri } " -"What is the parent company of the airline whose hub is in Detroit? | 'Detroit'-res:Detroit | 'parent company'-dbo:parentCompany | 'airline'-dbo:icaoAirlineCode | 'hub'-dbp:centre","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/centre> <http://dbpedia.org/resource/Detroit> . ?x <http://dbpedia.org/ontology/parentCompany> ?uri . }" -"How many cars are similar to the ones assembled in the Jefferson North Assembly? | 'Jefferson North Assembly'-res:Jefferson_North_Assembly | 'cars'-dbo:management | 'assembled'-dbp:assembly","SELECT DISTINCT COUNT( ?uri) WHERE { ?xdbp:assembly <http://dbpedia.org/resource/Jefferson_North_Assembly> . ?x <http://dbpedia.org/property/related> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Automobile>}" -"From how many different places have people gone to the Harward Medical School? | 'Harward Medical School'-res:Harvard_Medical_School | 'places'-dbo:height","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/education> <http://dbpedia.org/resource/Harvard_Medical_School> . ?x <http://dbpedia.org/ontology/residence> ?uri . }" -"What are Jerry Bock's musicals based upon? | 'Jerry Bock'-res:Jerry_Bock | 'musicals'-dbo:show | 'based'-dbo:relative","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/associatedMusicalArtist> <http://dbpedia.org/resource/Jerry_Bock> . ?x <http://dbpedia.org/property/basedOn> ?uri . }" -"Give me list of people who were the first to climb a peak in the Yosemite park? | 'Yosemite park'-res:Yosemite_National_Park | 'climb'-dbp:scale | 'peak'-dbo:language","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/mountainPark> <http://dbpedia.org/resource/Yosemite_National_Park> . ?x <http://dbpedia.org/ontology/firstAscentPerson> ?uri . }" -"What is the successor of PlayStation 4 | 'PlayStation 4'-res:PlayStation_4 | 'successor'-dbo:successor"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/PlayStation_4> <http://dbpedia.org/property/successor> ?uri } " -"What are some team members of the team based in Camp Nou? | 'Camp Nou'-res:Camp_Nou | 'team members'-dbo:languageFamily | 'team'-dbo:team | 'based'-dbo:relative","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/Camp_Nou> . ?x <http://dbpedia.org/property/team> ?uri . }" +"What is the parent company of the airline whose hub is in Detroit? | 'Detroit'-res:Detroit | 'parent company'-dbo:parentCompany | 'airline'-dbo:icaoAirlineCode | 'hub'-dbp:centre","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/hubAirport> <http://dbpedia.org/resource/Detroit> . ?x <http://dbpedia.org/ontology/parentCompany> ?uri . }" +"How many cars are similar to the ones assembled in the Jefferson North Assembly? | 'Jefferson North Assembly'-res:Jefferson_North_Assembly | 'cars'-dbo:management | 'assembled'-dbp:assembly","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/assembly> <http://dbpedia.org/resource/Jefferson_North_Assembly> . ?x <http://dbpedia.org/ontology/related> ?uri . }" +"From how many different places have people gone to the Harward Medical School? | 'Harward Medical School'-res:Harvard_Medical_School | 'places'-dbo:height","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/institution> <http://dbpedia.org/resource/Harvard_Medical_School> . ?x <http://dbpedia.org/property/destinations> ?uri . }" +"What are Jerry Bock's musicals based upon? | 'Jerry Bock'-res:Jerry_Bock | 'musicals'-dbo:show | 'based'-dbo:relative","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/basedOn> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Musical>}" +"Give me list of people who were the first to climb a peak in the Yosemite park? | 'Yosemite park'-res:Yosemite_National_Park | 'climb'-dbp:scale | 'peak'-dbo:language","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/locatedInArea> <http://dbpedia.org/resource/Yosemite_National_Park> . ?x <http://dbpedia.org/ontology/firstAscentPerson> ?uri . }" +"What is the successor of PlayStation 4 | 'PlayStation 4'-res:PlayStation_4 | 'successor'-dbo:successor"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/PlayStation_4> <http://dbpedia.org/ontology/successor> ?uri } " +"What are some team members of the team based in Camp Nou? | 'Camp Nou'-res:Camp_Nou | 'team members'-dbo:languageFamily | 'team'-dbo:team | 'based'-dbo:relative","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/basedOn> <http://dbpedia.org/resource/Camp_Nou> . ?x <http://dbpedia.org/property/team> ?uri . }" "For which teams did Ryan Powell play for? | 'Ryan Powell'-res:Ryan_Powell_(lacrosse) | 'teams'-dbp:team | 'play'-dbo:team"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ryan_Powell_(lacrosse)> <http://dbpedia.org/property/team> ?uri } " -"Total number of places where people drafted in the detroit pistons have died? | 'detroit pistons'-res:Detroit_Pistons | 'total'-dbo:populationTotal | 'places'-dbo:height | 'drafted'-dbo:draft | 'died'-dbo:deathDate","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/draftTeam> <http://dbpedia.org/resource/Detroit_Pistons> . ?x <http://dbpedia.org/property/deathPlace> ?uri . }" -"List the newspapers whose offices are situated in 1211 Avenue of the Americas? | '1211 Avenue of the Americas'-res:1211_Avenue_of_the_Americas | 'situated'-dbo:position","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/office> <http://dbpedia.org/resource/1211_Avenue_of_the_Americas> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Newspaper>}" +"Total number of places where people drafted in the detroit pistons have died? | 'detroit pistons'-res:Detroit_Pistons | 'total'-dbo:populationTotal | 'places'-dbo:height | 'drafted'-dbo:draft | 'died'-dbo:deathDate","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/draftTeam> <http://dbpedia.org/resource/Detroit_Pistons> . ?x <http://dbpedia.org/ontology/deathPlace> ?uri . }" +"List the newspapers whose offices are situated in 1211 Avenue of the Americas? | '1211 Avenue of the Americas'-res:1211_Avenue_of_the_Americas | 'situated'-dbo:position","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/borough> <http://dbpedia.org/resource/1211_Avenue_of_the_Americas> . ?uri <http://dbpedia.org/property/headquarters> ?x . }" "By what style was Providence Chapel, Charlwood made? | 'Providence Chapel, Charlwood'-res:Providence_Chapel,_Charlwood | 'style'-dbp:style"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Providence_Chapel,_Charlwood> <http://dbpedia.org/property/style> ?uri } " -"Give me the total number of employer of the engineers whose one of the employer is McDonnell Aircraft ? | 'McDonnell Aircraft'-res:McDonnell_Aircraft | 'total'-dbo:populationTotal | 'employer'-dbo:employer | 'engineers'-dbo:architect | 'employer'-dbo:employer"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/occupation> <http://dbpedia.org/resource/McDonnell_Aircraft> . ?x <http://dbpedia.org/property/employer> ?uri }" -"How many record labels publish works of Jazz fusion? | 'Jazz fusion'-res:Jazz_fusion | 'record labels'-dbo:background | 'publish'-dbo:country | 'works'-dbo:language","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/genre> <http://dbpedia.org/resource/Jazz_fusion> . ?x <http://dbpedia.org/property/recordLabel> ?uri . }" +"Give me the total number of employer of the engineers whose one of the employer is McDonnell Aircraft ? | 'McDonnell Aircraft'-res:McDonnell_Aircraft | 'total'-dbo:populationTotal | 'employer'-dbo:employer | 'engineers'-dbo:architect | 'employer'-dbo:employer"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/engineer> <http://dbpedia.org/resource/McDonnell_Aircraft> . ?x <http://dbpedia.org/ontology/employer> ?uri }" +"How many record labels publish works of Jazz fusion? | 'Jazz fusion'-res:Jazz_fusion | 'record labels'-dbo:background | 'publish'-dbo:country | 'works'-dbo:language","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/genre> <http://dbpedia.org/resource/Jazz_fusion> . ?x <http://dbpedia.org/ontology/recordLabel> ?uri . }" "Count the total number of cast member of the television shows whose actress is Joey McIntyre? | 'Joey McIntyre'-res:Joey_McIntyre | 'actress'-dbp:starring | 'actress'-dbp:starring"," SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Joey_McIntyre> <http://dbpedia.org/property/starring> ?uri } " "List all the awards won by the artist who has won SIGGRAPH ? | 'SIGGRAPH'-res:SIGGRAPH | 'awards'-dbo:award | 'won'-dbo:award | 'artist'-dbo:artist | 'won'-dbo:award","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/awards> <http://dbpedia.org/resource/SIGGRAPH> . ?x <http://dbpedia.org/ontology/award> ?uri . }" "Where was david Scherman trained ? | 'david Scherman'-res:David_Scherman | 'trained'-dbo:training"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/David_Scherman> <http://dbpedia.org/ontology/training> ?uri } " "Count the battles fought by Raoul Magrin-Vernerey? | 'Raoul Magrin-Vernerey'-res:Raoul_Magrin-Vernerey | 'fought'-dbp:battles","SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Raoul_Magrin-Vernerey> <http://dbpedia.org/property/battles> ?uri . }" -"Which athlete was the flag bearer for Switzerland in 2004 and 2008 summer Olympics ? | 'Switzerland'-res:Switzerland | '2004'-res:2004_OFC_Men's_Olympic_Qualifying_Tournament | '2008 summer Olympics'-res:2008_Summer_Olympics | 'athlete'-dbo:numberOfParticipatingAthletes | 'flag bearer'-dbo:flag","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/2004_OFC_Men's_Olympic_Qualifying_Tournament> <http://dbpedia.org/property/athlete> ?uri . <http://dbpedia.org/resource/2008_Summer_Oslympics> <http://dbpedia.org/ontology/flagHolder> ?uri . }" +"Which athlete was the flag bearer for Switzerland in 2004 and 2008 summer Olympics ? | 'Switzerland'-res:Switzerland | '2004'-res:2004_OFC_Men's_Olympic_Qualifying_Tournament | '2008 summer Olympics'-res:2008_Summer_Olympics | 'athlete'-dbo:numberOfParticipatingAthletes | 'flag bearer'-dbo:flag","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/flagPerend> ?uri . <http://dbpedia.org/resource/2004_OFC_Men's_Olympic_Qualifying_Tournament> <http://dbpedia.org/ontology/flagBearer> ?uri . }" "What award was won by the father of Angelina Jolie? | 'Angelina Jolie'-res:Angelina_Jolie | 'award'-dbo:award | 'won'-dbo:parent | 'father'-dbo:parent","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Angelina_Jolie> <http://dbpedia.org/ontology/parent> ?x . ?x <http://dbpedia.org/property/awards> ?uri . }" -"Count all the stateless people | 'count'-dbo:time | 'stateless'-dbo:gross","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/stateOfOrigin> <http://dbpedia.org/resource/Stateless_people> . }" +"Count all the stateless people | 'count'-dbo:time | 'stateless'-dbo:gross","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/stateOfOrigin> <http://dbpedia.org/resource/State_of_Liberty> . }" "What novels are belong to the genre of Utopian and dystopian fiction? | 'Utopian'-res:Utopian_and_dystopian_fiction | 'genre'-dbo:literaryGenre","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/literaryGenre> <http://dbpedia.org/resource/Utopian_and_dystopian_fiction> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book>}" "What are the movies written by Nick Castle? | 'Nick Castle'-res:Nick_Castle | 'written by'-dbo:writer | 'movie'-dbo:Film","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/writer> <http://dbpedia.org/resource/Nick_Castle> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" -"On which river are there things belonging to zambezi river authority? | 'zambezi river authority'-res:Zambezi_River_Authority | 'river'-dbo:river | 'belonging'-dbo:affiliation","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/order> <http://dbpedia.org/resource/Zambezi_River_Authority> . ?uri <http://dbpedia.org/ontology/river> ?x . }" +"On which river are there things belonging to zambezi river authority? | 'zambezi river authority'-res:Zambezi_River_Authority | 'river'-dbo:river | 'belonging'-dbo:affiliation","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/affiliation> <http://dbpedia.org/resource/Zambezi_River_Authority> . ?x <http://dbpedia.org/ontology/river> ?uri . }" "Which Paramount TV show was produced by Glen and Les Charles ? | 'TV'-res:Tv_test_pattern | 'Paramount show'-res:Plaxton_Paramount | 'Glen'-res:Glen | 'Les Charles'-res:Glen_and_Les_Charles | 'produced'-dbo:manufacturer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/producer> <http://dbpedia.org/resource/Glen_and_Les_Charles> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" -"Horses sired by Karinga Bay have participated in which races? | 'Karinga Bay'-res:Karinga_Bay | 'horses'-dbo:service | 'sired'-dbo:flag | 'participated'-dbo:participant | 'races'-dbo:races","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/sired> <http://dbpedia.org/resource/Karinga_Bay> . ?x <http://dbpedia.org/property/race> ?uri . }" -"Where do beauty queens with brown hair reside? | 'beauty queens'-res:Beauty_Queens | 'brown hair reside'-res:Brown_hair | 'hair'-dbp:hairColor | 'reside'-dbo:residence","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/hairColor> <http://dbpedia.org/resource/Brown_hair> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/BeautyColor>}" -"Count the key people of the Clinton Foundation? | 'Clinton Foundation'-res:Clinton_Foundation | 'key people'-dbp:keyPeople","SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Clinton_Foundation> <http://dbpedia.org/property/keyPeople> ?uri . }" +"Horses sired by Karinga Bay have participated in which races? | 'Karinga Bay'-res:Karinga_Bay | 'horses'-dbo:service | 'sired'-dbo:flag | 'participated'-dbo:participant | 'races'-dbo:races","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/birthPlace> <http://dbpedia.org/resource/Karinga_Bay> . ?x <http://dbpedia.org/ontology/race> ?uri . }" +"Where do beauty queens with brown hair reside? | 'beauty queens'-res:Beauty_Queens | 'brown hair reside'-res:Brown_hair | 'hair'-dbp:hairColor | 'reside'-dbo:residence","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/hairColor> <http://dbpedia.org/resource/Brown_hair> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/BeautyQueen>}" +"Count the key people of the Clinton Foundation? | 'Clinton Foundation'-res:Clinton_Foundation | 'key people'-dbp:keyPeople","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/keyPeople> <http://dbpedia.org/resource/Clinton_Foundation> . }" "Music of how many things has been given by Akira Ifukube? | 'Akira Ifukube'-res:Akira_Ifukube | 'Music'-dbp:music","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Akira_Ifukube> . }" -"In how many places are the tombs of people who died in Connecticut Colony? | 'tombs'-res:Tombs_of_the_Blind_Dead | 'Connecticut Colony'-res:Connecticut_Colony | 'places'-dbo:place | 'died'-dbp:deathPlace","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/placeOfDeath> <http://dbpedia.org/resource/Connecticut_Colony> . ?x <http://dbpedia.org/ontology/deathPlace> ?uri . }" +"In how many places are the tombs of people who died in Connecticut Colony? | 'tombs'-res:Tombs_of_the_Blind_Dead | 'Connecticut Colony'-res:Connecticut_Colony | 'places'-dbo:place | 'died'-dbp:deathPlace","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/deathPlace> <http://dbpedia.org/resource/Connecticut_Colony> . ?x <http://dbpedia.org/ontology/restingPlace> ?uri . }" "Who are the producers of Marie Sisters? | 'Marie Sisters'-res:Marie_Sisters | 'producer'-dbp:producer"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Marie_Sisters> <http://dbpedia.org/property/producer> ?uri } " -"List the successor of successor of Hayden, Stone & Co. | 'Hayden, Stone & Co'-res:Hayden,_Stone_&_Co. | 'successor'-dbo:successor | 'successor'-dbo:successor","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/successor> <http://dbpedia.org/resource/Hayden,_Stone_&_Co> . . }" +"List the successor of successor of Hayden, Stone & Co. | 'Hayden, Stone & Co'-res:Hayden,_Stone_&_Co. | 'successor'-dbo:successor | 'successor'-dbo:successor"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Hayden,_Stone_&_Co> . <http://dbpedia.org/property/successor> ?uri } " "What is the origin of Xynisteri? | 'Xynisteri'-res:Xynisteri | 'origin'-dbo:origin"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Xynisteri> <http://dbpedia.org/ontology/origin> ?uri } " -"Who are currently playing for Barcelona FC? | 'FC'-res:FC | 'Barcelona'-res:Barcelona | 'playing'-dbo:field","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/currentclub> <http://dbpedia.org/resource/Barcelona_F.C> . . }" -"What is telecasted on the network where Deborah Turness holds important position? | 'Deborah Turness'-res:Deborah_Turness | 'telecasted'-dbo:transmission | 'network'-dbo:network | 'holds'-dbo:title | 'position'-dbo:position","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/keyPeople> <http://dbpedia.org/resource/Deborah_Turness> . ?x <http://dbpedia.org/ontology/network> ?uri . }" -"How many home stadium are there, of the soccer club seasons whose chairman is Merritt Paulson? | 'soccer club seasons'-res:Mooroolbark_Soccer_Club | 'Merritt Paulson'-res:Merritt_Paulson | 'chairman'-dbp:chairman | 'home stadium'-dbo:homeStadium"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/chairman> <http://dbpedia.org/resource/Merritt_Paulson> . ?x <http://dbpedia.org/ontology/homeStadium> ?uri }" -"Name the alma mater of Ernest de Saisset ? | 'Ernest de Saisset'-res:Ernest_de_Saisset | 'name'-dbp:name | 'alma mater'-dbo:almaMater"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ernest_de_Saisset> <http://dbpedia.org/property/almaMater> ?uri } " +"Who are currently playing for Barcelona FC? | 'FC'-res:FC | 'Barcelona'-res:Barcelona | 'playing'-dbo:field"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/currentclub> <http://dbpedia.org/resource/Barcelona> } " +"What is telecasted on the network where Deborah Turness holds important position? | 'Deborah Turness'-res:Deborah_Turness | 'telecasted'-dbo:transmission | 'network'-dbo:network | 'holds'-dbo:title | 'position'-dbo:position","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/keyPeople> <http://dbpedia.org/resource/Deborah_Turness> . ?uri <http://dbpedia.org/ontology/network> ?x . }" +"How many home stadium are there, of the soccer club seasons whose chairman is Merritt Paulson? | 'soccer club seasons'-res:Mooroolbark_Soccer_Club | 'Merritt Paulson'-res:Merritt_Paulson | 'chairman'-dbp:chairman | 'home stadium'-dbo:homeStadium","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/chairman> <http://dbpedia.org/resource/Merritt_Paulson> . ?x <http://dbpedia.org/ontology/homeStadium> ?uri . }" +"Name the alma mater of Ernest de Saisset ? | 'Ernest de Saisset'-res:Ernest_de_Saisset | 'name'-dbp:name | 'alma mater'-dbo:almaMater"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ernest_de_Saisset> <http://dbpedia.org/ontology/almaMater> ?uri } " "Which successor of Philippine Ports Authority is the state of origin of Ruben J. Villote ? | 'Philippine Ports Authority'-res:Philippine_Ports_Authority | 'J'-res:J | 'Ruben Villote'-res:Ruben_J._Villote | 'successor'-dbo:successor | 'origin'-dbo:origin"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Philippine_Ports_Authority> <http://dbpedia.org/property/successor> ?uri . <http://dbpedia.org/resource/Ruben_J._Villote> <http://dbpedia.org/ontology/origin> ?uri} " "What awards have been won by the executive producer of Timmy Time ? | 'Timmy Time'-res:Timmy_Time | 'executive producer'-dbo:executiveProducer | 'awards'-dbo:award","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Timmy_Time> <http://dbpedia.org/ontology/executiveProducer> ?x . ?x <http://dbpedia.org/property/awards> ?uri . }" -"What have some US citizens died of? | 'US'-res:United_States | 'citizens'-dbp:country | 'died'-dbo:flag","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/nationality> <http://dbpedia.org/resource/United_States> . ?x <http://dbpedia.org/ontology/deathPlace> ?uri . }" -"Count the total number of mammals whose phylum is Chordate and order (taxonomy) is Diprotodontia? | 'mammals'-res:Mammals_of_the_Indiana_Dunes | 'Chordate'-res:Chordate | 'Diprotodontia'-res:Diprotodontia | 'count'-dbo:country | 'total'-dbo:result | 'phylum'-dbo:phylum | '(taxonomy)'-dbo:order"," SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/phylum> <http://dbpedia.org/resource/Chordate> } " -"How many cities are around the sea into which the aegean sea flows? | 'aegean sea'-res:Aegean_Sea | 'cities'-dbo:city | 'sea'-dbo:lake | 'aegean sea'-dbo:lake | 'flows'-dbo:circulation","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/riverMouth> <http://dbpedia.org/resource/Aegean_Sea> . ?x <http://dbpedia.org/property/cities> ?uri . }" -"What is the university to which Erica Frank went, and where Ivan Toplak was a club manager? | 'Erica Frank went,'-res:Erica_Frank | 'Ivan Toplak'-res:Ivan_Toplak | 'university'-dbo:university | 'club manager'-dbo:managerClub","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Erica_Frank> <http://dbpedia.org/ontology/university> ?uri . <http://dbpedia.org/resource/Ivan_Toplak> <http://dbpedia.org/property/managerClub> ?uri . }" -"Ricky Gervais is the executive producer of the series having how many fictional characters? | 'Ricky gervais'-res:Ricky_Gervais | 'fictional characters'-res:Fiction | 'executive producer'-dbo:executiveProducer | 'series'-dbo:series","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/executiveProducer> <http://dbpedia.org/resource/Ricky_Gervais> . ?x <http://dbpedia.org/property/series> ?uri . }" -"What are some dishes from the family of dishes which primarily use flour? | 'dishes'-dbo:state | 'family'-dbo:family | 'dishes'-dbo:state | 'flour'-dbo:depth","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/ingredient> <http://dbpedia.org/resource/Flour> . ?x <http://dbpedia.org/property/dishes> ?uri . }" -"Which team won the American Football League? | 'American Football League'-res:Organization_of_American_States | 'American Football League'-res:American_Football_League | 'team'-dbo:team | 'won'-dbo:award | ''-dbo:country"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/American_Football_League> <http://dbpedia.org/property/league> ?uri } " -"Which researchers received fellowship from Royal Society? | 'researchers'-res:Researchers_Alliance_for_Development | 'Royal Society'-res:Royal_Society | 'fellowship'-dbo:award","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/awards> <http://dbpedia.org/resource/Royal_Society> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}" -"Where was James H. Fields buried ? | 'James H. Fields'-res:James_H._Fields | 'buried'-dbo:genre"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/James_H._Fields> <http://dbpedia.org/ontology/burial> ?uri } " +"What have some US citizens died of? | 'US'-res:United_States | 'citizens'-dbp:country | 'died'-dbo:flag","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/birthPlace> <http://dbpedia.org/resource/United_States> . ?x <http://dbpedia.org/ontology/deathPlace> ?uri . }" +"Count the total number of mammals whose phylum is Chordate and order (taxonomy) is Diprotodontia? | 'mammals'-res:Mammals_of_the_Indiana_Dunes | 'Chordate'-res:Chordate | 'Diprotodontia'-res:Diprotodontia | 'count'-dbo:country | 'total'-dbo:result | 'phylum'-dbo:phylum | '(taxonomy)'-dbo:order"," SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/phylum> <http://dbpedia.org/resource/Chordate> . ?uri <http://dbpedia.org/ontology/order> <http://dbpedia.org/resource/Diprotodontia> } " +"How many cities are around the sea into which the aegean sea flows? | 'aegean sea'-res:Aegean_Sea | 'cities'-dbo:city | 'sea'-dbo:lake | 'aegean sea'-dbo:lake | 'flows'-dbo:circulation","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/inflow> <http://dbpedia.org/resource/Aegean_Sea> . ?x <http://dbpedia.org/property/cities> ?uri . }" +"What is the university to which Erica Frank went, and where Ivan Toplak was a club manager? | 'Erica Frank went,'-res:Erica_Frank | 'Ivan Toplak'-res:Ivan_Toplak | 'university'-dbo:university | 'club manager'-dbo:managerClub"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Erica_Frank> <http://dbpedia.org/ontology/university> ?uri . <http://dbpedia.org/resource/Ivan_Toplak> <http://dbpedia.org/property/managerClub> ?uri} " +"Ricky Gervais is the executive producer of the series having how many fictional characters? | 'Ricky gervais'-res:Ricky_Gervais | 'fictional characters'-res:Fiction | 'executive producer'-dbo:executiveProducer | 'series'-dbo:series","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/executiveProducer> <http://dbpedia.org/resource/Ricky_Gervais> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/FictionCharacter>}" +"What are some dishes from the family of dishes which primarily use flour? | 'dishes'-dbo:state | 'family'-dbo:family | 'dishes'-dbo:state | 'flour'-dbo:depth","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/flours> <http://dbpedia.org/resource/Flour> . ?x <http://dbpedia.org/ontology/family> ?uri . }" +"Which team won the American Football League? | 'American Football League'-res:Organization_of_American_States | 'American Football League'-res:American_Football_League | 'team'-dbo:team | 'won'-dbo:award | ''-dbo:country","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/league> <http://dbpedia.org/resource/American_Football_League> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SportsTeam>}" +"Which researchers received fellowship from Royal Society? | 'researchers'-res:Researchers_Alliance_for_Development | 'Royal Society'-res:Royal_Society | 'fellowship'-dbo:award","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/award> <http://dbpedia.org/resource/Royal_Society> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}" +"Where was James H. Fields buried ? | 'James H. Fields'-res:James_H._Fields | 'buried'-dbo:genre"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/James_H._Fields> <http://dbpedia.org/ontology/restingPlace> ?uri } " "Who is the fictional character whose family member is Padme Amidala? | 'Padme Amidala'-res:Padmé_Amidala | 'family'-dbp:family | 'fictional character'-dbo:FictionalCharacter","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/family> <http://dbpedia.org/resource/Padmé_Amidala> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/FictionalCharacter>}" -"What company is the one which wrote the google web toolkit and PlayN? | 'google web toolkit'-res:Google_Web_Toolkit | 'PlayN'-res:PlayN | 'company'-dbo:company | 'wrote'-dbo:author","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Google_Web_Toolkit> <http://dbpedia.org/property/author> ?uri . <http://dbpedia.org/resource/PlayN> <http://dbpedia.org/ontology/company> ?uri . }" -"Which are the automobile platform whose one of the automobile platform is Dodge ? | 'Dodge'-res:Dodge | 'automobile platform'-dbo:automobilePlatform | 'automobile platform'-dbo:automobilePlatform"," SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/platform> <http://dbpedia.org/resource/Dodge> . ?x <http://dbpedia.org/ontology/automobilePlatform> ?uri }" +"What company is the one which wrote the google web toolkit and PlayN? | 'google web toolkit'-res:Google_Web_Toolkit | 'PlayN'-res:PlayN | 'company'-dbo:company | 'wrote'-dbo:author","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/author> <http://dbpedia.org/resource/Google_Web_Toolkit> . ?uri <http://dbpedia.org/property/company> <http://dbpedia.org/resource/PlayN> . }" +"Which are the automobile platform whose one of the automobile platform is Dodge ? | 'Dodge'-res:Dodge | 'automobile platform'-dbo:automobilePlatform | 'automobile platform'-dbo:automobilePlatform"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dodge> <http://dbpedia.org/ontology/automobilePlatform> ?uri } " "Where was Ne daj se, Nina first aired ? | 'Ne daj se, Nina'-res:Ne_daj_se,_Nina | 'aired'-dbp:firstAired"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ne_daj_se,_Nina> <http://dbpedia.org/property/firstAired> ?uri } " -"Brian Moriarty designed video games written by whom? | 'brian Moriarty'-res:Brian_Moriarty | 'video games written'-res:Video_game | 'designed'-dbo:designer | 'written'-dbo:writer","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/designer> <http://dbpedia.org/resource/Brian_Moriarty> . ?uri <http://dbpedia.org/property/writer> ?x . }" -"Where did the conflict take place where Louis Briere de I'Isle was a commander? | 'I'-res:I | 'Louis Briere de'-res:Michel_Brière | 'conflict'-dbo:battle | 'place'-dbo:place | 'commander'-dbo:commander","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/commander> <http://dbpedia.org/resource/Louis_Brière> . ?x <http://dbpedia.org/ontology/territory> ?uri . }" -"Quebec born ice hockey players have stopped playing for which teams? | 'ice hockey players'-res:Ice_hockey | 'quebec'-dbo:leader | 'born'-dbo:birthYear | 'stopped'-dbo:patron | 'playing'-dbo:field | 'teams'-dbp:team","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/currentclub> <http://dbpedia.org/resource/Ice_hockey> . ?x <http://dbpedia.org/property/debutteam> ?uri . }" -"what kind of things play on WBIG FM? | 'WBIG'-res:WBIG | 'FM'-res:FM | 'FM'-res:FM | 'WBIG'-res:WBIG | 'play'-dbo:team"," SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/FM> <http://dbpedia.org/resource/WBIG_FM> . ?x <http://dbpedia.org/property/genre> ?uri }" +"Brian Moriarty designed video games written by whom? | 'brian Moriarty'-res:Brian_Moriarty | 'video games written'-res:Video_game | 'designed'-dbo:designer | 'written'-dbo:writer","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/writer> <http://dbpedia.org/resource/Brian_Moriarty> . ?uri <http://dbpedia.org/property/designer> ?x . }" +"Where did the conflict take place where Louis Briere de I'Isle was a commander? | 'I'-res:I | 'Louis Briere de'-res:Michel_Brière | 'conflict'-dbo:battle | 'place'-dbo:place | 'commander'-dbo:commander","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/commander> <http://dbpedia.org/resource/Louis_Brière> . ?x <http://dbpedia.org/property/territory> ?uri . }" +"Quebec born ice hockey players have stopped playing for which teams? | 'ice hockey players'-res:Ice_hockey | 'quebec'-dbo:leader | 'born'-dbo:birthYear | 'stopped'-dbo:patron | 'playing'-dbo:field | 'teams'-dbp:team","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Quebec_hockey> . ?x <http://dbpedia.org/property/team> ?uri . }" +"what kind of things play on WBIG FM? | 'WBIG'-res:WBIG | 'FM'-res:FM | 'FM'-res:FM | 'WBIG'-res:WBIG | 'play'-dbo:team"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/WBIG_FM> <http://dbpedia.org/property/format> ?uri } " "In which fields are the graduates of Worcester College, Oxford working? | 'Worcester College, Oxford'-res:Worcester_College,_Oxford | 'graduates'-dbp:almaMater | 'field'-dbo:field","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/almaMater> <http://dbpedia.org/resource/Worcester_College,_Oxford> . ?x <http://dbpedia.org/ontology/field> ?uri . }" "What are the musical performances whose label is Celluloid Records? | 'Celluloid Records'-res:Celluloid_Records | 'musical performances'-dbo:musicalArtist | 'label'-dbp:label","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Celluloid_Records> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MusicalArtist>}" "How many people have fought wars where Arthur St. Clair was a commander? | 'Arthur St Clair'-res:Arthur_St._Clair | 'fought'-dbo:type | 'wars'-dbp:battles | 'commander'-dbo:commander","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/commander> <http://dbpedia.org/resource/Arthur_St._Clair> . ?x <http://dbpedia.org/property/combatant> ?uri . }" -"Give me the home town of all musical artists who uses Guitar as instrument ? | 'Guitar'-res:Guitar | 'home town'-dbo:hometown | 'musical artists'-dbp:show | 'instrument'-dbo:instrument"," SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/instrument> <http://dbpedia.org/resource/Guitar> . ?x <http://dbpedia.org/ontology/hometown> ?uri }" -"Name the movies directed by Stanley Kubrick and edited by Anthony Harvey? | 'Stanley Kubrick'-res:Stanley_Kubrick | 'Anthony Harvey'-res:Anthony_Harvey | 'directed'-dbo:director | 'edited'-dbo:editing","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/director> <http://dbpedia.org/resource/Stanley_Kubrick> . ?uri <http://dbpedia.org/property/editing> <http://dbpedia.org/resource/Anthony_Harvey> . }" -"What are some other things developed by the company who made the remote desktop protocol? | 'remote desktop protocol'-res:Remote_Desktop_Protocol | 'developed'-dbo:developer | 'company'-dbo:company","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/products> <http://dbpedia.org/resource/Remote_Desktop_Protocol> . ?x <http://dbpedia.org/ontology/developer> ?uri . }" +"Give me the home town of all musical artists who uses Guitar as instrument ? | 'Guitar'-res:Guitar | 'home town'-dbo:hometown | 'musical artists'-dbp:show | 'instrument'-dbo:instrument","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/instrument> <http://dbpedia.org/resource/Guitar> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MusicalArtist>}" +"Name the movies directed by Stanley Kubrick and edited by Anthony Harvey? | 'Stanley Kubrick'-res:Stanley_Kubrick | 'Anthony Harvey'-res:Anthony_Harvey | 'directed'-dbo:director | 'edited'-dbo:editing","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/editing> <http://dbpedia.org/resource/Anthony_Harvey> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" +"What are some other things developed by the company who made the remote desktop protocol? | 'remote desktop protocol'-res:Remote_Desktop_Protocol | 'developed'-dbo:developer | 'company'-dbo:company","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/programmingPlatform> <http://dbpedia.org/resource/Remote_Desktop_Protocol> . ?x <http://dbpedia.org/ontology/developer> ?uri . }" "List the guests of On Broadway ? | 'On Broadway'-res:On_Broadway_(Smash) | 'guests'-dbp:guests"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/On_Broadway_(Smash)> <http://dbpedia.org/property/guests> ?uri } " -"How many universities are there whose country's capital is Oslo? | 'universities'-res:Universities_South_Africa | 'Oslo'-res:Oslo | 'country'-dbo:country | 'capital'-dbo:capital","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/capital> <http://dbpedia.org/resource/Oslo> . ?uri <http://dbpedia.org/property/country> ?x . }" -"Which executive producer of the ultimate merger is also an important person at Trump Productions? | 'the ultimate merger'-res:The_Ultimate_Merger | 'Trump Productions'-res:Trump_Productions | 'executive producer'-dbo:executiveProducer | 'person'-dbo:keyPerson","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/keyPerson> <http://dbpedia.org/resource/The_Ultimate_Merger> . ?x <http://dbpedia.org/ontology/executiveProducer> ?uri . }" +"How many universities are there whose country's capital is Oslo? | 'universities'-res:Universities_South_Africa | 'Oslo'-res:Oslo | 'country'-dbo:country | 'capital'-dbo:capital","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/capital> <http://dbpedia.org/resource/Oslo> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/University>}" +"Which executive producer of the ultimate merger is also an important person at Trump Productions? | 'the ultimate merger'-res:The_Ultimate_Merger | 'Trump Productions'-res:Trump_Productions | 'executive producer'-dbo:executiveProducer | 'person'-dbo:keyPerson"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Ultimate_Merger> <http://dbpedia.org/ontology/executiveProducer> ?uri . <http://dbpedia.org/resource/Trump_Productions> <http://dbpedia.org/property/keyPerson> ?uri} " "What is the official name of Colorado wine ? | 'Colorado wine'-res:Colorado_wine | 'official name'-dbp:officialName"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Colorado_wine> <http://dbpedia.org/property/officialName> ?uri } " -"In how many states can one find Burr Tuss kind of bridges? | 'Burr Tuss'-res:Aphex_Twin | 'bridges'-dbo:abstract","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/type> <http://dbpedia.org/resource/Burr_Tuss> . ?x <http://dbpedia.org/property/crosses> ?uri . }" -"Name all those buried in a place governed by a city council. | 'name'-dbo:name | 'buried'-dbo:weight | 'place'-dbo:place | 'governed'-dbo:employer | 'city council'-dbo:house","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/leaderName> <http://dbpedia.org/resource/City_of_Chicago> . ?uri <http://dbpedia.org/property/restingplace> ?x . }" -"What royalties's sepulchre is Mausoleum of Augustus? | 'Royalties'-res:Royalties | 'sepulchre'-res:Easter_Sepulchre | 'Mausoleum of Augustus'-res:Mausoleum_of_Augustus","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/sepulchre> <http://dbpedia.org/resource/Mausoleum_of_Augustus> . }" -"Name the common university of the Cardinal and Jim Wylie? | 'cardinal'-res:Stanford_Cardinal | 'Jim Wylie'-res:Jim_Wylie | 'name'-dbp:name | 'common university'-dbp:university","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Stanford_Cardinal> <http://dbpedia.org/ontology/commonUniversity> ?uri . <http://dbpedia.org/resource/Jim_Wylie> <http://dbpedia.org/property/university> ?uri . }" +"In how many states can one find Burr Tuss kind of bridges? | 'Burr Tuss'-res:Aphex_Twin | 'bridges'-dbo:abstract","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/design> <http://dbpedia.org/resource/Burr_Tuss> . ?x <http://dbpedia.org/ontology/state> ?uri . }" +"Name all those buried in a place governed by a city council. | 'name'-dbo:name | 'buried'-dbo:weight | 'place'-dbo:place | 'governed'-dbo:employer | 'city council'-dbo:house","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/leaderName> <http://dbpedia.org/resource/City_of_Chicago> . ?x <http://dbpedia.org/ontology/restingPlace> ?uri . }" +"What royalties's sepulchre is Mausoleum of Augustus? | 'Royalties'-res:Royalties | 'sepulchre'-res:Easter_Sepulchre | 'Mausoleum of Augustus'-res:Mausoleum_of_Augustus","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/restingPlace> <http://dbpedia.org/resource/Mausoleum_of_Augustus> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Royalty>}" +"Name the common university of the Cardinal and Jim Wylie? | 'cardinal'-res:Stanford_Cardinal | 'Jim Wylie'-res:Jim_Wylie | 'name'-dbp:name | 'common university'-dbp:university","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/university> <http://dbpedia.org/resource/Stanford_Cardinal> . ?uri <http://dbpedia.org/ontology/commonUniversity> <http://dbpedia.org/resource/Jim_Wylie> . }" "What is the automobile platform of Chiva bus ? | 'Chiva bus'-res:Chiva_bus | 'automobile platform'-dbo:automobilePlatform"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Chiva_bus> <http://dbpedia.org/ontology/automobilePlatform> ?uri } " -"Which TV show is related to The Sarah Jane Adventures and theme music is composed by Ron Grainer? | 'TV'-res:Tv_test_pattern | 'The Sarah Jane Adventures'-res:The_Sarah_Jane_Adventures | 'Ron Grainer'-res:Ron_Grainer | 'show'-dbo:show | 'related'-dbo:related | 'theme music'-dbo:openingTheme | 'composed'-dbo:composer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/related> <http://dbpedia.org/resource/The_Sarah_Jane_Adventures> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" +"Which TV show is related to The Sarah Jane Adventures and theme music is composed by Ron Grainer? | 'TV'-res:Tv_test_pattern | 'The Sarah Jane Adventures'-res:The_Sarah_Jane_Adventures | 'Ron Grainer'-res:Ron_Grainer | 'show'-dbo:show | 'related'-dbo:related | 'theme music'-dbo:openingTheme | 'composed'-dbo:composer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/related> <http://dbpedia.org/resource/The_Sarah_Jane_Adventures> and themeMusicComposer <http://dbpedia.org/resource/Ron_Grainer> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" "Count everyone who lives in a place where Indian English is an official language ? | 'Indian English'-res:India | 'Indian English'-res:Indian_English | 'count'-dbo:type | 'lives'-dbo:residence | 'place'-dbo:place | 'official language'-dbo:officialLanguage | ''-dbo:country","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/officialLanguage> <http://dbpedia.org/resource/Indian_English> . ?uri <http://dbpedia.org/property/residence> ?x . }" "How many religions are practiced by diplomats? | 'diplomats'-res:Diplomacy | 'practiced'-dbo:profession | 'religion'-dbp:religion","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/profession> <http://dbpedia.org/resource/Diplomacy> . ?x <http://dbpedia.org/property/religion> ?uri . }" -"Count the number of things people who know linguistics are known for ? | 'Linguistics'-res:Linguistics | 'known for'-dbo:knownFor | 'known for'-dbo:knownFor"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/knownFor> <http://dbpedia.org/resource/Linguistics> . }" +"Count the number of things people who know linguistics are known for ? | 'Linguistics'-res:Linguistics | 'known for'-dbo:knownFor | 'known for'-dbo:knownFor"," SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/knownFor> <http://dbpedia.org/resource/Linguistics> } " "How many religions are followed by organizations which are internationally known as the muslim brotherhood? | 'muslim brotherhood'-res:Muslim_Brotherhood | 'international'-dbp:international | 'religion'-dbo:religion","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/nationality> <http://dbpedia.org/resource/Muslim_Brotherhood> . ?x <http://dbpedia.org/ontology/religion> ?uri . }" -"What is the home ground of the clubs managed by Ciao Zanardi? | 'Ciao Zanardi'-res:Caio_Zanardi | 'home ground'-dbo:institution | 'clubs'-dbo:college | 'managed'-dbo:director","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/manager> <http://dbpedia.org/resource/Caio_Zanardi> . ?x <http://dbpedia.org/ontology/homeGround> ?uri . }" +"What is the home ground of the clubs managed by Ciao Zanardi? | 'Ciao Zanardi'-res:Caio_Zanardi | 'home ground'-dbo:institution | 'clubs'-dbo:college | 'managed'-dbo:director","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/manager> <http://dbpedia.org/resource/Ciao_Zanardi> . ?x <http://dbpedia.org/ontology/homeGround> ?uri . }" "What is the country with native language as Languages of Ethiopia? | 'Languages of Ethiopia'-res:Languages_of_Ethiopia | 'language'-dbo:language | 'country'-dbo:Country","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/language> <http://dbpedia.org/resource/Languages_of_Ethiopia> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Country>}" "Where was Girls (The Prodigy song) recorded ? | 'Girls (The Prodigy song)'-res:Girls_(The_Prodigy_song) | 'recorded'-dbp:recorded"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Girls_(The_Prodigy_song)> <http://dbpedia.org/property/recorded> ?uri } " "How many TV shows' networks are headquarterd in NY? | 'NY'-res:New_York | 'shows'-dbo:place | 'networks'-dbo:broadcastNetwork | 'headquarterd'-dbp:headquarters","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/New_York> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" -"Give me some shows owned by BBC one and BBC hd? | 'BBC one'-res:BBC_One | 'BBC hd'-res:BBC_HD | 'shows'-dbo:place | 'owned'-dbp:owner","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/owners> <http://dbpedia.org/resource/BBC_One> . ?uri <http://dbpedia.org/ontology/network> <http://dbpedia.org/resource/CBS_HD}> " -"How many teams have rented stadiums in Canada? | 'Canada'-res:Canada | 'teams'-dbp:team | 'rented'-dbo:related | 'stadiums'-dbp:stadium","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/city> <http://dbpedia.org/resource/Canada> . ?x <http://dbpedia.org/ontology/tenant> ?uri . }" +"Give me some shows owned by BBC one and BBC hd? | 'BBC one'-res:BBC_One | 'BBC hd'-res:BBC_HD | 'shows'-dbo:place | 'owned'-dbp:owner","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/owningCompany> <http://dbpedia.org/resource/BBC_One> . ?uri <http://dbpedia.org/property/company> ?x . }" +"How many teams have rented stadiums in Canada? | 'Canada'-res:Canada | 'teams'-dbp:team | 'rented'-dbo:related | 'stadiums'-dbp:stadium","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/tenant> <http://dbpedia.org/resource/Canada> . ?x <http://dbpedia.org/property/tenants> ?uri . }" "List the outflow of Lake Uniamsi? | 'Lake Uniamsi'-res:Lake_Uniamési | 'outflow'-dbo:outflow"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lake_Uniamési> <http://dbpedia.org/ontology/outflow> ?uri } " "Name the incumbent of Linda Jenness ? | 'Linda Jenness'-res:Linda_Jenness | 'name'-dbp:name | 'incumbent'-dbo:incumbent"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Linda_Jenness> <http://dbpedia.org/ontology/incumbent> ?uri } " -"In which countries does the sea lie on whose shore is the city of Cumana? | 'Cumana'-res:Cumaná | 'sea lie'-dbo:elevation | 'shore'-dbo:interest | 'city'-dbo:city","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/cities> <http://dbpedia.org/resource/Cumaná> . ?x <http://dbpedia.org/property/sourceCountry> ?uri . }" +"In which countries does the sea lie on whose shore is the city of Cumana? | 'Cumana'-res:Cumaná | 'sea lie'-dbo:elevation | 'shore'-dbo:interest | 'city'-dbo:city","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/cities> <http://dbpedia.org/resource/Cumaná> . ?x <http://dbpedia.org/property/country> ?uri . }" "Where is the headquarters of Sigma TV | 'Sigma TV'-res:Sigma_TV | 'headquarters'-dbp:headquarters"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Sigma_TV> <http://dbpedia.org/property/headquarters> ?uri } " -"Count the affiliations of International Union of Anarchists? | 'International Union of Anarchists'-res:International_Union_of_Anarchists | 'affiliation'-dbp:affiliation","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/affiliation> <http://dbpedia.org/resource/International_Union_of_Anarchists> . }" +"Count the affiliations of International Union of Anarchists? | 'International Union of Anarchists'-res:International_Union_of_Anarchists | 'affiliation'-dbp:affiliation","SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/International_Union_of_Anarchists> <http://dbpedia.org/property/affiliation> ?uri . }" "What is the alma mater of the scientist whose PhD advisor is Jean-Claude Latombe ? | 'scientist'-res:Scientist | 'PhD advisor'-res:Doctor_of_Philosophy | 'Jean-Claude Latombe'-res:Jean-Claude_Latombe | 'alma mater'-dbo:almaMater","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/doctoralAdvisor> <http://dbpedia.org/resource/Jean-Claude_Latombe> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}" -"List the people residing in Wilton, Connecticut? | 'Wilton, Connecticut'-res:Wilton,_Connecticut | 'residing'-dbp:residence","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/residence> <http://dbpedia.org/resource/Wilton,_Connecticut> . }" -"Bantam Spectra is the publisher of which series? | 'bantam Spectra'-res:Bantam_Spectra | 'publisher'-dbo:publisher | 'series'-dbo:series","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/publisher> <http://dbpedia.org/resource/Bantam_Spectra> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Series>}" -"How many things are produced by companies located in Tehran? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'Tehran'-res:Tehran | 'produced'-dbo:product | 'located'-dbp:location","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/location> <http://dbpedia.org/resource/Tehran> . ?uri <http://dbpedia.org/ontology/manufacturer> ?x . }" -"Horses grandsired by Sundridge have won which awards? | 'Sundridge'-res:Sundridge | 'horses'-dbo:staff | 'grandsired'-dbo:grandsire | 'won'-dbo:award | 'awards'-dbo:award","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/grandsire> <http://dbpedia.org/resource/Sundridge> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Horse>}" -"Who was on the first team in the GPs that were held at Watkins Glen, NY? | 'GPs'-res:NBEAL2 | 'NY'-res:New_York | 'Watkins Glen,'-res:Watkins_Glen_International | 'team'-dbo:team | 'held'-dbo:office","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/city> <http://dbpedia.org/resource/Watkins_Glen_International> . ?x <http://dbpedia.org/property/firstTeam> ?uri . }" -"Name the movie whose screenplay is by Akiva Goldsman and directed by Joel Schumacher ? | 'screenplay'-res:Screenplay_(book) | 'Akiva Goldsman'-res:Akiva_Goldsman | 'Joel Schumacher'-res:Joel_Schumacher | 'name'-dbp:name | 'movie'-dbo:picture | 'directed'-dbp:directedby","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/screenplay> <http://dbpedia.org/resource/Akiva_Goldsman> . ?uri <http://dbpedia.org/property/director> <http://dbpedia.org/resource/Joel_Schumacher> . }" -"What is the baseball team whose club manager's debut team is Houston Astros? | 'debut team'-res:The_Debut | 'Houston Astros'-res:Houston_Astros | 'baseball team'-dbo:team | 'club manager'-dbo:director","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/debutteam> <http://dbpedia.org/resource/Houston_Astros> . ?uri <http://dbpedia.org/property/manager> ?x . }" +"List the people residing in Wilton, Connecticut? | 'Wilton, Connecticut'-res:Wilton,_Connecticut | 'residing'-dbp:residence","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/residence> <http://dbpedia.org/resource/Wilton,_Connecticut> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}" +"Bantam Spectra is the publisher of which series? | 'bantam Spectra'-res:Bantam_Spectra | 'publisher'-dbo:publisher | 'series'-dbo:series","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/publisher> <http://dbpedia.org/resource/Bantam_Spectra> . ?x <http://dbpedia.org/property/series> ?uri . }" +"How many things are produced by companies located in Tehran? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'Tehran'-res:Tehran | 'produced'-dbo:product | 'located'-dbp:location","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/location> <http://dbpedia.org/resource/Tehran> . ?uri <http://dbpedia.org/ontology/product> ?x . }" +"Horses grandsired by Sundridge have won which awards? | 'Sundridge'-res:Sundridge | 'horses'-dbo:staff | 'grandsired'-dbo:grandsire | 'won'-dbo:award | 'awards'-dbo:award","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/grandsire> <http://dbpedia.org/resource/Sundridge> . ?x <http://dbpedia.org/property/awards> ?uri . }" +"Who was on the first team in the GPs that were held at Watkins Glen, NY? | 'GPs'-res:NBEAL2 | 'NY'-res:New_York | 'Watkins Glen,'-res:Watkins_Glen_International | 'team'-dbo:team | 'held'-dbo:office","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/ground> <http://dbpedia.org/resource/Watkins_Glen_International> . ?x <http://dbpedia.org/property/firstTeam> ?uri . }" +"Name the movie whose screenplay is by Akiva Goldsman and directed by Joel Schumacher ? | 'screenplay'-res:Screenplay_(book) | 'Akiva Goldsman'-res:Akiva_Goldsman | 'Joel Schumacher'-res:Joel_Schumacher | 'name'-dbp:name | 'movie'-dbo:picture | 'directed'-dbp:directedby","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/screenplay> <http://dbpedia.org/resource/Akiva_Goldsman> and directed by Joel_Schumacher . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" +"What is the baseball team whose club manager's debut team is Houston Astros? | 'debut team'-res:The_Debut | 'Houston Astros'-res:Houston_Astros | 'baseball team'-dbo:team | 'club manager'-dbo:director","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/debutteam> <http://dbpedia.org/resource/Houston_Astros> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/BaseballTeam>}" "In how many different places have people beatified by Pope Pius X died? | 'X'-res:X | 'Pope Pius'-res:Pope_Pius_X | 'places'-dbp:height | 'beatified'-dbp:beatifiedBy | 'died'-dbo:deathDate","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/beatifiedBy> <http://dbpedia.org/resource/Pope_Pius_X> . ?x <http://dbpedia.org/ontology/deathPlace> ?uri . }" -"What faiths are followed by the relatives of Meadow Soprano? | 'Meadow Soprano'-res:Meadow_Soprano | 'faiths'-dbo:religion | 'relatives'-dbo:relative","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Meadow_Soprano> <http://dbpedia.org/property/relative> ?x . ?x <http://dbpedia.org/ontology/religion> ?uri . }" -"who was the president under whom winston bryant served as a lieutenant? | 'Winston bryant'-res:Winston_Bryant | 'president'-dbo:president | 'served'-dbo:regionServed | 'lieutenant'-dbo:lieutenant"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/lieutenant> <http://dbpedia.org/resource/Winston_Bryant> } " -"What are the bands associated with the artists of My Favorite Girl ? | 'My Favorite Girl'-res:My_Favorite_Girl | 'bands'-dbo:staff | 'associated'-dbo:associatedBand | 'artists'-dbp:artist","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/My_Favorite_Girl> <http://dbpedia.org/property/artist> ?x . ?x <http://dbpedia.org/ontology/associatedBand> ?uri . }" -"What are the television shows whose network's stockholder is Warner Bros. Television? | 'Warner Bros. Television'-res:Warner_Bros._Television | 'television'-dbo:transmission | 'shows'-dbo:place | 'network'-dbo:network","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/owner> <http://dbpedia.org/resource/Warner_Bros._Television> . ?uri <http://dbpedia.org/property/network> ?x . }" +"What faiths are followed by the relatives of Meadow Soprano? | 'Meadow Soprano'-res:Meadow_Soprano | 'faiths'-dbo:religion | 'relatives'-dbo:relative","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Meadow_Soprano> <http://dbpedia.org/ontology/relative> ?x . ?x <http://dbpedia.org/property/religion> ?uri . }" +"who was the president under whom winston bryant served as a lieutenant? | 'Winston bryant'-res:Winston_Bryant | 'president'-dbo:president | 'served'-dbo:regionServed | 'lieutenant'-dbo:lieutenant","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/lieutenant> <http://dbpedia.org/resource/Winston_Bryant> . ?x <http://dbpedia.org/ontology/president> ?uri . }" +"What are the bands associated with the artists of My Favorite Girl ? | 'My Favorite Girl'-res:My_Favorite_Girl | 'bands'-dbo:staff | 'associated'-dbo:associatedBand | 'artists'-dbp:artist","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/associatedBand> <http://dbpedia.org/resource/My_Favorite_Girl> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Band>}" +"What are the television shows whose network's stockholder is Warner Bros. Television? | 'Warner Bros. Television'-res:Warner_Bros._Television | 'television'-dbo:transmission | 'shows'-dbo:place | 'network'-dbo:network","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/owner> <http://dbpedia.org/resource/Warner_Bros._Television> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" "What is the total number of software whose programming language is C++ and operating system is Microsoft Windows? | 'software'-res:Rietveld_(software) | 'C++'-res:C++ | 'Microsoft Windows'-res:Microsoft_Windows | 'total'-dbo:populationTotal | 'programming language'-dbo:language | 'operating'-dbo:operatingSystem"," SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/programmingLanguage> <http://dbpedia.org/resource/C++> . ?uri <http://dbpedia.org/ontology/operatingSystem> <http://dbpedia.org/resource/Microsoft_Windows> } " -"how many companies are located in a spanish speaking region? | 'spanish'-res:Spanish_language | 'located'-dbo:language | 'spanish speaking'-dbo:location"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/region> <http://dbpedia.org/resource/Spanish_language> . ?uri <http://dbpedia.org/property/location> ?uri }" -"From how many different institutes have the members of Judge Advocate General's Corps graduated? | 'Judge Advocate General 's Corps'-res:Judge_Advocate_General's_Corps,_United_States_Army | 'institutes'-dbo:university | 'members'-dbo:family | 'graduated'-dbo:effectiveRadiatedPower","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/branch> <http://dbpedia.org/resource/Judge_Advocate_General's_Corps> . ?x <http://dbpedia.org/ontology/institution> ?uri . }" -"Name the river whose mouth mountain is Southend-on-Sea and mouth place is Essex? | 'Southend-on-Sea'-res:Southend-on-Sea | 'Essex'-res:Essex | 'name'-dbp:name | 'river'-dbo:river | 'mouth mountain'-dbo:elevation | 'mouth place'-dbo:district","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/mouthMountain> <http://dbpedia.org/resource/Southend-on-Sea> . ?uri mouthPlace <http://dbpedia.org/resource/Essex> . }" +"how many companies are located in a spanish speaking region? | 'spanish'-res:Spanish_language | 'located'-dbo:language | 'spanish speaking'-dbo:location","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/language> <http://dbpedia.org/resource/Spanish_language> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}" +"From how many different institutes have the members of Judge Advocate General's Corps graduated? | 'Judge Advocate General 's Corps'-res:Judge_Advocate_General's_Corps,_United_States_Army | 'institutes'-dbo:university | 'members'-dbo:family | 'graduated'-dbo:effectiveRadiatedPower","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/almaMater> <http://dbpedia.org/resource/Judge_Advocate_General's_Corps,_United_States_Army> . ?x <http://dbpedia.org/ontology/institution> ?uri . }" +"Name the river whose mouth mountain is Southend-on-Sea and mouth place is Essex? | 'Southend-on-Sea'-res:Southend-on-Sea | 'Essex'-res:Essex | 'name'-dbp:name | 'river'-dbo:river | 'mouth mountain'-dbo:elevation | 'mouth place'-dbo:district","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/mouthMountain> <http://dbpedia.org/resource/Southend-on-Sea> . ?uri <http://dbpedia.org/property/mouthPlace> <http://dbpedia.org/resource/Essex> . }" "What genre's softwares are released with a GNU GPL license? | 'softwares'-res:Software | 'GNU'-res:GNU | 'GPL license'-res:Gpl-violations.org | 'GPL'-res:Gpl-violations.org | 'GNU license'-res:GNU_Free_Documentation_License | 'genre'-dbo:genre | 'released'-dbp:released","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/license> <http://dbpedia.org/resource/GNU_Free_Documentation_License> . ?x <http://dbpedia.org/property/genre> ?uri . }" "Who is the leader of Allgemeine SS ? | 'SS'-res:Schutzstaffel | 'Allgemeine'-res:Allgemeine_SS | 'leader'-dbo:leader"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Allgemeine_SS> <http://dbpedia.org/property/leader> ?uri } " "Where is the headquarters of Metro Transit (Minnesota) ? | 'Metro Transit (Minnesota)'-res:Metro_Transit_(Minnesota) | 'headquarters'-dbp:headquarters"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Metro_Transit_(Minnesota)> <http://dbpedia.org/property/headquarters> ?uri } " -"Give me the count of all the names of characters created by Frank Miller | 'Frank Miller'-res:Frank_Miller_(comics) | 'created by'-dbp:creators | 'characters'-dbp:characterName","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/creators> <http://dbpedia.org/resource/Frank_Miller_(comics)> . ?x <http://dbpedia.org/ontology/characterName> ?uri . }" -"Where was the narrator of Spain on the Road Again born? | 'Spain on the Road Again'-res:Spain..._on_the_Road_Again | 'narrator'-dbo:narrator | 'born'-dbp:birthPlace","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Spain..._on_the_Road_Again> <http://dbpedia.org/ontology/narrator> ?x . ?x <http://dbpedia.org/property/birthPlace> ?uri . }" +"Give me the count of all the names of characters created by Frank Miller | 'Frank Miller'-res:Frank_Miller_(comics) | 'created by'-dbp:creators | 'characters'-dbp:characterName","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/creators> <http://dbpedia.org/resource/Frank_Miller_(comics)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/FictionalCharacter>}" +"Where was the narrator of Spain on the Road Again born? | 'Spain on the Road Again'-res:Spain..._on_the_Road_Again | 'narrator'-dbo:narrator | 'born'-dbp:birthPlace","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Spain_on_the_Road_Again> <http://dbpedia.org/ontology/narrator> ?x . ?x <http://dbpedia.org/property/birthPlace> ?uri . }" "Where did the scientist study whose doctoral thesis was supervised by Leonard Lerman? | 'Leonard Lerman'-res:Leonard_Lerman | 'scientist study'-dbo:picture | 'doctoral thesis'-dbo:doctoralAdvisor | 'supervised'-dbo:doctoralAdvisor","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/doctoralAdvisor> <http://dbpedia.org/resource/Leonard_Lerman> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}" -"Which governer of Winston Bryant is the president of Joseph Stiglitz ? | 'Winston Bryant'-res:Winston_Bryant | 'Joseph Stiglitz'-res:Joseph_Stiglitz | 'governer'-dbp:governor | 'president'-dbo:president"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Winston_Bryantdbp:governor> ?uri . <http://dbpedia.org/resource/Joseph_Stiglitz> <http://dbpedia.org/property/president> ?uri} " -"How many people have led agencies in German occupied Europe? | 'agencies'-res:Agencies_of_the_European_Union | 'German'-res:Germany | 'German'-res:German | 'Europe'-res:Europe | 'led'-dbo:field | 'occupied'-dbp:about | ''-dbo:country | ''-dbo:country","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/place> <http://dbpedia.org/resource/German-occupied_Europe> . ?uri <http://dbpedia.org/ontology/leaderName> ?x . }" -"Where did the plays written by Robert Schenkkan take place? | 'Robert Schenkkan'-res:Robert_Schenkkan | 'plays'-dbo:plays | 'written'-dbo:writer | 'place'-dbo:place","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/writer> <http://dbpedia.org/resource/Robert_Schenkkan> . ?x <http://dbpedia.org/property/birthPlace> ?uri . }" -"Name some ww1 veterans? | 'ww1 veterans'-res:WW1_(album) | 'name'-dbo:name","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/militaryUnit> <http://dbpedia.org/resource/WW1_(album)> . }" -"Which are the predecessor of Chevrolet Caprice? | 'Chevrolet Caprice'-res:Chevrolet_Caprice | 'predecessor'-dbo:predecessor"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Chevrolet_Caprice> <http://dbpedia.org/property/predecessor> ?uri } " -"What is the series of the book which is a subsequent work of Blade Runner 2: The Edge of Human ? | 'Blade Runner 2: The Edge of Human subsequent work'-res:Blade_Runner_2:_The_Edge_of_Human | 'series'-dbo:series","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Blade_Runner_2:_The_Edge_of_Human> <http://dbpedia.org/property/sequentWork> ?x . ?x <http://dbpedia.org/ontology/series> ?uri . }" +"Which governer of Winston Bryant is the president of Joseph Stiglitz ? | 'Winston Bryant'-res:Winston_Bryant | 'Joseph Stiglitz'-res:Joseph_Stiglitz | 'governer'-dbp:governor | 'president'-dbo:president"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Winston_Bryant> <http://dbpedia.org/property/governor> ?uri . <http://dbpedia.org/resource/Joseph_Stiglitz> <http://dbpedia.org/ontology/president> ?uri} " +"How many people have led agencies in German occupied Europe? | 'agencies'-res:Agencies_of_the_European_Union | 'German'-res:Germany | 'German'-res:German | 'Europe'-res:Europe | 'led'-dbo:field | 'occupied'-dbp:about | ''-dbo:country | ''-dbo:country","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/occupiedByPlace> <http://dbpedia.org/resource/German_occupied_Europe> . ?uri <http://dbpedia.org/property/leaderName> ?x . }" +"Where did the plays written by Robert Schenkkan take place? | 'Robert Schenkkan'-res:Robert_Schenkkan | 'plays'-dbo:plays | 'written'-dbo:writer | 'place'-dbo:place","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/writer> <http://dbpedia.org/resource/Robert_Schenkkan> . ?x <http://dbpedia.org/ontology/place> ?uri . }" +"Name some ww1 veterans? | 'ww1 veterans'-res:WW1_(album) | 'name'-dbo:name"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/militaryUnit> <http://dbpedia.org/resource/WW1_(album)> } " +"Which are the predecessor of Chevrolet Caprice? | 'Chevrolet Caprice'-res:Chevrolet_Caprice | 'predecessor'-dbo:predecessor"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Chevrolet_Caprice> <http://dbpedia.org/ontology/predecessor> ?uri } " +"What is the series of the book which is a subsequent work of Blade Runner 2: The Edge of Human ? | 'Blade Runner 2: The Edge of Human subsequent work'-res:Blade_Runner_2:_The_Edge_of_Human | 'series'-dbo:series"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Blade_Runner_2:_The_Edge_of_Human> <http://dbpedia.org/property/sequentWork> ?uri } " "Which TV show whose theme is composed by someone signed up with ATO records? | 'ATO records'-res:ATO_Records | 'show'-dbo:show | 'theme'-dbp:subject | 'composed'-dbo:musicComposer | 'signed'-dbo:movement | 'records'-dbo:background","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/recordLabel> <http://dbpedia.org/resource/ATO_Records> . ?uri <http://dbpedia.org/property/themeMusicComposer> ?x . }" -"Who is the relative of Jim Farley (businessman) ? | 'Jim Farley (businessman)'-res:Jim_Farley_(businessman) | 'relative'-dbp:relatives"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jim_Farley_(businessman)> <http://dbpedia.org/property/relatives> ?uri } " +"Who is the relative of Jim Farley (businessman) ? | 'Jim Farley (businessman)'-res:Jim_Farley_(businessman) | 'relative'-dbp:relatives","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jim_Farley_(businessman)> <http://dbpedia.org/property/relatives> ?uri . }" "Name books with publisher as Francisco de Robles and writer as Miguel de Cervantes ? | 'Francisco de Robles'-res:Francisco_de_Robles | 'Miguel de Cervantes'-res:Miguel_de_Cervantes | 'name books'-dbo:leaderName | 'publisher'-dbo:publisher | 'writer'-dbo:writer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/publisher> <http://dbpedia.org/resource/Francisco_de_Robles> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book>}" -"What nation is Hornito located in, where Jamie Bateman Cayn died too? | 'Hornito'-res:Hornito | 'Jamie Bateman Cayn'-res:John_Jones_Bateman | 'nation'-dbo:country | 'located'-dbo:position | 'in,'-dbo:recordedIn | 'died'-dbo:deathDate","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Hornito> <http://dbpedia.org/property/placeOfDeath> ?uri . <http://dbpedia.org/resource/John_Jones_Bateman> <http://dbpedia.org/ontology/deathPlace> ?uri . }" +"What nation is Hornito located in, where Jamie Bateman Cayn died too? | 'Hornito'-res:Hornito | 'Jamie Bateman Cayn'-res:John_Jones_Bateman | 'nation'-dbo:country | 'located'-dbo:position | 'in,'-dbo:recordedIn | 'died'-dbo:deathDate"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Hornito> <http://dbpedia.org/property/deathPlace> ?uri . <http://dbpedia.org/resource/Jamie_Bateman_Cán> <http://dbpedia.org/ontology/country> ?uri} " "Name the resting place of Fazlur Rahman Khan ? | 'Fazlur Rahman Khan'-res:Fazlur_Rahman_Khan | 'name'-dbp:name | 'resting'-dbo:restingPlace | 'place'-dbo:place"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Fazlur_Rahman_Khan> <http://dbpedia.org/ontology/restingPlace> ?uri } " "Who is the meaning of Isa ? | 'Isa'-res:Isa_(name) | 'meaning'-dbo:meaning"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Isa_(name)> <http://dbpedia.org/ontology/meaning> ?uri } " -"Count the number teams which have former ice hockey players which also included American Hockey League ? | 'former ice hockey players'-res:Ice_hockey | 'American Hockey League'-res:Organization_of_American_States | 'American Hockey League'-res:American_Hockey_League | 'count'-dbo:country | 'teams'-dbp:teams | 'included'-dbo:number | ''-dbo:country"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/league> <http://dbpedia.org/resource/American_Hockey_League> . ?uri <http://dbpedia.org/property/debutteam> ?x }" -"List all the schools of the rugby player whose went to school named Pietermaritzburg ? | 'Pietermaritzburg'-res:Pietermaritzburg | 'schools'-dbo:ground | 'rugby player'-dbo:combatant | 'school'-dbo:school","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/academicAdvisor> <http://dbpedia.org/resource/Pietermaritzburg> . ?x <http://dbpedia.org/property/school> ?uri . }" +"Count the number teams which have former ice hockey players which also included American Hockey League ? | 'former ice hockey players'-res:Ice_hockey | 'American Hockey League'-res:Organization_of_American_States | 'American Hockey League'-res:American_Hockey_League | 'count'-dbo:country | 'teams'-dbp:teams | 'included'-dbo:number | ''-dbo:country","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/league> <http://dbpedia.org/resource/American_Hockey_League> . ?x <http://dbpedia.org/property/formerTeam> ?uri . }" +"List all the schools of the rugby player whose went to school named Pietermaritzburg ? | 'Pietermaritzburg'-res:Pietermaritzburg | 'schools'-dbo:ground | 'rugby player'-dbo:combatant | 'school'-dbo:school","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/school> <http://dbpedia.org/resource/Pietermaritzburg> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/School>}" "Name the office of Richard Coke ? | 'Richard Coke'-res:Richard_Coke | 'name'-dbo:name | 'office'-dbo:office"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Richard_Coke> <http://dbpedia.org/ontology/office> ?uri } " -"Which city's foundeer is John Forbes? | 'John Forbes'-res:John_Forbes_(British_Army_officer) | 'city'-dbo:city | 'foundeer'-dbp:founder","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/founder> <http://dbpedia.org/resource/John_Forbes_(British_Army_officer)> . }" -"What is the river whose mouth is in deadsea? | 'deadsea'-res:Deadhead | 'river mouth'-dbo:riverMouth","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/riverMouth> <http://dbpedia.org/resource/Deadhead> . }" +"Which city's foundeer is John Forbes? | 'John Forbes'-res:John_Forbes_(British_Army_officer) | 'city'-dbo:city | 'foundeer'-dbp:founder","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/founder> <http://dbpedia.org/resource/John_Forbes_(British_Army_officer)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Location>}" +"What is the river whose mouth is in deadsea? | 'deadsea'-res:Deadhead | 'river mouth'-dbo:riverMouth","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/riverMouth> <http://dbpedia.org/resource/Deadhead> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/River>}" "What is the allegiance of John Kotelawala ? | 'John Kotelawala'-res:John_Kotelawala | 'allegiance'-dbo:allegiance"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/John_Kotelawala> <http://dbpedia.org/property/allegiance> ?uri } " -"What layout can be found in cars similar to the Subaru Outback? | 'Subaru Outback'-res:Subaru_Outback | 'layout'-dbo:layout | 'cars'-dbo:management","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Subaru_Outback> <http://dbpedia.org/ontology/related> ?x . ?x <http://dbpedia.org/property/layout> ?uri . }" -"Name the origin of Henry Cluney ? | 'Henry Cluney'-res:Henry_Cluney | 'name'-dbp:name | 'origin'-dbo:origin"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Henry_Cluney> <http://dbpedia.org/property/origin> ?uri } " -"In which part of the world can i find Xynisteri and Mavro? | 'Xynisteri'-res:Xynisteri | 'Mavro'-res:Mavro | 'in'-dbo:origin | 'in'-dbo:origin","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Xynisteri> <http://dbpedia.org/ontology/origin> ?uri . <http://dbpedia.org/resource/Mavro> <http://dbpedia.org/property/region> ?uri . }" -"which awards have been given to people who fought in the Battle of France? | 'Battle of France'-res:Battle_of_France | 'awards'-dbo:award | 'fought'-dbo:type"," SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/Battle_of_France> . ?x <http://dbpedia.org/ontology/award> ?uri }" -"Who was the silver medalist of Gymnastics at the 2008 Summer Olympics Women's artistic individual all-around ? | 'Gymnastics at the 2008 Summer Olympics Women'-res:Gymnastics_at_the_2008_Summer_Olympics | 'artistic individual all-around'-res:European_Artistic_Gymnastics_Championships_–_Women's_individual_all-around"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Gymnastics_at_the_2008_Summer_Olympics> <http://dbpedia.org/property/artist> ?uri } " +"What layout can be found in cars similar to the Subaru Outback? | 'Subaru Outback'-res:Subaru_Outback | 'layout'-dbo:layout | 'cars'-dbo:management","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/related> ?x . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Automobile>}" +"Name the origin of Henry Cluney ? | 'Henry Cluney'-res:Henry_Cluney | 'name'-dbp:name | 'origin'-dbo:origin"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Henry_Cluney> <http://dbpedia.org/ontology/origin> ?uri } " +"In which part of the world can i find Xynisteri and Mavro? | 'Xynisteri'-res:Xynisteri | 'Mavro'-res:Mavro | 'in'-dbo:origin | 'in'-dbo:origin","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/origin> <http://dbpedia.org/resource/Xynisteri> . ?uri <http://dbpedia.org/property/destinations> <http://dbpedia.org/resource/Mavro> . }" +"which awards have been given to people who fought in the Battle of France? | 'Battle of France'-res:Battle_of_France | 'awards'-dbo:award | 'fought'-dbo:type","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/Battle_of_France> . ?x <http://dbpedia.org/ontology/award> ?uri . }" +"Who was the silver medalist of Gymnastics at the 2008 Summer Olympics Women's artistic individual all-around ? | 'Gymnastics at the 2008 Summer Olympics Women'-res:Gymnastics_at_the_2008_Summer_Olympics | 'artistic individual all-around'-res:European_Artistic_Gymnastics_Championships_–_Women's_individual_all-around"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Gymnastics_at_the_2008_Summer_Olympics> <http://dbpedia.org/property/artisticMedalist> ?uri } " "List the battles fought by Roh Tae-woo ? | 'Roh Tae-woo'-res:Roh_Tae-woo | 'battles'-dbp:battles"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Roh_Tae-woo> <http://dbpedia.org/property/battles> ?uri } " -"List the common official language of the ladonia and Empire of Atlantium ? | 'ladonia'-res:Ladonia_(micronation) | 'Empire of Atlantium'-res:Empire_of_Atlantium | 'official language'-dbo:officialLanguage | 'official language'-dbo:officialLanguage","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ladonia_(micronation)> <http://dbpedia.org/ontology/officialLanguage> ?uri . <http://dbpedia.org/resource/Empire_of_Atlantium> . }" +"List the common official language of the ladonia and Empire of Atlantium ? | 'ladonia'-res:Ladonia_(micronation) | 'Empire of Atlantium'-res:Empire_of_Atlantium | 'official language'-dbo:officialLanguage | 'official language'-dbo:officialLanguage"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ladonia_(micronation)> <http://dbpedia.org/ontology/officialLanguage> ?uri . <http://dbpedia.org/resource/Empire_of_Atlantium> <http://dbpedia.org/property/language> ?uri} " "What is the occupation of the Irving Chernev and Karen Grigorian? | 'Irving Chernev'-res:Irving_Chernev | 'Karen Grigorian'-res:Karen_Grigorian | 'occupation'-dbo:occupation","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Irving_Chernev> <http://dbpedia.org/resource/Karen_Grigorian> <http://dbpedia.org/ontology/occupation> ?uri . }" -"In which countries can i find some feminist writers? | 'countries'-res:Countries_of_the_United_Kingdom | 'feminist writers'-res:Feminist_stripper | 'i'-dbp:i","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/nationality> <http://dbpedia.org/resource/Feminist_stripper> . ?x <http://dbpedia.org/property/country> ?uri . }" -"In which teams did anyone who played as a defencemen, play previously? | 'teams'-dbo:numberOfTeams | 'played'-dbo:portrayer | 'play'-dbo:starring","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/position> <http://dbpedia.org/resource/Defenceman> . ?x <http://dbpedia.org/ontology/formerTeam> ?uri . }" -"Who authored the works published in the Jump Square Magazine? | 'Jump Square'-res:Jump_Square | 'Magazine'-dbp:magazine | 'author'-dbp:author","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/magazine> <http://dbpedia.org/resource/Jump_Square> . ?x <http://dbpedia.org/property/author> ?uri . }" +"In which countries can i find some feminist writers? | 'countries'-res:Countries_of_the_United_Kingdom | 'feminist writers'-res:Feminist_stripper | 'i'-dbp:i","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/religion> <http://dbpedia.org/resource/Feminist_stripper> . ?x <http://dbpedia.org/property/country> ?uri . }" +"In which teams did anyone who played as a defencemen, play previously? | 'teams'-dbo:numberOfTeams | 'played'-dbo:portrayer | 'play'-dbo:starring","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/position> <http://dbpedia.org/resource/Defenceman> . ?x <http://dbpedia.org/ontology/team> ?uri . }" +"Who authored the works published in the Jump Square Magazine? | 'Jump Square'-res:Jump_Square | 'Magazine'-dbp:magazine | 'author'-dbp:author","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/magazine> <http://dbpedia.org/resource/Jump_Square> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Work>}" "List bacteria whose order (taxonomy) is Bacillales and domain is Bacteria? | 'Bacteria (taxonomy)'-res:Bacteria | 'Bacillales'-res:Bacillales | 'Bacteria'-res:Bacteria | 'domain'-dbo:domain"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/order> <http://dbpedia.org/resource/Bacillales> } " -"In which language is All I need is Your Sweet lovin written ? | 'I'-res:I | 'All'-res:All | 'Your Sweet lovin'-res:All_I_Need_Is_Your_Sweet_Lovin' | 'language'-dbo:language | 'written'-dbo:writer"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/All_I_Need_Is_Your_Sweet_Lovin> <http://dbpedia.org/ontology/writer> ?uri } " -"What sport amongst the one Lagos Preparatory School practices, did Willian Garne play for? | 'Lagos Preparatory School practices, did Willian Garne'-res:Lagos_Preparatory_School | 'sport'-dbo:sport | 'play'-dbo:sport","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/athletics> <http://dbpedia.org/resource/Lagos_Preparatory_School> . ?x <http://dbpedia.org/ontology/sport> ?uri . }" +"In which language is All I need is Your Sweet lovin written ? | 'I'-res:I | 'All'-res:All | 'Your Sweet lovin'-res:All_I_Need_Is_Your_Sweet_Lovin' | 'language'-dbo:language | 'written'-dbo:writer"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/All_I_Need_Is_Your_Sweet_Lovin'> <http://dbpedia.org/ontology/language> ?uri } " +"What sport amongst the one Lagos Preparatory School practices, did Willian Garne play for? | 'Lagos Preparatory School practices, did Willian Garne'-res:Lagos_Preparatory_School | 'sport'-dbo:sport | 'play'-dbo:sport"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lagos_Preparatory_School> <http://dbpedia.org/property/sport> ?uri } " "What are the beverages whose origin is England? | 'England'-res:England | 'beverages'-dbo:strength | 'origin'-dbo:origin","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/origin> <http://dbpedia.org/resource/England> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Beverage>}" "Who is the film star of On Air with Ryan Seacrest ? | 'On Air with Ryan Seacrest'-res:On_Air_with_Ryan_Seacrest | 'star'-dbo:starring"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/On_Air_with_Ryan_Seacrest> <http://dbpedia.org/ontology/starring> ?uri } " -"Which university attended by Franklin W. Olin was also the alma mater of Patty Lin ? | 'Patty Lin'-res:Patty_Lin | 'Franklin W. Olin'-res:Franklin_W._Olin | 'university attended'-dbp:almaMater | 'university attended'-dbp:education"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Patty_Lin> <http://dbpedia.org/ontology/almaMater> ?uri . <http://dbpedia.org/resource/Franklin_W._Olin> <http://dbpedia.org/property/education> ?uri} " +"Which university attended by Franklin W. Olin was also the alma mater of Patty Lin ? | 'Patty Lin'-res:Patty_Lin | 'Franklin W. Olin'-res:Franklin_W._Olin | 'university attended'-dbp:almaMater | 'university attended'-dbp:education","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/almaMater> <http://dbpedia.org/resource/Franklin_W._Olin> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/University>}" "Count the number of sports played by schools which play hockey ? | 'hockey'-res:Hockey | 'sports'-dbo:sport | 'sports'-dbo:sport"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/athletics> <http://dbpedia.org/resource/Hockey> . ?x <http://dbpedia.org/ontology/sport> ?uri }" -"List the tomb of the royalties whose burial place is Little Easton ? | 'Royalties'-res:Royalties | 'Little Easton'-res:Little_Easton | 'tomb'-dbo:race | 'burial place'-dbo:district","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/burialPlace> <http://dbpedia.org/resource/Little_Easton> . ?x <http://dbpedia.org/property/restingPlace> ?uri . }" +"List the tomb of the royalties whose burial place is Little Easton ? | 'Royalties'-res:Royalties | 'Little Easton'-res:Little_Easton | 'tomb'-dbo:race | 'burial place'-dbo:district","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/restingPlace> <http://dbpedia.org/resource/Little_Easton> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Royalty>}" "How many software run on operating system is Microsoft Windows? | 'software'-res:Software | 'Microsoft Windows'-res:Microsoft_Windows | 'operating system'-dbo:operatingSystem | 'software'-dbo:Software","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/operatingSystem> <http://dbpedia.org/resource/Microsoft_Windows> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Software>}" -"List the show related to the which was followed by Doctor Who Extra? | 'Doctor Who Extra'-res:Doctor_Who_Extra | 'show'-dbp:show | 'related'-dbo:related","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/network> <http://dbpedia.org/resource/Doctor_Who_Extra> . ?uri <http://dbpedia.org/property/related> ?x . }" +"List the show related to the which was followed by Doctor Who Extra? | 'Doctor Who Extra'-res:Doctor_Who_Extra | 'show'-dbp:show | 'related'-dbo:related","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/subsequentWork> <http://dbpedia.org/resource/Doctor_Who_Extra> . ?uri <http://dbpedia.org/ontology/related> ?x . }" "Which country's largest city is Lima? | 'largest city'-res:Largest_octopus | 'Lima'-res:Lima | 'largest city'-dbo:largestCity","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/largestCity> <http://dbpedia.org/resource/Lima> . }" "List the institute of Robert hall ? | 'Robert hall'-res:Robert_S._Hall | 'institute'-dbo:institution"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Robert_S._Hall> <http://dbpedia.org/ontology/institution> ?uri } " "What are the movies whose music is given by Laurie Johnson? | 'Laurie Johnson'-res:Laurie_Johnson | 'music'-dbp:music | 'movie'-dbo:Film","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Laurie_Johnson> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" -"What appliance Sony made after the success of PlayStation 2? | 'appliance Sony'-res:Appliance | 'PlayStation 2'-res:PlayStation_2 | 'success'-dbo:successor","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/PlayStation_2> <http://dbpedia.org/property/successor> ?uri . }" +"What appliance Sony made after the success of PlayStation 2? | 'appliance Sony'-res:Appliance | 'PlayStation 2'-res:PlayStation_2 | 'success'-dbo:successor","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/successor> <http://dbpedia.org/resource/PlayStation_2> . }" "Name the series of Doctor Who: Evacuation Earth ? | 'Doctor Who: Evacuation Earth'-res:Doctor_Who:_Evacuation_Earth | 'name'-dbp:name | 'series'-dbo:series"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Doctor_Who:_Evacuation_Earth> <http://dbpedia.org/ontology/series> ?uri } " -"What are some music artists whose bands have signed up with Entertainment One Music? | 'Entertainment One Music'-res:Entertainment_One_Music | 'music artists'-dbo:musicSubgenre | 'bands'-dbo:staff | 'signed'-dbo:movement","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/recordLabel> <http://dbpedia.org/resource/Entertainment_One_Music> . ?uri <http://dbpedia.org/property/music> ?x . }" -"Name the broadcast area of Radio Philippines Network ? | 'Radio Philippines Network'-res:Radio_Philippines_Network | 'name'-dbo:name | 'broadcast area'-dbo:broadcastArea"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Radio_Philippines_Network> <http://dbpedia.org/ontology/broadcastArea> ?uri } " -"Which religion is prevalent in the schools of the Ashanti region? | 'Ashanti region'-res:Ashanti_Region | 'religion'-dbo:religion | 'prevalent'-dbo:currency | 'schools'-dbo:ground","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/region> <http://dbpedia.org/resource/Ashanti_Region> . ?x <http://dbpedia.org/ontology/religion> ?uri . }" -"Which maintainer of Cheasty Boulevard South is also the city of Soccer Bowl' 76 ? | 'Cheasty Boulevard South'-res:Cheasty_Boulevard_South | 'Soccer Bowl'-res:Soccer_Bowl | '76'-res:UFC_76 | 'maintainer'-dbo:maintainedBy | 'city'-dbo:city"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cheasty_Boulevard_South> <http://dbpedia.org/ontology/maintainedBy> ?uri . <http://dbpedia.org/resource/Soccer_Bowl> <http://dbpedia.org/property/city> ?uri} " +"What are some music artists whose bands have signed up with Entertainment One Music? | 'Entertainment One Music'-res:Entertainment_One_Music | 'music artists'-dbo:musicSubgenre | 'bands'-dbo:staff | 'signed'-dbo:movement","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Entertainment_One_Music> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Artist>}" +"Name the broadcast area of Radio Philippines Network ? | 'Radio Philippines Network'-res:Radio_Philippines_Network | 'name'-dbo:name | 'broadcast area'-dbo:broadcastArea"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Radio_Philippines_Network> <http://dbpedia.org/property/broadcastArea> ?uri } " +"Which religion is prevalent in the schools of the Ashanti region? | 'Ashanti region'-res:Ashanti_Region | 'religion'-dbo:religion | 'prevalent'-dbo:currency | 'schools'-dbo:ground","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/region> <http://dbpedia.org/resource/Ashanti_Region> . ?x <http://dbpedia.org/property/religion> ?uri . }" +"Which maintainer of Cheasty Boulevard South is also the city of Soccer Bowl' 76 ? | 'Cheasty Boulevard South'-res:Cheasty_Boulevard_South | 'Soccer Bowl'-res:Soccer_Bowl | '76'-res:UFC_76 | 'maintainer'-dbo:maintainedBy | 'city'-dbo:city"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cheasty_Boulevard_South> <http://dbpedia.org/property/maintainedBy> ?uri . <http://dbpedia.org/resource/Soccer_Bowl> <http://dbpedia.org/ontology/city> ?uri} " "Which driver came first in the 1993 European Grand Prix ? | '1993 European Grand Prix'-res:1993_European_Grand_Prix | 'driver first'-dbp:firstDriver"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/1993_European_Grand_Prix> <http://dbpedia.org/property/firstDriver> ?uri } " -"How many other ingredient are there in the foods whihh have one of the ingredient as Potato ? | 'Foods whihh'-res:Sclafani_Foods | 'Potato'-res:Potato | 'ingredient'-dbo:ingredient | 'ingredient'-dbo:ingredient"," SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Potato> <http://dbpedia.org/ontology/ingredient> ?uri } " -"How many companies have launched their rockets from the Vandenerg Air base? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'Vandenerg Air base'-res:Reims_–_Champagne_Air_Base | 'launched'-dbo:shipLaunch | 'rockets'-dbo:capital","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/targetAirport> <http://dbpedia.org/resource/Vandenerg_Air_Base> . ?x <http://dbpedia.org/property/launch> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> Dbo:Company}" +"How many other ingredient are there in the foods whihh have one of the ingredient as Potato ? | 'Foods whihh'-res:Sclafani_Foods | 'Potato'-res:Potato | 'ingredient'-dbo:ingredient | 'ingredient'-dbo:ingredient"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/ingredient> <http://dbpedia.org/resource/Potato> . ?x <http://dbpedia.org/property/editing> ?uri }" +"How many companies have launched their rockets from the Vandenerg Air base? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'Vandenerg Air base'-res:Reims_–_Champagne_Air_Base | 'launched'-dbo:shipLaunch | 'rockets'-dbo:capital","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/launchSite> <http://dbpedia.org/resource/Vandenerg_Air_Base> . ?uri <http://dbpedia.org/property/launchProgramme> ?x . }" "What is operated by FedExField ? | 'FedExField'-res:FedExField | 'operated'-dbo:operator"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/FedExField> <http://dbpedia.org/ontology/operator> ?uri } " "Foxconn makes how many things? | 'Foxconn'-res:Foxconn","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/manufacturer> <http://dbpedia.org/resource/Foxconn> . }" -"In how many nations can I find dishes made of Shallot? | 'I'-res:I | 'Shallot'-res:Shallot | 'nations'-dbo:state | 'dishes'-dbo:state","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/ingredient> <http://dbpedia.org/resource/Shallot> . ?x <http://dbpedia.org/property/country> ?uri . }" +"In how many nations can I find dishes made of Shallot? | 'I'-res:I | 'Shallot'-res:Shallot | 'nations'-dbo:state | 'dishes'-dbo:state","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/state> <http://dbpedia.org/resource/Shallot> . ?x <http://dbpedia.org/property/nationality> ?uri . }" "What are the nicknames of the schools whose color is royal blue? | 'royal blue'-res:Royal_blue | 'nicknames'-dbo:denomination | 'schools'-dbo:discipline | 'color'-dbo:hairColor | 'royal blue'-dbo:gross","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/hairColor> <http://dbpedia.org/resource/Royal_blue> . ?x <http://dbpedia.org/property/nicknames> ?uri . }" "To what political party do the politicians graduated from Somerville college, Oxford belong to? | 'politicians'-res:Politicians_of_The_Wire | 'Somerville college, Oxford'-res:Somerville_College,_Oxford | 'political party'-dbp:party | 'graduated'-dbo:numberOfGraduateStudents | 'belong'-dbo:person","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/almaMater> <http://dbpedia.org/resource/Somerville_College,_Oxford> . ?x <http://dbpedia.org/property/party> ?uri . }" "What awards did Jos Rivera (playwright) win? | 'Jos Rivera (playwright)'-res:José_Rivera_(playwright) | 'awards'-dbp:awards"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/José_Rivera_(playwright)> <http://dbpedia.org/property/awards> ?uri } " -"Which political figures were awarded Screen Actors Guild Life Achievement Award? | 'Screen Actors Guild Life Achievement Award'-res:Screen_Actors_Guild_Life_Achievement_Award | 'awarded'-dbo:award","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/award> <http://dbpedia.org/resource/Screen_Actors_Guild_Life_Achievement_Award> . }" -"What is the Home Stadium of the Kenya national under-20 football team where Matin Suji was also born ? | 'Home Stadium of the Kenya national under-20 football team where Matin Suji'-res:Kenya_national_under-20_football_team | 'born'-dbo:birthYear"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kenya_national_under-20_football_team> <http://dbpedia.org/property/birthPlace> ?uri } " +"Which political figures were awarded Screen Actors Guild Life Achievement Award? | 'Screen Actors Guild Life Achievement Award'-res:Screen_Actors_Guild_Life_Achievement_Award | 'awarded'-dbo:award","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/awards> <http://dbpedia.org/resource/Screen_Actors_Guild_Life_Achievement_Award> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/PoliticalPerson>}" +"What is the Home Stadium of the Kenya national under-20 football team where Matin Suji was also born ? | 'Home Stadium of the Kenya national under-20 football team where Matin Suji'-res:Kenya_national_under-20_football_team | 'born'-dbo:birthYear"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kenya_national_under-20_football_team> <http://dbpedia.org/property/homeStadium> ?uri . <http://dbpedia.org/resource/Matin_Suji> <http://dbpedia.org/ontology/birthPlace> ?uri} " "What is the protected area whose nearest city is Kenya? | 'Kenya'-res:Kenya | 'nearest city'-dbo:nearestCity | 'protected area'-dbo:ProtectedArea","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/nearestCity> <http://dbpedia.org/resource/Kenya> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/ProtectedArea>}" -"How many places were ruled by Elizabeth II? | 'II'-res:Ii | 'Elizabeth'-res:Elizabeth | 'ruled'-dbp:leaderName","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/leaderName> <http://dbpedia.org/resource/Elizabeth> . }" -"Which college of Luke List (golfer) is the alma mater of K. Terry Dornbush | 'Luke List (golfer)'-res:Luke_List_(golfer) | 'K'-res:K | 'Terry Dornbush'-res:K._Terry_Dornbush | 'college'-dbo:college | 'alma mater'-dbo:almaMater"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Luke_List_(golfer)> <http://dbpedia.org/property/college> ?uri . <http://dbpedia.org/resource/K._Terry_Dornbush> <http://dbpedia.org/ontology/almaMater> ?uri} " +"How many places were ruled by Elizabeth II? | 'II'-res:Ii | 'Elizabeth'-res:Elizabeth | 'ruled'-dbp:leaderName","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/leaderName> <http://dbpedia.org/resource/Elizabeth_II> . }" +"Which college of Luke List (golfer) is the alma mater of K. Terry Dornbush | 'Luke List (golfer)'-res:Luke_List_(golfer) | 'K'-res:K | 'Terry Dornbush'-res:K._Terry_Dornbush | 'college'-dbo:college | 'alma mater'-dbo:almaMater"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Luke_List_(golfer)> <http://dbpedia.org/property/almaMater> ?uri . <http://dbpedia.org/resource/K._Terry_Dornbush> <http://dbpedia.org/ontology/college> ?uri} " "How many producers have worked for FremantleMedia productions? | 'FremantleMedia productions'-res:FremantleMedia | 'worked for'-dbp:company | 'producer'-dbo:producer","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/company> <http://dbpedia.org/resource/FremantleMedia> . ?x <http://dbpedia.org/ontology/producer> ?uri . }" -"Which animator of Tommy Ticker's Tooth is also the director of The Haunted house ? | 'Tommy Ticker'-res:Ticker_(2001_film) | 'Tooth'-res:The_Booth | 'The Haunted house'-res:The_Haunted_House_(1929_film) | 'animator'-dbo:animator | 'director'-dbo:director"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Haunted_House_(1929_film)> <http://dbpedia.org/property/director> ?uri . <http://dbpedia.org/resource/Tommy_Ticker_(film)> <http://dbpedia.org/ontology/animator> ?uri} " -"How many architects are there who have made something used by Oakland athletics? | 'Oakland athletics'-res:Oakland_Athletics | 'architects'-dbo:builder","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/usedInWar> <http://dbpedia.org/resource/Oakland_Athletics> . ?x <http://dbpedia.org/property/architect> ?uri . }" -"Where are Solidus and Aureus used? | 'Solidus and Aureus'-res:Solidus_mark","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Solidus_mark> <http://dbpedia.org/ontology/usedInWar> ?uri . }" -"Which company owns the airlines whose hub is in Dubai? | 'Dubai'-res:Dubai | 'company'-dbo:company | 'owns'-dbo:relation | 'airlines'-dbo:icaoAirlineCode | 'hub'-dbp:centre","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/hubAirport> <http://dbpedia.org/resource/Dubai> . ?x <http://dbpedia.org/property/owner> ?uri . }" +"Which animator of Tommy Ticker's Tooth is also the director of The Haunted house ? | 'Tommy Ticker'-res:Ticker_(2001_film) | 'Tooth'-res:The_Booth | 'The Haunted house'-res:The_Haunted_House_(1929_film) | 'animator'-dbo:animator | 'director'-dbo:director"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Haunted_House_(1929_film)> <http://dbpedia.org/property/animator> ?uri . <http://dbpedia.org/resource/Tommy_Ticker_(artist)> <http://dbpedia.org/ontology/director> ?uri} " +"How many architects are there who have made something used by Oakland athletics? | 'Oakland athletics'-res:Oakland_Athletics | 'architects'-dbo:builder","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/athletics> <http://dbpedia.org/resource/Oakland_Athletics> . ?x <http://dbpedia.org/ontology/architects> ?uri . }" +"Where are Solidus and Aureus used? | 'Solidus and Aureus'-res:Solidus_mark","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/usedIn> ?uri . <http://dbpedia.org/resource/Solidus_mark> . }" +"Which company owns the airlines whose hub is in Dubai? | 'Dubai'-res:Dubai | 'company'-dbo:company | 'owns'-dbo:relation | 'airlines'-dbo:icaoAirlineCode | 'hub'-dbp:centre","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/hubAirport> <http://dbpedia.org/resource/Dubai> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Airline>}" "Who built the Ford Y-block engine ? | 'Ford Y-block engine'-res:Ford_Y-block_engine | 'built'-dbo:manufacturer"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ford_Y-block_engine> <http://dbpedia.org/ontology/manufacturer> ?uri } " "What is the region of Lumberjack ? | 'Lumberjack'-res:Lumberjack_100 | 'region'-dbo:region"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lumberjack_100> <http://dbpedia.org/ontology/region> ?uri } " -"How many awards have royal designers for industry awardwinners got? | 'awards'-dbo:award | 'royal designers'-dbo:royalAnthem | 'industry awardwinners'-dbo:industry","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/award> <http://dbpedia.org/resource/Royal_Designer> . ?x <http://dbpedia.org/property/awards> ?uri . }" -"Where is the team of Abdel Boucker located ? | 'Abdel Boucker'-res:Abdel_Bouckar | 'team'-dbo:team | 'located'-dbo:position"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Abdel_Bouckar> <http://dbpedia.org/property/team> ?uri } " -"For which other teams do members of tanzanian national football team play? | ''-res:Tanzania_national_football_team | 'teams'-dbo:team | 'members'-dbo:membership | 'play'-dbo:team","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/nationalteam> <http://dbpedia.org/resource/Tanzania_national_football_team> . ?x <http://dbpedia.org/property/team> ?uri . }" +"How many awards have royal designers for industry awardwinners got? | 'awards'-dbo:award | 'royal designers'-dbo:royalAnthem | 'industry awardwinners'-dbo:industry","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/royalDesigner> <http://dbpedia.org/resource/Royal_Designer> . ?x <http://dbpedia.org/property/awards> ?uri . }" +"Where is the team of Abdel Boucker located ? | 'Abdel Boucker'-res:Abdel_Bouckar | 'team'-dbo:team | 'located'-dbo:position"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Abdel_Bouckar> <http://dbpedia.org/ontology/team> ?uri } " +"For which other teams do members of tanzanian national football team play? | ''-res:Tanzania_national_football_team | 'teams'-dbo:team | 'members'-dbo:membership | 'play'-dbo:team"," SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/nationalteam> <http://dbpedia.org/resource/Tanzania_national_football_team> . ?x <http://dbpedia.org/ontology/team> ?uri }" "List the ceremonial county of East Tilbury ? | 'East Tilbury'-res:East_Tilbury | 'ceremonial county'-dbo:ceremonialCounty"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/East_Tilbury> <http://dbpedia.org/ontology/ceremonialCounty> ?uri } " -"Which award that has been given to James F Obrien, had used Laemmle Theatres for some service? | 'Laemmle Theatres'-res:Laemmle_Theatres | 'James F Obrien'-res:James_F._O'Brien | 'award'-dbo:award | 'service'-dbo:service","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Laemmle_Theatres> <http://dbpedia.org/ontology/service> ?uri . <http://dbpedia.org/resource/James_F._O'Brien> <http://dbpedia.org/property/awards> ?uri . }" -"How many people have parterned with the person choroegraphed by Catarina Lindgren in the past? | 'Parterned'-res:Bartered | 'Catarina Lindgren'-res:Catarina_Lindgren | 'person'-dbo:person | 'choroegraphed'-dbp:choreographer","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/choreographers> <http://dbpedia.org/resource/Catarina_Lindgren> . ?uri <http://dbpedia.org/ontology/person> ?x . }" +"Which award that has been given to James F Obrien, had used Laemmle Theatres for some service? | 'Laemmle Theatres'-res:Laemmle_Theatres | 'James F Obrien'-res:James_F._O'Brien | 'award'-dbo:award | 'service'-dbo:service","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Laemmle_Theatres> <http://dbpedia.org/property/service> ?x . ?x <http://dbpedia.org/ontology/award> ?uri . }" +"How many people have parterned with the person choroegraphed by Catarina Lindgren in the past? | 'Parterned'-res:Bartered | 'Catarina Lindgren'-res:Catarina_Lindgren | 'person'-dbo:person | 'choroegraphed'-dbp:choreographer","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/choreographer> <http://dbpedia.org/resource/Catarina_Lindgren> . ?uri <http://dbpedia.org/ontology/parternedBy> ?x . }" "Which famous commander led the Siege of forn meigs and was involved in the battle of fort stephenson? | 'Siege'-res:Siege_of_Santiago | 'meigs'-res:Meigs | 'fort stephenson'-res:Battle_of_Fort_Stephenson | 'famous commander'-dbo:commander | 'led'-dbo:license | 'forn'-dbo:gross | 'involved'-dbo:result | 'battle'-dbo:battle","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Siege_of_Santiago> <http://dbpedia.org/property/commander> ?x . ?x <http://dbpedia.org/ontology/battle> ?uri . }" -"Which games publishers are located in California? | 'California'-res:California | 'games publishers'-dbo:athletics | 'located'-dbo:gross","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/locationCity> <http://dbpedia.org/resource/California> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/VideoGame>}" +"Which games publishers are located in California? | 'California'-res:California | 'games publishers'-dbo:athletics | 'located'-dbo:gross","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/location> <http://dbpedia.org/resource/California> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/VideoGame>}" "Where is the stadium of Philadelphia Rage ? | 'Philadelphia Rage'-res:Philadelphia_Rage | 'stadium'-dbo:stadium"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Philadelphia_Rage> <http://dbpedia.org/ontology/stadium> ?uri } " "Count all the things licensed as Software as a service. | 'Software'-res:Software | 'count'-dbo:type | 'licensed'-dbo:license | 'service'-dbo:industry","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/license> <http://dbpedia.org/resource/Software_as_a_service> . ?x <http://dbpedia.org/property/license> ?uri . }" -"What is the total number of other non-fiction subject of the books whose one of the subject is Racism? | 'Racism'-res:Racism | 'total'-dbo:populationTotal | 'non-fiction subject'-dbo:nonFictionSubject | 'books'-dbo:volume | 'subject'-dbo:nonFictionSubject"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/literaryGenre> <http://dbpedia.org/resource/Racism> . ?x <http://dbpedia.org/ontology/nonFictionSubject> ?uri }" +"What is the total number of other non-fiction subject of the books whose one of the subject is Racism? | 'Racism'-res:Racism | 'total'-dbo:populationTotal | 'non-fiction subject'-dbo:nonFictionSubject | 'books'-dbo:volume | 'subject'-dbo:nonFictionSubject"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/subject> <http://dbpedia.org/resource/Racism> . ?x <http://dbpedia.org/ontology/nonFictionSubject> ?uri }" "Name all the junctions of U.S. Route 59? | 'U.S. Route 59'-res:U.S._Route_59 | 'name'-dbp:name | 'junctions'-dbp:junction"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/U.S._Route_59> <http://dbpedia.org/property/junction> ?uri } " -"What are some other services of the company whose service is Onedrive? | 'Onedrive'-res:OneDrive | 'services'-dbo:service | 'company'-dbo:company | 'service'-dbo:service","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/service> <http://dbpedia.org/resource/OneDrive> . ?x <http://dbpedia.org/property/services> ?uri . }" +"What are some other services of the company whose service is Onedrive? | 'Onedrive'-res:OneDrive | 'services'-dbo:service | 'company'-dbo:company | 'service'-dbo:service"," SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/service> <http://dbpedia.org/resource/OneDrive> . ?x <http://dbpedia.org/property/services> ?uri }" "What is Bob Adams (American football) known for? | 'Bob Adams (American football)'-res:Bob_Adams_(American_football) | 'known for'-dbp:knownFor"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bob_Adams_(American_football)> <http://dbpedia.org/property/knownFor> ?uri } " "Who owns Chelsea F.C.? | 'FC'-res:FC | 'Chelsea'-res:Chelsea | 'owns'-dbo:languageFamily"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Chelsea_F.C> . <http://dbpedia.org/property/owner> ?uri } " "What is the common affiliation of the Monroe Carell Jr. Children's Hospital at Vanderbilt and alma mater of the Duncan U. Fletcher? | 'Monroe Carell Jr. Children's Hospital at Vanderbilt'-res:Monroe_Carell_Jr._Children's_Hospital_at_Vanderbilt | 'Duncan U. Fletcher'-res:Duncan_U._Fletcher | 'affiliation'-dbp:affiliation | 'alma mater'-dbo:almaMater"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Monroe_Carell_Jr._Children's_Hospital_at_Vanderbilt> <http://dbpedia.org/property/affiliation> ?uri . <http://dbpedia.org/resource/Duncan_U._Fletcher> <http://dbpedia.org/ontology/almaMater> ?uri} " -"Where do bachelor of arts live? | 'bachelor'-res:Bachelor | 'arts live'-dbo:board","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/bachelor> <http://dbpedia.org/resource/Bachelor> . }" +"Where do bachelor of arts live? | 'bachelor'-res:Bachelor | 'arts live'-dbo:board"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bachelor_(artist)> <http://dbpedia.org/ontology/board> ?uri } " "What are the awards won by the spouse of Liv Ullmann ? | 'Liv Ullmann'-res:Liv_Ullmann | 'spouse'-dbo:partner | 'awards'-dbp:awards","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Liv_Ullmann> <http://dbpedia.org/ontology/partner> ?x . ?x <http://dbpedia.org/property/awards> ?uri . }" -"How many companies have developed cross platformed softwares? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'cross platformed softwares'-res:Go_software | 'developed'-dbo:product","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/crossPlatform> <http://dbpedia.org/resource/Go_software> . ?x <http://dbpedia.org/ontology/developer> ?uri . }" -"How many titles were given to people who engaged in the Operation Dragoon? | 'Operation Dragoon'-res:Operation_Dragoon | 'titles'-dbp:title | 'engaged'-dbo:address","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/Operation_Dragoon> . ?x <http://dbpedia.org/ontology/title> ?uri . }" +"How many companies have developed cross platformed softwares? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'cross platformed softwares'-res:Go_software | 'developed'-dbo:product","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/products> <http://dbpedia.org/resource/CrossPlatform_softwares> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}" +"How many titles were given to people who engaged in the Operation Dragoon? | 'Operation Dragoon'-res:Operation_Dragoon | 'titles'-dbp:title | 'engaged'-dbo:address","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/battle> <http://dbpedia.org/resource/Operation_Dragoon> . ?x <http://dbpedia.org/ontology/title> ?uri . }" "List the pole drivers in the grand prixes where Williams Grand Prix Engineering was a first team? | 'Williams Grand Prix Engineering'-res:Williams_Grand_Prix_Engineering | 'pole drivers'-dbp:poleDriver | 'grand prixes'-dbo:grandsire | 'team'-dbo:team","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/firstTeam> <http://dbpedia.org/resource/Williams_Grand_Prix_Engineering> . ?x <http://dbpedia.org/property/poleDriver> ?uri . }" "Who is the employer of Michael M. Sears ? | 'Michael M. Sears'-res:Michael_M._Sears | 'employer'-dbo:employer"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Michael_M._Sears> <http://dbpedia.org/ontology/employer> ?uri } " -"List all the artist of the TV shows which has McClain as one of the artist ? | 'McClain'-res:McClain_(band) | 'artist'-dbo:artist | 'artist'-dbo:artist","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/associatedMusicalArtist> <http://dbpedia.org/resource/McClain_(band)> . ?x <http://dbpedia.org/property/artist> ?uri . }" +"List all the artist of the TV shows which has McClain as one of the artist ? | 'McClain'-res:McClain_(band) | 'artist'-dbo:artist | 'artist'-dbo:artist"," SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/artist> <http://dbpedia.org/resource/McClain_(band)> . ?x <http://dbpedia.org/property/artist> ?uri }" "List all the layouts of the automobile whose one of the layout is four-wheel-drive layout ? | 'four-wheel-drive layout'-res:Front-engine,_four-wheel-drive_layout | 'layouts'-dbo:configuration | 'automobile'-dbo:vehicle | 'layout'-dbo:layout | 'four-wheel-drive layout'-dbo:purpose"," SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/layout> <http://dbpedia.org/resource/Front-engine,_four-wheel-drive_layout> . ?x <http://dbpedia.org/property/layout> ?uri }" "To how many places does the airlines fly, whose head office is located at the Gatwick Airport? | 'airlines fly,'-res:Hi_Fly_(airline) | 'Gatwick Airport'-res:Gatwick_Airport | 'places'-dbo:district | 'head office'-dbp:headquarters | 'located'-dbo:gross","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Gatwick_Airport> . ?x <http://dbpedia.org/ontology/destinations> ?uri . }" -"Where is the arena of WPC Dynamo Moscow situated? | 'WPC Dynamo Moscow'-res:WPC_Dynamo_Moscow | 'arena'-dbp:arena | 'situated'-dbo:position"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/WPC_Dynamo_Moscow> <http://dbpedia.org/property/arena> ?uri } " -" How many scientist have won an award by the society led by Venkatraman Ramakrishnan? | 'How'-res:How_Do_I_Deal | 'scientist'-res:Scientist | 'Venkatraman Ramakrishnan'-res:Venkatraman_Ramakrishnan | 'won'-dbo:award | 'award'-dbo:award | 'society'-dbo:institution | 'led'-dbo:field","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/leaderName> <http://dbpedia.org/resource/Venkatraman_Ramakrishnan> . ?uri <http://dbpedia.org/property/awards> ?x .Scientist}" -"Who all were involved in the wars fought by the commander Blue Jacket? | 'commander Blue Jacket'-res:The_Jacket | 'involved'-dbo:address | 'wars'-dbo:partner | 'fought'-dbo:type","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/commander> <http://dbpedia.org/resource/The_Jacket> . ?x <http://dbpedia.org/ontology/combatant> ?uri . }" -"Whose labels are Victor Entertainment and Celluloid Records? | 'Victor Entertainment'-res:Victor_Entertainment | 'Celluloid Records'-res:Celluloid_Records | 'labels'-dbp:label","SELECT DISTINCT ?uri WHERE { labels <http://dbpedia.org/resource/Victor_Entertainment> . ?uri <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Celluloid_Records> . }" -"How many people have written stuff broadcasted on the Tokyo Broadcasting System? | 'Tokyo Broadcasting System'-res:Tokyo_Broadcasting_System | 'written'-dbo:writer | 'stuff broadcasted'-dbo:capital","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/network> <http://dbpedia.org/resource/Tokyo_Broadcasting_System> . ?uri <http://dbpedia.org/property/writer> ?x . }" -"What cities are around the sea which flows into Marmara? | 'Marmara'-res:Sea_of_Marmara | 'cities'-dbo:country | 'sea'-dbo:elevation | 'flows'-dbo:outflow","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/inflow> <http://dbpedia.org/resource/Sea_of_Marmara> . ?x <http://dbpedia.org/property/cities> ?uri . }" +"Where is the arena of WPC Dynamo Moscow situated? | 'WPC Dynamo Moscow'-res:WPC_Dynamo_Moscow | 'arena'-dbp:arena | 'situated'-dbo:position","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/WPC_Dynamo_Moscow> <http://dbpedia.org/property/arena> ?x . ?x <http://dbpedia.org/ontology/location> ?uri . }" +" How many scientist have won an award by the society led by Venkatraman Ramakrishnan? | 'How'-res:How_Do_I_Deal | 'scientist'-res:Scientist | 'Venkatraman Ramakrishnan'-res:Venkatraman_Ramakrishnan | 'won'-dbo:award | 'award'-dbo:award | 'society'-dbo:institution | 'led'-dbo:field","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/leaderName> <http://dbpedia.org/resource/Venkatraman_Ramakrishnan> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}" +"Who all were involved in the wars fought by the commander Blue Jacket? | 'commander Blue Jacket'-res:The_Jacket | 'involved'-dbo:address | 'wars'-dbo:partner | 'fought'-dbo:type","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/commander> <http://dbpedia.org/resource/The_Jacket> . ?x <http://dbpedia.org/ontology/territory> ?uri . }" +"Whose labels are Victor Entertainment and Celluloid Records? | 'Victor Entertainment'-res:Victor_Entertainment | 'Celluloid Records'-res:Celluloid_Records | 'labels'-dbp:label","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Victor_Entertainment> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Records>}" +"How many people have written stuff broadcasted on the Tokyo Broadcasting System? | 'Tokyo Broadcasting System'-res:Tokyo_Broadcasting_System | 'written'-dbo:writer | 'stuff broadcasted'-dbo:capital","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/capital> <http://dbpedia.org/resource/Tokyo_Broadcasting_System> . ?x <http://dbpedia.org/property/writer> ?uri . }" +"What cities are around the sea which flows into Marmara? | 'Marmara'-res:Sea_of_Marmara | 'cities'-dbo:country | 'sea'-dbo:elevation | 'flows'-dbo:outflow","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/inflow> <http://dbpedia.org/resource/Marmara> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Sea>}" "Companies headquartered in Geneva own which TV Shows? | 'Geneva'-res:Geneva | 'headquartered'-dbo:headquarter","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Geneva> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" "Which country's engineered have studied at Aero Klub in Wroclaw? | ''-res:AeroKlub_Wrocław | 'Wroclaw'-dbo:institution | 'country's'-dbp:nationality","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/institution> <http://dbpedia.org/resource/AeroKlub_Wrocław> . ?x <http://dbpedia.org/property/nationality> ?uri . }" "What is the official name of Arkansas wine ? | 'Arkansas wine'-res:Arkansas_wine | 'official name'-dbp:officialName"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Arkansas_wine> <http://dbpedia.org/property/officialName> ?uri } " "Bridge that starts at Seberang Perai crosses over what? | 'Seberang Perai crosses'-res:Seberang_Perai | 'bridge'-dbo:abstract | 'starts'-dbo:routeStart","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/routeStart> <http://dbpedia.org/resource/Seberang_Perai> . ?x <http://dbpedia.org/property/crosses> ?uri . }" -"What is the purpose of some Maharashtran organizations? | 'Maharashtran organizations'-res:Complex_organizations | 'purpose'-dbo:purpose","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/purpose> <http://dbpedia.org/resource/Maharashtran> . ?x <http://dbpedia.org/ontology/purpose> ?uri . }" -"Mota Engil built bridges over which rivers? | 'Mota Engil'-res:Mota-Engil | 'built'-dbo:numberBuilt | 'bridges'-dbo:abstract | 'rivers'-dbo:river"," SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/numberBuilt> <http://dbpedia.org/resource/Mota-Engil> . ?x <http://dbpedia.org/property/crosses> ?uri }" -"How many other field are there of the scientists whose one of the field is Mathematics ? | 'scientists'-res:Scientist | 'Mathematics'-res:Mathematics | 'field'-dbo:field | 'field'-dbo:field"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/field> <http://dbpedia.org/resource/Mathematics> . ?x <http://dbpedia.org/property/fields> ?uri }" +"What is the purpose of some Maharashtran organizations? | 'Maharashtran organizations'-res:Complex_organizations | 'purpose'-dbo:purpose"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/purpose> <http://dbpedia.org/resource/Maharashtran> } " +"Mota Engil built bridges over which rivers? | 'Mota Engil'-res:Mota-Engil | 'built'-dbo:numberBuilt | 'bridges'-dbo:abstract | 'rivers'-dbo:river","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/mouthPlace> <http://dbpedia.org/resource/Mota-Engil> . ?x <http://dbpedia.org/property/design> ?uri . }" +"How many other field are there of the scientists whose one of the field is Mathematics ? | 'scientists'-res:Scientist | 'Mathematics'-res:Mathematics | 'field'-dbo:field | 'field'-dbo:field"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/fields> <http://dbpedia.org/resource/Mathematics> . ?x <http://dbpedia.org/property/fields> ?uri }" "List the governers of Jimmie Lou Fisher? | 'Jimmie Lou Fisher'-res:Jimmie_Lou_Fisher | 'governers'-dbp:governor"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jimmie_Lou_Fisher> <http://dbpedia.org/property/governor> ?uri } " -"Which shows had their painters born in England? | 'England'-res:England | 'shows'-dbo:place | 'painters'-dbo:author | 'born'-dbo:birthPlace","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/England> . ?uri <http://dbpedia.org/property/painter> ?x . }" -"What are the movies whose director's daughter is Luke Scott? | 'Luke Scott'-res:Luke_Scott_(director) | 'movies'-dbo:film | 'director'-dbo:director | 'daughter'-dbo:child","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/child> <http://dbpedia.org/resource/Luke_Scott_(director)> . ?uri <http://dbpedia.org/property/director> ?x . }" -"Where did the relatives of Gustavo Rojas Pinilla study? | 'Gustavo Rojas Pinilla study'-res:Gustavo_Rojas_Pinilla | 'relatives'-dbo:relation","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Gustavo_Rojas_Pinilla> <http://dbpedia.org/ontology/relation> ?uri . }" -"For how many things are americans famous for? | 'americans famous'-dbo:established","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/nationality> <http://dbpedia.org/resource/United_States> . ?x <http://dbpedia.org/ontology/knownFor> ?uri . }" -"What is the publisher of Lucifer's Hammer ? | 'Lucifer's Hammer'-res:Lucifer's_Hammer | 'publisher'-dbo:publisher"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lucifer's_Hammer> <http://dbpedia.org/property/publisher> ?uri } " -"Which show's theme music composer's label is MapleMusic Recordings? | 'theme music composer'-res:Theme_Music_from_%22The_James_Dean_Story%22 | 'MapleMusic Recordings'-res:MapleMusic_Recordings | 'show'-dbo:show | 'label'-dbp:label","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/themeMusicComposer> <http://dbpedia.org/resource/MapleMusic_Recordings> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" +"Which shows had their painters born in England? | 'England'-res:England | 'shows'-dbo:place | 'painters'-dbo:author | 'born'-dbo:birthPlace","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/England> . ?uri <http://dbpedia.org/property/painters> ?x . }" +"What are the movies whose director's daughter is Luke Scott? | 'Luke Scott'-res:Luke_Scott_(director) | 'movies'-dbo:film | 'director'-dbo:director | 'daughter'-dbo:child","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/child> <http://dbpedia.org/resource/Luke_Scott_(director)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" +"Where did the relatives of Gustavo Rojas Pinilla study? | 'Gustavo Rojas Pinilla study'-res:Gustavo_Rojas_Pinilla | 'relatives'-dbo:relation","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Gustavo_Rojas_Pinilla> <http://dbpedia.org/ontology/relation> ?x . ?x <http://dbpedia.org/property/education> ?uri . }" +"For how many things are americans famous for? | 'americans famous'-dbo:established","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/stateOfOrigin> <http://dbpedia.org/resource/United_States> . ?x <http://dbpedia.org/property/knownFor> ?uri . }" +"What is the publisher of Lucifer's Hammer ? | 'Lucifer's Hammer'-res:Lucifer's_Hammer | 'publisher'-dbo:publisher"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lucifer's_Hammer> <http://dbpedia.org/ontology/publisher> ?uri } " +"Which show's theme music composer's label is MapleMusic Recordings? | 'theme music composer'-res:Theme_Music_from_%22The_James_Dean_Story%22 | 'MapleMusic Recordings'-res:MapleMusic_Recordings | 'show'-dbo:show | 'label'-dbp:label","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/label> <http://dbpedia.org/resource/MapleMusic_Recordings> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" "List the former team of the american football players born in Pennsylvania ? | 'american football players'-res:American_football | 'Pennsylvania'-res:Pennsylvania | 'former team'-dbo:formerTeam | 'born'-dbo:birthPlace","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Pennsylvania> . ?x <http://dbpedia.org/property/formerTeam> ?uri . }" -"What are the countries for which History of Trier principal to? | 'countries'-res:Countries_of_the_United_Kingdom | 'History of Trier principal'-res:History_of_Trier","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/History_of_Trier> principal <http://dbpedia.org/ontology/primeminister> ?x . ?x <http://dbpedia.org/property/country> ?uri . }" +"What are the countries for which History of Trier principal to? | 'countries'-res:Countries_of_the_United_Kingdom | 'History of Trier principal'-res:History_of_Trier","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/primeminister> <http://dbpedia.org/resource/History_of_Trier> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Country>}" "Name everyone working for a company owned by Roman Abramovich. | 'Roman Abramovich'-res:Roman_Abramovich | 'name'-dbp:name | 'working'-dbo:capital | 'company'-dbo:company | 'owned'-dbo:owner","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/owner> <http://dbpedia.org/resource/Roman_Abramovich> . ?uri <http://dbpedia.org/property/employer> ?x . }" -"In how many different places can I find companies which were founded in toronto? | 'I'-res:I | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'toronto'-res:Toronto | 'places'-dbp:height | 'founded'-dbo:foundingYear","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/foundationPlace> <http://dbpedia.org/resource/Toronto> . ?uri <http://dbpedia.org/property/regionServed> ?x . }" -"What are some relatives of the spouse of Uncle henry from Oz? | 'Uncle henry from Oz'-res:Uncle_Henry_(Oz) | 'relatives'-dbo:relative | 'spouse'-dbo:spouse","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Uncle_Henry_(Oz)> <http://dbpedia.org/property/spouse> ?x . ?x <http://dbpedia.org/ontology/relation> ?uri . }" +"In how many different places can I find companies which were founded in toronto? | 'I'-res:I | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'toronto'-res:Toronto | 'places'-dbp:height | 'founded'-dbo:foundingYear","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/foundationPlace> <http://dbpedia.org/resource/Toronto> . ?x <http://dbpedia.org/property/destinations> ?uri . }" +"What are some relatives of the spouse of Uncle henry from Oz? | 'Uncle henry from Oz'-res:Uncle_Henry_(Oz) | 'relatives'-dbo:relative | 'spouse'-dbo:spouse","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/spouse> <http://dbpedia.org/resource/Uncle_Henry_(Oz)> . ?x <http://dbpedia.org/ontology/relative> ?uri . }" "What is the mascot of Blytheville High School ? | 'Blytheville High School'-res:Blytheville_High_School | 'mascot'-dbo:mascot"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Blytheville_High_School> <http://dbpedia.org/property/mascot> ?uri } " "In which television shows has Eliza Schneider given her voice? | 'Eliza Schneider'-res:Eliza_Schneider | 'voice'-dbp:voices | 'television show'-dbo:TelevisionShow","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/voices> <http://dbpedia.org/resource/Eliza_Schneider> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" "In which state does the ambassador who is in related with J Bennett Johnston live? | 'J Bennett Johnston'-res:J._Bennett_Johnston | 'ambassador'-dbp:representative | 'related'-dbo:related","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/J._Bennett_Johnston> <http://dbpedia.org/property/related> ?x . ?x <http://dbpedia.org/ontology/state> ?uri . }" -"Where were the sportsmen born, who started their careers with Homestead Grays? | 'Homestead Grays'-res:Homestead_Grays | 'sportsmen born,'-dbo:birthPlace | 'started'-dbo:source | 'careers'-dbo:occupation","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/debutteam> <http://dbpedia.org/resource/Homestead_Grays> . ?x <http://dbpedia.org/property/birthPlace> ?uri . }" +"Where were the sportsmen born, who started their careers with Homestead Grays? | 'Homestead Grays'-res:Homestead_Grays | 'sportsmen born,'-dbo:birthPlace | 'started'-dbo:source | 'careers'-dbo:occupation","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/debutteam> <http://dbpedia.org/resource/Homestead_Grays> . ?x <http://dbpedia.org/ontology/birthPlace> ?uri . }" "Who are the cast members of The Simpsons Ride? | 'The Simpsons Ride'-res:The_Simpsons_Ride | 'cast members'-dbp:starring"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Simpsons_Ride> <http://dbpedia.org/property/starring> ?uri } " -"Name the organization which developed iPhone OS and the XNU? | 'OS'-res:OS | 'iPhone'-res:IPhone | 'XNU'-res:XNU | 'name'-dbp:name | 'organization'-dbo:alliance | 'developed'-dbp:developer","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/IPhone> <http://dbpedia.org/ontology/alliance> ?uri . <http://dbpedia.org/resource/XNU> <http://dbpedia.org/property/developer> ?uri . }" -"How many bacterias have taxonomy as Bacillales and domain as Bacteria? | 'bacterias'-res:Bacteriastrum_delicatulum | 'Bacillales'-res:Bacillales | 'Bacteria'-res:Bacteria | 'taxonomy'-dbo:order | 'domain'-dbo:kingdom"," SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/order> <http://dbpedia.org/resource/Bacillales> } " +"Name the organization which developed iPhone OS and the XNU? | 'OS'-res:OS | 'iPhone'-res:IPhone | 'XNU'-res:XNU | 'name'-dbp:name | 'organization'-dbo:alliance | 'developed'-dbp:developer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/computingPlatform> <http://dbpedia.org/resource/IPhone> . ?uri <http://dbpedia.org/property/developer> <http://dbpedia.org/resource/XNU> . }" +"How many bacterias have taxonomy as Bacillales and domain as Bacteria? | 'bacterias'-res:Bacteriastrum_delicatulum | 'Bacillales'-res:Bacillales | 'Bacteria'-res:Bacteria | 'taxonomy'-dbo:order | 'domain'-dbo:kingdom","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/kingdom> <http://dbpedia.org/resource/Bacillales> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Bacteria>}" "Who is the film director of Alice's Wonderland ? | 'Alice's Wonderland'-res:Alice's_Wonderland | 'film director'-dbp:director"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Alice's_Wonderland> <http://dbpedia.org/property/director> ?uri } " "Which military unit's garrison is Pentagon and command structure is United States Department of Defense? | 'garrison'-res:Aldershot_Garrison | 'Pentagon'-res:Pentagon | 'United States Department of Defense'-res:United_States_Department_of_Defense | 'military unit'-dbo:garrison | 'command structure'-dbo:commandStructure","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/garrison> <http://dbpedia.org/resource/United_States_Department_of_Defense> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MilitaryUnit>}" -"Over which rivers, does a cable stayed bridge exists? | 'rivers,'-dbo:river | 'cable'-dbo:voice | 'stayed'-dbo:era | 'bridge exists'-dbo:bridgeCarries","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/design> <http://dbpedia.org/resource/Bridge_carries> . ?x <http://dbpedia.org/property/crosses> ?uri . }" +"Over which rivers, does a cable stayed bridge exists? | 'rivers,'-dbo:river | 'cable'-dbo:voice | 'stayed'-dbo:era | 'bridge exists'-dbo:bridgeCarries","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/design> <http://dbpedia.org/resource/Cable_Stayed_Bridge> . ?x <http://dbpedia.org/ontology/bridgeCarries> ?uri . }" "Who were some governmental heads in Nazi Germany? | 'Nazi Germany'-res:Nazi_Germany | 'governmental heads'-dbo:state"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/state> <http://dbpedia.org/resource/Nazi_Germany> } " "Name all the doctoral student of the scientist who also supervised Mary Ainsworth ? | 'scientist'-res:Scientist_(musician) | 'Mary Ainsworth'-res:Mary_Ainsworth | 'name'-dbp:name | 'doctoral student'-dbo:doctoralAdvisor | 'supervised'-dbo:doctoralAdvisor","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/doctoralAdvisor> <http://dbpedia.org/resource/Mary_Ainsworth> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}" -"What are some seas inside europe ? | 'seas'-dbo:vein | 'europe'-dbo:winsInEurope"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Europe> <http://dbpedia.org/ontology/cities> ?uri } " -"Who was the bronze medalist of Swimming at the 2008 Summer Olympics Men's 400 metre individual medley ? | 'Swimming at the 2008 Summer Olympics Men'-res:Swimming_at_the_2008_Summer_Olympics | '400 metre individual medley'-res:2010_Pan_Pacific_Swimming_Championships_–_Women's_400_metre_individual_medley"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Swimming_at_the_2008_Summer_Olympics> <http://dbpedia.org/property/prizes> ?uri } " +"What are some seas inside europe ? | 'seas'-dbo:vein | 'europe'-dbo:winsInEurope"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/locatedInArea> <http://dbpedia.org/resource/Europe> } " +"Who was the bronze medalist of Swimming at the 2008 Summer Olympics Men's 400 metre individual medley ? | 'Swimming at the 2008 Summer Olympics Men'-res:Swimming_at_the_2008_Summer_Olympics | '400 metre individual medley'-res:2010_Pan_Pacific_Swimming_Championships_–_Women's_400_metre_individual_medley"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/2010_Pan_Pacific_Swimming_Championships_–_Women's_400_metre_individual_medley> <http://dbpedia.org/property/bronzes> ?uri } " "Whose doctoral student is etienne bieler\xc9tienne_Bi\xe9ler | 'Etienne bielerxc9tienne_bixe9ler'-res:Étienne_(film) | 'doctoral student'-dbo:doctoralStudent","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/doctoralStudent> <http://dbpedia.org/resource/Étienne_(film)> . }" -"Which engine's successor's predecessor is BMW M10? | 'BMW M10'-res:BMW_M10 | 'engine'-dbp:engine | 'successor'-dbo:successor | 'predecessor'-dbo:predecessor","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/predecessor> <http://dbpedia.org/resource/BMW_M10> . ?uri <http://dbpedia.org/property/engine> ?x . }" -"Who developed the software for the operating system of Macintosh Quadra 660AV ? | 'software'-res:Software_Publishing_Corporation | '660AV'-res:Macintosh_Quadra_660AV | 'Macintosh Quadra'-res:Macintosh_Quadra | 'developed'-dbo:developer | 'operating'-dbo:operatingSystem","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Macintosh_Quadra_660AV> <http://dbpedia.org/ontology/operatingSystem> ?x . ?x <http://dbpedia.org/property/developer> ?uri . }" +"Which engine's successor's predecessor is BMW M10? | 'BMW M10'-res:BMW_M10 | 'engine'-dbp:engine | 'successor'-dbo:successor | 'predecessor'-dbo:predecessor","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/engine> <http://dbpedia.org/resource/BMW_M10> . ?x <http://dbpedia.org/ontology/predecessor> ?uri . }" +"Who developed the software for the operating system of Macintosh Quadra 660AV ? | 'software'-res:Software_Publishing_Corporation | '660AV'-res:Macintosh_Quadra_660AV | 'Macintosh Quadra'-res:Macintosh_Quadra | 'developed'-dbo:developer | 'operating'-dbo:operatingSystem","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/operatingSystem> <http://dbpedia.org/resource/Macintosh_Quadra_660AV> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Software>}" "How many other Guests are there of the television episodes whose Guests is Brian d'Arcy James ? | 'Brian d'Arcy James'-res:Brian_d'Arcy_James | 'Guests'-dbp:guests | 'Guests'-dbp:guests"," SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Brian_d'Arcy_James> <http://dbpedia.org/property/guests> ?uri } " "Who is the writer of He's a Pirate ? | 'He's a Pirate'-res:He's_a_Pirate | 'writer'-dbo:writer"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/He's_a_Pirate> <http://dbpedia.org/ontology/writer> ?uri } " -"Which movies have their music composed by someone that signed up with RCA Records? | 'RCA Records'-res:RCA_Records | 'movies'-dbo:film | 'music'-dbo:musicFusionGenre | 'composed'-dbo:musicComposer | 'signed'-dbo:precursor","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/recordLabel> <http://dbpedia.org/resource/RCA_Records> . ?uri <http://dbpedia.org/property/music> ?x . }" -"Which philosophy journal has compiler as Stephen Law ? | 'Stephen Law'-res:Stephen_Law | 'philosophy'-res:Philosophy | 'philosophy journal'-dbo:magazine | 'compiler'-dbo:compiler","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/compiler> <http://dbpedia.org/resource/Stephen_Law> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Philosophy>}" -"Where is the fictional character from, whose last appearance was in the Avengers, 1998? | 'fictional character from,'-res:Orange_(Fictional_character) | 'Avengers, 1998'-res:The_Avengers_(1998_film) | 'appearance'-dbo:lastAppearance","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Avengers_(1998_film)> <http://dbpedia.org/ontology/lastAppearance> ?uri . }" -"Which idelogy of the Palang Dharma Party is also the faith of Miao people ? | 'idelogy'-res:Ideology | 'Palang Dharma Party'-res:Palang_Dharma_Party | 'Miao'-res:Miao | 'faith'-dbo:denomination"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Palang_Dharma_Party> <http://dbpedia.org/ontology/ideology> ?uri . <http://dbpedia.org/resource/Miao> <http://dbpedia.org/property/veneratedIn> ?uri} " +"Which movies have their music composed by someone that signed up with RCA Records? | 'RCA Records'-res:RCA_Records | 'movies'-dbo:film | 'music'-dbo:musicFusionGenre | 'composed'-dbo:musicComposer | 'signed'-dbo:precursor","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/recordLabel> <http://dbpedia.org/resource/RCA_Records> . ?uri <http://dbpedia.org/ontology/musicComposer> ?x . }" +"Which philosophy journal has compiler as Stephen Law ? | 'Stephen Law'-res:Stephen_Law | 'philosophy'-res:Philosophy | 'philosophy journal'-dbo:magazine | 'compiler'-dbo:compiler","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/compiler> <http://dbpedia.org/resource/Stephen_Law> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/PhilosophyJournal>}" +"Where is the fictional character from, whose last appearance was in the Avengers, 1998? | 'fictional character from,'-res:Orange_(Fictional_character) | 'Avengers, 1998'-res:The_Avengers_(1998_film) | 'appearance'-dbo:lastAppearance","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/lastAppearance> <http://dbpedia.org/resource/The_Avengers_(1998_film)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/FictionalCharacter>}" +"Which idelogy of the Palang Dharma Party is also the faith of Miao people ? | 'idelogy'-res:Ideology | 'Palang Dharma Party'-res:Palang_Dharma_Party | 'Miao'-res:Miao | 'faith'-dbo:denomination"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Palang_Dharma_Party> <http://dbpedia.org/property/veneratedIn> ?uri . <http://dbpedia.org/resource/Miao> <http://dbpedia.org/ontology/ideology> ?uri} " "List the movies produced by Michael Deeley ? | 'Michael Deeley'-res:Michael_Deeley | 'produced'-dbo:producer | 'movie'-dbo:Film","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/producer> <http://dbpedia.org/resource/Michael_Deeley> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" -"What is the total number of politicians whose predecessor's deputy is Jenny Macklin? | 'politicians'-res:Politicians_of_The_Wire | 'Jenny Macklin'-res:Jenny_Macklin | 'total'-dbo:populationTotal | 'predecessor'-dbo:predecessor | 'deputy'-dbo:deputy"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/deputy> <http://dbpedia.org/resource/Jenny_Macklin> . ?uri <http://dbpedia.org/property/leaderName> ?x }" -"What are the sports played by the universities who also plays taekwondo ? | 'universities'-res:Universities_Ireland | 'taekwondo'-res:Taekwondo | 'sports'-dbo:sport | 'played'-dbo:portrayer | 'plays'-dbo:plays","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/athletics> <http://dbpedia.org/resource/Taekwondo> . ?x <http://dbpedia.org/ontology/sport> ?uri . }" -"Who all are buried in Arlington national cementary? | 'Arlington national cementary'-res:Arlington_National_Cemetery | 'buried'-dbp:placeofburial","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/placeofburial> <http://dbpedia.org/resource/Arlington_National_Cemetery> . }" -"How many different genres led to other genres where drums are important? | 'drums'-res:Drums_Around_the_World | 'genres'-dbo:genre | 'led'-dbo:field | 'genres'-dbo:genre","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/keyPeople> <http://dbpedia.org/resource/Drums_Around_the_World> . ?x <http://dbpedia.org/ontology/genre> ?uri . }" -"List all the bands which have members of the band Guy in them? | 'Guy'-res:Guy_(band) | 'members'-dbo:bandMember | 'band'-dbo:associatedBand","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/bandMember> <http://dbpedia.org/resource/Guy_(band)> . ?x <http://dbpedia.org/property/associatedBand> ?uri . }" -"Name presidents of the schools which have queen noor of Jordan as one of them ? | 'queen noor of Jordan'-res:Queen_Noor_of_Jordan | 'name presidents'-dbo:leaderName | 'schools'-dbo:ground | 'queen'-dbo:leader | 'noor'-dbo:chain","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/motherName> <http://dbpedia.org/resource/Queen_Noor_of_Jordan> . ?x <http://dbpedia.org/property/president> ?uri . }" -"What are the television shows which are in NTSC and 5.1 surround sound? | 'NTSC'-res:NTSC | '51 surround sound'-res:Surround_sound | 'television shows'-dbo:televisionSeries","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/programmingLanguage> <http://dbpedia.org/resource/NTSC> . ?uri <http://dbpedia.org/ontology/channel> <http://dbpedia.org/resource/Surround_sound> } " -"Where did the film director of Kala Pani die? | 'Kala Pani'-res:Kala_Pani_(1958_film) | 'film director'-dbo:director | 'die'-dbo:deathDate","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kala_Pani_(1958_film)> <http://dbpedia.org/property/director> ?x . ?x <http://dbpedia.org/ontology/deathPlace> ?uri . }" -"What are the death place of the models whose hair color was Red? | 'hair red'-res:Red_hair | 'death place'-dbp:deathPlace | 'models'-dbo:genre | 'hair color'-dbp:hairColor","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/hairColor> <http://dbpedia.org/resource/Red_hair> . ?x <http://dbpedia.org/property/deathPlace> ?uri . }" -"Count the different religions followed by Second Lieutenants in military. | 'Second Lieutenants'-res:Per_Second,_Per_Second,_Per_Second..._Every_Second | 'count'-dbo:type | 'religions'-dbo:religion | 'military'-dbo:militaryUnitSize","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/branch> <http://dbpedia.org/resource/Second_Lieutenant> . ?x <http://dbpedia.org/ontology/religion> ?uri . }" -"What railway lines go through the stations maintained by Western Australian Public Transport Authority? | 'Western Australian Public Transport Authority'-res:Public_Transport_Authority_(Western_Australia) | 'railway lines'-dbo:lyrics | 'stations'-dbo:numberOfStations | 'maintained'-dbo:maintainedBy","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/maintainedBy> <http://dbpedia.org/resource/Public_Transport_Authority_(Western_Australia)> . ?x <http://dbpedia.org/ontology/railwayLine> ?uri . }" -"How many publisher have been founded by american citizens? | 'publisher'-dbo:publisher | 'founded'-dbo:foundationPlace | 'american citizens'-dbo:country","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/nationality> <http://dbpedia.org/resource/United_States> . ?uri <http://dbpedia.org/property/publisher> ?x . }" -"How many countries surround the sea into which the Upper Neratva flow? | 'countries'-res:Countries_of_the_United_Kingdom | 'Upper Neratva'-res:Iveagh_Upper,_Upper_Half | 'surround'-dbo:background | 'sea'-dbo:elevation | 'flow'-dbp:time","SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Upper_Neratva> <http://dbpedia.org/ontology/riverMouth> ?x . ?x <http://dbpedia.org/property/cities> ?uri . }" -"List some things that Swedish people have become famous for? | 'Swedish'-res:Sweden | 'Swedish'-res:Swedish | 'famous'-dbo:established | ''-dbo:country | ''-dbo:country","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/nationality> <http://dbpedia.org/resource/Swedish> . ?x <http://dbpedia.org/property/knownFor> ?uri . }" -"How many artists' works are in Muse d'Orsay? | 'Muse d'-res:Muse_discography | 'artists'-dbo:artist | 'works'-dbo:language","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/city> <http://dbpedia.org/resource/Muse_d'Orsay> . ?x <http://dbpedia.org/ontology/artist> ?uri . }" -"What sporting goods companies are located in Herzogenaurach? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'Herzogenaurach'-res:Herzogenaurach | 'located'-dbo:location","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/location> <http://dbpedia.org/resource/Herzogenaurach> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SportsCompany>}" -"How many awards have been given to the participants of the Lawrence Realization Stakes? | 'Lawrence Realization Stakes'-res:Lawrence_Realization_Stakes | 'awards'-dbo:award | 'participants'-dbo:participant","SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Lawrence_Realization_Stakes> <http://dbpedia.org/property/race> ?x . ?x <http://dbpedia.org/ontology/award> ?uri . }" +"What is the total number of politicians whose predecessor's deputy is Jenny Macklin? | 'politicians'-res:Politicians_of_The_Wire | 'Jenny Macklin'-res:Jenny_Macklin | 'total'-dbo:populationTotal | 'predecessor'-dbo:predecessor | 'deputy'-dbo:deputy","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/predecessor> <http://dbpedia.org/resource/Jenny_Macklin> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/OfficeHolder>}" +"What are the sports played by the universities who also plays taekwondo ? | 'universities'-res:Universities_Ireland | 'taekwondo'-res:Taekwondo | 'sports'-dbo:sport | 'played'-dbo:portrayer | 'plays'-dbo:plays"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Taekwondo> <http://dbpedia.org/property/athletics> ?uri } " +"Who all are buried in Arlington national cementary? | 'Arlington national cementary'-res:Arlington_National_Cemetery | 'buried'-dbp:placeofburial"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Arlington_National_Cemetery> <http://dbpedia.org/property/placeofburial> ?uri } " +"How many different genres led to other genres where drums are important? | 'drums'-res:Drums_Around_the_World | 'genres'-dbo:genre | 'led'-dbo:field | 'genres'-dbo:genre","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/notableInstruments> <http://dbpedia.org/resource/Drums_Around_the_World> . ?x <http://dbpedia.org/ontology/genre> ?uri . }" +"List all the bands which have members of the band Guy in them? | 'Guy'-res:Guy_(band) | 'members'-dbo:bandMember | 'band'-dbo:associatedBand","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/bandMember> <http://dbpedia.org/resource/Guy_(band)> . ?uri <http://dbpedia.org/property/associatedBand> ?x . }" +"Name presidents of the schools which have queen noor of Jordan as one of them ? | 'queen noor of Jordan'-res:Queen_Noor_of_Jordan | 'name presidents'-dbo:leaderName | 'schools'-dbo:ground | 'queen'-dbo:leader | 'noor'-dbo:chain","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/leaderName> <http://dbpedia.org/resource/Queen_Noor_of_Jordan> . ?x <http://dbpedia.org/property/president> ?uri . }" +"What are the television shows which are in NTSC and 5.1 surround sound? | 'NTSC'-res:NTSC | '51 surround sound'-res:Surround_sound | 'television shows'-dbo:televisionSeries","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/channel> <http://dbpedia.org/resource/NTSC> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" +"Where did the film director of Kala Pani die? | 'Kala Pani'-res:Kala_Pani_(1958_film) | 'film director'-dbo:director | 'die'-dbo:deathDate","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kala_Pani_(1958_film)> <http://dbpedia.org/ontology/director> ?x . ?x <http://dbpedia.org/property/deathPlace> ?uri . }" +"What are the death place of the models whose hair color was Red? | 'hair red'-res:Red_hair | 'death place'-dbp:deathPlace | 'models'-dbo:genre | 'hair color'-dbp:hairColor","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/hairColor> <http://dbpedia.org/resource/Red_hair> . ?x <http://dbpedia.org/ontology/deathPlace> ?uri . }" +"Count the different religions followed by Second Lieutenants in military. | 'Second Lieutenants'-res:Per_Second,_Per_Second,_Per_Second..._Every_Second | 'count'-dbo:type | 'religions'-dbo:religion | 'military'-dbo:militaryUnitSize","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/Second_Lieutenants> . ?x <http://dbpedia.org/ontology/religion> ?uri . }" +"What railway lines go through the stations maintained by Western Australian Public Transport Authority? | 'Western Australian Public Transport Authority'-res:Public_Transport_Authority_(Western_Australia) | 'railway lines'-dbo:lyrics | 'stations'-dbo:numberOfStations | 'maintained'-dbo:maintainedBy","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/maintainedBy> <http://dbpedia.org/resource/Public_Transport_Authority_(Western_Australia)> . ?x <http://dbpedia.org/property/railwayLine> ?uri . }" +"How many publisher have been founded by american citizens? | 'publisher'-dbo:publisher | 'founded'-dbo:foundationPlace | 'american citizens'-dbo:country","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/foundationPlace> <http://dbpedia.org/resource/United_States> . ?uri <http://dbpedia.org/property/publisher> ?x . }" +"How many countries surround the sea into which the Upper Neratva flow? | 'countries'-res:Countries_of_the_United_Kingdom | 'Upper Neratva'-res:Iveagh_Upper,_Upper_Half | 'surround'-dbo:background | 'sea'-dbo:elevation | 'flow'-dbp:time","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/inflow> <http://dbpedia.org/resource/Upper_Neratva> . ?x <http://dbpedia.org/property/cities> ?uri . }" +"List some things that Swedish people have become famous for? | 'Swedish'-res:Sweden | 'Swedish'-res:Swedish | 'famous'-dbo:established | ''-dbo:country | ''-dbo:country","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/stateOfOrigin> <http://dbpedia.org/resource/Swedish> . ?x <http://dbpedia.org/property/knownFor> ?uri . }" +"How many artists' works are in Muse d'Orsay? | 'Muse d'-res:Muse_discography | 'artists'-dbo:artist | 'works'-dbo:language","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/artist> <http://dbpedia.org/resource/Muse_discography> . ?uri <http://dbpedia.org/property/artist> ?x . }" +"What sporting goods companies are located in Herzogenaurach? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'Herzogenaurach'-res:Herzogenaurach | 'located'-dbo:location","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/location> <http://dbpedia.org/resource/Herzogenaurach> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}" +"How many awards have been given to the participants of the Lawrence Realization Stakes? | 'Lawrence Realization Stakes'-res:Lawrence_Realization_Stakes | 'awards'-dbo:award | 'participants'-dbo:participant","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/race> <http://dbpedia.org/resource/Lawrence_Realization_Stakes> . ?x <http://dbpedia.org/ontology/award> ?uri . }" "List the work edited by Mark Stevens and directed by Joel Schumacher? | 'Mark Stevens'-res:Mark_Stevens | 'Joel Schumacher'-res:Joel_Schumacher | 'work'-dbo:title | 'edited'-dbo:editor | 'directed'-dbo:president","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/editing> <http://dbpedia.org/resource/Mark_Stevens> . ?uri <http://dbpedia.org/property/director> <http://dbpedia.org/resource/Joel_Schumacher> . }" -"List the popular works of the author of Luther: The Calling ? | 'Luther: The Calling'-res:Luther:_The_Calling | 'popular works'-dbo:established | 'author'-dbo:author","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Luther:_The_Calling> <http://dbpedia.org/property/author> ?x . ?x <http://dbpedia.org/ontology/notableWork> ?uri . }" +"List the popular works of the author of Luther: The Calling ? | 'Luther: The Calling'-res:Luther:_The_Calling | 'popular works'-dbo:established | 'author'-dbo:author","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Luther:_The_Calling> <http://dbpedia.org/ontology/author> ?x . ?x <http://dbpedia.org/property/popularWorks> ?uri . }" "Which were the philosophers whose primary interest was Natural philosophy? | 'Philosophers'-res:Philosophers_Ridge | 'Natural philosophy'-res:Natural_philosophy | 'interest'-dbp:mainInterests | 'philosopher'-dbo:Philosopher","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/mainInterests> <http://dbpedia.org/resource/Natural_philosophy> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Philosopher>}" -"What is the total number of other restingplace of the politicians whose one of the restingplace is East Norwalk Historical Cemetery? | 'politicians'-res:Politicians_of_The_Wire | 'East Norwalk Historical Cemetery'-res:East_Norwalk_Historical_Cemetery | 'total'-dbo:populationTotal | 'restingplace'-dbo:restingPlace | 'restingplace'-dbo:restingPlace"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/restingPlace> <http://dbpedia.org/resource/East_Norwalk_Historical_Cemetery> . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/OfficeHolder>}" +"What is the total number of other restingplace of the politicians whose one of the restingplace is East Norwalk Historical Cemetery? | 'politicians'-res:Politicians_of_The_Wire | 'East Norwalk Historical Cemetery'-res:East_Norwalk_Historical_Cemetery | 'total'-dbo:populationTotal | 'restingplace'-dbo:restingPlace | 'restingplace'-dbo:restingPlace"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/restingPlace> <http://dbpedia.org/resource/East_Norwalk_Historical_Cemetery> . ?x <http://dbpedia.org/property/restingsPlace> ?uri }" "How many albums were released under the Victor Entertainment label? | 'Victor Entertainment label'-res:Victor_Entertainment | 'label'-dbp:label | 'album'-dbo:Album","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Victor_Entertainment> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Album>}" -"How many saints have been venerated in Judaism? | 'Judaism'-res:Judaism | 'venerated in'-dbo:veneratedIn | 'saint'-dbo:Saint","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/veneratedIn> <http://dbpedia.org/resource/Judaism> . ?x <http://dbpedia.org/property/Saint> ?uri . }" -"How many people are famous for the Gibson Les Paul? | 'Gibson Les Paul'-res:Gibson_Les_Paul | 'famous'-dbo:established","SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Gibson_Les_Paul> <http://dbpedia.org/ontology/notableWork> ?uri . }" +"How many saints have been venerated in Judaism? | 'Judaism'-res:Judaism | 'venerated in'-dbo:veneratedIn | 'saint'-dbo:Saint","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/veneratedIn> <http://dbpedia.org/resource/Judaism> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Saint>}" +"How many people are famous for the Gibson Les Paul? | 'Gibson Les Paul'-res:Gibson_Les_Paul | 'famous'-dbo:established","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/notableWork> <http://dbpedia.org/resource/Gibson_Les_Paul> . }" "What are the mammals whose phylum is Chordate? | 'mammals'-res:Mammals_of_the_Indiana_Dunes | 'Chordate'-res:Chordate | 'phylum'-dbo:phylum","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/phylum> <http://dbpedia.org/resource/Chordate> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Mammal>}" -"Who are the associated musical artist of Carolyn Dennis? | 'associated musical artist'-res:Ayala_(musical_artist) | 'Carolyn Dennis'-res:Carolyn_Dennis | 'associated musical artist'-dbo:associatedMusicalArtist"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Carolyn_Dennis> <http://dbpedia.org/property/associatedMusicalArtist> ?uri } " -"Count all those who've played for the youth club which owns the Rosario, Santa Fe stadium. | 'Rosario, Santa Fe stadium'-res:Santa_Fé,_Paraná | 'count'-dbo:country | 'played'-dbo:portrayer | 'youth club'-dbo:time | 'owns'-dbo:languageFamily","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/ground> <http://dbpedia.org/resource/Santa_Fé,_Paraná> . ?uri <http://dbpedia.org/ontology/youthclubs> ?x . }" +"Who are the associated musical artist of Carolyn Dennis? | 'associated musical artist'-res:Ayala_(musical_artist) | 'Carolyn Dennis'-res:Carolyn_Dennis | 'associated musical artist'-dbo:associatedMusicalArtist"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Carolyn_Dennis> <http://dbpedia.org/ontology/associatedMusicalArtist> ?uri } " +"Count all those who've played for the youth club which owns the Rosario, Santa Fe stadium. | 'Rosario, Santa Fe stadium'-res:Santa_Fé,_Paraná | 'count'-dbo:country | 'played'-dbo:portrayer | 'youth club'-dbo:time | 'owns'-dbo:languageFamily","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/ground> <http://dbpedia.org/resource/Rosario_Féé,_Paraná> . ?x <http://dbpedia.org/ontology/youthclubs> ?uri . }" "What are the television shows whose company is Playtone? | 'Playtone'-res:Playtone | 'company'-dbo:company | 'television show'-dbo:TelevisionShow","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/company> <http://dbpedia.org/resource/Playtone> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" -"Whose tomb is in cities under Dane County of Wisconsin? | 'Dane County of Wisconsin'-res:Dane_County,_Wisconsin | 'tomb'-dbo:race | 'cities'-dbo:country | ''-dbo:country","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/county> <http://dbpedia.org/resource/Dane_County,_Wisconsin> . ?uri <http://dbpedia.org/property/restingPlace> ?x . }" -"Count the different number of academic areas covered by publications of SAGE? | 'SAGE'-res:Sage_Business_Solutions | 'count'-dbo:type | 'academic'-dbo:abstract | 'covered'-dbo:frozen | 'publications'-dbp:publications","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/prizes> <http://dbpedia.org/resource/SAGE> . ?x <http://dbpedia.org/ontology/discipline> ?uri . }" -"What is the style of architecture of Pontiac Building ? | 'Pontiac Building'-res:Pontiac_Building | 'style'-dbo:type | 'architecture'-dbo:architecturalStyle"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pontiac_Building> <http://dbpedia.org/ontology/architecturalStyle> ?uri } " +"Whose tomb is in cities under Dane County of Wisconsin? | 'Dane County of Wisconsin'-res:Dane_County,_Wisconsin | 'tomb'-dbo:race | 'cities'-dbo:country | ''-dbo:country","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/county> <http://dbpedia.org/resource/Dane_County> . ?x <http://dbpedia.org/ontology/restingPlace> ?uri . }" +"Count the different number of academic areas covered by publications of SAGE? | 'SAGE'-res:Sage_Business_Solutions | 'count'-dbo:type | 'academic'-dbo:abstract | 'covered'-dbo:frozen | 'publications'-dbp:publications","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/publisher> <http://dbpedia.org/resource/SAGE> . ?x <http://dbpedia.org/ontology/academicArea> ?uri . }" +"What is the style of architecture of Pontiac Building ? | 'Pontiac Building'-res:Pontiac_Building | 'style'-dbo:type | 'architecture'-dbo:architecturalStyle"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pontiac_Building> <http://dbpedia.org/property/architecturalStyle> ?uri } " "Which basketball players have played in the league of National Basketball Association? | 'basketball players'-res:Players | 'National Basketball Association'-res:National_Basketball_Association | 'league'-dbo:league | 'basketball player'-dbo:BasketballPlayer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/league> <http://dbpedia.org/resource/National_Basketball_Association> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/BasketballPlayer>}" "Who were the opponents of the people buried in the tower of London? | 'London'-res:London | 'opponents'-dbo:rival | 'buried'-dbo:flag | 'tower'-dbp:column","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/restingPlace> <http://dbpedia.org/resource/London> . ?x <http://dbpedia.org/ontology/opponent> ?uri . }" -"What are the nearest city to the historic places whose one of the nearest city is Wisconsin? | 'historic places'-res:Heritage_New_Zealand | 'Wisconsin'-res:Wisconsin | 'nearest city'-dbo:nearestCity | 'nearest city'-dbo:nearestCity","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/nearestCity> <http://dbpedia.org/resource/Wisconsin> . ?x <http://dbpedia.org/property/narestCity> ?uri . }" +"What are the nearest city to the historic places whose one of the nearest city is Wisconsin? | 'historic places'-res:Heritage_New_Zealand | 'Wisconsin'-res:Wisconsin | 'nearest city'-dbo:nearestCity | 'nearest city'-dbo:nearestCity","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/nearestCity> <http://dbpedia.org/resource/Wisconsin> . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/HistoricPlace>}" "Who is the producer of Captain EO ? | 'Captain EO'-res:Captain_EO | 'producer'-dbo:producer"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Captain_EO> <http://dbpedia.org/ontology/producer> ?uri } " -"Where did the aristocrats die whose mother was Maria Ludwika Krasiska? | 'aristocrats'-res:Aristocrats_(TV_series) | 'Maria Ludwika Krasiska'-res:Maria_Ludwika_Krasińska | 'die'-dbo:deathDate | 'mother'-dbo:parent","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/parent> <http://dbpedia.org/resource/Maria_Ludwika_Krasińska> . ?x <http://dbpedia.org/property/deathPlace> ?uri . }" -"List the books whose authors are in Alcal de Henares. | 'Alcal de Henares'-res:Alcalá_de_Henares_Cathedral | 'books'-dbo:volume | 'authors'-dbo:parent","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/city> <http://dbpedia.org/resource/Alcalá_de_Henares_Cathedral> . ?uri <http://dbpedia.org/property/author> ?x . }" +"Where did the aristocrats die whose mother was Maria Ludwika Krasiska? | 'aristocrats'-res:Aristocrats_(TV_series) | 'Maria Ludwika Krasiska'-res:Maria_Ludwika_Krasińska | 'die'-dbo:deathDate | 'mother'-dbo:parent","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/mother> <http://dbpedia.org/resource/Maria_Ludwika_Krasińska> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Royalty>}" +"List the books whose authors are in Alcal de Henares. | 'Alcal de Henares'-res:Alcalá_de_Henares_Cathedral | 'books'-dbo:volume | 'authors'-dbo:parent","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/author> <http://dbpedia.org/resource/Alcalá_de_Henares_Cathedral> . ?uri <http://dbpedia.org/property/author> ?x . }" "Who is the stockholder of Paphos International Airport ? | 'Stockholder of Paphos International Airport'-res:Paphos_International_Airport | 'stockholder'-dbp:owner"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Paphos_International_Airport> <http://dbpedia.org/property/owner> ?uri } " "What awards have been given to some screenwriters? | 'screenwriters'-res:Screenwriter | 'awards'-dbo:award","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/occupation> <http://dbpedia.org/resource/Screenwriter> . ?x <http://dbpedia.org/ontology/award> ?uri . }" -"List the saints venerated in Islam having major shrine as Tomb of Joshua ? | 'Islam'-res:Islam | 'Tomb of Joshua'-res:Tomb_of_Joshua | 'saints'-dbo:saint | 'venerated'-dbo:veneratedIn | 'major shrine'-dbo:majorShrine","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/majorShrine> <http://dbpedia.org/resource/Tomb_of_Joshua> . ?x <http://dbpedia.org/property/veneratedIn> ?uri . }" -"For which team does Ramiro Pea play ? | 'Ramiro Pea'-res:Ramiro_Peña | 'team'-dbo:team | 'play'-dbo:team"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ramiro_Peña> <http://dbpedia.org/property/team> ?uri } " -"How many subjects have been covered in fantasy novels? | 'fantasy novels'-res:Fantasy | 'subjects'-dbp:subject | 'covered'-dbo:frozen","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/literaryGenre> <http://dbpedia.org/resource/Fantasy> . ?x <http://dbpedia.org/ontology/subject> ?uri . }" -"Which country did the prime minister belong to who was served by Thanong Bidaya ? | 'Thanong Bidaya'-res:Thanong_Bidaya | 'minister prime'-dbp:primeminister | 'country'-dbo:nationality","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/primeminister> <http://dbpedia.org/resource/Thanong_Bidaya> . ?x <http://dbpedia.org/ontology/nationality> ?uri . }" +"List the saints venerated in Islam having major shrine as Tomb of Joshua ? | 'Islam'-res:Islam | 'Tomb of Joshua'-res:Tomb_of_Joshua | 'saints'-dbo:saint | 'venerated'-dbo:veneratedIn | 'major shrine'-dbo:majorShrine","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/veneratedIn> <http://dbpedia.org/resource/Tomb_of_Joshua> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Saint>}" +"For which team does Ramiro Pea play ? | 'Ramiro Pea'-res:Ramiro_Peña | 'team'-dbo:team | 'play'-dbo:team"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ramiro_Peña> <http://dbpedia.org/ontology/team> ?uri } " +"How many subjects have been covered in fantasy novels? | 'fantasy novels'-res:Fantasy | 'subjects'-dbp:subject | 'covered'-dbo:frozen","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/subject> <http://dbpedia.org/resource/Fantasy> . ?x <http://dbpedia.org/ontology/subject> ?uri . }" +"Which country did the prime minister belong to who was served by Thanong Bidaya ? | 'Thanong Bidaya'-res:Thanong_Bidaya | 'minister prime'-dbp:primeminister | 'country'-dbo:nationality"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Thanong_Bidaya> <http://dbpedia.org/property/primeminister> ?uri } " "tell me the school to which Cyril Hume went? | 'Cyril Hume'-res:Cyril_Hume | 'school'-dbo:school"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cyril_Hume> <http://dbpedia.org/ontology/school> ?uri } " -"Who is the singer of the album which has a song Me and My arrow ? | 'song Me'-res:Me_&_U_(song) | 'My arrow'-res:Me_And_My_Arrow | 'singer'-dbo:composer | 'album'-dbo:album","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Me_&_U_(song)> <http://dbpedia.org/property/album> ?x . ?x <http://dbpedia.org/ontology/singer> ?uri . }" -"In how many different places can I fnd Modern Architectural buildings? | 'I'-res:I | 'Modern Architectural buildings'-res:Architectural_Digest | 'places'-dbp:height | 'fnd'-dbo:destination","SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/I> <http://dbpedia.org/ontology/architecturalBuilding> ?x . ?x <http://dbpedia.org/property/destination> ?uri . }" +"Who is the singer of the album which has a song Me and My arrow ? | 'song Me'-res:Me_&_U_(song) | 'My arrow'-res:Me_And_My_Arrow | 'singer'-dbo:composer | 'album'-dbo:album","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Me_&_U_(song)> <http://dbpedia.org/ontology/album> ?x . ?x <http://dbpedia.org/property/music> ?uri . }" +"In how many different places can I fnd Modern Architectural buildings? | 'I'-res:I | 'Modern Architectural buildings'-res:Architectural_Digest | 'places'-dbp:height | 'fnd'-dbo:destination","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/architectural_Digest> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Place>}" "What are the houses of Parliament Security Services ? | 'Parliament Security Services'-res:Parliament_Security_Services | 'houses'-dbp:houses"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Parliament_Security_Services> <http://dbpedia.org/property/houses> ?uri } " -"Count the number of people became famous for when Andrew Jackson was a commander ? | 'Andrew Jackson'-res:Andrew_Jackson | 'count'-dbo:country | 'famous'-dbp:established | 'commander'-dbo:commander"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/commander> <http://dbpedia.org/resource/Andrew_Jackson> . ?x <http://dbpedia.org/ontology/knownFor> ?uri }" -"During the reigns of which monarchs was the name to the Israelite kingdom as United Monarch? | 'Israelite kingdom as United Monarch'-res:Agudat_Yisrael | 'reigns'-dbp:reign | 'monarchs'-dbo:leader | 'name'-dbp:name","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/kingdom> <http://dbpedia.org/resource/Israelite_Kingdom> . ?uri <http://dbpedia.org/property/reign> ?x . }" -"Which nation is the origin of Dornier Aerodyne ? | 'Dornier Aerodyne'-res:Dornier_Aerodyne | 'nation'-dbo:country | 'origin'-dbo:origin"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dornier_Aerodyne> <http://dbpedia.org/property/origin> ?uri } " +"Count the number of people became famous for when Andrew Jackson was a commander ? | 'Andrew Jackson'-res:Andrew_Jackson | 'count'-dbo:country | 'famous'-dbp:established | 'commander'-dbo:commander"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/commander> <http://dbpedia.org/resource/Andrew_Jackson> . ?x <http://dbpedia.org/property/knownFor> ?uri }" +"During the reigns of which monarchs was the name to the Israelite kingdom as United Monarch? | 'Israelite kingdom as United Monarch'-res:Agudat_Yisrael | 'reigns'-dbp:reign | 'monarchs'-dbo:leader | 'name'-dbp:name","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/kingdom> <http://dbpedia.org/resource/Israel> . ?x <http://dbpedia.org/property/reign> ?uri . }" +"Which nation is the origin of Dornier Aerodyne ? | 'Dornier Aerodyne'-res:Dornier_Aerodyne | 'nation'-dbo:country | 'origin'-dbo:origin","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dornier_Aerodyne> <http://dbpedia.org/ontology/origin> ?x . ?x <http://dbpedia.org/property/country> ?uri . }" "Who is the artist of the album which has the song I Can't Change the World ? | 'I Can't Change the World'-res:I_Can't_Change_the_World | 'artist'-dbo:artist | 'album'-dbo:album | 'Change'-dbo:fate","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/I_Can't_Change_the_World> <http://dbpedia.org/ontology/album> ?x . ?x <http://dbpedia.org/property/artist> ?uri . }" -"Collaborators of Demis Roussos have composed music for which movies? | 'Demis Roussos'-res:Demis_Roussos | 'collaborators'-dbo:associate | 'composed'-dbo:musicComposer | 'music'-dbo:musicalBand | 'movies'-dbo:film","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/associatedMusicalArtist> <http://dbpedia.org/resource/Demis_Roussos> . ?x <http://dbpedia.org/property/music> ?uri . }" -"In how many places are the tombs of everyone who died in England? | 'tombs'-res:Tombs_of_the_Blind_Dead | 'England'-res:England | 'places'-dbo:place | 'died'-dbp:deathPlace","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/placeOfDeath> <http://dbpedia.org/resource/England> . ?x <http://dbpedia.org/ontology/deathPlace> ?uri . }" -"Where did the people beatified by Pope Pius X die? | 'X'-res:X | 'Pope Pius'-res:Pope_Pius_X | 'beatified'-dbp:beatifiedBy | 'die'-dbo:deathDate","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/beatifiedBy> <http://dbpedia.org/resource/Pope_Pius_X> . ?x <http://dbpedia.org/ontology/deathPlace> ?uri . }" -"Name all the venues of the convention which has also been hosted in San Diego Convention ? | 'San Diego Convention'-res:San_Diego_Convention_Center | 'venue'-dbp:venue | 'venue'-dbp:venue","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/venue> <http://dbpedia.org/resource/San_Diego_Convention_Center> . ?x <http://dbpedia.org/property/venue> ?uri . }" -"How many famous people are from the Filipinos? | 'Filipinos'-res:Filipinos | 'famous'-dbo:established","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Filipinos> . }" -"Who was the parent of person whose child is William C P breckinridge? | 'C'-res:Chess_Communication | 'William P breckinridge'-res:William_Campbell_Preston_Breckinridge | 'P'-res:P | 'William C breckinridge'-res:John_C._Breckinridge | 'parent'-dbo:parent | 'person'-dbo:child | 'child'-dbo:child","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/parent> <http://dbpedia.org/resource/William_Campbell_Preston_Breckinridge> . ?uri <http://dbpedia.org/property/child> ?x . }" -"Count the religions followed by people living in British Columbia. | 'British Columbia'-res:United_Kingdom | 'British Columbia'-res:British_Columbia | 'count'-dbo:country | 'religions'-dbo:religion | 'living'-dbo:person | ''-dbo:country","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/country> <http://dbpedia.org/resource/British_Columbia> . ?x <http://dbpedia.org/ontology/religion> ?uri . }" +"Collaborators of Demis Roussos have composed music for which movies? | 'Demis Roussos'-res:Demis_Roussos | 'collaborators'-dbo:associate | 'composed'-dbo:musicComposer | 'music'-dbo:musicalBand | 'movies'-dbo:film","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/associatedMusicalArtist> <http://dbpedia.org/resource/Demis_Roussos> . ?uri <http://dbpedia.org/property/music> ?x . }" +"In how many places are the tombs of everyone who died in England? | 'tombs'-res:Tombs_of_the_Blind_Dead | 'England'-res:England | 'places'-dbo:place | 'died'-dbp:deathPlace","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/placeOfDeath> <http://dbpedia.org/resource/England> . ?x <http://dbpedia.org/ontology/restingPlace> ?uri . }" +"Where did the people beatified by Pope Pius X die? | 'X'-res:X | 'Pope Pius'-res:Pope_Pius_X | 'beatified'-dbp:beatifiedBy | 'die'-dbo:deathDate","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/beatifiedBy> <http://dbpedia.org/resource/Pope_Pius_X> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}" +"Name all the venues of the convention which has also been hosted in San Diego Convention ? | 'San Diego Convention'-res:San_Diego_Convention_Center | 'venue'-dbp:venue | 'venue'-dbp:venue"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/San_Diego_Convention_Center> <http://dbpedia.org/property/venue> ?uri } " +"How many famous people are from the Filipinos? | 'Filipinos'-res:Filipinos | 'famous'-dbo:established","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/stateOfOrigin> <http://dbpedia.org/resource/Filipinos> . }" +"Who was the parent of person whose child is William C P breckinridge? | 'C'-res:Chess_Communication | 'William P breckinridge'-res:William_Campbell_Preston_Breckinridge | 'P'-res:P | 'William C breckinridge'-res:John_C._Breckinridge | 'parent'-dbo:parent | 'person'-dbo:child | 'child'-dbo:child","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/child> <http://dbpedia.org/resource/William_Campbell_Preston_Breckinridge> . ?x <http://dbpedia.org/property/parent> ?uri . }" +"Count the religions followed by people living in British Columbia. | 'British Columbia'-res:United_Kingdom | 'British Columbia'-res:British_Columbia | 'count'-dbo:country | 'religions'-dbo:religion | 'living'-dbo:person | ''-dbo:country","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/residence> <http://dbpedia.org/resource/British_Columbia> . ?x <http://dbpedia.org/property/religion> ?uri . }" "What is the meaning of Heydar ? | 'Heydar'-res:Heydar | 'meaning'-dbo:meaning"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Heydar> <http://dbpedia.org/ontology/meaning> ?uri } " "On how many different grounds were seasons chaired by Ronaldo held? | 'Ronaldo'-res:Ronaldo | 'chaired'-dbo:chairman | 'grounds'-dbo:ground","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/chairman> <http://dbpedia.org/resource/Ronaldo> . ?x <http://dbpedia.org/property/ground> ?uri . }" -"Give me a count of all ice hockey players whose teams are headcoached by John Tortorella? | 'ice hockey players'-res:Ice_hockey | 'John Tortorella'-res:John_Tortorella | 'count'-dbo:country | 'teams'-dbp:team | 'headcoached'-dbp:headCoaches","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/headCoaches> <http://dbpedia.org/resource/John_Tortorella> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/IceHockeyPlayer>}" -"What is the common palce of study for jack McGregor and Philip W. Pillsbury ? | 'jack McGregor'-res:Jack_McGregor | 'W'-res:W | 'Philip Pillsbury'-res:Emma_Pillsbury | 'common palce'-dbo:genre | 'study'-dbp:studio","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jack_McGregor> <http://dbpedia.org/ontology/genre> ?uri . <http://dbpedia.org/resource/Philip_W._Pillsbury> <http://dbpedia.org/property/studio> ?uri . }" +"Give me a count of all ice hockey players whose teams are headcoached by John Tortorella? | 'ice hockey players'-res:Ice_hockey | 'John Tortorella'-res:John_Tortorella | 'count'-dbo:country | 'teams'-dbp:team | 'headcoached'-dbp:headCoaches","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/team> <http://dbpedia.org/resource/John_Tortorella> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/IceHockeyPlayer>}" +"What is the common palce of study for jack McGregor and Philip W. Pillsbury ? | 'jack McGregor'-res:Jack_McGregor | 'W'-res:W | 'Philip Pillsbury'-res:Emma_Pillsbury | 'common palce'-dbo:genre | 'study'-dbp:studio"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jack_McGregor> <http://dbpedia.org/property/studio> ?uri . <http://dbpedia.org/resource/Philip_Pillsbury> <http://dbpedia.org/ontology/genre> ?uri} " "What team did the players start their careers with, who right now play for Fleisher Yarn? | 'Fleisher Yarn'-res:Fleisher_Yarn | 'team'-dbo:team | 'players'-dbo:combatant | 'start'-dbo:head | 'careers with,'-dbo:award | 'play'-dbo:team","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/currentclub> <http://dbpedia.org/resource/Fleisher_Yarn> . ?x <http://dbpedia.org/property/debutteam> ?uri . }" -"Which kind of buildings are found in England? | 'England'-res:England | 'buildings'-dbo:assembly","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/locationCity> <http://dbpedia.org/resource/England> . ?x <http://dbpedia.org/property/type> ?uri . }" -"Give me the count of all people who ascented a peak in California? | 'California'-res:California | 'count'-dbo:country | 'ascented'-dbo:established | 'peak'-dbo:language","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/mountainRange> <http://dbpedia.org/resource/California> . ?x <http://dbpedia.org/property/deathPlace> ?uri . }" +"Which kind of buildings are found in England? | 'England'-res:England | 'buildings'-dbo:assembly","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/locationCity> <http://dbpedia.org/resource/England> . ?x <http://dbpedia.org/property/building> ?uri . }" +"Give me the count of all people who ascented a peak in California? | 'California'-res:California | 'count'-dbo:country | 'ascented'-dbo:established | 'peak'-dbo:language","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/stateOfOrigin> <http://dbpedia.org/resource/California> . ?uri <http://dbpedia.org/property/mountain> ?x . }" "Joe Shuster has created how many comics character ? | 'joe Shuster'-res:Joe_Shuster | 'created'-dbp:creators | 'comics character'-dbo:ComicsCharacter","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/creators> <http://dbpedia.org/resource/Joe_Shuster> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/ComicsCharacter>}" "Which awards did the writer of Persona win ? | 'Persona'-res:Persona_(1966_film) | 'writer'-dbo:writer | 'awards'-dbp:awards","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Persona_(1966_film)> <http://dbpedia.org/ontology/writer> ?x . ?x <http://dbpedia.org/property/awards> ?uri . }" -"What is the highschool of the american football player who joined the Robert Morris Colonials program? | 'Robert Morris Colonials'-res:Robert_Morris_Colonials_football | 'highschool'-dbo:highschool | 'joined'-dbo:thumbnail","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/almaMater> <http://dbpedia.org/resource/Robert_Morris_Colonials_football> . ?x <http://dbpedia.org/property/highschool> ?uri . }" -"How many awards have graduates from the University of Queensland earned? | 'University of Queensland'-res:University_of_Queensland | 'graduates'-dbo:almaMater | 'awards'-dbp:awards","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/training> <http://dbpedia.org/resource/University_of_Queensland> . ?x <http://dbpedia.org/property/awards> ?uri . }" -"In how many nations does Rhaetian Railways own train stations? | 'Rhaetian Railways'-res:Western_Rhaetian_Alps | 'nations'-dbo:state | 'train stations'-dbo:chain","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/owningOrganisation> <http://dbpedia.org/resource/Rhaetian_Railways> . ?x <http://dbpedia.org/ontology/country> ?uri . }" -"Which board game can be said as a mind based game? | 'board game'-dbo:house | 'mind'-dbo:head | 'based'-dbo:relative | 'game'-dbo:event","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/genre> <http://dbpedia.org/resource/BoardGame> . ?uri <http://dbpedia.org/ontology/basedOn> ?x . }" +"What is the highschool of the american football player who joined the Robert Morris Colonials program? | 'Robert Morris Colonials'-res:Robert_Morris_Colonials_football | 'highschool'-dbo:highschool | 'joined'-dbo:thumbnail","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/athletics> <http://dbpedia.org/resource/Robert_Morris_Colonials_football> . ?x <http://dbpedia.org/ontology/highschool> ?uri . }" +"How many awards have graduates from the University of Queensland earned? | 'University of Queensland'-res:University_of_Queensland | 'graduates'-dbo:almaMater | 'awards'-dbp:awards","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/almaMater> <http://dbpedia.org/resource/University_of_Queensland> . ?x <http://dbpedia.org/property/awards> ?uri . }" +"In how many nations does Rhaetian Railways own train stations? | 'Rhaetian Railways'-res:Western_Rhaetian_Alps | 'nations'-dbo:state | 'train stations'-dbo:chain","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/owningCompany> <http://dbpedia.org/resource/Rhaetian_Railways> . ?x <http://dbpedia.org/property/nationality> ?uri . }" +"Which board game can be said as a mind based game? | 'board game'-dbo:house | 'mind'-dbo:head | 'based'-dbo:relative | 'game'-dbo:event","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/genre> <http://dbpedia.org/resource/Mind_based_board_games> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/BoardGame>}" "What are the things built by Eristoff ? | 'Eristoff'-res:Eristoff | 'built by'-dbo:manufacturer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/manufacturer> <http://dbpedia.org/resource/Eristoff> . }" -"Whcih land of Citi Trends is also the constituency of Malik Al-Hassan Yakubu ? | 'Citi Trends'-res:Citi_Trends | 'Malik Al-Hassan Yakubu'-res:Malik_Al-Hassan_Yakubu | 'whcih land'-dbo:country | 'constituency'-dbp:constituency"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Citi_Trends> <http://dbpedia.org/ontology/country> ?uri . <http://dbpedia.org/resource/Malik_Al-Hassan_Yakubu> <http://dbpedia.org/property/constituency> ?uri} " +"Whcih land of Citi Trends is also the constituency of Malik Al-Hassan Yakubu ? | 'Citi Trends'-res:Citi_Trends | 'Malik Al-Hassan Yakubu'-res:Malik_Al-Hassan_Yakubu | 'whcih land'-dbo:country | 'constituency'-dbp:constituency"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Citi_Trends> <http://dbpedia.org/property/constituency> ?uri . <http://dbpedia.org/resource/Malik_Al-Hassan_Yakubu> <http://dbpedia.org/ontology/country> ?uri} " "What is the former team of the american football players whose position is Running back? | 'Running back'-res:Running_back | 'former team'-dbo:formerTeam | 'position'-dbo:position | 'Running'-dbo:government","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/position> <http://dbpedia.org/resource/Running_back> . ?x <http://dbpedia.org/ontology/formerTeam> ?uri . }" -"How many different kinds of games are published by Interplay Entertainment? | 'Interplay Entertainment'-res:Interplay_Entertainment | 'kinds'-dbo:genre | 'games'-dbo:games | 'published'-dbo:publisher","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/publisher> <http://dbpedia.org/resource/Interplay_Entertainment> . ?x <http://dbpedia.org/ontology/genre> ?uri . }" -"What other awards have been given to Goya Award Winners? | 'Goya Award'-res:Goya_Awards | 'awards'-dbo:award | 'awards'-dbp:awards","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/award> <http://dbpedia.org/resource/Goya_Awards> . ?x <http://dbpedia.org/property/awards> ?uri . }" +"How many different kinds of games are published by Interplay Entertainment? | 'Interplay Entertainment'-res:Interplay_Entertainment | 'kinds'-dbo:genre | 'games'-dbo:games | 'published'-dbo:publisher","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/publisher> <http://dbpedia.org/resource/Interplay_Entertainment> . ?x <http://dbpedia.org/property/genre> ?uri . }" +"What other awards have been given to Goya Award Winners? | 'Goya Award'-res:Goya_Awards | 'awards'-dbo:award | 'awards'-dbp:awards"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Goya_Awards> <http://dbpedia.org/property/awards> ?uri } " "Race horses whose grandsire is Wild Risk have taken part in which races? | 'Wild Risk'-res:The_Wild | 'race horses'-dbo:type | 'grandsire'-dbo:grandsire | 'races'-dbo:races","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/grandsire> <http://dbpedia.org/resource/The_Wild> . ?x <http://dbpedia.org/property/race> ?uri . }" -"List the science fiction shows broadcasted on BBC HD ? | 'science fiction'-res:Science_fiction | 'BBC HD'-res:BBC_HD | 'science fiction'-dbo:nonFictionSubject | 'shows'-dbo:place | 'broadcasted'-dbp:broadcaster","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/network> <http://dbpedia.org/resource/BBC_HD> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Science_fictionShow>}" -"Who is the person opposed by Tom McLaury and Ike Clanton? | 'Tom McLaury'-res:Tom_McLaury | 'Ike Clanton'-res:Ike_Clanton | 'person'-dbo:type | 'opposed'-dbo:opponent","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/opponents> <http://dbpedia.org/resource/Tom_McLaury> . ?uri <http://dbpedia.org/ontology/opponent> <http://dbpedia.org/resource/Ike_Clanton> . }" -"What are the bridges whose located in California? | 'California'-res:California | 'located'-dbo:locatedInArea","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/locatedInArea> <http://dbpedia.org/resource/California> . }" +"List the science fiction shows broadcasted on BBC HD ? | 'science fiction'-res:Science_fiction | 'BBC HD'-res:BBC_HD | 'science fiction'-dbo:nonFictionSubject | 'shows'-dbo:place | 'broadcasted'-dbp:broadcaster","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/channel> <http://dbpedia.org/resource/BBC_HD> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Science_fictionShow>}" +"Who is the person opposed by Tom McLaury and Ike Clanton? | 'Tom McLaury'-res:Tom_McLaury | 'Ike Clanton'-res:Ike_Clanton | 'person'-dbo:type | 'opposed'-dbo:opponent","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/opponent> <http://dbpedia.org/resource/Tom_McLaury> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}" +"What are the bridges whose located in California? | 'California'-res:California | 'located'-dbo:locatedInArea","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/locatedInArea> <http://dbpedia.org/resource/California> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Bridge>}" "What is the largest city of the birthplace of Pat Kirkwood? | 'Pat Kirkwood'-res:Pat_Kirkwood_(racing_driver) | 'birthplace'-dbp:birthplace | 'largest city'-dbo:largestCity","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pat_Kirkwood_(racing_driver)> <http://dbpedia.org/property/birthplace> ?x . ?x <http://dbpedia.org/ontology/largestCity> ?uri . }" "Who are some basketball players who played for Phoenix Suns? | 'basketball players'-res:National_Basketball_Players_Association | 'Phoenix Suns'-res:Phoenix_Suns | 'played for'-dbo:team | 'basketball player'-dbo:BasketballPlayer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/team> <http://dbpedia.org/resource/Phoenix_Suns> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/BasketballPlayer>}" -"Who is the licensee of EXXV-TV ? | 'EXXV-TV'-res:EXXV-TV | 'licensee'-dbo:licensee"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/EXXV-TV> <http://dbpedia.org/property/licensee> ?uri } " +"Who is the licensee of EXXV-TV ? | 'EXXV-TV'-res:EXXV-TV | 'licensee'-dbo:licensee"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/EXXV-TV> <http://dbpedia.org/ontology/licensee> ?uri } " "Who are in the board of Jimmy Wales ? | 'Jimmy Wales'-res:Jimmy_Wales | 'board'-dbo:board"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jimmy_Wales> <http://dbpedia.org/ontology/board> ?uri } " -"Where were some people associated with Steve Winwood employed at? | 'Steve Winwood'-res:Steve_Winwood | 'associated'-dbo:associatedBand | 'employed'-dbp:about","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Steve_Winwood> <http://dbpedia.org/ontology/associatedBand> ?x . ?x <http://dbpedia.org/property/name> ?uri . }" -"What is the origin of the musical artist whose associated band is Ziggi Recado ? | 'Ziggi Recado'-res:Ziggi_Recado | 'origin'-dbo:origin | 'musical artist'-dbo:artist | 'associated'-dbo:associatedBand | 'band'-dbo:band","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/associatedBand> <http://dbpedia.org/resource/Ziggi_Recado> . ?x <http://dbpedia.org/ontology/origin> ?uri . }" +"Where were some people associated with Steve Winwood employed at? | 'Steve Winwood'-res:Steve_Winwood | 'associated'-dbo:associatedBand | 'employed'-dbp:about","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/associatedBand> <http://dbpedia.org/resource/Steve_Winwood> . ?uri <http://dbpedia.org/property/employer> ?x . }" +"What is the origin of the musical artist whose associated band is Ziggi Recado ? | 'Ziggi Recado'-res:Ziggi_Recado | 'origin'-dbo:origin | 'musical artist'-dbo:artist | 'associated'-dbo:associatedBand | 'band'-dbo:band","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/associatedBand> <http://dbpedia.org/resource/Ziggi_Recado> . ?x <http://dbpedia.org/property/origin> ?uri . }" "List the major shrines of Jovan Vladimir? | 'Jovan Vladimir'-res:Jovan_Vladimir | 'major shrines'-dbp:majorShrine"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jovan_Vladimir> <http://dbpedia.org/property/majorShrine> ?uri } " -"In which countries have the Start + Flug aircrafts originated? | 'Start + Flug'-res:Start_+_Flug | 'originated'-dbo:engineer","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/engineer> <http://dbpedia.org/resource/Start_+_Flug> . ?x <http://dbpedia.org/property/origin> ?uri . }" -"How many other family of the mammals exists whose family is also Hominidae ? | 'mammals'-res:Mammals_of_the_Indiana_Dunes | 'Hominidae'-res:Hominidae | 'family'-dbo:family | 'exists'-dbo:date | 'family'-dbo:family"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/family> <http://dbpedia.org/resource/Hominidae> . ?x <http://dbpedia.org/property/family> ?uri }" -"What is the former team of the football player who is the coach of 2006 Oakland Raiders season ? | '2006 Oakland Raiders season'-res:2006_Oakland_Raiders_season | 'former team'-dbo:formerTeam | 'football player'-dbo:coach | 'coach'-dbo:coach","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/2006_Oakland_Raiders_season> <http://dbpedia.org/property/coach> ?x . ?x <http://dbpedia.org/ontology/formerTeam> ?uri . }" -"How many other important things has the painter of Sarah Jane Adventures done? | 'Sarah Jane Adventures'-res:The_Sarah_Jane_Adventures_Collection | 'painter'-dbo:painter","SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/The_Sarah_Jane_Adventures_Collection> <http://dbpedia.org/ontology/painter> ?uri . }" +"In which countries have the Start + Flug aircrafts originated? | 'Start + Flug'-res:Start_+_Flug | 'originated'-dbo:engineer"," SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/engineer> <http://dbpedia.org/resource/Start_+_Flug> . ?x <http://dbpedia.org/property/origin> ?uri }" +"How many other family of the mammals exists whose family is also Hominidae ? | 'mammals'-res:Mammals_of_the_Indiana_Dunes | 'Hominidae'-res:Hominidae | 'family'-dbo:family | 'exists'-dbo:date | 'family'-dbo:family","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/family> <http://dbpedia.org/resource/Hominidae> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Mammal>}" +"What is the former team of the football player who is the coach of 2006 Oakland Raiders season ? | '2006 Oakland Raiders season'-res:2006_Oakland_Raiders_season | 'former team'-dbo:formerTeam | 'football player'-dbo:coach | 'coach'-dbo:coach","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/coach> <http://dbpedia.org/resource/2006_Oakland_Raiders_season> . ?x <http://dbpedia.org/ontology/formerTeam> ?uri . }" +"How many other important things has the painter of Sarah Jane Adventures done? | 'Sarah Jane Adventures'-res:The_Sarah_Jane_Adventures_Collection | 'painter'-dbo:painter"," SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/The_Sarah_Jane_Adventures_Collection> <http://dbpedia.org/ontology/painter> ?uri } " "What is the label of I Pray on Christmas ? | 'I Pray on Christmas'-res:I_Pray_on_Christmas | 'label'-dbp:label | 'Pray'-dbo:battle"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/I_Pray_on_Christmas> <http://dbpedia.org/property/label> ?uri } " -"The Other Side has hosted how many guests? | 'The Other Side'-res:The_Other_Side_(The_Outer_Limits) | 'guests'-dbp:guests","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/guests> <http://dbpedia.org/resource/The_Other_Side_(The_Outer_Limits)> . }" +"The Other Side has hosted how many guests? | 'The Other Side'-res:The_Other_Side_(The_Outer_Limits) | 'guests'-dbp:guests","SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/The_Other_Side_(The_Outer_Limits)> <http://dbpedia.org/property/guests> ?uri . }" "What are the airlines whose hub airport is Los Angeles International Airport? | 'Los Angeles International Airport'-res:Los_Angeles_International_Airport | 'hub airport'-dbo:hubAirport | 'airline'-dbo:Airline","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/hubAirport> <http://dbpedia.org/resource/Los_Angeles_International_Airport> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Airline>}" "List all the line of Vadodara Junction railway station? | 'Vadodara Junction railway station'-res:Vadodara_Junction_railway_station | 'line'-dbp:line"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Vadodara_Junction_railway_station> <http://dbpedia.org/property/line> ?uri } " "Name the college of Jon Curran ? | 'Jon Curran'-res:Jon_Curran | 'name'-dbp:name | 'college'-dbo:college"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jon_Curran> <http://dbpedia.org/ontology/college> ?uri } " -"Who produces the tv series which made Scott Haran famous? | 'Scott Haran'-res:Scott_Haran | 'produces'-dbp:producer | 'series'-dbo:series","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Scott_Haran> <http://dbpedia.org/property/producer> ?x . ?x <http://dbpedia.org/ontology/product> ?uri . }" -"What is the place of birth of the jockey who breeded De La Rose ? | 'De La Rose'-res:De_La_Rose | 'place'-dbo:place | 'birth'-dbo:birthPlace | 'jockey'-dbo:jockey | 'breeded'-dbo:breeder","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/De_La_Rose> <http://dbpedia.org/property/breeder> ?x . ?x <http://dbpedia.org/ontology/birthPlace> ?uri . }" +"Who produces the tv series which made Scott Haran famous? | 'Scott Haran'-res:Scott_Haran | 'produces'-dbp:producer | 'series'-dbo:series","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/producer> <http://dbpedia.org/resource/Scott_Haran> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" +"What is the place of birth of the jockey who breeded De La Rose ? | 'De La Rose'-res:De_La_Rose | 'place'-dbo:place | 'birth'-dbo:birthPlace | 'jockey'-dbo:jockey | 'breeded'-dbo:breeder","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/breeder> <http://dbpedia.org/resource/De_La_Rose> . ?x <http://dbpedia.org/ontology/birthPlace> ?uri . }" "Name the Artist of Madagascar: Operation Penguin ? | 'Operation Penguin'-res:Madagascar:_Operation_Penguin | 'Artist'-dbp:artist"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Madagascar:_Operation_Penguin> <http://dbpedia.org/property/artist> ?uri } " -"How many other wine region are there of the grapes whose one of the wine region is Michigan ? | 'Michigan'-res:Michigan | 'wine region'-dbo:wineRegion | 'wine region'-dbo:wineRegion"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/wineRegion> <http://dbpedia.org/resource/Michigan> . ?x wineRegion ?uri }" -"Estimate the number of sports divisions at the universities under international association of universities. | 'universities'-res:Universities_Ireland | 'universities'-res:Universities_Ireland | 'estimate'-dbp:quote | 'sports divisions'-dbo:athletics | 'international association'-dbo:order"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/allegiance> <http://dbpedia.org/resource/Universities_Ireland> . ?x <http://dbpedia.org/property/athletics> ?uri }" -"List the battles in which alumni of US Army Command and General Staff College fought? | 'US'-res:United_States | 'Army Command'-res:Army_Contracting_Command | 'General Staff College'-res:Staff_college | 'battles'-dbo:battle | 'alumni'-dbo:alumni | 'fought'-dbo:type","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/almaMater> <http://dbpedia.org/resource/United_States> . ?uri <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/General_Staff_college> . }" +"How many other wine region are there of the grapes whose one of the wine region is Michigan ? | 'Michigan'-res:Michigan | 'wine region'-dbo:wineRegion | 'wine region'-dbo:wineRegion","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/wineRegion> <http://dbpedia.org/resource/Michigan> . ?wineRegion ?uri }" +"Estimate the number of sports divisions at the universities under international association of universities. | 'universities'-res:Universities_Ireland | 'universities'-res:Universities_Ireland | 'estimate'-dbp:quote | 'sports divisions'-dbo:athletics | 'international association'-dbo:order"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/athletics> <http://dbpedia.org/resource/University_of_Ireland> . ?x <http://dbpedia.org/ontology/sport> ?uri }" +"List the battles in which alumni of US Army Command and General Staff College fought? | 'US'-res:United_States | 'Army Command'-res:Army_Contracting_Command | 'General Staff College'-res:Staff_college | 'battles'-dbo:battle | 'alumni'-dbo:alumni | 'fought'-dbo:type","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/United_States> . ?x <http://dbpedia.org/ontology/battle> ?uri . }" "Name the subsidary of Tandem Computers which was founded by Jim Harris ? | 'Tandem Computers'-res:Tandem_Computers | 'Jim Harris'-res:Jim_Harris | 'name'-dbo:name | 'subsidary'-dbo:subsidiary | 'founded'-dbp:founder"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Tandem_Computers> <http://dbpedia.org/property/founder> ?uri . <http://dbpedia.org/resource/Jim_Harris> <http://dbpedia.org/ontology/subsidiary> ?uri} " -"Count all the books written by an author buried in the Convent of Barefoot Trinitarians? | 'Convent of Barefoot Trinitarians'-res:The_Convent_(film) | 'count'-dbo:type | 'books'-dbo:volume | 'written'-dbo:writer | 'author'-dbo:author | 'buried'-dbo:genre","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/restingPlace> <http://dbpedia.org/resource/The_Convent_(film)> . ?uri <http://dbpedia.org/property/author> ?x . }" -"What are the things whose leader was a monarch of Willem-Alexander of the Netherlands? | 'Willem-Alexander of the Netherlands monarch'-res:Willem-Alexander_of_the_Netherlands | 'monarch'-dbo:monarch | 'leader'-dbo:leader","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/kingdom> <http://dbpedia.org/resource/Willem-Alexander_of_the_Netherlands> . ?uri <http://dbpedia.org/property/leader> ?x . }" -"Which cities are located around the sea into which the ionian flows? | 'Ionian'-res:Ionian_Sea | 'cities'-dbo:country | 'located'-dbo:place | 'sea'-dbo:elevation | 'flows'-dbo:outflow","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/inflow> <http://dbpedia.org/resource/Ionian_Sea> . ?x <http://dbpedia.org/property/cities> ?uri . }" +"Count all the books written by an author buried in the Convent of Barefoot Trinitarians? | 'Convent of Barefoot Trinitarians'-res:The_Convent_(film) | 'count'-dbo:type | 'books'-dbo:volume | 'written'-dbo:writer | 'author'-dbo:author | 'buried'-dbo:genre","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/religion> <http://dbpedia.org/resource/The_Convent_(film)> . ?uri <http://dbpedia.org/property/author> ?x . }" +"What are the things whose leader was a monarch of Willem-Alexander of the Netherlands? | 'Willem-Alexander of the Netherlands monarch'-res:Willem-Alexander_of_the_Netherlands | 'monarch'-dbo:monarch | 'leader'-dbo:leader","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/monarch> <http://dbpedia.org/resource/Willem-Alexander_of_the_Netherlands> . ?uri <http://dbpedia.org/property/leaderName> ?x . }" +"Which cities are located around the sea into which the ionian flows? | 'Ionian'-res:Ionian_Sea | 'cities'-dbo:country | 'located'-dbo:place | 'sea'-dbo:elevation | 'flows'-dbo:outflow","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/outflow> <http://dbpedia.org/resource/Ionian_Sea> . ?x <http://dbpedia.org/ontology/cities> ?uri . }" "Give me a count of mammals which have their order as Primate? | 'mammals'-res:Mammals_of_the_Indiana_Dunes | 'Primate'-res:Primate | 'order'-dbo:order | 'mammal'-dbo:Mammal","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/order> <http://dbpedia.org/resource/Primate> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Mammal>}" -"What are some other children of the father of Marvin Bush? | 'Marvin Bush'-res:Marvin_Bush | 'children'-dbo:child | 'children'-dbp:children","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Marvin_Bush> <http://dbpedia.org/ontology/child> ?x . ?x <http://dbpedia.org/property/children> ?uri . }" +"What are some other children of the father of Marvin Bush? | 'Marvin Bush'-res:Marvin_Bush | 'children'-dbo:child | 'children'-dbp:children","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/child> <http://dbpedia.org/resource/Marvin_Bush> . ?x <http://dbpedia.org/property/children> ?uri . }" "Which is the nearest city to Elliott Bay ? | 'Elliott Bay'-res:Elliott_Bay | 'nearest city'-dbo:nearestCity"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Elliott_Bay> <http://dbpedia.org/ontology/nearestCity> ?uri } " -"Who is the manager of the club whose homeground is the riverside stadium? | 'riverside stadium'-res:Riverside_Stadium | 'manager'-dbo:manager | 'club'-dbo:club | 'riverside stadium'-dbo:stadium","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/ground> <http://dbpedia.org/resource/Riverside_Stadium> . ?x <http://dbpedia.org/property/manager> ?uri . }" +"Who is the manager of the club whose homeground is the riverside stadium? | 'riverside stadium'-res:Riverside_Stadium | 'manager'-dbo:manager | 'club'-dbo:club | 'riverside stadium'-dbo:stadium","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/homeStadium> <http://dbpedia.org/resource/Riverside_Stadium> . ?x <http://dbpedia.org/property/manager> ?uri . }" "What is the rank of Julius C. Burrows politically? | 'C'-res:C | 'Julius Burrows politically'-res:Julius_C._Burrows | 'rank'-dbo:order"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Julius_C._Burrows> <http://dbpedia.org/property/order> ?uri } " -"Count the number of first drivers in all the GPs where Mika Hakkinen was a first driver? | 'Mika Hakkinen'-res:Mika_Häkkinen | 'count'-dbo:number | 'drivers'-dbo:operator | 'driver'-dbp:operator","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/firstDriver> <http://dbpedia.org/resource/Mika_Häkkinen> . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/FormulaOneRacer>}" -"Give me a count of everything under the archipelago, where Papeete is the biggest town. | 'Papeete'-res:Papeete | 'count'-dbo:country | 'archipelago,'-dbo:archipelago | 'biggest town'-dbo:place","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/archipelago> <http://dbpedia.org/resource/Papeete> . ?uri <http://dbpedia.org/property/country> ?x . }" -"Who all have developed a cross platform software? | 'cross platform software'-res:Cross-platform | 'developed'-dbo:developer","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/platform> <http://dbpedia.org/resource/Cross-platform> . ?x <http://dbpedia.org/ontology/developer> ?uri . }" -"Which country's people work in the Birdman enterprises? | 'Birdman enterprises'-res:Birdman_Enterprises | 'country'-dbo:country | 'work'-dbo:title","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/employer> <http://dbpedia.org/resource/Birdman_Enterprises> . ?x <http://dbpedia.org/ontology/country> ?uri . }" -"Where is Oskar Blues located ? | 'Oskar Blues'-res:Oskar_Blues_Brewery | 'located'-dbo:location"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Oskar_Blues_Brewery> <http://dbpedia.org/property/location> ?uri } " -"Who won the Lovelace Medal and the Norbert Wiener Award for Social and Professional Responsibility? | 'Lovelace Medal'-res:Lovelace_Medal | 'Norbert Wiener Award for Social'-res:Norbert_Wiener | 'Professional Responsibility'-res:Professional_responsibility | 'won'-dbo:award","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/award> <http://dbpedia.org/resource/Lovelace_Medal> . ?uri <http://dbpedia.org/property/prizes> <http://dbpedia.org/resource/Norbert_Wiener> . }" +"Count the number of first drivers in all the GPs where Mika Hakkinen was a first driver? | 'Mika Hakkinen'-res:Mika_Häkkinen | 'count'-dbo:number | 'drivers'-dbo:operator | 'driver'-dbp:operator","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/firstDriver> <http://dbpedia.org/resource/Mika_Häkkinen> . ?x <http://dbpedia.org/property/firstDrivers> ?uri . }" +"Give me a count of everything under the archipelago, where Papeete is the biggest town. | 'Papeete'-res:Papeete | 'count'-dbo:country | 'archipelago,'-dbo:archipelago | 'biggest town'-dbo:place","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/archipelago> <http://dbpedia.org/resource/Papeete> . ?uri <http://dbpedia.org/property/largestTown> ?x . }" +"Who all have developed a cross platform software? | 'cross platform software'-res:Cross-platform | 'developed'-dbo:developer","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/computingPlatform> <http://dbpedia.org/resource/Cross-platform> . ?x <http://dbpedia.org/ontology/developer> ?uri . }" +"Which country's people work in the Birdman enterprises? | 'Birdman enterprises'-res:Birdman_Enterprises | 'country'-dbo:country | 'work'-dbo:title","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/employer> <http://dbpedia.org/resource/Birdman_Enterprises> . ?x <http://dbpedia.org/property/country> ?uri . }" +"Where is Oskar Blues located ? | 'Oskar Blues'-res:Oskar_Blues_Brewery | 'located'-dbo:location"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Oskar_Blues_Brewery> <http://dbpedia.org/ontology/location> ?uri } " +"Who won the Lovelace Medal and the Norbert Wiener Award for Social and Professional Responsibility? | 'Lovelace Medal'-res:Lovelace_Medal | 'Norbert Wiener Award for Social'-res:Norbert_Wiener | 'Professional Responsibility'-res:Professional_responsibility | 'won'-dbo:award","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lovelace_Medal> <http://dbpedia.org/property/awards> ?uri . <http://dbpedia.org/resource/Norbert_Wiener> <http://dbpedia.org/ontology/award> ?uri . }" "In which province was Dick Redding born? | 'Dick Redding'-res:Jheri_Redding | 'born'-dbo:birthDate"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dick_Redding> <http://dbpedia.org/ontology/birthPlace> ?uri } " -"Count the number of characters of the play whose one of the character is Catwoman ? | 'Catwoman'-res:Catwoman | 'characters'-dbp:characters | 'characters'-dbp:characters"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/characters> <http://dbpedia.org/resource/Catwoman> . ?x <http://dbpedia.org/ontology/character> ?uri }" +"Count the number of characters of the play whose one of the character is Catwoman ? | 'Catwoman'-res:Catwoman | 'characters'-dbp:characters | 'characters'-dbp:characters"," SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Catwoman> <http://dbpedia.org/property/characters> ?uri } " "What are the movies whose musicians's home town is Volos? | 'musicians'-res:Musicians_Institute | 'home town'-res:Home_Town_(song) | 'Volos'-res:Volos | 'movies'-dbo:film","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/hometown> <http://dbpedia.org/resource/Volos> . ?uri <http://dbpedia.org/property/music> ?x . }" -"Give me a count of the services by the company which provides Data center as the services ? | 'Data center'-res:Data_center | 'count'-dbo:type | 'services'-dbo:service | 'company'-dbo:company | 'services'-dbo:service","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/services> <http://dbpedia.org/resource/Data_center> . ?x <http://dbpedia.org/ontology/service> ?uri . }" -"Scientists at the University of Queensland have won which awards? | 'scientists'-res:Scientists_for_Global_Responsibility | 'University of Queensland'-res:University_of_Queensland | 'won'-dbo:city | 'awards'-dbo:endowment","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/training> <http://dbpedia.org/resource/University_of_Queensland> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}" +"Give me a count of the services by the company which provides Data center as the services ? | 'Data center'-res:Data_center | 'count'-dbo:type | 'services'-dbo:service | 'company'-dbo:company | 'services'-dbo:service"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/service> <http://dbpedia.org/resource/Data_center> . ?x <http://dbpedia.org/property/services> ?uri }" +"Scientists at the University of Queensland have won which awards? | 'scientists'-res:Scientists_for_Global_Responsibility | 'University of Queensland'-res:University_of_Queensland | 'won'-dbo:city | 'awards'-dbo:endowment","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/education> <http://dbpedia.org/resource/University_of_Queensland> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}" "Where is the south shore plaza located? | 'south shore plaza'-res:South_Shore_Plaza | 'located'-dbo:address"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/South_Shore_Plaza> <http://dbpedia.org/ontology/address> ?uri } " -"Waddy wachtel did the music for what movies? | 'Waddy wachtel'-res:Waddy_Wachtel | 'music'-dbp:music | 'movie'-dbo:Film","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Waddy_Wachtel> . ?x <http://dbpedia.org/ontology/Film> ?uri . }" -"Who is the musical artist worked for labels Celluloid Records and Victor Entertainment? | 'labels Celluloid Records'-res:Celluloid_Heroes | 'Victor Entertainment'-res:Victor_Entertainment | 'musical artist'-dbo:associatedMusicalArtist | 'worked'-dbo:operator","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/label> <http://dbpedia.org/resource/Celluloid_Heroes> . ?uri <http://dbpedia.org/property/associatedMusicalArtist> <http://dbpedia.org/resource/Victor_Entertainment> . }" -"Terry Pratchett has written about how many topics? | 'Terry pratchett'-res:Terry_Pratchett | 'topics'-res:Topics_in_Early_Childhood_Special_Education | 'written'-dbo:writer","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/writer> <http://dbpedia.org/resource/Terry_Pratchett> . }" -"Who are the former partners of the figure skaters whose performance have been choreographed by Catarina Lindgren in the past? | 'Catarina Lindgren'-res:Catarina_Lindgren | 'former partners'-dbo:formerName | 'figure skaters'-dbo:flag | 'performance'-dbo:production | 'choreographed'-dbo:choreographer","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/choreographers> <http://dbpedia.org/resource/Catarina_Lindgren> . ?x <http://dbpedia.org/ontology/formerName> ?uri . }" -"who are all the people who have managed the England's under 20 soccer team? | 'the England's under 20 soccer team'-res:England_national_under-20_football_team | 'managed'-dbo:managerClub"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/managerClub> <http://dbpedia.org/resource/England_national_under-20_football_team> } " -"Give me the total number of Guests of the television episodes whose one of the Guests is Michael Cristofer? | 'Guests'-res:Guests_of_the_Nation | 'Guests'-res:Guests_of_the_Nation | 'Michael Cristofer'-res:Michael_Cristofer | 'Guests'-dbp:guests | 'Guests'-dbp:guests"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/guests> <http://dbpedia.org/resource/Michael_Cristofer> . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" -"who was the president under which Joe Purcell is a lieutenant? | 'Joe Purcell'-res:Joe_Purcell | 'president'-dbo:president | 'lieutenant'-dbo:lieutenant"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/lieutenant> <http://dbpedia.org/resource/Joe_Purcell> } " -"What are the veneration of the one for which there's a major shrine in Hebron? | 'Hebron'-res:Hebron | 'veneration'-dbo:time | 'major shrine'-dbo:majorShrine","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/majorShrine> <http://dbpedia.org/resource/Hebron> . ?x <http://dbpedia.org/ontology/veneration> ?uri . }" -"Who is the chancellor of the university which affiliates the Dartington College of Arts? | 'Dartington College of Arts'-res:Dartington_College_of_Arts | 'chancellor'-dbo:chancellor | 'affiliates'-dbo:riverBranch","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/affiliations> <http://dbpedia.org/resource/Dartington_College_of_Arts> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/University>}" -"What is the nationality of Sune Agerschou ? | 'Sune Agerschou'-res:Sune_Agerschou | 'nationality'-dbo:nationality"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Sune_Agerschou> <http://dbpedia.org/property/nationality> ?uri } " -"Namt the fields of Paul Demiville ? | 'Paul Demiville'-res:Paul_Demiéville | 'fields'-dbp:fields"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Paul_Demiéville> <http://dbpedia.org/property/fields> ?uri } " +"Waddy wachtel did the music for what movies? | 'Waddy wachtel'-res:Waddy_Wachtel | 'music'-dbp:music | 'movie'-dbo:Film","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Waddy_Wachtel> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" +"Who is the musical artist worked for labels Celluloid Records and Victor Entertainment? | 'labels Celluloid Records'-res:Celluloid_Heroes | 'Victor Entertainment'-res:Victor_Entertainment | 'musical artist'-dbo:associatedMusicalArtist | 'worked'-dbo:operator","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Celluloid_Heroes> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MusicalArtist>}" +"Terry Pratchett has written about how many topics? | 'Terry pratchett'-res:Terry_Pratchett | 'topics'-res:Topics_in_Early_Childhood_Special_Education | 'written'-dbo:writer","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/writer> <http://dbpedia.org/resource/Terry_Pratchett> . ?x <http://dbpedia.org/property/subject> ?uri . }" +"Who are the former partners of the figure skaters whose performance have been choreographed by Catarina Lindgren in the past? | 'Catarina Lindgren'-res:Catarina_Lindgren | 'former partners'-dbo:formerName | 'figure skaters'-dbo:flag | 'performance'-dbo:production | 'choreographed'-dbo:choreographer","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/choreographer> <http://dbpedia.org/resource/Catarina_Lindgren> . ?x <http://dbpedia.org/ontology/formerPartner> ?uri . }" +"who are all the people who have managed the England's under 20 soccer team? | 'the England's under 20 soccer team'-res:England_national_under-20_football_team | 'managed'-dbo:managerClub","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/managerClub> <http://dbpedia.org/resource/England_national_under-20_football_team> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}" +"Give me the total number of Guests of the television episodes whose one of the Guests is Michael Cristofer? | 'Guests'-res:Guests_of_the_Nation | 'Guests'-res:Guests_of_the_Nation | 'Michael Cristofer'-res:Michael_Cristofer | 'Guests'-dbp:guests | 'Guests'-dbp:guests"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/guests> <http://dbpedia.org/resource/Michael_Cristofer_(entrepreneur)> . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" +"who was the president under which Joe Purcell is a lieutenant? | 'Joe Purcell'-res:Joe_Purcell | 'president'-dbo:president | 'lieutenant'-dbo:lieutenant","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/lieutenant> <http://dbpedia.org/resource/Joe_Purcell> . ?x <http://dbpedia.org/ontology/president> ?uri . }" +"What are the veneration of the one for which there's a major shrine in Hebron? | 'Hebron'-res:Hebron | 'veneration'-dbo:time | 'major shrine'-dbo:majorShrine","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/majorShrine> <http://dbpedia.org/resource/Hebron> . ?x <http://dbpedia.org/ontology/veneratedIn> ?uri . }" +"Who is the chancellor of the university which affiliates the Dartington College of Arts? | 'Dartington College of Arts'-res:Dartington_College_of_Arts | 'chancellor'-dbo:chancellor | 'affiliates'-dbo:riverBranch","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/affiliates> <http://dbpedia.org/resource/Dartington_College_of_Arts> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/University>}" +"What is the nationality of Sune Agerschou ? | 'Sune Agerschou'-res:Sune_Agerschou | 'nationality'-dbo:nationality"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Sune_Agerschou> <http://dbpedia.org/ontology/nationality> ?uri } " +"Namt the fields of Paul Demiville ? | 'Paul Demiville'-res:Paul_Demiéville | 'fields'-dbp:fields"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Paul_Demiééville> <http://dbpedia.org/property/fields> ?uri } " "Who all have been canonized by Pope Paul VI | 'Paul VI'-res:Pope_Paul_VI | 'canonized'-dbo:canonizedBy","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/canonizedBy> <http://dbpedia.org/resource/Pope_Paul_VI> . }" "What is written in a programming language developed by GNOME Project? | 'GNOME Project'-res:The_GNOME_Project | 'written'-dbo:fate | 'programming language'-dbp:programmingLanguage | 'developed'-dbp:developer","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/developer> <http://dbpedia.org/resource/The_GNOME_Project> . ?uri <http://dbpedia.org/property/programmingLanguage> ?x . }" -"Where is the building located whose architect was Francis Palmer Smith? | 'Francis Palmer Smith'-res:Francis_Palmer_Smith | 'building'-dbo:building | 'located'-dbo:garrison | 'architect'-dbo:architect","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/architect> <http://dbpedia.org/resource/Francis_Palmer_Smith> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Building>}" +"Where is the building located whose architect was Francis Palmer Smith? | 'Francis Palmer Smith'-res:Francis_Palmer_Smith | 'building'-dbo:building | 'located'-dbo:garrison | 'architect'-dbo:architect","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/architect> <http://dbpedia.org/resource/Francis_Palmer_Smith> . ?uri <http://dbpedia.org/property/location> ?x . }" "List the school of Bobby Skinstad? | 'Bobby Skinstad'-res:Bobby_Skinstad | 'school'-dbo:school"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bobby_Skinstad> <http://dbpedia.org/ontology/school> ?uri } " -"Count all the universities who participated in the tournament won by Alabama Crimson Tides in 2015 ? | 'universities'-res:Universities_South_Africa | 'Alabama Crimson Tides'-res:Alabama_Crimson_Tide | '2015'-res:2015_Super_Rugby_Final | 'count'-dbo:country | 'participated'-dbo:participant | 'tournament'-dbo:event | 'won'-dbo:city"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/award> <http://dbpedia.org/resource/Alabama_Crimson_Tide> . ?x <http://dbpedia.org/property/race> ?uri }" +"Count all the universities who participated in the tournament won by Alabama Crimson Tides in 2015 ? | 'universities'-res:Universities_South_Africa | 'Alabama Crimson Tides'-res:Alabama_Crimson_Tide | '2015'-res:2015_Super_Rugby_Final | 'count'-dbo:country | 'participated'-dbo:participant | 'tournament'-dbo:event | 'won'-dbo:city","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/name> <http://dbpedia.org/resource/Alabama_Crimson_Tide> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/University>}" "In how many different places have ehtics philosophers died? | ''-res:Ethics | 'places'-dbp:height | 'died'-dbo:flag","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/religion> <http://dbpedia.org/resource/Ethics> . ?x <http://dbpedia.org/ontology/deathPlace> ?uri . }" -"Which house has published books about Jazz? | 'Jazz'-res:Jazz | 'house'-dbo:house | 'published'-dbo:author | 'books'-dbo:title","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/notableWork> <http://dbpedia.org/resource/Jazz> . ?x <http://dbpedia.org/property/publisher> ?uri . }" -"Which person naratted The Incredible Hulk and also the writer of Tales of Suspense ? | 'The Incredible Hulk'-res:The_Trial_of_the_Incredible_Hulk | 'Tales of Suspense'-res:Tales_of_Suspense | 'person'-dbp:type | 'naratted'-dbp:narrated | 'writer'-dbo:writer","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Trial_of_the_Incredible_Hulk> <http://dbpedia.org/property/narrated> ?uri . <http://dbpedia.org/resource/Tales_(of_Suspense> <http://dbpedia.org/ontology/writer> ?uri . }" -"How many movies have been directed by almunies of Parsons School of Design? | 'almunies'-res:Almunia | 'Parsons School of Design'-res:Parsons_School_of_Design | 'movies'-dbo:film | 'directed'-dbo:president","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/almaMater> <http://dbpedia.org/resource/Parsons_School_of_Design> . ?uri <http://dbpedia.org/property/director> ?x . }" -"List the people died in Hyderabad and are a member of political party ? | 'Hyderabad'-res:Hyderabad | 'died in'-dbo:deathPlace | 'political party'-dbo:party","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/deathPlace> <http://dbpedia.org/resource/Hyderabad> . ?uri <http://dbpedia.org/property/party> ?x . }" +"Which house has published books about Jazz? | 'Jazz'-res:Jazz | 'house'-dbo:house | 'published'-dbo:author | 'books'-dbo:title","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/movement> <http://dbpedia.org/resource/Jazz> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book>}" +"Which person naratted The Incredible Hulk and also the writer of Tales of Suspense ? | 'The Incredible Hulk'-res:The_Trial_of_the_Incredible_Hulk | 'Tales of Suspense'-res:Tales_of_Suspense | 'person'-dbp:type | 'naratted'-dbp:narrated | 'writer'-dbo:writer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/narrated> <http://dbpedia.org/resource/The_Incredible_Hulk> . ?uri <http://dbpedia.org/ontology/writer> <http://dbpedia.org/resource/Tales_of_Suspense> . }" +"How many movies have been directed by almunies of Parsons School of Design? | 'almunies'-res:Almunia | 'Parsons School of Design'-res:Parsons_School_of_Design | 'movies'-dbo:film | 'directed'-dbo:president","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/education> <http://dbpedia.org/resource/Parsons_School_of_Design> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" +"List the people died in Hyderabad and are a member of political party ? | 'Hyderabad'-res:Hyderabad | 'died in'-dbo:deathPlace | 'political party'-dbo:party","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/deathPlace> <http://dbpedia.org/resource/Hyderabad> . ?x <http://dbpedia.org/property/party> ?uri . }" "What is the american football league whose champion is from Kansas City, Missouri? | 'american football league'-res:American_Football_League | 'Kansas City, Missouri'-res:Kansas_City,_Missouri | 'champion'-dbp:champion","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/champion> <http://dbpedia.org/resource/Kansas_City,_Missouri> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/AmericanFootballLeague>}" -"Where is the garrison of Western Naval Command ? | 'Western Naval Command'-res:Western_Naval_Command | 'garrison'-dbo:garrison"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Western_Naval_Command> <http://dbpedia.org/ontology/garrison> ?uri } " +"Where is the garrison of Western Naval Command ? | 'Western Naval Command'-res:Western_Naval_Command | 'garrison'-dbo:garrison"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Western_Naval_Command> <http://dbpedia.org/property/garrison> ?uri } " "Which person's successor is Samsu-iluna? | 'Samsu-iluna'-res:Samsu-iluna | 'successor'-dbo:successor | 'person'-dbo:Person","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/successor> <http://dbpedia.org/resource/Samsu-iluna> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}" -"How many sports are played in maharashtran schools? | 'maharashtra'-res:Maharashtra | 'sports'-dbo:athletics | 'played'-dbo:portrayer","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/city> <http://dbpedia.org/resource/Maharashtra> . ?x <http://dbpedia.org/property/sport> ?uri . }" +"How many sports are played in maharashtran schools? | 'maharashtra'-res:Maharashtra | 'sports'-dbo:athletics | 'played'-dbo:portrayer","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/city> <http://dbpedia.org/resource/Maharashtra> . ?x <http://dbpedia.org/property/athletics> ?uri . }" "How many owners owned the clubs participating in the Premier leagues of '14? | 'Premier leagues'-res:2013_National_Premier_Leagues | '14'-res:14 | 'owners'-dbp:owner | 'owned'-dbp:owner | 'clubs'-dbo:college | 'participating'-dbo:interest","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/league> <http://dbpedia.org/resource/2013_National_Premier_Leagues> . ?x <http://dbpedia.org/property/owner> ?uri . }" -"How many people live in the Beverly Hills, California? | 'Beverly Hills, California'-res:Beverly_Hills,_California | 'live'-dbo:residence","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/residence> <http://dbpedia.org/resource/Beverly_Hills,_California> . }" +"How many people live in the Beverly Hills, California? | 'Beverly Hills, California'-res:Beverly_Hills,_California | 'live'-dbo:residence","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/residence> <http://dbpedia.org/resource/Beverly_Hills> . }" "Name some islands in a pacific archipelago? | 'pacific'-res:Pacific_Ocean | 'name'-dbo:name | 'islands'-dbo:numberOfIslands | 'pacific archipelago'-dbo:archipelago","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/archipelago> <http://dbpedia.org/resource/Pacific_Ocean> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Island>}" -"In how many areas do the networks broadcast, which also broadcasts in North Carolina? | 'North Carolina'-res:North_Carolina | 'networks broadcast,'-dbo:state | 'broadcasts'-dbo:state","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/state> <http://dbpedia.org/resource/North_Carolina> . ?x <http://dbpedia.org/property/broadcastArea> ?uri . }" -"What is the total number of regions served by the companies which also serves Australia? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'Australia'-res:Australia | 'total'-dbo:populationTotal | 'regions'-dbp:region | 'served'-dbo:regionServed | 'serves'-dbo:chain"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/regionServed> <http://dbpedia.org/resource/Australia> . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}" -"List the area of radio stations whose sister station is WBCQ-FM? | 'WBCQ-FM'-res:WBCQ-FM | 'area'-dbo:area | 'radio stations'-dbp:sisterStations | 'sister station'-dbo:sisterStation","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/sisterStation> <http://dbpedia.org/resource/WBCQ-FM> . ?x <http://dbpedia.org/property/area> ?uri . }" -"How many companies have manufactured the rockets launched from the Cape Canaveral Air Force Station? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'Cape Canaveral Air Force Station'-res:Cape_Canaveral_Air_Force_Station | 'launched'-dbo:launchSite | 'manufactured'-dbo:manufacturer","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/launchSite> <http://dbpedia.org/resource/Cape_Canaveral_Air_Force_Station> . ?x <http://dbpedia.org/property/manufacturer> ?uri . }" -"What is the sea connected to Kaliningrad and Gdask? | 'Kaliningrad and Gdask'-res:Kaliningrad_Zoo | 'sea'-dbo:seatingCapacity | 'connected'-dbo:related","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/inflow> <http://dbpedia.org/resource/Kaliningrad_Zoo> . ?uri <http://dbpedia.org/property/cities> <http://dbpedia.org/resource/Gdańsk> . }" -"In which country did the planes designed by Ursula Hanle originate? | 'Ursula Hanle'-res:Ursula_Hänle | 'country'-dbo:country | 'planes'-dbo:founder | 'designed'-dbo:architect | 'originate'-dbo:engineer","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/architect> <http://dbpedia.org/resource/Ursula_Hänle> . ?x <http://dbpedia.org/property/origin> ?uri . }" -"what are some units udner the US department of navy? | 'US department of navy'-res:United_States_Department_of_the_Navy | 'units udner'-dbo:commandStructure"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/commandStructure> <http://dbpedia.org/resource/United_States_Department_of_the_Navy> } " +"In how many areas do the networks broadcast, which also broadcasts in North Carolina? | 'North Carolina'-res:North_Carolina | 'networks broadcast,'-dbo:state | 'broadcasts'-dbo:state","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/broadcastingArea> <http://dbpedia.org/resource/North_Carolina> . ?x <http://dbpedia.org/property/broadcastArea> ?uri . }" +"What is the total number of regions served by the companies which also serves Australia? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'Australia'-res:Australia | 'total'-dbo:populationTotal | 'regions'-dbp:region | 'served'-dbo:regionServed | 'serves'-dbo:chain"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/regionServed> <http://dbpedia.org/resource/Australia> . ?x <http://dbpedia.org/property/region> ?uri }" +"List the area of radio stations whose sister station is WBCQ-FM? | 'WBCQ-FM'-res:WBCQ-FM | 'area'-dbo:area | 'radio stations'-dbp:sisterStations | 'sister station'-dbo:sisterStation"," SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/sisterStations> <http://dbpedia.org/resource/WBCQ-FM> . ?x <http://dbpedia.org/ontology/area> ?uri }" +"How many companies have manufactured the rockets launched from the Cape Canaveral Air Force Station? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'Cape Canaveral Air Force Station'-res:Cape_Canaveral_Air_Force_Station | 'launched'-dbo:launchSite | 'manufactured'-dbo:manufacturer","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/launchSite> <http://dbpedia.org/resource/Cape_Canaveral_Air_Force_Station> . ?x <http://dbpedia.org/ontology/manufacturer> ?uri . }" +"What is the sea connected to Kaliningrad and Gdask? | 'Kaliningrad and Gdask'-res:Kaliningrad_Zoo | 'sea'-dbo:seatingCapacity | 'connected'-dbo:related","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/cities> <http://dbpedia.org/resource/Kaliningrad> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Sea>}" +"In which country did the planes designed by Ursula Hanle originate? | 'Ursula Hanle'-res:Ursula_Hänle | 'country'-dbo:country | 'planes'-dbo:founder | 'designed'-dbo:architect | 'originate'-dbo:engineer","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/designer> <http://dbpedia.org/resource/Ursula_Hänle> . ?x <http://dbpedia.org/ontology/origin> ?uri . }" +"what are some units udner the US department of navy? | 'US department of navy'-res:United_States_Department_of_the_Navy | 'units udner'-dbo:commandStructure"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/commandStructure> <http://dbpedia.org/resource/United_States_Department_of_the_Navy> } " "List the children of the parent of Marvin Bush. | 'Marvin Bush'-res:Marvin_Bush | 'children'-dbp:children | 'parent'-dbo:parent","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Marvin_Bush> <http://dbpedia.org/property/children> ?x . ?x <http://dbpedia.org/ontology/parent> ?uri . }" "Where was the Temptation Waits recorded? | 'Temptation Waits'-res:Temptation_Waits | 'recorded'-dbo:recordedIn"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Temptation_Waits> <http://dbpedia.org/ontology/recordedIn> ?uri } " "List the relatives of clay Aiken ? | 'clay Aiken'-res:Clay_Aiken | 'relatives'-dbp:relatives"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Clay_Aiken> <http://dbpedia.org/property/relatives> ?uri } " -"which award has been won by Claudia Moro? | 'Claudia Moro'-res:Claudia_Moro | 'award'-dbo:award | 'won'-dbo:city"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/award> <http://dbpedia.org/resource/Claudia_Moro> } " -"What is the address of Federal Reserve Bank Building? | 'Federal Reserve Bank Building'-res:Federal_Reserve_Bank_Building_(Seattle) | 'address'-dbo:address"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Federal_Reserve_Bank_Building_(Seattle)> <http://dbpedia.org/property/address> ?uri } " -"List the countries through which European rout E39 and E8 passes ? | 'countries'-res:Countries_of_the_United_Kingdom | 'E39'-res:E39 | 'European rout'-res:Europe | 'European rout'-res:Rout | 'E8'-res:E8 | 'passes'-dbp:pages | ''-dbo:country","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/European_Rout> <http://dbpedia.org/property/carries> ?uri . <http://dbpedia.org/resource/E8> <http://dbpedia.org/ontology/country> ?uri . }" -"Who are the writer of the singles whose music genre is Rhythm and blues ? | 'Rhythm and blues'-res:Rhythm_and_blues | 'writer'-dbo:writer | 'singles'-dbo:associate | 'music genre'-dbo:genre | 'blues'-dbo:gross","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/musicGenre> <http://dbpedia.org/resource/Rhythm_and_blues> . ?x <http://dbpedia.org/property/writer> ?uri . }" +"which award has been won by Claudia Moro? | 'Claudia Moro'-res:Claudia_Moro | 'award'-dbo:award | 'won'-dbo:city","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Claudia_Moro> <http://dbpedia.org/ontology/award> ?x . ?x <http://dbpedia.org/property/awards> ?uri . }" +"What is the address of Federal Reserve Bank Building? | 'Federal Reserve Bank Building'-res:Federal_Reserve_Bank_Building_(Seattle) | 'address'-dbo:address"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Federal_Reserve_Bank_Building_(Seattle)> <http://dbpedia.org/ontology/address> ?uri } " +"List the countries through which European rout E39 and E8 passes ? | 'countries'-res:Countries_of_the_United_Kingdom | 'E39'-res:E39 | 'European rout'-res:Europe | 'European rout'-res:Rout | 'E8'-res:E8 | 'passes'-dbp:pages | ''-dbo:country","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/route> <http://dbpedia.org/resource/E39> . ?uri <http://dbpedia.org/property/destinations> <http://dbpedia.org/resource/Europe> . }" +"Who are the writer of the singles whose music genre is Rhythm and blues ? | 'Rhythm and blues'-res:Rhythm_and_blues | 'writer'-dbo:writer | 'singles'-dbo:associate | 'music genre'-dbo:genre | 'blues'-dbo:gross"," SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/genre> <http://dbpedia.org/resource/Rhythm_and_blues> . ?x <http://dbpedia.org/property/writer> ?uri }" "What are the awards won by the film editor of The Search? | 'The Search'-res:The_Search_(2014_film) | 'editor'-dbo:editing | 'awards'-dbp:awards","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Search_(2014_film)> <http://dbpedia.org/ontology/editing> ?x . ?x <http://dbpedia.org/property/awards> ?uri . }" -"Give me some series related to the one which had Yasmin Paige in them. | 'Yasmin Paige'-res:Yasmin_Paige | 'series'-dbo:series | 'related'-dbo:related","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/series> <http://dbpedia.org/resource/Yasmin_Paige> . ?x <http://dbpedia.org/ontology/related> ?uri . }" +"Give me some series related to the one which had Yasmin Paige in them. | 'Yasmin Paige'-res:Yasmin_Paige | 'series'-dbo:series | 'related'-dbo:related","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/series> <http://dbpedia.org/resource/Yasmin_Paige> . ?x <http://dbpedia.org/property/related> ?uri . }" "How many TV shows have executive producer as Steven Moffat ? | 'TV'-res:Tv_test_pattern | 'Steven Moffat'-res:Steven_Moffat | 'executive producer'-dbo:executiveProducer | 'shows'-dbo:TelevisionShow","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/executiveProducer> <http://dbpedia.org/resource/Steven_Moffat> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" -"Who made the engine whose predecessor is the SHO V6? | 'SHO'-res:Sho | 'V6'-res:V6_engine | 'V6'-res:V6_engine | 'SHO'-res:Sho | 'engine'-dbo:engine | 'predecessor'-dbo:predecessor","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/predecessor> <http://dbpedia.org/resource/Sho_V6_engine> . ?x <http://dbpedia.org/property/engine> ?uri . }" -"For how many different teams have Ontarians been drafted ? | 'Ontaria'-res:Ontario | 'teams'-dbo:numberOfTeams | 'drafted'-dbo:draft","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/birthPlace> <http://dbpedia.org/resource/Ontario> . ?x <http://dbpedia.org/ontology/draftTeam> ?uri . }" -"Whose academic advisor works at the St George's Hospital? | 'St George's Hospital'-res:St_George's_Hospital | 'academic advisor'-dbo:abstract | 'works'-dbo:language","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/training> <http://dbpedia.org/resource/St_George's_Hospital> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/AcademicAdvisor>}" -"Count the number of people who graduated from universities affiliated with the NCAA. | 'universities'-res:Universities_South_Africa | 'NCAA'-res:National_Collegiate_Athletic_Association_(Philippines) | 'count'-dbo:country | 'graduated'-dbo:effectiveRadiatedPower | 'affiliated'-dbo:league","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/affiliations> <http://dbpedia.org/resource/National_Collegiate_Athletic_Association_(Philippines)> . }" +"Who made the engine whose predecessor is the SHO V6? | 'SHO'-res:Sho | 'V6'-res:V6_engine | 'V6'-res:V6_engine | 'SHO'-res:Sho | 'engine'-dbo:engine | 'predecessor'-dbo:predecessor","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/predecessor> <http://dbpedia.org/resource/Sho> . ?x <http://dbpedia.org/property/engine> ?uri . }" +"For how many different teams have Ontarians been drafted ? | 'Ontaria'-res:Ontario | 'teams'-dbo:numberOfTeams | 'drafted'-dbo:draft","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/draftTeam> <http://dbpedia.org/resource/Ontario> . ?x <http://dbpedia.org/property/team> ?uri . }" +"Whose academic advisor works at the St George's Hospital? | 'St George's Hospital'-res:St_George's_Hospital | 'academic advisor'-dbo:abstract | 'works'-dbo:language","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/institution> <http://dbpedia.org/resource/St_George's_Hospital> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/AcademicAdvisor>}" +"Count the number of people who graduated from universities affiliated with the NCAA. | 'universities'-res:Universities_South_Africa | 'NCAA'-res:National_Collegiate_Athletic_Association_(Philippines) | 'count'-dbo:country | 'graduated'-dbo:effectiveRadiatedPower | 'affiliated'-dbo:league","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/athletics> <http://dbpedia.org/resource/National_Collegiate_Athletic_Association> . ?uri <http://dbpedia.org/ontology/almaMater> ?x . }" "How many characters were made by Paul Dini? | 'Paul Dini'-res:Paul_Dini | 'made by'-dbp:creators","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/creators> <http://dbpedia.org/resource/Paul_Dini> . }" -"How many molluscas are there whose families are Buccinidae and Buccinoidea? | 'Molluscas'-res:Mollusca | 'Buccinidae and Buccinoidea'-res:Buccinidae | 'families'-dbo:established"," SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/family> <http://dbpedia.org/resource/Buccinidae> } " +"How many molluscas are there whose families are Buccinidae and Buccinoidea? | 'Molluscas'-res:Mollusca | 'Buccinidae and Buccinoidea'-res:Buccinidae | 'families'-dbo:established","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/family> <http://dbpedia.org/resource/Buccinidae> . }" "Where did Aghasalim Childagh die? | 'Aghasalim Childagh'-res:Aghasalim_Childagh | 'die'-dbo:deathDate"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Aghasalim_Childagh> <http://dbpedia.org/ontology/deathPlace> ?uri } " -"Where is the successor of john waldo from? | 'john waldo'-res:John_B._Waldo | 'successor'-dbo:successor","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/John_B._Waldo> <http://dbpedia.org/property/successor> ?uri . }" +"Where is the successor of john waldo from? | 'john waldo'-res:John_B._Waldo | 'successor'-dbo:successor"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/John_B._Waldo> <http://dbpedia.org/ontology/successor> ?uri } " "How many awards have screenwriters won? | 'screenwriters'-res:Screenwriter | 'awards'-dbo:award | 'won'-dbo:award","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/occupation> <http://dbpedia.org/resource/Screenwriter> . ?x <http://dbpedia.org/ontology/award> ?uri . }" -"What are the houses of the Parliament Security Services and Parliament of India ? | 'Parliament Security Services'-res:Parliament_Security_Services | 'Parliament of India'-res:Parliament_of_India | 'houses'-dbp:houses | 'houses'-dbp:houses","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Parliament_Security_Services> <http://dbpedia.org/property/houses> ?uri . <http://dbpedia.org/resource/Prime_Time_Warring_Seat> <http://dbpedia.org/ontology/house> ?uri . }" -"How many owners are there of things located in Alabama? | 'Alabama'-res:Alabama | 'in'-dbo:city | 'owners'-dbo:owner","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/city> <http://dbpedia.org/resource/Alabama> . ?x <http://dbpedia.org/ontology/owner> ?uri . }" -"Where are the shrines of the saints who were beatified by Pope Pius XI? | 'Pope Pius XI'-res:Pope_Pius_XI | 'shrines'-dbo:chain | 'saints'-dbo:saint | 'beatified'-dbp:beatifiedBy","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/beatifiedBy> <http://dbpedia.org/resource/Pope_Pius_XI> . ?x <http://dbpedia.org/ontology/shrine> ?uri . }" +"What are the houses of the Parliament Security Services and Parliament of India ? | 'Parliament Security Services'-res:Parliament_Security_Services | 'Parliament of India'-res:Parliament_of_India | 'houses'-dbp:houses | 'houses'-dbp:houses","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/houses> <http://dbpedia.org/resource/Parliament_Security_Services> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/House>}" +"How many owners are there of things located in Alabama? | 'Alabama'-res:Alabama | 'in'-dbo:city | 'owners'-dbo:owner","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/city> <http://dbpedia.org/resource/Alabama> . ?x <http://dbpedia.org/property/owner> ?uri . }" +"Where are the shrines of the saints who were beatified by Pope Pius XI? | 'Pope Pius XI'-res:Pope_Pius_XI | 'shrines'-dbo:chain | 'saints'-dbo:saint | 'beatified'-dbp:beatifiedBy","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/beatifiedBy> <http://dbpedia.org/resource/Pope_Pius_XI> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Saint>}" "Foxy Brown was associated with which band? | 'Foxy Brown'-res:Foxy_Brown_(rapper) | 'associated'-dbo:associatedBand | 'band'-dbo:band"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/associatedBand> <http://dbpedia.org/resource/Foxy_Brown_(rapper)> } " -"Of how many battles is Chickasaw Campaign of 1736 consisted? | 'Chickasaw Campaign of 1736'-res:Chickasaw_Campaign_of_1736 | 'battles'-dbo:combatant | 'consisted'-dbp:convicted","SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Chickasaw_Campaign_of_1736> <http://dbpedia.org/property/combatant> ?x . ?x <http://dbpedia.org/ontology/battles> ?uri . }" +"Of how many battles is Chickasaw Campaign of 1736 consisted? | 'Chickasaw Campaign of 1736'-res:Chickasaw_Campaign_of_1736 | 'battles'-dbo:combatant | 'consisted'-dbp:convicted","SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Chickasaw_Campaign_of_1736> <http://dbpedia.org/property/commicted> ?x . ?x <http://dbpedia.org/ontology/combatant> ?uri . }" "Of what all has David Ian Salter been an editor of? | 'David Ian Salter'-res:David_Ian_Salter | 'editor'-dbo:editing"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/David_Ian_Salter> <http://dbpedia.org/ontology/editing> ?uri } " "Name the river whose mouth mountain is Essex and river mouth is North Sea? | 'Essex'-res:Essex | 'North Sea'-res:North_Sea | 'name'-dbp:name | 'river'-dbo:river | 'mouth mountain'-dbo:elevation | 'river mouth'-dbo:mouthMountain","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/mouthMountain> <http://dbpedia.org/resource/Essex> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/River>}" "What award has been given to Roy Walker as well as Walt Disney? | 'Roy Walker'-res:Roy_Walker_(production_designer) | 'Walt Disney'-res:Walt_Disney | 'award'-dbo:award","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Roy_Walker_(production_designer)> <http://dbpedia.org/property/awards> ?uri . <http://dbpedia.org/resource/Walt_Disney> <http://dbpedia.org/ontology/award> ?uri . }" -"What is the death place of the Marina Pankova and Viktor Ulyanich? | 'Marina Pankova'-res:Marina_Pankova | 'Viktor Ulyanich'-res:Viktor_Ulyanich | 'death place'-dbo:deathPlace","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Marina_Pankova> <http://dbpedia.org/ontology/formerTeam> ?uri . <http://dbpedia.org/resource/Viktor_Ulyanich> <http://dbpedia.org/property/deathPlace> ?uri . }" +"What is the death place of the Marina Pankova and Viktor Ulyanich? | 'Marina Pankova'-res:Marina_Pankova | 'Viktor Ulyanich'-res:Viktor_Ulyanich | 'death place'-dbo:deathPlace","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Marina_Pankova> <http://dbpedia.org/property/placeOfDeath> ?uri . <http://dbpedia.org/resource/Viktor_Ulyanich> <http://dbpedia.org/ontology/deathPlace> ?uri . }" "What products are made by Tehran based companies? | 'Tehran'-res:Tehran | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'products'-dbp:products | 'based'-dbp:based","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/locationCity> <http://dbpedia.org/resource/Tehran> . ?uri <http://dbpedia.org/property/products> ?x . }" -"Count number of people who follow a religion which has an important office in Gold Base ? | 'Gold Base'-res:Gold_Base | 'count'-dbo:type | 'follow'-dbo:course | 'religion'-dbo:religion | 'office'-dbo:office"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/office> <http://dbpedia.org/resource/Gold_Base> . ?uri <http://dbpedia.org/ontology/religion> ?x }" +"Count number of people who follow a religion which has an important office in Gold Base ? | 'Gold Base'-res:Gold_Base | 'count'-dbo:type | 'follow'-dbo:course | 'religion'-dbo:religion | 'office'-dbo:office","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/keyPeople> <http://dbpedia.org/resource/Gold_Base> . ?x <http://dbpedia.org/ontology/religion> ?uri . }" "How many basketball players studied in the Midland College? | 'basketball players'-res:National_Basketball_Players_Association | 'Midland College'-res:Midland_College | 'College'-dbo:college | 'basketball player'-dbo:BasketballPlayer","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/college> <http://dbpedia.org/resource/Midland_College> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/BasketballPlayer>}" -"Which actors have performed in plays performed in New York? | 'New York'-res:New_York | 'actors'-dbo:award | 'performed'-dbo:artist | 'plays'-dbo:plays | 'performed'-dbo:artist","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/hometown> <http://dbpedia.org/resource/New_York> . ?x <http://dbpedia.org/property/starring> ?uri . }" +"Which actors have performed in plays performed in New York? | 'New York'-res:New_York | 'actors'-dbo:award | 'performed'-dbo:artist | 'plays'-dbo:plays | 'performed'-dbo:artist","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/city> <http://dbpedia.org/resource/New_York> . ?uri <http://dbpedia.org/property/starring> ?x . }" "Who is the editor of Hearth and Home ? | 'Hearth and Home'-res:Hearth_and_Home | 'editor'-dbo:editor"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Hearth_and_Home> <http://dbpedia.org/ontology/editor> ?uri } " -"List the books by the authors buried in the Convent of the Barefoot Trinitarians? | 'Convent of the Barefoot Trinitarians'-res:Convent_of_the_Barefoot_Trinitarians | 'buried'-dbo:restingPlace | 'authors'-dbo:author","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/restingPlace> <http://dbpedia.org/resource/Convent_of_the_Barefoot_Trinitarians> . ?x <http://dbpedia.org/property/author> ?uri . }" -"Which awards did the creator of A Barrel of Laughs, a Vale of Tears won ? | 'A'-res:A | 'Barrel of Laughs,'-res:A_Barrel_of_Laughs,_a_Vale_of_Tears | 'Vale of Tears'-res:Vale_of_tears | 'awards'-dbo:budget | 'creator'-dbp:producer | 'won'-dbo:award","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/A_Barrel_of_Laughs> <http://dbpedia.org/property/producer> ?x . ?x <http://dbpedia.org/ontology/award> ?uri . }" -"Which hockey teams have had people playing as Defenceman? | 'Defenceman'-res:Defenceman | 'hockey'-dbo:jockey | 'teams'-dbo:numberOfTeams | 'playing'-dbo:field","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/position> <http://dbpedia.org/resource/Defenceman> . ?uri <http://dbpedia.org/ontology/team> ?x . }" -"which president was served by Joseph Stiglitz? | 'Joseph Stiglitz'-res:Joseph_Stiglitz | 'president'-dbo:president | 'served'-dbo:regionServed"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/president> <http://dbpedia.org/resource/Joseph_Stiglitz> } " +"List the books by the authors buried in the Convent of the Barefoot Trinitarians? | 'Convent of the Barefoot Trinitarians'-res:Convent_of_the_Barefoot_Trinitarians | 'buried'-dbo:restingPlace | 'authors'-dbo:author","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/restingPlace> <http://dbpedia.org/resource/Convent_of_the_Barefoot_Trinitarians> . ?uri <http://dbpedia.org/property/author> ?x . }" +"Which awards did the creator of A Barrel of Laughs, a Vale of Tears won ? | 'A'-res:A | 'Barrel of Laughs,'-res:A_Barrel_of_Laughs,_a_Vale_of_Tears | 'Vale of Tears'-res:Vale_of_tears | 'awards'-dbo:budget | 'creator'-dbp:producer | 'won'-dbo:award","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/A_Barrel_of_Laughs> <http://dbpedia.org/property/creator> ?x . ?x <http://dbpedia.org/ontology/award> ?uri . }" +"Which hockey teams have had people playing as Defenceman? | 'Defenceman'-res:Defenceman | 'hockey'-dbo:jockey | 'teams'-dbo:numberOfTeams | 'playing'-dbo:field","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/position> <http://dbpedia.org/resource/Defenceman> . ?x <http://dbpedia.org/ontology/team> ?uri . }" +"which president was served by Joseph Stiglitz? | 'Joseph Stiglitz'-res:Joseph_Stiglitz | 'president'-dbo:president | 'served'-dbo:regionServed","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/president> <http://dbpedia.org/resource/Joseph_Stiglitz> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/President>}" "What product is made by Sony and Foxconn togather? | 'Sony'-res:Sony | 'Foxconn togather'-res:Foxconn | 'made by'-dbo:manufacturer | 'made by'-dbo:manufacturer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/manufacturer> <http://dbpedia.org/resource/Sony> . ?uri <http://dbpedia.org/property/products> <http://dbpedia.org/resource/Foxconn> . }" -"Which city has radio stations which are Religious ? | 'Religiou'-res:Religion | 'city'-dbo:city | 'radio stations'-dbo:numberOfStations","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/religion> <http://dbpedia.org/resource/Religion> . ?x <http://dbpedia.org/property/broadcastArea> ?uri . }" -"Whose mam is Bertrada of Laon? | 'Bertrada of Laon'-res:Bertrada_of_Laon | 'mam'-dbp:mother","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/mother> <http://dbpedia.org/resource/Bertrada_of_Laon> . }" -"What location country of AH141 is also the nation of malaysia Junior hockey league ? | 'AH141'-res:AH141 | 'malaysia Junior hockey league'-res:Malaysia_Junior_Hockey_League | 'country'-dbo:county | 'country'-dbo:country"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/AH141> <http://dbpedia.org/property/nationality> ?uri . <http://dbpedia.org/resource/Malaysia_Junior_Hockey_League> <http://dbpedia.org/ontology/country> ?uri} " -"How many artists are signed up with Celluloid Records? | 'Celluloid Records'-res:Celluloid_Records | 'artists'-dbp:artist | 'signed'-dbo:movement","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Celluloid_Records> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Artist>}" -"Henry McDaniel's trained horses have won which awards? | 'Henry McDaniel'-res:Henry_McDaniel_(racehorse_trainer) | 'trained'-dbo:coach | 'horses'-dbo:staff | 'won'-dbo:award | 'awards'-dbo:award","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/trainer> <http://dbpedia.org/resource/Henry_McDaniel_(racehorse_trainer)> . ?x <http://dbpedia.org/property/awards> ?uri . }" -"From how many coutries do companies come, which are headquartered in the Klang Valley? | 'Klang Valley'-res:Klang_Valley | 'headquarter'-dbp:headquarters | 'country'-dbp:country","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Klang_Valley> . ?x <http://dbpedia.org/ontology/country> ?uri . }" -"Who is the builder of the bridge owned by Tabriz ? | 'Tabriz'-res:Tabriz | 'builder'-dbo:builder | 'bridge'-dbo:abstract | 'owned'-dbo:owner","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/owner> <http://dbpedia.org/resource/Tabriz> . ?x <http://dbpedia.org/ontology/builder> ?uri . }" +"Which city has radio stations which are Religious ? | 'Religiou'-res:Religion | 'city'-dbo:city | 'radio stations'-dbo:numberOfStations"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Religion> <http://dbpedia.org/property/programmeFormat> ?uri } " +"Whose mam is Bertrada of Laon? | 'Bertrada of Laon'-res:Bertrada_of_Laon | 'mam'-dbp:mother"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bertrada_of_Laon> <http://dbpedia.org/property/mother> ?uri } " +"What location country of AH141 is also the nation of malaysia Junior hockey league ? | 'AH141'-res:AH141 | 'malaysia Junior hockey league'-res:Malaysia_Junior_Hockey_League | 'country'-dbo:county | 'country'-dbo:country"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/AH141> <http://dbpedia.org/ontology/league> ?uri . <http://dbpedia.org/resource/Malaysia_Junior_Hockey_League> <http://dbpedia.org/property/country> ?uri} " +"How many artists are signed up with Celluloid Records? | 'Celluloid Records'-res:Celluloid_Records | 'artists'-dbp:artist | 'signed'-dbo:movement","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/recordLabel> <http://dbpedia.org/resource/Celluloid_Records> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Artist>}" +"Henry McDaniel's trained horses have won which awards? | 'Henry McDaniel'-res:Henry_McDaniel_(racehorse_trainer) | 'trained'-dbo:coach | 'horses'-dbo:staff | 'won'-dbo:award | 'awards'-dbo:award","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/trainer> <http://dbpedia.org/resource/Henry_McDaniel_(racehorse_trainer)> . ?x <http://dbpedia.org/ontology/award> ?uri . }" +"From how many coutries do companies come, which are headquartered in the Klang Valley? | 'Klang Valley'-res:Klang_Valley | 'headquarter'-dbp:headquarters | 'country'-dbp:country","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Klang_Valley> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}" +"Who is the builder of the bridge owned by Tabriz ? | 'Tabriz'-res:Tabriz | 'builder'-dbo:builder | 'bridge'-dbo:abstract | 'owned'-dbo:owner","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/owner> <http://dbpedia.org/resource/Tabriz> . ?x <http://dbpedia.org/property/builder> ?uri . }" "Who are the golf players whose college is Arizona State Sun Devils? | 'golf players'-res:The_Golf_Players | 'Arizona State Sun Devils'-res:Arizona_State_Sun_Devils | 'college'-dbo:college | 'golf player'-dbo:GolfPlayer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/college> <http://dbpedia.org/resource/Arizona_State_Sun_Devils> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/GolfPlayer>}" -"List everything in which saxophone players have been casted. | 'saxophone players'-res:Saxophone | 'casted'-dbo:class","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/caste> <http://dbpedia.org/resource/Saxophone> . ?x <http://dbpedia.org/property/class> ?uri . }" -"What games are played in Protestant schools? | 'Protestant schools'-res:Doveton_Corrie_Protestant_Schools_Association | 'games'-dbo:games | 'played'-dbo:portrayer","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/stateOfOrigin> <http://dbpedia.org/resource/Protestant_Schools_Association> . ?x <http://dbpedia.org/property/genre> ?uri . }" +"List everything in which saxophone players have been casted. | 'saxophone players'-res:Saxophone | 'casted'-dbo:class","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/keyPeople> <http://dbpedia.org/resource/Saxophone> . ?uri <http://dbpedia.org/ontology/starring> ?x . }" +"What games are played in Protestant schools? | 'Protestant schools'-res:Doveton_Corrie_Protestant_Schools_Association | 'games'-dbo:games | 'played'-dbo:portrayer","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/education> <http://dbpedia.org/resource/Protestant_School> . ?uri <http://dbpedia.org/ontology/computingPlatform> ?x . }" "Which stockholder of yale Repertory Theatre was training center of William Anthony ? | 'William Anthony'-res:William_Anthony_(artist) | 'yale Repertory Theatre'-res:Yale_Repertory_Theatre | 'training'-dbo:training | 'stockholder'-dbp:owner"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/William_Anthony_(artist)> <http://dbpedia.org/ontology/training> ?uri . <http://dbpedia.org/resource/Yale_Repertory_Theatre> <http://dbpedia.org/property/owner> ?uri} " -"Name the common institution of the Erica Frank and Douglass North? | 'Erica Frank'-res:Erica_Frank | 'Douglass North'-res:Douglass_North | 'name'-dbp:name | 'common institution'-dbo:institution","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Erica_Frank> <http://dbpedia.org/ontology/institution> ?uri . <http://dbpedia.org/resource/Douglass_North> <http://dbpedia.org/property/common> institution ?uri . }" -"List the language of Kunsten Museum of moder art Aalborg ? | 'Kunsten Museum of moder art Aalborg'-res:KUNSTEN_Museum_of_Modern_Art_Aalborg | 'language'-dbo:language"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/KUNSTEN_Museum_of_Modern_Art_Aalborg> <http://dbpedia.org/property/language> ?uri } " +"Name the common institution of the Erica Frank and Douglass North? | 'Erica Frank'-res:Erica_Frank | 'Douglass North'-res:Douglass_North | 'name'-dbp:name | 'common institution'-dbo:institution","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Erica_Frank> <http://dbpedia.org/ontology/institution> ?uri . <http://dbpedia.org/resource/Douglass_North> <http://dbpedia.org/property/veneratedIn> ?uri . }" +"List the language of Kunsten Museum of moder art Aalborg ? | 'Kunsten Museum of moder art Aalborg'-res:KUNSTEN_Museum_of_Modern_Art_Aalborg | 'language'-dbo:language"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/KunstEN_Museum_of_Modern_Art_Aalborg> <http://dbpedia.org/property/language> ?uri } " "To which persons is Ron Cyrus a relative? | 'Ron Cyrus'-res:Ron_Cyrus | 'relative'-dbp:relatives | 'person'-dbo:Person","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/relatives> <http://dbpedia.org/resource/Ron_Cyrus> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}" -"How many services are there of the companies whose services is Web hosting service ? | 'Web hosting service'-res:Web_hosting_service | 'services'-dbp:services | 'services'-dbp:services"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/service> <http://dbpedia.org/resource/Web_hosting_service> . ?x <http://dbpedia.org/property/services> ?uri }" -"Who is a successor of Kingship whose parents were Julius Caesar? | 'Kingship'-res:Kingship_and_kingdom_of_God | 'Julius Caesar'-res:Julius_Caesar | 'successor'-dbo:successor | 'parents'-dbo:parent","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/parent> <http://dbpedia.org/resource/Kingship_and_kingdom_of_God> . ?uri <http://dbpedia.org/property/successor> <http://dbpedia.org/resource/Julius_Caesar> . }" -"Who is the predecessor of Voere ? | 'Voere'-res:Voere | 'predecessor'-dbo:predecessor"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Voere> <http://dbpedia.org/property/predecessor> ?uri } " +"How many services are there of the companies whose services is Web hosting service ? | 'Web hosting service'-res:Web_hosting_service | 'services'-dbp:services | 'services'-dbp:services","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/services> <http://dbpedia.org/resource/Web_hosting_service> . ?x <http://dbpedia.org/property/services> ?uri . }" +"Who is a successor of Kingship whose parents were Julius Caesar? | 'Kingship'-res:Kingship_and_kingdom_of_God | 'Julius Caesar'-res:Julius_Caesar | 'successor'-dbo:successor | 'parents'-dbo:parent","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/parent> <http://dbpedia.org/resource/Julius_Caesar> . ?x <http://dbpedia.org/property/successor> ?uri . }" +"Who is the predecessor of Voere ? | 'Voere'-res:Voere | 'predecessor'-dbo:predecessor"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Voere> <http://dbpedia.org/ontology/predecessor> ?uri } " "Which movies did Mark Steven edit? | 'Mark Steven'-res:Mark_Stevens_(film_editor) | 'edit'-dbp:editing | 'movie'-dbo:Film","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/editing> <http://dbpedia.org/resource/Mark_Stevens_(film_editor)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" -"How many more teams have rented the stadium used by Raptors 905? | 'Raptors 905'-res:Raptors_905 | 'teams'-dbp:team | 'rented'-dbo:tenant | 'stadium'-dbo:stadium","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/tenant> <http://dbpedia.org/resource/Raptors_905> . ?x <http://dbpedia.org/property/tenants> ?uri . }" -"Count the wars in which people awarded with the Croix de guerre fought. | 'Croix de guerre'-res:Croix_de_Guerre | 'count'-dbo:country | 'wars'-dbp:battles | 'awarded'-dbo:award | 'fought'-dbo:type","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/battles> <http://dbpedia.org/resource/Croix_de_Guerre> . ?x <http://dbpedia.org/property/combatant> ?uri . }" -"How many have been awarded by the Royal Society? | 'Royal Society'-res:Royal_Society | 'awarded'-dbp:awards","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/awards> <http://dbpedia.org/resource/Royal_Society> . }" +"How many more teams have rented the stadium used by Raptors 905? | 'Raptors 905'-res:Raptors_905 | 'teams'-dbp:team | 'rented'-dbo:tenant | 'stadium'-dbo:stadium","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/tenants> <http://dbpedia.org/resource/Raptors_905> . ?x <http://dbpedia.org/ontology/tenant> ?uri . }" +"Count the wars in which people awarded with the Croix de guerre fought. | 'Croix de guerre'-res:Croix_de_Guerre | 'count'-dbo:country | 'wars'-dbp:battles | 'awarded'-dbo:award | 'fought'-dbo:type","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/Croix_de_Guerre> . ?x <http://dbpedia.org/ontology/territory> ?uri . }" +"How many have been awarded by the Royal Society? | 'Royal Society'-res:Royal_Society | 'awarded'-dbp:awards","SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Royal_Society> <http://dbpedia.org/property/awards> ?uri . }" "who manufactures the SHO V8? | 'sho v8'-res:Ford_SHO_V8_engine | 'manufactures'-dbo:manufacturer"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ford_SHO_V8_engine> <http://dbpedia.org/ontology/manufacturer> ?uri } " -"What are the broadcast areas of Mauritius Broadcasting Corporation? | 'Mauritius Broadcasting Corporation'-res:Mauritius_Broadcasting_Corporation | 'broadcast'-dbo:broadcastArea"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Mauritius_Broadcasting_Corporation> <http://dbpedia.org/ontology/broadcastArea> ?uri } " +"What are the broadcast areas of Mauritius Broadcasting Corporation? | 'Mauritius Broadcasting Corporation'-res:Mauritius_Broadcasting_Corporation | 'broadcast'-dbo:broadcastArea"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Mauritius_Broadcasting_Corporation> <http://dbpedia.org/property/broadcastArea> ?uri } " "What are the movies whose cinematographer is Gregg Toland? | 'cinematographer'-res:Cinematographer | 'Gregg Toland'-res:Gregg_Toland | 'movies'-dbo:film","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/cinematography> <http://dbpedia.org/resource/Gregg_Toland> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" -"In how many different highschools have people schooled in Penn State Nittany Lions football studied? | 'Penn State Nittany Lions football'-res:Penn_State_Nittany_Lions_football | 'highschools'-dbo:highschool | 'schooled'-dbo:university | 'studied'-dbo:course","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/highschool> <http://dbpedia.org/resource/Penn_State_Nittany_Lions_football> . ?x <http://dbpedia.org/property/education> ?uri . }" +"In how many different highschools have people schooled in Penn State Nittany Lions football studied? | 'Penn State Nittany Lions football'-res:Penn_State_Nittany_Lions_football | 'highschools'-dbo:highschool | 'schooled'-dbo:university | 'studied'-dbo:course","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/university> <http://dbpedia.org/resource/Penn_State_Nittany_Lions_football> . ?x <http://dbpedia.org/property/highschool> ?uri . }" "How many different people hold authority over the members of Balanidae family? | 'Balanidae family'-res:Balanidae | 'family'-dbo:family | 'authority'-dbo:binomialAuthority","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/family> <http://dbpedia.org/resource/Balanidae> . ?x <http://dbpedia.org/property/authority> ?uri . }" "Who is the american football player whose highschool is Ringgold High School (Pennsylvania)? | 'american football player'-res:James_Walker_(American_football_player) | 'Ringgold High School (Pennsylvania)'-res:Ringgold_High_School_(Pennsylvania) | 'highschool'-dbo:highschool","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/highschool> <http://dbpedia.org/resource/Ringgold_High_School_(Pennsylvania)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/AmericanFootballPlayer>}" -"Count the total number of conflicts people who were part of conflict in afghanisthan ? | 'Afghanisthan'-res:Afghanistan | 'count'-dbo:country | 'total'-dbo:populationTotal | 'conflicts'-dbo:battle | 'conflict'-dbo:battle"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/battle> <http://dbpedia.org/resource/Afghanistan> . ?x <http://dbpedia.org/property/combatant> ?uri }" +"Count the total number of conflicts people who were part of conflict in afghanisthan ? | 'Afghanisthan'-res:Afghanistan | 'count'-dbo:country | 'total'-dbo:populationTotal | 'conflicts'-dbo:battle | 'conflict'-dbo:battle"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/Afghanisthan> . ?x <http://dbpedia.org/ontology/territory> ?uri }" "Kendall Jenner has how many relatives? | 'Kendall jenner'-res:Kendall_Jenner | 'relatives'-dbp:relatives","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/relatives> <http://dbpedia.org/resource/Kendall_Jenner> . }" -"Where do the CNN employees typically graduate from? | 'CNN'-res:CNN | 'employees'-dbo:employer | 'graduate'-dbo:almaMater","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/employer> <http://dbpedia.org/resource/CNN> . ?x <http://dbpedia.org/property/almaMater> ?uri . }" +"Where do the CNN employees typically graduate from? | 'CNN'-res:CNN | 'employees'-dbo:employer | 'graduate'-dbo:almaMater","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/employer> <http://dbpedia.org/resource/CNN> . ?x <http://dbpedia.org/ontology/almaMater> ?uri . }" "What is the location town of First Church of Christ, Scientist (Pittsburgh) ? | 'First Church of Christ, Scientist (Pittsburgh)'-res:First_Church_of_Christ,_Scientist_(Pittsburgh) | 'location town'-dbo:location"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/First_Church_of_Christ,_Scientist_(Pittsburgh)> <http://dbpedia.org/ontology/location> ?uri } " -"Where is the spouse of Henry Bourchier of Essex buried? | 'Henry Bourchier of Essex'-res:Henry_Bourchier,_1st_Earl_of_Essex | 'spouse'-dbo:spouse | 'buried'-dbo:weight","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Henry_Bourchier,_1st_Earl_of_Essex> <http://dbpedia.org/ontology/spouse> ?x . ?x <http://dbpedia.org/property/burial> ?uri . }" -"What shows are on the networks which are from the United States? | 'United States'-res:United_States | 'shows'-dbo:place | 'networks'-dbo:network","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/United_States> . ?x <http://dbpedia.org/property/network> ?uri . }" -"Name the movies distributed by Cinema International Corporation and edited by Hulian Doyle ? | 'Cinema International Corporation'-res:Cinema_International_Corporation | 'Hulian Doyle'-res:Willie_Doyle | 'name'-dbp:name | 'movies'-dbo:film | 'distributed'-dbo:distributor | 'edited'-dbo:editor","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/distributor> <http://dbpedia.org/resource/Cinema_International_Corporation> . ?uri <http://dbpedia.org/property/editing> <http://dbpedia.org/resource/Hulian_Doyle> . }" -"What is the province of Rouen Business School ? | 'Rouen Business School'-res:Rouen_Business_School | 'province'-dbo:province"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Rouen_Business_School> <http://dbpedia.org/property/province> ?uri } " +"Where is the spouse of Henry Bourchier of Essex buried? | 'Henry Bourchier of Essex'-res:Henry_Bourchier,_1st_Earl_of_Essex | 'spouse'-dbo:spouse | 'buried'-dbo:weight","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Henry_Bourchier> <http://dbpedia.org/ontology/spouse> ?x . ?x <http://dbpedia.org/property/restingplace> ?uri . }" +"What shows are on the networks which are from the United States? | 'United States'-res:United_States | 'shows'-dbo:place | 'networks'-dbo:network","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/country> <http://dbpedia.org/resource/United_States> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" +"Name the movies distributed by Cinema International Corporation and edited by Hulian Doyle ? | 'Cinema International Corporation'-res:Cinema_International_Corporation | 'Hulian Doyle'-res:Willie_Doyle | 'name'-dbp:name | 'movies'-dbo:film | 'distributed'-dbo:distributor | 'edited'-dbo:editor","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/distributor> <http://dbpedia.org/resource/Cinema_International_Corporation> . ?uri <http://dbpedia.org/ontology/editing> <http://dbpedia.org/resource/Hulian_Doyle> . }" +"What is the province of Rouen Business School ? | 'Rouen Business School'-res:Rouen_Business_School | 'province'-dbo:province"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Rouen_Business_School> <http://dbpedia.org/ontology/province> ?uri } " "List some songwriters whose work has been recorded in Miami? | 'Miami'-res:Miami | 'songwriters'-dbo:composer | 'work'-dbo:part | 'recorded'-dbo:recordedIn","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/recordedIn> <http://dbpedia.org/resource/Miami> . ?uri <http://dbpedia.org/property/writer> ?x . }" -"What is the total number of relgions followed by people born in Bangkok? | 'Bangkok'-res:Bangkok | 'total'-dbo:populationTotal | 'relgions'-dbp:religion | 'born'-dbo:birthPlace","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Bangkok> . ?x <http://dbpedia.org/property/religion> ?uri . }" +"What is the total number of relgions followed by people born in Bangkok? | 'Bangkok'-res:Bangkok | 'total'-dbo:populationTotal | 'relgions'-dbp:religion | 'born'-dbo:birthPlace"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Bangkok> . ?x <http://dbpedia.org/property/religion> ?uri }" "Which musical artist collaborated with Tony Allen (musician) and label is Victor Entertainment? | 'Tony Allen (musician)'-res:Tony_Allen_(musician) | 'Victor Entertainment'-res:Victor_Entertainment | 'musical artist'-dbo:artist | 'collaborated'-dbo:team | 'label'-dbp:label","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/associatedMusicalArtist> <http://dbpedia.org/resource/Tony_Allen_(musician)> . ?uri <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Victor_Entertainment> . }" -"Count the number of software which runs on Microsoft Windows and mac OS ? | 'software'-res:Software | 'Microsoft Windows'-res:Microsoft_Windows | 'OS'-res:OS | 'count'-dbo:type | 'runs'-dbo:series | 'mac'-dbo:person"," SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Microsoft_Windows> <http://dbpedia.org/ontology/computingPlatform> ?uri . <http://dbpedia.org/resource/Mac_OS> <http://dbpedia.org/property/license> ?uri} " +"Count the number of software which runs on Microsoft Windows and mac OS ? | 'software'-res:Software | 'Microsoft Windows'-res:Microsoft_Windows | 'OS'-res:OS | 'count'-dbo:type | 'runs'-dbo:series | 'mac'-dbo:person","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/computingPlatform> <http://dbpedia.org/resource/Microsoft_Windows> . ?uri <http://dbpedia.org/property/programmingLanguage> <http://dbpedia.org/resource/OS> . }" "What is the common race of the Martin Molony and race of the Coneygree ? | 'Martin Molony'-res:Martin_Molony | 'Coneygree'-res:Coneygree | 'common race'-dbo:race | 'race'-dbo:race"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Martin_Molony> <http://dbpedia.org/ontology/trainer> ?uri . <http://dbpedia.org/resource/Coneygree> <http://dbpedia.org/property/race> ?uri} " "What sports team's arena is The Palace of Auburn Hills | 'The Palace of Auburn Hills'-res:The_Palace_of_Auburn_Hills | 'arena'-dbp:arena | 'sports team'-dbo:SportsTeam","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/arena> <http://dbpedia.org/resource/The_Palace_of_Auburn_Hills> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SportsTeam>}" -"Name the TV show whose company is Playtone and written by Graham Yost? | 'TV'-res:Tv_test_pattern | 'Playtone'-res:Playtone | 'Graham Yost'-res:Graham_Yost | 'name'-dbp:name | 'show'-dbo:show | 'company'-dbo:company | 'written'-dbo:writer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/company> <http://dbpedia.org/resource/Playtone> . ?uri <http://dbpedia.org/property/writer> <http://dbpedia.org/resource/Graham_Yost> } " -"What is the fictional character which belongs to families of Darth Vader and Padm Amidala? | 'Darth Vader'-res:Darth_Vader | 'Padm Amidala'-res:Padmé_Amidala | 'fictional character'-dbo:description | 'belongs'-dbp:longs | 'families'-dbo:established","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Darth_Vader> <http://dbpedia.org/ontology/family> ?uri . <http://dbpedia.org/resource/Padmé_Amidala> <http://dbpedia.org/property/families> ?uri . }" -"Count the number of other services of the companies which provides the Microsoft Azure as service ? | 'companies'-res:Bluegrass_companies | 'Microsoft Azure'-res:Microsoft_Azure | 'services'-dbp:services | 'services'-dbp:services"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/service> <http://dbpedia.org/resource/Microsoft_Azure> . ?x <http://dbpedia.org/property/services> ?uri }" +"Name the TV show whose company is Playtone and written by Graham Yost? | 'TV'-res:Tv_test_pattern | 'Playtone'-res:Playtone | 'Graham Yost'-res:Graham_Yost | 'name'-dbp:name | 'show'-dbo:show | 'company'-dbo:company | 'written'-dbo:writer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/company> <http://dbpedia.org/resource/Playtone> and written <http://dbpedia.org/resource/Graham_Yost> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" +"What is the fictional character which belongs to families of Darth Vader and Padm Amidala? | 'Darth Vader'-res:Darth_Vader | 'Padm Amidala'-res:Padmé_Amidala | 'fictional character'-dbo:description | 'belongs'-dbp:longs | 'families'-dbo:established","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Darth_Vader> <http://dbpedia.org/property/family> ?uri . <http://dbpedia.org/resource/Padmé_Amidala> <http://dbpedia.org/ontology/series> ?uri . }" +"Count the number of other services of the companies which provides the Microsoft Azure as service ? | 'companies'-res:Bluegrass_companies | 'Microsoft Azure'-res:Microsoft_Azure | 'services'-dbp:services | 'services'-dbp:services"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/services> <http://dbpedia.org/resource/Microsoft_Azure> . ?x <http://dbpedia.org/property/services> ?uri }" "How many first drivers have participated when Scuderia Ferrari was a first team? | 'Scuderia Ferrari'-res:Scuderia_Ferrari | 'first team'-dbp:firstTeam | 'first driver'-dbo:firstDriver","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/firstTeam> <http://dbpedia.org/resource/Scuderia_Ferrari> . ?x <http://dbpedia.org/ontology/firstDriver> ?uri . }" -"What is the award which is presented by Swedish Academy? | 'Swedish Academy'-res:Sweden | 'Swedish Academy'-res:Swedish_Academy | 'presented'-dbp:presenter | 'award'-dbo:Award","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/presenter> <http://dbpedia.org/resource/Swedish_Academy> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Award>}" +"What is the award which is presented by Swedish Academy? | 'Swedish Academy'-res:Sweden | 'Swedish Academy'-res:Swedish_Academy | 'presented'-dbp:presenter | 'award'-dbo:Award","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Swedish_Academy> <http://dbpedia.org/property/presenter> ?x . ?x <http://dbpedia.org/ontology/award> ?uri . }" "Michael Deeley produce how many movies? | 'michael Deeley'-res:Michael_Deeley | 'produce'-dbo:producer | 'movies'-dbo:film","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/producer> <http://dbpedia.org/resource/Michael_Deeley> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" -"Who are in the liang chow club? | 'liang chow club'-res:Liang_Chow"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Liang_Chow> <http://dbpedia.org/property/club> ?uri } " -"In how many countries does the Zurich Affoltern am Albis Zug line go? | 'countries'-res:Countries_of_the_United_Kingdom | 'Zurich Affoltern am Albis Zug'-res:Affoltern_am_Albis","SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Zurich_Affoltern_am_Albis> <http://dbpedia.org/ontology/line> ?uri . }" -"In how many places did Julian Leow Beng Kim study? | 'Julian Leow Beng Kim study'-res:Julian_Leow_Beng_Kim | 'study'-dbp:almaMater","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/almaMater> <http://dbpedia.org/resource/Julian_Leow_Beng_Kim> . }" -"How many movies were directed by the graduate of Burbank High School ? | 'Burbank High School'-res:Burbank_High_School_(Burbank,_California) | 'movies'-dbo:film | 'directed'-dbo:principal | 'graduate'-dbo:numberOfGraduateStudents","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/almaMater> <http://dbpedia.org/resource/Burbank_High_School> . ?uri <http://dbpedia.org/property/director> ?x . }" -"What is the type of Vesak ? | 'Vesak'-res:Vesak | 'type'-dbo:type"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Vesak> <http://dbpedia.org/property/type> ?uri } " +"Who are in the liang chow club? | 'liang chow club'-res:Liang_Chow"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Liang_Chow> <http://dbpedia.org/property/name> ?uri } " +"In how many countries does the Zurich Affoltern am Albis Zug line go? | 'countries'-res:Countries_of_the_United_Kingdom | 'Zurich Affoltern am Albis Zug'-res:Affoltern_am_Albis","SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Zurich_Affoltern_am_Albis> <http://dbpedia.org/property/line> ?x . ?x <http://dbpedia.org/ontology/country> ?uri . }" +"In how many places did Julian Leow Beng Kim study? | 'Julian Leow Beng Kim study'-res:Julian_Leow_Beng_Kim | 'study'-dbp:almaMater","SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Julian_Leow_Beng_Kim> <http://dbpedia.org/property/almaMater> ?uri . }" +"How many movies were directed by the graduate of Burbank High School ? | 'Burbank High School'-res:Burbank_High_School_(Burbank,_California) | 'movies'-dbo:film | 'directed'-dbo:principal | 'graduate'-dbo:numberOfGraduateStudents","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/almaMater> <http://dbpedia.org/resource/Burbank_High_School> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" +"What is the type of Vesak ? | 'Vesak'-res:Vesak | 'type'-dbo:type"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Vesak> <http://dbpedia.org/ontology/type> ?uri } " "Which awards did the parents of Anna Bergman win ? | 'Anna Bergman'-res:Anna_Bergman | 'parent'-dbo:parent | 'awards'-dbp:awards","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Anna_Bergman> <http://dbpedia.org/ontology/parent> ?x . ?x <http://dbpedia.org/property/awards> ?uri . }" -"What are some people who are on the board of companies founded in NY? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'NY'-res:New_York | 'board'-dbo:board | 'founded'-dbo:foundingYear","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/foundationPlace> <http://dbpedia.org/resource/New_York> . ?uri <http://dbpedia.org/property/foundation> ?x . }" -"What are the musicals of the people died in California? | 'California'-res:California | 'musicals'-dbo:musicalArtist | 'died'-dbo:flag","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/placeOfDeath> <http://dbpedia.org/resource/California> . ?x <http://dbpedia.org/ontology/musical>}" +"What are some people who are on the board of companies founded in NY? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'NY'-res:New_York | 'board'-dbo:board | 'founded'-dbo:foundingYear","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/foundationPlace> <http://dbpedia.org/resource/New_York> . ?uri <http://dbpedia.org/property/board> ?x . }" +"What are the musicals of the people died in California? | 'California'-res:California | 'musicals'-dbo:musicalArtist | 'died'-dbo:flag","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/deathPlace> <http://dbpedia.org/resource/California> . ?uri <http://dbpedia.org/property/musical> ?x . }" "Which software uses windows as it's operating system and is written in C++ ? | 'software'-res:Software_Publishing_Corporation | 'C++'-res:C++ | 'windows'-dbo:show | 'operating'-dbo:operatingSystem | 'written'-dbp:writtenIn","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/operatingSystem> <http://dbpedia.org/resource/C++> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Software>}" "What currencies are circulated in the countries where people speak French? | 'French'-res:French_language | 'speak'-dbo:language | ''-dbo:country | ''-dbo:country","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/language> <http://dbpedia.org/resource/French_language> . ?x <http://dbpedia.org/property/currency> ?uri . }" "Give the distinct number of other party of the people which have one of the party as Janata Party ? | 'Janata Party'-res:Janata_Party | 'other party'-dbo:otherParty | 'other party'-dbo:otherParty"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/party> <http://dbpedia.org/resource/Janata_Party> . ?x <http://dbpedia.org/ontology/otherParty> ?uri }" -"Which political party got elected in First Legislative Assembly of Uttar Pradesh ? | 'First Legislative Assembly of Uttar Pradesh'-res:First_Legislative_Assembly_of_Uttar_Pradesh | 'political party'-dbp:party | 'elected'-dbo:president"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/First_Legislative_Assembly_of_Uttar_Pradesh> <http://dbpedia.org/property/party> ?uri } " -"How many organizations own the website to which Jimmy Wales contributes? | 'website'-res:Website | 'Jimmy Wales'-res:Jimmy_Wales | 'organizations'-dbo:company | 'contributes'-dbo:participant","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/subsequentWork> <http://dbpedia.org/resource/Jimmy_Wales> . ?x <http://dbpedia.org/property/owner> ?uri . }" +"Which political party got elected in First Legislative Assembly of Uttar Pradesh ? | 'First Legislative Assembly of Uttar Pradesh'-res:First_Legislative_Assembly_of_Uttar_Pradesh | 'political party'-dbp:party | 'elected'-dbo:president","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/First_Legislative_Assembly_of_Uttar_Pradesh> <http://dbpedia.org/ontology/president> ?x . ?x <http://dbpedia.org/property/party> ?uri . }" +"How many organizations own the website to which Jimmy Wales contributes? | 'website'-res:Website | 'Jimmy Wales'-res:Jimmy_Wales | 'organizations'-dbo:company | 'contributes'-dbo:participant","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/keyPeople> <http://dbpedia.org/resource/Jimmy_Wales> . ?x <http://dbpedia.org/ontology/owner> ?uri . }" "Name the notable commanders of Army Group Oberrhein ? | 'Army Group Oberrhein'-res:Army_Group_Oberrhein_(Germany) | 'name'-dbo:name | 'notable commanders'-dbo:notableCommander"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Army_Group_Oberrhein_(Germany)> <http://dbpedia.org/property/notableCommander> ?uri } " "Name the place of Qaqun ? | 'Qaqun'-res:Qaqun | 'name'-dbo:name | 'place'-dbo:place"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Qaqun> <http://dbpedia.org/ontology/place> ?uri } " -"What are the awards won by the film editor of World of Tomorrow ? | 'World of Tomorrow'-res:World_of_Tomorrow_(film) | 'editor'-dbo:editing | 'awards'-dbo:award","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/World_of_Tomorrow_(film)> <http://dbpedia.org/property/editing> ?x . ?x <http://dbpedia.org/ontology/award> ?uri . }" -"Which mountains are contained in Inyo National Forest? | 'Inyo National Forest'-res:Inyo_National_Forest | 'Nation'-dbo:locatedInArea | 'mountain'-dbo:Mountain"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/locatedInArea> <http://dbpedia.org/resource/Inyo_National_Forest> } " -"Whose children are married to Fredric Joliot-Curie? | 'Fredric Joliot-Curie'-res:Frédéric_Joliot-Curie | 'children'-dbp:children | 'married'-dbo:spouse","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/spouse> <http://dbpedia.org/resource/Frédéric_Joliot-Curie> . }" -"What is the architecture of First National Bank and Trust Building (Lima, Ohio) ? | 'First National Bank'-res:First_National_Bank | 'Trust Building (Lima, Ohio)'-res:First_National_Bank_and_Trust_Building_(Lima,_Ohio) | 'architecture'-dbo:architecturalStyle"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/First_National_Bank_and_Trust_Building_(Lima,_Ohio)> <http://dbpedia.org/ontology/architecturalStyle> ?uri } " +"What are the awards won by the film editor of World of Tomorrow ? | 'World of Tomorrow'-res:World_of_Tomorrow_(film) | 'editor'-dbo:editing | 'awards'-dbo:award","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/World_of_Tomorrow_(film)> <http://dbpedia.org/ontology/editing> ?x . ?x <http://dbpedia.org/property/awards> ?uri . }" +"Which mountains are contained in Inyo National Forest? | 'Inyo National Forest'-res:Inyo_National_Forest | 'Nation'-dbo:locatedInArea | 'mountain'-dbo:Mountain","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/locatedInArea> <http://dbpedia.org/resource/Inyo_National_Forest> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Mountain>}" +"Whose children are married to Fredric Joliot-Curie? | 'Fredric Joliot-Curie'-res:Frédéric_Joliot-Curie | 'children'-dbp:children | 'married'-dbo:spouse","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/spouse> <http://dbpedia.org/resource/Frédéric_Joliot-Curie> . ?x <http://dbpedia.org/property/children> ?uri . }" +"What is the architecture of First National Bank and Trust Building (Lima, Ohio) ? | 'First National Bank'-res:First_National_Bank | 'Trust Building (Lima, Ohio)'-res:First_National_Bank_and_Trust_Building_(Lima,_Ohio) | 'architecture'-dbo:architecturalStyle"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/First_National_Bank_and_Trust_Building_(Lima,_Ohio)> <http://dbpedia.org/property/architecturalStyle> ?uri } " "Count all the awards which were presented by something located in California. | 'California'-res:California | 'count'-dbo:country | 'awards'-dbo:award | 'located'-dbo:gross","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/California> . ?x <http://dbpedia.org/property/awards> ?uri . }" -"Who all held a position when Gough Whitlam was the prime minister? | 'Gough Whitlam'-res:Gough_Whitlam | 'held'-dbo:office | 'position'-dbo:position | 'prime minister'-dbo:primeMinister"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/primeminister> <http://dbpedia.org/resource/Gough_Whitlam> } " -"In which part of the world will I find Kim Sawchuk and Vuelta Mexico Telmex? | 'I'-res:I | 'find Kim Sawchuk'-res:Kim_Sawchuk | 'Vuelta Mexico Telmex'-res:Vuelta_Mexico_Telmex","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kim_Sawchuk> <http://dbpedia.org/ontology/formerTeam> ?uri . <http://dbpedia.org/resource/Vuelta_Mexico_Telmex> <http://dbpedia.org/property/region> ?uri . }" +"Who all held a position when Gough Whitlam was the prime minister? | 'Gough Whitlam'-res:Gough_Whitlam | 'held'-dbo:office | 'position'-dbo:position | 'prime minister'-dbo:primeMinister","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/primeMinister> <http://dbpedia.org/resource/Gough_Whitlam> . ?x <http://dbpedia.org/property/position> ?uri . }" +"In which part of the world will I find Kim Sawchuk and Vuelta Mexico Telmex? | 'I'-res:I | 'find Kim Sawchuk'-res:Kim_Sawchuk | 'Vuelta Mexico Telmex'-res:Vuelta_Mexico_Telmex","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kim_Sawchuk> <http://dbpedia.org/ontology/locationCity> ?uri . <http://dbpedia.org/resource/Vuelta_Mexico_Telmex> <http://dbpedia.org/property/locationCountry> ?uri . }" "Stockholm is the HQ of how many things? | 'stockholm'-res:Stockholm | 'HQ'-res:HQ | 'HQ'-dbp:headquarters","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Stockholm> . }" -"What is a salthill? | 'Salthill'-res:Salthill"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/gender> <http://dbpedia.org/resource/Salthill> } " +"What is a salthill? | 'Salthill'-res:Salthill"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Salthill> <http://dbpedia.org/property/locationCity> ?uri } " "In how many regions is the Baco Noir made? | 'Baco Noir'-res:Baco_noir | 'regions'-dbo:wineRegion","SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Baco_noir> <http://dbpedia.org/ontology/wineRegion> ?uri . }" -"Where does the Jerusalem Institute of Justice render their services? | 'Jerusalem Institute of Justice'-res:Jerusalem_Institute_of_Justice | 'render'-dbo:picture | 'services'-dbo:service","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/service> <http://dbpedia.org/resource/Jerusalem_Institute_of_Justice> . ?x <http://dbpedia.org/property/services> ?uri . }" -"Who created the stadiums who have been rented by the Boston Red Sox? | 'Boston Red Sox'-res:Boston_Red_Sox | 'created'-dbo:author | 'stadiums'-dbo:stadium | 'rented'-dbo:tenant","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/tenant> <http://dbpedia.org/resource/Boston_Red_Sox> . ?x <http://dbpedia.org/property/author> ?uri . }" +"Where does the Jerusalem Institute of Justice render their services? | 'Jerusalem Institute of Justice'-res:Jerusalem_Institute_of_Justice | 'render'-dbo:picture | 'services'-dbo:service"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jerusalem_Institute_of_Justice> <http://dbpedia.org/property/services> ?uri } " +"Who created the stadiums who have been rented by the Boston Red Sox? | 'Boston Red Sox'-res:Boston_Red_Sox | 'created'-dbo:author | 'stadiums'-dbo:stadium | 'rented'-dbo:tenant","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/tenant> <http://dbpedia.org/resource/Boston_Red_Sox> . ?x <http://dbpedia.org/property/stadium> ?uri . }" "List down the commanders of Battle of Fort stephenson ? | 'Battle of Fort stephenson'-res:Battle_of_Fort_Stephenson | 'commanders'-dbo:commander"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Battle_of_Fort_Stephenson> <http://dbpedia.org/ontology/commander> ?uri } " "What is the subject of The Prodigal son ? | 'The Prodigal son'-res:The_Prodigal_Son_(play) | 'subject'-dbp:subject"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Prodigal_Son_(play)> <http://dbpedia.org/property/subject> ?uri } " -"ARM Architecture acts as a game platform for how many things? | 'aRM Architecture'-res:ARM_architecture | 'acts'-dbo:material | 'game platform'-dbo:computingPlatform","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/computingPlatform> <http://dbpedia.org/resource/ARM_architecture> . }" -"How many people have voiced characters sculpted by Clamp? | 'Clamp'-res:Clamp_(manga_artists) | 'voiced'-dbo:voice","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/creators> <http://dbpedia.org/resource/Clamp_(manga_artists)> . ?uri <http://dbpedia.org/ontology/voice> ?x . }" -"In how many different people are alumini of the University of Oxford working? | 'alumini'-res:NK_Aluminij | 'University of Oxford'-res:University_of_Oxford | 'working'-dbo:training","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/training> <http://dbpedia.org/resource/University_of_Oxford> . ?x <http://dbpedia.org/ontology/almaMater> ?uri . }" +"ARM Architecture acts as a game platform for how many things? | 'aRM Architecture'-res:ARM_architecture | 'acts'-dbo:material | 'game platform'-dbo:computingPlatform","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/publisher> <http://dbpedia.org/resource/ARM_architecture> . ?x <http://dbpedia.org/property/computingPlatform> ?uri . }" +"How many people have voiced characters sculpted by Clamp? | 'Clamp'-res:Clamp_(manga_artists) | 'voiced'-dbo:voice","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/voice> <http://dbpedia.org/resource/Clamp_(manga_artists)> . ?x <http://dbpedia.org/property/voice> ?uri . }" +"In how many different people are alumini of the University of Oxford working? | 'alumini'-res:NK_Aluminij | 'University of Oxford'-res:University_of_Oxford | 'working'-dbo:training","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/training> <http://dbpedia.org/resource/University_of_Oxford> . ?x <http://dbpedia.org/ontology/training> ?uri . }" "Who is the developer of Montecito Inn ? | 'Montecito Inn'-res:Montecito_Inn | 'developer'-dbo:developer"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Montecito_Inn> <http://dbpedia.org/ontology/developer> ?uri } " "What are the movies whose cast members are signed up with Point Blank Records? | 'Point Blank Records'-res:Point_Blank_Records | 'movies'-dbo:film | 'cast members'-dbo:genre | 'signed'-dbo:movement","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/recordLabel> <http://dbpedia.org/resource/Point_Blank_Records> . ?uri <http://dbpedia.org/property/starring> ?x . }" -"What do craig Van tilbury and karen Grigorian do for a living? | 'Van tilbury'-res:Craig_Van_Tilbury | 'Karen grigorian'-res:Karen_Grigorian | 'craig'-dbo:prominence | 'living'-dbo:occupation","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Craig_Van_Tilbury> <http://dbpedia.org/ontology/profession> ?uri . <http://dbpedia.org/resource/Karen_Grigorian> <http://dbpedia.org/property/occupation> ?uri . }" +"What do craig Van tilbury and karen Grigorian do for a living? | 'Van tilbury'-res:Craig_Van_Tilbury | 'Karen grigorian'-res:Karen_Grigorian | 'craig'-dbo:prominence | 'living'-dbo:occupation","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/occupation> <http://dbpedia.org/resource/Craig_Van_Tilbury> . ?uri <http://dbpedia.org/property/residence> <http://dbpedia.org/resource/Karen_Grigorian> . }" "Name the televesion show which has artist named Christopher Franke ? | 'name televesion show'-res:The_Show_with_No_Name | 'Christopher Franke'-res:Christopher_Franke | 'artist'-dbo:artist","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/artist> <http://dbpedia.org/resource/Christopher_Franke> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" "name the races where bobby beasley took part ? | 'bobby beasley'-res:Bobby_Beasley | 'races'-dbo:race"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bobby_Beasley> <http://dbpedia.org/ontology/race> ?uri } " "List all that flows into the north sea? | 'north sea'-res:North_Sea | 'flows'-dbp:inflow"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/North_Sea> <http://dbpedia.org/property/inflow> ?uri } " -"How many head of agencies were there in Nazi Germany? | 'agencies'-res:Agencies_of_the_European_Union | 'Nazi Germany'-res:Nazi_Germany | 'head'-dbo:head","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/head> <http://dbpedia.org/resource/Nazi_Germany> . }" -"What are the teams for which Wilfred McDonald played for? | 'Wilfred McDonald'-res:Wilfred_McDonald | 'played for'-dbp:playedFor","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Wilfred_McDonald> <http://dbpedia.org/property/playedFor> ?uri . }" -"Count all those whose youthclub performed at the 14-15 La Liga? | '14-15 La Liga'-res:2013–14_La_Liga | 'count'-dbo:country | 'performed'-dbo:artist","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/league> <http://dbpedia.org/resource/2013–14_La_Liga> . ?x <http://dbpedia.org/property/youthclubs> ?uri . }" +"How many head of agencies were there in Nazi Germany? | 'agencies'-res:Agencies_of_the_European_Union | 'Nazi Germany'-res:Nazi_Germany | 'head'-dbo:head","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/type> <http://dbpedia.org/resource/Nazi_Germany> . ?x <http://dbpedia.org/ontology/head> ?uri . }" +"What are the teams for which Wilfred McDonald played for? | 'Wilfred McDonald'-res:Wilfred_McDonald | 'played for'-dbp:playedFor"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Wilfred_McDonald> <http://dbpedia.org/property/playedFor> ?uri } " +"Count all those whose youthclub performed at the 14-15 La Liga? | '14-15 La Liga'-res:2013–14_La_Liga | 'count'-dbo:country | 'performed'-dbo:artist","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/league> <http://dbpedia.org/resource/2013–14_La_Liga> . ?uri <http://dbpedia.org/property/youthclubs> ?x . }" "How many cities are around the sea which flows into the Atlantic? | 'Atlantic'-res:Atlantic_Ocean | 'cities'-dbo:country | 'sea'-dbp:shore | 'flows'-dbo:outflow","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/inflow> <http://dbpedia.org/resource/Atlantic_Ocean> . ?x <http://dbpedia.org/property/cities> ?uri . }" "Who all are starring in the movies where director of photography is John Derek ? | 'John Derek'-res:John_Derek | 'starring'-dbo:starring | 'movies'-dbo:film | 'director'-dbo:director | 'photography'-dbo:picture","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/cinematography> <http://dbpedia.org/resource/John_Derek> . ?x <http://dbpedia.org/ontology/starring> ?uri . }" "Who does Cam PLante plays for ? | 'Cam PLante'-res:Cam_Plante | 'plays for'-dbp:playedFor"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cam_Plante> <http://dbpedia.org/property/playedFor> ?uri } " "How many awards have been given to the ones who died of lung cancer? | 'lung cancer'-res:Lung_cancer | 'awards'-dbo:award | 'died'-dbo:board","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/deathCause> <http://dbpedia.org/resource/Lung_cancer> . ?x <http://dbpedia.org/property/awards> ?uri . }" "Where the children of Ashot Grashi employed at? | 'Ashot Grashi'-res:Ashot_Barseghyan | 'children'-dbo:parent | 'employed'-dbo:occupation","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ashot_Barseghyan> <http://dbpedia.org/ontology/parent> ?x . ?x <http://dbpedia.org/property/occupation> ?uri . }" -"What is the alma mater of K. Terry Dornbush ? | 'K'-res:K | 'Terry Dornbush'-res:K._Terry_Dornbush | 'alma mater'-dbo:almaMater"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/K._Terry_Dornbush> <http://dbpedia.org/property/almaMater> ?uri } " -"What is the birthplace of the office holder who is the predecessor of Brian Peddle ? | 'Brian Peddle'-res:Brian_Peddle | 'birthplace'-dbo:birthPlace | 'office holder'-dbo:service | 'predecessor'-dbo:predecessor","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Brian_Peddle> <http://dbpedia.org/property/predecessor> ?x . ?x <http://dbpedia.org/ontology/birthPlace> ?uri . }" +"What is the alma mater of K. Terry Dornbush ? | 'K'-res:K | 'Terry Dornbush'-res:K._Terry_Dornbush | 'alma mater'-dbo:almaMater"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/K._Terry_Dornbush> <http://dbpedia.org/ontology/almaMater> ?uri } " +"What is the birthplace of the office holder who is the predecessor of Brian Peddle ? | 'Brian Peddle'-res:Brian_Peddle | 'birthplace'-dbo:birthPlace | 'office holder'-dbo:service | 'predecessor'-dbo:predecessor","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/predecessor> <http://dbpedia.org/resource/Brian_Peddle> . ?x <http://dbpedia.org/ontology/birthPlace> ?uri . }" "How many people are known for Dragons' Den? | 'Dragons' Den'-res:Dragons'_Den_(UK_TV_series) | 'known for'-dbo:knownFor","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/knownFor> <http://dbpedia.org/resource/Dragons'_Den_(UK_TV_series)> . }" -"How many different writers have written for Jump Square? | 'Jump Square'-res:Jump_Square | 'writers'-dbo:writer | 'written'-dbo:writer","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/publisher> <http://dbpedia.org/resource/Jump_Square> . ?x <http://dbpedia.org/ontology/writer> ?uri . }" +"How many different writers have written for Jump Square? | 'Jump Square'-res:Jump_Square | 'writers'-dbo:writer | 'written'-dbo:writer","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/writer> <http://dbpedia.org/resource/Jump_Square> . ?x <http://dbpedia.org/property/writer> ?uri . }" "Name the members of European Go Federation? | 'European Go Federation'-res:Europe | 'European Go Federation'-res:European_Go_Federation | 'name'-dbp:name | 'members'-dbo:membership | ''-dbo:country"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/European_Go_Federation> <http://dbpedia.org/property/membership> ?uri } " -" Count the participants of the NBA. | 'NBA'-res:National_Basketball_Association | 'Count'-dbo:type | 'participants'-dbo:participant","SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/National_Basketball_Association> <http://dbpedia.org/property/team> ?x . ?x <http://dbpedia.org/ontology/participant> ?uri . }" -"Who has stock in the railway lines managed by Norfolk Southern Railway? | 'Norfolk Southern Railway'-res:Norfolk_Southern_Railway | 'stock'-dbo:languageFamily | 'railway lines'-dbo:servingRailwayLine | 'managed'-dbo:leader","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/operator> <http://dbpedia.org/resource/Norfolk_Southern_Railway> . ?x <http://dbpedia.org/property/owner> ?uri . }" -"Enumerate the cars related to the ones assembled in Toluca? | 'Toluca'-res:Toluca | 'enumerate'-dbp:quote | 'cars'-dbo:management | 'related'-dbo:related | 'assembled'-dbp:assembly","SELECT DISTINCT COUNT( ?uri) WHERE { ?xdbp:assembly <http://dbpedia.org/resource/Toluca> . ?x <http://dbpedia.org/property/related> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Automobile>}" +" Count the participants of the NBA. | 'NBA'-res:National_Basketball_Association | 'Count'-dbo:type | 'participants'-dbo:participant","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/team> <http://dbpedia.org/resource/National_Basketball_Association> . ?x <http://dbpedia.org/ontology/team> ?uri . }" +"Who has stock in the railway lines managed by Norfolk Southern Railway? | 'Norfolk Southern Railway'-res:Norfolk_Southern_Railway | 'stock'-dbo:languageFamily | 'railway lines'-dbo:servingRailwayLine | 'managed'-dbo:leader","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/operator> <http://dbpedia.org/resource/Norfolk_Southern_Railway> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/RailwayLine>}" +"Enumerate the cars related to the ones assembled in Toluca? | 'Toluca'-res:Toluca | 'enumerate'-dbp:quote | 'cars'-dbo:management | 'related'-dbo:related | 'assembled'-dbp:assembly","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/assembly> <http://dbpedia.org/resource/Toluca> . ?x <http://dbpedia.org/ontology/related> ?uri . }" "Count the number of other product of the banks whose one of the product is Wealth management ? | 'Wealth management'-res:Wealth_management | 'count'-dbo:type | 'product'-dbo:product | 'banks'-dbo:series | 'product'-dbo:product"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/product> <http://dbpedia.org/resource/Wealth_management> . ?x <http://dbpedia.org/property/product> ?uri }" "What are all the TV shows which are related to the ones produced by Julie Gardner? | 'TV'-res:Lockheed_T-33 | 'Julie Gardner'-res:Julie_Gardner | 'shows'-dbo:place | 'related'-dbo:related | 'produced'-dbo:manufacturer","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/producer> <http://dbpedia.org/resource/Julie_Gardner> . ?uri <http://dbpedia.org/property/related> ?x . }" "How many movies have been cinematographed by Jordan Cronenweth? | 'Jordan Cronenweth'-res:Jordan_Cronenweth | 'movies'-dbo:film | 'cinematographed'-dbo:cinematography","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/cinematography> <http://dbpedia.org/resource/Jordan_Cronenweth> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" "What tv show is created by Brian Graden? | 'Brian Graden'-res:Brian_Graden | 'created'-dbo:developer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/creator> <http://dbpedia.org/resource/Brian_Graden> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" -"Count the total religions followed by the ones living in England. | 'England'-res:England | 'count'-dbo:country | 'total religions'-dbp:result | 'living'-dbo:occupation","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/country> <http://dbpedia.org/resource/England> . ?x <http://dbpedia.org/ontology/religion> ?uri . }" -"Who wrote the play in which a character called Stella Kowalski exists? | 'Stella Kowalski exists'-res:Stella | 'wrote'-dbo:author | 'play'-dbo:starring | 'character'-dbo:status | 'called'-dbo:alias","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/characters> <http://dbpedia.org/resource/Stella_Kowalski> . ?x <http://dbpedia.org/ontology/author> ?uri . }" +"Count the total religions followed by the ones living in England. | 'England'-res:England | 'count'-dbo:country | 'total religions'-dbp:result | 'living'-dbo:occupation","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/birthPlace> <http://dbpedia.org/resource/England> . ?x <http://dbpedia.org/ontology/religion> ?uri . }" +"Who wrote the play in which a character called Stella Kowalski exists? | 'Stella Kowalski exists'-res:Stella | 'wrote'-dbo:author | 'play'-dbo:starring | 'character'-dbo:status | 'called'-dbo:alias","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/characters> <http://dbpedia.org/resource/Stella_Kowalski> . ?x <http://dbpedia.org/property/writer> ?uri . }" "What is the region of Kim Sawchuk ? | 'Kim Sawchuk'-res:Kim_Sawchuk | 'region'-dbo:region"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kim_Sawchuk> <http://dbpedia.org/ontology/region> ?uri } " -"What are the important buildings of the architect whose one of the significant building is Krasnye Vorota? | 'Krasnye Vorota'-res:Krasnye_Vorota_(Moscow_Metro) | 'buildings'-dbo:production | 'architect'-dbo:architect | 'building'-dbo:building","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/architect> <http://dbpedia.org/resource/Krasnye_Vorota_(Moscow_Metro)> . ?x <http://dbpedia.org/ontology/notableBuilding> ?uri . }" -"Name the common institute of Robert hall and Erica Frank ? | 'Robert hall'-res:Robert_Newton_Hall | 'Erica Frank'-res:Erica_Frank | 'name'-dbp:name | 'common institute'-dbo:institution","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Robert_Newton_Hall> <http://dbpedia.org/ontology/institution> ?uri . <http://dbpedia.org/resource/Erica_Frank> <http://dbpedia.org/property/commonInstitutions> ?uri . }" -"Give me a list of everyone who married the musicians signed up with Pablo Records? | 'musicians'-res:Musicians_Institute | 'Pablo Records'-res:Pablo_Records | 'married'-dbp:spouse | 'signed'-dbo:movement","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Pablo_Records> . ?x <http://dbpedia.org/ontology/spouse> ?uri . }" -"What is the predecessor of the car engine which was succeeded by BMW M43 ? | 'BMW'-res:BMW | 'M43'-res:BMW_M43 | 'M43'-res:BMW_M43 | 'BMW'-res:BMW | 'predecessor'-dbo:predecessor | 'car engine'-dbp:engine | 'succeeded'-dbo:successor","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/predecessor> <http://dbpedia.org/resource/BMW_M43> . ?x <http://dbpedia.org/ontology/successor> ?uri . }" +"What are the important buildings of the architect whose one of the significant building is Krasnye Vorota? | 'Krasnye Vorota'-res:Krasnye_Vorota_(Moscow_Metro) | 'buildings'-dbo:production | 'architect'-dbo:architect | 'building'-dbo:building","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/architect> <http://dbpedia.org/resource/Krasnye_Vorota_(Moscow_Metro)> . ?x <http://dbpedia.org/property/keyBuilding> ?uri . }" +"Name the common institute of Robert hall and Erica Frank ? | 'Robert hall'-res:Robert_Newton_Hall | 'Erica Frank'-res:Erica_Frank | 'name'-dbp:name | 'common institute'-dbo:institution"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Robert_Newton_Hall> <http://dbpedia.org/ontology/institution> ?uri . <http://dbpedia.org/resource/Erica_Frank> <http://dbpedia.org/property/commonInstitutions> ?uri} " +"Give me a list of everyone who married the musicians signed up with Pablo Records? | 'musicians'-res:Musicians_Institute | 'Pablo Records'-res:Pablo_Records | 'married'-dbp:spouse | 'signed'-dbo:movement","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/recordLabel> <http://dbpedia.org/resource/Pablo_Records> . ?uri <http://dbpedia.org/property/spouse> ?x . }" +"What is the predecessor of the car engine which was succeeded by BMW M43 ? | 'BMW'-res:BMW | 'M43'-res:BMW_M43 | 'M43'-res:BMW_M43 | 'BMW'-res:BMW | 'predecessor'-dbo:predecessor | 'car engine'-dbp:engine | 'succeeded'-dbo:successor","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/BMW_M43> <http://dbpedia.org/property/engine> ?x . ?x <http://dbpedia.org/ontology/predecessor> ?uri . }" "Which gadgets are made by companies of New Taipei City? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'New Taipei City'-res:New_Taipei_City | 'city'-dbp:locationCity | 'made by'-dbo:manufacturer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/locationCity> <http://dbpedia.org/resource/New_Taipei_City> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Device>}" "What is the hub of Wan Air ? | 'Wan Air'-res:Wan_Air | 'hub'-dbp:hubs"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Wan_Air> <http://dbpedia.org/property/hubs> ?uri } " -"Who are the members of organizations headquartered at Amstelveen? | 'Amstelveen'-res:Amstelveen | 'members'-dbo:part | 'organizations'-dbo:company | 'headquartered'-dbo:headquarter","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/headquarter> <http://dbpedia.org/resource/Amstelveen> . ?x <http://dbpedia.org/property/members> ?uri . }" -"How many people have coached the players of Middlesbrough FC? | 'Middlesbrough FC'-res:Middlesbrough_F.C. | 'coached'-dbo:ground | 'players'-dbo:participant","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/club> <http://dbpedia.org/resource/Middlesbrough_F.C.> . ?x <http://dbpedia.org/ontology/manager> ?uri . }" -"Who has rented the stadiums owned by Toronto? | 'Toronto'-res:Toronto | 'rented'-dbp:center | 'stadiums'-dbp:stadium | 'owned'-dbp:owner","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/owner> <http://dbpedia.org/resource/Toronto> . ?x <http://dbpedia.org/property/tenants> ?uri . }" +"Who are the members of organizations headquartered at Amstelveen? | 'Amstelveen'-res:Amstelveen | 'members'-dbo:part | 'organizations'-dbo:company | 'headquartered'-dbo:headquarter","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/headquarters> <http://dbpedia.org/resource/Amstelveen> . ?x <http://dbpedia.org/property/members> ?uri . }" +"How many people have coached the players of Middlesbrough FC? | 'Middlesbrough FC'-res:Middlesbrough_F.C. | 'coached'-dbo:ground | 'players'-dbo:participant","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/currentclub> <http://dbpedia.org/resource/Middlesbrough_F.C.> . ?uri <http://dbpedia.org/property/manager> ?x . }" +"Who has rented the stadiums owned by Toronto? | 'Toronto'-res:Toronto | 'rented'-dbp:center | 'stadiums'-dbp:stadium | 'owned'-dbp:owner","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/owner> <http://dbpedia.org/resource/Toronto> . ?x <http://dbpedia.org/ontology/tenant> ?uri . }" "What is the mascot of alma mater of John O Moseley? | 'O'-res:O | 'John Moseley'-res:John_O._Moseley | 'mascot'-dbo:mascot | 'alma mater'-dbo:almaMater"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/John_O._Moseley> <http://dbpedia.org/property/almaMater> ?uri } " -"Which newspapers are owned by Oslo citizens? | 'Oslo citizens'-res:Oslo | 'newspapers'-dbo:title | 'owned'-dbo:owner","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/nationality> <http://dbpedia.org/resource/Oslo> . ?uri <http://dbpedia.org/ontology/owner> ?x . }" -"King crimson has been recorded in which places? | 'King crimson'-res:King_Crimson | 'king crimson'-dbo:leader | 'recorded'-dbo:background | 'places'-dbo:height","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/leader> <http://dbpedia.org/resource/King_Crimson> . ?x <http://dbpedia.org/property/recordedIn> ?uri . }" -"Give me a count on associates of Johnny Cash? | 'Johnny Cash'-res:Johnny_Cash | 'associates'-dbp:associatedActs","SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Johnny_Cash> <http://dbpedia.org/property/associatedActs> ?uri . }" -"what are some neighboring cities of Pregny Chambsy? | 'Pregny Chambsy'-res:Pregny-Chambésy | 'neighboring'-dbo:neighboringMunicipality | 'cities'-dbo:country"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pregny-Chambésy> <http://dbpedia.org/property/neighboringMunicipalities> ?uri } " -"How many developers make softwares for Unix like operating systems? | 'softwares'-res:Soft_Machine | 'Unix'-res:Unix | 'developers'-dbp:developer | 'operating systems'-dbp:operatingSystem","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/computingPlatform> <http://dbpedia.org/resource/Unix> . ?x <http://dbpedia.org/property/developer> ?uri . }" -"What is the second track list of Dschinghis Khan (song) ? | 'Dschinghis Khan (song)'-res:Dschinghis_Khan_(song) | 'track'-dbo:trackNumber"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dschinghis_Khan_(song)> <http://dbpedia.org/property/genre> ?uri } " -"List the graves of the royalities which have been buried at Beeleigh Abbey ? | 'royalities'-res:Royalties | 'Beeleigh Abbey'-res:Beeleigh_Abbey | 'graves'-dbo:grades | 'buried'-dbo:flag","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/placeOfDeath> <http://dbpedia.org/resource/Beeleigh_Abbey> . ?x <http://dbpedia.org/property/restingplace> ?uri . }" -"For which party's PM did Chidambaram Subramaniam serve? | 'PM'-res:PM | 'did Chidambaram Subramaniam'-res:Chidambaram_Subramaniam | 'party'-dbo:party | 'serve'-dbp:minister","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Chidambaram_Subramaniam> <http://dbpedia.org/property/minister> ?uri . }" -"What is the capital of the region which maintains the South Park Bridge ? | 'South Park Bridge'-res:South_Park_Bridge | 'capital'-dbo:capital | 'region'-dbo:region | 'maintains'-dbo:maintainedBy","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/South_Park_Bridge> <http://dbpedia.org/ontology/maintainedBy> ?x . ?x <http://dbpedia.org/property/capital> ?uri . }" -"What is the operating system of the LG Optimus Vu and also the developer of the Dart (programming language) | 'LG'-res:LG_Electronics | 'Optimus Vu'-res:LG_Optimus_Vu | 'Dart (programming language)'-res:Dart_(programming_language) | 'operating'-dbo:operatingSystem | 'developer'-dbo:developer"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/LG_Optimus_Vu> <http://dbpedia.org/ontology/operatingSystem> ?uri . <http://dbpedia.org/resource/Dart_(programming_language)> <http://dbpedia.org/property/developer> ?uri} " -"England is the origin of how many things? | 'England'-res:England | 'england'-dbo:province | 'origin'-dbo:origin","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/origin> <http://dbpedia.org/resource/England> . }" +"Which newspapers are owned by Oslo citizens? | 'Oslo citizens'-res:Oslo | 'newspapers'-dbo:title | 'owned'-dbo:owner","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/birthPlace> <http://dbpedia.org/resource/Oslo> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Newspaper>}" +"King crimson has been recorded in which places? | 'King crimson'-res:King_Crimson | 'king crimson'-dbo:leader | 'recorded'-dbo:background | 'places'-dbo:height","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/artist> <http://dbpedia.org/resource/King_Crimson> . ?x <http://dbpedia.org/property/recordedIn> ?uri . }" +"Give me a count on associates of Johnny Cash? | 'Johnny Cash'-res:Johnny_Cash | 'associates'-dbp:associatedActs","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/associatedActs> <http://dbpedia.org/resource/Johnny_Cash> . }" +"what are some neighboring cities of Pregny Chambsy? | 'Pregny Chambsy'-res:Pregny-Chambésy | 'neighboring'-dbo:neighboringMunicipality | 'cities'-dbo:country","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/neighboringMunicipalities> <http://dbpedia.org/resource/Pregny-Chambésy> . }" +"How many developers make softwares for Unix like operating systems? | 'softwares'-res:Soft_Machine | 'Unix'-res:Unix | 'developers'-dbp:developer | 'operating systems'-dbp:operatingSystem","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/operatingSystem> <http://dbpedia.org/resource/Unix> . ?x <http://dbpedia.org/property/developer> ?uri . }" +"What is the second track list of Dschinghis Khan (song) ? | 'Dschinghis Khan (song)'-res:Dschinghis_Khan_(song) | 'track'-dbo:trackNumber"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dschinghis_Khan_(song)> <http://dbpedia.org/ontology/trackNumber> ?uri } " +"List the graves of the royalities which have been buried at Beeleigh Abbey ? | 'royalities'-res:Royalties | 'Beeleigh Abbey'-res:Beeleigh_Abbey | 'graves'-dbo:grades | 'buried'-dbo:flag","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/restingPlace> <http://dbpedia.org/resource/Beeleigh_Abbey> . ?x <http://dbpedia.org/ontology/deathPlace> ?uri . }" +"For which party's PM did Chidambaram Subramaniam serve? | 'PM'-res:PM | 'did Chidambaram Subramaniam'-res:Chidambaram_Subramaniam | 'party'-dbo:party | 'serve'-dbp:minister","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Chidambaram_Subramaniam> <http://dbpedia.org/property/minister> ?x . ?x <http://dbpedia.org/ontology/party> ?uri . }" +"What is the capital of the region which maintains the South Park Bridge ? | 'South Park Bridge'-res:South_Park_Bridge | 'capital'-dbo:capital | 'region'-dbo:region | 'maintains'-dbo:maintainedBy","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/South_Park_Bridge> <http://dbpedia.org/property/maintainedBy> ?x . ?x <http://dbpedia.org/ontology/capital> ?uri . }" +"What is the operating system of the LG Optimus Vu and also the developer of the Dart (programming language) | 'LG'-res:LG_Electronics | 'Optimus Vu'-res:LG_Optimus_Vu | 'Dart (programming language)'-res:Dart_(programming_language) | 'operating'-dbo:operatingSystem | 'developer'-dbo:developer"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/LG_Electronics> <http://dbpedia.org/ontology/operatingSystem> ?uri . <http://dbpedia.org/resource/Dart_(programming_language)> <http://dbpedia.org/property/developer> ?uri} " +"England is the origin of how many things? | 'England'-res:England | 'england'-dbo:province | 'origin'-dbo:origin","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/origin> <http://dbpedia.org/resource/England> . ?x <http://dbpedia.org/ontology/origin> ?uri . }" "Where is the county seat of King County, Washington? | 'King County, Washington'-res:King_County,_Washington | 'county seat'-dbo:countySeat"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/King_County,_Washington> <http://dbpedia.org/ontology/countySeat> ?uri } " "How many people work at the FBI? | 'FBI'-res:Federal_Bureau_of_Investigation | 'work'-dbo:occupation","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/occupation> <http://dbpedia.org/resource/Federal_Bureau_of_Investigation> . }" -"How many people have been trained in an institute located in California? | 'California'-res:California | 'trained'-dbo:coach | 'institute'-dbo:institution | 'located'-dbo:gross","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/campus> <http://dbpedia.org/resource/California> . ?uri <http://dbpedia.org/property/institution> ?x . }" -"Who were fighting the war where the QF Hotchkiss was used? | 'QF Hotchkiss'-res:QF_6-pounder_Hotchkiss | 'fighting'-dbo:combatant | 'war'-dbo:usedInWar","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/QF_Hotchkiss> <http://dbpedia.org/ontology/usedInWar> ?x . ?x <http://dbpedia.org/property/combatant> ?uri . }" +"How many people have been trained in an institute located in California? | 'California'-res:California | 'trained'-dbo:coach | 'institute'-dbo:institution | 'located'-dbo:gross","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/locationCity> <http://dbpedia.org/resource/California> . ?uri <http://dbpedia.org/property/training> ?x . }" +"Who were fighting the war where the QF Hotchkiss was used? | 'QF Hotchkiss'-res:QF_6-pounder_Hotchkiss | 'fighting'-dbo:combatant | 'war'-dbo:usedInWar","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/QF_6-pounder_Hotchkiss> <http://dbpedia.org/property/usedInWar> ?x . ?x <http://dbpedia.org/ontology/combatant> ?uri . }" "Name the office holder with predecessor as Samuel W. McCall and office in Massachusetts House of Representatives? | 'W'-res:Vienna | 'Samuel McCall'-res:Samuel_W._McCall | 'Massachusetts House of Representatives'-res:Massachusetts_House_of_Representatives | 'name'-dbp:name | 'office holder'-dbo:place | 'predecessor'-dbo:predecessor | 'office'-dbp:office","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/predecessor> <http://dbpedia.org/resource/Samuel_W._McCall> . ?uri <http://dbpedia.org/property/office> <http://dbpedia.org/resource/Massachusetts_House_of_Representatives> . }" -"In which city is the sister station of WCSE-LP located ? | 'WCSE-LP'-res:WCSE-LP | 'city'-dbo:city | 'sister station'-dbo:sisterStation | 'located'-dbo:position","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/WCSE-LP> <http://dbpedia.org/ontology/sisterStation> ?x . ?x <http://dbpedia.org/property/locationCity> ?uri . }" -"List the producers who produced movies starring Michael Jackson. | 'produced movies movies starring Michael Jackson'-res:Movies_produced_by_ABC | 'producers'-dbo:author | 'produced'-dbo:wineProduced","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/starring> <http://dbpedia.org/resource/Michael_Jackson_(producer)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" +"In which city is the sister station of WCSE-LP located ? | 'WCSE-LP'-res:WCSE-LP | 'city'-dbo:city | 'sister station'-dbo:sisterStation | 'located'-dbo:position","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/WCSE-LP> <http://dbpedia.org/ontology/sisterStation> ?x . ?x <http://dbpedia.org/property/location> ?uri . }" +"List the producers who produced movies starring Michael Jackson. | 'produced movies movies starring Michael Jackson'-res:Movies_produced_by_ABC | 'producers'-dbo:author | 'produced'-dbo:wineProduced","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/starring> <http://dbpedia.org/resource/Michael_Jackson> . ?x <http://dbpedia.org/ontology/producer> ?uri . }" "List the name of the soccer clubs whose chairman is Joan Laporta. | 'Joan Laporta'-res:Joan_Laporta | 'name'-dbp:name | 'soccer clubs'-dbo:clubsRecordGoalscorer | 'chairman'-dbo:chairman","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/chairman> <http://dbpedia.org/resource/Joan_Laporta> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SoccerClub>}" "Who is the person whose alma mater is Harvard-Westlake School? | 'Harvard-Westlake School'-res:Harvard-Westlake_School | 'person'-dbo:type | 'alma mater'-dbo:almaMater","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/almaMater> <http://dbpedia.org/resource/Harvard-Westlake_School> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}" -"In how many nations can I find people related to the feminist movement? | 'feminist'-res:Feminism | 'movement'-dbo:movement | 'nations'-dbo:nationality","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/related> <http://dbpedia.org/resource/Feminism> . ?x <http://dbpedia.org/ontology/nationality> ?uri . }" -"With whom is Heinz Kokott a relative to who also served Nazi Army? | 'Heinz Kokott'-res:Heinz_Kokott | 'Nazi Army'-res:Nazi_6th_Army | 'relative'-dbo:relative | 'served'-dbo:regionServed","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/branch> <http://dbpedia.org/resource/Heinz_Kokott> . ?uri <http://dbpedia.org/property/relative> <http://dbpedia.org/resource/Nazi_6th_Army> . }" -"Who is the former partner of the figure skater which was the former partner of Brynn Carman ? | 'Brynn Carman'-res:Brynn_Carman | 'former partner'-dbo:spouse | 'figure skater'-dbo:flag | 'former partner'-dbo:spouse","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Brynn_Carman> <http://dbpedia.org/property/formerPartners> ?x . ?x <http://dbpedia.org/ontology/spouse> ?uri . }" -"How many ships belong to states which has Unitary as government type ? | 'Unitary'-res:Unitary | 'ships'-dbo:shipBeam | 'belong'-dbo:date | 'government type'-dbo:governmentType"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/governmentType> <http://dbpedia.org/resource/Unitary> . ?x <http://dbpedia.org/property/destinations> ?uri }" -"Count all the band members who are in Bands which have signed up with Entertainment One Music? | 'Bands'-res:Bands_(neckwear) | 'Entertainment One Music'-res:Entertainment_One_Music | 'are'-dbp:label | 'band member'-dbo:bandMember","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Entertainment_One_Music> . ?x <http://dbpedia.org/ontology/bandMember> ?uri . }" +"In how many nations can I find people related to the feminist movement? | 'feminist'-res:Feminism | 'movement'-dbo:movement | 'nations'-dbo:nationality","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/movement> <http://dbpedia.org/resource/Feminism> . ?x <http://dbpedia.org/property/nationality> ?uri . }" +"With whom is Heinz Kokott a relative to who also served Nazi Army? | 'Heinz Kokott'-res:Heinz_Kokott | 'Nazi Army'-res:Nazi_6th_Army | 'relative'-dbo:relative | 'served'-dbo:regionServed","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/branch> <http://dbpedia.org/resource/Nazi_6th_Army> . ?x <http://dbpedia.org/ontology/relative> ?uri . }" +"Who is the former partner of the figure skater which was the former partner of Brynn Carman ? | 'Brynn Carman'-res:Brynn_Carman | 'former partner'-dbo:spouse | 'figure skater'-dbo:flag | 'former partner'-dbo:spouse","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/partner> <http://dbpedia.org/resource/Brynn_Carman> . ?x <http://dbpedia.org/ontology/formerPartner> ?uri . }" +"How many ships belong to states which has Unitary as government type ? | 'Unitary'-res:Unitary | 'ships'-dbo:shipBeam | 'belong'-dbo:date | 'government type'-dbo:governmentType"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/governmentType> <http://dbpedia.org/resource/Unitary> . ?x <http://dbpedia.org/ontology/state> ?uri }" +"Count all the band members who are in Bands which have signed up with Entertainment One Music? | 'Bands'-res:Bands_(neckwear) | 'Entertainment One Music'-res:Entertainment_One_Music | 'are'-dbp:label | 'band member'-dbo:bandMember","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Entertainment_One_Music> . ?uri <http://dbpedia.org/ontology/bandMember> ?x . }" "Graduates of Somerville College have been in how many political parties? | 'Somerville College'-res:Somerville_College,_Oxford | 'graduates'-dbo:almaMater | 'parties'-dbo:party","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/almaMater> <http://dbpedia.org/resource/Somerville_College> . ?x <http://dbpedia.org/property/party> ?uri . }" "Give me a count of all the producers of all the movies whose music was done by James Horner? | 'James Horner'-res:James_Horner | 'music'-dbp:music | 'producer'-dbp:producer","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/music> <http://dbpedia.org/resource/James_Horner> . ?x <http://dbpedia.org/ontology/producer> ?uri . }" "List the notable work of David Isaacs (writer)? | 'David Isaacs (writer)'-res:David_Isaacs_(writer) | 'notable work'-dbo:notableWork"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/David_Isaacs_(writer)> <http://dbpedia.org/ontology/notableWork> ?uri } " -"What is the province of Egypt Nanotechnology Center ? | 'Egypt Nanotechnology Center'-res:Egypt_Nanotechnology_Center | 'province'-dbo:province"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Egypt_Nanotechnology_Center> <http://dbpedia.org/ontology/province> ?uri } " +"What is the province of Egypt Nanotechnology Center ? | 'Egypt Nanotechnology Center'-res:Egypt_Nanotechnology_Center | 'province'-dbo:province"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Egypt_Nanotechnology_Center> <http://dbpedia.org/property/province> ?uri } " "Give me the number of home stadiums of teams managed by John Spencer. | 'John Spencer'-res:John_Spencer | 'home stadiums'-dbo:party | 'teams'-dbo:team | 'managed'-dbo:governor","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/manager> <http://dbpedia.org/resource/John_Spencer> . ?x <http://dbpedia.org/ontology/homeStadium> ?uri . }" "How many people are buried in the Winchester Cathedral? | 'Winchester Cathedral'-res:Winchester_Cathedral | 'buried in'-dbo:restingPlace","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/restingPlace> <http://dbpedia.org/resource/Winchester_Cathedral> . }" -"Name the tv series produced by Stephen Ambrose and Erik Bork? | 'Stephen Ambrose'-res:St._Ambrose_Traversari | 'Erik Bork'-res:Erik_Bork | 'produced'-dbo:producer | 'produced'-dbo:producer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/producer> <http://dbpedia.org/resource/Stephen_Ambrose_Traversari> . ?uri <http://dbpedia.org/property/company> <http://dbpedia.org/resource/Erik_Bork}> " +"Name the tv series produced by Stephen Ambrose and Erik Bork? | 'Stephen Ambrose'-res:St._Ambrose_Traversari | 'Erik Bork'-res:Erik_Bork | 'produced'-dbo:producer | 'produced'-dbo:producer","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Stephen_Ambrose_Traversari> <http://dbpedia.org/property/producer> ?uri . <http://dbpedia.org/resource/Erik_Bork> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" "For which other teams have the past Boston Bruins members played? | 'Boston Bruins'-res:Boston_Bruins | 'teams'-dbo:formerTeam | 'team'-dbp:playedFor","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/formerTeam> <http://dbpedia.org/resource/Boston_Bruins> . ?x <http://dbpedia.org/property/playedFor> ?uri . }" -"List the Swedish newspaper headquarted in Stockholm ? | 'Swedish newspaper'-res:Sweden | 'Swedish newspaper'-res:Dharitri_(newspaper) | 'Stockholm'-res:Stockholm | 'headquarted'-dbo:headquarter | ''-dbo:country"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/headquarter> <http://dbpedia.org/resource/Sweden> } " +"List the Swedish newspaper headquarted in Stockholm ? | 'Swedish newspaper'-res:Sweden | 'Swedish newspaper'-res:Dharitri_(newspaper) | 'Stockholm'-res:Stockholm | 'headquarted'-dbo:headquarter | ''-dbo:country","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Stockholm> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Newspaper>}" "Those seasons which have been played in Fort Lauderdale Florida now host their games where? | 'Fort Lauderdale Florida'-res:Fort_Lauderdale,_Florida | 'seasons'-dbo:ground | 'played'-dbo:participant | 'host'-dbo:presenter | 'games'-dbo:games","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/city> <http://dbpedia.org/resource/Fort_Lauderdale,_Florida> . ?x <http://dbpedia.org/property/ground> ?uri . }" -"What is the political party to which Purnima Banerjee is a member of? | 'Purnima Banerjee'-res:Purnima_Banerjee | 'political party'-dbo:party | 'member'-dbo:arm"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Purnima_Banerjee> <http://dbpedia.org/ontology/party> ?uri } " +"What is the political party to which Purnima Banerjee is a member of? | 'Purnima Banerjee'-res:Purnima_Banerjee | 'political party'-dbo:party | 'member'-dbo:arm"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Purnima_Banerjee> <http://dbpedia.org/property/party> ?uri } " "Which operator of ganz UV is also the nationality of the Gza Horvth ? | 'Ganz uv'-res:Ganz_UV | 'Gza Horvth'-res:GZA | 'operator'-dbo:operator | 'nationality'-dbo:nationality","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ganz_UV> <http://dbpedia.org/ontology/operator> ?x . ?x <http://dbpedia.org/property/nationality> ?uri . }" "Give me a count of movies whose producer is Larry J. Franco? | 'J'-res:J | 'Larry Franco'-res:Larry_J._Franco | 'producer'-dbo:producer | 'movie'-dbo:Film","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/producer> <http://dbpedia.org/resource/Larry_J._Franco> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" "Which city near Nihoa is the place of death of jim Brady ? | 'Nihoa'-res:Nihoa | 'jim Brady'-res:Jim_Brady_(quarterback) | 'near city'-dbp:nearestCity | 'place death'-dbo:deathPlace"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Nihoa> <http://dbpedia.org/property/nearestCity> ?uri . <http://dbpedia.org/resource/Jim_Brady_(quarterback)> <http://dbpedia.org/ontology/deathPlace> ?uri} " @@ -731,432 +731,432 @@ text,summary "In which wars has Steven Palazzo fought? | 'Steven Palazzo'-res:Steven_Palazzo | 'wars'-dbp:battles | 'fought'-dbo:type"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Steven_Palazzo> <http://dbpedia.org/property/battles> ?uri } " "Which fields' academic journals are found in the US? | 'academic journals'-res:WikiProject_Academic_Journals | 'US'-res:United_States | 'in'-dbo:country | 'fields'-dbp:discipline","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/United_States> . ?x <http://dbpedia.org/property/discipline> ?uri . }" "What are the television shows whose voices is given by Mona Marshall? | 'Mona Marshall'-res:Mona_Marshall | 'voices'-dbp:voices | 'television show'-dbo:TelevisionShow","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/voices> <http://dbpedia.org/resource/Mona_Marshall> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" -"Name the movie whose director of photography is Gregg Toland and Bernard Herrmann was the music composer? | 'Gregg Toland'-res:Gregg_Toland | 'Bernard Herrmann'-res:Bernard_Herrmann | 'name'-dbp:name | 'movie'-dbo:picture | 'director'-dbo:director | 'photography'-dbo:picture | 'music composer'-dbo:composer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/cinematography> <http://dbpedia.org/resource/Gregg_Toland> . ?uri <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Bernard_Herrmann> . }" -"How many contries surround the seas on the banks of which is the city of Cancun? | 'Cancun'-res:Cancun_conference_(disambiguation) | 'contries'-dbp:counties | 'surround'-dbo:background | 'seas'-dbo:vein | 'banks'-dbo:series | 'city'-dbo:city","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/mouthPlace> <http://dbpedia.org/resource/Cancun_conference_(disambiguation)> . ?x <http://dbpedia.org/property/cities> ?uri . }" +"Name the movie whose director of photography is Gregg Toland and Bernard Herrmann was the music composer? | 'Gregg Toland'-res:Gregg_Toland | 'Bernard Herrmann'-res:Bernard_Herrmann | 'name'-dbp:name | 'movie'-dbo:picture | 'director'-dbo:director | 'photography'-dbo:picture | 'music composer'-dbo:composer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/cinematography> <http://dbpedia.org/resource/Gregg_Toland> . ?uri <http://dbpedia.org/property/musicComposer> <http://dbpedia.org/resource/Bernard_Herrmann> . }" +"How many contries surround the seas on the banks of which is the city of Cancun? | 'Cancun'-res:Cancun_conference_(disambiguation) | 'contries'-dbp:counties | 'surround'-dbo:background | 'seas'-dbo:vein | 'banks'-dbo:series | 'city'-dbo:city","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/city> <http://dbpedia.org/resource/Cancun_conference_(disambiguation)> . ?x <http://dbpedia.org/property/cities> ?uri . }" "Which television shows has sound format as 5.1 surround? | '5.1 surround'-res:5.1_surround_sound | 'format'-dbo:format | 'television show'-dbo:TelevisionShow","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/format> <http://dbpedia.org/resource/5.1_surround_sound> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" -"Who is the producer of the single which was the subsequent work of He's a Liar? | 'He's a Liar'-res:He's_a_Liar | 'producer'-dbo:producer | 'single'-dbo:parent | 'subsequent work'-dbo:subsequentWork","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/He's_a_Liar> <http://dbpedia.org/ontology/subsequentWork> ?x . ?x <http://dbpedia.org/property/producer> ?uri . }" +"Who is the producer of the single which was the subsequent work of He's a Liar? | 'He's a Liar'-res:He's_a_Liar | 'producer'-dbo:producer | 'single'-dbo:parent | 'subsequent work'-dbo:subsequentWork","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/He's_a_Liar> <http://dbpedia.org/property/subsequentWork> ?x . ?x <http://dbpedia.org/ontology/producer> ?uri . }" "Name the television show whose creator is Simon Fuller and presented by Ryan Seacrest? | 'Simon Fuller'-res:Simon_Fuller | 'Ryan Seacrest'-res:Ryan_Seacrest | 'name'-dbp:name | 'television show'-dbo:production | 'creator'-dbo:creator","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/creator> <http://dbpedia.org/resource/Simon_Fuller> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" -"How many cars can I find related to the cars which have a V8 engine? | 'V8 engine'-res:V8_engine | 'cars'-dbo:management | 'related'-dbo:related | 'cars'-dbo:management | 'engine'-dbo:engine"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/engine> <http://dbpedia.org/resource/V8_engine> . ?x <http://dbpedia.org/property/related> ?uri }" -"Name the person with opponents Ike Clanton and Tom McLaury? | 'opponents Ike Clanton'-res:Dwight_D._Eisenhower | 'Tom McLaury'-res:Tom_McLaury | 'opponents'-dbo:opponent | 'opponents'-dbo:opponent","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/opponent> <http://dbpedia.org/resource/Ike_Clanton> . ?uri <http://dbpedia.org/property/opponents> <http://dbpedia.org/resource/Tom_McLaury> . }" -"How many non fiction topics does Thud! deals with? | 'Thud deals'-res:Thud! | 'fiction topics'-dbo:nonFictionSubject","SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Thud!> <http://dbpedia.org/ontology/nonFictionSubject> ?uri . }" +"How many cars can I find related to the cars which have a V8 engine? | 'V8 engine'-res:V8_engine | 'cars'-dbo:management | 'related'-dbo:related | 'cars'-dbo:management | 'engine'-dbo:engine","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/engine> <http://dbpedia.org/resource/V8_engine> . ?x <http://dbpedia.org/ontology/related> ?uri . }" +"Name the person with opponents Ike Clanton and Tom McLaury? | 'opponents Ike Clanton'-res:Dwight_D._Eisenhower | 'Tom McLaury'-res:Tom_McLaury | 'opponents'-dbo:opponent | 'opponents'-dbo:opponent","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/opponent> <http://dbpedia.org/resource/Dwight_D._Eisenhower> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}" +"How many non fiction topics does Thud! deals with? | 'Thud deals'-res:Thud! | 'fiction topics'-dbo:nonFictionSubject","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/nonFictionSubject> <http://dbpedia.org/resource/Thud!> . }" "In which university did Harlan Mathews study, where Richard Meriil Atkinson went too? | 'Harlan Mathews'-res:Harlan_Mathews | 'atkinson richard'-res:Richard_Merrill_Atkinson | 'study'-dbo:almaMater | 'study'-dbo:almaMater"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Harlan_Mathews> <http://dbpedia.org/ontology/almaMater> ?uri . <http://dbpedia.org/resource/Richard_Merrill_Atkinson> <http://dbpedia.org/property/education> ?uri} " -"What kind of buildings were designed by Pyusawhti? | 'Pyusawhti'-res:Pyusawhti | 'buildings'-dbo:architect | 'designed'-dbo:architect","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/architect> <http://dbpedia.org/resource/Pyusawhti> . ?x <http://dbpedia.org/property/type> ?uri . }" -"What is the owning company of the bank whose parent is Sony Financial ? | 'Sony Financial'-res:Sony_Financial | 'owning'-dbo:owningCompany | 'company'-dbo:company | 'bank'-dbo:number | 'parent'-dbp:parent","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/parent> <http://dbpedia.org/resource/Sony_Financial> . ?x <http://dbpedia.org/ontology/owningCompany> ?uri . }" -"Where are the cooper mountain vineyards and Mt. bachelor ski area located? | 'cooper mountain vineyards'-res:Cooper_Mountain_Vineyards | 'Mt bachelor ski area'-res:Mount_Bachelor_ski_area | 'located'-dbo:locatedInArea","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cooper_Mountain_Vineyards> <http://dbpedia.org/ontology/locatedInArea> ?uri . <http://dbpedia.org/resource/Mount_Bachelor_ski_area> <http://dbpedia.org/property/locationCountry> ?uri . }" -"How many tenants are there in the Mercedes Benz Superdome? | 'Mercedes Benz Superdome'-res:Mercedes-Benz_Superdome | 'tenant'-dbo:tenant","SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Mercedes-Benz_Superdome> <http://dbpedia.org/ontology/tenant> ?uri . }" -"What is the affiliation of the hospital where Alfred Blalock works? | 'hospital'-res:Hospital | 'Alfred Blalock'-res:Alfred_Blalock | 'affiliation'-dbo:affiliation | 'works'-dbo:language","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Alfred_Blalock> <http://dbpedia.org/property/employer> ?x . ?x <http://dbpedia.org/ontology/affiliation> ?uri . }" +"What kind of buildings were designed by Pyusawhti? | 'Pyusawhti'-res:Pyusawhti | 'buildings'-dbo:architect | 'designed'-dbo:architect","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/architect> <http://dbpedia.org/resource/Pyusawhti> . ?x <http://dbpedia.org/property/programmeFormat> ?uri . }" +"What is the owning company of the bank whose parent is Sony Financial ? | 'Sony Financial'-res:Sony_Financial | 'owning'-dbo:owningCompany | 'company'-dbo:company | 'bank'-dbo:number | 'parent'-dbp:parent","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/parent> <http://dbpedia.org/resource/Sony_Financial> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Bank>}" +"Where are the cooper mountain vineyards and Mt. bachelor ski area located? | 'cooper mountain vineyards'-res:Cooper_Mountain_Vineyards | 'Mt bachelor ski area'-res:Mount_Bachelor_ski_area | 'located'-dbo:locatedInArea","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cooper_Mountain_Vineyards> <http://dbpedia.org/property/location> ?uri . <http://dbpedia.org/resource/Mount_Bachelor_ski_area> <http://dbpedia.org/ontology/locatedInArea> ?uri . }" +"How many tenants are there in the Mercedes Benz Superdome? | 'Mercedes Benz Superdome'-res:Mercedes-Benz_Superdome | 'tenant'-dbo:tenant","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/tenants> <http://dbpedia.org/resource/Mercedes-Benz_Superdome> . ?x <http://dbpedia.org/ontology/tenant> ?uri . }" +"What is the affiliation of the hospital where Alfred Blalock works? | 'hospital'-res:Hospital | 'Alfred Blalock'-res:Alfred_Blalock | 'affiliation'-dbo:affiliation | 'works'-dbo:language"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Alfred_Blalock> <http://dbpedia.org/property/employer> ?uri } " "How many causes of death have been associated with American citizens? | 'American'-res:United_States | 'citizens'-dbp:citizenship | 'death'-dbo:deathCause","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/citizenship> <http://dbpedia.org/resource/United_States> . ?x <http://dbpedia.org/ontology/deathCause> ?uri . }" "For how many teams have the league players of Czech Extraliga, previously played? | 'Czech Extraliga,'-res:Czech_Republic | 'Czech Extraliga,'-res:Czech_Extraliga | 'league'-dbp:league | 'teams'-dbo:formerTeam","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/league> <http://dbpedia.org/resource/Czech_Extraliga> . ?x <http://dbpedia.org/ontology/formerTeam> ?uri . }" -"Artists trained at art students league NY are buried where? | 'NY'-res:Nymphicula_banauensis | 'art students league'-res:Lithuanian_Students_Basketball_League | 'artists'-dbo:rkdArtistsId | 'trained'-dbo:coach | 'buried'-dbo:family","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/training> <http://dbpedia.org/resource/Lithuanian_Students_Basketball_League> . ?x <http://dbpedia.org/property/restingplace> ?uri . }" -"What is the location of death of the skier who was the bronze medalist of Alpine skiing at the 1964 Winter Olympics Men's slalom ? | 'Alpine skiing at the 1964 Winter Olympics Men's slalom'-res:Alpine_skiing_at_the_1964_Winter_Olympics_–_Men's_slalom","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Alpine_skiing_at_the_1964_Winter_Olympics_–_Men's_slalom> <http://dbpedia.org/property/prizes> ?x . ?x <http://dbpedia.org/ontology/deathPlace> ?uri . }" +"Artists trained at art students league NY are buried where? | 'NY'-res:Nymphicula_banauensis | 'art students league'-res:Lithuanian_Students_Basketball_League | 'artists'-dbo:rkdArtistsId | 'trained'-dbo:coach | 'buried'-dbo:family","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/training> <http://dbpedia.org/resource/Lithuanian_Students_Basketball_League> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Artist>}" +"What is the location of death of the skier who was the bronze medalist of Alpine skiing at the 1964 Winter Olympics Men's slalom ? | 'Alpine skiing at the 1964 Winter Olympics Men's slalom'-res:Alpine_skiing_at_the_1964_Winter_Olympics_–_Men's_slalom"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Alpine_skiing_at_the_1964_Winter_Olympics_–_Men's_slalom> <http://dbpedia.org/property/battles> ?uri } " "In which races did Mouse Morris take part? | 'Mouse Morris'-res:Mouse_Morris | 'race'-dbp:race"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Mouse_Morris> <http://dbpedia.org/property/race> ?uri } " "Who are the writers of South Park: The Stick of Truth? | 'South Park: The Stick of Truth'-res:South_Park:_The_Stick_of_Truth | 'writers'-dbo:writer"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/South_Park:_The_Stick_of_Truth> <http://dbpedia.org/ontology/writer> ?uri } " -"What do typically NGOs work for? | 'typically NGOs work'-res:Typically_Tropical"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/purpose> <http://dbpedia.org/resource/Non-governmental_organization> } " -"How many universities participate in the NCAA Division I Football Bowl Subdivision? | 'universities'-res:Universities_Ireland | 'NCAA'-res:National_Collegiate_Athletic_Association_(Philippines) | 'Division I Football Bowl Subdivision'-res:NCAA_Division_I_Football_Bowl_Subdivision | 'I'-res:I | 'NCAA Division Football Bowl Subdivision'-res:NCAA_Division_I_Football_Bowl_Subdivision | 'participate'-dbo:participant","SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/NCAA_Division_I_Football_Bowl_Subdivision> <http://dbpedia.org/property/league> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/University>}" -"Give me a count of companies located in Texas ? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'Texas'-res:Texas | 'located'-dbo:locationCity","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/locationCity> <http://dbpedia.org/resource/Texas> . }" -"Who is the common prime minster of William Deaner and mark Latham ? | 'William Deaner'-res:William_Deane | 'mark Latham'-res:Mark_Latham | 'mark'-dbo:type","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/William_Deane> <http://dbpedia.org/ontology/primeminister> ?uri . <http://dbpedia.org/resource/Mark_Latham> <http://dbpedia.org/property/type> ?uri . }" -"How many games are played at universities in Metro Manilla? | 'Metro Manill'-res:Metro_Manila | 'games'-dbo:games | 'played'-dbo:portrayer","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/campus> <http://dbpedia.org/resource/Metro_Manila> . ?x <http://dbpedia.org/property/genre> ?uri . }" -"Which mainter of Cheasty Boulevard South is also the county seat of the King County, Washingtonsu ? | 'Cheasty Boulevard South'-res:Cheasty_Boulevard_South | 'King County, Washingtonsu'-res:King_County,_Washington | 'mainter'-dbo:owner | 'county seat'-dbo:countySeat"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cheasty_Boulevard_South> <http://dbpedia.org/property/owner> ?uri . <http://dbpedia.org/resource/King_County,_Washington> <http://dbpedia.org/ontology/countySeat> ?uri} " -"What are the largest cities in each of the destinations of TranStar Airlines? | 'destinations'-res:Destinations_Academy | 'TranStar Airlines'-res:TranStar_Airlines | 'destination'-dbo:destination | 'largest'-dbo:largestCity","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/destination> <http://dbpedia.org/resource/TranStar_Airlines> . ?x <http://dbpedia.org/ontology/largestCity> ?uri . }" +"What do typically NGOs work for? | 'typically NGOs work'-res:Typically_Tropical","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/type> <http://dbpedia.org/resource/Typically_Tropical> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Organisation>}" +"How many universities participate in the NCAA Division I Football Bowl Subdivision? | 'universities'-res:Universities_Ireland | 'NCAA'-res:National_Collegiate_Athletic_Association_(Philippines) | 'Division I Football Bowl Subdivision'-res:NCAA_Division_I_Football_Bowl_Subdivision | 'I'-res:I | 'NCAA Division Football Bowl Subdivision'-res:NCAA_Division_I_Football_Bowl_Subdivision | 'participate'-dbo:participant","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/division> <http://dbpedia.org/resource/NCAA_Division_I_Football_Bowl_Subdivision> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/University>}" +"Give me a count of companies located in Texas ? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'Texas'-res:Texas | 'located'-dbo:locationCity"," SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/locationCity> <http://dbpedia.org/resource/Texas> } " +"Who is the common prime minster of William Deaner and mark Latham ? | 'William Deaner'-res:William_Deane | 'mark Latham'-res:Mark_Latham | 'mark'-dbo:type"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/William_Deane> <http://dbpedia.org/property/primeminister> ?uri . <http://dbpedia.org/resource/Mark_Latham> <http://dbpedia.org/ontology/type> ?uri} " +"How many games are played at universities in Metro Manilla? | 'Metro Manill'-res:Metro_Manila | 'games'-dbo:games | 'played'-dbo:portrayer","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/city> <http://dbpedia.org/resource/Metro_Manila> . ?x <http://dbpedia.org/property/team> ?uri . }" +"Which mainter of Cheasty Boulevard South is also the county seat of the King County, Washingtonsu ? | 'Cheasty Boulevard South'-res:Cheasty_Boulevard_South | 'King County, Washingtonsu'-res:King_County,_Washington | 'mainter'-dbo:owner | 'county seat'-dbo:countySeat"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cheasty_Boulevard_South> <http://dbpedia.org/property/mainter> ?uri . <http://dbpedia.org/resource/King_County,_Washington> <http://dbpedia.org/ontology/countySeat> ?uri} " +"What are the largest cities in each of the destinations of TranStar Airlines? | 'destinations'-res:Destinations_Academy | 'TranStar Airlines'-res:TranStar_Airlines | 'destination'-dbo:destination | 'largest'-dbo:largestCity","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/destinations> <http://dbpedia.org/resource/TranStar_Airlines> . ?x <http://dbpedia.org/property/largestCity> ?uri . }" "Which writer is famous for works written by Neil Gaiman? | 'Neil Gaiman'-res:Neil_Gaiman | 'written by'-dbp:writers | 'works'-dbo:notableWork","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/writers> <http://dbpedia.org/resource/Neil_Gaiman> . ?x <http://dbpedia.org/ontology/notableWork> ?uri . }" -"Who was in youth clubs of FC Barcelona and Newell's Old Boys? | 'FC Barcelona'-res:FC_Barcelona | 'Newell's Old Boys'-res:Newell's_Old_Boys | 'youth clubs'-dbp:youthclubs | 'youth clubs'-dbp:youthclubs","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/youthclubs> <http://dbpedia.org/resource/FC_Barcelona> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SoccerClub>}" -"For which country did Alexander Lippisch design airplanes? | 'Alexander Lippisch design airplanes'-res:Alexander_Lippisch | 'country'-dbo:country"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Alexander_Lippisch> <http://dbpedia.org/property/design> ?uri } " -"What is the religion of the relatives of Carmela Soprano ? | 'Carmela Soprano'-res:Carmela_Soprano | 'religion'-dbo:religion | 'relatives'-dbo:relative","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Carmela_Soprano> <http://dbpedia.org/property/relative> ?x . ?x <http://dbpedia.org/ontology/religion> ?uri . }" -"In all the grand prixes where the first team was Scuderia Ferrari, who all were the pole drivers? | 'Scuderia Ferrari'-res:Scuderia_Ferrari | 'grand prixes'-dbo:grandsire | 'team'-dbo:team | 'pole drivers'-dbp:drivers","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/firstTeam> <http://dbpedia.org/resource/Scuderia_Ferrari> . ?x <http://dbpedia.org/property/race> ?uri . }" -"What is the citizenship of Erastus Wiman ? | 'Erastus Wiman'-res:Erastus_Wiman | 'citizenship'-dbo:citizenship"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Erastus_Wiman> <http://dbpedia.org/property/citizenship> ?uri } " -"What are some awards given to the french people? | 'awards'-dbo:award | 'french'-dbo:channel","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/nationality> <http://dbpedia.org/resource/French_people> . ?x <http://dbpedia.org/ontology/award> ?uri . }" +"Who was in youth clubs of FC Barcelona and Newell's Old Boys? | 'FC Barcelona'-res:FC_Barcelona | 'Newell's Old Boys'-res:Newell's_Old_Boys | 'youth clubs'-dbp:youthclubs | 'youth clubs'-dbp:youthclubs","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/youthclubs> <http://dbpedia.org/resource/FC_Barcelona> . }" +"For which country did Alexander Lippisch design airplanes? | 'Alexander Lippisch design airplanes'-res:Alexander_Lippisch | 'country'-dbo:country"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Alexander_Lippisch> <http://dbpedia.org/property/designer> ?uri } " +"What is the religion of the relatives of Carmela Soprano ? | 'Carmela Soprano'-res:Carmela_Soprano | 'religion'-dbo:religion | 'relatives'-dbo:relative","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Carmela_Soprano> <http://dbpedia.org/ontology/relative> ?x . ?x <http://dbpedia.org/property/religion> ?uri . }" +"In all the grand prixes where the first team was Scuderia Ferrari, who all were the pole drivers? | 'Scuderia Ferrari'-res:Scuderia_Ferrari | 'grand prixes'-dbo:grandsire | 'team'-dbo:team | 'pole drivers'-dbp:drivers","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/firstTeam> <http://dbpedia.org/resource/Scuderia_Ferrari> . ?x <http://dbpedia.org/property/poleMouth> ?uri . }" +"What is the citizenship of Erastus Wiman ? | 'Erastus Wiman'-res:Erastus_Wiman | 'citizenship'-dbo:citizenship"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Erastus_Wiman> <http://dbpedia.org/ontology/citizenship> ?uri } " +"What are some awards given to the french people? | 'awards'-dbo:award | 'french'-dbo:channel","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/stateOfOrigin> <http://dbpedia.org/resource/French_people> . ?x <http://dbpedia.org/property/awards> ?uri . }" "Name the district of Robert William Wilcox ? | 'Robert William Wilcox'-res:Robert_William_Wilcox | 'name'-dbp:name | 'district'-dbo:district"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Robert_William_Wilcox> <http://dbpedia.org/ontology/district> ?uri } " -"Tandem Computers is the subsidiary of which company? | 'tandem Computers'-res:Tandem_Computers | 'subsidiary'-dbo:subsidiary | 'company'-dbo:company","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/subsidiary> <http://dbpedia.org/resource/Tandem_Computers> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}" +"Tandem Computers is the subsidiary of which company? | 'tandem Computers'-res:Tandem_Computers | 'subsidiary'-dbo:subsidiary | 'company'-dbo:company","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/subsidiary> <http://dbpedia.org/resource/Tandem_Computers> . ?uri <http://dbpedia.org/property/company> ?x . }" "What are the movies whose director of photography is Jordan Cronenweth? | 'Jordan Cronenweth'-res:Jordan_Cronenweth | 'movies'-dbo:film | 'director'-dbo:director | 'photography'-dbo:picture","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/cinematography> <http://dbpedia.org/resource/Jordan_Cronenweth> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" -"Which river ends at Thames Estuary and North Sea? | 'Thames Estuary'-res:Thames_Estuary | 'North Sea'-res:North_Sea | 'river'-dbo:river | 'ends'-dbo:fate","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/mouthMouth> <http://dbpedia.org/resource/Thames_Estuary> . ?uri <http://dbpedia.org/ontology/river> <http://dbpedia.org/resource/North_Sea> . }" -"How many companies are located in Toronto ? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'Toronto'-res:Toronto | 'located'-dbo:locatedInArea","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/locatedInArea> <http://dbpedia.org/resource/Toronto> . }" -"What are the movies whose editor died in Westwood, Los Angeles? | 'Westwood, Los Angeles'-res:Westwood,_Los_Angeles | 'died in'-dbo:deathPlace | 'editor'-dbo:editing","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/editing> <http://dbpedia.org/resource/Westwood,_Los_Angeles> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" -"In which movies directed by Orson Welles has Bernard Herrmann as music composer ? | 'Bernard Herrmann'-res:Bernard_Herrmann | 'Orson Welles'-res:Orson_Welles | 'movies'-dbo:film | 'directed'-dbo:principal | 'music composer'-dbo:musicComposer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/musicComposer> <http://dbpedia.org/resource/Bernard_Herrmann> . ?uri <http://dbpedia.org/property/director> <http://dbpedia.org/resource/Orson_Welles> . }" +"Which river ends at Thames Estuary and North Sea? | 'Thames Estuary'-res:Thames_Estuary | 'North Sea'-res:North_Sea | 'river'-dbo:river | 'ends'-dbo:fate","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/riverServed> <http://dbpedia.org/resource/Thames_Estuary> . ?uri <http://dbpedia.org/property/riverMouth> <http://dbpedia.org/resource/North_Sea> . }" +"How many companies are located in Toronto ? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'Toronto'-res:Toronto | 'located'-dbo:locatedInArea","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/locationCity> <http://dbpedia.org/resource/Toronto> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}" +"What are the movies whose editor died in Westwood, Los Angeles? | 'Westwood, Los Angeles'-res:Westwood,_Los_Angeles | 'died in'-dbo:deathPlace | 'editor'-dbo:editing","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/deathPlace> <http://dbpedia.org/resource/Westwood,_Los_Angeles> . ?uri <http://dbpedia.org/property/editing> ?x . }" +"In which movies directed by Orson Welles has Bernard Herrmann as music composer ? | 'Bernard Herrmann'-res:Bernard_Herrmann | 'Orson Welles'-res:Orson_Welles | 'movies'-dbo:film | 'directed'-dbo:principal | 'music composer'-dbo:musicComposer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/musicComposer> <http://dbpedia.org/resource/Bernard_Herrmann> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" "Who is the builder of Presidio Santa Cruz de Terrenate ? | 'Presidio Santa Cruz de Terrenate'-res:Presidio_Santa_Cruz_de_Terrenate | 'builder'-dbo:builder"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Presidio_Santa_Cruz_de_Terrenate> <http://dbpedia.org/ontology/builder> ?uri } " -"In which areas is the radio station broadcasted which is a sister station of WXME ? | 'WXME'-res:WXME | 'radio station'-dbo:plant | 'broadcasted'-dbo:state | 'sister station'-dbo:sisterStation","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/WXME> <http://dbpedia.org/ontology/sisterStation> ?x . ?x <http://dbpedia.org/property/broadcastArea> ?uri . }" -"How many shows are aired on Comedy Central? | 'Comedy Central'-res:Comedy_Central | 'shows'-dbo:place | 'aired'-dbo:flag","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/network> <http://dbpedia.org/resource/Comedy_Central> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" -"What are Monrow Carell Jr Children Hospital and Vanderbilt University Medical Center both affiliated with? | 'vanderbilt hospital children'-res:Monroe_Carell_Jr._Children's_Hospital_at_Vanderbilt | 'Vanderbilt University Medical Center'-res:Vanderbilt_University_Medical_Center | 'affiliated'-dbp:affiliation | 'affiliated'-dbp:affiliation","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/affiliation> <http://dbpedia.org/resource/Monroe_Carell_Jr._Children's_Hospital_at_Vanderbilt_University_Medical_Center> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/School>}" -"How many politicians are in the US Senate? | 'US Senate'-res:United_States_Senate","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/office> <http://dbpedia.org/resource/United_States_Senate> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/OfficeHolder>}" -"Name the fictional character whose relatives are Huey, Dewey, and Louie and belongs to Duck family ? | 'Huey, Dewey, and Louie'-res:Huey,_Dewey,_and_Louie | 'Duck family'-res:Duck_family_(Disney) | 'name'-dbp:name | 'fictional character'-dbo:party | 'relatives'-dbo:relative | 'belongs'-dbp:date","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/relatives> <http://dbpedia.org/resource/Huey,_Dewey,_and_Louie> . ?uri <http://dbpedia.org/property/type> <http://dbpedia.org/resource/FictionalCharacter>}" +"In which areas is the radio station broadcasted which is a sister station of WXME ? | 'WXME'-res:WXME | 'radio station'-dbo:plant | 'broadcasted'-dbo:state | 'sister station'-dbo:sisterStation"," SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/sisterStation> <http://dbpedia.org/resource/WXME> . ?x <http://dbpedia.org/property/broadcastArea> ?uri }" +"How many shows are aired on Comedy Central? | 'Comedy Central'-res:Comedy_Central | 'shows'-dbo:place | 'aired'-dbo:flag","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/channel> <http://dbpedia.org/resource/Comedy_Central> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" +"What are Monrow Carell Jr Children Hospital and Vanderbilt University Medical Center both affiliated with? | 'vanderbilt hospital children'-res:Monroe_Carell_Jr._Children's_Hospital_at_Vanderbilt | 'Vanderbilt University Medical Center'-res:Vanderbilt_University_Medical_Center | 'affiliated'-dbp:affiliation | 'affiliated'-dbp:affiliation","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/affiliation> <http://dbpedia.org/resource/Monroe_Carell_Jr._Children's_Hospital_at_Vanderbilt_University_Medical_Center> . }" +"How many politicians are in the US Senate? | 'US Senate'-res:United_States_Senate","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/officeHolder> <http://dbpedia.org/resource/United_States_Senate> . }" +"Name the fictional character whose relatives are Huey, Dewey, and Louie and belongs to Duck family ? | 'Huey, Dewey, and Louie'-res:Huey,_Dewey,_and_Louie | 'Duck family'-res:Duck_family_(Disney) | 'name'-dbp:name | 'fictional character'-dbo:party | 'relatives'-dbo:relative | 'belongs'-dbp:date","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/relative> <http://dbpedia.org/resource/Huey,_Dewey,_and_Louie> . ?uri <http://dbpedia.org/property/family> <http://dbpedia.org/resource/Duck_family_(Disney)> . }" "What is the bloomington viaduct built to cross? | 'bloomington viaduct'-res:Bloomington_Viaduct | 'cross'-dbp:crosses"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bloomington_Viaduct> <http://dbpedia.org/property/crosses> ?uri } " -"How many politicians reside in Cape Town? | 'politicians'-res:Politicians_of_The_Wire | 'Cape Town'-res:Cape_Town | 'reside'-dbp:residence","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/residence> <http://dbpedia.org/resource/Cape_Town> . }" -"What are some products of the company whose parent is BBC? | 'BBC'-res:BBC | 'products'-dbo:author | 'company'-dbo:company | 'parent'-dbo:parent","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/parent> <http://dbpedia.org/resource/BBC> . ?x <http://dbpedia.org/property/products> ?uri . }" +"How many politicians reside in Cape Town? | 'politicians'-res:Politicians_of_The_Wire | 'Cape Town'-res:Cape_Town | 'reside'-dbp:residence","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/residence> <http://dbpedia.org/resource/Cape_Town> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/OfficeHolder>}" +"What are some products of the company whose parent is BBC? | 'BBC'-res:BBC | 'products'-dbo:author | 'company'-dbo:company | 'parent'-dbo:parent","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/parent> <http://dbpedia.org/resource/BBC> . ?uri <http://dbpedia.org/property/products> ?x . }" "Which associat of Martin Pugh is also married to Alana Stewert ? | 'Martin Pugh'-res:Martin_Pugh | 'Alana Stewert'-res:Alana_Stewart | 'associat'-dbo:team | 'married'-dbp:spouse"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Martin_Pugh> <http://dbpedia.org/property/spouse> ?uri . <http://dbpedia.org/resource/Alana_Stewart> <http://dbpedia.org/ontology/associatedActs> ?uri} " -"How many people played for Newell's Old Boys? | 'Newell'-res:Newell | 'Old Boys'-res:Old_Boys | 'played'-dbo:coach","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/coach> <http://dbpedia.org/resource/Newell's_Old_Boys> . }" +"How many people played for Newell's Old Boys? | 'Newell'-res:Newell | 'Old Boys'-res:Old_Boys | 'played'-dbo:coach","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/team> <http://dbpedia.org/resource/Newell_Old_Boys> . }" "What is the draft team of the Antoine Bibeau and also has player named Nathan Dempsey ? | 'Antoine Bibeau'-res:Antoine_Bibeau | 'Nathan Dempsey'-res:Nathan_Dempsey | 'draft team'-dbp:draftTeam | 'team'-dbp:playedFor"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Antoine_Bibeau> <http://dbpedia.org/property/draftTeam> ?uri . <http://dbpedia.org/resource/Nathan_Dempsey> <http://dbpedia.org/ontology/playedFor> ?uri} " -"List the broadcast area of the TV stations which also serves in Agalga ? | 'TV'-res:Tv_test_pattern | 'Agalga'-res:Galga | 'broadcast area'-dbo:broadcastArea | 'stations'-dbo:order | 'serves'-dbo:order","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/area> <http://dbpedia.org/resource/Agaléga> . ?x <http://dbpedia.org/ontology/broadcastArea> ?uri . }" -"Whose deputy is Neil Brown? | 'Neil Brown'-res:Neil_Brown_(Australian_politician) | 'deputy'-dbo:deputy","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/deputy> <http://dbpedia.org/resource/Neil_Brown_(Australian_politician)> . }" -"What is debut team of the baseball players who died in Los Angeles? | 'baseball players'-res:Major_League_Baseball_Players_Association | 'Los Angeles'-res:Los_Angeles | 'debut team'-dbo:team | 'died'-dbp:deathPlace","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/placeOfDeath> <http://dbpedia.org/resource/Los_Angeles> . ?x <http://dbpedia.org/ontology/debutteam> ?uri . }" -"List all the operators of the train who operates in Budapest ? | 'Budapest'-res:Budapest | 'operators'-dbo:operator | 'train'-dbo:training | 'operates'-dbo:operator","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/operator> <http://dbpedia.org/resource/Budapest> . ?x <http://dbpedia.org/property/operators> ?uri . }" -"What are the awards won by the producer of Puss in Boots (film)? | 'Puss in Boots (film)'-res:Puss_in_Boots_(1922_film) | 'awards'-dbo:budget | 'won'-dbo:award | 'producer'-dbo:producer","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Puss_in_Boots_(1922_film)> <http://dbpedia.org/property/producer> ?x . ?x <http://dbpedia.org/ontology/award> ?uri . }" -"How many politicians are in the militia? | 'militia'-res:Militia | 'militia'-dbo:garrison","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/garrison> <http://dbpedia.org/resource/Militia> . ?x <http://dbpedia.org/property/leaderName> ?uri . }" -"In which wars were people from the Saudi Arabian ministry of defense involved? | 'Saudi Arabian'-res:Minister_of_Defense_(Saudi_Arabia) | 'wars'-dbp:battles | 'defense'-dbo:garrison | 'involved'-dbo:result | ''-dbo:country","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/branch> <http://dbpedia.org/resource/Minister_of_Defense_(Saudi_Arabia)> . ?x <http://dbpedia.org/ontology/territory> ?uri . }" -"Under which US president was a politician in opposition of John G Schmitz? | 'US'-res:United_States | 'G'-res:G | 'John Schmitz'-res:John_G._Schmitz | 'president'-dbo:president | 'politician'-dbo:party | 'opposition'-dbo:opponent","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/John_G._Schmitz> <http://dbpedia.org/ontology/opponent> ?uri . <http://dbpedia.org/resource/United_States> <http://dbpedia.org/property/president> ?uri . }" -"Who are the associated musical artist of the artists of band Shorty Rogers? | 'associated musical artist'-res:The_Artist_(film) | 'band Shorty Rogers'-res:Shorty_Rogers | 'associated band'-dbo:associatedBand | 'associated musical artist'-dbo:associatedMusicalArtist","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/associatedBand> <http://dbpedia.org/resource/Shorty_Rogers> . ?x <http://dbpedia.org/property/associatedMusicalArtist> ?uri . }" +"List the broadcast area of the TV stations which also serves in Agalga ? | 'TV'-res:Tv_test_pattern | 'Agalga'-res:Galga | 'broadcast area'-dbo:broadcastArea | 'stations'-dbo:order | 'serves'-dbo:order"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Agaléga> <http://dbpedia.org/ontology/broadcastArea> ?uri } " +"Whose deputy is Neil Brown? | 'Neil Brown'-res:Neil_Brown_(Australian_politician) | 'deputy'-dbo:deputy"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/deputy> <http://dbpedia.org/resource/Neil_Brown_(Australian_politician)> } " +"What is debut team of the baseball players who died in Los Angeles? | 'baseball players'-res:Major_League_Baseball_Players_Association | 'Los Angeles'-res:Los_Angeles | 'debut team'-dbo:team | 'died'-dbp:deathPlace","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/deathPlace> <http://dbpedia.org/resource/Los_Angeles> . ?x <http://dbpedia.org/ontology/debutteam> ?uri . }" +"List all the operators of the train who operates in Budapest ? | 'Budapest'-res:Budapest | 'operators'-dbo:operator | 'train'-dbo:training | 'operates'-dbo:operator"," SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/operator> <http://dbpedia.org/resource/Budapest> . ?x <http://dbpedia.org/property/operator> ?uri }" +"What are the awards won by the producer of Puss in Boots (film)? | 'Puss in Boots (film)'-res:Puss_in_Boots_(1922_film) | 'awards'-dbo:budget | 'won'-dbo:award | 'producer'-dbo:producer","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Puss_in_Boots_(1922_film)> <http://dbpedia.org/ontology/producer> ?x . ?x <http://dbpedia.org/property/awards> ?uri . }" +"How many politicians are in the militia? | 'militia'-res:Militia | 'militia'-dbo:garrison","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/garrison> <http://dbpedia.org/resource/Militia> . }" +"In which wars were people from the Saudi Arabian ministry of defense involved? | 'Saudi Arabian'-res:Minister_of_Defense_(Saudi_Arabia) | 'wars'-dbp:battles | 'defense'-dbo:garrison | 'involved'-dbo:result | ''-dbo:country","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/garrison> <http://dbpedia.org/resource/Minister_of_Defense_(Saudi_Arabia)> . ?x <http://dbpedia.org/ontology/territory> ?uri . }" +"Under which US president was a politician in opposition of John G Schmitz? | 'US'-res:United_States | 'G'-res:G | 'John Schmitz'-res:John_G._Schmitz | 'president'-dbo:president | 'politician'-dbo:party | 'opposition'-dbo:opponent","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/opponent> <http://dbpedia.org/resource/John_G._Schmitz> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/OfficeHolder>}" +"Who are the associated musical artist of the artists of band Shorty Rogers? | 'associated musical artist'-res:The_Artist_(film) | 'band Shorty Rogers'-res:Shorty_Rogers | 'associated band'-dbo:associatedBand | 'associated musical artist'-dbo:associatedMusicalArtist","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Shorty_Rogers> <http://dbpedia.org/ontology/associatedBand> ?x . ?x <http://dbpedia.org/property/associatedMusicalArtist> ?uri . }" "Who were the american football players who played for Dallas Cowboys? | 'american football players'-res:Les_Joueurs_de_football | 'Dallas Cowboys'-res:Dallas_Cowboys | 'played for'-dbo:team | 'american football player'-dbo:AmericanFootballPlayer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/team> <http://dbpedia.org/resource/Dallas_Cowboys> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/AmericanFootballPlayer>}" -"Which appliance's CPU is Cell (microprocessor) and predecessor is PlayStation 2? | 'CPU'-res:Scorpion_(CPU) | 'Cell (microprocessor)'-res:Cell_(microprocessor) | 'PlayStation 2'-res:PlayStation_2 | 'appliance'-dbp:engine | 'predecessor'-dbo:predecessor","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/cpu> <http://dbpedia.org/resource/Cell_(microprocessor)> . ?uri <http://dbpedia.org/property/predecessor> <http://dbpedia.org/resource/PlayStation_2> . }" -"People who debuted from Houston Astros have played in which clubs? | 'Houston Astros'-res:Houston_Astros | 'debuted'-dbo:debutTeam | 'played'-dbo:participant | 'clubs'-dbo:college","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/debutTeam> <http://dbpedia.org/resource/Houston_Astros> . ?x <http://dbpedia.org/property/team> ?uri . }" -"Radios on what topics can be tuned in to in Washington DC? | 'topics'-res:Topics_in_Early_Childhood_Special_Education | 'DC'-res:Dc_(computer_program) | 'Washington'-res:Washington | 'radios'-dbo:capital | 'tuned'-dbo:number","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/capital> <http://dbpedia.org/resource/Washington_Dbo:education> ?uri . }" -"Give me some shows related to the ones created by Russell Davies | 'Russell Davies'-res:Russell_T_Davies | 'shows'-dbo:place | 'related'-dbo:related | 'created'-dbo:creator","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/creators> <http://dbpedia.org/resource/Russell_T_Davies> . ?uri <http://dbpedia.org/ontology/related> ?x . }" +"Which appliance's CPU is Cell (microprocessor) and predecessor is PlayStation 2? | 'CPU'-res:Scorpion_(CPU) | 'Cell (microprocessor)'-res:Cell_(microprocessor) | 'PlayStation 2'-res:PlayStation_2 | 'appliance'-dbp:engine | 'predecessor'-dbo:predecessor","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/computingPlatform> <http://dbpedia.org/resource/Cell_(microprocessor)> . ?uri <http://dbpedia.org/ontology/predecessor> <http://dbpedia.org/resource/PlayStation_2> . }" +"People who debuted from Houston Astros have played in which clubs? | 'Houston Astros'-res:Houston_Astros | 'debuted'-dbo:debutTeam | 'played'-dbo:participant | 'clubs'-dbo:college","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/debutTeam> <http://dbpedia.org/resource/Houston_Astros> . ?uri <http://dbpedia.org/property/team> ?x . }" +"Radios on what topics can be tuned in to in Washington DC? | 'topics'-res:Topics_in_Early_Childhood_Special_Education | 'DC'-res:Dc_(computer_program) | 'Washington'-res:Washington | 'radios'-dbo:capital | 'tuned'-dbo:number","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/area> <http://dbpedia.org/resource/Washington> . ?x <http://dbpedia.org/ontology/programmeFormat> ?uri . }" +"Give me some shows related to the ones created by Russell Davies | 'Russell Davies'-res:Russell_T_Davies | 'shows'-dbo:place | 'related'-dbo:related | 'created'-dbo:creator","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/creator> <http://dbpedia.org/resource/Russell_T_Davies> . ?uri <http://dbpedia.org/ontology/related> ?x . }" "What is the territory of the conflict whose commander is Feng Zicai? | 'Feng Zicai'-res:Feng_Zicai | 'territory'-dbo:territory | 'conflict'-dbo:battle | 'commander'-dbo:commander","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/commander> <http://dbpedia.org/resource/Feng_Zicai> . ?x <http://dbpedia.org/ontology/territory> ?uri . }" -"Which club of Michael Springer is also the parent organization of Syracuse University press ? | 'Michael Springer'-res:Michael_Springer | 'Syracuse University press'-res:Syracuse_University_Press | 'club'-dbo:club | 'parent organization'-dbp:parentOrganization"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Michael_Springer> <http://dbpedia.org/ontology/club> ?uri . <http://dbpedia.org/resource/Syracuse_University_Press> <http://dbpedia.org/property/parentOrganization> ?uri} " -"Which company created BASIC and Language Integrated Query ? | 'BASIC'-res:BASIC | 'Language Integrated Query'-res:Language_Integrated_Query | 'company'-dbo:company | 'created'-dbo:designer","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/BASIC> <http://dbpedia.org/property/designer> ?uri . <http://dbpedia.org/resource/Language_Integrated_Query> <http://dbpedia.org/ontology/company> ?uri . }" -"Whihc successor of McDonnell Douglas was built bu Delta 3 ? | 'whihc successor'-res:The_Successor_(film) | 'McDonnell Douglas'-res:McDonnell_Douglas | 'bu Delta 3'-res:Bharathiar_University | 'built'-dbo:numberBuilt"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/McDonnell_Douglas> <http://dbpedia.org/ontology/numberBuilt> ?uri . <http://dbpedia.org/resource/Bharathiar_University> <http://dbpedia.org/property/builder> ?uri} " -"Where did some of the matches take place where Columbus Crew SC played? | 'SC'-res:SC | 'Columbus Crew'-res:Columbus_Crew_SC | 'matches'-dbp:matches | 'place'-dbo:place | 'played'-dbo:combatant","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/city> <http://dbpedia.org/resource/Columbus_Crew_SC> . ?x <http://dbpedia.org/property/tenants> ?uri . }" +"Which club of Michael Springer is also the parent organization of Syracuse University press ? | 'Michael Springer'-res:Michael_Springer | 'Syracuse University press'-res:Syracuse_University_Press | 'club'-dbo:club | 'parent organization'-dbp:parentOrganization"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Michael_Springer> <http://dbpedia.org/property/parentOrganization> ?uri . <http://dbpedia.org/resource/Syracuse_University_Press> <http://dbpedia.org/ontology/club> ?uri} " +"Which company created BASIC and Language Integrated Query ? | 'BASIC'-res:BASIC | 'Language Integrated Query'-res:Language_Integrated_Query | 'company'-dbo:company | 'created'-dbo:designer","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/BASIC> <http://dbpedia.org/ontology/designer> ?uri . <http://dbpedia.org/resource/Language_Integrated_Query> <http://dbpedia.org/property/founded> ?uri . }" +"Whihc successor of McDonnell Douglas was built bu Delta 3 ? | 'whihc successor'-res:The_Successor_(film) | 'McDonnell Douglas'-res:McDonnell_Douglas | 'bu Delta 3'-res:Bharathiar_University | 'built'-dbo:numberBuilt"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/McDonnell_Douglas> <http://dbpedia.org/property/successor> ?uri . <http://dbpedia.org/resource/Bharathiar_University> <http://dbpedia.org/ontology/builder> ?uri} " +"Where did some of the matches take place where Columbus Crew SC played? | 'SC'-res:SC | 'Columbus Crew'-res:Columbus_Crew_SC | 'matches'-dbp:matches | 'place'-dbo:place | 'played'-dbo:combatant","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/city> <http://dbpedia.org/resource/Columbus_Crew_SC> . ?x <http://dbpedia.org/property/matches> ?uri . }" "Count the number of cities around the American Mediterranean Sea? | 'American Mediterranean Sea'-res:Organization_of_American_States | 'American Mediterranean Sea'-res:American_Mediterranean_Sea | 'count'-dbo:type | 'cities'-dbp:cities | ''-dbo:country","SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/American_Mediterranean_Sea> <http://dbpedia.org/property/cities> ?uri . }" -"Who produced the TV shows for Fremantle Media? | 'Fremantle Media'-res:FremantleMedia | 'produced'-dbo:manufacturer","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/publisher> <http://dbpedia.org/resource/FremantleMedia> . ?x <http://dbpedia.org/ontology/manufacturer> ?uri . }" +"Who produced the TV shows for Fremantle Media? | 'Fremantle Media'-res:FremantleMedia | 'produced'-dbo:manufacturer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/producer> <http://dbpedia.org/resource/FremantleMedia> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" "What is the home stadium of the soccer club seasons whose chairman is Merritt Paulson? | 'soccer club seasons'-res:Mooroolbark_Soccer_Club | 'Merritt Paulson'-res:Merritt_Paulson | 'home stadium'-dbp:ground | 'chairman'-dbo:chairman","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/chairman> <http://dbpedia.org/resource/Merritt_Paulson> . ?x <http://dbpedia.org/ontology/homeStadium> ?uri . }" "How many movies did Michael Deeley produce? | 'Michael Deeley'-res:Michael_Deeley | 'produce'-dbp:producer | 'movie'-dbo:Film","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/producer> <http://dbpedia.org/resource/Michael_Deeley> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" -"What awards have been given to the anyone who raced in the Lawrence Realization Stakes? | 'Lawrence Realization Stakes'-res:Lawrence_Realization_Stakes | 'race'-dbp:race | 'awards'-dbo:honours","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lawrence_Realization_Stakes> <http://dbpedia.org/property/race> ?x . ?x <http://dbpedia.org/ontology/award> ?uri . }" -"Count the number of movies whose editors were born in UK? | 'UK'-res:United_Kingdom | 'count'-dbo:country | 'movies'-dbo:film | 'editors'-dbo:editor | 'born'-dbo:birthPlace"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/United_Kingdom> . ?uri <http://dbpedia.org/property/editing> ?x }" -"What is the television show whose cast members are Jeff Conaway and Jason Carter? | 'Jeff Conaway'-res:Jeff_Conaway | 'Jason Carter'-res:Jason_Carter_(actor) | 'television show'-dbo:transmission | 'cast members'-dbo:type","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/starring> <http://dbpedia.org/resource/Jeff_Conaway> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" -"Who founded the city at the end of the Pittsburgh Line route? | 'Pittsburgh Line'-res:Pittsburgh_Line | 'founded'-dbo:founder | 'city'-dbo:city | 'end'-dbp:end","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pittsburgh_Line> <http://dbpedia.org/ontology/founder> ?x . ?x <http://dbpedia.org/property/foundation> ?uri . }" -"How many games have a publisher based in US? | 'US'-res:United_States | 'games'-dbo:games | 'publisher'-dbo:publisher | 'based'-dbo:origin","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/origin> <http://dbpedia.org/resource/United_States> . ?uri <http://dbpedia.org/property/publisher> ?x . }" +"What awards have been given to the anyone who raced in the Lawrence Realization Stakes? | 'Lawrence Realization Stakes'-res:Lawrence_Realization_Stakes | 'race'-dbp:race | 'awards'-dbo:honours","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/race> <http://dbpedia.org/resource/Lawrence_Realization_Stakes> . ?x <http://dbpedia.org/ontology/award> ?uri . }" +"Count the number of movies whose editors were born in UK? | 'UK'-res:United_Kingdom | 'count'-dbo:country | 'movies'-dbo:film | 'editors'-dbo:editor | 'born'-dbo:birthPlace","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/United_Kingdom> . ?uri <http://dbpedia.org/property/editing> ?x . }" +"What is the television show whose cast members are Jeff Conaway and Jason Carter? | 'Jeff Conaway'-res:Jeff_Conaway | 'Jason Carter'-res:Jason_Carter_(actor) | 'television show'-dbo:transmission | 'cast members'-dbo:type","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/starring> <http://dbpedia.org/resource/Jeff_Conaway> . ?uri <http://dbpedia.org/ontology/producer> <http://dbpedia.org/resource/Jason_Carter_(actor)> . }" +"Who founded the city at the end of the Pittsburgh Line route? | 'Pittsburgh Line'-res:Pittsburgh_Line | 'founded'-dbo:founder | 'city'-dbo:city | 'end'-dbp:end","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pittsburgh_Line> <http://dbpedia.org/property/end> ?x . ?x <http://dbpedia.org/ontology/foundation> ?uri . }" +"How many games have a publisher based in US? | 'US'-res:United_States | 'games'-dbo:games | 'publisher'-dbo:publisher | 'based'-dbo:origin","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/United_States> . ?uri <http://dbpedia.org/property/publisher> ?x . }" "How many people have played for the NBA? | 'NBA'-res:National_Basketball_Association | 'played'-dbo:participant","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/team> <http://dbpedia.org/resource/National_Basketball_Association> . }" -"What is the nationality of the golf player who won the 2002 Players Championship ? | '2002 Players Championship'-res:2002_Players_Championship | 'nationality'-dbo:nationality | 'golf player'-dbo:participant | 'won'-dbo:award","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/prizes> <http://dbpedia.org/resource/2002_Players_Championship> . ?x <http://dbpedia.org/property/nationality> ?uri . }" -"Who penned Emma and Jane Austen in Manhatten? | 'Jane Austen in Manhatten'-res:Jane_Austen_in_Manhattan | 'Emma'-res:Emma_(novel) | 'penned'-dbo:colour","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/publisher> <http://dbpedia.org/resource/Jane_Austen_in_Manhattan> . ?uri <http://dbpedia.org/property/author> <http://dbpedia.org/resource/Emma_(novel)> . }" -"Where did the people canonized by John Paul II die? | 'John Paul II'-res:Pope_John_Paul_II | 'canonized by'-dbp:canonizedBy | 'die'-dbp:deathPlace","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/canonizedBy> <http://dbpedia.org/resource/Pope_John_Paul_II> . ?x <http://dbpedia.org/ontology/deathPlace> ?uri . }" -"Who has produced movies that have a James Horner score? | 'James Horner score'-res:James_Horner | 'produced'-dbo:wineProduced | 'movies'-dbo:film","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/director> <http://dbpedia.org/resource/James_Horner> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" -"Which shows are voiced be US citizens? | 'US'-res:United_States | 'shows'-dbo:place | 'voiced'-dbo:state | 'citizens'-dbp:country","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/nationality> <http://dbpedia.org/resource/United_States> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" -"Count the different places where the people died, who were born in England? | 'died,'-res:Wulfstan_(died_1095) | 'England'-res:England | 'born'-dbp:placeOfBirth | 'died'-dbp:placeOfDeath","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/England> . ?x <http://dbpedia.org/property/placeOfBirth> ?uri . }" -"What are some relatives of Battle of the Bulge veterans? | 'Battle of the Bulge veterans'-res:Battle_of_the_Bulge_(film) | 'relatives'-dbo:languageFamily","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/Battle_of_the_Bulge_(film)> . ?x <http://dbpedia.org/ontology/relation> ?uri . }" -"Who made the Y block engine and the SHO V8 engine? | 'Y'-res:Y | 'SHO'-res:Sho | 'V8 engine'-res:V8_engine | 'V8'-res:V8_(beverage) | 'SHO engine'-res:Ford_SHO_V8_engine | 'made'-dbo:manufacturer | 'made'-dbo:manufacturer","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Y_block_engine> <http://dbpedia.org/ontology/manufacturer> ?uri . <http://dbpedia.org/resource/Sho_V8_engine> <http://dbpedia.org/property/engine> ?uri . }" +"What is the nationality of the golf player who won the 2002 Players Championship ? | '2002 Players Championship'-res:2002_Players_Championship | 'nationality'-dbo:nationality | 'golf player'-dbo:participant | 'won'-dbo:award"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/2002_Players_Championship> <http://dbpedia.org/property/nationality> ?uri } " +"Who penned Emma and Jane Austen in Manhatten? | 'Jane Austen in Manhatten'-res:Jane_Austen_in_Manhattan | 'Emma'-res:Emma_(novel) | 'penned'-dbo:colour","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jane_Austen_in_Manhattan> <http://dbpedia.org/ontology/author> ?uri . <http://dbpedia.org/resource/Emma_(novel)> <http://dbpedia.org/property/writer> ?uri . }" +"Where did the people canonized by John Paul II die? | 'John Paul II'-res:Pope_John_Paul_II | 'canonized by'-dbp:canonizedBy | 'die'-dbp:deathPlace","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/canonizedBy> <http://dbpedia.org/resource/Pope_John_Paul_II> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}" +"Who has produced movies that have a James Horner score? | 'James Horner score'-res:James_Horner | 'produced'-dbo:wineProduced | 'movies'-dbo:film","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/music> <http://dbpedia.org/resource/James_Horner> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" +"Which shows are voiced be US citizens? | 'US'-res:United_States | 'shows'-dbo:place | 'voiced'-dbo:state | 'citizens'-dbp:country","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/United_States> . ?uri <http://dbpedia.org/property/voice> ?x . }" +"Count the different places where the people died, who were born in England? | 'died,'-res:Wulfstan_(died_1095) | 'England'-res:England | 'born'-dbp:placeOfBirth | 'died'-dbp:placeOfDeath","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/birthPlace> <http://dbpedia.org/resource/England> . ?x <http://dbpedia.org/ontology/deathPlace> ?uri . }" +"What are some relatives of Battle of the Bulge veterans? | 'Battle of the Bulge veterans'-res:Battle_of_the_Bulge_(film) | 'relatives'-dbo:languageFamily","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/Battle_of_the_Bulge> . ?x <http://dbpedia.org/ontology/relation> ?uri . }" +"Who made the Y block engine and the SHO V8 engine? | 'Y'-res:Y | 'SHO'-res:Sho | 'V8 engine'-res:V8_engine | 'V8'-res:V8_(beverage) | 'SHO engine'-res:Ford_SHO_V8_engine | 'made'-dbo:manufacturer | 'made'-dbo:manufacturer","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Y_Block_engine> <http://dbpedia.org/ontology/manufacturer> ?uri . <http://dbpedia.org/resource/Sho> <http://dbpedia.org/property/engine> ?uri . }" "How many different genres of games are produced by Blizzard? | 'blizzard'-res:Blizzard_Entertainment | 'produced'-dbo:developer | 'genre'-dbp:genre","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/developer> <http://dbpedia.org/resource/Blizzard_Entertainment> . ?x <http://dbpedia.org/property/genre> ?uri . }" -"How many things are located in Ridgewood, New Jersey? | 'Ridgewood, New Jersey'-res:Ridgewood,_New_Jersey | 'located'-dbo:locatedInArea","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/locatedInArea> <http://dbpedia.org/resource/Ridgewood> . }" +"How many things are located in Ridgewood, New Jersey? | 'Ridgewood, New Jersey'-res:Ridgewood,_New_Jersey | 'located'-dbo:locatedInArea","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/locatedInArea> <http://dbpedia.org/resource/Ridgewood,_New_Jersey> . }" "How many times has Jeff Conaway been casted? | 'Jeff Conaway'-res:Jeff_Conaway | 'casted'-dbo:starring","SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Jeff_Conaway> <http://dbpedia.org/ontology/starring> ?uri . }" -"who are some miss michigan usa? | 'michigan usa'-res:Miss_Michigan_USA"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Miss_Michigan_USA> <http://dbpedia.org/property/language> ?uri } " -"What is the regional radio sports network associated with? | 'regional radio sports network'-res:Regional_Radio_Sports_Network | 'associated'-dbo:associate"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/associatedRadioStation> <http://dbpedia.org/resource/Regional_Radio_Sports_Network> } " +"who are some miss michigan usa? | 'michigan usa'-res:Miss_Michigan_USA"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Miss_Michigan_USA> <http://dbpedia.org/property/city> ?uri } " +"What is the regional radio sports network associated with? | 'regional radio sports network'-res:Regional_Radio_Sports_Network | 'associated'-dbo:associate"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/area> <http://dbpedia.org/resource/Regional_Radio_Sports_Network> } " "List the fields of Sylvain Lvi ? | 'Sylvain Lvi'-res:LVI | 'fields'-dbo:stadium"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Sylvain_LVI> <http://dbpedia.org/property/fields> ?uri } " -"Where do the airlines garrisoned at Manchester airport fly to? | 'Manchester airport'-res:Manchester_Airport | 'airlines'-dbo:icaoAirlineCode | 'garrisoned'-dbo:garrison | 'fly'-dbp:speed","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/garrison> <http://dbpedia.org/resource/Manchester_Airport> . ?x <http://dbpedia.org/property/destinations> ?uri . }" -"Who are the associate musical artists of Dalma Kovcs ? | 'Dalma Kovcs'-res:Dalma_Kovács | 'associate musical'-dbo:associatedMusicalArtist"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dalma_Kovács> <http://dbpedia.org/property/associatedMusicalArtist> ?uri } " -"Count the number of different religions that field marshals have followed? | 'count'-dbo:time | 'religions'-dbo:religion | 'field marshals'-dbo:stadium","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/profession> <http://dbpedia.org/resource/Field_Marshal> . ?x <http://dbpedia.org/ontology/religion> ?uri . }" -"What cars were built upon the cars which were assembled in Canada? | 'Canada'-res:Canada | 'cars'-dbo:management | 'built'-dbo:ground | 'cars'-dbo:management | 'assembled'-dbp:assembly","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/assembly> <http://dbpedia.org/resource/Canada> . ?x <http://dbpedia.org/ontology/manufacturer> ?uri . }" -"How many guests have been there on broadway? | 'on broadway'-res:On_Broadway_(Smash) | 'guests'-dbp:guests","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/archway> <http://dbpedia.org/resource/On_Broadway_(Smash)> . ?x <http://dbpedia.org/property/guests> ?uri . }" -"How many factions have fought when Egushawa was a commander? | 'Egushawa'-res:Egushawa | 'factions'-dbo:movement | 'fought'-dbo:type | 'commander'-dbo:commander","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/commander> <http://dbpedia.org/resource/Egushawa> . ?x <http://dbpedia.org/property/combatant> ?uri . }" +"Where do the airlines garrisoned at Manchester airport fly to? | 'Manchester airport'-res:Manchester_Airport | 'airlines'-dbo:icaoAirlineCode | 'garrisoned'-dbo:garrison | 'fly'-dbp:speed","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/garrison> <http://dbpedia.org/resource/Manchester_Airport> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Airline>}" +"Who are the associate musical artists of Dalma Kovcs ? | 'Dalma Kovcs'-res:Dalma_Kovács | 'associate musical'-dbo:associatedMusicalArtist"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dalma_Kovács> <http://dbpedia.org/ontology/associatedMusicalArtist> ?uri } " +"Count the number of different religions that field marshals have followed? | 'count'-dbo:time | 'religions'-dbo:religion | 'field marshals'-dbo:stadium","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/fields> <http://dbpedia.org/resource/Field_Marshal> . ?x <http://dbpedia.org/ontology/religion> ?uri . }" +"What cars were built upon the cars which were assembled in Canada? | 'Canada'-res:Canada | 'cars'-dbo:management | 'built'-dbo:ground | 'cars'-dbo:management | 'assembled'-dbp:assembly","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/assembly> <http://dbpedia.org/resource/Canada> . ?x <http://dbpedia.org/ontology/basedOn> ?uri . }" +"How many guests have been there on broadway? | 'on broadway'-res:On_Broadway_(Smash) | 'guests'-dbp:guests","SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/On_Broadway_(Smash)> <http://dbpedia.org/property/guests> ?uri . }" +"How many factions have fought when Egushawa was a commander? | 'Egushawa'-res:Egushawa | 'factions'-dbo:movement | 'fought'-dbo:type | 'commander'-dbo:commander","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/commander> <http://dbpedia.org/resource/Egushawa> . ?x <http://dbpedia.org/ontology/combatant> ?uri . }" "What is the layout of the automobiles designed by Olivier Boulay? | 'Olivier Boulay'-res:Olivier_Boulay | 'layout'-dbo:layout | 'automobiles'-dbo:vehicle | 'designed'-dbo:designer","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/designer> <http://dbpedia.org/resource/Olivier_Boulay> . ?x <http://dbpedia.org/ontology/layout> ?uri . }" "What people were born in Ridgewood, New Jersey? | 'Ridgewood, New Jersey'-res:Ridgewood,_New_Jersey | 'born'-dbo:birthPlace","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Ridgewood,_New_Jersey> . }" -"Who have rented the stadium operated by Maple Leaf S&E? | 'Maple Leaf S&E'-res:Maple_Leaf_Sports_&_Entertainment | 'rented'-dbp:center | 'stadium'-dbo:stadium | 'operated'-dbo:staff","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/operator> <http://dbpedia.org/resource/Maple_Leaf_Sports_&_Entertainment> . ?x <http://dbpedia.org/property/tenants> ?uri . }" +"Who have rented the stadium operated by Maple Leaf S&E? | 'Maple Leaf S&E'-res:Maple_Leaf_Sports_&_Entertainment | 'rented'-dbp:center | 'stadium'-dbo:stadium | 'operated'-dbo:staff","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/operator> <http://dbpedia.org/resource/Maple_Leaf_Sports_&_Entertainment> . ?x <http://dbpedia.org/ontology/tenant> ?uri . }" "What are the main interests of Timothy Morton? | 'Timothy Morton'-res:Timothy_Morton | 'main interests'-dbp:mainInterests"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Timothy_Morton> <http://dbpedia.org/property/mainInterests> ?uri } " "Count the awards won by the people who graduated from the National and Kapodistrian University of Athens. | 'National'-res:National | 'Kapodistrian University of Athens'-res:National_and_Kapodistrian_University_of_Athens | 'count'-dbo:country | 'awards'-dbo:award | 'won'-dbo:city | 'graduated'-dbo:effectiveRadiatedPower","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/almaMater> <http://dbpedia.org/resource/National_and_Kapodistrian_University_of_Athens> . ?x <http://dbpedia.org/property/awards> ?uri . }" -"How many games are played at universities affiliated with the Association of Southeast Asian Institutions of Higher Learning? | 'universities'-res:Universities_Ireland | 'Association of Southeast Asian Institutions of Higher Learning'-res:Association_of_Southeast_Asian_Institutions_of_Higher_Learning | 'games'-dbo:games | 'played'-dbo:portrayer | 'affiliated'-dbo:related","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/affiliations> <http://dbpedia.org/resource/Association_of_Southeast_Asian_Institutions_> of_Higher_Learning. ?x <http://dbpedia.org/ontology/genre> ?uri . }" -"Who studied in universities located in suburbs? | 'universities'-res:Universities_Ireland | 'suburbs'-res:Suburbs_(The_Suburbs_album) | 'studied'-dbo:course | 'located'-dbo:position","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/campus> <http://dbpedia.org/resource/Suburb> . ?uri <http://dbpedia.org/property/education> ?x . }" +"How many games are played at universities affiliated with the Association of Southeast Asian Institutions of Higher Learning? | 'universities'-res:Universities_Ireland | 'Association of Southeast Asian Institutions of Higher Learning'-res:Association_of_Southeast_Asian_Institutions_of_Higher_Learning | 'games'-dbo:games | 'played'-dbo:portrayer | 'affiliated'-dbo:related","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/affiliation> <http://dbpedia.org/resource/Association_of_Southeast_Asian_Institutions_Of_Higher_Learning> . ?x <http://dbpedia.org/ontology/computingPlatform> ?uri . }" +"Who studied in universities located in suburbs? | 'universities'-res:Universities_Ireland | 'suburbs'-res:Suburbs_(The_Suburbs_album) | 'studied'-dbo:course | 'located'-dbo:position","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/campus> <http://dbpedia.org/resource/Suburb> . ?uri <http://dbpedia.org/property/campus> ?x . }" "What all are written in the C programming language? | 'C programming language'-res:C_(programming_language) | 'written'-dbp:writtenIn | 'programming language'-dbp:programmingLanguage","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/programmingLanguage> <http://dbpedia.org/resource/C_(programming_language)> . }" -"Count the number of artists in the Cirque du Soleil discography? | 'Cirque du Soleil discography'-res:Cirque_du_Soleil_discography | 'count'-dbo:type | 'artists'-dbp:artist","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/instruments> <http://dbpedia.org/resource/Cirque_du_Soleil_discography> . ?x <http://dbpedia.org/property/artist> ?uri . }" +"Count the number of artists in the Cirque du Soleil discography? | 'Cirque du Soleil discography'-res:Cirque_du_Soleil_discography | 'count'-dbo:type | 'artists'-dbp:artist","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/artist> <http://dbpedia.org/resource/Cirque_du_Soleil_discography> . ?uri <http://dbpedia.org/property/artist> ?x . }" "What are the movies whose director is Orson Welles? | 'Orson Welles'-res:Orson_Welles | 'director'-dbp:director | 'movie'-dbo:Film","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/director> <http://dbpedia.org/resource/Orson_Welles> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" -"which planet was discovered by Urbain Le Verrier? | 'Urbain Le Verrier'-res:Urbain_Le_Verrier | 'discovered by'-dbo:discoverer"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/discoverer> <http://dbpedia.org/resource/Urbain_Le_Verrier> } " -"?What are the airline hubs of Cascade Airways | 'What'-res:What | 'Cascade Airways'-res:Cascade_Airways | 'hubs'-dbp:hubs"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cascade_Airways> <http://dbpedia.org/property/hubs> ?uri } " -"How many rivers are crossed by different Box Girder bridges? | 'Box Girder bridge'-res:Box_girder_bridge | 'rivers'-dbo:river | 'crossed'-dbo:crosses","SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Box_girder_bridge> <http://dbpedia.org/ontology/crosses> ?uri . }" -"Count the number of members of the organization which have Austria as one of the member ? | 'Austria'-res:Austria | 'count'-dbo:country | 'members'-dbo:family | 'organization'-dbp:house | 'member'-dbo:membership"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/party> <http://dbpedia.org/resource/Austria> . ?x <http://dbpedia.org/property/members> ?uri }" -"List the other members of the team where Jason Hayne currently plays? | 'Jason Hayne'-res:Jason_Hayne | 'members'-dbo:part | 'team'-dbo:team | 'plays'-dbo:plays","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jason_Hayne> <http://dbpedia.org/ontology/formerTeam> ?x . ?x <http://dbpedia.org/property/currentMembers> ?uri . }" -"How many groups have fought in wars where Richard Taylor fought too? | 'Richard Taylor'-res:Richard_Taylor_(colonel) | 'fought'-dbo:type | 'wars'-dbp:battles | 'fought'-dbo:type","SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Richard_Taylor_(colonel)> <http://dbpedia.org/property/battles> ?x . ?x <http://dbpedia.org/ontology/territory> ?uri . }" -"What are the albums whose artists have performed with the Tangerine Dream? | 'Tangerine Dream'-res:Tangerine_Dream | 'albums'-dbo:album | 'artists'-dbp:artist | 'performed'-dbo:artist","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/associatedMusicalArtist> <http://dbpedia.org/resource/Tangerine_Dream> . ?uri <http://dbpedia.org/property/artist> ?x . }" +"which planet was discovered by Urbain Le Verrier? | 'Urbain Le Verrier'-res:Urbain_Le_Verrier | 'discovered by'-dbo:discoverer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/discoverer> <http://dbpedia.org/resource/Urbain_Le_Verrier> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Planet>}" +"?What are the airline hubs of Cascade Airways | 'What'-res:What | 'Cascade Airways'-res:Cascade_Airways | 'hubs'-dbp:hubs"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cambodian_Democrats> <http://dbpedia.org/property/hubs> ?uri } " +"How many rivers are crossed by different Box Girder bridges? | 'Box Girder bridge'-res:Box_girder_bridge | 'rivers'-dbo:river | 'crossed'-dbo:crosses","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/crosses> <http://dbpedia.org/resource/Box_girder_bridge> . ?x <http://dbpedia.org/ontology/river> ?uri . }" +"Count the number of members of the organization which have Austria as one of the member ? | 'Austria'-res:Austria | 'count'-dbo:country | 'members'-dbo:family | 'organization'-dbp:house | 'member'-dbo:membership"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/party> <http://dbpedia.org/resource/Austria> . ?x <http://dbpedia.org/property/membership> ?uri }" +"List the other members of the team where Jason Hayne currently plays? | 'Jason Hayne'-res:Jason_Hayne | 'members'-dbo:part | 'team'-dbo:team | 'plays'-dbo:plays","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/currentclub> <http://dbpedia.org/resource/Jason_Hayne> . ?x <http://dbpedia.org/ontology/team> ?uri . }" +"How many groups have fought in wars where Richard Taylor fought too? | 'Richard Taylor'-res:Richard_Taylor_(colonel) | 'fought'-dbo:type | 'wars'-dbp:battles | 'fought'-dbo:type","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/Richard_Taylor_(colonel)> . ?x <http://dbpedia.org/ontology/combatant> ?uri . }" +"What are the albums whose artists have performed with the Tangerine Dream? | 'Tangerine Dream'-res:Tangerine_Dream | 'albums'-dbo:album | 'artists'-dbp:artist | 'performed'-dbo:artist","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/associatedMusicalArtist> <http://dbpedia.org/resource/Tangerine_Dream> . ?x <http://dbpedia.org/property/album> ?uri . }" "List some writers which speak one of the Germanic languages. | 'Germanic languages'-res:Germanic_languages | 'writers'-dbo:writer | 'speak'-dbo:language","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/language> <http://dbpedia.org/resource/Germanic_languages> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Writer>}" "ITV employes how many people? | 'ITV'-res:ITV_(TV_network) | 'employes'-dbp:employer","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/employer> <http://dbpedia.org/resource/ITV_(TV_network)> . }" -"What has Carl Sagan written his books about? | 'Carl Sagan'-res:Carl_Sagan | 'written'-dbo:writer | 'books'-dbo:volume","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/writer> <http://dbpedia.org/resource/Carl_Sagan> . ?x <http://dbpedia.org/property/subject> ?uri . }" +"What has Carl Sagan written his books about? | 'Carl Sagan'-res:Carl_Sagan | 'written'-dbo:writer | 'books'-dbo:volume","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/author> <http://dbpedia.org/resource/Carl_Sagan> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book>}" "Who voiced in Peanuts Motion Comics and The Peanuts Movie? | 'Peanuts Motion Comics'-res:Peanuts_Motion_Comics | 'The Peanuts Movie'-res:The_Peanuts_Movie | 'voiced'-dbp:voice","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/voice> <http://dbpedia.org/resource/Peanuts_Motion_Comics> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" -"Who is the owner of the bank where Thomas Secunda works ? | 'Thomas Secunda'-res:Thomas_Secunda | 'owner'-dbo:owner | 'bank'-dbo:order | 'works'-dbo:language"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Thomas_Secunda> <http://dbpedia.org/ontology/owner> ?uri } " -"Who founded a company which served Mid Wales ? | 'Mid Wales'-res:Mid_Wales | 'served'-dbo:regionServed | 'founded'-dbo:foundedBy","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/regionServed> <http://dbpedia.org/resource/Mid_Wales> . ?x <http://dbpedia.org/ontology/foundedBy> ?uri . }" -"British people have edited which movies? | 'British'-res:United_Kingdom | 'british'-dbo:animal | 'edited'-dbo:editor | 'movies'-dbo:film","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/United_Kingdom> . ?uri <http://dbpedia.org/property/editing> ?x . }" -"Who are some US colonels? | 'US'-res:United_States | 'colonels'-dbo:distance"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/place> <http://dbpedia.org/resource/United_States> } " +"Who is the owner of the bank where Thomas Secunda works ? | 'Thomas Secunda'-res:Thomas_Secunda | 'owner'-dbo:owner | 'bank'-dbo:order | 'works'-dbo:language","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Thomas_Secunda> <http://dbpedia.org/ontology/employer> ?x . ?x <http://dbpedia.org/property/owner> ?uri . }" +"Who founded a company which served Mid Wales ? | 'Mid Wales'-res:Mid_Wales | 'served'-dbo:regionServed | 'founded'-dbo:foundedBy","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/regionServed> <http://dbpedia.org/resource/Mid_Wales> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}" +"British people have edited which movies? | 'British'-res:United_Kingdom | 'british'-dbo:animal | 'edited'-dbo:editor | 'movies'-dbo:film","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/nationality> <http://dbpedia.org/resource/British_people> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" +"Who are some US colonels? | 'US'-res:United_States | 'colonels'-dbo:distance","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/birthPlace> <http://dbpedia.org/resource/United_States> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MilitaryPerson>}" "Where did Steve Romeo dies ? | 'Steve Romeo'-res:Steve_Romeo | 'dies'-dbo:deathPlace"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Steve_Romeo> <http://dbpedia.org/ontology/deathPlace> ?uri } " "How many universities are in the National Collegiate Athletic Association? | 'universities'-res:Universities_Ireland | 'National Collegiate Athletic Association'-res:National_Collegiate_Athletic_Association | 'athletic'-dbo:athletics","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/athletics> <http://dbpedia.org/resource/National_Collegiate_Athletic_Association> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/University>}" -"Which company developed the language designed by Lars Bak? | 'Lars Bak'-res:Lars_Bak_(computer_programmer) | 'company'-dbo:company | 'developed'-dbo:leader | 'language'-dbo:language | 'designed'-dbo:designer","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/designer> <http://dbpedia.org/resource/Lars_Bak_(computer_programmer)> . ?x <http://dbpedia.org/property/author> ?uri . }" -"Which country gave birth to the Lemberger LD20b and Start+Flug H101 aircrafts? | 'Lemberger LD20b'-res:Lemberger_LD20b | 'H101'-res:H101 | 'Start+Flug aircrafts'-res:Karnit_Flug | 'country'-dbo:country | 'birth'-dbo:origin","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lemberger_LD20b> <http://dbpedia.org/ontology/origin> ?uri . <http://dbpedia.org/resource/Start+Flug_H101> <http://dbpedia.org/property/birthPlace> ?uri . }" -"What are some things people born in Louisiana are famous for? | 'Louisiana'-res:Louisiana | 'born'-dbp:placeOfBirth | 'famous for'-dbp:knownFor","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Louisiana> . ?x <http://dbpedia.org/property/knownFor> ?uri . }" -"Who gave the musical score of 9 to 5 (musical) ? | '9 to 5 (musical)'-res:9_to_5_(musical) | 'musical'-dbo:musicBy"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/musicBy> <http://dbpedia.org/resource/9_to_5_(musical)> } " -"Count all that was built by a company whose leader is Kazuo Hirai? | 'Kazuo Hirai'-res:Kazuo_Hirai | 'count'-dbo:type | 'built'-dbo:numberBuilt | 'company'-dbo:company | 'leader'-dbo:leader","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/leader> <http://dbpedia.org/resource/Kazuo_Hirai> . ?uri <http://dbpedia.org/ontology/builder> ?x . }" +"Which company developed the language designed by Lars Bak? | 'Lars Bak'-res:Lars_Bak_(computer_programmer) | 'company'-dbo:company | 'developed'-dbo:leader | 'language'-dbo:language | 'designed'-dbo:designer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/designer> <http://dbpedia.org/resource/Lars_Bak_(computer_programmer)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}" +"Which country gave birth to the Lemberger LD20b and Start+Flug H101 aircrafts? | 'Lemberger LD20b'-res:Lemberger_LD20b | 'H101'-res:H101 | 'Start+Flug aircrafts'-res:Karnit_Flug | 'country'-dbo:country | 'birth'-dbo:origin","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lemberger_LD20b> <http://dbpedia.org/property/birthPlace> ?uri . <http://dbpedia.org/resource/H101> <http://dbpedia.org/ontology/origin> ?uri . }" +"What are some things people born in Louisiana are famous for? | 'Louisiana'-res:Louisiana | 'born'-dbp:placeOfBirth | 'famous for'-dbp:knownFor","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/birthPlace> <http://dbpedia.org/resource/Louisiana> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}" +"Who gave the musical score of 9 to 5 (musical) ? | '9 to 5 (musical)'-res:9_to_5_(musical) | 'musical'-dbo:musicBy"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/9_to_5_(musical)> <http://dbpedia.org/property/musicBy> ?uri } " +"Count all that was built by a company whose leader is Kazuo Hirai? | 'Kazuo Hirai'-res:Kazuo_Hirai | 'count'-dbo:type | 'built'-dbo:numberBuilt | 'company'-dbo:company | 'leader'-dbo:leader","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/keyPerson> <http://dbpedia.org/resource/Kazuo_Hirai> . ?uri <http://dbpedia.org/property/builder> ?x . }" "What is the serving railway line of Rostov-Glavny ? | 'Rostov-Glavny'-res:Rostov-Glavny | 'serving'-dbo:servingRailwayLine | 'railway'-dbo:railwayPlatforms"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Rostov-Glavny> <http://dbpedia.org/ontology/servingRailwayLine> ?uri } " "Players from how many teams have participated in the National Hockey League? | 'National Hockey League'-res:National_Hockey_League | 'players'-dbo:participant | 'teams'-dbp:teams | 'participated'-dbo:participant","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/league> <http://dbpedia.org/resource/National_Hockey_League> . ?x <http://dbpedia.org/ontology/team> ?uri . }" -"How many things are people who died in St. Petersburg known for? | 'St Petersburg'-res:St._Petersburg,_Florida | 'died'-dbp:deathPlace","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/deathPlace> <http://dbpedia.org/resource/St._Petersburg,_Florida> . }" +"How many things are people who died in St. Petersburg known for? | 'St Petersburg'-res:St._Petersburg,_Florida | 'died'-dbp:deathPlace","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/deathPlace> <http://dbpedia.org/resource/St._Petersburg> . }" "In how many nations is Coconut a common food ingredient? | 'Coconut'-res:Coconut | 'common food ingredient'-res:Ingredient | 'nations'-dbo:kingdom","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/ingredient> <http://dbpedia.org/resource/Coconut> . ?x <http://dbpedia.org/ontology/country> ?uri . }" -"What country is Jeffrey Werleman from, which also has the American Mediterranean Sea? | 'Jeffrey Werleman from,'-res:Jeffrey_Vanan | 'American Mediterranean Sea'-res:Organization_of_American_States | 'American Mediterranean Sea'-res:American_Mediterranean_Sea | 'country'-dbo:country | ''-dbo:country"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jeffrey_Vanan> <http://dbpedia.org/ontology/operator> ?uri . <http://dbpedia.org/resource/American_Mediterranean_Sea> <http://dbpedia.org/property/country> ?uri} " -"List the television shows whose network's owning company is Turner Broadcasting System? | 'Turner Broadcasting System'-res:Turner_Broadcasting_System | 'television'-dbp:tv | 'shows'-dbo:place | 'network'-dbo:network | 'owning'-dbo:owningCompany | 'company'-dbo:company","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/owningCompany> <http://dbpedia.org/resource/Turner_Broadcasting_System> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" -"List the maintainers of Pandaruan Bridge? | 'Pandaruan Bridge'-res:Pandaruan_Bridge | 'maintainers'-dbo:maintainedBy"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pandaruan_Bridge> <http://dbpedia.org/ontology/maintainedBy> ?uri } " -"What are some rivers in Zambia which have a dam on them? | 'Zambia'-res:Zambia | 'rivers'-dbo:river | 'dam'-dbo:dam","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/dam> <http://dbpedia.org/resource/Zambia> . ?x <http://dbpedia.org/ontology/river> ?uri . }" +"What country is Jeffrey Werleman from, which also has the American Mediterranean Sea? | 'Jeffrey Werleman from,'-res:Jeffrey_Vanan | 'American Mediterranean Sea'-res:Organization_of_American_States | 'American Mediterranean Sea'-res:American_Mediterranean_Sea | 'country'-dbo:country | ''-dbo:country"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jeffrey_Vanan> <http://dbpedia.org/ontology/country> ?uri . <http://dbpedia.org/resource/American_Mediterranean_Sea> <http://dbpedia.org/property/origin> ?uri} " +"List the television shows whose network's owning company is Turner Broadcasting System? | 'Turner Broadcasting System'-res:Turner_Broadcasting_System | 'television'-dbp:tv | 'shows'-dbo:place | 'network'-dbo:network | 'owning'-dbo:owningCompany | 'company'-dbo:company","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/owningCompany> <http://dbpedia.org/resource/Turner_Broadcasting_System> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" +"List the maintainers of Pandaruan Bridge? | 'Pandaruan Bridge'-res:Pandaruan_Bridge | 'maintainers'-dbo:maintainedBy"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pandaruan_Bridge> <http://dbpedia.org/property/maintainedBy> ?uri } " +"What are some rivers in Zambia which have a dam on them? | 'Zambia'-res:Zambia | 'rivers'-dbo:river | 'dam'-dbo:dam","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/dam> <http://dbpedia.org/resource/Zambia> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/River>}" "what does the cahora bassa flow into? | 'Cahora bassa'-res:Cahora_Bassa | 'flow'-dbp:inflow"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cahora_Bassa> <http://dbpedia.org/property/inflow> ?uri } " -"What is the alma mater of Fikret Orman? | 'Fikret Orman'-res:Fikret_Orman | 'alma mater'-dbo:almaMater"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Fikret_Orman> <http://dbpedia.org/property/almaMater> ?uri } " +"What is the alma mater of Fikret Orman? | 'Fikret Orman'-res:Fikret_Orman | 'alma mater'-dbo:almaMater"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Fikret_Orman> <http://dbpedia.org/ontology/almaMater> ?uri } " "Which company owns Evraz ? | 'Evraz'-res:Evraz | 'company'-dbo:owningCompany"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Evraz> <http://dbpedia.org/ontology/owningCompany> ?uri } " -"How many party leaders are there whose parties are headquartered in Berlin? | 'Berlin'-res:Berlin | 'headquarter'-dbo:headquarter | 'leaders'-dbo:leader","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/headquarter> <http://dbpedia.org/resource/Berlin> . ?uri <http://dbpedia.org/property/leader> ?x . }" -"Name a famous relative of barry voight | 'Barry voight'-res:Barry_Voight | 'name'-dbp:name | 'famous relative'-dbo:relative","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/relatives> <http://dbpedia.org/resource/Barry_Voight> . }" -"List places that are associated to cities in the state of Mecklenburg-Vorpommern. | 'Mecklenburg-Vorpommern'-res:Mecklenburg-Vorpommern | 'places'-dbo:district | 'associated'-dbo:team | 'cities'-dbo:country","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/district> <http://dbpedia.org/resource/Mecklenburg-Vorpommern> . ?x <http://dbpedia.org/property/associatedTown> ?uri . }" -"Which awards did the writer, who is the creator of Creature Comforts, won ? | 'Creature Comforts,'-res:Creature_Comforts | 'awards'-dbo:award | 'writer,'-dbo:writer | 'creator'-dbo:creator | 'won'-dbo:award","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Creature_Comforts> <http://dbpedia.org/property/creator> ?x . ?x <http://dbpedia.org/ontology/award> ?uri . }" -"In which areas are the radio stations of Monticello, Maine available too? | 'Monticello, Maine'-res:Monticello,_Maine | 'radio stations'-dbo:numberOfStations","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Monticello,_Maine> <http://dbpedia.org/ontology/numberOfStations> ?uri . }" -"Through how many labels has Katy B released her singles? | 'B'-res:B | 'Katy'-res:Katy | 'labels'-dbo:flag | 'released'-dbo:channel | 'singles'-dbo:slogan","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/artist> <http://dbpedia.org/resource/Katy_B._album> ?x . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Single>}" +"How many party leaders are there whose parties are headquartered in Berlin? | 'Berlin'-res:Berlin | 'headquarter'-dbo:headquarter | 'leaders'-dbo:leader","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Berlin> . ?x <http://dbpedia.org/ontology/leader> ?uri . }" +"Name a famous relative of barry voight | 'Barry voight'-res:Barry_Voight | 'name'-dbp:name | 'famous relative'-dbo:relative","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/relative> <http://dbpedia.org/resource/Barry_Voight> . }" +"List places that are associated to cities in the state of Mecklenburg-Vorpommern. | 'Mecklenburg-Vorpommern'-res:Mecklenburg-Vorpommern | 'places'-dbo:district | 'associated'-dbo:team | 'cities'-dbo:country","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/state> <http://dbpedia.org/resource/Mecklenburg-Vorpommern> . ?x <http://dbpedia.org/property/cities> ?uri . }" +"Which awards did the writer, who is the creator of Creature Comforts, won ? | 'Creature Comforts,'-res:Creature_Comforts | 'awards'-dbo:award | 'writer,'-dbo:writer | 'creator'-dbo:creator | 'won'-dbo:award","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/creator> <http://dbpedia.org/resource/Creature_Comforts> . ?x <http://dbpedia.org/property/awards> ?uri . }" +"In which areas are the radio stations of Monticello, Maine available too? | 'Monticello, Maine'-res:Monticello,_Maine | 'radio stations'-dbo:numberOfStations"," SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/area> <http://dbpedia.org/resource/Monticello,_Maine> . ?x <http://dbpedia.org/property/area> ?uri }" +"Through how many labels has Katy B released her singles? | 'B'-res:B | 'Katy'-res:Katy | 'labels'-dbo:flag | 'released'-dbo:channel | 'singles'-dbo:slogan","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/artist> <http://dbpedia.org/resource/Katy_B> . ?x <http://dbpedia.org/property/label> ?uri . }" "Name the sstadium of 2015 Pro Duta FC season ? | 'FC'-res:FC | '2015 Pro Duta season'-res:2015_Pro_Duta_FC_season | 'stadium'-dbp:stadium"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/2015_Pro_Duta_FC_season> <http://dbpedia.org/property/stadium> ?uri } " "Pointe d'Aveneyre belongs to which mountain range? | 'Pointe d'Aveneyre'-res:Pointe_d'Aveneyre | 'pointe d'-dbo:date | 'belongs'-dbo:date | 'mountain range'-dbo:mountainRange"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pointe_d'Aveneyre> <http://dbpedia.org/ontology/mountainRange> ?uri } " "Jerry Bock's musicals has been adapted from how many things? | 'Jerry bock'-res:Jerry_Bock | 'music'-dbp:music | 'adapted from'-dbo:basedOn","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Jerry_Bock> . ?x <http://dbpedia.org/ontology/basedOn> ?uri . }" "Count the movies edited by Mark Stevens (film editor) and were directed by Joel Schumacher? | 'Mark Stevens (film editor)'-res:Mark_Stevens_(film_editor) | 'Joel Schumacher'-res:Joel_Schumacher | 'edited by'-dbp:editing | 'directed by'-dbo:director","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/editing> <http://dbpedia.org/resource/Mark_Stevens_(film_editor)> . ?uri <http://dbpedia.org/ontology/director> <http://dbpedia.org/resource/Joel_Schumacher> . }" -"List the judge of the TV show whose one of the judge is Ludacris ? | 'TV'-res:Tv_test_pattern | 'Ludacris'-res:Ludacris | 'judge'-dbo:showJudge | 'show'-dbo:show | 'judge'-dbo:showJudge","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/judges> <http://dbpedia.org/resource/Ludacris> . ?x <http://dbpedia.org/ontology/judge> ?uri . }" +"List the judge of the TV show whose one of the judge is Ludacris ? | 'TV'-res:Tv_test_pattern | 'Ludacris'-res:Ludacris | 'judge'-dbo:showJudge | 'show'-dbo:show | 'judge'-dbo:showJudge","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/judges> <http://dbpedia.org/resource/Ludacris> . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" "Whose youth clubs used to participate in Argentine Primera Division? | 'Argentine Primera Division'-res:Argentina | 'Argentine Primera Division'-res:Argentine_Primera_División | 'Division'-dbp:league | 'youth clubs'-dbp:youthclubs","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/league> <http://dbpedia.org/resource/Argentine_Primera_División> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Youthclubs>}" -"List some people who were opponents of someone who was died by hanging? | 'opponents'-dbo:rival | 'died'-dbo:board | 'hanging'-dbo:configuration","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/deathPlace> <http://dbpedia.org/resource/Hanging> . ?x <http://dbpedia.org/property/opponent> ?uri . }" +"List some people who were opponents of someone who was died by hanging? | 'opponents'-dbo:rival | 'died'-dbo:board | 'hanging'-dbo:configuration","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/deathCause> <http://dbpedia.org/resource/Hanging> . ?x <http://dbpedia.org/ontology/opponent> ?uri . }" "From which country is Lawrence Okoye's nationality ? | 'Lawrence Okoye'-res:Lawrence_Okoye | 'country'-dbo:country | 'nationality'-dbp:nationality"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lawrence_Okoye> <http://dbpedia.org/property/nationality> ?uri } " "From which party is the politician who was selected in Barasat constituency? | 'Barasat constituency'-res:Barasat_(Lok_Sabha_constituency) | 'party'-dbo:party | 'politician'-dbo:party | 'selected'-dbo:name","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/party> <http://dbpedia.org/resource/Barasat_(Lok_Sabha_constituency)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Politician>}" -"Where did the genres originate, which were in the Harry and the Potters album? | 'Harry and the Potters'-res:Harry_and_the_Potters_(album) | 'genre'-dbo:genre | 'album'-dbo:stylisticOrigin","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/album> <http://dbpedia.org/resource/Harry_and_the_Potters_(album)> . ?x <http://dbpedia.org/property/genre> ?uri . }" -"Who was succeeded by Arthur Gegei as the office ho0lder ? | 'Arthur Gegei'-res:Arthur_%22Big_Boy%22_Spires | 'succeeded'-dbo:founder | 'office ho0lder'-dbo:arm","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/founder> <http://dbpedia.org/resource/Arthur_%22Big_Boy%22_Spires> . }" +"Where did the genres originate, which were in the Harry and the Potters album? | 'Harry and the Potters'-res:Harry_and_the_Potters_(album) | 'genre'-dbo:genre | 'album'-dbo:stylisticOrigin","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/album> <http://dbpedia.org/resource/Harry_and_the_Potters_(album)> . ?x <http://dbpedia.org/ontology/genre> ?uri . }" +"Who was succeeded by Arthur Gegei as the office ho0lder ? | 'Arthur Gegei'-res:Arthur_%22Big_Boy%22_Spires | 'succeeded'-dbo:founder | 'office ho0lder'-dbo:arm"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Arthur_Gégei> <http://dbpedia.org/ontology/successor> ?uri } " "Give me a count of movies whose editor is Mark Stevens? | 'Mark Stevens'-res:Mark_Stevens_(film_editor) | 'editor'-dbp:editing | 'movie'-dbo:Film","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/editing> <http://dbpedia.org/resource/Mark_Stevens_(film_editor)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" -"What is the academic discipline of the Journal of Cerebral Blood Flow & Metabolism and also an ingredient of the Ragout fin ? | 'Journal of Cerebral Blood Flow & Metabolism'-res:Journal_of_Cerebral_Blood_Flow_&_Metabolism | 'Ragout fin'-res:Ragout_fin | 'academic discipline'-dbo:academicDiscipline | 'ingredient'-dbo:ingredient"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Journal_of_Cerebral_Blood_Flow_&_Metabolism> <http://dbpedia.org/ontology/academicDiscipline> ?uri } " -"In what tv shows did Jason Carter act? | 'Jason Carter'-res:Jason_Carter | 'act'-dbo:starring"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Jason_Carter> } " -"To which sports team is Aubie the mascot? | 'Aubie'-res:Aubie | 'mascot'-dbp:mascot | 'sports team'-dbo:SportsTeam"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Aubie> <http://dbpedia.org/property/mascot> ?uri } " -"Which royal people are buried in Rome? | 'Rome'-res:Rome | 'buried'-dbp:placeOfBurial","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/placeOfBurial> <http://dbpedia.org/resource/Rome> . }" +"What is the academic discipline of the Journal of Cerebral Blood Flow & Metabolism and also an ingredient of the Ragout fin ? | 'Journal of Cerebral Blood Flow & Metabolism'-res:Journal_of_Cerebral_Blood_Flow_&_Metabolism | 'Ragout fin'-res:Ragout_fin | 'academic discipline'-dbo:academicDiscipline | 'ingredient'-dbo:ingredient"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Journal_of_Cerebral_Blood_Flow_&_Metabolism> <http://dbpedia.org/property/academicDiscipline> ?uri . <http://dbpedia.org/resource/Ragout_fin> <http://dbpedia.org/ontology/ingredient> ?uri} " +"In what tv shows did Jason Carter act? | 'Jason Carter'-res:Jason_Carter | 'act'-dbo:starring","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/starring> <http://dbpedia.org/resource/Jason_Carter> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" +"To which sports team is Aubie the mascot? | 'Aubie'-res:Aubie | 'mascot'-dbp:mascot | 'sports team'-dbo:SportsTeam","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/mascot> <http://dbpedia.org/resource/Aubie> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SportsTeam>}" +"Which royal people are buried in Rome? | 'Rome'-res:Rome | 'buried'-dbp:placeOfBurial","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/placeOfBurial> <http://dbpedia.org/resource/Rome> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Royalty>}" "Which parent company of the Cornell University Press is also the alma mater of the Mario Garca Menocal? | 'Cornell University Press'-res:Cornell_University_Press | 'Mario Garca Menocal'-res:Mario_García_Menocal | 'parent company'-dbp:parent | 'alma mater'-dbo:almaMater"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cornell_University_Press> <http://dbpedia.org/property/parent> ?uri . <http://dbpedia.org/resource/Mario_García_Menocal> <http://dbpedia.org/ontology/almaMater> ?uri} " -"Which religions are followed by people in England? | 'England'-res:England | 'religions'-dbo:religion","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/place> <http://dbpedia.org/resource/England> . ?x <http://dbpedia.org/ontology/religion> ?uri . }" +"Which religions are followed by people in England? | 'England'-res:England | 'religions'-dbo:religion","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/birthPlace> <http://dbpedia.org/resource/England> . ?x <http://dbpedia.org/ontology/religion> ?uri . }" "Where was MacKenzie Miller born? | 'MacKenzie Miller'-res:MacKenzie_Miller | 'born'-dbo:birthPlace"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/MacKenzie_Miller> <http://dbpedia.org/ontology/birthPlace> ?uri } " "What is the birth location of the pope who was canonized by Agatha of Sicily? | 'Agatha of Sicily'-res:Agatha_of_Sicily | 'birth location'-dbo:origin | 'canonized'-dbo:canonizedBy","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/canonizedBy> <http://dbpedia.org/resource/Agatha_of_Sicily> . ?x <http://dbpedia.org/ontology/birthPlace> ?uri . }" -"Which set of researchers won the Gold Medal of the Royal Astronomical Society award? | 'Gold Medal of the Royal Astronomical Society award'-res:Royal_Astronomical_Society | 'set'-dbo:type","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/award> <http://dbpedia.org/resource/Royal_Astronomical_Society> . ?x <http://dbpedia.org/property/fields> ?uri . }" +"Which set of researchers won the Gold Medal of the Royal Astronomical Society award? | 'Gold Medal of the Royal Astronomical Society award'-res:Royal_Astronomical_Society | 'set'-dbo:type","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/awards> <http://dbpedia.org/resource/Royal_Astronomical_Society> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}" "Give me the places where people who worked in Church of England died in ? | 'Church of England'-res:Church_of_England | 'work'-dbo:occupation | 'died in'-dbo:deathPlace","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/occupation> <http://dbpedia.org/resource/Church_of_England> . ?x <http://dbpedia.org/property/deathPlace> ?uri . }" -"where are renaissance centers located? | 'renaissance centers'-res:Renaissance_Center | 'located'-dbo:address"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Renaissance_Center> <http://dbpedia.org/property/locationCity> ?uri } " +"where are renaissance centers located? | 'renaissance centers'-res:Renaissance_Center | 'located'-dbo:address"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/address> <http://dbpedia.org/resource/Renaissance_Center> } " "How many books are there whose author's tomb is in Madrid? | 'tomb'-res:The_Tomb_(2007_film) | 'Madrid'-res:Madrid | 'books'-dbo:title | 'author'-dbo:author","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/restingPlace> <http://dbpedia.org/resource/Madrid> . ?uri <http://dbpedia.org/property/author> ?x . }" -"What are the television shows whose writers did notable work for Band of Brothers ? | 'Band of Brothers'-res:Band_of_Brothers_(miniseries) | 'television shows'-dbo:televisionSeries | 'writers'-dbo:composer | 'notable work'-dbo:notableWork","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/notableWork> <http://dbpedia.org/resource/Band_of_Brothers_(miniseries)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" -"To how many different species does the members of the Animal Kingdom belong? | 'Animal Kingdom'-res:Animal | 'species'-dbo:species | 'members'-dbo:part | 'belong'-dbo:date","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/species> <http://dbpedia.org/resource/Animal> . ?x <http://dbpedia.org/ontology/species> ?uri . }" -"What water bodies are nearest to Helsinki city? | 'Helsinki city'-res:Helsinki | 'nearest city'-dbo:nearestCity | 'water'-dbo:BodyOfWater"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Helsinki> <http://dbpedia.org/ontology/nearestCity> ?uri } " -"What is the prize awarded to Bruce Beutler ? | 'Bruce Beutler'-res:Bruce_Beutler | 'prize'-dbo:award | 'awarded'-dbo:award"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bruce_Beutler> <http://dbpedia.org/ontology/award> ?uri } " +"What are the television shows whose writers did notable work for Band of Brothers ? | 'Band of Brothers'-res:Band_of_Brothers_(miniseries) | 'television shows'-dbo:televisionSeries | 'writers'-dbo:composer | 'notable work'-dbo:notableWork","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/notableWork> <http://dbpedia.org/resource/Band_of_Brothers_(miniseries)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" +"To how many different species does the members of the Animal Kingdom belong? | 'Animal Kingdom'-res:Animal | 'species'-dbo:species | 'members'-dbo:part | 'belong'-dbo:date","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/kingdom> <http://dbpedia.org/resource/Animal> . ?x <http://dbpedia.org/property/species> ?uri . }" +"What water bodies are nearest to Helsinki city? | 'Helsinki city'-res:Helsinki | 'nearest city'-dbo:nearestCity | 'water'-dbo:BodyOfWater"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/nearestCity> <http://dbpedia.org/resource/Helsinki> } " +"What is the prize awarded to Bruce Beutler ? | 'Bruce Beutler'-res:Bruce_Beutler | 'prize'-dbo:award | 'awarded'-dbo:award","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bruce_Beutler> <http://dbpedia.org/ontology/award> ?x . ?x <http://dbpedia.org/property/awards> ?uri . }" "To which books Thomas Egerton, an editor? | 'Thomas Egerton,'-res:Thomas_Egerton_(publisher) | 'editor'-dbo:publisher","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/publisher> <http://dbpedia.org/resource/Thomas_Egerton_(publisher)> . }" -"What is the appliance build jointly by Sony and Asus? | 'Sony and Asus'-res:Sony | 'appliance'-dbp:instrument | 'build'-dbo:order | 'jointly'-dbo:jointCommunity","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/developer> <http://dbpedia.org/resource/Sony> . ?uri <http://dbpedia.org/ontology/manufacturer> <http://dbpedia.org/resource/Asus> . }" -"What was founded by Congress of Industrial Organizations ? | 'Congress of Industrial Organizations'-res:Congress_of_Industrial_Organizations | 'founded'-dbo:leader","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/foundedBy> <http://dbpedia.org/resource/Congress_of_Industrial_Organizations> . }" -"Which current players once played for Toronto argonauts? | 'Toronto argonauts'-res:Toronto_Argonauts | 'played'-dbo:formerTeam | 'players'-dbo:AmericanFootballPlayer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/currentclub> <http://dbpedia.org/resource/Toronto_Argonauts> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/AmericanFootballPlayer>}" -"Who was the president at the time when the opponent of Benjamin Spock held office? | 'Benjamin Spock'-res:Benjamin_Spock | 'president'-dbo:president | 'time'-dbo:time | 'opponent'-dbo:opponent | 'held'-dbo:president | 'office'-dbo:office","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Benjamin_Spock> <http://dbpedia.org/ontology/opponent> ?x . ?x <http://dbpedia.org/property/office> ?uri . }" -"List the shrines of the saint whose one of the shrine is Ponza ? | ''-res:Poznań | 'shrines'-dbo:majorShrine | 'saint'-dbo:saint | 'shrine'-dbo:majorShrine","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/majorShrine> <http://dbpedia.org/resource/Poznań> . ?x <http://dbpedia.org/property/shrines> ?uri . }" -"How many people are in the continental army? | 'continental army'-dbo:band","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/branch> <http://dbpedia.org/resource/United_States_Army> . }" +"What is the appliance build jointly by Sony and Asus? | 'Sony and Asus'-res:Sony | 'appliance'-dbp:instrument | 'build'-dbo:order | 'jointly'-dbo:jointCommunity","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/jointPartner> <http://dbpedia.org/resource/Sony> . ?uri <http://dbpedia.org/property/manufacturer> <http://dbpedia.org/resource/As_As_a_Appliance> . }" +"What was founded by Congress of Industrial Organizations ? | 'Congress of Industrial Organizations'-res:Congress_of_Industrial_Organizations | 'founded'-dbo:leader"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Congress_of_Industrial_Organizations> <http://dbpedia.org/property/founded> ?uri } " +"Which current players once played for Toronto argonauts? | 'Toronto argonauts'-res:Toronto_Argonauts | 'played'-dbo:formerTeam | 'players'-dbo:AmericanFootballPlayer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/formerTeam> <http://dbpedia.org/resource/Toronto_Argonauts> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/AmericanFootballPlayer>}" +"Who was the president at the time when the opponent of Benjamin Spock held office? | 'Benjamin Spock'-res:Benjamin_Spock | 'president'-dbo:president | 'time'-dbo:time | 'opponent'-dbo:opponent | 'held'-dbo:president | 'office'-dbo:office","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/opponent> <http://dbpedia.org/resource/Benjamin_Spock> . ?x <http://dbpedia.org/property/president> ?uri . }" +"List the shrines of the saint whose one of the shrine is Ponza ? | ''-res:Poznań | 'shrines'-dbo:majorShrine | 'saint'-dbo:saint | 'shrine'-dbo:majorShrine","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/majorShrine> <http://dbpedia.org/resource/Poznań> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Saint>}" +"How many people are in the continental army? | 'continental army'-dbo:band","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/branch> <http://dbpedia.org/resource/Continental_Army> . }" "What are the movies whose music is composed by Vangelis? | 'Vangelis'-res:Vangelis | 'composed'-dbo:musicComposer | 'movie'-dbo:Film","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Vangelis> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" "In which areas can I find wine made of Vitis vinifera grapes? | 'I'-res:I | 'Vitis vinifera grapes'-res:Kyoho_(grape) | 'wine'-dbo:wineRegion","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/species> <http://dbpedia.org/resource/Vitis_vinifera> . ?x <http://dbpedia.org/ontology/wineRegion> ?uri . }" "Who is the publisher of The Rolling Stone Album Guide ? | 'The Rolling Stone Album Guide'-res:The_Rolling_Stone_Album_Guide | 'publisher'-dbo:publisher"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Rolling_Stone_Album_Guide> <http://dbpedia.org/property/publisher> ?uri } " "How many services does 21Vianet provide? | '21vianet'-res:21Vianet | 'services'-dbp:services","SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/21Vianet> <http://dbpedia.org/property/services> ?uri . }" -"What are some rivers over which there is a box girder bridge? | 'box girder bridge'-res:Box_girder_bridge | 'rivers'-dbo:river","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Box_girder_bridge> <http://dbpedia.org/ontology/river> ?uri . }" +"What are some rivers over which there is a box girder bridge? | 'box girder bridge'-res:Box_girder_bridge | 'rivers'-dbo:river","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/design> <http://dbpedia.org/resource/Box_girder_bridge> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/River>}" "Who is the designer of Saleen S5S Raptor ? | 'S5S'-res:Saleen_S5S_Raptor | 'Saleen Raptor'-res:Saleen_S5S_Raptor | 'designer'-dbo:designer"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Saleen_S5S_Raptor> <http://dbpedia.org/property/designer> ?uri } " -"Name the first driver of 1999 San Marino Grand Prix ? | '1999 San Marino Grand Prix'-res:1999_San_Marino_Grand_Prix | 'first driver'-dbo:firstDriver"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/1999_San_Marino_Grand_Prix> <http://dbpedia.org/property/firstDriver> ?uri } " -"What is the scientist whose doctoral students are Erich Bagge and erban ieica? | 'scientist'-res:Scientist | 'Erich Bagge'-res:Erich_Bagge | 'Erban ieica'-res:Róbert_Erban | 'doctoral students'-dbo:doctoralStudent","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/doctoralStudents> <http://dbpedia.org/resource/Erich_Bagge> . ?uri <http://dbpedia.org/ontology/doctoralStudent> <http://dbpedia.org/resource/Erban_Țițeica}> " -"Who battled under commander Egushawa in a conflict? | 'commander Egushawa'-res:Moonbase_Commander | 'battled'-dbo:battle | 'conflict'-dbo:division","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/commander> <http://dbpedia.org/resource/Egushawa> . ?x <http://dbpedia.org/property/combatant> ?uri . }" +"Name the first driver of 1999 San Marino Grand Prix ? | '1999 San Marino Grand Prix'-res:1999_San_Marino_Grand_Prix | 'first driver'-dbo:firstDriver"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/1999_San_Marino_Grand_Prix> <http://dbpedia.org/ontology/firstDriver> ?uri } " +"What is the scientist whose doctoral students are Erich Bagge and erban ieica? | 'scientist'-res:Scientist | 'Erich Bagge'-res:Erich_Bagge | 'Erban ieica'-res:Róbert_Erban | 'doctoral students'-dbo:doctoralStudent","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/doctoralStudents> <http://dbpedia.org/resource/Erich_Bagge> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}" +"Who battled under commander Egushawa in a conflict? | 'commander Egushawa'-res:Moonbase_Commander | 'battled'-dbo:battle | 'conflict'-dbo:division","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/commander> <http://dbpedia.org/resource/Egushawa> . ?x <http://dbpedia.org/property/battles> ?uri . }" "Which is the largest city of Union State ? | 'Union State'-res:Union_State | 'largest city'-dbo:largestCity"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Union_State> <http://dbpedia.org/ontology/largestCity> ?uri } " -"Which university has a sports team member called Micheal Powell and also owns Syracuse University Press ? | 'sports team member'-res:Sports_Action_Team | 'Micheal Powell'-res:Micheal_Williams | 'Syracuse University Press'-res:Syracuse_University | 'university'-dbo:university | 'called'-dbp:nickname | 'owns'-dbo:languageFamily","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/athletics> <http://dbpedia.org/resource/Micheal_Williams> . ?uri <http://dbpedia.org/ontology/university> <http://dbpedia.org/resource/Syracuse_University> . }" -"What are some movies whose distributer's CEO is Ted Hartley? | 'CEO'-res:Ceo_(musician) | 'Ted Hartley'-res:Ted_Hartley | 'movies'-dbo:film | 'distributer'-dbp:distributor","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/executiveName> <http://dbpedia.org/resource/Ted_Hartley> . ?uri <http://dbpedia.org/ontology/distributor> ?x . }" -"Where does the road starting from Madison, Wisconsin end? | 'Madison, Wisconsin'-res:Madison,_Wisconsin | 'road end'-dbo:routeEnd | 'road starting'-dbo:routeStart"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Madison,_Wisconsin> <http://dbpedia.org/ontology/routeEnd> ?uri } " +"Which university has a sports team member called Micheal Powell and also owns Syracuse University Press ? | 'sports team member'-res:Sports_Action_Team | 'Micheal Powell'-res:Micheal_Williams | 'Syracuse University Press'-res:Syracuse_University | 'university'-dbo:university | 'called'-dbp:nickname | 'owns'-dbo:languageFamily"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/athleticsTeam> <http://dbpedia.org/resource/Micheal_Powell> . ?uri <http://dbpedia.org/property/owner> <http://dbpedia.org/resource/Syracuse_University> } " +"What are some movies whose distributer's CEO is Ted Hartley? | 'CEO'-res:Ceo_(musician) | 'Ted Hartley'-res:Ted_Hartley | 'movies'-dbo:film | 'distributer'-dbp:distributor","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/distributor> <http://dbpedia.org/resource/Ted_Hartley> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" +"Where does the road starting from Madison, Wisconsin end? | 'Madison, Wisconsin'-res:Madison,_Wisconsin | 'road end'-dbo:routeEnd | 'road starting'-dbo:routeStart","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/routeEnd> <http://dbpedia.org/resource/Madison,_Wisconsin> . ?x <http://dbpedia.org/property/routeStart> ?uri . }" "Colin Powell was the commander of which military conflict ? | 'Colin powell'-res:Colin_Powell | 'commander'-dbo:commander | 'military conflict'-dbo:battle","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/commander> <http://dbpedia.org/resource/Colin_Powell> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MilitaryConflict>}" "List all the houses of United States Congress ? | 'United States Congress'-res:United_States_Congress | 'houses'-dbp:houses"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/United_States_Congress> <http://dbpedia.org/property/houses> ?uri } " -"What companies are located in toronto? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'toronto'-res:Toronto | 'located'-dbo:locationCity"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/locationCity> <http://dbpedia.org/resource/Toronto> } " +"What companies are located in toronto? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'toronto'-res:Toronto | 'located'-dbo:locationCity","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/locationCity> <http://dbpedia.org/resource/Toronto> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}" "In which timezone does Khok Kwang lie? | 'Khok Kwang'-res:Khok_Kwang | 'timezone'-dbo:timeZone | 'lie'-dbo:position"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Khok_Kwang> <http://dbpedia.org/ontology/timeZone> ?uri } " -"Who are the opponents of Gervase Helwys? | 'Gervase Helwys'-res:Gervase_Helwys | 'opponents'-dbo:opponent"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Gervase_Helwys> <http://dbpedia.org/ontology/opponent> ?uri } " -"Which team did Michael and Ryan Powell play for? | 'Michael'-res:Michael_Roos_(ice_hockey) | 'Ryan Powell'-res:Ryan_Powell | 'team'-dbo:team | 'play'-dbo:team","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Michael_Roos_(ice_hockey)> <http://dbpedia.org/property/team> ?uri . <http://dbpedia.org/resource/Ryan_Powell> <http://dbpedia.org/ontology/formerTeam> ?uri . }" +"Who are the opponents of Gervase Helwys? | 'Gervase Helwys'-res:Gervase_Helwys | 'opponents'-dbo:opponent","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/opponent> <http://dbpedia.org/resource/Gervase_Helwys> . }" +"Which team did Michael and Ryan Powell play for? | 'Michael'-res:Michael_Roos_(ice_hockey) | 'Ryan Powell'-res:Ryan_Powell | 'team'-dbo:team | 'play'-dbo:team","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Michael_Roos_(ice_hockey)> <http://dbpedia.org/property/formerTeam> ?uri . <http://dbpedia.org/resource/Ryan_Powell> <http://dbpedia.org/ontology/team> ?uri . }" "What are the television shows whose network is Prime Time Entertainment Network? | 'Prime Time Entertainment Network'-res:Prime_Time_Entertainment_Network | 'network'-dbp:network | 'television show'-dbo:TelevisionShow","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/network> <http://dbpedia.org/resource/Prime_Time_Entertainment_Network> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" -"How many teams have someone playing at the defenceman position? | 'teams'-dbo:numberOfTeams | 'playing'-dbo:field | 'defenceman position'-dbo:rating","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/position> <http://dbpedia.org/resource/Defenceman_position> . ?uri <http://dbpedia.org/ontology/team> ?x . }" -"Name the driver who was at pole in 1997 Canadian Grand Prix and also 1994 Spanish Grand Prix ? | '1997 Canadian Grand Prix'-res:1997_Canadian_Grand_Prix | '1994 Spanish Grand Prix'-res:1994_Spanish_Grand_Prix | 'name'-dbp:name | 'driver'-dbo:poleDriver | 'pole'-dbo:poleDriverTeam","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/1997_Canadian_Grand_Prix> <http://dbpedia.org/ontology/poleDriver> ?uri . <http://dbpedia.org/resource/1994_Spanish_Grand}> " -"Name the narrators of the album which has been narrated by Alan Thicke ? | 'Alan Thicke'-res:Alan_Thicke | 'narrated'-dbp:narrated | 'narrated'-dbp:narrated","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/narrated> <http://dbpedia.org/resource/Alan_Thicke> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Album>}" -"Name the television show created by CE Webber and also has actor named Companion? | 'Companion'-res:Companion_(Doctor_Who) | 'CE Webber'-res:C._E._Webber | 'created'-dbo:starring | 'actor named'-dbo:creator","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/creator> <http://dbpedia.org/resource/Companion_(Doctor_Who)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" +"How many teams have someone playing at the defenceman position? | 'teams'-dbo:numberOfTeams | 'playing'-dbo:field | 'defenceman position'-dbo:rating","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/position> <http://dbpedia.org/resource/Defenceman> . ?x <http://dbpedia.org/ontology/team> ?uri . }" +"Name the driver who was at pole in 1997 Canadian Grand Prix and also 1994 Spanish Grand Prix ? | '1997 Canadian Grand Prix'-res:1997_Canadian_Grand_Prix | '1994 Spanish Grand Prix'-res:1994_Spanish_Grand_Prix | 'name'-dbp:name | 'driver'-dbo:poleDriver | 'pole'-dbo:poleDriverTeam"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/1997_Canadian_Grand_Prix> <http://dbpedia.org/ontology/poleDriver> ?uri . <http://dbpedia.org/resource/1994_Spanish_Grand-Prix> <http://dbpedia.org/property/firstDriverName> ?uri} " +"Name the narrators of the album which has been narrated by Alan Thicke ? | 'Alan Thicke'-res:Alan_Thicke | 'narrated'-dbp:narrated | 'narrated'-dbp:narrated"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Alan_Thicke> <http://dbpedia.org/property/narrated> ?uri } " +"Name the television show created by CE Webber and also has actor named Companion? | 'Companion'-res:Companion_(Doctor_Who) | 'CE Webber'-res:C._E._Webber | 'created'-dbo:starring | 'actor named'-dbo:creator","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/creator> <http://dbpedia.org/resource/CE_Webber> . ?uri <http://dbpedia.org/property/starring> <http://dbpedia.org/resource/Companion_(Doctor_Who)> . }" "In which war did the units garrisoned at Turin fight? | 'Turin fight'-res:Turin | 'war'-dbo:battle | 'units'-dbo:team | 'garrisoned'-dbo:garrison","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/garrison> <http://dbpedia.org/resource/Turin> . ?x <http://dbpedia.org/ontology/territory> ?uri . }" -"How many Thesaban towns are there? | 'Thesaban towns'-res:Thesaban","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/settlementTown> <http://dbpedia.org/resource/Thesaban> . }" -"Name the office holder with predecessor as Mark Latham and partner Tim Mathieson ? | 'Mark Latham'-res:Mark_Latham | 'partner Tim Mathieson'-res:Tim_Mathieson | 'name'-dbp:name | 'office holder'-dbp:incumbent | 'predecessor'-dbo:predecessor","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/incumbent> <http://dbpedia.org/resource/Mark_Latham> . ?uri <http://dbpedia.org/ontology/partner> <http://dbpedia.org/resource/Tim_Mathieson> . }" +"How many Thesaban towns are there? | 'Thesaban towns'-res:Thesaban","SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Thesaban> <http://dbpedia.org/property/cities> ?uri . }" +"Name the office holder with predecessor as Mark Latham and partner Tim Mathieson ? | 'Mark Latham'-res:Mark_Latham | 'partner Tim Mathieson'-res:Tim_Mathieson | 'name'-dbp:name | 'office holder'-dbp:incumbent | 'predecessor'-dbo:predecessor","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/predecessor> <http://dbpedia.org/resource/Mark_Latham> . ?uri <http://dbpedia.org/property/partner> <http://dbpedia.org/resource/Tim_Mathieson> . }" "Which newspaper owned by Schibsted is published in Swedish ? | 'swedish'-res:Swedish_language | 'Schibsted'-res:Schibsted | 'newspaper'-dbp:newspaper | 'owned'-dbo:owner | 'published'-dbo:author | ''-dbo:country","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/owners> <http://dbpedia.org/resource/Schibsted> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Newspaper>}" -"How many other people are in a band with Robert de Niro? | 'Robert de Niro'-res:Robert_De_Niro | 'band'-dbo:band","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/associatedMusicalArtist> <http://dbpedia.org/resource/Robert_De_Niro> . ?uri <http://dbpedia.org/property/bandMember> ?x . }" +"How many other people are in a band with Robert de Niro? | 'Robert de Niro'-res:Robert_De_Niro | 'band'-dbo:band","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/bandMember> <http://dbpedia.org/resource/Robert_De_Niro> . ?uri <http://dbpedia.org/property/associatedMusicalArtist> ?x . }" "List the software which uses Microsoft Windows as their operating system ? | 'software'-res:Software | 'Microsoft Windows'-res:Microsoft_Windows | 'operating system'-dbo:operatingSystem | 'software'-dbo:Software","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/operatingSystem> <http://dbpedia.org/resource/Microsoft_Windows> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Software>}" "What all has been created by Jerry Siegel? | 'Jerry Siegel'-res:Jerry_Siegel | 'created by'-dbp:creators","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/creators> <http://dbpedia.org/resource/Jerry_Siegel> . }" -"How many items belong to the Science Fiction genre? | 'Science Fiction'-res:Science_fiction | 'items'-dbo:material | 'belong'-dbo:date","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/genre> <http://dbpedia.org/resource/Science_fiction> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Item>}" -"Name some dishes made with flowering plants. | 'name'-dbo:name | 'dishes'-dbo:state | 'flowering'-dbo:day | 'plants'-dbo:position","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/species> <http://dbpedia.org/resource/Plant> . ?uri <http://dbpedia.org/ontology/ingredient> ?x . }" +"How many items belong to the Science Fiction genre? | 'Science Fiction'-res:Science_fiction | 'items'-dbo:material | 'belong'-dbo:date","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/genre> <http://dbpedia.org/resource/Science_fiction> . ?x <http://dbpedia.org/ontology/material> ?uri . }" +"Name some dishes made with flowering plants. | 'name'-dbo:name | 'dishes'-dbo:state | 'flowering'-dbo:day | 'plants'-dbo:position","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/floweringPlant> <http://dbpedia.org/resource/Plant> . ?uri <http://dbpedia.org/property/name> ?x . }" "Where was Ganefo hosted? | 'Ganefo'-res:GANEFO | 'hosted'-dbp:hostCity"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/GANEFO> <http://dbpedia.org/property/hostCity> ?uri } " "Where are ethnic group located which speak Nebraskan? | 'Nebraskan'-res:Nebraska | 'Nebraskan'-res:Nebraska | 'ethnic'-dbo:origin | 'located'-dbo:locatedInArea | 'speak'-dbo:language | ''-dbo:country","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/language> <http://dbpedia.org/resource/Nebraska> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/EthnicGroup>}" -"How many sitcoms were produced by the company whose predecessor was the Desilu Productions | 'Desilu Productions'-res:Desilu_Productions | 'sitcoms'-dbo:series | 'produced'-dbo:author | 'company'-dbo:company | 'predecessor'-dbo:predecessor","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/predecessor> <http://dbpedia.org/resource/Desilu_Productions> . ?uri <http://dbpedia.org/property/producer> ?x . }" -"Count the sports played at universities located in Urban Areas? | 'Urban Areas'-res:Urban_area | 'count'-dbo:type | 'sports'-dbo:athletics | 'played'-dbo:portrayer | 'located'-dbo:position","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/campus> <http://dbpedia.org/resource/Urban_area> . ?x <http://dbpedia.org/property/sport> ?uri . }" -"What is the official residence of the Christopher Daz Figuero which is also the state of the Cruce a Nado Internacional | 'Christopher Daz Figuero'-res:Ana_Figuero | 'Cruce a Nado Internacional'-res:Cruce_a_Nado_Internacional | 'official residence'-dbo:occupation"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cruce_a_Nado_Internacional> <http://dbpedia.org/ontology/occupation> ?uri } " +"How many sitcoms were produced by the company whose predecessor was the Desilu Productions | 'Desilu Productions'-res:Desilu_Productions | 'sitcoms'-dbo:series | 'produced'-dbo:author | 'company'-dbo:company | 'predecessor'-dbo:predecessor","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/predecessor> <http://dbpedia.org/resource/Desilu_Productions> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" +"Count the sports played at universities located in Urban Areas? | 'Urban Areas'-res:Urban_area | 'count'-dbo:type | 'sports'-dbo:athletics | 'played'-dbo:portrayer | 'located'-dbo:position","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/locatedInArea> <http://dbpedia.org/resource/Urban_area> . ?x <http://dbpedia.org/property/athletics> ?uri . }" +"What is the official residence of the Christopher Daz Figuero which is also the state of the Cruce a Nado Internacional | 'Christopher Daz Figuero'-res:Ana_Figuero | 'Cruce a Nado Internacional'-res:Cruce_a_Nado_Internacional | 'official residence'-dbo:occupation"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Christopher_Figuero> <http://dbpedia.org/ontology/occupation> ?uri . <http://dbpedia.org/resource/Cruce_a_Nado_Internacional> <http://dbpedia.org/property/residence> ?uri} " "List the races of Fergie Sutherland? | 'Fergie Sutherland'-res:Fergie_Sutherland | 'race'-dbp:race"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Fergie_Sutherland> <http://dbpedia.org/property/race> ?uri } " "Games on amiga are typically of what kind? | 'amiga'-res:Amiga | 'typically'-res:Typically_Tropical | 'games'-dbo:games","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/computingPlatform> <http://dbpedia.org/resource/Amiga> . ?x <http://dbpedia.org/property/genre> ?uri . }" -"Which shows are similar to the ones produced by Phil Collinson? | 'Phil Collinson'-res:Phil_Collinson | 'shows'-dbo:place | 'produced'-dbo:author","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/producer> <http://dbpedia.org/resource/Phil_Collinson> . ?uri <http://dbpedia.org/ontology/related> ?x . }" +"Which shows are similar to the ones produced by Phil Collinson? | 'Phil Collinson'-res:Phil_Collinson | 'shows'-dbo:place | 'produced'-dbo:author","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/producer> <http://dbpedia.org/resource/Phil_Collinson> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" "Movie's produced by Michael Deeley has Jordan Cronenweth as director of photography | 'Michael Deeley'-res:Michael_Deeley | 'Jordan Cronenweth'-res:Jordan_Cronenweth | 'movie'-dbo:picture | 'produced'-dbo:architect | 'director'-dbo:director | 'photography'-dbo:picture","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/producer> <http://dbpedia.org/resource/Michael_Deeley> . ?uri <http://dbpedia.org/property/cinematography> <http://dbpedia.org/resource/Jordan_Cronenweth> . }" "How many companies were founded in Menlo Park, California? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'Menlo Park, California'-res:Menlo_Park,_California | 'founded'-dbp:foundation | 'companies'-dbo:Company","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/foundation> <http://dbpedia.org/resource/Menlo_Park,_California> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}" "What is the venerated in of Edwin of Northumbria ? | 'Edwin of Northumbria'-res:Edwin_of_Northumbria | 'venerated'-dbp:veneratedIn"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Edwin_of_Northumbria> <http://dbpedia.org/property/veneratedIn> ?uri } " "Where was Picasso's Last Words recorded ? | 'Picasso's Last Words'-res:Picasso's_Last_Words_(Drink_to_Me) | 'recorded'-dbp:recorded"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Picasso's_Last_Words_(Drink_to_Me)> <http://dbpedia.org/property/recorded> ?uri } " "What is the hub airport of Pawan Hans, and is also the largest city of India? | 'Pawan Hans,'-res:Pawan_Hans | 'India'-res:India | 'hub airport'-dbo:hubAirport | 'largest city'-dbo:largestCity"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pawan_Hans> <http://dbpedia.org/ontology/hubAirport> ?uri . <http://dbpedia.org/resource/India> <http://dbpedia.org/property/largestCity> ?uri} " -"Which memeber of South Asia SubRegional Economic cooperation is also the nationality of Aishath saffa ? | 'South Asia SubRegional Economic cooperation'-res:South_Asia_Subregional_Economic_Cooperation | 'Aishath saffa'-res:Aishath_Saffa | 'memeber'-dbo:arm | 'nationality'-dbo:nationality"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/South_Asia_Subregional_Economic_Cooperation> <http://dbpedia.org/property/nationality> ?uri . <http://dbpedia.org/resource/Aishath_Saffa> <http://dbpedia.org/ontology/memeber> ?uri} " -"Which board memeber of jimmy Wales also owns Latvian Wikipedia ? | 'jimmy Wales'-res:Jimmy_Wales | 'Latvian Wikipedia'-res:Latvia | 'Latvian Wikipedia'-res:Latvian_Wikipedia | 'board'-dbo:board | 'owns'-dbo:owner"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Latvian_Wikipedia> <http://dbpedia.org/ontology/board> ?uri . <http://dbpedia.org/resource/Jimmy_Wales> <http://dbpedia.org/property/owner> ?uri} " -"Name the TV show whose network is NBC and is the subsequent work of Fraiser ? | 'NBC'-res:NBC | ''-res:Frasier | 'name'-dbp:name | 'show'-dbo:show | 'network'-dbo:network | 'subsequent work'-dbo:service","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/NBC> <http://dbpedia.org/property/network> ?uri . <http://dbpedia.org/resource/Frasier> <http://dbpedia.org/ontology/subsequentWork> ?uri . }" +"Which memeber of South Asia SubRegional Economic cooperation is also the nationality of Aishath saffa ? | 'South Asia SubRegional Economic cooperation'-res:South_Asia_Subregional_Economic_Cooperation | 'Aishath saffa'-res:Aishath_Saffa | 'memeber'-dbo:arm | 'nationality'-dbo:nationality"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/South_Asia_Subregional_Economic_Cooperation> <http://dbpedia.org/property/memeber> ?uri . <http://dbpedia.org/resource/Aishath_Saffa> <http://dbpedia.org/ontology/nationality> ?uri} " +"Which board memeber of jimmy Wales also owns Latvian Wikipedia ? | 'jimmy Wales'-res:Jimmy_Wales | 'Latvian Wikipedia'-res:Latvia | 'Latvian Wikipedia'-res:Latvian_Wikipedia | 'board'-dbo:board | 'owns'-dbo:owner"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jimmy_Wales> <http://dbpedia.org/ontology/board> ?uri . <http://dbpedia.org/resource/Latvian_Wikipedia> <http://dbpedia.org/property/owner> ?uri} " +"Name the TV show whose network is NBC and is the subsequent work of Fraiser ? | 'NBC'-res:NBC | ''-res:Frasier | 'name'-dbp:name | 'show'-dbo:show | 'network'-dbo:network | 'subsequent work'-dbo:service","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/network> <http://dbpedia.org/resource/NBC> . ?uri <http://dbpedia.org/property/subsequentWork> <http://dbpedia.org/resource/Frasier> . }" "How many had their debut team coached by Chip Kelly? | 'Chip Kelly'-res:Chip_Kelly | 'coach'-dbp:coach | 'debut team'-dbo:debutTeam","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/coach> <http://dbpedia.org/resource/Chip_Kelly> . ?x <http://dbpedia.org/ontology/debutTeam> ?uri . }" -"Malaysian highway authority has designed bridges over what things? | 'malaysian highway authority'-res:Malaysian_Highway_Authority | 'designed'-dbo:architect | 'bridges'-dbo:abstract","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/architect> <http://dbpedia.org/resource/Malaysian_Highway_Authority> . ?x <http://dbpedia.org/property/crosses> ?uri . }" -"what are the nicknames of the people who are in Ekstraliga? | 'Ekstraliga'-res:Ekstraliga_(speedway) | 'nicknames'-dbo:denomination"," SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/city> <http://dbpedia.org/resource/Ekstraliga_(speedway)> . ?x <http://dbpedia.org/ontology/nickname> ?uri }" -"List all the members of the organization whose one of the members is Bangladesh ? | 'Bangladesh'-res:Bangladesh | 'members'-dbp:members | 'organization'-dbp:establishment | 'members'-dbp:members","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/members> <http://dbpedia.org/resource/Bangladesh> . ?x <http://dbpedia.org/ontology/party> ?uri . }" -"In how many different places do Starwood hotels and resorts worldwide operate? | 'Starwood hotels'-res:Starwood_Capital_Group | 'resorts worldwide'-res:Walt_Disney_Parks_and_Resorts | 'operate'-dbp:operator | 'places'-dbp:address","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/operator> <http://dbpedia.org/resource/Starwood_Capital_Group> . ?x <http://dbpedia.org/ontology/residence> ?uri . }" -"List the architect of the buildings whose one of the architect is Philip Webb? | 'Philip Webb'-res:Philip_Webb | 'architect'-dbo:architect | 'buildings'-dbo:architect | 'architect'-dbo:architect","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/keyPeople> <http://dbpedia.org/resource/Philip_Webb> . ?x <http://dbpedia.org/ontology/architect> ?uri . }" -"What is the owner of Ivanpah Solar Power Facility and the original developer of Dart? | 'Ivanpah Solar'-res:Ivanpah_Solar_Power_Facility | 'Dart'-res:Dart_(programming_language) | 'owner'-dbo:owner | 'developer'-dbo:developer","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ivanpah_Solar_Power_Facility> <http://dbpedia.org/ontology/owner> ?uri . <http://dbpedia.org/resource/Dart_(programming_language)> <http://dbpedia.org/property/developer> ?uri . }" -"Find the total number of ingredient of the recepies whose ingredient is common Mushroom ? | ''-res:Agaricus_bisporus | 'total'-dbo:populationTotal | 'ingredient'-dbo:ingredient | 'ingredient'-dbo:ingredient"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/ingredient> <http://dbpedia.org/resource/Agaricus_bisporus> . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Food>}" -"How many movies are directed by the spouse of Dolores del Ro? | 'Dolores del Ro'-res:Dolores_del_Río | 'spouse'-dbp:partner | 'directed'-dbp:director","SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Dolores_del_Río> <http://dbpedia.org/property/partner> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" -"What are some bands out to texarkana? | 'texarkana'-res:Texarkana,_Texas | 'bands'-dbo:staff","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Texarkana> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Band>}" -"who is the husband of Rosie Huntington Whiteley? | 'Rosie Huntington Whiteley'-res:Rosie_Huntington-Whiteley | 'husband'-dbo:partner"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Rosie_Huntington-Whiteley> <http://dbpedia.org/ontology/partner> ?uri } " -"Which current player of Chicago Bulls was drafted by Los Angeles Clippers ? | 'Chicago Bulls'-res:Chicago_Bulls | 'Los Angeles Clippers'-res:Los_Angeles_Clippers | 'current player'-dbo:coach | 'drafted'-dbo:draft"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Chicago_Bulls> <http://dbpedia.org/property/draftTeam> ?uri . <http://dbpedia.org/resource/Los_Angeles_Clippers> <http://dbpedia.org/ontology/currentPlayer> ?uri} " -"What is the common country of Ganz UV and Balaton wine region ? | 'UV'-res:Uvaria_chamae | 'Ganz'-res:Ganzert | 'Balaton wine region'-res:Balaton_wine_region | 'common country'-dbo:country","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ganzert> <http://dbpedia.org/ontology/commonCountry> ?uri . <http://dbpedia.org/resource/Balaton_wine_region> <http://dbpedia.org/property/country> ?uri . }" +"Malaysian highway authority has designed bridges over what things? | 'malaysian highway authority'-res:Malaysian_Highway_Authority | 'designed'-dbo:architect | 'bridges'-dbo:abstract","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/architect> <http://dbpedia.org/resource/Malaysian_Highway_Authority> . ?x <http://dbpedia.org/property/designer> ?uri . }" +"what are the nicknames of the people who are in Ekstraliga? | 'Ekstraliga'-res:Ekstraliga_(speedway) | 'nicknames'-dbo:denomination","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/league> <http://dbpedia.org/resource/Ekstraliga_(speedway)> . ?x <http://dbpedia.org/ontology/nickname> ?uri . }" +"List all the members of the organization whose one of the members is Bangladesh ? | 'Bangladesh'-res:Bangladesh | 'members'-dbp:members | 'organization'-dbp:establishment | 'members'-dbp:members","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/members> <http://dbpedia.org/resource/Bangladesh> . ?x <http://dbpedia.org/ontology/members> ?uri . }" +"In how many different places do Starwood hotels and resorts worldwide operate? | 'Starwood hotels'-res:Starwood_Capital_Group | 'resorts worldwide'-res:Walt_Disney_Parks_and_Resorts | 'operate'-dbp:operator | 'places'-dbp:address","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/operator> <http://dbpedia.org/resource/Starwood_Capital_Group> . ?x <http://dbpedia.org/ontology/destinations> ?uri . }" +"List the architect of the buildings whose one of the architect is Philip Webb? | 'Philip Webb'-res:Philip_Webb | 'architect'-dbo:architect | 'buildings'-dbo:architect | 'architect'-dbo:architect","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/architect> <http://dbpedia.org/resource/Philip_Webb> . ?architect ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Building>}" +"What is the owner of Ivanpah Solar Power Facility and the original developer of Dart? | 'Ivanpah Solar'-res:Ivanpah_Solar_Power_Facility | 'Dart'-res:Dart_(programming_language) | 'owner'-dbo:owner | 'developer'-dbo:developer"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ivanpah_Solar_Power_Facility> <http://dbpedia.org/property/owner> ?uri . <http://dbpedia.org/resource/Dart_(programming_language)> <http://dbpedia.org/ontology/developer> ?uri} " +"Find the total number of ingredient of the recepies whose ingredient is common Mushroom ? | ''-res:Agaricus_bisporus | 'total'-dbo:populationTotal | 'ingredient'-dbo:ingredient | 'ingredient'-dbo:ingredient"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/ingredient> <http://dbpedia.org/resource/Agaricus_bisporus> . ?x <http://dbpedia.org/property/editing> ?uri }" +"How many movies are directed by the spouse of Dolores del Ro? | 'Dolores del Ro'-res:Dolores_del_Río | 'spouse'-dbp:partner | 'directed'-dbp:director","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/partner> <http://dbpedia.org/resource/Dolores_del_Río> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" +"What are some bands out to texarkana? | 'texarkana'-res:Texarkana,_Texas | 'bands'-dbo:staff","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/city> <http://dbpedia.org/resource/Texarkana> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Band>}" +"who is the husband of Rosie Huntington Whiteley? | 'Rosie Huntington Whiteley'-res:Rosie_Huntington-Whiteley | 'husband'-dbo:partner","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Rosie_Huntington-Whiteley> <http://dbpedia.org/ontology/partner> ?uri . }" +"Which current player of Chicago Bulls was drafted by Los Angeles Clippers ? | 'Chicago Bulls'-res:Chicago_Bulls | 'Los Angeles Clippers'-res:Los_Angeles_Clippers | 'current player'-dbo:coach | 'drafted'-dbo:draft","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/draftTeam> <http://dbpedia.org/resource/Chicago_Bulls> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/CurrentPlayer>}" +"What is the common country of Ganz UV and Balaton wine region ? | 'UV'-res:Uvaria_chamae | 'Ganz'-res:Ganzert | 'Balaton wine region'-res:Balaton_wine_region | 'common country'-dbo:country"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ganzert> <http://dbpedia.org/ontology/wineRegion> ?uri . <http://dbpedia.org/resource/Balaton_wine_region> <http://dbpedia.org/property/country> ?uri} " "Name the constituency of Domenico Modugno ? | 'Domenico Modugno'-res:Domenico_Modugno | 'name'-dbp:name | 'constituency'-dbp:constituency"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Domenico_Modugno> <http://dbpedia.org/property/constituency> ?uri } " -"What awards were given to the producer of Chicken Little? | 'Chicken Little'-res:Chicken_Little_(1943_film) | 'awards'-dbo:budget | 'producer'-dbo:producer","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Chicken_Little_(1943_film)> <http://dbpedia.org/property/producer> ?x . ?x <http://dbpedia.org/ontology/award> ?uri . }" -"What is the headquarters of the public transit system which is the system of Bottineau LRT ? | 'Bottineau LRT'-res:Bottineau_LRT | 'headquarters'-dbp:headquarters | 'public transit'-dbo:country","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bottineau_LRT> <http://dbpedia.org/property/headquarters> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/PublicTransitSystem>}" +"What awards were given to the producer of Chicken Little? | 'Chicken Little'-res:Chicken_Little_(1943_film) | 'awards'-dbo:budget | 'producer'-dbo:producer","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Chicken_Little_(1943_film)> <http://dbpedia.org/ontology/producer> ?x . ?x <http://dbpedia.org/property/awards> ?uri . }" +"What is the headquarters of the public transit system which is the system of Bottineau LRT ? | 'Bottineau LRT'-res:Bottineau_LRT | 'headquarters'-dbp:headquarters | 'public transit'-dbo:country"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bottineau_LRT> <http://dbpedia.org/property/headquarters> ?uri } " "What is the hometown of John Speraw ? | 'John Speraw'-res:John_Speraw | 'hometown'-dbo:hometown"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/John_Speraw> <http://dbpedia.org/ontology/hometown> ?uri } " "Count the journals in the field of Philosophy. | 'Philosophy'-res:Philosophy | 'count'-dbo:country | 'journals'-dbp:journal | 'field'-dbo:field","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/fields> <http://dbpedia.org/resource/Philosophy> . ?x <http://dbpedia.org/ontology/discipline> ?uri . }" "Which scientist advised a doctoral student named Erban Ieica? | 'Erban Ieica'-res:Șerban_Țițeica | 'doctoral student'-dbp:doctoralStudents | 'scientist'-dbo:Scientist","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/doctoralStudents> <http://dbpedia.org/resource/Șerban_Țițeica> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}" -"What is the hometown of Nader Guirat, where Josef Johansson was born too? | 'Josef Johansson'-res:Josef_Johansson | 'Nader Guirat'-res:Nader_Guirat | 'hometown'-dbo:hometown | 'born'-dbo:birthPlace"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Nader_Guirat> <http://dbpedia.org/property/hometown> ?uri . <http://dbpedia.org/resource/Josef_Johansson> <http://dbpedia.org/ontology/birthPlace> ?uri} " +"What is the hometown of Nader Guirat, where Josef Johansson was born too? | 'Josef Johansson'-res:Josef_Johansson | 'Nader Guirat'-res:Nader_Guirat | 'hometown'-dbo:hometown | 'born'-dbo:birthPlace","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Josef_Johansson> <http://dbpedia.org/property/hometown> ?uri . <http://dbpedia.org/resource/Nader_Guirat> <http://dbpedia.org/ontology/birthPlace> ?uri . }" "What is the academic discipline of Journal of Cerebral Blood Flow & Metabolism ? | 'Journal of Cerebral Blood Flow & Metabolism'-res:Journal_of_Cerebral_Blood_Flow_&_Metabolism | 'academic discipline'-dbo:academicDiscipline"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Journal_of_Cerebral_Blood_Flow_&_Metabolism> <http://dbpedia.org/ontology/academicDiscipline> ?uri } " "Where was David Scherman trained ? | 'David Scherman'-res:David_Scherman | 'trained'-dbo:training"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/David_Scherman> <http://dbpedia.org/ontology/training> ?uri } " -"In which series has Sean Young portrayed someone? | 'Sean Young'-res:Sean_Young | 'series'-dbo:series | 'portrayed'-dbo:portrayer","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/starring> <http://dbpedia.org/resource/Sean_Young> . ?x <http://dbpedia.org/ontology/series> ?uri . }" +"In which series has Sean Young portrayed someone? | 'Sean Young'-res:Sean_Young | 'series'-dbo:series | 'portrayed'-dbo:portrayer","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/portrayer> <http://dbpedia.org/resource/Sean_Young> . ?x <http://dbpedia.org/ontology/series> ?uri . }" "Who is the writer of the singles whose producer is Peter-John Vettese? | 'Peter-John Vettese'-res:Peter-John_Vettese | 'writer'-dbo:writer | 'singles'-dbo:associate | 'producer'-dbo:producer","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/producer> <http://dbpedia.org/resource/Peter-John_Vettese> . ?x <http://dbpedia.org/property/writer> ?uri . }" -"In which mountain Inyo National Forest and California are located? | 'mountain Inyo National Forest'-res:Inyo_National_Forest | 'California'-res:California | 'located'-dbo:locatedInArea","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Inyo_National_Forest> <http://dbpedia.org/ontology/locatedInArea> ?uri . }" +"In which mountain Inyo National Forest and California are located? | 'mountain Inyo National Forest'-res:Inyo_National_Forest | 'California'-res:California | 'located'-dbo:locatedInArea","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/locatedInArea> <http://dbpedia.org/resource/Inyo_National_Forest> . ?uri <http://dbpedia.org/property/location> <http://dbpedia.org/resource/California> . }" "What is the nickname of the club managed by Piotr baron? | 'Piotr baron'-res:Piotr_Baron | 'managed'-dbo:manager | 'nickname'-dbp:nickname","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/manager> <http://dbpedia.org/resource/Piotr_Baron> . ?x <http://dbpedia.org/property/nickname> ?uri . }" "For how many different teams have the players debuted in Houston Astros played? | 'Houston Astros'-res:Houston_Astros | 'teams'-dbp:team | 'players'-dbo:participant | 'debuted'-dbo:debutTeam | 'played'-dbo:participant","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/debutTeam> <http://dbpedia.org/resource/Houston_Astros> . ?x <http://dbpedia.org/property/team> ?uri . }" -"How many people have been the first one to scale a peak in the Yosemite Park? | 'Yosemite Park'-res:Yosemite_National_Park | 'scale'-dbp:scale | 'peak'-dbo:language","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/mountainPark> <http://dbpedia.org/resource/Yosemite_National_Park> . ?x <http://dbpedia.org/ontology/firstPerson> ?uri . }" -"What are some licensees of the stations playing in Nashville, Tennessee? | 'Nashville, Tennessee'-res:Nashville,_Tennessee | 'licensees'-dbo:licensee | 'stations'-dbo:numberOfStations | 'playing'-dbo:discharge","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/arena> <http://dbpedia.org/resource/Nashville,_Tennessee> . ?x <http://dbpedia.org/property/licensee> ?uri . }" -"Count the total number of bacterias whose division is Firmicutes and domain is Bacteria? | 'bacterias'-res:Bacteriastrum_delicatulum | 'Firmicutes'-res:Firmicutes | 'Bacteria'-res:Bacteria | 'division'-dbo:division | 'domain'-dbp:domain"," SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/division> <http://dbpedia.org/resource/Firmicutes> . ?uri <http://dbpedia.org/property/domain> <http://dbpedia.org/resource/Bacteria> } " -"What are some other great things by the person who produced Queer as Folk? | 'Queer as Folk'-res:Queer_as_Folk_(UK_TV_series) | 'person'-dbo:person | 'produced'-dbo:wineProduced","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/products> <http://dbpedia.org/resource/Queer_as_Folk_(UK_TV_series)> . ?x <http://dbpedia.org/ontology/notableWork> ?uri . }" -"Under which scientist did doctoral students erban ieica and Erich Bagge study? | 'scientist'-res:Scientist | 'doctoral students erban ieica'-res:Róbert_Erban | 'Erich Bagge study'-res:Erich_Bagge","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/doctoralStudents> <http://dbpedia.org/resource/Róbert_Erban> . ?uri <http://dbpedia.org/ontology/doctoralStudent> <http://dbpedia.org/resource/Erich_Bagge}> " -"In which racing championships did Bobby Beasley and Martin Molony participate? | 'Bobby Beasley'-res:Bobby_Beasley | 'Martin Molony'-res:Martin_Molony | 'racing'-dbo:race | 'racing'-dbo:race","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bobby_Beasley> <http://dbpedia.org/resource/Martin_Molony> <http://dbpedia.org/ontology/race> ?uri . }" +"How many people have been the first one to scale a peak in the Yosemite Park? | 'Yosemite Park'-res:Yosemite_National_Park | 'scale'-dbp:scale | 'peak'-dbo:language","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/locatedInArea> <http://dbpedia.org/resource/Yosemite_National_Park> . ?x <http://dbpedia.org/ontology/firstAscentPerson> ?uri . }" +"What are some licensees of the stations playing in Nashville, Tennessee? | 'Nashville, Tennessee'-res:Nashville,_Tennessee | 'licensees'-dbo:licensee | 'stations'-dbo:numberOfStations | 'playing'-dbo:discharge","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/city> <http://dbpedia.org/resource/Nashville,_Tennessee> . ?x <http://dbpedia.org/property/licensees> ?uri . }" +"Count the total number of bacterias whose division is Firmicutes and domain is Bacteria? | 'bacterias'-res:Bacteriastrum_delicatulum | 'Firmicutes'-res:Firmicutes | 'Bacteria'-res:Bacteria | 'division'-dbo:division | 'domain'-dbp:domain","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/division> <http://dbpedia.org/resource/Firmicutes> . ?uri <http://dbpedia.org/property/domain> <http://dbpedia.org/resource/Bacteria> . }" +"What are some other great things by the person who produced Queer as Folk? | 'Queer as Folk'-res:Queer_as_Folk_(UK_TV_series) | 'person'-dbo:person | 'produced'-dbo:wineProduced","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/producer> <http://dbpedia.org/resource/Queer_as_Folk_(UK_TV_series)> . ?x <http://dbpedia.org/property/notableworks> ?uri . }" +"Under which scientist did doctoral students erban ieica and Erich Bagge study? | 'scientist'-res:Scientist | 'doctoral students erban ieica'-res:Róbert_Erban | 'Erich Bagge study'-res:Erich_Bagge","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/doctoralStudents> <http://dbpedia.org/resource/Róbert_Erban> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}" +"In which racing championships did Bobby Beasley and Martin Molony participate? | 'Bobby Beasley'-res:Bobby_Beasley | 'Martin Molony'-res:Martin_Molony | 'racing'-dbo:race | 'racing'-dbo:race","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bobby_Beasley> <http://dbpedia.org/property/championship> ?uri . <http://dbpedia.org/resource/Martin_Molony> <http://dbpedia.org/ontology/race> ?uri . }" "Name the artist of Brad Paisley discography ? | 'Brad Paisley discography'-res:Brad_Paisley_discography | 'name'-dbp:name | 'artist'-dbp:artist"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Brad_Paisley_discography> <http://dbpedia.org/property/artist> ?uri } " -"Ernest Rutherford was the advisor of how many people? | 'Ernest rutherford'-res:Ernest_Rutherford | 'advisor'-dbo:doctoralAdvisor","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/doctoralAdvisor> <http://dbpedia.org/resource/Ernest_Rutherford> . }" -"who all play for of the american football players at Quarterback position? | 'Quarterback'-res:Quarterback | 'play'-dbo:starring"," SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/position> <http://dbpedia.org/resource/Quarterback> . ?x <http://dbpedia.org/ontology/starring> ?uri }" +"Ernest Rutherford was the advisor of how many people? | 'Ernest rutherford'-res:Ernest_Rutherford | 'advisor'-dbo:doctoralAdvisor","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/doctoralAdvisor> <http://dbpedia.org/resource/Ernest_Rutherford> . }" +"who all play for of the american football players at Quarterback position? | 'Quarterback'-res:Quarterback | 'play'-dbo:starring","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/position> <http://dbpedia.org/resource/Quarterback> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/AmericanFootballPlayer>}" "What is the field of interest of the advisor of Henri Maspero ? | 'Henri Maspero'-res:Henri_Maspero | 'advisor'-dbo:academicAdvisor | 'field'-dbp:fields","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Henri_Maspero> <http://dbpedia.org/ontology/academicAdvisor> ?x . ?x <http://dbpedia.org/property/fields> ?uri . }" -"Name the actor of Soylent Green to which Lydia Clarke is married ? | 'Lydia Clarke'-res:Lydia_Clarke | 'Soylent Green'-res:Soylent_Green | 'name'-dbo:name | 'actor'-dbp:artist | 'married'-dbo:spouse","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lydia_Clarke> <http://dbpedia.org/property/artist> ?uri . <http://dbpedia.org/resource/Soylent_Green> <http://dbpedia.org/ontology/spouse> ?uri . }" +"Name the actor of Soylent Green to which Lydia Clarke is married ? | 'Lydia Clarke'-res:Lydia_Clarke | 'Soylent Green'-res:Soylent_Green | 'name'-dbo:name | 'actor'-dbp:artist | 'married'-dbo:spouse"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lydia_Clarke> <http://dbpedia.org/property/starring> ?uri . <http://dbpedia.org/resource/Soylent_Green> <http://dbpedia.org/ontology/spouse> ?uri} " "Who are the key people of FWD.us? | 'FWD.us'-res:FWD.us | 'key people'-dbp:keyPeople"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/FWD.us> <http://dbpedia.org/property/keyPeople> ?uri } " "Who is the executive producer of Into the Dalek ? | 'Into the Dalek'-res:Into_the_Dalek | 'executive producer'-dbp:executiveProducer"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Into_the_Dalek> <http://dbpedia.org/property/executiveProducer> ?uri } " -"Through how many cities does the river flowing into Arkansas go? | 'Arkansas'-res:Arkansas | 'cities'-dbo:country | 'river'-dbo:river | 'flowing'-dbo:school","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/riverMouth> <http://dbpedia.org/resource/Arkansas> . ?x <http://dbpedia.org/property/cities> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> Dbo:River}" -"How many things are manufactured by the company whose subsidiary is Sony Corporation shareholders and subsidiaries? | 'Sony Corporation shareholders and subsidiaries'-res:Sony_Corporation_shareholders_and_subsidiaries | 'manufactured'-dbo:product | 'company'-dbo:company | 'subsidiary'-dbo:subsidiary","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/owners> <http://dbpedia.org/resource/Sony_Corporation_shareholders_and_subsidiaries> . ?uri <http://dbpedia.org/ontology/manufacturer> ?x . }" -"In which other places are there companies which are in Ontario, too? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'Ontario,'-res:Ontario,_Indiana | 'places'-dbo:district","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/locationCity> <http://dbpedia.org/resource/Ontario> . ?x <http://dbpedia.org/property/locations> ?uri . }" -"In which companies boards do the writers of Wikitionary belong? | 'companies boards'-res:Under_the_Boards | 'Wikitionary'-res:Wiktionary | 'writers'-dbo:author | 'belong'-dbo:date","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Wiktionary> <http://dbpedia.org/ontology/author> ?x . ?x <http://dbpedia.org/property/board> ?uri . }" +"Through how many cities does the river flowing into Arkansas go? | 'Arkansas'-res:Arkansas | 'cities'-dbo:country | 'river'-dbo:river | 'flowing'-dbo:school","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/mouthPlace> <http://dbpedia.org/resource/Arkansas> . ?x <http://dbpedia.org/property/cities> ?uri . }" +"How many things are manufactured by the company whose subsidiary is Sony Corporation shareholders and subsidiaries? | 'Sony Corporation shareholders and subsidiaries'-res:Sony_Corporation_shareholders_and_subsidiaries | 'manufactured'-dbo:product | 'company'-dbo:company | 'subsidiary'-dbo:subsidiary","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/subsidiary> <http://dbpedia.org/resource/Sony_Corporation_shareholders_and_subsidiaries> . ?uri <http://dbpedia.org/property/manufacturer> ?x . }" +"In which other places are there companies which are in Ontario, too? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'Ontario,'-res:Ontario,_Indiana | 'places'-dbo:district"," SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/locationCity> <http://dbpedia.org/resource/Ontario> . ?x <http://dbpedia.org/property/destinations> ?uri }" +"In which companies boards do the writers of Wikitionary belong? | 'companies boards'-res:Under_the_Boards | 'Wikitionary'-res:Wiktionary | 'writers'-dbo:author | 'belong'-dbo:date","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/author> <http://dbpedia.org/resource/Wiktionary> . ?x <http://dbpedia.org/property/board> ?uri . }" "Which nationality of Newin Chidchob is also the nationality of Ajahn Sao Kantaslo ? | 'Newin Chidchob'-res:Newin_Chidchob | 'Ajahn Sao Kantaslo'-res:Ajahn_Sao_Kantasīlo | 'nationality'-dbp:nationality | 'nationality'-dbp:nationality"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ajahn_Sao_Kantasīlo> <http://dbpedia.org/property/nationality> ?uri } " -"Count the movies directed by Tim Burton and music composer Danny Elfman ? | 'Tim Burton'-res:Tim_Burton | 'music composer Danny Elfman'-res:Jenna_Elfman | 'music composer'-dbp:music | 'directed'-dbp:director"," SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/director> <http://dbpedia.org/resource/Tim_Burton> . ?uri <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Jenna_Elfman> } " -"From which genres of music did those genres emerge where drums are important? | 'drums'-res:Drums_Around_the_World | 'genres'-dbo:genre | 'music'-dbo:musicSubgenre | 'genres'-dbo:genre | 'emerge'-dbo:result","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/keyPeople> <http://dbpedia.org/resource/Drums_Around_the_World> . ?x <http://dbpedia.org/ontology/genre> ?uri . }" -"Who is the appointer of Earl B. Ruth ? | 'B'-res:B | 'Earl Ruth'-res:Earl_B._Ruth | 'appointer'-dbo:appointer"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Earl_B._Ruth> <http://dbpedia.org/property/appointer> ?uri } " +"Count the movies directed by Tim Burton and music composer Danny Elfman ? | 'Tim Burton'-res:Tim_Burton | 'music composer Danny Elfman'-res:Jenna_Elfman | 'music composer'-dbp:music | 'directed'-dbp:director","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/director> <http://dbpedia.org/resource/Tim_Burton> and musicComposer <http://dbpedia.org/resource/Danny_Elfman> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" +"From which genres of music did those genres emerge where drums are important? | 'drums'-res:Drums_Around_the_World | 'genres'-dbo:genre | 'music'-dbo:musicSubgenre | 'genres'-dbo:genre | 'emerge'-dbo:result","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/notableInstruments> <http://dbpedia.org/resource/Drums_Around_the_World> . ?x <http://dbpedia.org/ontology/genre> ?uri . }" +"Who is the appointer of Earl B. Ruth ? | 'B'-res:B | 'Earl Ruth'-res:Earl_B._Ruth | 'appointer'-dbo:appointer"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Earl_B._Ruth> <http://dbpedia.org/ontology/appointer> ?uri } " "To which educational institutes is Samuel Isham associated to? | 'Samuel Isham'-res:Samuel_Isham | 'education'-dbp:education"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Samuel_Isham> <http://dbpedia.org/property/education> ?uri } " "What is the debut team of people born in Vargas? | 'Vargas'-res:Vargas_(state) | 'born in'-dbo:birthPlace | 'debut team'-dbp:debutteam","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Vargas_(state)> . ?x <http://dbpedia.org/property/debutteam> ?uri . }" "Count the awards received by the ones who fought the battle of france? | 'battle of france'-res:Battle_of_France | 'count'-dbo:time | 'awards'-dbo:award | 'received'-dbo:board | 'fought'-dbo:nerve | 'battle'-dbo:battle | 'france'-dbo:field","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/Battle_of_France> . ?x <http://dbpedia.org/ontology/award> ?uri . }" -"Count all the Colonels? | 'Colonels'-res:Colonels_Softball_Complex | 'count'-dbo:country","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Colonels_Softball_Complex> . }" -"What has location as Ontario? | 'Ontario'-res:Ontario | 'location'-dbo:location","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/Ontario> . }" +"Count all the Colonels? | 'Colonels'-res:Colonels_Softball_Complex | 'count'-dbo:country","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/militaryUnit> <http://dbpedia.org/resource/Colonels_Softball_Complex> . }" +"What has location as Ontario? | 'Ontario'-res:Ontario | 'location'-dbo:location"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ontario> <http://dbpedia.org/ontology/location> ?uri } " "Where was Juno I launched from ? | 'Juno I'-res:Juno_I | 'launched'-dbo:launchSite"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Juno_I> <http://dbpedia.org/ontology/launchSite> ?uri } " -"What are some common ingredients used in Swedish dishes? | 'Swedish dishes'-res:Sweden | 'Swedish dishes'-res:Tableware | 'in'-dbo:country | 'ingredient'-dbo:ingredient"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Sweden> <http://dbpedia.org/ontology/ingredient> ?uri } " -"Where did Rheinmetall MG 60 originated ? | 'MG'-res:MG | 'Rheinmetall 60'-res:Rheinmetall_MG_60 | 'origin'-dbo:origin"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Rheinmetall_MG_60> <http://dbpedia.org/property/origin> ?uri } " +"What are some common ingredients used in Swedish dishes? | 'Swedish dishes'-res:Sweden | 'Swedish dishes'-res:Tableware | 'in'-dbo:country | 'ingredient'-dbo:ingredient"," SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/country> <http://dbpedia.org/resource/Swedish_food> . ?x <http://dbpedia.org/ontology/ingredient> ?uri }" +"Where did Rheinmetall MG 60 originated ? | 'MG'-res:MG | 'Rheinmetall 60'-res:Rheinmetall_MG_60 | 'origin'-dbo:origin"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Rheinmetall_MG_60> <http://dbpedia.org/ontology/origin> ?uri } " "Gregg Toland cinematographed how many things? | 'Gregg toland'-res:Gregg_Toland | 'cinematographed'-dbo:cinematography","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/cinematography> <http://dbpedia.org/resource/Gregg_Toland> . }" -"Give me the total number of lines owned by owner of Mwtro-Noth Railroad ? | 'Mwtro-Noth Railroad'-res:Metro-North_Railroad | 'total'-dbo:populationTotal | 'lines'-dbo:lyrics | 'owned'-dbo:subsidiary | 'owner'-dbo:owner"," SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Metro-North_Railroad> <http://dbpedia.org/property/owner> ?uri } " -"In how many places can I find people who were the architects of the Dundas Castle? | 'I'-res:I | 'Dundas Castle'-res:Dundas_Castle | 'places'-dbo:height | 'architects'-dbo:architect","SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Dundas_Castle> <http://dbpedia.org/ontology/architect> ?x . ?x <http://dbpedia.org/property/restingplace> ?uri . }" +"Give me the total number of lines owned by owner of Mwtro-Noth Railroad ? | 'Mwtro-Noth Railroad'-res:Metro-North_Railroad | 'total'-dbo:populationTotal | 'lines'-dbo:lyrics | 'owned'-dbo:subsidiary | 'owner'-dbo:owner"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/owner> <http://dbpedia.org/resource/Mwtro-Noth_Railroad> . ?x <http://dbpedia.org/property/owner> ?uri }" +"In how many places can I find people who were the architects of the Dundas Castle? | 'I'-res:I | 'Dundas Castle'-res:Dundas_Castle | 'places'-dbo:height | 'architects'-dbo:architect","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/architect> <http://dbpedia.org/resource/Dundas_Castle> . ?x <http://dbpedia.org/property/destinations> ?uri . }" "List all the children of Barbara Bush? | 'Barbara Bush'-res:Barbara_Bush | 'children'-dbp:children"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Barbara_Bush> <http://dbpedia.org/property/children> ?uri } " -"How many cities are around the sea in which the ionian sea flows? | 'cities'-dbo:city | 'sea'-dbo:lake | 'ionian sea'-dbo:lake | 'flows'-dbo:circulation","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/flow> <http://dbpedia.org/resource/ionian_cities> . ?x <http://dbpedia.org/property/cities> ?uri . }" -"Miguel de Cervantes wrote the musical extended from which book? | 'miguel de Cervantes'-res:Miguel_de_Cervantes | 'wrote'-dbp:author | 'musical'-dbo:show | 'extended'-dbo:languageFamily | 'book'-dbo:volume","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/notableWork> <http://dbpedia.org/resource/Miguel_de_Cervantes> . ?x <http://dbpedia.org/property/author> ?uri . }" -"In how many different teams have all those who have played as a defenceman been? | 'Defenceman'-res:Defenceman | 'teams'-dbo:numberOfTeams | 'played'-dbo:portrayer","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/position> <http://dbpedia.org/resource/Defenceman> . ?x <http://dbpedia.org/property/team> ?uri . }" +"How many cities are around the sea in which the ionian sea flows? | 'cities'-dbo:city | 'sea'-dbo:lake | 'ionian sea'-dbo:lake | 'flows'-dbo:circulation","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/inflow> <http://dbpedia.org/resource/Ivinian_sees> . ?x <http://dbpedia.org/property/cities> ?uri . }" +"Miguel de Cervantes wrote the musical extended from which book? | 'miguel de Cervantes'-res:Miguel_de_Cervantes | 'wrote'-dbp:author | 'musical'-dbo:show | 'extended'-dbo:languageFamily | 'book'-dbo:volume","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/author> <http://dbpedia.org/resource/Miguel_de_Cervantes> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Musical>}" +"In how many different teams have all those who have played as a defenceman been? | 'Defenceman'-res:Defenceman | 'teams'-dbo:numberOfTeams | 'played'-dbo:portrayer","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/position> <http://dbpedia.org/resource/Defenceman> . ?x <http://dbpedia.org/ontology/team> ?uri . }" "How many teams have LA kings players in them currently? | 'LA kings'-res:Los_Angeles_Kings | 'teams'-dbo:numberOfTeams","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/currentclub> <http://dbpedia.org/resource/Los_Angeles_Kings> . ?x <http://dbpedia.org/ontology/team> ?uri . }" "What is the television show whose developer is J. Michael Straczynski? | 'J'-res:J | 'Michael Straczynski'-res:J._Michael_Straczynski | 'television show'-dbo:transmission | 'developer'-dbo:developer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/developer> <http://dbpedia.org/resource/J._Michael_Straczynski> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" -"list the organisation with motive for peace and environmentalism? | 'environmentalism'-res:Environmentalism | 'organisation'-dbo:organisation | 'motive'-dbo:field | 'peace'-dbp:content"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/purpose> <http://dbpedia.org/resource/Peace_and_Environmentalism> } " -"What is the content license of Darcs ? | 'Darcs'-res:Darcs | 'content license'-dbo:license"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Darcs> <http://dbpedia.org/property/license> ?uri } " +"list the organisation with motive for peace and environmentalism? | 'environmentalism'-res:Environmentalism | 'organisation'-dbo:organisation | 'motive'-dbo:field | 'peace'-dbp:content","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/motive> <http://dbpedia.org/resource/Environmentalism> . ?uri <http://dbpedia.org/ontology/organisation> <http://dbpedia.org/resource/Peace> . }" +"What is the content license of Darcs ? | 'Darcs'-res:Darcs | 'content license'-dbo:license"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Darcs> <http://dbpedia.org/ontology/license> ?uri } " "Name a military unit whose command structure is United States Department of the Navy and garrison is Arlington County, Virginia? | 'United States Department of the Navy'-res:United_States_Navy | 'Arlington County, Virginia'-res:Arlington_County,_Virginia | 'name'-dbp:name | 'military unit'-dbo:garrison | 'command structure'-dbo:commandStructure | 'garrison'-dbo:garrison"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/commandStructure> <http://dbpedia.org/resource/United_States_Navy> . ?uri <http://dbpedia.org/ontology/garrison> <http://dbpedia.org/resource/Arlington_County,_Virginia> } " "List all the artist of albums which have been produced by Stephen Kozmeniuk ? | 'Stephen Kozmeniuk'-res:Stephen_Kozmeniuk | 'artist'-dbo:artist | 'albums'-dbo:endowment | 'produced'-dbo:wineProduced","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/producer> <http://dbpedia.org/resource/Stephen_Kozmeniuk> . ?x <http://dbpedia.org/property/artist> ?uri . }" -"What is the mascot of the alma mater of Deborah Crombie? | 'Deborah Crombie'-res:Deborah_Crombie | 'mascot'-dbo:mascot | 'alma mater'-dbo:almaMater","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Deborah_Crombie> <http://dbpedia.org/property/almaMater> ?x . ?x <http://dbpedia.org/ontology/mascot> ?uri . }" -"What is the resting place of the person who is the successor of James W. Hyatt ? | 'W'-res:Vienna | 'James Hyatt'-res:James_W._Hyatt | 'resting'-dbo:battle | 'place'-dbo:place | 'person'-dbp:type | 'successor'-dbo:successor","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/James_W._Hyatt> <http://dbpedia.org/property/successor> ?x . ?x <http://dbpedia.org/ontology/restingPlace> ?uri . }" -"Name an airline with hub airports as Los Angeles International Airport and San Francisco International Airport? | 'Los Angeles International Airport'-res:Los_Angeles_International_Airport | 'San Francisco International Airport'-res:San_Francisco_International_Airport | 'name'-dbp:name | 'airline'-dbo:icaoAirlineCode | 'hub airports'-dbp:hub","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/archipelago> <http://dbpedia.org/resource/Los_Angeles_International_Airport> . ?uri <http://dbpedia.org/property/hubAirport> <http://dbpedia.org/resource/San_Francisco_International_(Airport}> " +"What is the mascot of the alma mater of Deborah Crombie? | 'Deborah Crombie'-res:Deborah_Crombie | 'mascot'-dbo:mascot | 'alma mater'-dbo:almaMater"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Deborah_Crombie> <http://dbpedia.org/property/almaMater> ?uri } " +"What is the resting place of the person who is the successor of James W. Hyatt ? | 'W'-res:Vienna | 'James Hyatt'-res:James_W._Hyatt | 'resting'-dbo:battle | 'place'-dbo:place | 'person'-dbp:type | 'successor'-dbo:successor","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/successor> <http://dbpedia.org/resource/James_W._Hyatt> . ?x <http://dbpedia.org/ontology/restingPlace> ?uri . }" +"Name an airline with hub airports as Los Angeles International Airport and San Francisco International Airport? | 'Los Angeles International Airport'-res:Los_Angeles_International_Airport | 'San Francisco International Airport'-res:San_Francisco_International_Airport | 'name'-dbp:name | 'airline'-dbo:icaoAirlineCode | 'hub airports'-dbp:hub"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/hubAirport> <http://dbpedia.org/resource/Los_Angeles_International_Airport> } " "Who owns the bank where Fabio Mercurio works? | 'Fabio Mercurio'-res:Fabio_Mercurio | 'owns'-dbo:relation | 'bank'-dbo:series | 'works'-dbo:language","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Fabio_Mercurio> <http://dbpedia.org/property/employer> ?x . ?x <http://dbpedia.org/ontology/owner> ?uri . }" -"Who owns the horses which have won the Timeform award? | 'Timeform award'-res:Timeform | 'owns'-dbo:languageFamily | 'horses'-dbo:staff | 'won'-dbo:award","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/award> <http://dbpedia.org/resource/Timeform> . ?x <http://dbpedia.org/property/owner> ?uri . }" +"Who owns the horses which have won the Timeform award? | 'Timeform award'-res:Timeform | 'owns'-dbo:languageFamily | 'horses'-dbo:staff | 'won'-dbo:award","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/awards> <http://dbpedia.org/resource/Timeform> . ?x <http://dbpedia.org/ontology/owner> ?uri . }" "What are some fictional characters whose voice is in the peanuts movie? | 'the peanuts movie'-res:The_Peanuts_Movie | 'voice'-dbo:voice | 'peanuts movie'-dbo:picture","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/voice> <http://dbpedia.org/resource/The_Peanuts_Movie> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/FictionalCharacter>}" "How many people used to play for Toronto Argonauts? | 'Toronto Argonauts'-res:Toronto_Argonauts | 'play'-dbo:team","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/team> <http://dbpedia.org/resource/Toronto_Argonauts> . }" -"What is the national origin of Dornier Aerodyne and Hirth Acrostar ?; | 'Dornier Aerodyne'-res:Dornier_Aerodyne | 'Hirth Acrostar ;'-res:Hirth_Acrostar | 'national origin'-dbp:nationalOrigin | 'origin'-dbo:origin","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dornier_Aerodyne> <http://dbpedia.org/property/nationalOrigin> ?uri . <http://dbpedia.org/resource/Hirth_Acrostar> <http://dbpedia.org/ontology/origin> ?uri . }" -"Who acted in the work written by Colin Brake? | 'Colin Brake'-res:Colin_Brake | 'acted'-dbp:noted | 'work'-dbo:service | 'written'-dbp:writtenby","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/writers> <http://dbpedia.org/resource/Colin_Brake> . ?x <http://dbpedia.org/ontology/noted> ?uri . }" +"What is the national origin of Dornier Aerodyne and Hirth Acrostar ?; | 'Dornier Aerodyne'-res:Dornier_Aerodyne | 'Hirth Acrostar ;'-res:Hirth_Acrostar | 'national origin'-dbp:nationalOrigin | 'origin'-dbo:origin"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dornier_Aerodyne> <http://dbpedia.org/property/nationalOrigin> ?uri . <http://dbpedia.org/resource/Hirth_Acrostar> <http://dbpedia.org/ontology/origin> ?uri} " +"Who acted in the work written by Colin Brake? | 'Colin Brake'-res:Colin_Brake | 'acted'-dbp:noted | 'work'-dbo:service | 'written'-dbp:writtenby","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/notedWork> <http://dbpedia.org/resource/Colin_Brake> . ?x <http://dbpedia.org/ontology/starring> ?uri . }" "List the series of the books whose author is K. W. Jeter. | 'K'-res:K | 'W Jeter'-res:K._W._Jeter | 'W'-res:W | 'K Jeter'-res:K._W._Jeter | 'series'-dbo:series | 'books'-dbo:title | 'author'-dbo:author","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/author> <http://dbpedia.org/resource/K._W._Jeter> . ?x <http://dbpedia.org/ontology/series> ?uri . }" -"How many sports are played at the university whose president is Emanuel de Guzman? | 'Emanuel de Guzman'-res:Emanuel_de_Guzman | 'sports'-dbo:athletics | 'played'-dbo:coach | 'university'-dbo:university | 'president'-dbo:president","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/president> <http://dbpedia.org/resource/Emanuel_de_Guzman> . ?x <http://dbpedia.org/ontology/sport> ?uri . }" -"Give me the count of interests of the philosopher whose primary interest is Metaphysics ? | 'Metaphysics'-res:Metaphysics | 'interests'-dbp:mainInterests | 'interests'-dbp:mainInterests"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/mainInterests> <http://dbpedia.org/resource/Metaphysics> . ?x <http://dbpedia.org/ontology/interests> ?uri }" +"How many sports are played at the university whose president is Emanuel de Guzman? | 'Emanuel de Guzman'-res:Emanuel_de_Guzman | 'sports'-dbo:athletics | 'played'-dbo:coach | 'university'-dbo:university | 'president'-dbo:president","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/president> <http://dbpedia.org/resource/Emanuel_de_Guzman> . ?x <http://dbpedia.org/property/athletics> ?uri . }" +"Give me the count of interests of the philosopher whose primary interest is Metaphysics ? | 'Metaphysics'-res:Metaphysics | 'interests'-dbp:mainInterests | 'interests'-dbp:mainInterests","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/mainInterests> <http://dbpedia.org/resource/Metaphysics> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}" "How many people won the Gold Medal of the Royal Astronomical Society? | 'Gold Medal of the Royal Astronomical Society'-res:Gold_Medal_of_the_Royal_Astronomical_Society | 'won'-dbp:prizes","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/prizes> <http://dbpedia.org/resource/Gold_Medal_of_the_Royal_Astronomical_Society> . }" -"Which program was on NBC network with executive producer as Glen and Les Charles? | 'NBC'-res:NBC | 'Glen'-res:Glen | 'Les Charles'-res:Glen_and_Les_Charles | 'program'-dbo:programmeFormat | 'network'-dbo:network | 'executive producer'-dbo:writer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/executiveProducer> <http://dbpedia.org/resource/Glen_and_Les_Charles> . ?uri <http://dbpedia.org/property/network> <http://dbpedia.org/resource/NBC}> " +"Which program was on NBC network with executive producer as Glen and Les Charles? | 'NBC'-res:NBC | 'Glen'-res:Glen | 'Les Charles'-res:Glen_and_Les_Charles | 'program'-dbo:programmeFormat | 'network'-dbo:network | 'executive producer'-dbo:writer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/executiveProducer> <http://dbpedia.org/resource/Glen_and_Les_Charles> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" "Which countries came together to serve a greater purpose and founded South Asia Subregional Economic Cooperation? | 'countries'-res:Countries_of_the_United_Kingdom | 'South Asia Subregional Economic Cooperation'-res:South_Asia_Subregional_Economic_Cooperation | 'serve'-dbp:minister | 'purpose'-dbo:purpose | 'founded'-dbo:leader","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/purpose> <http://dbpedia.org/resource/South_Asia_Subregional_Economic_Cooperation> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Country>}" -"Through which label has Katy B released her singles? | 'B'-res:B | 'Katy'-res:Katy | 'label'-dbo:flag | 'released'-dbo:channel | 'singles'-dbo:slogan","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/label> <http://dbpedia.org/resource/Katy_B._> . ?x <http://dbpedia.org/property/label> ?uri . }" +"Through which label has Katy B released her singles? | 'B'-res:B | 'Katy'-res:Katy | 'label'-dbo:flag | 'released'-dbo:channel | 'singles'-dbo:slogan","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/producer> <http://dbpedia.org/resource/Katy_B> . ?uri <http://dbpedia.org/property/label> ?x . }" "List the teams for which Bobby Hoppe played ? | 'Bobby Hoppe'-res:Bobby_Hoppe | 'teams'-dbp:pastteams"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bobby_Hoppe> <http://dbpedia.org/property/pastteams> ?uri } " -"Who first ascented a mountain of Cathedral Peak (California) ? | 'Cathedral Peak (California)'-res:Cathedral_Peak_(California) | 'ascented'-dbo:firstAscentPerson | 'mountain'-dbo:elevation","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cathedral_Peak_(California)> <http://dbpedia.org/property/firstAscentPerson> ?x . ?x <http://dbpedia.org/ontology/mountain> ?uri . }" -"Which awards did the children of Erik Bergman won ? | 'Erik Bergman'-res:Erik_Bergman_(Lutheran_minister) | 'children'-dbp:children | 'awards'-dbp:awards","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Erik_Bergman_(Lutheran_minister)> <http://dbpedia.org/property/children> ?x . ?x <http://dbpedia.org/ontology/award> ?uri . }" +"Who first ascented a mountain of Cathedral Peak (California) ? | 'Cathedral Peak (California)'-res:Cathedral_Peak_(California) | 'ascented'-dbo:firstAscentPerson | 'mountain'-dbo:elevation"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cathedral_Peak_(California)> <http://dbpedia.org/ontology/firstAscentPerson> ?uri } " +"Which awards did the children of Erik Bergman won ? | 'Erik Bergman'-res:Erik_Bergman_(Lutheran_minister) | 'children'-dbp:children | 'awards'-dbp:awards"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Erik_Bergman_(Lutheran_minister)> <http://dbpedia.org/property/children> ?uri } " "How many people are buried in the Mausoleum of Augustus? | 'Mausoleum of Augustus'-res:Mausoleum_of_Augustus | 'buried'-dbp:placeOfBurial","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/placeOfBurial> <http://dbpedia.org/resource/Mausoleum_of_Augustus> . }" "List the program genres of the sister stations of 97.1 WASH FM? | 'WASH'-res:WASH_(FM) | 'sister stations'-dbp:sisterStations | 'program'-dbo:programmeFormat","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/sisterStations> <http://dbpedia.org/resource/WASH_(FM)> . ?x <http://dbpedia.org/ontology/programmeFormat> ?uri . }" "Which team's players have played in the national hockey league? | 'national hockey league'-res:National_Hockey_League | 'team'-dbo:team | 'players'-dbo:participant | 'played'-dbo:participant","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/league> <http://dbpedia.org/resource/National_Hockey_League> . ?x <http://dbpedia.org/ontology/team> ?uri . }" "Where was James McClure born ? | 'James McClure'-res:James_McClure_(table_tennis) | 'born'-dbo:birthPlace"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/James_McClure_(table_tennis)> <http://dbpedia.org/ontology/birthPlace> ?uri } " "Whose music composer is signed up with Sony Music Entertainment? | 'Sony Music Entertainment'-res:Sony_Music_Entertainment | 'music composer'-dbo:creator | 'signed'-dbo:movement","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/recordLabel> <http://dbpedia.org/resource/Sony_Music_Entertainment> . ?uri <http://dbpedia.org/property/musicComposer> ?x . }" -"Which labels signs up progressive rock bands? | 'progressive rock'-res:Progressive_rock | 'labels'-dbp:label | 'signs'-dbo:precursor","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/genre> <http://dbpedia.org/resource/Progressive_rock> . ?x <http://dbpedia.org/ontology/recordLabel> ?uri . }" -"Where does the railway tracks start, which ends in Kazan? | 'railway tracks start,'-res:Start | 'Kazan'-res:Kazan | 'ends'-dbp:end","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kazan> <http://dbpedia.org/property/end> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Railway>}" -"what are some devices made by asus? | 'asus'-res:Asus | 'made by'-dbo:manufacturer | 'devices'-dbo:InformationAppliance"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/manufacturer> <http://dbpedia.org/resource/Asus> } " +"Which labels signs up progressive rock bands? | 'progressive rock'-res:Progressive_rock | 'labels'-dbp:label | 'signs'-dbo:precursor","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/genre> <http://dbpedia.org/resource/Progressive_rock> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Band>}" +"Where does the railway tracks start, which ends in Kazan? | 'railway tracks start,'-res:Start | 'Kazan'-res:Kazan | 'ends'-dbp:end"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/end> <http://dbpedia.org/resource/Kazan> } " +"what are some devices made by asus? | 'asus'-res:Asus | 'made by'-dbo:manufacturer | 'devices'-dbo:InformationAppliance","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/manufacturer> <http://dbpedia.org/resource/Asus> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Device>}" "Which former team of Franois Beauchemin does the Nathan Dempsey played for ? | 'Franois Beauchemin does the Nathan Dempsey'-res:François_Beauchemin | 'former team'-dbo:formerTeam | 'played'-dbo:participant"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/François_Beauchemin> <http://dbpedia.org/ontology/formerTeam> ?uri } " "What is the colour of Red Marauder ? | 'Red Marauder'-res:Red_Marauder | 'colour'-dbo:colour"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Red_Marauder> <http://dbpedia.org/ontology/colour> ?uri } " -"Who is the scientist whose doctoral student is Erich Bagge? | 'scientist'-res:Scientist | 'Erich Bagge'-res:Erich_Bagge | 'doctoral student'-dbo:doctoralStudent | 'scientist'-dbo:Scientist","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/doctoralStudent> <http://dbpedia.org/resource/Erich_Bagge> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}" -"Name some leaders of the parent organisation of the Gestapo? | 'Gestapo'-res:Gestapo | 'parent organisation'-dbo:parentOrganisation | 'leaders'-dbo:leader","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/parentOrganisation> <http://dbpedia.org/resource/Gestapo> . ?x <http://dbpedia.org/property/leader> ?uri . }" -"How many venues are located in the US? | 'US'-res:United_States | 'venues'-dbo:location | 'located'-dbo:locatedInArea","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/locatedInArea> <http://dbpedia.org/resource/United_States> . }" -"Name the television show whose company is HBO and Playtone? | 'HBO'-res:HBO | 'and Playtone'-res:Playtone | 'name'-dbp:name | 'television show'-dbo:transmission | 'company'-dbo:company","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/company> <http://dbpedia.org/resource/HBO> . ?uri <http://dbpedia.org/property/playtone> <http://dbpedia.org/resource/Playtone}> " +"Who is the scientist whose doctoral student is Erich Bagge? | 'scientist'-res:Scientist | 'Erich Bagge'-res:Erich_Bagge | 'doctoral student'-dbo:doctoralStudent | 'scientist'-dbo:Scientist","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/doctoralStudents> <http://dbpedia.org/resource/Erich_Bagge> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}" +"Name some leaders of the parent organisation of the Gestapo? | 'Gestapo'-res:Gestapo | 'parent organisation'-dbo:parentOrganisation | 'leaders'-dbo:leader","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/parentOrganisation> <http://dbpedia.org/resource/Gestapo> . ?x <http://dbpedia.org/property/leaderName> ?uri . }" +"How many venues are located in the US? | 'US'-res:United_States | 'venues'-dbo:location | 'located'-dbo:locatedInArea","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/birthPlace> <http://dbpedia.org/resource/United_States> . ?x <http://dbpedia.org/ontology/location> ?uri . }" +"Name the television show whose company is HBO and Playtone? | 'HBO'-res:HBO | 'and Playtone'-res:Playtone | 'name'-dbp:name | 'television show'-dbo:transmission | 'company'-dbo:company","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/company> <http://dbpedia.org/resource/HBO> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" "List the actors of Lucy Sullivan Is Getting Married? | 'Lucy Sullivan Is Getting Married'-res:Lucy_Sullivan_Is_Getting_Married | 'actors of'-dbp:starring"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lucy_Sullivan_Is_Getting_Married> <http://dbpedia.org/property/starring> ?uri } " -"How many people have worked in the band one of whose current member is Hynief? | 'Hynief'-res:Hynief | 'worked'-dbo:operator | 'band'-dbo:band | 'current member'-dbo:part","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/currentMembers> <http://dbpedia.org/resource/Hynief> . ?uri <http://dbpedia.org/ontology/currentMember> ?x . }" +"How many people have worked in the band one of whose current member is Hynief? | 'Hynief'-res:Hynief | 'worked'-dbo:operator | 'band'-dbo:band | 'current member'-dbo:part","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/currentMembers> <http://dbpedia.org/resource/Hynief> . ?uri <http://dbpedia.org/property/associatedMusicalArtist> ?x . }" "Enumerate all those who are in the Board of companies founded in New York? | 'Board'-res:Board | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'New York'-res:New_York | 'founded'-dbp:foundation | 'Board'-dbo:board","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/foundation> <http://dbpedia.org/resource/New_York> . ?uri <http://dbpedia.org/ontology/board> ?x . }" -"How many people have been presenters for NBC shows? | 'NBC'-res:NBC | 'presenters'-dbo:presenter | 'shows'-dbo:place","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/channel> <http://dbpedia.org/resource/NBC> . ?x <http://dbpedia.org/property/presenter> ?uri . }" -"In which wars army men awarded with the Croix de Guerre, fought? | 'army men awarded'-res:Army_Men:_RTS | 'Croix de Guerre,'-res:École_Militaire | 'wars'-dbp:battles | 'fought'-dbo:type","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/Croix_De_Guerre> . ?x <http://dbpedia.org/ontology/battle> ?uri . }" -"Where is Lao Plaza Hotel located? | 'Lao Plaza Hotel'-res:Lao_Plaza_Hotel | 'located'-dbo:position"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lao_Plaza_Hotel> <http://dbpedia.org/property/locationCity> ?uri } " -"Which mainter of Pandaruan Bridge is also the land of Malaysia junior Hockey league ? | 'Pandaruan Bridge'-res:Pandaruan_Bridge | 'Malaysia junior Hockey league'-res:Malaysia_Junior_Hockey_League | 'mainter'-dbo:owner | 'land'-dbo:country"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pandaruan_Bridge> <http://dbpedia.org/property/owner> ?uri . <http://dbpedia.org/resource/Malaysia_Junior_Hockey_League> <http://dbpedia.org/ontology/country> ?uri} " +"How many people have been presenters for NBC shows? | 'NBC'-res:NBC | 'presenters'-dbo:presenter | 'shows'-dbo:place","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/channel> <http://dbpedia.org/resource/NBC> . ?uri <http://dbpedia.org/property/presenter> ?x . }" +"In which wars army men awarded with the Croix de Guerre, fought? | 'army men awarded'-res:Army_Men:_RTS | 'Croix de Guerre,'-res:École_Militaire | 'wars'-dbp:battles | 'fought'-dbo:type","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/Croix_de_Gére> . ?x <http://dbpedia.org/ontology/territory> ?uri . }" +"Where is Lao Plaza Hotel located? | 'Lao Plaza Hotel'-res:Lao_Plaza_Hotel | 'located'-dbo:position"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lao_Plaza_Hotel> <http://dbpedia.org/property/location> ?uri } " +"Which mainter of Pandaruan Bridge is also the land of Malaysia junior Hockey league ? | 'Pandaruan Bridge'-res:Pandaruan_Bridge | 'Malaysia junior Hockey league'-res:Malaysia_Junior_Hockey_League | 'mainter'-dbo:owner | 'land'-dbo:country"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pandaruan_Bridge> <http://dbpedia.org/ontology/owner> ?uri . <http://dbpedia.org/resource/Malaysia_Junior_Hockey_League> <http://dbpedia.org/property/country> ?uri} " "Which writer has childrens named Mother Mary Alphonsa and Julian Hawthorne? | 'Mother Mary Alphonsa'-res:Mother_Mary_Alphonsa | 'Julian Hawthorne'-res:Julian_Hawthorne | 'writer'-dbo:writer | 'childrens'-dbp:children","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/children> <http://dbpedia.org/resource/Mother_Mary_Alphonsa> . ?uri <http://dbpedia.org/ontology/writer> <http://dbpedia.org/resource/Julian_Hawthorne> . }" -"Name all the hubs of the airlines whose one of the hubs is Selangir ? | 'Selangir'-res:Selangor | 'name'-dbo:name | 'hubs'-dbo:hubAirport | 'airlines'-dbo:icaoAirlineCode | 'hubs'-dbo:hubAirport","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/hubAirport> <http://dbpedia.org/resource/Selangor> . ?x <http://dbpedia.org/property/hubs> ?uri . }" +"Name all the hubs of the airlines whose one of the hubs is Selangir ? | 'Selangir'-res:Selangor | 'name'-dbo:name | 'hubs'-dbo:hubAirport | 'airlines'-dbo:icaoAirlineCode | 'hubs'-dbo:hubAirport"," SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/hubAirport> <http://dbpedia.org/resource/Selangor> . ?x <http://dbpedia.org/property/hubs> ?uri }" "Who is the President of United World College of Costa Rica ? | 'President of United World College of Costa Rica'-res:United_World_College_of_Costa_Rica | 'President'-dbp:president"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/United_World_College_of_Costa_Rica> <http://dbpedia.org/property/president> ?uri } " -"Which city has it's landmark as Cheasty Boulevard South? | 'landmark'-res:Landmark | 'Cheasty Boulevard South'-res:Cheasty_Boulevard_South | 'city'-dbo:city","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/city> <http://dbpedia.org/resource/Cheasty_Boulevard_South> . }" -"Name the movie whose director is Ridley Scott and it's music composer is Vangelis? | 'Ridley Scott'-res:Ridley_Scott | 'Vangelis'-res:Vangelis | 'name'-dbp:name | 'movie'-dbo:picture | 'director'-dbo:director | 'music composer'-dbo:musicComposer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/director> <http://dbpedia.org/resource/Ridley_Scott> . ?uri <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Vangelis> . }" +"Which city has it's landmark as Cheasty Boulevard South? | 'landmark'-res:Landmark | 'Cheasty Boulevard South'-res:Cheasty_Boulevard_South | 'city'-dbo:city","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cheasty_Boulevard_South> <http://dbpedia.org/property/landmarks> ?x . ?x <http://dbpedia.org/ontology/city> ?uri . }" +"Name the movie whose director is Ridley Scott and it's music composer is Vangelis? | 'Ridley Scott'-res:Ridley_Scott | 'Vangelis'-res:Vangelis | 'name'-dbp:name | 'movie'-dbo:picture | 'director'-dbo:director | 'music composer'-dbo:musicComposer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/director> <http://dbpedia.org/resource/Ridley_Scott> . ?uri <http://dbpedia.org/property/musicComposer> <http://dbpedia.org/resource/Vangelis> . }" "How many currencies are in used in places where people speak French? | 'French'-res:French_language | 'places'-dbp:height | 'speak'-dbo:language | ''-dbo:country | ''-dbo:country","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/language> <http://dbpedia.org/resource/French_language> . ?x <http://dbpedia.org/property/currency> ?uri . }" -"How many factions were involved in the battles fought by Arthur St. Clair? | 'Arthur St Clair'-res:Arthur_St._Clair | 'factions'-dbo:movement | 'involved'-dbo:date | 'battles'-dbo:battle | 'fought'-dbo:type","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/battles> <http://dbpedia.org/resource/Arthur_St._Clair> . ?x <http://dbpedia.org/property/combatant> ?uri . }" -"Count the number of ingredient of the foods which have one of the ingredient is Pork ? | 'Pork'-res:Pork | 'count'-dbo:country | 'ingredient'-dbo:ingredient | 'foods'-dbo:product | 'ingredient'-dbo:ingredient"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/ingredient> <http://dbpedia.org/resource/Pork> . ?x <http://dbpedia.org/ontology/ingredient> ?uri }" -"List the newspapers whose headquarters's time zone is Central European Summer Time. | 'time zone'-res:Time_zone | 'Central European Summer Time'-res:Central_European_Summer_Time | 'newspapers'-dbo:title | 'headquarters'-dbo:headquarter","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/headquarter> <http://dbpedia.org/resource/Central_European_Summer_Time> . ?uri <http://dbpedia.org/property/format> ?x . }" -"What are the academic interests of the advisor of Paul Demiville ? | 'Paul Demiville'-res:Paul_Paul | 'academic'-dbo:abstract | 'advisor'-dbo:doctoralAdvisor","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Paul_Paul_Demiville> <http://dbpedia.org/property/doctoralAdvisor> ?x . ?x <http://dbpedia.org/ontology/academicInterests> ?uri . }" -"Which awards are presented by Swedish Academy? | 'Swedish Academy'-res:Sweden | 'Swedish Academy'-res:Swedish_Academy | 'presented'-dbo:presenter | 'awards'-dbo:Award","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/presenter> <http://dbpedia.org/resource/Swedish_Academy> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Award>}" -"what are some journals of academic Philosophy | 'academic Philosophy'-res:Teaching_Philosophy | 'journals'-dbp:journal"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/discipline> <http://dbpedia.org/resource/Academic_Philosophy> } " -"What is the official residence of the Lula J. Davis which is also the death location of the John McTaggart (jockey) ? | 'Lula J. Davis'-res:Lula_J._Davis | 'John McTaggart (jockey)'-res:John_McTaggart_(jockey) | 'residence'-dbo:residence | 'death location'-dbo:deathPlace"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lula_J._Davis> <http://dbpedia.org/ontology/residence> ?uri . <http://dbpedia.org/resource/John_McTaggart_(jockey)> <http://dbpedia.org/property/deathPlace> ?uri} " +"How many factions were involved in the battles fought by Arthur St. Clair? | 'Arthur St Clair'-res:Arthur_St._Clair | 'factions'-dbo:movement | 'involved'-dbo:date | 'battles'-dbo:battle | 'fought'-dbo:type","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/battle> <http://dbpedia.org/resource/Arthur_St._Clair> . ?x <http://dbpedia.org/property/combatant> ?uri . }" +"Count the number of ingredient of the foods which have one of the ingredient is Pork ? | 'Pork'-res:Pork | 'count'-dbo:country | 'ingredient'-dbo:ingredient | 'foods'-dbo:product | 'ingredient'-dbo:ingredient"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/ingredient> <http://dbpedia.org/resource/Pork> . ?x <http://dbpedia.org/property/editing> ?uri }" +"List the newspapers whose headquarters's time zone is Central European Summer Time. | 'time zone'-res:Time_zone | 'Central European Summer Time'-res:Central_European_Summer_Time | 'newspapers'-dbo:title | 'headquarters'-dbo:headquarter","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Central_European_Summer_Time> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Newspaper>}" +"What are the academic interests of the advisor of Paul Demiville ? | 'Paul Demiville'-res:Paul_Paul | 'academic'-dbo:abstract | 'advisor'-dbo:doctoralAdvisor"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Paul_Paul_Demiéville> <http://dbpedia.org/property/doctoralAdvisor> ?uri } " +"Which awards are presented by Swedish Academy? | 'Swedish Academy'-res:Sweden | 'Swedish Academy'-res:Swedish_Academy | 'presented'-dbo:presenter | 'awards'-dbo:Award","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/presenter> <http://dbpedia.org/resource/Swedish_Academy> . ?x <http://dbpedia.org/property/awards> ?uri . }" +"what are some journals of academic Philosophy | 'academic Philosophy'-res:Teaching_Philosophy | 'journals'-dbp:journal","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/academicPhilosophy> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Journal>}" +"What is the official residence of the Lula J. Davis which is also the death location of the John McTaggart (jockey) ? | 'Lula J. Davis'-res:Lula_J._Davis | 'John McTaggart (jockey)'-res:John_McTaggart_(jockey) | 'residence'-dbo:residence | 'death location'-dbo:deathPlace"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lula_J._Davis> <http://dbpedia.org/property/residence> ?uri . <http://dbpedia.org/resource/John_McTaggart_(jockey)> <http://dbpedia.org/ontology/deathPlace> ?uri} " "Name the nearest city to Lake Victoria? | 'Lake Victoria'-res:Lake_Victoria | 'nearest city'-dbo:nearestCity"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lake_Victoria> <http://dbpedia.org/ontology/nearestCity> ?uri } " "What is the common award won by Charles LeMaire and Eric Roth | 'Charles LeMaire'-res:Charles_LeMaire | 'Eric Roth'-res:Eric_Roth | 'award won'-dbp:awards | 'award won'-dbo:award","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Charles_LeMaire> <http://dbpedia.org/property/awards> ?uri . <http://dbpedia.org/resource/Eric_Roth> <http://dbpedia.org/ontology/award> ?uri . }" -"Tell me the total number of organizations who maintain the bridges made by the malaysian PWD? | 'Malaysian pwd'-res:Malaysia | 'Malaysian pwd'-res:PWD_Bamenda | 'total'-dbo:populationTotal | 'organizations'-dbo:company | 'maintain'-dbo:maintainedBy | 'bridges'-dbo:abstract | ''-dbo:country"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/maintainedBy> <http://dbpedia.org/resource/Malaysian_PWD_Bamenda> . ?x <http://dbpedia.org/property/country> ?uri }" +"Tell me the total number of organizations who maintain the bridges made by the malaysian PWD? | 'Malaysian pwd'-res:Malaysia | 'Malaysian pwd'-res:PWD_Bamenda | 'total'-dbo:populationTotal | 'organizations'-dbo:company | 'maintain'-dbo:maintainedBy | 'bridges'-dbo:abstract | ''-dbo:country"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/maintainedBy> <http://dbpedia.org/resource/Malaysian_PWD> . ?x <http://dbpedia.org/property/design> ?uri }" "How many shows does HBO have? | 'HBO'-res:HBO | '@@@'-dbo:company | 'shows'-dbo:TelevisionShow","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/company> <http://dbpedia.org/resource/HBO> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" "How many people have been canonized by Pope Benedict XVI? | 'Pope Benedict XVI'-res:Pope_Benedict_XVI | 'canonized'-dbo:canonizedBy","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/canonizedBy> <http://dbpedia.org/resource/Pope_Benedict_XVI> . }" "Whose work is in the Musee d'orsay? | 'Musee d'-res:Musée_d'Orsay | 'work'-dbp:work","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/work> <http://dbpedia.org/resource/Musée_d'Orsay> . }" -"What are the famous Uni Toronto scientists known for? | 'Uni Toronto'-res:University_of_Toronto"," SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/institution> <http://dbpedia.org/resource/University_of_Toronto> . ?x <http://dbpedia.org/property/knownFor> ?uri }" +"What are the famous Uni Toronto scientists known for? | 'Uni Toronto'-res:University_of_Toronto","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/knownFor> <http://dbpedia.org/resource/University_of_Toronto> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}" "How many books have been penned by Miguel de Cervantes? | 'Miguel de Cervantes'-res:Miguel_de_Cervantes | 'penned'-dbo:author | 'books'-dbo:Book","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/author> <http://dbpedia.org/resource/Miguel_de_Cervantes> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book>}" -"Count the band members of Skull Gang? | 'Skull Gang'-res:Skull_Gang | 'band members'-dbo:bandMember","SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Skull_Gang> <http://dbpedia.org/ontology/bandMember> ?uri . }" +"Count the band members of Skull Gang? | 'Skull Gang'-res:Skull_Gang | 'band members'-dbo:bandMember","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/bandMember> <http://dbpedia.org/resource/Skull_Gang> . }" "In which teams have league members of the Czech Extraliga played previously? | 'Czech Extraliga'-res:Czech_Republic | 'Czech Extraliga'-res:Czech_Extraliga | 'league'-dbp:league | 'teams'-dbo:formerTeam","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/league> <http://dbpedia.org/resource/Czech_Extraliga> . ?x <http://dbpedia.org/ontology/formerTeam> ?uri . }" -"In which cities were the chess grand masters born? | 'chess grand masters'-res:Grand_Masters'_Choice | 'cities'-dbo:country | 'born'-dbo:birthPlace","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/prizes> <http://dbpedia.org/resource/Chess_Grand_Masters'_Choice> . ?x <http://dbpedia.org/ontology/birthPlace> ?uri . }" -"WHo gave the lyrcis of Doonesbury ? | 'wHo'-res:Who | 'Doonesbury'-res:Doonesbury_(musical) | 'lyrics'-dbo:lyrics"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Doonesbury_(musical)> <http://dbpedia.org/property/lyrics> ?uri } " -"Which things have been located, where governance is Houston City Council? | 'Houston City Council'-res:Houston_City_Council | 'located,'-dbo:locatedInArea | 'governance'-dbo:management","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/locatedInArea> <http://dbpedia.org/resource/Houston_City_Council> . }" -"Who are the parents of Charles Phelps Taft II and Robert A. Taft? | 'II'-res:Ii | 'Charles Phelps Taft'-res:Charles_Phelps_Taft | 'A'-res:A | 'Robert Taft'-res:Robert_A._Taft | 'parents'-dbp:parents","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Charles_Phelps_Taft> <http://dbpedia.org/ontology/parent> ?uri . <http://dbpedia.org/resource/Robert_A._Taft> <http://dbpedia.org/property/parents> ?uri . }" -"How many prime ministers did the predecessor of Duncan Sandys serve? | 'Duncan Sandys'-res:Duncan_Sandys | 'prime ministers'-dbo:primeMinister | 'predecessor'-dbo:predecessor | 'serve'-dbo:colour","SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Duncan_Sandys> <http://dbpedia.org/property/predecessor> ?x . ?x <http://dbpedia.org/ontology/primeminister> ?uri . }" -"Name the city served by Juhu Aerodrome ? | 'Juhu Aerodrome'-res:Juhu_Aerodrome | 'served city'-dbp:cityServed"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Juhu_Aerodrome> <http://dbpedia.org/property/cityServed> ?uri } " -"How many cars succeed the cars assembled in Canada? | 'Canada'-res:Canada | 'cars'-dbo:management | 'succeed'-dbp:work | 'cars'-dbo:management | 'assembled'-dbp:assembly","SELECT DISTINCT COUNT( ?uri) WHERE { ?xdbp:assembly <http://dbpedia.org/resource/Canada> . ?x <http://dbpedia.org/property/predecessor> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Automobile>}" +"In which cities were the chess grand masters born? | 'chess grand masters'-res:Grand_Masters'_Choice | 'cities'-dbo:country | 'born'-dbo:birthPlace","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/prizes> <http://dbpedia.org/resource/Grand_Masters'_Choice> . ?x <http://dbpedia.org/ontology/birthPlace> ?uri . }" +"WHo gave the lyrcis of Doonesbury ? | 'wHo'-res:Who | 'Doonesbury'-res:Doonesbury_(musical) | 'lyrics'-dbo:lyrics"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Doonesbury_(musical)> <http://dbpedia.org/ontology/lyrics> ?uri } " +"Which things have been located, where governance is Houston City Council? | 'Houston City Council'-res:Houston_City_Council | 'located,'-dbo:locatedInArea | 'governance'-dbo:management","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/leaderName> <http://dbpedia.org/resource/Houston_City_Council> . ?x <http://dbpedia.org/ontology/location> ?uri . }" +"Who are the parents of Charles Phelps Taft II and Robert A. Taft? | 'II'-res:Ii | 'Charles Phelps Taft'-res:Charles_Phelps_Taft | 'A'-res:A | 'Robert Taft'-res:Robert_A._Taft | 'parents'-dbp:parents","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Charles_Phelps_Taft> <http://dbpedia.org/property/parents> ?uri . <http://dbpedia.org/resource/Robert_A._Taft> <http://dbpedia.org/ontology/parent> ?uri . }" +"How many prime ministers did the predecessor of Duncan Sandys serve? | 'Duncan Sandys'-res:Duncan_Sandys | 'prime ministers'-dbo:primeMinister | 'predecessor'-dbo:predecessor | 'serve'-dbo:colour","SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Duncan_Sandys> <http://dbpedia.org/property/predecessor> ?x . ?x <http://dbpedia.org/ontology/primeMinister> ?uri . }" +"Name the city served by Juhu Aerodrome ? | 'Juhu Aerodrome'-res:Juhu_Aerodrome | 'served city'-dbp:cityServed","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Juhu_Aerodrome> <http://dbpedia.org/property/cityServed> ?uri . }" +"How many cars succeed the cars assembled in Canada? | 'Canada'-res:Canada | 'cars'-dbo:management | 'succeed'-dbp:work | 'cars'-dbo:management | 'assembled'-dbp:assembly","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/assembly> <http://dbpedia.org/resource/Canada> . ?x <http://dbpedia.org/ontology/predecessor> ?uri . }" "What are the airlines whose hub is San Francisco International Airport? | 'San Francisco International Airport'-res:San_Francisco_International_Airport | 'hub'-dbp:hubs | 'airlines'-dbo:Airline","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/hubs> <http://dbpedia.org/resource/San_Francisco_International_Airport> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Airline>}" "Which religions' people fought in the Miao rebellion? | 'Miao rebellion'-res:Miao_Rebellion | 'religions'-dbo:religion | 'fought'-dbo:type","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/Miao_Rebellion> . ?x <http://dbpedia.org/ontology/religion> ?uri . }" -"How many other architect are there of the historic places whose architect is also Stanford White ? | 'historic places'-res:Heritage_New_Zealand | 'Stanford White'-res:Stanford_White | 'architect'-dbo:architect | 'architect'-dbo:architect"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/architect> <http://dbpedia.org/resource/Stanford_White> . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/HistoricPlace>}" -"Which religion is followed by people in the family of Meadow Sopranos? | 'Meadow Sopranos'-res:Meadow_Soprano | 'religion'-dbo:religion | 'family'-dbo:family","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Meadow_Soprano> <http://dbpedia.org/property/family> ?x . ?x <http://dbpedia.org/ontology/religion> ?uri . }" -"What are some shows whose voice actors play the piano? | 'piano'-res:Piano | 'shows'-dbo:place | 'voice actors'-dbo:voice | 'play'-dbo:starring","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/keyPeople> <http://dbpedia.org/resource/Piano> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" -"From how many different places have participants of Breeders's Cup Turf come? | 'Breeders'-res:Breeders_(film) | 'Cup Turf'-res:Breeders'_Cup_Juvenile_Turf | 'places'-dbp:height | 'participants'-dbo:participant","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/race> <http://dbpedia.org/resource/Breeders'_Cup_Juvenile_Turf> . ?x <http://dbpedia.org/property/race> ?uri . }" -"How many athletic associations are there in all of the private universities? | 'athletic associations'-res:Bahamas_Association_of_Athletic_Associations | 'private universities'-res:List_of_private_universities_in_Canada","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/campus> <http://dbpedia.org/resource/Bahamas_Association_of_Athletic_Associations> . ?x <http://dbpedia.org/property/athletics> ?uri . }" -"What are some products manufactured by Sony? | 'Sony'-res:Sony | 'manufactured by'-dbo:manufacturer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/manufacturer> <http://dbpedia.org/resource/Sony> . }" -"What is the producer of the television shows whose channel is CBBC? | 'CBBC'-res:CBBC_(TV_channel) | 'producer'-dbo:producer | 'television'-dbo:transmission | 'shows'-dbo:place | 'channel'-dbo:channel","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/channel> <http://dbpedia.org/resource/CBBC_(TV_channel)> . ?x <http://dbpedia.org/property/producer> ?uri . }" -"List all the movies whose music has been made up with someone under RCA records? | 'RCA records'-res:RCA_Records | 'movies'-dbo:film | 'music'-dbo:musicFusionGenre | 'records'-dbp:book","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/associatedMusicalArtist> <http://dbpedia.org/resource/RCA_Records> . ?uri <http://dbpedia.org/property/music> ?x . }" +"How many other architect are there of the historic places whose architect is also Stanford White ? | 'historic places'-res:Heritage_New_Zealand | 'Stanford White'-res:Stanford_White | 'architect'-dbo:architect | 'architect'-dbo:architect","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/architect> <http://dbpedia.org/resource/Stanford_White> . ?x <http://dbpedia.org/property/anticipatedBy> ?uri . }" +"Which religion is followed by people in the family of Meadow Sopranos? | 'Meadow Sopranos'-res:Meadow_Soprano | 'religion'-dbo:religion | 'family'-dbo:family","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/family> <http://dbpedia.org/resource/Meadow_Soprano> . ?x <http://dbpedia.org/ontology/religion> ?uri . }" +"What are some shows whose voice actors play the piano? | 'piano'-res:Piano | 'shows'-dbo:place | 'voice actors'-dbo:voice | 'play'-dbo:starring","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/keyPeople> <http://dbpedia.org/resource/Piano> . ?uri <http://dbpedia.org/ontology/voice> ?x . }" +"From how many different places have participants of Breeders's Cup Turf come? | 'Breeders'-res:Breeders_(film) | 'Cup Turf'-res:Breeders'_Cup_Juvenile_Turf | 'places'-dbp:height | 'participants'-dbo:participant","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/race> <http://dbpedia.org/resource/Breeders_(film)> . ?x <http://dbpedia.org/property/destinations> ?uri . }" +"How many athletic associations are there in all of the private universities? | 'athletic associations'-res:Bahamas_Association_of_Athletic_Associations | 'private universities'-res:List_of_private_universities_in_Canada","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/university> <http://dbpedia.org/resource/Bahamas_Association_of_Athletic_Associations> . ?x <http://dbpedia.org/ontology/athleticAssociation> ?uri . }" +"What are some products manufactured by Sony? | 'Sony'-res:Sony | 'manufactured by'-dbo:manufacturer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/manufacturer> <http://dbpedia.org/resource/Sony> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Product>}" +"What is the producer of the television shows whose channel is CBBC? | 'CBBC'-res:CBBC_(TV_channel) | 'producer'-dbo:producer | 'television'-dbo:transmission | 'shows'-dbo:place | 'channel'-dbo:channel","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/channel> <http://dbpedia.org/resource/CBBC_(TV_channel)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" +"List all the movies whose music has been made up with someone under RCA records? | 'RCA records'-res:RCA_Records | 'movies'-dbo:film | 'music'-dbo:musicFusionGenre | 'records'-dbp:book","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/recordLabel> <http://dbpedia.org/resource/RCA_Records> . ?uri <http://dbpedia.org/ontology/musicComposer> ?x . }" "Name the ssignificant buildings of Ivan Fomin ? | 'ssignificant buildings'-res:Rigby's_Buildings | 'Ivan Fomin'-res:Ivan_Fomin | 'significant building'-dbo:significantBuilding"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ivan_Fomin> <http://dbpedia.org/ontology/significantBuilding> ?uri } " -"Give me the count of newspaper whose language is Sweedish and headquartered at stockholm ? | 'Sweedish'-res:Swedish | 'stockholm'-res:Stockholm | 'count'-dbo:country | 'newspaper'-dbo:title | 'language'-dbo:language | 'headquartered'-dbo:headquarter | ''-dbo:country"," SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/language> <http://dbpedia.org/resource/Swedish> . ?uri <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Stockholm> } " -"What are the cities located on the sea into which the Aegean Sea flows? | 'Aegean Sea'-res:Aegean_Sea | 'flows'-dbo:outflow | 'cities'-dbp:cities","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/outflow> <http://dbpedia.org/resource/Aegean_Sea> . ?x <http://dbpedia.org/property/cities> ?uri . }" -"In which areas did the pupils of Sylvain Levi work? | 'Sylvain Levi work'-res:Sylvain_Lévi | 'pupils'-dbo:school","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Sylvain_Lévi> <http://dbpedia.org/ontology/school> ?x . }" +"Give me the count of newspaper whose language is Sweedish and headquartered at stockholm ? | 'Sweedish'-res:Swedish | 'stockholm'-res:Stockholm | 'count'-dbo:country | 'newspaper'-dbo:title | 'language'-dbo:language | 'headquartered'-dbo:headquarter | ''-dbo:country"," SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/language> <http://dbpedia.org/resource/Sweedish> . ?uri <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Stockholm> } " +"What are the cities located on the sea into which the Aegean Sea flows? | 'Aegean Sea'-res:Aegean_Sea | 'flows'-dbo:outflow | 'cities'-dbp:cities","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Aegean_Sea> <http://dbpedia.org/ontology/outflow> ?x . ?x <http://dbpedia.org/property/cities> ?uri . }" +"In which areas did the pupils of Sylvain Levi work? | 'Sylvain Levi work'-res:Sylvain_Lévi | 'pupils'-dbo:school","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Sylvain_Lévi> <http://dbpedia.org/ontology/school> ?x . ?x <http://dbpedia.org/property/location> ?uri . }" "List the writers of Tales of Suspense ? | 'Tales of Suspense'-res:Tales_of_Suspense | 'writers'-dbp:writers"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Tales_of_Suspense> <http://dbpedia.org/property/writers> ?uri } " "Who are the children of Abigail Adams? | 'Abigail Adams'-res:Abigail_Adams | 'children'-dbp:children"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Abigail_Adams> <http://dbpedia.org/property/children> ?uri } " -"what are some common games played at both Fr Agnel Multipurpose School and Vishwajyot High School? | 'Fr Agnel Multipurpose School'-res:Fr._Agnel_Multipurpose_School_and_Junior_College | 'Vishwajyot High School'-res:Vishwajyot_High_School | 'common games'-dbo:sport | 'played'-dbo:coach"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Fr._Agnel_Multipurpose_School_and_Vishwajyot_High_School> <http://dbpedia.org/ontology/sport> ?uri } " -"Who have done their PhDs under a National Medal of Science winner? | 'PhDs under a National Medal of Science winner'-res:National_Medal_of_Science | 'winner'-dbp:prizes | 'PhDs under'-dbp:doctoralAdvisor","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/prizes> <http://dbpedia.org/resource/National_Medal_of_Science> . ?x <http://dbpedia.org/ontology/doctoralAdvisor> ?uri . }" +"what are some common games played at both Fr Agnel Multipurpose School and Vishwajyot High School? | 'Fr Agnel Multipurpose School'-res:Fr._Agnel_Multipurpose_School_and_Junior_College | 'Vishwajyot High School'-res:Vishwajyot_High_School | 'common games'-dbo:sport | 'played'-dbo:coach","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Fr._Agnel_Multipurpose_School_and_Junior_College> <http://dbpedia.org/ontology/sport> ?uri . <http://dbpedia.org/resource/Vishwajyot_High_School> <http://dbpedia.org/property/genre> ?uri . }" +"Who have done their PhDs under a National Medal of Science winner? | 'PhDs under a National Medal of Science winner'-res:National_Medal_of_Science | 'winner'-dbp:prizes | 'PhDs under'-dbp:doctoralAdvisor","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/prizes> <http://dbpedia.org/resource/National_Medal_of_Science> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}" "How many people are there who have relationship with Kennedy family? | 'Kennedy family'-res:Kennedy_family | 'relationship'-dbo:relation","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/relation> <http://dbpedia.org/resource/Kennedy_family> . }" "What islands are there on the Greater Antilles archipelago? | 'Greater Antilles archipelago'-res:Greater_Antilles | 'islands'-dbo:numberOfIslands","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/archipelago> <http://dbpedia.org/resource/Greater_Antilles> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Island>}" -"Name the military units whose command structure's headquarters is The Pentagon? | 'The Pentagon'-res:The_Pentagon | 'name'-dbp:name | 'military units'-dbo:militaryBranch | 'command structure'-dbo:commandStructure | 'headquarters'-dbp:headquarters","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/The_Pentagon> . ?uri <http://dbpedia.org/ontology/commandStructure> ?x . }" -"Which rivers end in Old Saybrook, Connecticut? | 'Old Saybrook, Connecticut'-res:Old_Saybrook,_Connecticut | 'in'-dbo:mouthMountain"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/mouthMountain> <http://dbpedia.org/resource/Old_Saybrook> } " +"Name the military units whose command structure's headquarters is The Pentagon? | 'The Pentagon'-res:The_Pentagon | 'name'-dbp:name | 'military units'-dbo:militaryBranch | 'command structure'-dbo:commandStructure | 'headquarters'-dbp:headquarters","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/The_Pentagon> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MilitaryUnit>}" +"Which rivers end in Old Saybrook, Connecticut? | 'Old Saybrook, Connecticut'-res:Old_Saybrook,_Connecticut | 'in'-dbo:mouthMountain"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/mouthMountain> <http://dbpedia.org/resource/Old_Saybrook,_Connecticut> } " "What are the baseball players who played for San Francisco Giants? | 'baseball players'-res:List_of_Japanese_baseball_players | 'San Francisco Giants'-res:San_Francisco_Giants | 'played for'-dbo:team | 'baseball player'-dbo:BaseballPlayer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/team> <http://dbpedia.org/resource/San_Francisco_Giants> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/BaseballPlayer>}" -"What are the schools whose city is Reading, Berkshire? | 'Reading, Berkshire'-res:Reading,_Berkshire | 'city'-dbo:city","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/city> <http://dbpedia.org/resource/Reading,_Berkshire> . }" -"Find the total number of tenants of the stadium whose tenants was Toronto Marlies? | 'Toronto Marlies'-res:Toronto_Marlies | 'tenants'-dbp:tenants | 'tenants'-dbp:tenants"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/tenant> <http://dbpedia.org/resource/Toronto_Marlies> . ?x <http://dbpedia.org/property/tenants> ?uri }" +"What are the schools whose city is Reading, Berkshire? | 'Reading, Berkshire'-res:Reading,_Berkshire | 'city'-dbo:city","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/city> <http://dbpedia.org/resource/Reading,_Berkshire> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/School>}" +"Find the total number of tenants of the stadium whose tenants was Toronto Marlies? | 'Toronto Marlies'-res:Toronto_Marlies | 'tenants'-dbp:tenants | 'tenants'-dbp:tenants"," SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Toronto_Marlies> <http://dbpedia.org/property/tenants> ?uri } " "Whose relatives are Uncle Henry (Oz) and Aunt Em? | 'Uncle Henry (Oz)'-res:Uncle_Henry_(Oz) | 'Aunt Em'-res:Aunt_Em | 'relatives'-dbo:relative | 'relatives'-dbo:relative","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/relatives> <http://dbpedia.org/resource/Uncle_Henry_(Oz)> . ?uri <http://dbpedia.org/ontology/relative> <http://dbpedia.org/resource/Aunt_Em> . }" "Which companies have Kumho Asiana Group as their parent company? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'Kumho Asiana Group'-res:Kumho_Asiana_Group | 'parent company'-dbo:parentCompany","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/parentCompany> <http://dbpedia.org/resource/Kumho_Asiana_Group> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}" "How many buildings are located in Toronto ? | 'Toronto'-res:Toronto | 'located'-dbp:location","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/location> <http://dbpedia.org/resource/Toronto> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Building>}" -"How many people have been the head coach for Middlesbrough FC? | 'Middlesbrough FC'-res:Middlesbrough_F.C. | 'head coach'-dbo:ground","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/currentclub> <http://dbpedia.org/resource/Middlesbrough_F.C> . . }" -"Who is married to a Miss Louisiana, USA? | ''-res:Miss_Louisiana_USA | 'USA'-dbp:title | 'married to'-dbp:spouse","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/spouse> <http://dbpedia.org/resource/Miss_Louisiana_USA> . }" -"What sports are played by school which owns Fr. Agnel Stadium ? | 'Fr. Agnel Stadium'-res:Fr._Agnel_Stadium | 'sports'-dbo:sport | 'played'-dbo:coach | 'school'-dbo:school | 'owns'-dbo:languageFamily","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Fr._Agnel_Stadium> <http://dbpedia.org/property/ground> ?x . ?x <http://dbpedia.org/ontology/sport> ?uri . }" -"What are the television shows telecasted on the network which has headquarters at Atlanta? | 'Atlanta'-res:Atlanta | 'television shows'-dbo:televisionSeries | 'telecasted'-dbo:transmission | 'network'-dbo:network | 'headquarters'-dbo:headquarter","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Atlanta> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" -"Name the award given in Norway and presented by Swedish Academy ? | 'Norway'-res:Norway | 'Swedish Academy'-res:Sweden | 'Swedish Academy'-res:Swedish_Academy | 'name'-dbp:name | 'award'-dbo:award | ''-dbo:country","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/training> <http://dbpedia.org/resource/Norway> . ?uri <http://dbpedia.org/property/awards> <http://dbpedia.org/resource/Swedish_Academy> . }" -"What are some shows by Comedy Central? | 'Comedy Central'-res:Comedy_Central | 'shows'-dbo:place","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/network> <http://dbpedia.org/resource/Comedy_Central> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" -"What came before PlayStation 4 and uses PlayStation 3 system software as OS? | 'PlayStation 4'-res:PlayStation_4 | 'PlayStation 3'-res:PlayStation_3 | 'software'-res:Software | 'OS'-res:OS","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/OS> <http://dbpedia.org/resource/PlayStation_4> . ?uri <http://dbpedia.org/property/programmingLanguage> <http://dbpedia.org/resource/OS> . }" -"Who are the people which were the influencer of the person, who influenced Costanzo Preve ? | 'Costanzo Preve'-res:Costanzo_Preve | 'influncer'-dbo:influencedBy | 'influnced'-dbo:influencedBy","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/affiliations> <http://dbpedia.org/resource/Costanzo_Preve> . ?x <http://dbpedia.org/ontology/influencedBy> ?uri . }" -"What is the alma mater of Andrew W. Lewis ? | 'W'-res:W | 'Andrew Lewis'-res:Andrew_W._Lewis | 'alma mater'-dbo:almaMater"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Andrew_W._Lewis> <http://dbpedia.org/property/almaMater> ?uri } " -"Name the nearest city to the historic place which has Englewood, Colorado as one of them ? | 'Englewood, Colorado'-res:Englewood,_Colorado | 'name'-dbp:name | 'nearest city'-dbo:city | 'historic place'-dbo:district","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/district> <http://dbpedia.org/resource/Englewood,_Colorado> . ?x <http://dbpedia.org/property/nearestCity> ?uri . }" +"How many people have been the head coach for Middlesbrough FC? | 'Middlesbrough FC'-res:Middlesbrough_F.C. | 'head coach'-dbo:ground","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/club> <http://dbpedia.org/resource/Middlesbrough_F.C> . . }" +"Who is married to a Miss Louisiana, USA? | ''-res:Miss_Louisiana_USA | 'USA'-dbp:title | 'married to'-dbp:spouse","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/title> <http://dbpedia.org/resource/Miss_Louisiana_USA> . }" +"What sports are played by school which owns Fr. Agnel Stadium ? | 'Fr. Agnel Stadium'-res:Fr._Agnel_Stadium | 'sports'-dbo:sport | 'played'-dbo:coach | 'school'-dbo:school | 'owns'-dbo:languageFamily"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Fr._Agnel_Stadium> <http://dbpedia.org/property/ground> ?uri } " +"What are the television shows telecasted on the network which has headquarters at Atlanta? | 'Atlanta'-res:Atlanta | 'television shows'-dbo:televisionSeries | 'telecasted'-dbo:transmission | 'network'-dbo:network | 'headquarters'-dbo:headquarter","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Atlanta> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" +"Name the award given in Norway and presented by Swedish Academy ? | 'Norway'-res:Norway | 'Swedish Academy'-res:Sweden | 'Swedish Academy'-res:Swedish_Academy | 'name'-dbp:name | 'award'-dbo:award | ''-dbo:country","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Norway> <http://dbpedia.org/ontology/award> ?uri . <http://dbpedia.org/resource/Swedish_Academy> <http://dbpedia.org/property/awards> ?uri . }" +"What are some shows by Comedy Central? | 'Comedy Central'-res:Comedy_Central | 'shows'-dbo:place","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/channel> <http://dbpedia.org/resource/Comedy_Central> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" +"What came before PlayStation 4 and uses PlayStation 3 system software as OS? | 'PlayStation 4'-res:PlayStation_4 | 'PlayStation 3'-res:PlayStation_3 | 'software'-res:Software | 'OS'-res:OS"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/computingPlatform> <http://dbpedia.org/resource/PlayStation_4> } " +"Who are the people which were the influencer of the person, who influenced Costanzo Preve ? | 'Costanzo Preve'-res:Costanzo_Preve | 'influncer'-dbo:influencedBy | 'influnced'-dbo:influencedBy","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/influencedBy> <http://dbpedia.org/resource/Costanzo_Preve> . ?x <http://dbpedia.org/ontology/influncer> ?uri . }" +"What is the alma mater of Andrew W. Lewis ? | 'W'-res:W | 'Andrew Lewis'-res:Andrew_W._Lewis | 'alma mater'-dbo:almaMater"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Andrew_W._Lewis> <http://dbpedia.org/ontology/almaMater> ?uri } " +"Name the nearest city to the historic place which has Englewood, Colorado as one of them ? | 'Englewood, Colorado'-res:Englewood,_Colorado | 'name'-dbp:name | 'nearest city'-dbo:city | 'historic place'-dbo:district"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Englewood,_Colorado> <http://dbpedia.org/property/nearestCity> ?uri } " "From which team did Marv McFadden played ? | 'Marv McFadden'-res:Marv_McFadden | 'team'-dbp:pastteams"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Marv_McFadden> <http://dbpedia.org/property/pastteams> ?uri } " -"What is the title of Kakae ? | 'Kakae'-res:Kakae | 'title'-dbo:title"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kakae> <http://dbpedia.org/property/title> ?uri } " +"What is the title of Kakae ? | 'Kakae'-res:Kakae | 'title'-dbo:title"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kakae> <http://dbpedia.org/ontology/title> ?uri } " "Who wrote Heroman? | 'Heroman'-res:Heroman | 'wrote'-dbo:author"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Heroman> <http://dbpedia.org/ontology/author> ?uri } " -"Where did the ultimate fighter: a champion will be crowned tonight and ultimate fighter: team rousey vs team tate take place? | 'ultimate fighter: team rousey'-res:Ronda_Rousey | 'ultimate fighter:'-dbo:height | 'champion'-dbo:champion | 'crowned'-dbo:height | 'tonight'-dbo:champion | 'team tate'-dbo:band | 'place'-dbo:place","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/Ronda_Rousey> . ?x <http://dbpedia.org/ontology/champion> ?uri . }" -"Which nation's engineers have graduated in Poland? | 'Poland'-res:Poland | 'nation'-dbo:country | 'engineers'-dbo:architect | 'graduated'-dbo:effectiveRadiatedPower","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/education> <http://dbpedia.org/resource/Poland> . ?x <http://dbpedia.org/ontology/engineer> ?uri . }" +"Where did the ultimate fighter: a champion will be crowned tonight and ultimate fighter: team rousey vs team tate take place? | 'ultimate fighter: team rousey'-res:Ronda_Rousey | 'ultimate fighter:'-dbo:height | 'champion'-dbo:champion | 'crowned'-dbo:height | 'tonight'-dbo:champion | 'team tate'-dbo:band | 'place'-dbo:place","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/champion> <http://dbpedia.org/resource/Ronda_Rousey> . ?x <http://dbpedia.org/ontology/ultimateFighter> ?uri . }" +"Which nation's engineers have graduated in Poland? | 'Poland'-res:Poland | 'nation'-dbo:country | 'engineers'-dbo:architect | 'graduated'-dbo:effectiveRadiatedPower","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/graduated> <http://dbpedia.org/resource/Poland> . ?uri <http://dbpedia.org/property/nationality> ?x . }" "Give me a count of movies whose music composer is Bernard Herrmann? | 'Bernard Herrmann'-res:Bernard_Herrmann | 'music composer'-dbo:musicComposer | 'movie'-dbo:Film","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/musicComposer> <http://dbpedia.org/resource/Bernard_Herrmann> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" -"Who has written works found in the Gangan comics? | 'Gangan comics'-res:Gangan_Comics | 'found'-dbp:magazine | 'found'-dbp:author","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/magazine> <http://dbpedia.org/resource/Gangan_Comics> . ?x <http://dbpedia.org/property/author> ?uri . }" -"What is the device whose successor's CPU is by AMD? | 'AMD'-res:Advanced_Micro_Devices | 'device'-dbo:title | 'successor'-dbo:successor","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/programmeFormat> <http://dbpedia.org/resource/Advanced_Micro_Devices> . ?uri <http://dbpedia.org/property/successor> ?x . }" +"Who has written works found in the Gangan comics? | 'Gangan comics'-res:Gangan_Comics | 'found'-dbp:magazine | 'found'-dbp:author","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/magazine> <http://dbpedia.org/resource/Gangan_Comics> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book>}" +"What is the device whose successor's CPU is by AMD? | 'AMD'-res:Advanced_Micro_Devices | 'device'-dbo:title | 'successor'-dbo:successor","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/successor> <http://dbpedia.org/resource/Advanced_Micro_Devices> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Device>}" "What is the club of Perianne Jones ? | 'Perianne Jones'-res:Perianne_Jones | 'club'-dbo:club"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Perianne_Jones> <http://dbpedia.org/ontology/club> ?uri } " "Who are the opponents of graduates of the Middle Temple? | 'Middle Temple'-res:Middle_Temple | 'graduates'-dbp:education | 'opponent'-dbo:opponent","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/education> <http://dbpedia.org/resource/Middle_Temple> . ?x <http://dbpedia.org/ontology/opponent> ?uri . }" "Which sports are played typically in private schools? | 'private school'-res:Private_school | 'schools'-dbp:schooltype | 'sport'-dbo:sport","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/schooltype> <http://dbpedia.org/resource/Private_school> . ?x <http://dbpedia.org/ontology/sport> ?uri . }" -"What is the casting of the movie directed by Justin Zackham ? | 'Justin Zackham'-res:Justin_Zackham | 'casting'-dbo:position | 'movie'-dbo:picture | 'directed'-dbo:principal","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/director> <http://dbpedia.org/resource/Justin_Zackham> . ?x <http://dbpedia.org/ontology/starring> ?uri . }" +"What is the casting of the movie directed by Justin Zackham ? | 'Justin Zackham'-res:Justin_Zackham | 'casting'-dbo:position | 'movie'-dbo:picture | 'directed'-dbo:principal","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/director> <http://dbpedia.org/resource/Justin_Zackham> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" "List all the mmebers of Mekong River Commission? | 'Mekong River Commission'-res:Mekong_River_Commission | 'mmebers'-dbo:membership"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Mekong_River_Commission> <http://dbpedia.org/property/membership> ?uri } " -"Name the actors of the TV show which has an episode named The Five ? | 'TV'-res:Tv_test_pattern | 'The Five'-res:The_Five | 'name actors'-dbo:leaderName | 'show'-dbo:show | 'episode'-dbo:type","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/network> <http://dbpedia.org/resource/The_Five> . ?x <http://dbpedia.org/property/starring> ?uri . }" +"Name the actors of the TV show which has an episode named The Five ? | 'TV'-res:Tv_test_pattern | 'The Five'-res:The_Five | 'name actors'-dbo:leaderName | 'show'-dbo:show | 'episode'-dbo:type","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/episode> <http://dbpedia.org/resource/The_Five> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" "How many religion's people have died in Malaysia? | 'Malaysia'-res:Malaysia | 'died in'-dbo:deathPlace | 'religion'-dbo:religion","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/deathPlace> <http://dbpedia.org/resource/Malaysia> . ?x <http://dbpedia.org/property/religion> ?uri . }" "Name the HBO TV show written by Erik jendresen ? | 'HBO'-res:HBO | 'TV show'-res:Show_TV | 'TV'-res:Tv_test_pattern | 'HBO show'-res:HBO_Pakistan | 'Erik jendresen'-res:Erik_Jendresen | 'name'-dbp:name | 'written'-dbo:writer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/writer> <http://dbpedia.org/resource/Erik_Jendresen> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" "List the team for which Doug Acomb played ? | 'Doug Acomb'-res:Doug_Acomb | 'team'-dbp:playedFor"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Doug_Acomb> <http://dbpedia.org/property/playedFor> ?uri } " diff --git a/data/predicted/lc-quad-requeried-linked-test-predicted-append-1-large-4-epochs.csv b/data/predicted/lc-quad-requeried-linked-test-predicted-append-1-large-4-epochs.csv new file mode 100644 index 0000000000000000000000000000000000000000..b6d1742f7f43c52407d0c0f4c52798be907a87bb --- /dev/null +++ b/data/predicted/lc-quad-requeried-linked-test-predicted-append-1-large-4-epochs.csv @@ -0,0 +1,1162 @@ +text,summary +"Which sects people are part of local political parties which fall under the International Muslim Brotherhood? | 'local political parties'-res:Political_Parties_(book) | 'International Muslim Brotherhood'-res:Muslim_Brotherhood | 'sects'-dbp:seats | 'fall'-dbo:movement","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/party> <http://dbpedia.org/resource/International_Muslim_Brotherhood> . ?x <http://dbpedia.org/ontology/party> ?uri . }" +"Who is the office holder with deputies as Neil Brown and Andrew Peacock? | 'Neil Brown'-res:Neil_Brown_(Australian_politician) | 'Andrew Peacock'-res:Andrew_Peacock | 'office holder'-dbo:owner | 'deputies'-dbo:deputy","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/deputy> <http://dbpedia.org/resource/Neil_Brown_(Australian_politician)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/OfficeHolder>}" +"How many other battles have the military person fought whose one of the battles is World War II ? | 'II'-res:Ii | 'World War'-res:World_War_II | 'battles'-dbp:battles | 'battles'-dbp:battles"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/World_War_II> . ?x <http://dbpedia.org/ontology/combatant> ?uri }" +"Whose network's parent organisation is Comcast? | 'parent organisation'-res:Parent | 'Comcast'-res:Comcast | 'parent organisation'-dbo:parentOrganisation | 'network'-dbo:network","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/parentOrganisation> <http://dbpedia.org/resource/Comcast> . ?uri <http://dbpedia.org/property/network> ?x . }" +"Name the movies distributed by RKO Pictures and has music composer as Bernard Herrmann? | 'RKO Pictures'-res:RKO_Pictures | 'Bernard Herrmann'-res:Bernard_Herrmann | 'name'-dbp:name | 'movies'-dbo:film | 'distributed'-dbo:distributor | 'music composer'-dbo:creator"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/distributor> <http://dbpedia.org/resource/RKO_Pictures> . ?uri <http://dbpedia.org/ontology/musicComposer> <http://dbpedia.org/resource/Bernard_Herrmann> } " +"What is the magazine which have been founded by Ralph J. Gleason? | 'J'-res:J | 'Ralph Gleason'-res:Ralph_J._Gleason | 'founded by'-dbo:founder | 'magazine'-dbo:Magazine","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/founder> <http://dbpedia.org/resource/Ralph_J._Gleason> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Magazine>}" +"In which cities can the beverage related to Barq's be found? | 'Barq'-res:Barq | 'cities'-dbo:country | 'beverage'-dbo:strength | 'related'-dbo:related","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Barq's> <http://dbpedia.org/ontology/related> ?x . ?x <http://dbpedia.org/property/cities> ?uri . }" +"Who was in military unit which played the role of Air interdiction? | 'Air interdiction'-res:Air_interdiction | 'military unit'-dbo:militaryUnit | 'played'-dbo:portrayer | 'role'-dbo:role","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/role> <http://dbpedia.org/resource/Air_interdiction> . ?x <http://dbpedia.org/property/militaryUnit> ?uri . }" +"Who are the current members of Insects vs Robots? | 'Insects vs Robots'-res:Insects_vs_Robots | 'current members'-dbp:currentMembers"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Insects_vs_Robots> <http://dbpedia.org/property/currentMembers> ?uri } " +"Name the nationalteam of Trn Vit Hng ? | 'Trn Vit Hng'-res:Trần_Việt_Hương | 'nationalteam'-dbp:nationalteam"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Trần_Việt_Hương> <http://dbpedia.org/property/nationalteam> ?uri } " +"Whihc uni did Joshua A. Siegel attend ? | 'whihc uni'-res:University_Station_(MTR) | 'A'-res:A | 'Joshua Siegel'-res:Joshua_A._Siegel | 'attend'-dbp:education"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Joshua_A._Siegel> <http://dbpedia.org/property/education> ?uri } " +"How many books are written by the author who is famous for Novelas Ejemplares? | 'Novelas Ejemplares'-res:Novelas_ejemplares | 'books'-dbo:volume | 'written'-dbo:animal | 'author'-dbo:author | 'famous'-dbo:service","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/notableWork> <http://dbpedia.org/resource/Novelas_ejemplares> . ?uri <http://dbpedia.org/property/author> ?x . }" +"to which university did both, the Stanford Cardinal and Gerald Reaven go? | 'both,'-res:Both | 'Stanford Cardinal'-res:Stanford_Cardinal | 'Gerald Reaven'-res:Gerald_Reaven | 'university'-dbp:university","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Stanford_Cardinal> <http://dbpedia.org/resource/Gerald_Reaven> <http://dbpedia.org/property/university> ?uri . }" +"where did Deion Sanders debut? | 'Deion Sanders'-res:Deion_Sanders | 'debut'-dbp:debutteam"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Deion_Sanders> <http://dbpedia.org/property/debutteam> ?uri } " +"What cities are nearer to Fuountain Lake Farm? | 'Fuountain Lake Farm'-res:Fountain_Lake_Farm | 'nearer'-dbo:nearestCity"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Fountain_Lake_Farm> <http://dbpedia.org/ontology/nearestCity> ?uri } " +"Which artists trained in San Francisco Art Institute? | 'San Francisco Art Institute'-res:San_Francisco_Art_Institute | 'trained'-dbp:training | 'artist'-dbo:Artist","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/training> <http://dbpedia.org/resource/San_Francisco_Art_Institute> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Artist>}" +"Name the country with currency as Aureus ? | 'Aureus'-res:Aureus_University_School_of_Medicine | 'name'-dbp:name | 'country'-dbo:kingdom | 'currency'-dbo:currency","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/currency> <http://dbpedia.org/resource/Aureus_University_School_of_Medicine> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Country>}" +"what awards have been given to A. Peter Dewey? | 'A'-res:A | 'Peter Dewey'-res:A._Peter_Dewey | 'awards'-dbo:award","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/A._Peter_Dewey> <http://dbpedia.org/property/awards> ?x . ?x <http://dbpedia.org/ontology/award> ?uri . }" +"Muhammad Yunus has won how many awards? | 'Muhammad yunus'-res:Muhammad_Yunus | 'won'-dbo:award | 'awards'-dbo:award","SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Muhammad_Yunus> <http://dbpedia.org/property/awards> ?uri . }" +"List the associates of bands which have a label by Motown ? | 'Motown'-res:Motown | 'associates'-dbo:team | 'bands'-dbo:staff | 'label'-dbp:label","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Motown> . ?x <http://dbpedia.org/ontology/associatedBand> ?uri . }" +"What is the faith of Kwai Chang Caine ? | 'Kwai Chang Caine'-res:Kwai_Chang_Caine | 'faith'-dbo:religion"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kwai_Chang_Caine> <http://dbpedia.org/ontology/religion> ?uri } " +"What are the houses of the legislature where the leader is called Pullaiahgaripalli ? | 'Pullaiahgaripalli'-res:Pullaiahgaripalli | 'houses'-dbo:house | 'legislature'-dbo:politicalPartyInLegislature | 'leader'-dbo:leader | 'called'-dbp:nickname","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/leader> <http://dbpedia.org/resource/Pullaiahgaripalli> . ?x <http://dbpedia.org/property/houses> ?uri . }" +"How many religions are followed by the group whose architectural style can be seen on Sanggar Agung? | 'Sanggar Agung'-res:Sanggar_Agung | 'religions'-dbo:religion | 'architectural style'-dbo:type","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/architecturalStyle> <http://dbpedia.org/resource/Sanggar_Agung> . ?x <http://dbpedia.org/ontology/religion> ?uri . }" +"How many things are written in C++? | 'C++'-res:C++ | 'written'-dbp:writtenIn","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/writtenIn> <http://dbpedia.org/resource/C++> . }" +"What are the hubs of PLUS Helicopter Services, a highway helicopter unit of PLUS Expressways? | 'PLUS'-res:Plus | 'Helicopter Services,'-res:PLUS_Expressways | 'highway helicopter unit'-res:Serbian_police_helicopter_unit | 'PLUS'-res:Plus | 'Expressways'-res:Expressways_of_Singapore | 'hubs'-dbp:hubs"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/PLUS_Expressways> <http://dbpedia.org/property/hubs> ?uri } " +"Who are the architect of the stadium whose one of the architect is louis D. Astorino ? | 'louis D. Astorino'-res:Louis_D._Astorino | 'architect'-dbo:architect | 'stadium'-dbo:stadium | 'architect'-dbo:architect","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/architect> <http://dbpedia.org/resource/Louis_D._Astorino> . ?x <http://dbpedia.org/property/stadium> ?uri . }" +"What is a common ingredient used in boyt Blodpalt and Kaszanka ? | 'Boyt blodpalt'-res:Blodpalt | 'Kaszanka'-res:Kaszanka | 'common ingredient'-dbo:ingredient","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Blodpalt> <http://dbpedia.org/ontology/ingredient> ?uri . <http://dbpedia.org/resource/Kaszanka> <http://dbpedia.org/property/ingredients> ?uri . }" +"Which movies's screenplay is written by Akiva Goldsman | 'screenplay'-res:Katha_Screenplay_Darsakatvam_Appalaraju | 'Akiva Goldsman'-res:Akiva_Goldsman | 'screenplay'-dbp:screenplay | 'movie'-dbo:Film","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/screenplay> <http://dbpedia.org/resource/Akiva_Goldsman> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" +"Give me all commanders which had an important role in both, the Battle of Fort Stephenson and Battle of the Thames? | 'Battle of Fort Stephenson'-res:Battle_of_Fort_Stephenson | 'Battle of the Thames'-res:Battle_of_the_Thames | 'commanders'-dbo:commander | 'role'-dbp:place","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/Battle_of_Fort_Stephenson> . ?x <http://dbpedia.org/ontology/commander> ?uri . }" +"To which series does the book belong which came after the Blade Runner 2? | 'Blade Runner 2'-res:Blade_Runner_2:_The_Edge_of_Human | 'series'-dbo:series | 'book'-dbo:volume | 'belong'-dbo:date","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/subsequentWork> <http://dbpedia.org/resource/Blade_Runner_2:_The_Edge_of_Human> . ?x <http://dbpedia.org/property/series> ?uri . }" +"In which city did The Ultimate Fighter: Team Rousey vs. Team Tate take place ? | 'The Ultimate Fighter: Team Rousey vs Team Tate'-res:The_Ultimate_Fighter:_Team_Rousey_vs._Team_Tate | 'city'-dbp:city | 'place'-dbo:place"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Ultimate_Fighter:_Team_Rousey_vs._Team_Tate> <http://dbpedia.org/property/city> ?uri } " +"What is the organisation whose purposes are Environmentalism and Peace? | 'Environmentalism and Peace'-res:Peace | 'organisation'-dbo:organisation | 'purposes'-dbp:purpose","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/purpose> <http://dbpedia.org/resource/Environmentalism> . ?uri <http://dbpedia.org/ontology/organisation> ?x . }" +"Count the number of sports team members which have player named Matt Williams ? | 'Matt Williams'-res:Matt_Williams_(New_Zealand_footballer) | 'name'-dbp:name | 'name'-dbp:name"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/name> <http://dbpedia.org/resource/Matt_Williams_(New_Zealand_footballer)> . ?x <http://dbpedia.org/property/team> ?uri }" +"How many different people own the Timeform award winners? | 'Timeform award winners'-res:Timeform","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/awards> <http://dbpedia.org/resource/Timeform> . ?x <http://dbpedia.org/ontology/owner> ?uri . }" +"Which city is known for the people working in the western penn hospital? | 'western penn hospital'-res:Toronto_Western_Hospital | 'city'-dbo:city | 'working'-dbo:language","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/hospital> <http://dbpedia.org/resource/Toronto_Western_Hospital> . ?x <http://dbpedia.org/property/locationCity> ?uri . }" +"Which education center Sidney Catlin Partrodge attended which was also the alma mater of Lisa Brummel ? | 'education center Sidney Catlin Partrodge'-res:Sidney_Catlin_Partridge | 'Lisa Brummel'-res:Lisa_Brummel | 'attended'-dbo:fat | 'alma mater'-dbo:almaMater"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Sidney_Catlin_Partridge> <http://dbpedia.org/property/education> ?uri . <http://dbpedia.org/resource/Lisa_Brummel> <http://dbpedia.org/ontology/almaMater> ?uri} " +"How many subjects are covered in the publications of Doubleday? | 'Doubleday'-res:Doubleday_(publisher) | 'subjects'-dbo:discipline | 'covered'-dbo:frozen | 'publications'-dbp:publications","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/publisher> <http://dbpedia.org/resource/Doubleday_(publisher)> . ?x <http://dbpedia.org/ontology/subject> ?uri . }" +"List the served region of the organisations of Trade association. | 'Trade association'-res:Trade_association | 'served region'-dbo:regionServed | 'organisations'-dbo:organisation","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/regionServed> <http://dbpedia.org/resource/Trade_association> . ?x <http://dbpedia.org/property/organisation> ?uri . }" +"Who composed the music for Tonight's the Night ? | 'Tonight's the Night'-res:Tonight's_the_Night_(2003_musical) | 'music'-dbp:music"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Tonight's_the_Night_(2003_musical)> <http://dbpedia.org/property/music> ?uri } " +"What awards have been given to race horses bred by Bert Michell? | 'Bert Michell'-res:Bert_S._Michell | 'awards'-dbo:award | 'race horses'-dbo:race | 'bred'-dbo:genus","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/breeder> <http://dbpedia.org/resource/Bert_S._Michell> . ?x <http://dbpedia.org/property/awards> ?uri . }" +"Which party won the elections when Y.S. Rajasekhara Reddy was in power? | 'YS'-res:Ys | 'Rajasekhara Reddy'-res:Y._S._Rajasekhara_Reddy | 'party'-dbo:party | 'won'-dbo:city | 'elections'-dbo:selection | 'power'-dbo:weight","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Y._S._Rajasekhara_Reddy> <http://dbpedia.org/property/leader> ?x . ?x <http://dbpedia.org/ontology/affiliation> ?uri . }" +"Who is the producer of Frampton's Camel ? | 'Frampton's Camel'-res:Frampton's_Camel | 'producer'-dbo:producer"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Frampton's_Camel> <http://dbpedia.org/ontology/producer> ?uri } " +"What is the alma mater of the scientist who is known for Rational analysis ? | 'scientist'-res:Scientist | 'Rational analysis'-res:Rational_analysis | 'alma mater'-dbo:school"," SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/knownFor> <http://dbpedia.org/resource/Rational_analysis> . ?x <http://dbpedia.org/property/almaMater> ?uri }" +"Whose relatives are Clan McDuck and Huey, Dewey, and Louie? | 'Clan McDuck'-res:Clan_McDuck | 'Huey, Dewey,'-res:Huey,_Dewey,_and_Louie | 'Louie'-res:Louie | 'relatives'-dbp:relatives | 'relatives'-dbp:relatives","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/relatives> <http://dbpedia.org/resource/Clan_McDuck> . }" +"What currencies are used in the country whose capital is Podgorica? | 'Currencies'-res:Currencies_of_Puerto_Rico | 'Podgorica'-res:Podgorica | 'capital'-dbo:capital | 'currencies'-dbp:currency","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/capital> <http://dbpedia.org/resource/Podgorica> . ?x <http://dbpedia.org/property/currency> ?uri . }" +"Where was William Anthony trained ? | 'William Anthony'-res:William_Anthony_(artist) | 'trained'-dbo:training"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/William_Anthony_(artist)> <http://dbpedia.org/ontology/training> ?uri } " +"Count all the ethinic group who speaks language which belongs to Anglo-Frisian language family ? | 'Anglo-Frisian language'-res:Anglo-Frisian_languages | 'count'-dbo:country | 'ethinic'-dbo:ethnicGroup | 'speaks'-dbo:language | 'language'-dbo:languageFamily | 'belongs'-dbp:date","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/languageFamily> <http://dbpedia.org/resource/Anglo-Frisian_languages> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/EthnicGroup>}" +"Which comic characters were created by Paul Dini? | 'Paul Dini'-res:Paul_Dini | 'created by'-dbp:creators | 'characters'-dbo:ComicsCharacter","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/creators> <http://dbpedia.org/resource/Paul_Dini> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/ComicsCharacter>}" +"Which city council owns the Ted Williams tunnel and Leonard Memorial ridge? | 'Ted Williams tunnel'-res:Ted_Williams_Tunnel | 'Leonard Memorial ridge'-res:Ridge | 'owns'-dbo:owner | 'owns'-dbo:owner","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ted_Williams_Tunnel> <http://dbpedia.org/ontology/owner> ?uri . <http://dbpedia.org/resource/Leonard_Memorial_Ridge> <http://dbpedia.org/property/owningCity> ?uri . }" +"How many bands collaborated with artists who signed up with EMI? | 'EMI'-res:Emi | 'bands'-dbo:staff | 'collaborated'-dbo:band | 'artists'-dbo:rkdArtistsId | 'signed'-dbo:movement","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/recordLabel> <http://dbpedia.org/resource/EMI> . ?uri <http://dbpedia.org/ontology/associatedBand> ?x . }" +"How many TV shows are of the company which are of company which is a subsidiary of Big Ticket Entertainment ? | 'entertainment ticket'-res:Big_Ticket_Entertainment | 'shows'-dbo:place | 'company'-dbo:company | 'company'-dbo:company | 'subsidiary'-dbo:subsidiary","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/subsidiary> <http://dbpedia.org/resource/Big_Ticket_Entertainment> . ?uri <http://dbpedia.org/property/company> ?x . }" +"In how many places are Marjas found? | 'Marjas'-res:Barjas | 'places'-dbo:height","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/locationCity> <http://dbpedia.org/resource/Marjas> . }" +"Whose shrines are in a place governed by Justin Trudeau? | 'Justin Trudeau'-res:Justin_Trudeau | 'shrines'-dbo:chain | 'place'-dbo:place | 'governed'-dbo:director","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/leaderName> <http://dbpedia.org/resource/Justin_Trudeau> . ?x <http://dbpedia.org/ontology/place> ?uri . }" +"Who is the leader of Hackweiser ? | 'Hackweiser'-res:Hackweiser | 'leader'-dbp:leaderName"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Hackweiser> <http://dbpedia.org/property/leaderName> ?uri } " +"Where was the successor of Hank Brown born? | 'Hank Brown'-res:Hank_Brown | 'successor'-dbo:successor | 'born'-dbo:birthPlace","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Hank_Brown> <http://dbpedia.org/property/successor> ?x . ?x <http://dbpedia.org/ontology/birthPlace> ?uri . }" +"What is the relegious affiliations of Katyayana ? | 'relegious affiliations'-res:Smithsonian_Affiliations | 'Katyayana'-res:Katyayana_(Buddhist) | 'relegious'-dbo:religion"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Katyayana_(Buddhist)> <http://dbpedia.org/property/designer> ?uri } " +"Which party has come in power in Mumbai North? | 'Mumbai North'-res:Mumbai_North_(Lok_Sabha_constituency) | 'in power'-dbp:constituency | 'party'-dbo:party","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/party> <http://dbpedia.org/resource/Mumbai_North_(Lok_Sabha_constituency)> . ?x <http://dbpedia.org/ontology/party> ?uri . }" +"Where are all the protected areas near Bend, Oregon? | 'Bend, Oregon'-res:Bend,_Oregon | 'protected'-dbo:custodian"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bend,_Oregon> <http://dbpedia.org/ontology/custodian> ?uri } " +"which movies have been published by Cinema International Corporation? | 'Cinema International Corporation'-res:Cinema_International_Corporation | 'published'-dbo:distributor","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/distributor> <http://dbpedia.org/resource/Cinema_International_Corporation> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" +"Count the total number of academic discipline of the journals whose one of the academic discipline is Neuroimaging ? | 'Neuroimaging'-res:Neuroimaging | 'count'-dbo:type | 'total'-dbo:result | 'academic discipline'-dbo:abstract | 'journals'-dbp:journal | 'academic discipline'-dbo:abstract"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/academicDiscipline> <http://dbpedia.org/resource/Neuroimaging> . ?x <http://dbpedia.org/property/discipline> ?uri }" +"What are some cities which have a Ferris wheel? | 'Ferris wheel'-res:Ferris_wheel | 'cities'-dbo:country","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ferris_wheel> <http://dbpedia.org/ontology/ground> ?x . ?x <http://dbpedia.org/property/cities> ?uri . }" +"Who are the producers of the movies which has music by Gary Chang ? | 'Gary Chang'-res:Gary_Chang | 'producers'-dbo:manufacturer | 'movies'-dbo:film | 'music'-dbo:musicComposer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Gary_Chang> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" +"To which nation did David Animle Hanses owe his allegiance? | 'David Animle Hanses'-res:David_Animle_Hansen | 'nation'-dbo:country | 'owe'-dbo:leader | 'allegiance'-dbo:allegiance"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/David_Animle_Hansen> <http://dbpedia.org/property/allegiance> ?uri } " +"What is the alma mater of the actors of The God Who Wasn't There ? | 'The God Who Wasn't There'-res:The_God_Who_Wasn't_There | 'actor'-dbp:starring | 'alma mater'-dbp:almaMater"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_God_Who_Wasn't_There> <http://dbpedia.org/property/starring> ?uri } " +"The players born in Bellaire, Ohio have played for which team? | 'Bellaire, Ohio'-res:Bellaire,_Ohio | 'players'-dbo:material | 'born'-dbo:birthPlace | 'played'-dbo:portrayer | 'team'-dbo:team","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Bellaire,_Ohio> . ?uri <http://dbpedia.org/property/team> ?x . }" +"What is the birth name of Putri Raemawasti ? | 'Putri Raemawasti'-res:Putri_Raemawasti | 'birth name'-dbo:birthName"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Putri_Raemawasti> <http://dbpedia.org/ontology/birthName> ?uri } " +"Musical artists who are associated with Ren & Angela were born where ? | 'Ren & Angela'-res:Ren_Bonian | 'musical artists'-dbo:musicalArtist | 'associated'-dbo:associate | 'born'-dbo:birthPlace","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ren_Bonian> <http://dbpedia.org/ontology/associatedMusicalArtist> ?uri . <http://dbpedia.org/resource/Anger_(musicalArtist)> <http://dbpedia.org/property/birthPlace> ?uri . }" +"Who designed the language integrated query? | 'language integrated query'-res:Language_Integrated_Query | 'designed'-dbo:designer"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Language_Integrated_Query> <http://dbpedia.org/property/designer> ?uri } " +"Name the debut team of Dan Otero ? | 'Dan Otero'-res:Dan_Otero | 'debut team'-dbo:debutTeam"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dan_Otero> <http://dbpedia.org/ontology/debutTeam> ?uri } " +"Who founded the Not on our Watch NGO? | 'Not on our Watch'-res:Not_on_Our_Watch_(organization) | 'founded'-dbo:foundedBy"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Not_on_Our_Watch_(organization)> <http://dbpedia.org/ontology/foundedBy> ?uri } " +"Which company owns Sony bank ? | 'Sony bank'-res:Sony_Bank | 'company'-dbo:owningCompany"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Sony_Bank> <http://dbpedia.org/ontology/owningCompany> ?uri } " +"What are the movies whose screenplay is done by Eric Roth? | 'screenplay'-res:Screenplay | 'Eric Roth'-res:Eric_Roth | 'screenplay'-dbp:screenplay | 'movie'-dbo:Film","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/screenplay> <http://dbpedia.org/resource/Eric_Roth> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" +"What is the total number of writers whose singles are recorded in Miami? | 'Miami'-res:Miami | 'total'-dbo:populationTotal | 'writers'-dbo:writer | 'singles'-dbo:slogan | 'recorded'-dbo:recordedIn","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/recordedIn> <http://dbpedia.org/resource/Miami> . ?x <http://dbpedia.org/ontology/writer> ?uri . }" +"What religions are followed by members of the societies whose architectural influences can be seen on the Sanggar Agung ? | 'societies'-res:Societies_of_Saint_Lucia | 'Sanggar Agung'-res:Sanggar_Agung | 'architectural'-dbp:architecturalStyle | 'religion'-dbo:religion","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/architecturalStyle> <http://dbpedia.org/resource/Sanggar_Agung> . ?x <http://dbpedia.org/ontology/religion> ?uri . }" +"How many members are there in the European Go Federation? | 'European Go Federation'-res:Europe | 'European Go Federation'-res:European_Go_Federation | 'members'-dbo:membership | ''-dbo:country","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/membership> <http://dbpedia.org/resource/European_Go_Federation> . }" +"Daniel L D Granger and Job Durfee have based their political career in which US state? | 'L'-res:L | 'daniel D Granger'-res:Daniel_D._Johnson | 'D'-res:D | 'daniel L Granger'-res:Daniel_L._D._Granger | 'Job Durfee'-res:Job_Durfee | 'US'-res:United_States | 'based'-dbo:office | 'political career'-dbo:occupation","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Daniel_L._D._Granger> <http://dbpedia.org/property/placeOfBirth> ?uri . <http://dbpedia.org/resource/Job_Durfee> <http://dbpedia.org/ontology/occupation> ?uri . }" +"Marika Gombitov makes songs in which languages? | 'Marika gombitov'-res:Marika_Nezer | 'songs'-dbo:anthem | 'languages'-dbo:language","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/language> <http://dbpedia.org/resource/Marika_Nezer> . ?uri <http://dbpedia.org/property/language> ?x . }" +"What are some musical artists associated with the ones signed up with EMI? | 'EMI'-res:Emi | 'musical artists'-dbo:show | 'associated'-dbo:associatedBand | 'signed'-dbo:movement","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/recordLabel> <http://dbpedia.org/resource/EMi> . ?uri <http://dbpedia.org/property/associatedActs> ?x . }" +"Name the scientist whose supervisor also supervised Mary Ainsworth? | 'scientist'-res:Scientist_(musician) | 'Mary Ainsworth'-res:Mary_Ainsworth | 'name'-dbp:name | 'supervisor'-dbo:doctoralAdvisor | 'supervised'-dbo:doctoralAdvisor","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/doctoralAdvisor> <http://dbpedia.org/resource/Mary_Ainsworth> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}" +"To which political party does Virendra Kataria belongs ? | 'Virendra Kataria'-res:Virendra_Kataria | 'political party'-dbo:party | 'belongs'-dbp:date"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Virendra_Kataria> <http://dbpedia.org/ontology/party> ?uri } " +"Copley Medal has been awarded to which scientists? | 'copley Medal'-res:Copley_Medal | 'scientists'-res:Scientists_for_Global_Responsibility | 'awarded'-dbp:awards | 'scientist'-dbo:Scientist","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/awards> <http://dbpedia.org/resource/Copley_Medal> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}" +"What is the total number of awards whose presenter's headquarters is Beverly Hills, California? | 'Beverly Hills, California'-res:Beverly_Hills,_California | 'total'-dbo:populationTotal | 'awards'-dbo:award | 'presenter'-dbo:presenter | 'headquarters'-dbp:headquarters","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Beverly_Hills,_California> . ?x <http://dbpedia.org/ontology/presenter> ?uri . }" +"Who is the narrator of The Price of Beauty ? | 'The Price of Beauty'-res:The_Price_of_Beauty | 'narrator'-dbo:narrator"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Price_of_Beauty> <http://dbpedia.org/ontology/narrator> ?uri } " +"How many albums did the maker of The Band produce? | 'The Band produce'-res:Produce_101 | 'albums'-dbo:album | 'maker'-dbo:producer","SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/The_Band> <http://dbpedia.org/property/album> ?x . ?x <http://dbpedia.org/ontology/producer> ?uri . }" +"Food in which countries has shallot in it? | 'countries'-res:Countries_of_the_United_Kingdom | 'food'-dbo:supplies | 'shallot'-dbo:award","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Canada> . ?x <http://dbpedia.org/property/country> ?uri . }" +"What are the movies whose music composer uses a Hammond organ? | 'Hammond organ'-res:Hammond_organ | 'movies'-dbo:film | 'music composer'-dbo:musicComposer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/musicComposer> <http://dbpedia.org/resource/Hammond_organ> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" +"Name the TV show with artist Christopher Franke and cast member Jason Carter ? | 'TV'-res:Tv_test_pattern | 'show with artist Christopher Franke'-res:Christopher_Franke | 'cast member Jason Carter'-res:Jason_Carter_(actor) | 'name'-dbp:name","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Christopher_Franke> . ?uri <http://dbpedia.org/property/network> <http://dbpedia.org/resource/Jason_Carter_(actor)> . }" +"Where was the deadbody discovered of one of the alumni of General Educational Development? | 'deadbody'-res:Deadboy_&_the_Elephantmen | 'General Educational Development'-res:General_Educational_Development | 'Education'-dbp:education | 'body discovered'-dbp:bodyDiscovered","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/education> <http://dbpedia.org/resource/General_Educational_Development> . ?x <http://dbpedia.org/property/bodyDiscovered> ?uri . }" +"Who designed the bridge in Oddamavadi? | 'Oddamavadi'-res:Oddamavadi | 'designed'-dbo:architect | 'bridge'-dbo:bridgeCarries","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/architect> <http://dbpedia.org/resource/Oddamavadi> . ?x <http://dbpedia.org/property/bridgeCarries> ?uri . }" +"List the debut team of the baseball player who born in Houston. | 'Houston'-res:Houston_Astros | 'debut team'-dbo:team | 'baseball player'-dbo:participant | 'born'-dbo:birthPlace","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Houston_Astros> . ?x <http://dbpedia.org/property/debutteam> ?uri . }" +"Who edited British Gazette ? | 'British Gazette'-res:United_Kingdom | 'British Gazette'-res:British_Gazette | 'edited'-dbo:editor | ''-dbo:country"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/British_Gazette> <http://dbpedia.org/property/editor> ?uri } " +"What acts and artists are associated with people who have worked with Divertis? | 'Divertis'-res:Divertis | 'associated acts'-dbp:associatedActs | 'associated'-dbo:associatedMusicalArtist","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/associatedActs> <http://dbpedia.org/resource/Divertis> . ?x <http://dbpedia.org/ontology/associatedMusicalArtist> ?uri . }" +"Which company has developed games whose music is done by Gerard Marino? | 'Gerard Marino'-res:Gerard_Marino | 'company'-dbo:company | 'developed'-dbo:leader | 'games'-dbo:games | 'music'-dbp:music","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Gerard_Marino> . ?uri <http://dbpedia.org/ontology/developer> ?x . }" +"Who all have developed softwares for Unix Like OSes? | 'softwares'-res:Soft_Machine | 'Unix Like OSes'-res:Unix | 'developed'-dbo:developer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/developer> <http://dbpedia.org/resource/Unix> . }" +"What are some party leaders of the parties which have had a seat in Berlin? | 'Berlin'-res:Berlin | 'party leaders'-dbo:team | 'parties'-dbo:chain | 'seat'-dbp:seat","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/seat> <http://dbpedia.org/resource/Berlin> . ?x <http://dbpedia.org/ontology/party> ?uri . }" +"Name all the soccer players who played in a under 18 club for La Liga? | 'soccer players'-res:Major_League_Soccer_Players_Union | 'La Liga'-res:La_Liga | 'name'-dbp:name | 'played'-dbo:participant | '18 club'-dbp:body","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/youthclubs> <http://dbpedia.org/resource/La_Liga> . ?uri <http://dbpedia.org/property/name> ?x . }" +"Which employer of Michael M. Sears is also the producer of Delta III ? | 'Michael M. Sears'-res:Michael_M._Sears | 'Delta III'-res:Delta_III | 'employer'-dbo:employer | 'producer'-dbo:producer"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Michael_M._Sears> <http://dbpedia.org/property/employer> ?uri . <http://dbpedia.org/resource/Delta_III> <http://dbpedia.org/ontology/producer> ?uri} " +"Which person designed the cars which has been designed by ASC Creative Services? | 'ASC Creative Services'-res:ASC_Creative_Services | 'person'-dbo:type | 'designed'-dbo:architect | 'cars'-dbo:management | 'designed'-dbo:architect","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/designer> <http://dbpedia.org/resource/ASC_Creative_Services> . ?x <http://dbpedia.org/property/carries> ?uri . }" +"Count the number of important works done by the writers of The Second Coming? | 'The Second Coming'-res:The_Second_Coming_(TV_serial) | 'writers'-dbo:author | 'works'-dbo:notableWork","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/notableWork> <http://dbpedia.org/resource/The_Second_Coming_(TV_serial)> . }" +"For whom did Michael Springer palyed for which is also had a former student named Donald Brooks ? | 'Michael Springer'-res:Michael_Springer | 'Donald Brooks'-res:Donald_Brooks | 'palyed'-dbo:alias | 'former student'-dbo:retired"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Michael_Springer> <http://dbpedia.org/property/almaMater> ?uri . <http://dbpedia.org/resource/Donald_Brooks> <http://dbpedia.org/ontology/formerStudent> ?uri} " +"Which series was written by Eric Jendresen and John Orloff? | 'Eric Jendresen'-res:Erik_Jendresen | 'John Orloff'-res:John_Orloff | 'series'-dbo:series | 'written'-dbo:writer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/writer> <http://dbpedia.org/resource/Erik_Jendresen> . ?uri <http://dbpedia.org/property/series> <http://dbpedia.org/resource/John_Orloff> . }" +"What are the nicknames given to the characters of The Wolves of the Mercy Falls? | 'The Wolves of the Mercy Falls'-res:List_of_The_Wolves_of_Mercy_Falls_characters | 'nickname'-dbp:nickname"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Wolves_of_Mercy_Falls_characters> <http://dbpedia.org/property/nickname> ?uri } " +"What is the religious affiliation of Neungin High School? | 'Neungin High School'-res:Neungin_High_School | 'religious affiliation'-dbp:religiousAffiliation"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Neungin_High_School> <http://dbpedia.org/property/religiousAffiliation> ?uri } " +"Who is the owner of the South end ? | 'the South end'-res:The_South_End | 'owner'-dbp:owners"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_South_End> <http://dbpedia.org/property/owners> ?uri } " +"For how many other teams have the members of Atlant Moscow Oblast played? | 'Atlant Moscow Oblast'-res:Atlant_Moscow_Oblast | 'team'-dbp:playedFor | 'teams'-dbo:formerTeam","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/playedFor> <http://dbpedia.org/resource/Atlant_Moscow_Oblast> . ?x <http://dbpedia.org/ontology/formerTeam> ?uri . }" +"In which time zone is Pong Pha? | 'Pong Pha'-res:Pong_Pha | 'time zone'-dbo:timeZone"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pong_Pha> <http://dbpedia.org/ontology/timeZone> ?uri } " +"Which bacteria's taxonomic class is Bacilli? | 'Bacteria'-res:Bacteria | 'taxonomic class'-res:Class_(biology) | 'Bacilli'-res:Bacilli","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/titles> <http://dbpedia.org/resource/Bacilli> . }" +"What honours did Reigh Count receive? | 'Reigh Count'-res:Reigh_Count | 'honours'-dbo:honours | 'receive'-dbo:board"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Reigh_Count> <http://dbpedia.org/ontology/honours> ?uri } " +"What is the television show whose related with Doctor Who Confidential? | 'Doctor Who Confidential'-res:Doctor_Who_Confidential | 'related'-dbo:related | 'television show'-dbo:TelevisionShow","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/related> <http://dbpedia.org/resource/Doctor_Who_Confidential> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" +"In which city wasThe Triple Door (The Courage album) performed live? | 'city wasThe Triple Door (The Courage album)'-res:Live_at_The_Triple_Door_(The_Courage_album) | 'performed'-dbo:artist | 'live'-dbo:languageFamily","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Triple_Door_(The_Courage_album)> <http://dbpedia.org/property/artist> ?x . ?x <http://dbpedia.org/ontology/locationCity> ?uri . }" +"List the battles fought by Ali Habib Mahmud ? | 'Ali Habib Mahmud'-res:Ali_Habib_Mahmud | 'battles'-dbo:battle | 'fought'-dbo:type","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ali_Habib_Mahmud> <http://dbpedia.org/property/battles> ?x . ?x <http://dbpedia.org/ontology/battle> ?uri . }" +"How many companies were started in the states? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'started'-dbo:source","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/sourceCountry> <http://dbpedia.org/resource/New_York_Stock_Exchange_(J)> . }" +"How many movies are distributed by Cinema International Corporation? | 'Cinema International Corporation'-res:Cinema_International_Corporation | 'distributed by'-dbo:distributor | 'movie'-dbo:Film","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/distributor> <http://dbpedia.org/resource/Cinema_International_Corporation> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" +"To which educational institute does Cornell University Press belong to? | 'Cornell University Press'-res:Cornell_University_Press | 'educational institute'-dbo:university | 'belong'-dbo:date"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cornell_University_Press> <http://dbpedia.org/ontology/education> ?uri } " +"In which country's cuisine, ham is an important part? | 'ham'-res:Ham | 'country'-dbo:country","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/veneratedIn> <http://dbpedia.org/resource/Ham> . ?x <http://dbpedia.org/ontology/country> ?uri . }" +"List the softwares which runs on Microsoft Windows and has license as Software as a service? | 'softwares'-res:Software | 'Microsoft Windows'-res:Microsoft_Windows | 'Software'-res:Software | 'runs'-dbo:symbol | 'license'-dbo:license | 'service'-dbo:industry","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/computingPlatform> <http://dbpedia.org/resource/Microsoft_Windows> . ?uri <http://dbpedia.org/property/license> <http://dbpedia.org/resource/Software> . }" +"Give me the list of cars which are the predecessor of Full Sized Cars? | 'Full Sized Cars'-res:Man-Sized_Wreath | 'cars'-dbo:management | 'predecessor'-dbo:predecessor","SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Man-Sized_Wreath> <http://dbpedia.org/ontology/predecessor> ?x . ?x <http://dbpedia.org/property/carries> ?uri . }" +"What are some software which are written in languages that are run on Unix like OS? | 'software'-res:Software_Publishing_Corporation | 'OS'-res:OS | 'Unix like'-res:Unix | 'written'-dbo:fate | 'languages'-dbo:language | 'run'-dbp:work","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/computingPlatform> <http://dbpedia.org/resource/Unix> . ?uri <http://dbpedia.org/property/language> ?x . }" +"List all the movies whose directors were born in Kenosha, Wisconsin? | 'Kenosha, Wisconsin'-res:Kenosha,_Wisconsin | 'born in'-dbo:birthPlace | 'director'-dbp:director","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Kenosha,_Wisconsin> . ?uri <http://dbpedia.org/property/director> ?x . }" +"Name the fictional character whose relative are Duck family and Clan McDuck? | 'Duck family'-res:Duck_family | 'Clan McDuck'-res:Clan_McDuck | 'name'-dbp:name | 'fictional character'-dbo:status | 'relative'-dbo:relative","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/relatives> <http://dbpedia.org/resource/Duck_family> . ?uri <http://dbpedia.org/ontology/relative> <http://dbpedia.org/resource/Clan_McDuck> . }" +"Which state does Jerome B. Chaffee belong ? | 'Jerome B. Chaffee'-res:Jerome_B._Chaffee | 'state'-dbp:state"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jerome_B._Chaffee> <http://dbpedia.org/property/state> ?uri } " +"What awards are won by the screenwriter of Lucky You? | 'Lucky You'-res:Lucky_You_(film) | 'screenwriter'-dbp:screenplay | 'awards'-dbo:award","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lucky_You_(film)> <http://dbpedia.org/property/screenplay> ?x . ?x <http://dbpedia.org/ontology/award> ?uri . }" +"Name the Pole driver of 1994 Spanish Grand Prix ? | '1994 Spanish Grand Prix'-res:1994_Spanish_Grand_Prix | 'Pole driver'-dbp:poleDriver"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/1994_Spanish_Grand_Prix> <http://dbpedia.org/property/poleDriver> ?uri } " +"What is the parent company of the airline whose hub is in Detroit? | 'Detroit'-res:Detroit | 'parent company'-dbo:parentCompany | 'airline'-dbo:icaoAirlineCode | 'hub'-dbp:centre","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/hubAirport> <http://dbpedia.org/resource/Detroit> . ?x <http://dbpedia.org/ontology/parentCompany> ?uri . }" +"How many cars are similar to the ones assembled in the Jefferson North Assembly? | 'Jefferson North Assembly'-res:Jefferson_North_Assembly | 'cars'-dbo:management | 'assembled'-dbp:assembly","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/assembly> <http://dbpedia.org/resource/Jefferson_North_Assembly> . ?x <http://dbpedia.org/ontology/related> ?uri . }" +"From how many different places have people gone to the Harward Medical School? | 'Harward Medical School'-res:Harvard_Medical_School | 'places'-dbo:height","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/institution> <http://dbpedia.org/resource/Harvard_Medical_School> . ?uri <http://dbpedia.org/property/locations> ?x . }" +"What are Jerry Bock's musicals based upon? | 'Jerry Bock'-res:Jerry_Bock | 'musicals'-dbo:show | 'based'-dbo:relative","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/musicBy> <http://dbpedia.org/resource/Jerry_Bock> . ?x <http://dbpedia.org/ontology/basedOn> ?uri . }" +"Give me list of people who were the first to climb a peak in the Yosemite park? | 'Yosemite park'-res:Yosemite_National_Park | 'climb'-dbp:scale | 'peak'-dbo:language","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/locatedInArea> <http://dbpedia.org/resource/Yosemite_National_Park> . ?x <http://dbpedia.org/ontology/firstAscentPerson> ?uri . }" +"What is the successor of PlayStation 4 | 'PlayStation 4'-res:PlayStation_4 | 'successor'-dbo:successor"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/PlayStation_4> <http://dbpedia.org/ontology/successor> ?uri } " +"What are some team members of the team based in Camp Nou? | 'Camp Nou'-res:Camp_Nou | 'team members'-dbo:languageFamily | 'team'-dbo:team | 'based'-dbo:relative","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/ground> <http://dbpedia.org/resource/Camp_Nou> . ?x <http://dbpedia.org/ontology/team> ?uri . }" +"For which teams did Ryan Powell play for? | 'Ryan Powell'-res:Ryan_Powell_(lacrosse) | 'teams'-dbp:team | 'play'-dbo:team"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ryan_Powell_(lacrosse)> <http://dbpedia.org/property/team> ?uri } " +"Total number of places where people drafted in the detroit pistons have died? | 'detroit pistons'-res:Detroit_Pistons | 'total'-dbo:populationTotal | 'places'-dbo:height | 'drafted'-dbo:draft | 'died'-dbo:deathDate","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/draftTeam> <http://dbpedia.org/resource/Detroit_Pistons> . ?x <http://dbpedia.org/ontology/deathPlace> ?uri . }" +"List the newspapers whose offices are situated in 1211 Avenue of the Americas? | '1211 Avenue of the Americas'-res:1211_Avenue_of_the_Americas | 'situated'-dbo:position","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/borough> <http://dbpedia.org/resource/1211_Avenue_of_the_Americas> . ?uri <http://dbpedia.org/property/office> ?x . }" +"By what style was Providence Chapel, Charlwood made? | 'Providence Chapel, Charlwood'-res:Providence_Chapel,_Charlwood | 'style'-dbp:style"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Providence_Chapel,_Charlwood> <http://dbpedia.org/property/style> ?uri } " +"Give me the total number of employer of the engineers whose one of the employer is McDonnell Aircraft ? | 'McDonnell Aircraft'-res:McDonnell_Aircraft | 'total'-dbo:populationTotal | 'employer'-dbo:employer | 'engineers'-dbo:architect | 'employer'-dbo:employer"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/engine> <http://dbpedia.org/resource/McDonnell_Aircraft> . ?x <http://dbpedia.org/ontology/employer> ?uri }" +"How many record labels publish works of Jazz fusion? | 'Jazz fusion'-res:Jazz_fusion | 'record labels'-dbo:background | 'publish'-dbo:country | 'works'-dbo:language","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/genre> <http://dbpedia.org/resource/Jazz_fusion> . ?x <http://dbpedia.org/ontology/recordLabel> ?uri . }" +"Count the total number of cast member of the television shows whose actress is Joey McIntyre? | 'Joey McIntyre'-res:Joey_McIntyre | 'actress'-dbp:starring | 'actress'-dbp:starring","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/starring> <http://dbpedia.org/resource/Joey_McIntyre> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" +"List all the awards won by the artist who has won SIGGRAPH ? | 'SIGGRAPH'-res:SIGGRAPH | 'awards'-dbo:award | 'won'-dbo:award | 'artist'-dbo:artist | 'won'-dbo:award","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/awards> <http://dbpedia.org/resource/SIGGRAPH> . ?x <http://dbpedia.org/ontology/award> ?uri . }" +"Where was david Scherman trained ? | 'david Scherman'-res:David_Scherman | 'trained'-dbo:training"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/David_Scherman> <http://dbpedia.org/ontology/training> ?uri } " +"Count the battles fought by Raoul Magrin-Vernerey? | 'Raoul Magrin-Vernerey'-res:Raoul_Magrin-Vernerey | 'fought'-dbp:battles","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Raoul_Magrin-Vernerey> <http://dbpedia.org/property/battles> ?x . }" +"Which athlete was the flag bearer for Switzerland in 2004 and 2008 summer Olympics ? | 'Switzerland'-res:Switzerland | '2004'-res:2004_OFC_Men's_Olympic_Qualifying_Tournament | '2008 summer Olympics'-res:2008_Summer_Olympics | 'athlete'-dbo:numberOfParticipatingAthletes | 'flag bearer'-dbo:flag","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/flagBy> <http://dbpedia.org/resource/2004_OFC_Men's_Olympic_Qualifying_Tournament> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Athlete>}" +"What award was won by the father of Angelina Jolie? | 'Angelina Jolie'-res:Angelina_Jolie | 'award'-dbo:award | 'won'-dbo:parent | 'father'-dbo:parent","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Angelina_Jolie> <http://dbpedia.org/ontology/parent> ?x . ?x <http://dbpedia.org/property/awards> ?uri . }" +"Count all the stateless people | 'count'-dbo:time | 'stateless'-dbo:gross","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/nationality> <http://dbpedia.org/resource/Stateless_people> . ?x <http://dbpedia.org/ontology/stateOfOrigin> ?uri . }" +"What novels are belong to the genre of Utopian and dystopian fiction? | 'Utopian'-res:Utopian_and_dystopian_fiction | 'genre'-dbo:literaryGenre","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/literaryGenre> <http://dbpedia.org/resource/Utopian_and_dystopian_fiction> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book>}" +"What are the movies written by Nick Castle? | 'Nick Castle'-res:Nick_Castle | 'written by'-dbo:writer | 'movie'-dbo:Film","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/writer> <http://dbpedia.org/resource/Nick_Castle> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" +"On which river are there things belonging to zambezi river authority? | 'zambezi river authority'-res:Zambezi_River_Authority | 'river'-dbo:river | 'belonging'-dbo:affiliation","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/riverAuthority> <http://dbpedia.org/resource/Zambezi_River_Authority> . ?x <http://dbpedia.org/property/river> ?uri . }" +"Which Paramount TV show was produced by Glen and Les Charles ? | 'TV'-res:Tv_test_pattern | 'Paramount show'-res:Plaxton_Paramount | 'Glen'-res:Glen | 'Les Charles'-res:Glen_and_Les_Charles | 'produced'-dbo:manufacturer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/producer> <http://dbpedia.org/resource/Glen_and_Les_Charles> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" +"Horses sired by Karinga Bay have participated in which races? | 'Karinga Bay'-res:Karinga_Bay | 'horses'-dbo:service | 'sired'-dbo:flag | 'participated'-dbo:participant | 'races'-dbo:races","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/served> <http://dbpedia.org/resource/Karinga_Bay> . ?x <http://dbpedia.org/property/race> ?uri . }" +"Where do beauty queens with brown hair reside? | 'beauty queens'-res:Beauty_Queens | 'brown hair reside'-res:Brown_hair | 'hair'-dbp:hairColor | 'reside'-dbo:residence","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/hairColor> <http://dbpedia.org/resource/Brown_hair> . ?uri <http://dbpedia.org/ontology/residence> ?x . }" +"Count the key people of the Clinton Foundation? | 'Clinton Foundation'-res:Clinton_Foundation | 'key people'-dbp:keyPeople","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/keyPeople> <http://dbpedia.org/resource/Clinton_Foundation> . }" +"Music of how many things has been given by Akira Ifukube? | 'Akira Ifukube'-res:Akira_Ifukube | 'Music'-dbp:music","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Akira_Ifukube> . }" +"In how many places are the tombs of people who died in Connecticut Colony? | 'tombs'-res:Tombs_of_the_Blind_Dead | 'Connecticut Colony'-res:Connecticut_Colony | 'places'-dbo:place | 'died'-dbp:deathPlace","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/place> <http://dbpedia.org/resource/Connecticut_Colony> . ?x <http://dbpedia.org/ontology/place> ?uri . }" +"Who are the producers of Marie Sisters? | 'Marie Sisters'-res:Marie_Sisters | 'producer'-dbp:producer"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Marie_Sisters> <http://dbpedia.org/property/producer> ?uri } " +"List the successor of successor of Hayden, Stone & Co. | 'Hayden, Stone & Co'-res:Hayden,_Stone_&_Co. | 'successor'-dbo:successor | 'successor'-dbo:successor"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Hayden,_Stone_&_Co> . <http://dbpedia.org/property/successor> ?uri } " +"What is the origin of Xynisteri? | 'Xynisteri'-res:Xynisteri | 'origin'-dbo:origin"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Xynisteri> <http://dbpedia.org/ontology/origin> ?uri } " +"Who are currently playing for Barcelona FC? | 'FC'-res:FC | 'Barcelona'-res:Barcelona | 'playing'-dbo:field","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/currentclub> <http://dbpedia.org/resource/Barcelona> . }" +"What is telecasted on the network where Deborah Turness holds important position? | 'Deborah Turness'-res:Deborah_Turness | 'telecasted'-dbo:transmission | 'network'-dbo:network | 'holds'-dbo:title | 'position'-dbo:position","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/keyPeople> <http://dbpedia.org/resource/Deborah_Turness> . ?x <http://dbpedia.org/ontology/network> ?uri . }" +"How many home stadium are there, of the soccer club seasons whose chairman is Merritt Paulson? | 'soccer club seasons'-res:Mooroolbark_Soccer_Club | 'Merritt Paulson'-res:Merritt_Paulson | 'chairman'-dbp:chairman | 'home stadium'-dbo:homeStadium","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/chairman> <http://dbpedia.org/resource/Merritt_Paulson> . ?x <http://dbpedia.org/ontology/homeStadium> ?uri . }" +"Name the alma mater of Ernest de Saisset ? | 'Ernest de Saisset'-res:Ernest_de_Saisset | 'name'-dbp:name | 'alma mater'-dbo:almaMater"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ernest_de_Saisset> <http://dbpedia.org/property/almaMater> ?uri } " +"Which successor of Philippine Ports Authority is the state of origin of Ruben J. Villote ? | 'Philippine Ports Authority'-res:Philippine_Ports_Authority | 'J'-res:J | 'Ruben Villote'-res:Ruben_J._Villote | 'successor'-dbo:successor | 'origin'-dbo:origin"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Philippine_Ports_Authority> <http://dbpedia.org/property/successor> ?uri . <http://dbpedia.org/resource/Ruben_J._Villote> <http://dbpedia.org/ontology/origin> ?uri} " +"What awards have been won by the executive producer of Timmy Time ? | 'Timmy Time'-res:Timmy_Time | 'executive producer'-dbo:executiveProducer | 'awards'-dbo:award","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Timmy_Time> <http://dbpedia.org/ontology/executiveProducer> ?x . ?x <http://dbpedia.org/property/awards> ?uri . }" +"What have some US citizens died of? | 'US'-res:United_States | 'citizens'-dbp:country | 'died'-dbo:flag","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/placeOfDeath> <http://dbpedia.org/resource/United_States> . ?x <http://dbpedia.org/ontology/nationality> ?uri . }" +"Count the total number of mammals whose phylum is Chordate and order (taxonomy) is Diprotodontia? | 'mammals'-res:Mammals_of_the_Indiana_Dunes | 'Chordate'-res:Chordate | 'Diprotodontia'-res:Diprotodontia | 'count'-dbo:country | 'total'-dbo:result | 'phylum'-dbo:phylum | '(taxonomy)'-dbo:order"," SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/phylum> <http://dbpedia.org/resource/Chordate> . ?uri <http://dbpedia.org/ontology/order> <http://dbpedia.org/resource/Diprotodontia> } " +"How many cities are around the sea into which the aegean sea flows? | 'aegean sea'-res:Aegean_Sea | 'cities'-dbo:city | 'sea'-dbo:lake | 'aegean sea'-dbo:lake | 'flows'-dbo:circulation","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/inflow> <http://dbpedia.org/resource/Aegean_Sea> . ?x <http://dbpedia.org/ontology/cities> ?uri . }" +"What is the university to which Erica Frank went, and where Ivan Toplak was a club manager? | 'Erica Frank went,'-res:Erica_Frank | 'Ivan Toplak'-res:Ivan_Toplak | 'university'-dbo:university | 'club manager'-dbo:managerClub"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Erica_Frank> <http://dbpedia.org/ontology/managerClub> ?uri . <http://dbpedia.org/resource/Ivan_Toplak> <http://dbpedia.org/property/university> ?uri} " +"Ricky Gervais is the executive producer of the series having how many fictional characters? | 'Ricky gervais'-res:Ricky_Gervais | 'fictional characters'-res:Fiction | 'executive producer'-dbo:executiveProducer | 'series'-dbo:series","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/executiveProducer> <http://dbpedia.org/resource/Ricky_Gervais> . ?uri <http://dbpedia.org/property/series> ?x . }" +"What are some dishes from the family of dishes which primarily use flour? | 'dishes'-dbo:state | 'family'-dbo:family | 'dishes'-dbo:state | 'flour'-dbo:depth","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/ingredientFamily> <http://dbpedia.org/resource/Flour> . ?uri <http://dbpedia.org/property/family> ?x . }" +"Which team won the American Football League? | 'American Football League'-res:Organization_of_American_States | 'American Football League'-res:American_Football_League | 'team'-dbo:team | 'won'-dbo:award | ''-dbo:country","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/league> <http://dbpedia.org/resource/American_Football_League> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SportsTeam>}" +"Which researchers received fellowship from Royal Society? | 'researchers'-res:Researchers_Alliance_for_Development | 'Royal Society'-res:Royal_Society | 'fellowship'-dbo:award","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/award> <http://dbpedia.org/resource/Royal_Society> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}" +"Where was James H. Fields buried ? | 'James H. Fields'-res:James_H._Fields | 'buried'-dbo:genre"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/James_H._Fields> <http://dbpedia.org/ontology/restingplace> ?uri } " +"Who is the fictional character whose family member is Padme Amidala? | 'Padme Amidala'-res:Padmé_Amidala | 'family'-dbp:family | 'fictional character'-dbo:FictionalCharacter","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/family> <http://dbpedia.org/resource/Padmé_Amidala> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/FictionalCharacter>}" +"What company is the one which wrote the google web toolkit and PlayN? | 'google web toolkit'-res:Google_Web_Toolkit | 'PlayN'-res:PlayN | 'company'-dbo:company | 'wrote'-dbo:author","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/author> <http://dbpedia.org/resource/Google_Web_Toolkit> . ?uri <http://dbpedia.org/property/company> <http://dbpedia.org/resource/PlayN> . }" +"Which are the automobile platform whose one of the automobile platform is Dodge ? | 'Dodge'-res:Dodge | 'automobile platform'-dbo:automobilePlatform | 'automobile platform'-dbo:automobilePlatform"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dodge> <http://dbpedia.org/ontology/automobilePlatform> ?uri } " +"Where was Ne daj se, Nina first aired ? | 'Ne daj se, Nina'-res:Ne_daj_se,_Nina | 'aired'-dbp:firstAired"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ne_daj_se,_Nina> <http://dbpedia.org/property/firstAired> ?uri } " +"Brian Moriarty designed video games written by whom? | 'brian Moriarty'-res:Brian_Moriarty | 'video games written'-res:Video_game | 'designed'-dbo:designer | 'written'-dbo:writer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/writer> <http://dbpedia.org/resource/Brian_Moriarty> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/VideoGame>}" +"Where did the conflict take place where Louis Briere de I'Isle was a commander? | 'I'-res:I | 'Louis Briere de'-res:Michel_Brière | 'conflict'-dbo:battle | 'place'-dbo:place | 'commander'-dbo:commander","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Louis_Brière> <http://dbpedia.org/ontology/commander> ?x . ?x <http://dbpedia.org/property/territory> ?uri . }" +"Quebec born ice hockey players have stopped playing for which teams? | 'ice hockey players'-res:Ice_hockey | 'quebec'-dbo:leader | 'born'-dbo:birthYear | 'stopped'-dbo:patron | 'playing'-dbo:field | 'teams'-dbp:team","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Quebec_hockey> . ?x <http://dbpedia.org/property/team> ?uri . }" +"what kind of things play on WBIG FM? | 'WBIG'-res:WBIG | 'FM'-res:FM | 'FM'-res:FM | 'WBIG'-res:WBIG | 'play'-dbo:team","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/FM> <http://dbpedia.org/resource/WBIG> . ?uri <http://dbpedia.org/property/genre> ?x . }" +"In which fields are the graduates of Worcester College, Oxford working? | 'Worcester College, Oxford'-res:Worcester_College,_Oxford | 'graduates'-dbp:almaMater | 'field'-dbo:field","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/almaMater> <http://dbpedia.org/resource/Worcester_College,_Oxford> . ?x <http://dbpedia.org/ontology/field> ?uri . }" +"What are the musical performances whose label is Celluloid Records? | 'Celluloid Records'-res:Celluloid_Records | 'musical performances'-dbo:musicalArtist | 'label'-dbp:label","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Celluloid_Records> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MusicalArtist>}" +"How many people have fought wars where Arthur St. Clair was a commander? | 'Arthur St Clair'-res:Arthur_St._Clair | 'fought'-dbo:type | 'wars'-dbp:battles | 'commander'-dbo:commander","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/commander> <http://dbpedia.org/resource/Arthur_St._Clair> . ?x <http://dbpedia.org/property/battles> ?uri . }" +"Give me the home town of all musical artists who uses Guitar as instrument ? | 'Guitar'-res:Guitar | 'home town'-dbo:hometown | 'musical artists'-dbp:show | 'instrument'-dbo:instrument","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/instrument> <http://dbpedia.org/resource/Guitar> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MusicalArtist>}" +"Name the movies directed by Stanley Kubrick and edited by Anthony Harvey? | 'Stanley Kubrick'-res:Stanley_Kubrick | 'Anthony Harvey'-res:Anthony_Harvey | 'directed'-dbo:director | 'edited'-dbo:editing","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/director> <http://dbpedia.org/resource/Stanley_Kubrick> . ?uri <http://dbpedia.org/property/editing> <http://dbpedia.org/resource/Anthony_Harvey> . }" +"What are some other things developed by the company who made the remote desktop protocol? | 'remote desktop protocol'-res:Remote_Desktop_Protocol | 'developed'-dbo:developer | 'company'-dbo:company","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/developer> <http://dbpedia.org/resource/Remote_Desktop_Protocol> . ?x <http://dbpedia.org/property/company> ?uri . }" +"List the guests of On Broadway ? | 'On Broadway'-res:On_Broadway_(Smash) | 'guests'-dbp:guests"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/On_Broadway_(Smash)> <http://dbpedia.org/property/guests> ?uri } " +"How many universities are there whose country's capital is Oslo? | 'universities'-res:Universities_South_Africa | 'Oslo'-res:Oslo | 'country'-dbo:country | 'capital'-dbo:capital","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/capital> <http://dbpedia.org/resource/Oslo> . ?uri <http://dbpedia.org/property/country> ?x . }" +"Which executive producer of the ultimate merger is also an important person at Trump Productions? | 'the ultimate merger'-res:The_Ultimate_Merger | 'Trump Productions'-res:Trump_Productions | 'executive producer'-dbo:executiveProducer | 'person'-dbo:keyPerson"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Ultimate_Merger> <http://dbpedia.org/property/executiveProducer> ?uri . <http://dbpedia.org/resource/Trump_Productions> <http://dbpedia.org/ontology/keyPerson> ?uri} " +"What is the official name of Colorado wine ? | 'Colorado wine'-res:Colorado_wine | 'official name'-dbp:officialName"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Colorado_wine> <http://dbpedia.org/property/officialName> ?uri } " +"In how many states can one find Burr Tuss kind of bridges? | 'Burr Tuss'-res:Aphex_Twin | 'bridges'-dbo:abstract","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/locatedInArea> <http://dbpedia.org/resource/Burr_Tuss> . ?x <http://dbpedia.org/property/crosses> ?uri . }" +"Name all those buried in a place governed by a city council. | 'name'-dbo:name | 'buried'-dbo:weight | 'place'-dbo:place | 'governed'-dbo:employer | 'city council'-dbo:house","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/leaderName> <http://dbpedia.org/resource/City_of_Chicago> . ?x <http://dbpedia.org/property/restingplace> ?uri . }" +"What royalties's sepulchre is Mausoleum of Augustus? | 'Royalties'-res:Royalties | 'sepulchre'-res:Easter_Sepulchre | 'Mausoleum of Augustus'-res:Mausoleum_of_Augustus","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/architect> <http://dbpedia.org/resource/Mausoleum_of_Augustus> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Royalty>}" +"Name the common university of the Cardinal and Jim Wylie? | 'cardinal'-res:Stanford_Cardinal | 'Jim Wylie'-res:Jim_Wylie | 'name'-dbp:name | 'common university'-dbp:university","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/university> <http://dbpedia.org/resource/Stanford_Cardinal> . }" +"What is the automobile platform of Chiva bus ? | 'Chiva bus'-res:Chiva_bus | 'automobile platform'-dbo:automobilePlatform"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Chiva_bus> <http://dbpedia.org/ontology/automobilePlatform> ?uri } " +"Which TV show is related to The Sarah Jane Adventures and theme music is composed by Ron Grainer? | 'TV'-res:Tv_test_pattern | 'The Sarah Jane Adventures'-res:The_Sarah_Jane_Adventures | 'Ron Grainer'-res:Ron_Grainer | 'show'-dbo:show | 'related'-dbo:related | 'theme music'-dbo:openingTheme | 'composed'-dbo:composer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/related> <http://dbpedia.org/resource/The_Sarah_Jane_Adventures> . ?uri <http://dbpedia.org/property/themeMusicComposer> <http://dbpedia.org/resource/Ron_Grainer> . }" +"Count everyone who lives in a place where Indian English is an official language ? | 'Indian English'-res:India | 'Indian English'-res:Indian_English | 'count'-dbo:type | 'lives'-dbo:residence | 'place'-dbo:place | 'official language'-dbo:officialLanguage | ''-dbo:country","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/officialLanguage> <http://dbpedia.org/resource/Indian_English> . ?uri <http://dbpedia.org/property/residence> ?x . }" +"How many religions are practiced by diplomats? | 'diplomats'-res:Diplomacy | 'practiced'-dbo:profession | 'religion'-dbp:religion","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/profession> <http://dbpedia.org/resource/Diplomacy> . ?x <http://dbpedia.org/property/religion> ?uri . }" +"Count the number of things people who know linguistics are known for ? | 'Linguistics'-res:Linguistics | 'known for'-dbo:knownFor | 'known for'-dbo:knownFor","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/knownFor> <http://dbpedia.org/resource/Linguistics> . }" +"How many religions are followed by organizations which are internationally known as the muslim brotherhood? | 'muslim brotherhood'-res:Muslim_Brotherhood | 'international'-dbp:international | 'religion'-dbo:religion","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/nationality> <http://dbpedia.org/resource/Muslim_Brotherhood> . ?x <http://dbpedia.org/ontology/religion> ?uri . }" +"What is the home ground of the clubs managed by Ciao Zanardi? | 'Ciao Zanardi'-res:Caio_Zanardi | 'home ground'-dbo:institution | 'clubs'-dbo:college | 'managed'-dbo:director","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/manager> <http://dbpedia.org/resource/Caio_Zanardi> . ?x <http://dbpedia.org/property/homeGround> ?uri . }" +"What is the country with native language as Languages of Ethiopia? | 'Languages of Ethiopia'-res:Languages_of_Ethiopia | 'language'-dbo:language | 'country'-dbo:Country","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/language> <http://dbpedia.org/resource/Ethiopia> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Country>}" +"Where was Girls (The Prodigy song) recorded ? | 'Girls (The Prodigy song)'-res:Girls_(The_Prodigy_song) | 'recorded'-dbp:recorded"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Girls_(The_Prodigy_song)> <http://dbpedia.org/property/recorded> ?uri } " +"How many TV shows' networks are headquarterd in NY? | 'NY'-res:New_York | 'shows'-dbo:place | 'networks'-dbo:broadcastNetwork | 'headquarterd'-dbp:headquarters","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/New_York> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" +"Give me some shows owned by BBC one and BBC hd? | 'BBC one'-res:BBC_One | 'BBC hd'-res:BBC_HD | 'shows'-dbo:place | 'owned'-dbp:owner","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/owner> <http://dbpedia.org/resource/BBC_One> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" +"How many teams have rented stadiums in Canada? | 'Canada'-res:Canada | 'teams'-dbp:team | 'rented'-dbo:related | 'stadiums'-dbp:stadium","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Canada> . ?x <http://dbpedia.org/property/tenants> ?uri . }" +"List the outflow of Lake Uniamsi? | 'Lake Uniamsi'-res:Lake_Uniamési | 'outflow'-dbo:outflow"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lake_Uniamési> <http://dbpedia.org/ontology/outflow> ?uri } " +"Name the incumbent of Linda Jenness ? | 'Linda Jenness'-res:Linda_Jenness | 'name'-dbp:name | 'incumbent'-dbo:incumbent"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Linda_Jenness> <http://dbpedia.org/ontology/incumbent> ?uri } " +"In which countries does the sea lie on whose shore is the city of Cumana? | 'Cumana'-res:Cumaná | 'sea lie'-dbo:elevation | 'shore'-dbo:interest | 'city'-dbo:city","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/cities> <http://dbpedia.org/resource/Cumaná> . ?x <http://dbpedia.org/property/country> ?uri . }" +"Where is the headquarters of Sigma TV | 'Sigma TV'-res:Sigma_TV | 'headquarters'-dbp:headquarters"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Sigma_TV> <http://dbpedia.org/property/headquarters> ?uri } " +"Count the affiliations of International Union of Anarchists? | 'International Union of Anarchists'-res:International_Union_of_Anarchists | 'affiliation'-dbp:affiliation","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/affiliation> <http://dbpedia.org/resource/International_Union_of_Anarchists> . }" +"What is the alma mater of the scientist whose PhD advisor is Jean-Claude Latombe ? | 'scientist'-res:Scientist | 'PhD advisor'-res:Doctor_of_Philosophy | 'Jean-Claude Latombe'-res:Jean-Claude_Latombe | 'alma mater'-dbo:almaMater","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/doctoralAdvisor> <http://dbpedia.org/resource/Jean-Claude_Latombe> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}" +"List the people residing in Wilton, Connecticut? | 'Wilton, Connecticut'-res:Wilton,_Connecticut | 'residing'-dbp:residence","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/residence> <http://dbpedia.org/resource/Wilton,_Connecticut> . }" +"Bantam Spectra is the publisher of which series? | 'bantam Spectra'-res:Bantam_Spectra | 'publisher'-dbo:publisher | 'series'-dbo:series","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/publisher> <http://dbpedia.org/resource/Bantam_Spectra> . ?x <http://dbpedia.org/property/series> ?uri . }" +"How many things are produced by companies located in Tehran? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'Tehran'-res:Tehran | 'produced'-dbo:product | 'located'-dbp:location","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/location> <http://dbpedia.org/resource/Tehran> . ?uri <http://dbpedia.org/ontology/manufacturer> ?x . }" +"Horses grandsired by Sundridge have won which awards? | 'Sundridge'-res:Sundridge | 'horses'-dbo:staff | 'grandsired'-dbo:grandsire | 'won'-dbo:award | 'awards'-dbo:award","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/grandsire> <http://dbpedia.org/resource/Sundridge> . ?x <http://dbpedia.org/property/awards> ?uri . }" +"Who was on the first team in the GPs that were held at Watkins Glen, NY? | 'GPs'-res:NBEAL2 | 'NY'-res:New_York | 'Watkins Glen,'-res:Watkins_Glen_International | 'team'-dbo:team | 'held'-dbo:office","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/ground> <http://dbpedia.org/resource/Watkins_Glen_International> . ?x <http://dbpedia.org/property/firstTeam> ?uri . }" +"Name the movie whose screenplay is by Akiva Goldsman and directed by Joel Schumacher ? | 'screenplay'-res:Screenplay_(book) | 'Akiva Goldsman'-res:Akiva_Goldsman | 'Joel Schumacher'-res:Joel_Schumacher | 'name'-dbp:name | 'movie'-dbo:picture | 'directed'-dbp:directedby","SELECT DISTINCT ?uri WHERE { ?uri_(screenplay) <http://dbpedia.org/property/director> <http://dbpedia.org/resource/Joel_Schumacher> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" +"What is the baseball team whose club manager's debut team is Houston Astros? | 'debut team'-res:The_Debut | 'Houston Astros'-res:Houston_Astros | 'baseball team'-dbo:team | 'club manager'-dbo:director","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/debutTeam> <http://dbpedia.org/resource/Houston_Astros> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/BaseballTeam>}" +"In how many different places have people beatified by Pope Pius X died? | 'X'-res:X | 'Pope Pius'-res:Pope_Pius_X | 'places'-dbp:height | 'beatified'-dbp:beatifiedBy | 'died'-dbo:deathDate","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/beatifiedBy> <http://dbpedia.org/resource/Pope_Pius_X> . ?x <http://dbpedia.org/ontology/deathPlace> ?uri . }" +"What faiths are followed by the relatives of Meadow Soprano? | 'Meadow Soprano'-res:Meadow_Soprano | 'faiths'-dbo:religion | 'relatives'-dbo:relative","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Meadow_Soprano> <http://dbpedia.org/ontology/relative> ?x . ?x <http://dbpedia.org/property/religion> ?uri . }" +"who was the president under whom winston bryant served as a lieutenant? | 'Winston bryant'-res:Winston_Bryant | 'president'-dbo:president | 'served'-dbo:regionServed | 'lieutenant'-dbo:lieutenant","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/lieutenant> <http://dbpedia.org/resource/Winston_Bryant> . ?x <http://dbpedia.org/ontology/president> ?uri . }" +"What are the bands associated with the artists of My Favorite Girl ? | 'My Favorite Girl'-res:My_Favorite_Girl | 'bands'-dbo:staff | 'associated'-dbo:associatedBand | 'artists'-dbp:artist","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/artist> <http://dbpedia.org/resource/My_Favorite_Girl> . ?x <http://dbpedia.org/ontology/associatedBand> ?uri . }" +"What are the television shows whose network's stockholder is Warner Bros. Television? | 'Warner Bros. Television'-res:Warner_Bros._Television | 'television'-dbo:transmission | 'shows'-dbo:place | 'network'-dbo:network","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/owner> <http://dbpedia.org/resource/Warner_Bros._Television> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" +"What is the total number of software whose programming language is C++ and operating system is Microsoft Windows? | 'software'-res:Rietveld_(software) | 'C++'-res:C++ | 'Microsoft Windows'-res:Microsoft_Windows | 'total'-dbo:populationTotal | 'programming language'-dbo:language | 'operating'-dbo:operatingSystem"," SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/programmingLanguage> <http://dbpedia.org/resource/C++> . ?uri <http://dbpedia.org/ontology/operatingSystem> <http://dbpedia.org/resource/Microsoft_Windows> } " +"how many companies are located in a spanish speaking region? | 'spanish'-res:Spanish_language | 'located'-dbo:language | 'spanish speaking'-dbo:location","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/language> <http://dbpedia.org/resource/Spanish_language> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}" +"From how many different institutes have the members of Judge Advocate General's Corps graduated? | 'Judge Advocate General 's Corps'-res:Judge_Advocate_General's_Corps,_United_States_Army | 'institutes'-dbo:university | 'members'-dbo:family | 'graduated'-dbo:effectiveRadiatedPower","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/almaMater> <http://dbpedia.org/resource/Judge_Advocate_General's_Corps,_United_States_Army> . ?uri <http://dbpedia.org/ontology/institution> ?x . }" +"Name the river whose mouth mountain is Southend-on-Sea and mouth place is Essex? | 'Southend-on-Sea'-res:Southend-on-Sea | 'Essex'-res:Essex | 'name'-dbp:name | 'river'-dbo:river | 'mouth mountain'-dbo:elevation | 'mouth place'-dbo:district"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/mouthMountain> <http://dbpedia.org/resource/Southend-on-Sea> . ?uri <http://dbpedia.org/ontology/mouthPlace> <http://dbpedia.org/resource/Essex> } " +"What genre's softwares are released with a GNU GPL license? | 'softwares'-res:Software | 'GNU'-res:GNU | 'GPL license'-res:Gpl-violations.org | 'GPL'-res:Gpl-violations.org | 'GNU license'-res:GNU_Free_Documentation_License | 'genre'-dbo:genre | 'released'-dbp:released","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/license> <http://dbpedia.org/resource/GNU_Free_Documentation_License> . ?x <http://dbpedia.org/ontology/genre> ?uri . }" +"Who is the leader of Allgemeine SS ? | 'SS'-res:Schutzstaffel | 'Allgemeine'-res:Allgemeine_SS | 'leader'-dbo:leader"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Allgemeine_SS> <http://dbpedia.org/ontology/leader> ?uri } " +"Where is the headquarters of Metro Transit (Minnesota) ? | 'Metro Transit (Minnesota)'-res:Metro_Transit_(Minnesota) | 'headquarters'-dbp:headquarters"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Metro_Transit_(Minnesota)> <http://dbpedia.org/property/headquarters> ?uri } " +"Give me the count of all the names of characters created by Frank Miller | 'Frank Miller'-res:Frank_Miller_(comics) | 'created by'-dbp:creators | 'characters'-dbp:characterName","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/creators> <http://dbpedia.org/resource/Frank_Miller_(comics)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/FictionalCharacter>}" +"Where was the narrator of Spain on the Road Again born? | 'Spain on the Road Again'-res:Spain..._on_the_Road_Again | 'narrator'-dbo:narrator | 'born'-dbp:birthPlace","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Spain_on_the_Road_Again> <http://dbpedia.org/ontology/narrator> ?x . ?x <http://dbpedia.org/property/birthPlace> ?uri . }" +"Where did the scientist study whose doctoral thesis was supervised by Leonard Lerman? | 'Leonard Lerman'-res:Leonard_Lerman | 'scientist study'-dbo:picture | 'doctoral thesis'-dbo:doctoralAdvisor | 'supervised'-dbo:doctoralAdvisor","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/doctoralAdvisor> <http://dbpedia.org/resource/Leonard_Lerman> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}" +"Which governer of Winston Bryant is the president of Joseph Stiglitz ? | 'Winston Bryant'-res:Winston_Bryant | 'Joseph Stiglitz'-res:Joseph_Stiglitz | 'governer'-dbp:governor | 'president'-dbo:president"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Winston_Bryant> <http://dbpedia.org/property/governor> ?uri . <http://dbpedia.org/resource/Joseph_Stiglitz> <http://dbpedia.org/ontology/president> ?uri} " +"How many people have led agencies in German occupied Europe? | 'agencies'-res:Agencies_of_the_European_Union | 'German'-res:Germany | 'German'-res:German | 'Europe'-res:Europe | 'led'-dbo:field | 'occupied'-dbp:about | ''-dbo:country | ''-dbo:country","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/occupiedActs> <http://dbpedia.org/resource/Germany> . ?x <http://dbpedia.org/ontology/leader> ?uri . }" +"Where did the plays written by Robert Schenkkan take place? | 'Robert Schenkkan'-res:Robert_Schenkkan | 'plays'-dbo:plays | 'written'-dbo:writer | 'place'-dbo:place","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/writer> <http://dbpedia.org/resource/Robert_Schenkkan> . ?x <http://dbpedia.org/property/place> ?uri . }" +"Name some ww1 veterans? | 'ww1 veterans'-res:WW1_(album) | 'name'-dbo:name","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/militaryPerson> <http://dbpedia.org/resource/WW1_(album)> . }" +"Which are the predecessor of Chevrolet Caprice? | 'Chevrolet Caprice'-res:Chevrolet_Caprice | 'predecessor'-dbo:predecessor"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Chevrolet_Caprice> <http://dbpedia.org/property/predecessor> ?uri } " +"What is the series of the book which is a subsequent work of Blade Runner 2: The Edge of Human ? | 'Blade Runner 2: The Edge of Human subsequent work'-res:Blade_Runner_2:_The_Edge_of_Human | 'series'-dbo:series"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Blade_Runner_2:_The_Edge_of_Human> <http://dbpedia.org/ontology/series> ?uri } " +"Which TV show whose theme is composed by someone signed up with ATO records? | 'ATO records'-res:ATO_Records | 'show'-dbo:show | 'theme'-dbp:subject | 'composed'-dbo:musicComposer | 'signed'-dbo:movement | 'records'-dbo:background","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/recordLabel> <http://dbpedia.org/resource/ATO_Records> . ?uri <http://dbpedia.org/property/themeMusicComposer> ?x . }" +"Who is the relative of Jim Farley (businessman) ? | 'Jim Farley (businessman)'-res:Jim_Farley_(businessman) | 'relative'-dbp:relatives"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jim_Farley_(businessman)> <http://dbpedia.org/property/relatives> ?uri } " +"Name books with publisher as Francisco de Robles and writer as Miguel de Cervantes ? | 'Francisco de Robles'-res:Francisco_de_Robles | 'Miguel de Cervantes'-res:Miguel_de_Cervantes | 'name books'-dbo:leaderName | 'publisher'-dbo:publisher | 'writer'-dbo:writer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/publisher> <http://dbpedia.org/resource/Francisco_de_Robles> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book>}" +"What nation is Hornito located in, where Jamie Bateman Cayn died too? | 'Hornito'-res:Hornito | 'Jamie Bateman Cayn'-res:John_Jones_Bateman | 'nation'-dbo:country | 'located'-dbo:position | 'in,'-dbo:recordedIn | 'died'-dbo:deathDate"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Hornito> <http://dbpedia.org/property/placeOfDeath> ?uri . <http://dbpedia.org/resource/Jamie_Bateman> <http://dbpedia.org/ontology/country> ?uri} " +"Name the resting place of Fazlur Rahman Khan ? | 'Fazlur Rahman Khan'-res:Fazlur_Rahman_Khan | 'name'-dbp:name | 'resting'-dbo:restingPlace | 'place'-dbo:place"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Fazlur_Rahman_Khan> <http://dbpedia.org/ontology/restingPlace> ?uri } " +"Who is the meaning of Isa ? | 'Isa'-res:Isa_(name) | 'meaning'-dbo:meaning"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Isa_(name)> <http://dbpedia.org/ontology/meaning> ?uri } " +"Count the number teams which have former ice hockey players which also included American Hockey League ? | 'former ice hockey players'-res:Ice_hockey | 'American Hockey League'-res:Organization_of_American_States | 'American Hockey League'-res:American_Hockey_League | 'count'-dbo:country | 'teams'-dbp:teams | 'included'-dbo:number | ''-dbo:country","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/league> <http://dbpedia.org/resource/American_Hockey_League> . ?x <http://dbpedia.org/property/formerTeam> ?uri . }" +"List all the schools of the rugby player whose went to school named Pietermaritzburg ? | 'Pietermaritzburg'-res:Pietermaritzburg | 'schools'-dbo:ground | 'rugby player'-dbo:combatant | 'school'-dbo:school","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/school> <http://dbpedia.org/resource/Pietermaritzburg> . ?x <http://dbpedia.org/property/school> ?uri . }" +"Name the office of Richard Coke ? | 'Richard Coke'-res:Richard_Coke | 'name'-dbo:name | 'office'-dbo:office"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Richard_Coke> <http://dbpedia.org/ontology/office> ?uri } " +"Which city's foundeer is John Forbes? | 'John Forbes'-res:John_Forbes_(British_Army_officer) | 'city'-dbo:city | 'foundeer'-dbp:founder","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/founder> <http://dbpedia.org/resource/John_Forbes_(British_Army_officer)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/City>}" +"What is the river whose mouth is in deadsea? | 'deadsea'-res:Deadhead | 'river mouth'-dbo:riverMouth","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/riverMouth> <http://dbpedia.org/resource/Deadhead> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/River>}" +"What is the allegiance of John Kotelawala ? | 'John Kotelawala'-res:John_Kotelawala | 'allegiance'-dbo:allegiance"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/John_Kotelawala> <http://dbpedia.org/property/allegiance> ?uri } " +"What layout can be found in cars similar to the Subaru Outback? | 'Subaru Outback'-res:Subaru_Outback | 'layout'-dbo:layout | 'cars'-dbo:management","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Subaru_Outback> <http://dbpedia.org/property/related> ?x . ?x <http://dbpedia.org/ontology/layout> ?uri . }" +"Name the origin of Henry Cluney ? | 'Henry Cluney'-res:Henry_Cluney | 'name'-dbp:name | 'origin'-dbo:origin"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Henry_Cluney> <http://dbpedia.org/ontology/origin> ?uri } " +"In which part of the world can i find Xynisteri and Mavro? | 'Xynisteri'-res:Xynisteri | 'Mavro'-res:Mavro | 'in'-dbo:origin | 'in'-dbo:origin","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Xynisteri> <http://dbpedia.org/property/locationCountry> ?uri . <http://dbpedia.org/resource/Mavro> <http://dbpedia.org/ontology/origin> ?uri . }" +"which awards have been given to people who fought in the Battle of France? | 'Battle of France'-res:Battle_of_France | 'awards'-dbo:award | 'fought'-dbo:type","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/Battle_of_France> . ?x <http://dbpedia.org/ontology/award> ?uri . }" +"Who was the silver medalist of Gymnastics at the 2008 Summer Olympics Women's artistic individual all-around ? | 'Gymnastics at the 2008 Summer Olympics Women'-res:Gymnastics_at_the_2008_Summer_Olympics | 'artistic individual all-around'-res:European_Artistic_Gymnastics_Championships_–_Women's_individual_all-around"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Gymnastics_at_the_2008_Summer_Olympics> <http://dbpedia.org/property/artisticInArea> ?uri } " +"List the battles fought by Roh Tae-woo ? | 'Roh Tae-woo'-res:Roh_Tae-woo | 'battles'-dbp:battles"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Roh_Tae-woo> <http://dbpedia.org/property/battles> ?uri } " +"List the common official language of the ladonia and Empire of Atlantium ? | 'ladonia'-res:Ladonia_(micronation) | 'Empire of Atlantium'-res:Empire_of_Atlantium | 'official language'-dbo:officialLanguage | 'official language'-dbo:officialLanguage"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ladonia_(micronation)> <http://dbpedia.org/property/language> ?uri . <http://dbpedia.org/resource/Empire_of_Atlantium> <http://dbpedia.org/ontology/officialLanguage> ?uri} " +"What is the occupation of the Irving Chernev and Karen Grigorian? | 'Irving Chernev'-res:Irving_Chernev | 'Karen Grigorian'-res:Karen_Grigorian | 'occupation'-dbo:occupation","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Irving_Chernev> <http://dbpedia.org/ontology/occupation> ?uri . <http://dbpedia.org/resource/Karen_Grigorian> . }" +"In which countries can i find some feminist writers? | 'countries'-res:Countries_of_the_United_Kingdom | 'feminist writers'-res:Feminist_stripper | 'i'-dbp:i","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/feministGenre> <http://dbpedia.org/resource/Feminist_stripper> . ?x <http://dbpedia.org/property/country> ?uri . }" +"In which teams did anyone who played as a defencemen, play previously? | 'teams'-dbo:numberOfTeams | 'played'-dbo:portrayer | 'play'-dbo:starring","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/position> <http://dbpedia.org/resource/Defenceman> . ?x <http://dbpedia.org/ontology/formerTeam> ?uri . }" +"Who authored the works published in the Jump Square Magazine? | 'Jump Square'-res:Jump_Square | 'Magazine'-dbp:magazine | 'author'-dbp:author","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/magazine> <http://dbpedia.org/resource/Jump_Square> . ?x <http://dbpedia.org/ontology/author> ?uri . }" +"List bacteria whose order (taxonomy) is Bacillales and domain is Bacteria? | 'Bacteria (taxonomy)'-res:Bacteria | 'Bacillales'-res:Bacillales | 'Bacteria'-res:Bacteria | 'domain'-dbo:domain"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/order> <http://dbpedia.org/resource/Bacillales> } " +"In which language is All I need is Your Sweet lovin written ? | 'I'-res:I | 'All'-res:All | 'Your Sweet lovin'-res:All_I_Need_Is_Your_Sweet_Lovin' | 'language'-dbo:language | 'written'-dbo:writer"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/All_I_Need_Is_Your_Sweet_Lovin'> <http://dbpedia.org/ontology/writer> ?uri } " +"What sport amongst the one Lagos Preparatory School practices, did Willian Garne play for? | 'Lagos Preparatory School practices, did Willian Garne'-res:Lagos_Preparatory_School | 'sport'-dbo:sport | 'play'-dbo:sport"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lagos_Preparatory_School> <http://dbpedia.org/property/sport> ?uri } " +"What are the beverages whose origin is England? | 'England'-res:England | 'beverages'-dbo:strength | 'origin'-dbo:origin","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/origin> <http://dbpedia.org/resource/England> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Beverage>}" +"Who is the film star of On Air with Ryan Seacrest ? | 'On Air with Ryan Seacrest'-res:On_Air_with_Ryan_Seacrest | 'star'-dbo:starring"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/On_Air_with_Ryan_Seacrest> <http://dbpedia.org/ontology/starring> ?uri } " +"Which university attended by Franklin W. Olin was also the alma mater of Patty Lin ? | 'Patty Lin'-res:Patty_Lin | 'Franklin W. Olin'-res:Franklin_W._Olin | 'university attended'-dbp:almaMater | 'university attended'-dbp:education"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Franklin_W._Olin> <http://dbpedia.org/property/almaMater> ?uri . <http://dbpedia.org/resource/Patty_Lin> <http://dbpedia.org/ontology/education> ?uri} " +"Count the number of sports played by schools which play hockey ? | 'hockey'-res:Hockey | 'sports'-dbo:sport | 'sports'-dbo:sport"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/athletics> <http://dbpedia.org/resource/Hockey> . ?x <http://dbpedia.org/ontology/sport> ?uri }" +"List the tomb of the royalties whose burial place is Little Easton ? | 'Royalties'-res:Royalties | 'Little Easton'-res:Little_Easton | 'tomb'-dbo:race | 'burial place'-dbo:district","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/restingplace> <http://dbpedia.org/resource/Little_Easton> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Royalty>}" +"How many software run on operating system is Microsoft Windows? | 'software'-res:Software | 'Microsoft Windows'-res:Microsoft_Windows | 'operating system'-dbo:operatingSystem | 'software'-dbo:Software","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/operatingSystem> <http://dbpedia.org/resource/Microsoft_Windows> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Software>}" +"List the show related to the which was followed by Doctor Who Extra? | 'Doctor Who Extra'-res:Doctor_Who_Extra | 'show'-dbp:show | 'related'-dbo:related","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/related> <http://dbpedia.org/resource/Doctor_Who_Extra> . ?uri <http://dbpedia.org/property/related> ?x . }" +"Which country's largest city is Lima? | 'largest city'-res:Largest_octopus | 'Lima'-res:Lima | 'largest city'-dbo:largestCity","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/largestCity> <http://dbpedia.org/resource/Lima> . }" +"List the institute of Robert hall ? | 'Robert hall'-res:Robert_S._Hall | 'institute'-dbo:institution"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Robert_S._Hall> <http://dbpedia.org/ontology/institution> ?uri } " +"What are the movies whose music is given by Laurie Johnson? | 'Laurie Johnson'-res:Laurie_Johnson | 'music'-dbp:music | 'movie'-dbo:Film","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Laurie_Johnson> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" +"What appliance Sony made after the success of PlayStation 2? | 'appliance Sony'-res:Appliance | 'PlayStation 2'-res:PlayStation_2 | 'success'-dbo:successor","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/successor> <http://dbpedia.org/resource/PlayStation_2> . }" +"Name the series of Doctor Who: Evacuation Earth ? | 'Doctor Who: Evacuation Earth'-res:Doctor_Who:_Evacuation_Earth | 'name'-dbp:name | 'series'-dbo:series"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Doctor_Who:_Evacuation_Earth> <http://dbpedia.org/ontology/series> ?uri } " +"What are some music artists whose bands have signed up with Entertainment One Music? | 'Entertainment One Music'-res:Entertainment_One_Music | 'music artists'-dbo:musicSubgenre | 'bands'-dbo:staff | 'signed'-dbo:movement","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Entertainment_One_Music> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Band>}" +"Name the broadcast area of Radio Philippines Network ? | 'Radio Philippines Network'-res:Radio_Philippines_Network | 'name'-dbo:name | 'broadcast area'-dbo:broadcastArea"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Radio_Philippines_Network> <http://dbpedia.org/ontology/broadcastArea> ?uri } " +"Which religion is prevalent in the schools of the Ashanti region? | 'Ashanti region'-res:Ashanti_Region | 'religion'-dbo:religion | 'prevalent'-dbo:currency | 'schools'-dbo:ground","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/region> <http://dbpedia.org/resource/Ashanti_Region> . ?x <http://dbpedia.org/property/religion> ?uri . }" +"Which maintainer of Cheasty Boulevard South is also the city of Soccer Bowl' 76 ? | 'Cheasty Boulevard South'-res:Cheasty_Boulevard_South | 'Soccer Bowl'-res:Soccer_Bowl | '76'-res:UFC_76 | 'maintainer'-dbo:maintainedBy | 'city'-dbo:city"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cheasty_Boulevard_South> <http://dbpedia.org/ontology/maintainedBy> ?uri . <http://dbpedia.org/resource/Soccer_Bowl> <http://dbpedia.org/property/city> ?uri} " +"Which driver came first in the 1993 European Grand Prix ? | '1993 European Grand Prix'-res:1993_European_Grand_Prix | 'driver first'-dbp:firstDriver"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/1993_European_Grand_Prix> <http://dbpedia.org/property/firstDriver> ?uri } " +"How many other ingredient are there in the foods whihh have one of the ingredient as Potato ? | 'Foods whihh'-res:Sclafani_Foods | 'Potato'-res:Potato | 'ingredient'-dbo:ingredient | 'ingredient'-dbo:ingredient"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/ingredient> <http://dbpedia.org/resource/Sclafani_Foods> . ?x <http://dbpedia.org/property/editing> ?uri }" +"How many companies have launched their rockets from the Vandenerg Air base? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'Vandenerg Air base'-res:Reims_–_Champagne_Air_Base | 'launched'-dbo:shipLaunch | 'rockets'-dbo:capital","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/launch> <http://dbpedia.org/resource/Vandenerg_Air_Base> . ?x <http://dbpedia.org/property/launch> ?uri . }" +"What is operated by FedExField ? | 'FedExField'-res:FedExField | 'operated'-dbo:operator"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/FedExField> <http://dbpedia.org/ontology/operator> ?uri } " +"Foxconn makes how many things? | 'Foxconn'-res:Foxconn","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/conn> <http://dbpedia.org/resource/Foxconn> . }" +"In how many nations can I find dishes made of Shallot? | 'I'-res:I | 'Shallot'-res:Shallot | 'nations'-dbo:state | 'dishes'-dbo:state","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/state> <http://dbpedia.org/resource/Shallot> . ?x <http://dbpedia.org/property/country> ?uri . }" +"What are the nicknames of the schools whose color is royal blue? | 'royal blue'-res:Royal_blue | 'nicknames'-dbo:denomination | 'schools'-dbo:discipline | 'color'-dbo:hairColor | 'royal blue'-dbo:gross","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/hairColor> <http://dbpedia.org/resource/Royal_blue> . ?x <http://dbpedia.org/property/nicknames> ?uri . }" +"To what political party do the politicians graduated from Somerville college, Oxford belong to? | 'politicians'-res:Politicians_of_The_Wire | 'Somerville college, Oxford'-res:Somerville_College,_Oxford | 'political party'-dbp:party | 'graduated'-dbo:numberOfGraduateStudents | 'belong'-dbo:person","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/almaMater> <http://dbpedia.org/resource/Somerville_College,_Oxford> . ?x <http://dbpedia.org/property/party> ?uri . }" +"What awards did Jos Rivera (playwright) win? | 'Jos Rivera (playwright)'-res:José_Rivera_(playwright) | 'awards'-dbp:awards"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/José_Rivera_(playwright)> <http://dbpedia.org/property/awards> ?uri } " +"Which political figures were awarded Screen Actors Guild Life Achievement Award? | 'Screen Actors Guild Life Achievement Award'-res:Screen_Actors_Guild_Life_Achievement_Award | 'awarded'-dbo:award","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/award> <http://dbpedia.org/resource/Screen_Actors_Guild_Life_Achievement_Award> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/OfficeHolder>}" +"What is the Home Stadium of the Kenya national under-20 football team where Matin Suji was also born ? | 'Home Stadium of the Kenya national under-20 football team where Matin Suji'-res:Kenya_national_under-20_football_team | 'born'-dbo:birthYear"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kenya_national_under-20_football_team> <http://dbpedia.org/ontology/ground> ?uri . <http://dbpedia.org/resource/Matin_Suji> <http://dbpedia.org/property/birthPlace> ?uri} " +"What is the protected area whose nearest city is Kenya? | 'Kenya'-res:Kenya | 'nearest city'-dbo:nearestCity | 'protected area'-dbo:ProtectedArea","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/nearestCity> <http://dbpedia.org/resource/Kenya> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/ProtectedArea>}" +"How many places were ruled by Elizabeth II? | 'II'-res:Ii | 'Elizabeth'-res:Elizabeth | 'ruled'-dbp:leaderName","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/leaderName> <http://dbpedia.org/resource/Elizabeth> . }" +"Which college of Luke List (golfer) is the alma mater of K. Terry Dornbush | 'Luke List (golfer)'-res:Luke_List_(golfer) | 'K'-res:K | 'Terry Dornbush'-res:K._Terry_Dornbush | 'college'-dbo:college | 'alma mater'-dbo:almaMater"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Luke_List_(golfer)> <http://dbpedia.org/property/college> ?uri . <http://dbpedia.org/resource/K._Terry_Dornbush> <http://dbpedia.org/ontology/almaMater> ?uri} " +"How many producers have worked for FremantleMedia productions? | 'FremantleMedia productions'-res:FremantleMedia | 'worked for'-dbp:company | 'producer'-dbo:producer","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/company> <http://dbpedia.org/resource/FremantleMedia> . ?x <http://dbpedia.org/ontology/producer> ?uri . }" +"Which animator of Tommy Ticker's Tooth is also the director of The Haunted house ? | 'Tommy Ticker'-res:Ticker_(2001_film) | 'Tooth'-res:The_Booth | 'The Haunted house'-res:The_Haunted_House_(1929_film) | 'animator'-dbo:animator | 'director'-dbo:director"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Haunted_House_(1929_film)> <http://dbpedia.org/ontology/director> ?uri } " +"How many architects are there who have made something used by Oakland athletics? | 'Oakland athletics'-res:Oakland_Athletics | 'architects'-dbo:builder","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/athletics> <http://dbpedia.org/resource/Oakland_Athletics> . ?x <http://dbpedia.org/ontology/builder> ?uri . }" +"Where are Solidus and Aureus used? | 'Solidus and Aureus'-res:Solidus_mark","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Solidus_mark> <http://dbpedia.org/ontology/usedInWar> ?uri . <http://dbpedia.org/resource/Aurus_veneratedIn> ?uri . }" +"Which company owns the airlines whose hub is in Dubai? | 'Dubai'-res:Dubai | 'company'-dbo:company | 'owns'-dbo:relation | 'airlines'-dbo:icaoAirlineCode | 'hub'-dbp:centre","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/hubAirport> <http://dbpedia.org/resource/Dubai> . ?x <http://dbpedia.org/property/owner> ?uri . }" +"Who built the Ford Y-block engine ? | 'Ford Y-block engine'-res:Ford_Y-block_engine | 'built'-dbo:manufacturer"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ford_Y-block_engine> <http://dbpedia.org/ontology/manufacturer> ?uri } " +"What is the region of Lumberjack ? | 'Lumberjack'-res:Lumberjack_100 | 'region'-dbo:region"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lumberjack_100> <http://dbpedia.org/ontology/region> ?uri } " +"How many awards have royal designers for industry awardwinners got? | 'awards'-dbo:award | 'royal designers'-dbo:royalAnthem | 'industry awardwinners'-dbo:industry","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/royalAnthem> . ?x <http://dbpedia.org/property/awards> ?uri . }" +"Where is the team of Abdel Boucker located ? | 'Abdel Boucker'-res:Abdel_Bouckar | 'team'-dbo:team | 'located'-dbo:position"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Abdel_Bouckar> <http://dbpedia.org/ontology/team> ?uri } " +"For which other teams do members of tanzanian national football team play? | ''-res:Tanzania_national_football_team | 'teams'-dbo:team | 'members'-dbo:membership | 'play'-dbo:team"," SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/nationalteam> <http://dbpedia.org/resource/Tanzania_national_football_team> . ?x <http://dbpedia.org/ontology/team> ?uri }" +"List the ceremonial county of East Tilbury ? | 'East Tilbury'-res:East_Tilbury | 'ceremonial county'-dbo:ceremonialCounty"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/East_Tilbury> <http://dbpedia.org/ontology/ceremonialCounty> ?uri } " +"Which award that has been given to James F Obrien, had used Laemmle Theatres for some service? | 'Laemmle Theatres'-res:Laemmle_Theatres | 'James F Obrien'-res:James_F._O'Brien | 'award'-dbo:award | 'service'-dbo:service","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Laemmle_Theatres> <http://dbpedia.org/property/service> ?x . ?x <http://dbpedia.org/ontology/award> ?uri . }" +"How many people have parterned with the person choroegraphed by Catarina Lindgren in the past? | 'Parterned'-res:Bartered | 'Catarina Lindgren'-res:Catarina_Lindgren | 'person'-dbo:person | 'choroegraphed'-dbp:choreographer","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/choreographer> <http://dbpedia.org/resource/Catarina_Lindgren> . ?uri <http://dbpedia.org/ontology/parternedPerson> ?x . }" +"Which famous commander led the Siege of forn meigs and was involved in the battle of fort stephenson? | 'Siege'-res:Siege_of_Santiago | 'meigs'-res:Meigs | 'fort stephenson'-res:Battle_of_Fort_Stephenson | 'famous commander'-dbo:commander | 'led'-dbo:license | 'forn'-dbo:gross | 'involved'-dbo:result | 'battle'-dbo:battle","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/Siege_of_Santiago> . ?x <http://dbpedia.org/ontology/commander> ?uri . }" +"Which games publishers are located in California? | 'California'-res:California | 'games publishers'-dbo:athletics | 'located'-dbo:gross","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/California> . ?uri <http://dbpedia.org/property/publisher> ?x . }" +"Where is the stadium of Philadelphia Rage ? | 'Philadelphia Rage'-res:Philadelphia_Rage | 'stadium'-dbo:stadium"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Philadelphia_Rage> <http://dbpedia.org/ontology/stadium> ?uri } " +"Count all the things licensed as Software as a service. | 'Software'-res:Software | 'count'-dbo:type | 'licensed'-dbo:license | 'service'-dbo:industry","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/license> <http://dbpedia.org/resource/Software_as_a_service> . ?uri <http://dbpedia.org/property/license> ?x . }" +"What is the total number of other non-fiction subject of the books whose one of the subject is Racism? | 'Racism'-res:Racism | 'total'-dbo:populationTotal | 'non-fiction subject'-dbo:nonFictionSubject | 'books'-dbo:volume | 'subject'-dbo:nonFictionSubject"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/literaryGenre> <http://dbpedia.org/resource/Racism> . ?x <http://dbpedia.org/ontology/nonFictionSubject> ?uri }" +"Name all the junctions of U.S. Route 59? | 'U.S. Route 59'-res:U.S._Route_59 | 'name'-dbp:name | 'junctions'-dbp:junction","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/route> <http://dbpedia.org/resource/U.S._Route_59> . ?x <http://dbpedia.org/property/junction> ?uri . }" +"What are some other services of the company whose service is Onedrive? | 'Onedrive'-res:OneDrive | 'services'-dbo:service | 'company'-dbo:company | 'service'-dbo:service"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/service> <http://dbpedia.org/resource/OneDrive> } " +"What is Bob Adams (American football) known for? | 'Bob Adams (American football)'-res:Bob_Adams_(American_football) | 'known for'-dbp:knownFor"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bob_Adams_(American_football)> <http://dbpedia.org/property/knownFor> ?uri } " +"Who owns Chelsea F.C.? | 'FC'-res:FC | 'Chelsea'-res:Chelsea | 'owns'-dbo:languageFamily"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Chelsea_F.C> . <http://dbpedia.org/property/owner> ?uri } " +"What is the common affiliation of the Monroe Carell Jr. Children's Hospital at Vanderbilt and alma mater of the Duncan U. Fletcher? | 'Monroe Carell Jr. Children's Hospital at Vanderbilt'-res:Monroe_Carell_Jr._Children's_Hospital_at_Vanderbilt | 'Duncan U. Fletcher'-res:Duncan_U._Fletcher | 'affiliation'-dbp:affiliation | 'alma mater'-dbo:almaMater"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Monroe_Carell_Jr._Children's_Hospital_at_Vanderbilt> <http://dbpedia.org/property/affiliation> ?uri . <http://dbpedia.org/resource/Duncan_U._Fletcher> <http://dbpedia.org/ontology/almaMater> ?uri} " +"Where do bachelor of arts live? | 'bachelor'-res:Bachelor | 'arts live'-dbo:board"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bachelor_(artist)> <http://dbpedia.org/ontology/board> ?uri } " +"What are the awards won by the spouse of Liv Ullmann ? | 'Liv Ullmann'-res:Liv_Ullmann | 'spouse'-dbo:partner | 'awards'-dbp:awards","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Liv_Ullmann> <http://dbpedia.org/ontology/partner> ?x . ?x <http://dbpedia.org/property/awards> ?uri . }" +"How many companies have developed cross platformed softwares? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'cross platformed softwares'-res:Go_software | 'developed'-dbo:product","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/products> <http://dbpedia.org/resource/Cross_Platform_for_Softwares> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}" +"How many titles were given to people who engaged in the Operation Dragoon? | 'Operation Dragoon'-res:Operation_Dragoon | 'titles'-dbp:title | 'engaged'-dbo:address","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/battle> <http://dbpedia.org/resource/Operation_Dragoon> . ?x <http://dbpedia.org/property/title> ?uri . }" +"List the pole drivers in the grand prixes where Williams Grand Prix Engineering was a first team? | 'Williams Grand Prix Engineering'-res:Williams_Grand_Prix_Engineering | 'pole drivers'-dbp:poleDriver | 'grand prixes'-dbo:grandsire | 'team'-dbo:team","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/firstTeam> <http://dbpedia.org/resource/Williams_Grand_Prix_Engineering> . ?x <http://dbpedia.org/property/poleDriver> ?uri . }" +"Who is the employer of Michael M. Sears ? | 'Michael M. Sears'-res:Michael_M._Sears | 'employer'-dbo:employer"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Michael_M._Sears> <http://dbpedia.org/ontology/employer> ?uri } " +"List all the artist of the TV shows which has McClain as one of the artist ? | 'McClain'-res:McClain_(band) | 'artist'-dbo:artist | 'artist'-dbo:artist"," SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/artist> <http://dbpedia.org/resource/McClain_(band)> . ?x <http://dbpedia.org/ontology/artist> ?uri }" +"List all the layouts of the automobile whose one of the layout is four-wheel-drive layout ? | 'four-wheel-drive layout'-res:Front-engine,_four-wheel-drive_layout | 'layouts'-dbo:configuration | 'automobile'-dbo:vehicle | 'layout'-dbo:layout | 'four-wheel-drive layout'-dbo:purpose"," SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/engine> <http://dbpedia.org/resource/Front-engine> . ?x <http://dbpedia.org/ontology/layout> ?uri }" +"To how many places does the airlines fly, whose head office is located at the Gatwick Airport? | 'airlines fly,'-res:Hi_Fly_(airline) | 'Gatwick Airport'-res:Gatwick_Airport | 'places'-dbo:district | 'head office'-dbp:headquarters | 'located'-dbo:gross","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Gatwick_Airport> . ?x <http://dbpedia.org/ontology/destinations> ?uri . }" +"Where is the arena of WPC Dynamo Moscow situated? | 'WPC Dynamo Moscow'-res:WPC_Dynamo_Moscow | 'arena'-dbp:arena | 'situated'-dbo:position"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/WPC_Dynamo_Moscow> <http://dbpedia.org/property/arena> ?uri } " +" How many scientist have won an award by the society led by Venkatraman Ramakrishnan? | 'How'-res:How_Do_I_Deal | 'scientist'-res:Scientist | 'Venkatraman Ramakrishnan'-res:Venkatraman_Ramakrishnan | 'won'-dbo:award | 'award'-dbo:award | 'society'-dbo:institution | 'led'-dbo:field","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/leader> <http://dbpedia.org/resource/Venkatraman_Ramakrishnan> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}" +"Who all were involved in the wars fought by the commander Blue Jacket? | 'commander Blue Jacket'-res:The_Jacket | 'involved'-dbo:address | 'wars'-dbo:partner | 'fought'-dbo:type","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/commander> <http://dbpedia.org/resource/The_Jacket> . ?x <http://dbpedia.org/property/territory> ?uri . }" +"Whose labels are Victor Entertainment and Celluloid Records? | 'Victor Entertainment'-res:Victor_Entertainment | 'Celluloid Records'-res:Celluloid_Records | 'labels'-dbp:label","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Celluloid_Records> <http://dbpedia.org/property/label> ?uri . }" +"How many people have written stuff broadcasted on the Tokyo Broadcasting System? | 'Tokyo Broadcasting System'-res:Tokyo_Broadcasting_System | 'written'-dbo:writer | 'stuff broadcasted'-dbo:capital","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/network> <http://dbpedia.org/resource/Tokyo_Broadcasting_System> . ?uri <http://dbpedia.org/property/author> ?x . }" +"What cities are around the sea which flows into Marmara? | 'Marmara'-res:Sea_of_Marmara | 'cities'-dbo:country | 'sea'-dbo:elevation | 'flows'-dbo:outflow","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/inflow> <http://dbpedia.org/resource/Marmara> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Sea>}" +"Companies headquartered in Geneva own which TV Shows? | 'Geneva'-res:Geneva | 'headquartered'-dbo:headquarter","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Geneva> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" +"Which country's engineered have studied at Aero Klub in Wroclaw? | ''-res:AeroKlub_Wrocław | 'Wroclaw'-dbo:institution | 'country's'-dbp:nationality","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/institution> <http://dbpedia.org/resource/AeroKlub_Wrocław> . ?x <http://dbpedia.org/property/nationality> ?uri . }" +"What is the official name of Arkansas wine ? | 'Arkansas wine'-res:Arkansas_wine | 'official name'-dbp:officialName"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Arkansas_wine> <http://dbpedia.org/property/officialName> ?uri } " +"Bridge that starts at Seberang Perai crosses over what? | 'Seberang Perai crosses'-res:Seberang_Perai | 'bridge'-dbo:abstract | 'starts'-dbo:routeStart","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/routeStart> <http://dbpedia.org/resource/Seberang_Perai> . ?x <http://dbpedia.org/property/crosses> ?uri . }" +"What is the purpose of some Maharashtran organizations? | 'Maharashtran organizations'-res:Complex_organizations | 'purpose'-dbo:purpose"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/purpose> <http://dbpedia.org/resource/Maharashtran> } " +"Mota Engil built bridges over which rivers? | 'Mota Engil'-res:Mota-Engil | 'built'-dbo:numberBuilt | 'bridges'-dbo:abstract | 'rivers'-dbo:river","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/river> <http://dbpedia.org/resource/Mota-Engil> . ?x <http://dbpedia.org/property/crosses> ?uri . }" +"How many other field are there of the scientists whose one of the field is Mathematics ? | 'scientists'-res:Scientist | 'Mathematics'-res:Mathematics | 'field'-dbo:field | 'field'-dbo:field"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/fields> <http://dbpedia.org/resource/Mathematics> . ?x <http://dbpedia.org/property/fields> ?uri }" +"List the governers of Jimmie Lou Fisher? | 'Jimmie Lou Fisher'-res:Jimmie_Lou_Fisher | 'governers'-dbp:governor"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jimmie_Lou_Fisher> <http://dbpedia.org/property/governor> ?uri } " +"Which shows had their painters born in England? | 'England'-res:England | 'shows'-dbo:place | 'painters'-dbo:author | 'born'-dbo:birthPlace","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/birthPlace> <http://dbpedia.org/resource/England> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" +"What are the movies whose director's daughter is Luke Scott? | 'Luke Scott'-res:Luke_Scott_(director) | 'movies'-dbo:film | 'director'-dbo:director | 'daughter'-dbo:child","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/child> <http://dbpedia.org/resource/Luke_Scott_(director)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" +"Where did the relatives of Gustavo Rojas Pinilla study? | 'Gustavo Rojas Pinilla study'-res:Gustavo_Rojas_Pinilla | 'relatives'-dbo:relation","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Gustavo_Rojas_Pinilla> <http://dbpedia.org/ontology/relation> ?x . ?x <http://dbpedia.org/property/education> ?uri . }" +"For how many things are americans famous for? | 'americans famous'-dbo:established","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/nationality> <http://dbpedia.org/resource/Americans> . }" +"What is the publisher of Lucifer's Hammer ? | 'Lucifer's Hammer'-res:Lucifer's_Hammer | 'publisher'-dbo:publisher"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lucifer's_Hammer> <http://dbpedia.org/ontology/publisher> ?uri } " +"Which show's theme music composer's label is MapleMusic Recordings? | 'theme music composer'-res:Theme_Music_from_%22The_James_Dean_Story%22 | 'MapleMusic Recordings'-res:MapleMusic_Recordings | 'show'-dbo:show | 'label'-dbp:label","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/label> <http://dbpedia.org/resource/MapleMusic_Recordings> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" +"List the former team of the american football players born in Pennsylvania ? | 'american football players'-res:American_football | 'Pennsylvania'-res:Pennsylvania | 'former team'-dbo:formerTeam | 'born'-dbo:birthPlace","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Pennsylvania> . ?uri <http://dbpedia.org/property/formerTeam> ?x . }" +"What are the countries for which History of Trier principal to? | 'countries'-res:Countries_of_the_United_Kingdom | 'History of Trier principal'-res:History_of_Trier","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/primeminister> <http://dbpedia.org/resource/History_of_Trier> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Country>}" +"Name everyone working for a company owned by Roman Abramovich. | 'Roman Abramovich'-res:Roman_Abramovich | 'name'-dbp:name | 'working'-dbo:capital | 'company'-dbo:company | 'owned'-dbo:owner","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/owner> <http://dbpedia.org/resource/Roman_Abramovich> . ?uri <http://dbpedia.org/property/company> ?x . }" +"In how many different places can I find companies which were founded in toronto? | 'I'-res:I | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'toronto'-res:Toronto | 'places'-dbp:height | 'founded'-dbo:foundingYear","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/foundationBy> <http://dbpedia.org/resource/Toronto> . ?x <http://dbpedia.org/property/locations> ?uri . }" +"What are some relatives of the spouse of Uncle henry from Oz? | 'Uncle henry from Oz'-res:Uncle_Henry_(Oz) | 'relatives'-dbo:relative | 'spouse'-dbo:spouse","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/spouse> <http://dbpedia.org/resource/Uncle_Henry_(Oz)> . }" +"What is the mascot of Blytheville High School ? | 'Blytheville High School'-res:Blytheville_High_School | 'mascot'-dbo:mascot"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Blytheville_High_School> <http://dbpedia.org/property/mascot> ?uri } " +"In which television shows has Eliza Schneider given her voice? | 'Eliza Schneider'-res:Eliza_Schneider | 'voice'-dbp:voices | 'television show'-dbo:TelevisionShow","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/voices> <http://dbpedia.org/resource/Eliza_Schneider> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" +"In which state does the ambassador who is in related with J Bennett Johnston live? | 'J Bennett Johnston'-res:J._Bennett_Johnston | 'ambassador'-dbp:representative | 'related'-dbo:related","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/J._Bennett_Johnston> <http://dbpedia.org/ontology/related> ?x . ?x <http://dbpedia.org/property/state> ?uri . }" +"Where were the sportsmen born, who started their careers with Homestead Grays? | 'Homestead Grays'-res:Homestead_Grays | 'sportsmen born,'-dbo:birthPlace | 'started'-dbo:source | 'careers'-dbo:occupation","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/occupation> <http://dbpedia.org/resource/Homestead_Grays> . ?x <http://dbpedia.org/property/birthPlace> ?uri . }" +"Who are the cast members of The Simpsons Ride? | 'The Simpsons Ride'-res:The_Simpsons_Ride | 'cast members'-dbp:starring"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Simpsons_Ride> <http://dbpedia.org/property/starring> ?uri } " +"Name the organization which developed iPhone OS and the XNU? | 'OS'-res:OS | 'iPhone'-res:IPhone | 'XNU'-res:XNU | 'name'-dbp:name | 'organization'-dbo:alliance | 'developed'-dbp:developer","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/IPhone> <http://dbpedia.org/ontology/os> ?uri . <http://dbpedia.org/resource/XNU> <http://dbpedia.org/property/developer> ?uri . }" +"How many bacterias have taxonomy as Bacillales and domain as Bacteria? | 'bacterias'-res:Bacteriastrum_delicatulum | 'Bacillales'-res:Bacillales | 'Bacteria'-res:Bacteria | 'taxonomy'-dbo:order | 'domain'-dbo:kingdom","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/kingdom> <http://dbpedia.org/resource/Bacillales> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Bacteria>}" +"Who is the film director of Alice's Wonderland ? | 'Alice's Wonderland'-res:Alice's_Wonderland | 'film director'-dbp:director"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Alice's_Wonderland> <http://dbpedia.org/property/director> ?uri } " +"Which military unit's garrison is Pentagon and command structure is United States Department of Defense? | 'garrison'-res:Aldershot_Garrison | 'Pentagon'-res:Pentagon | 'United States Department of Defense'-res:United_States_Department_of_Defense | 'military unit'-dbo:garrison | 'command structure'-dbo:commandStructure"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/garrison> <http://dbpedia.org/resource/Pentagon> . ?uri <http://dbpedia.org/ontology/commandStructure> <http://dbpedia.org/resource/United_States_Department_of_Defense> } " +"Over which rivers, does a cable stayed bridge exists? | 'rivers,'-dbo:river | 'cable'-dbo:voice | 'stayed'-dbo:era | 'bridge exists'-dbo:bridgeCarries","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/designer> <http://dbpedia.org/resource/Cambodian_Democrats> . ?x <http://dbpedia.org/ontology/bridgeCarries> ?uri . }" +"Who were some governmental heads in Nazi Germany? | 'Nazi Germany'-res:Nazi_Germany | 'governmental heads'-dbo:state","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/state> <http://dbpedia.org/resource/Nazi_Germany> . }" +"Name all the doctoral student of the scientist who also supervised Mary Ainsworth ? | 'scientist'-res:Scientist_(musician) | 'Mary Ainsworth'-res:Mary_Ainsworth | 'name'-dbp:name | 'doctoral student'-dbo:doctoralAdvisor | 'supervised'-dbo:doctoralAdvisor","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/doctoralAdvisor> <http://dbpedia.org/resource/Mary_Ainsworth> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}" +"What are some seas inside europe ? | 'seas'-dbo:vein | 'europe'-dbo:winsInEurope"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/placeOfBirth> <http://dbpedia.org/resource/Europe> } " +"Who was the bronze medalist of Swimming at the 2008 Summer Olympics Men's 400 metre individual medley ? | 'Swimming at the 2008 Summer Olympics Men'-res:Swimming_at_the_2008_Summer_Olympics | '400 metre individual medley'-res:2010_Pan_Pacific_Swimming_Championships_–_Women's_400_metre_individual_medley"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/2008_Summer_Olympics_–_Women's_400_metre_individual_medley> <http://dbpedia.org/property/silverMedley> ?uri } " +"Whose doctoral student is etienne bieler\xc9tienne_Bi\xe9ler | 'Etienne bielerxc9tienne_bixe9ler'-res:Étienne_(film) | 'doctoral student'-dbo:doctoralStudent","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/doctoralStudent> <http://dbpedia.org/resource/Étienne_(film)> . }" +"Which engine's successor's predecessor is BMW M10? | 'BMW M10'-res:BMW_M10 | 'engine'-dbp:engine | 'successor'-dbo:successor | 'predecessor'-dbo:predecessor","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/predecessor> <http://dbpedia.org/resource/BMW_M10> . ?x <http://dbpedia.org/property/engine> ?uri . }" +"Who developed the software for the operating system of Macintosh Quadra 660AV ? | 'software'-res:Software_Publishing_Corporation | '660AV'-res:Macintosh_Quadra_660AV | 'Macintosh Quadra'-res:Macintosh_Quadra | 'developed'-dbo:developer | 'operating'-dbo:operatingSystem","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/operatingSystem> <http://dbpedia.org/resource/Macintosh_Quadra_660AV> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Software>}" +"How many other Guests are there of the television episodes whose Guests is Brian d'Arcy James ? | 'Brian d'Arcy James'-res:Brian_d'Arcy_James | 'Guests'-dbp:guests | 'Guests'-dbp:guests","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/guests> <http://dbpedia.org/resource/Brian_d'Arcy_James> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" +"Who is the writer of He's a Pirate ? | 'He's a Pirate'-res:He's_a_Pirate | 'writer'-dbo:writer"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/He's_a_Pirate> <http://dbpedia.org/ontology/writer> ?uri } " +"Which movies have their music composed by someone that signed up with RCA Records? | 'RCA Records'-res:RCA_Records | 'movies'-dbo:film | 'music'-dbo:musicFusionGenre | 'composed'-dbo:musicComposer | 'signed'-dbo:precursor","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/recordLabel> <http://dbpedia.org/resource/RCA_Records> . ?uri <http://dbpedia.org/property/musicComposer> ?x . }" +"Which philosophy journal has compiler as Stephen Law ? | 'Stephen Law'-res:Stephen_Law | 'philosophy'-res:Philosophy | 'philosophy journal'-dbo:magazine | 'compiler'-dbo:compiler","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/compiler> <http://dbpedia.org/resource/Stephen_Law> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Philosophy>}" +"Where is the fictional character from, whose last appearance was in the Avengers, 1998? | 'fictional character from,'-res:Orange_(Fictional_character) | 'Avengers, 1998'-res:The_Avengers_(1998_film) | 'appearance'-dbo:lastAppearance","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/lastAppearance> <http://dbpedia.org/resource/The_Avengers_(1998_film)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/FictionalCharacter>}" +"Which idelogy of the Palang Dharma Party is also the faith of Miao people ? | 'idelogy'-res:Ideology | 'Palang Dharma Party'-res:Palang_Dharma_Party | 'Miao'-res:Miao | 'faith'-dbo:denomination"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Palang_Dharma_Party> <http://dbpedia.org/property/ideology> ?uri . <http://dbpedia.org/resource/Miao> <http://dbpedia.org/ontology/denomination> ?uri} " +"List the movies produced by Michael Deeley ? | 'Michael Deeley'-res:Michael_Deeley | 'produced'-dbo:producer | 'movie'-dbo:Film","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/producer> <http://dbpedia.org/resource/Michael_Deeley> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" +"What is the total number of politicians whose predecessor's deputy is Jenny Macklin? | 'politicians'-res:Politicians_of_The_Wire | 'Jenny Macklin'-res:Jenny_Macklin | 'total'-dbo:populationTotal | 'predecessor'-dbo:predecessor | 'deputy'-dbo:deputy","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/predecessor> <http://dbpedia.org/resource/Jenny_Macklin> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Politician>}" +"What are the sports played by the universities who also plays taekwondo ? | 'universities'-res:Universities_Ireland | 'taekwondo'-res:Taekwondo | 'sports'-dbo:sport | 'played'-dbo:portrayer | 'plays'-dbo:plays"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Taekwondo> <http://dbpedia.org/property/athletics> ?uri } " +"Who all are buried in Arlington national cementary? | 'Arlington national cementary'-res:Arlington_National_Cemetery | 'buried'-dbp:placeofburial","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/placeofburial> <http://dbpedia.org/resource/Arlington_National_Cemetery> . }" +"How many different genres led to other genres where drums are important? | 'drums'-res:Drums_Around_the_World | 'genres'-dbo:genre | 'led'-dbo:field | 'genres'-dbo:genre","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/notableInstruments> <http://dbpedia.org/resource/Drums> . ?x <http://dbpedia.org/ontology/genre> ?uri . }" +"List all the bands which have members of the band Guy in them? | 'Guy'-res:Guy_(band) | 'members'-dbo:bandMember | 'band'-dbo:associatedBand","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/bandMember> <http://dbpedia.org/resource/Guy_(band)> . ?x <http://dbpedia.org/property/associatedBand> ?uri . }" +"Name presidents of the schools which have queen noor of Jordan as one of them ? | 'queen noor of Jordan'-res:Queen_Noor_of_Jordan | 'name presidents'-dbo:leaderName | 'schools'-dbo:ground | 'queen'-dbo:leader | 'noor'-dbo:chain","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/headquarters> <http://dbpedia.org/resource/Queen_Noor_of_Jordan> . ?x <http://dbpedia.org/property/president> ?uri . }" +"What are the television shows which are in NTSC and 5.1 surround sound? | 'NTSC'-res:NTSC | '51 surround sound'-res:Surround_sound | 'television shows'-dbo:televisionSeries","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/televisionSeries> <http://dbpedia.org/resource/NTSC> . ?uri <http://dbpedia.org/property/cinematography> <http://dbpedia.org/resource/5.1_> surround_sound . }" +"Where did the film director of Kala Pani die? | 'Kala Pani'-res:Kala_Pani_(1958_film) | 'film director'-dbo:director | 'die'-dbo:deathDate","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kala_Pani_(1958_film)> <http://dbpedia.org/ontology/director> ?x . ?x <http://dbpedia.org/property/placeOfDeath> ?uri . }" +"What are the death place of the models whose hair color was Red? | 'hair red'-res:Red_hair | 'death place'-dbp:deathPlace | 'models'-dbo:genre | 'hair color'-dbp:hairColor","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/hairColor> <http://dbpedia.org/resource/Red_hair> . ?x <http://dbpedia.org/ontology/deathPlace> ?uri . }" +"Count the different religions followed by Second Lieutenants in military. | 'Second Lieutenants'-res:Per_Second,_Per_Second,_Per_Second..._Every_Second | 'count'-dbo:type | 'religions'-dbo:religion | 'military'-dbo:militaryUnitSize","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/militaryUnit> <http://dbpedia.org/resource/Second_Lieutenants> . ?x <http://dbpedia.org/property/religion> ?uri . }" +"What railway lines go through the stations maintained by Western Australian Public Transport Authority? | 'Western Australian Public Transport Authority'-res:Public_Transport_Authority_(Western_Australia) | 'railway lines'-dbo:lyrics | 'stations'-dbo:numberOfStations | 'maintained'-dbo:maintainedBy","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/maintainedBy> <http://dbpedia.org/resource/Public_Transport_Authority_(Western_Australia)> . ?x <http://dbpedia.org/property/railway> lines ?uri . }" +"How many publisher have been founded by american citizens? | 'publisher'-dbo:publisher | 'founded'-dbo:foundationPlace | 'american citizens'-dbo:country","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/nationality> <http://dbpedia.org/resource/American_citizens> . ?uri <http://dbpedia.org/property/publisher> ?x . }" +"How many countries surround the sea into which the Upper Neratva flow? | 'countries'-res:Countries_of_the_United_Kingdom | 'Upper Neratva'-res:Iveagh_Upper,_Upper_Half | 'surround'-dbo:background | 'sea'-dbo:elevation | 'flow'-dbp:time","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/inflow> <http://dbpedia.org/resource/Upper_Half> . ?x <http://dbpedia.org/property/cities> ?uri . }" +"List some things that Swedish people have become famous for? | 'Swedish'-res:Sweden | 'Swedish'-res:Swedish | 'famous'-dbo:established | ''-dbo:country | ''-dbo:country","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/nationality> <http://dbpedia.org/resource/Swedish> . ?uri <http://dbpedia.org/property/notableInArea> ?x . }" +"How many artists' works are in Muse d'Orsay? | 'Muse d'-res:Muse_discography | 'artists'-dbo:artist | 'works'-dbo:language","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/artist> <http://dbpedia.org/resource/Muse_discography> . ?uri <http://dbpedia.org/property/artist> ?x . }" +"What sporting goods companies are located in Herzogenaurach? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'Herzogenaurach'-res:Herzogenaurach | 'located'-dbo:location","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/location> <http://dbpedia.org/resource/Herzogenaurach> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}" +"How many awards have been given to the participants of the Lawrence Realization Stakes? | 'Lawrence Realization Stakes'-res:Lawrence_Realization_Stakes | 'awards'-dbo:award | 'participants'-dbo:participant","SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Lawrence_Realization_Stakes> <http://dbpedia.org/property/race> ?x . ?x <http://dbpedia.org/ontology/award> ?uri . }" +"List the work edited by Mark Stevens and directed by Joel Schumacher? | 'Mark Stevens'-res:Mark_Stevens | 'Joel Schumacher'-res:Joel_Schumacher | 'work'-dbo:title | 'edited'-dbo:editor | 'directed'-dbo:president","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/editing> <http://dbpedia.org/resource/Mark_Stevens> . ?uri <http://dbpedia.org/property/director> <http://dbpedia.org/resource/Joel_Schumacher> . }" +"List the popular works of the author of Luther: The Calling ? | 'Luther: The Calling'-res:Luther:_The_Calling | 'popular works'-dbo:established | 'author'-dbo:author","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/author> <http://dbpedia.org/resource/Luther:_The_Calling> . ?x <http://dbpedia.org/ontology/author> ?uri . }" +"Which were the philosophers whose primary interest was Natural philosophy? | 'Philosophers'-res:Philosophers_Ridge | 'Natural philosophy'-res:Natural_philosophy | 'interest'-dbp:mainInterests | 'philosopher'-dbo:Philosopher","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/mainInterests> <http://dbpedia.org/resource/Natural_philosophy> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Philosopher>}" +"What is the total number of other restingplace of the politicians whose one of the restingplace is East Norwalk Historical Cemetery? | 'politicians'-res:Politicians_of_The_Wire | 'East Norwalk Historical Cemetery'-res:East_Norwalk_Historical_Cemetery | 'total'-dbo:populationTotal | 'restingplace'-dbo:restingPlace | 'restingplace'-dbo:restingPlace"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/OfficeHolder>}" +"How many albums were released under the Victor Entertainment label? | 'Victor Entertainment label'-res:Victor_Entertainment | 'label'-dbp:label | 'album'-dbo:Album","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Victor_Entertainment> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Album>}" +"How many saints have been venerated in Judaism? | 'Judaism'-res:Judaism | 'venerated in'-dbo:veneratedIn | 'saint'-dbo:Saint","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/veneratedIn> <http://dbpedia.org/resource/Judaism> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Saint>}" +"How many people are famous for the Gibson Les Paul? | 'Gibson Les Paul'-res:Gibson_Les_Paul | 'famous'-dbo:established","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/notableWork> <http://dbpedia.org/resource/Gibson_Les_Paul> . }" +"What are the mammals whose phylum is Chordate? | 'mammals'-res:Mammals_of_the_Indiana_Dunes | 'Chordate'-res:Chordate | 'phylum'-dbo:phylum","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/phylum> <http://dbpedia.org/resource/Chordate> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Mammal>}" +"Who are the associated musical artist of Carolyn Dennis? | 'associated musical artist'-res:Ayala_(musical_artist) | 'Carolyn Dennis'-res:Carolyn_Dennis | 'associated musical artist'-dbo:associatedMusicalArtist","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/associatedMusicalArtist> <http://dbpedia.org/resource/Carolyn_Dennis> . }" +"Count all those who've played for the youth club which owns the Rosario, Santa Fe stadium. | 'Rosario, Santa Fe stadium'-res:Santa_Fé,_Paraná | 'count'-dbo:country | 'played'-dbo:portrayer | 'youth club'-dbo:time | 'owns'-dbo:languageFamily","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/ground> <http://dbpedia.org/resource/Rosario> . ?uri <http://dbpedia.org/property/youthclubs> ?x . }" +"What are the television shows whose company is Playtone? | 'Playtone'-res:Playtone | 'company'-dbo:company | 'television show'-dbo:TelevisionShow","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/company> <http://dbpedia.org/resource/Playtone> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" +"Whose tomb is in cities under Dane County of Wisconsin? | 'Dane County of Wisconsin'-res:Dane_County,_Wisconsin | 'tomb'-dbo:race | 'cities'-dbo:country | ''-dbo:country","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/county> <http://dbpedia.org/resource/Wisconsin> . ?x <http://dbpedia.org/property/restingplace> ?uri . }" +"Count the different number of academic areas covered by publications of SAGE? | 'SAGE'-res:Sage_Business_Solutions | 'count'-dbo:type | 'academic'-dbo:abstract | 'covered'-dbo:frozen | 'publications'-dbp:publications"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/publications> <http://dbpedia.org/resource/SAGE> . ?x <http://dbpedia.org/ontology/academicArea> ?uri }" +"What is the style of architecture of Pontiac Building ? | 'Pontiac Building'-res:Pontiac_Building | 'style'-dbo:type | 'architecture'-dbo:architecturalStyle"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pontiac_Building> <http://dbpedia.org/property/architecturalStyle> ?uri } " +"Which basketball players have played in the league of National Basketball Association? | 'basketball players'-res:Players | 'National Basketball Association'-res:National_Basketball_Association | 'league'-dbo:league | 'basketball player'-dbo:BasketballPlayer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/league> <http://dbpedia.org/resource/National_Basketball_Association> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/BasketballPlayer>}" +"Who were the opponents of the people buried in the tower of London? | 'London'-res:London | 'opponents'-dbo:rival | 'buried'-dbo:flag | 'tower'-dbp:column","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/restingPlace> <http://dbpedia.org/resource/London> . ?x <http://dbpedia.org/ontology/opponent> ?uri . }" +"What are the nearest city to the historic places whose one of the nearest city is Wisconsin? | 'historic places'-res:Heritage_New_Zealand | 'Wisconsin'-res:Wisconsin | 'nearest city'-dbo:nearestCity | 'nearest city'-dbo:nearestCity","SELECT DISTINCT ?uri WHERE { ?x . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/HistoricPlace>}" +"Who is the producer of Captain EO ? | 'Captain EO'-res:Captain_EO | 'producer'-dbo:producer"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Captain_EO> <http://dbpedia.org/ontology/producer> ?uri } " +"Where did the aristocrats die whose mother was Maria Ludwika Krasiska? | 'aristocrats'-res:Aristocrats_(TV_series) | 'Maria Ludwika Krasiska'-res:Maria_Ludwika_Krasińska | 'die'-dbo:deathDate | 'mother'-dbo:parent","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/mother> <http://dbpedia.org/resource/Maria_Ludwika_Krasińska> . ?x <http://dbpedia.org/property/deathPlace> ?uri . }" +"List the books whose authors are in Alcal de Henares. | 'Alcal de Henares'-res:Alcalá_de_Henares_Cathedral | 'books'-dbo:volume | 'authors'-dbo:parent","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/parent> <http://dbpedia.org/resource/Alcalá_de_Henares_Cathedral> . ?x <http://dbpedia.org/property/author> ?uri . }" +"Who is the stockholder of Paphos International Airport ? | 'Stockholder of Paphos International Airport'-res:Paphos_International_Airport | 'stockholder'-dbp:owner"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Paphos_International_Airport> <http://dbpedia.org/property/owner> ?uri } " +"What awards have been given to some screenwriters? | 'screenwriters'-res:Screenwriter | 'awards'-dbo:award","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/occupation> <http://dbpedia.org/resource/Screenwriter> . ?x <http://dbpedia.org/ontology/award> ?uri . }" +"List the saints venerated in Islam having major shrine as Tomb of Joshua ? | 'Islam'-res:Islam | 'Tomb of Joshua'-res:Tomb_of_Joshua | 'saints'-dbo:saint | 'venerated'-dbo:veneratedIn | 'major shrine'-dbo:majorShrine","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/veneratedIn> <http://dbpedia.org/resource/Joshua> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Saint>}" +"For which team does Ramiro Pea play ? | 'Ramiro Pea'-res:Ramiro_Peña | 'team'-dbo:team | 'play'-dbo:team"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ramiro_Peña> <http://dbpedia.org/ontology/team> ?uri } " +"How many subjects have been covered in fantasy novels? | 'fantasy novels'-res:Fantasy | 'subjects'-dbp:subject | 'covered'-dbo:frozen","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/literaryGenre> <http://dbpedia.org/resource/Fantasy> . ?x <http://dbpedia.org/ontology/subject> ?uri . }" +"Which country did the prime minister belong to who was served by Thanong Bidaya ? | 'Thanong Bidaya'-res:Thanong_Bidaya | 'minister prime'-dbp:primeminister | 'country'-dbo:nationality"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Thanong_Bidaya> <http://dbpedia.org/property/primeminister> ?uri } " +"tell me the school to which Cyril Hume went? | 'Cyril Hume'-res:Cyril_Hume | 'school'-dbo:school"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cyril_Hume> <http://dbpedia.org/ontology/school> ?uri } " +"Who is the singer of the album which has a song Me and My arrow ? | 'song Me'-res:Me_&_U_(song) | 'My arrow'-res:Me_And_My_Arrow | 'singer'-dbo:composer | 'album'-dbo:album","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Me_&_U_(song)> <http://dbpedia.org/ontology/album> ?x . ?x <http://dbpedia.org/property/artist> ?uri . }" +"In how many different places can I fnd Modern Architectural buildings? | 'I'-res:I | 'Modern Architectural buildings'-res:Architectural_Digest | 'places'-dbp:height | 'fnd'-dbo:destination","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/architectural_Digest> . ?x <http://dbpedia.org/ontology/destination> ?uri . }" +"What are the houses of Parliament Security Services ? | 'Parliament Security Services'-res:Parliament_Security_Services | 'houses'-dbp:houses"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Parliament_Security_Services> <http://dbpedia.org/property/houses> ?uri } " +"Count the number of people became famous for when Andrew Jackson was a commander ? | 'Andrew Jackson'-res:Andrew_Jackson | 'count'-dbo:country | 'famous'-dbp:established | 'commander'-dbo:commander","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/commander> <http://dbpedia.org/resource/Andrew_Jackson> . ?uri <http://dbpedia.org/property/nationality> ?x . }" +"During the reigns of which monarchs was the name to the Israelite kingdom as United Monarch? | 'Israelite kingdom as United Monarch'-res:Agudat_Yisrael | 'reigns'-dbp:reign | 'monarchs'-dbo:leader | 'name'-dbp:name","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/kingdom> <http://dbpedia.org/resource/Israel> . ?x <http://dbpedia.org/property/reign> ?uri . }" +"Which nation is the origin of Dornier Aerodyne ? | 'Dornier Aerodyne'-res:Dornier_Aerodyne | 'nation'-dbo:country | 'origin'-dbo:origin","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dornier_Aerodyne> <http://dbpedia.org/ontology/origin> ?x . ?x <http://dbpedia.org/property/country> ?uri . }" +"Who is the artist of the album which has the song I Can't Change the World ? | 'I Can't Change the World'-res:I_Can't_Change_the_World | 'artist'-dbo:artist | 'album'-dbo:album | 'Change'-dbo:fate","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/I_Can't_Change_the_World> <http://dbpedia.org/property/album> ?x . ?x <http://dbpedia.org/ontology/artist> ?uri . }" +"Collaborators of Demis Roussos have composed music for which movies? | 'Demis Roussos'-res:Demis_Roussos | 'collaborators'-dbo:associate | 'composed'-dbo:musicComposer | 'music'-dbo:musicalBand | 'movies'-dbo:film","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Demis_Roussos> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" +"In how many places are the tombs of everyone who died in England? | 'tombs'-res:Tombs_of_the_Blind_Dead | 'England'-res:England | 'places'-dbo:place | 'died'-dbp:deathPlace","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/placeOfDeath> <http://dbpedia.org/resource/England> . ?x <http://dbpedia.org/ontology/place> ?uri . }" +"Where did the people beatified by Pope Pius X die? | 'X'-res:X | 'Pope Pius'-res:Pope_Pius_X | 'beatified'-dbp:beatifiedBy | 'die'-dbo:deathDate","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/beatifiedBy> <http://dbpedia.org/resource/Pope_Pius_X> . ?x <http://dbpedia.org/ontology/placeOfDeath> ?uri . }" +"Name all the venues of the convention which has also been hosted in San Diego Convention ? | 'San Diego Convention'-res:San_Diego_Convention_Center | 'venue'-dbp:venue | 'venue'-dbp:venue","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/venue> <http://dbpedia.org/resource/San_Diego_Convention_Center> . ?x <http://dbpedia.org/property/venue> ?uri . }" +"How many famous people are from the Filipinos? | 'Filipinos'-res:Filipinos | 'famous'-dbo:established","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/nationality> <http://dbpedia.org/resource/Filipinos> . }" +"Who was the parent of person whose child is William C P breckinridge? | 'C'-res:Chess_Communication | 'William P breckinridge'-res:William_Campbell_Preston_Breckinridge | 'P'-res:P | 'William C breckinridge'-res:John_C._Breckinridge | 'parent'-dbo:parent | 'person'-dbo:child | 'child'-dbo:child","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/child> <http://dbpedia.org/resource/William_C._Breckinridge> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}" +"Count the religions followed by people living in British Columbia. | 'British Columbia'-res:United_Kingdom | 'British Columbia'-res:British_Columbia | 'count'-dbo:country | 'religions'-dbo:religion | 'living'-dbo:person | ''-dbo:country","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/placeOfBirth> <http://dbpedia.org/resource/British_Columbia> . ?x <http://dbpedia.org/ontology/religion> ?uri . }" +"What is the meaning of Heydar ? | 'Heydar'-res:Heydar | 'meaning'-dbo:meaning"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Heydar> <http://dbpedia.org/ontology/meaning> ?uri } " +"On how many different grounds were seasons chaired by Ronaldo held? | 'Ronaldo'-res:Ronaldo | 'chaired'-dbo:chairman | 'grounds'-dbo:ground","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/chairman> <http://dbpedia.org/resource/Ronaldo> . ?x <http://dbpedia.org/property/ground> ?uri . }" +"Give me a count of all ice hockey players whose teams are headcoached by John Tortorella? | 'ice hockey players'-res:Ice_hockey | 'John Tortorella'-res:John_Tortorella | 'count'-dbo:country | 'teams'-dbp:team | 'headcoached'-dbp:headCoaches","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/team> <http://dbpedia.org/resource/John_Tortorella> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/IceHockeyPlayer>}" +"What is the common palce of study for jack McGregor and Philip W. Pillsbury ? | 'jack McGregor'-res:Jack_McGregor | 'W'-res:W | 'Philip Pillsbury'-res:Emma_Pillsbury | 'common palce'-dbo:genre | 'study'-dbp:studio"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jack_McGregor> <http://dbpedia.org/ontology/study> ?uri . <http://dbpedia.org/resource/Philip_Pillsbury> <http://dbpedia.org/property/studio> ?uri} " +"What team did the players start their careers with, who right now play for Fleisher Yarn? | 'Fleisher Yarn'-res:Fleisher_Yarn | 'team'-dbo:team | 'players'-dbo:combatant | 'start'-dbo:head | 'careers with,'-dbo:award | 'play'-dbo:team","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/formerTeam> <http://dbpedia.org/resource/Fleisher_Yarn> . ?x <http://dbpedia.org/property/debutteam> ?uri . }" +"Which kind of buildings are found in England? | 'England'-res:England | 'buildings'-dbo:assembly","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/locationCountry> <http://dbpedia.org/resource/England> . ?x <http://dbpedia.org/property/building> ?uri . }" +"Give me the count of all people who ascented a peak in California? | 'California'-res:California | 'count'-dbo:country | 'ascented'-dbo:established | 'peak'-dbo:language","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/locatedInArea> <http://dbpedia.org/resource/California> . ?x <http://dbpedia.org/property/mountain> ?uri . }" +"Joe Shuster has created how many comics character ? | 'joe Shuster'-res:Joe_Shuster | 'created'-dbp:creators | 'comics character'-dbo:ComicsCharacter","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/creators> <http://dbpedia.org/resource/Joe_Shuster> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/ComicsCharacter>}" +"Which awards did the writer of Persona win ? | 'Persona'-res:Persona_(1966_film) | 'writer'-dbo:writer | 'awards'-dbp:awards","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Persona_(1966_film)> <http://dbpedia.org/ontology/writer> ?x . ?x <http://dbpedia.org/property/awards> ?uri . }" +"What is the highschool of the american football player who joined the Robert Morris Colonials program? | 'Robert Morris Colonials'-res:Robert_Morris_Colonials_football | 'highschool'-dbo:highschool | 'joined'-dbo:thumbnail","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/highschool> <http://dbpedia.org/resource/Robert_Morris_Colonials_football> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/AmericanFootballPlayer>}" +"How many awards have graduates from the University of Queensland earned? | 'University of Queensland'-res:University_of_Queensland | 'graduates'-dbo:almaMater | 'awards'-dbp:awards","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/training> <http://dbpedia.org/resource/University_of_Queensland> . ?x <http://dbpedia.org/property/awards> ?uri . }" +"In how many nations does Rhaetian Railways own train stations? | 'Rhaetian Railways'-res:Western_Rhaetian_Alps | 'nations'-dbo:state | 'train stations'-dbo:chain","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/type> <http://dbpedia.org/resource/Rhaetian_Alps> . ?x <http://dbpedia.org/ontology/country> ?uri . }" +"Which board game can be said as a mind based game? | 'board game'-dbo:house | 'mind'-dbo:head | 'based'-dbo:relative | 'game'-dbo:event","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/genre> <http://dbpedia.org/resource/Mind_based_games> . ?x <http://dbpedia.org/ontology/boardGame> ?uri . }" +"What are the things built by Eristoff ? | 'Eristoff'-res:Eristoff | 'built by'-dbo:manufacturer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/manufacturer> <http://dbpedia.org/resource/Eristoff> . }" +"Whcih land of Citi Trends is also the constituency of Malik Al-Hassan Yakubu ? | 'Citi Trends'-res:Citi_Trends | 'Malik Al-Hassan Yakubu'-res:Malik_Al-Hassan_Yakubu | 'whcih land'-dbo:country | 'constituency'-dbp:constituency"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Citi_Trends> <http://dbpedia.org/ontology/country> ?uri . <http://dbpedia.org/resource/Malik_Al-Hassan_Yakubu> <http://dbpedia.org/property/constituency> ?uri} " +"What is the former team of the american football players whose position is Running back? | 'Running back'-res:Running_back | 'former team'-dbo:formerTeam | 'position'-dbo:position | 'Running'-dbo:government","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/position> <http://dbpedia.org/resource/Running_back> . ?x <http://dbpedia.org/ontology/formerTeam> ?uri . }" +"How many different kinds of games are published by Interplay Entertainment? | 'Interplay Entertainment'-res:Interplay_Entertainment | 'kinds'-dbo:genre | 'games'-dbo:games | 'published'-dbo:publisher","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/publisher> <http://dbpedia.org/resource/Interplay_Entertainment> . ?x <http://dbpedia.org/property/genre> ?uri . }" +"What other awards have been given to Goya Award Winners? | 'Goya Award'-res:Goya_Awards | 'awards'-dbo:award | 'awards'-dbp:awards"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Goya_Awards> <http://dbpedia.org/property/awards> ?uri } " +"Race horses whose grandsire is Wild Risk have taken part in which races? | 'Wild Risk'-res:The_Wild | 'race horses'-dbo:type | 'grandsire'-dbo:grandsire | 'races'-dbo:races","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/grandsire> <http://dbpedia.org/resource/The_Wild> . ?x <http://dbpedia.org/property/race> ?uri . }" +"List the science fiction shows broadcasted on BBC HD ? | 'science fiction'-res:Science_fiction | 'BBC HD'-res:BBC_HD | 'science fiction'-dbo:nonFictionSubject | 'shows'-dbo:place | 'broadcasted'-dbp:broadcaster","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/broadcaster> <http://dbpedia.org/resource/BBC_HD> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/ScienceShow>}" +"Who is the person opposed by Tom McLaury and Ike Clanton? | 'Tom McLaury'-res:Tom_McLaury | 'Ike Clanton'-res:Ike_Clanton | 'person'-dbo:type | 'opposed'-dbo:opponent","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/opponent> <http://dbpedia.org/resource/Tom_McLaury> . ?uri <http://dbpedia.org/ontology/person> <http://dbpedia.org/resource/Ike_Clanton> . }" +"What are the bridges whose located in California? | 'California'-res:California | 'located'-dbo:locatedInArea","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/locatedInArea> <http://dbpedia.org/resource/California> . ?x <http://dbpedia.org/property/crosses> ?uri . }" +"What is the largest city of the birthplace of Pat Kirkwood? | 'Pat Kirkwood'-res:Pat_Kirkwood_(racing_driver) | 'birthplace'-dbp:birthplace | 'largest city'-dbo:largestCity","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pat_Kirkwood_(racing_driver)> <http://dbpedia.org/property/birthplace> ?x . ?x <http://dbpedia.org/ontology/largestCity> ?uri . }" +"Who are some basketball players who played for Phoenix Suns? | 'basketball players'-res:National_Basketball_Players_Association | 'Phoenix Suns'-res:Phoenix_Suns | 'played for'-dbo:team | 'basketball player'-dbo:BasketballPlayer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/team> <http://dbpedia.org/resource/Phoenix_Suns> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/BasketballPlayer>}" +"Who is the licensee of EXXV-TV ? | 'EXXV-TV'-res:EXXV-TV | 'licensee'-dbo:licensee"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/EXXV-TV> <http://dbpedia.org/ontology/licensee> ?uri } " +"Who are in the board of Jimmy Wales ? | 'Jimmy Wales'-res:Jimmy_Wales | 'board'-dbo:board"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jimmy_Wales> <http://dbpedia.org/ontology/board> ?uri } " +"Where were some people associated with Steve Winwood employed at? | 'Steve Winwood'-res:Steve_Winwood | 'associated'-dbo:associatedBand | 'employed'-dbp:about","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/associatedBand> <http://dbpedia.org/resource/Steve_Winwood> . }" +"What is the origin of the musical artist whose associated band is Ziggi Recado ? | 'Ziggi Recado'-res:Ziggi_Recado | 'origin'-dbo:origin | 'musical artist'-dbo:artist | 'associated'-dbo:associatedBand | 'band'-dbo:band","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/associatedBand> <http://dbpedia.org/resource/Ziggi_Recado> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MusicalArtist>}" +"List the major shrines of Jovan Vladimir? | 'Jovan Vladimir'-res:Jovan_Vladimir | 'major shrines'-dbp:majorShrine"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jovan_Vladimir> <http://dbpedia.org/property/majorShrine> ?uri } " +"In which countries have the Start + Flug aircrafts originated? | 'Start + Flug'-res:Start_+_Flug | 'originated'-dbo:engineer","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/engineer> <http://dbpedia.org/resource/Start_+_Flug> . ?x <http://dbpedia.org/property/origin> ?uri . }" +"How many other family of the mammals exists whose family is also Hominidae ? | 'mammals'-res:Mammals_of_the_Indiana_Dunes | 'Hominidae'-res:Hominidae | 'family'-dbo:family | 'exists'-dbo:date | 'family'-dbo:family"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/family> <http://dbpedia.org/resource/Hominidae> . ?x <http://dbpedia.org/property/family> ?uri }" +"What is the former team of the football player who is the coach of 2006 Oakland Raiders season ? | '2006 Oakland Raiders season'-res:2006_Oakland_Raiders_season | 'former team'-dbo:formerTeam | 'football player'-dbo:coach | 'coach'-dbo:coach","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/coach> <http://dbpedia.org/resource/2006_Oakland_Raiders_season> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/FootballPlayer>}" +"How many other important things has the painter of Sarah Jane Adventures done? | 'Sarah Jane Adventures'-res:The_Sarah_Jane_Adventures_Collection | 'painter'-dbo:painter","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/painter> <http://dbpedia.org/resource/The_Sarah_Jane_Adventures_Collection> . ?x <http://dbpedia.org/property/importantThings> ?uri . }" +"What is the label of I Pray on Christmas ? | 'I Pray on Christmas'-res:I_Pray_on_Christmas | 'label'-dbp:label | 'Pray'-dbo:battle"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/I_Pray_on_Christmas> <http://dbpedia.org/property/label> ?uri } " +"The Other Side has hosted how many guests? | 'The Other Side'-res:The_Other_Side_(The_Outer_Limits) | 'guests'-dbp:guests","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/guests> <http://dbpedia.org/resource/The_Other_Side_(The_Outer_Limits)> . }" +"What are the airlines whose hub airport is Los Angeles International Airport? | 'Los Angeles International Airport'-res:Los_Angeles_International_Airport | 'hub airport'-dbo:hubAirport | 'airline'-dbo:Airline"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/hubAirport> <http://dbpedia.org/resource/Los_Angeles_International_Airport> } " +"List all the line of Vadodara Junction railway station? | 'Vadodara Junction railway station'-res:Vadodara_Junction_railway_station | 'line'-dbp:line"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Vadodara_Junction_railway_station> <http://dbpedia.org/property/line> ?uri } " +"Name the college of Jon Curran ? | 'Jon Curran'-res:Jon_Curran | 'name'-dbp:name | 'college'-dbo:college"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jon_Curran> <http://dbpedia.org/ontology/college> ?uri } " +"Who produces the tv series which made Scott Haran famous? | 'Scott Haran'-res:Scott_Haran | 'produces'-dbp:producer | 'series'-dbo:series","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/notableworks> <http://dbpedia.org/resource/Scott_Haran> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" +"What is the place of birth of the jockey who breeded De La Rose ? | 'De La Rose'-res:De_La_Rose | 'place'-dbo:place | 'birth'-dbo:birthPlace | 'jockey'-dbo:jockey | 'breeded'-dbo:breeder","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/breeder> <http://dbpedia.org/resource/De_La_Rose> . ?x <http://dbpedia.org/ontology/birthPlace> ?uri . }" +"Name the Artist of Madagascar: Operation Penguin ? | 'Operation Penguin'-res:Madagascar:_Operation_Penguin | 'Artist'-dbp:artist"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Madagascar:_Operation_Penguin> <http://dbpedia.org/property/artist> ?uri } " +"How many other wine region are there of the grapes whose one of the wine region is Michigan ? | 'Michigan'-res:Michigan | 'wine region'-dbo:wineRegion | 'wine region'-dbo:wineRegion"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/wineRegion> <http://dbpedia.org/resource/Michigan> . ?x wineRegion ?uri }" +"Estimate the number of sports divisions at the universities under international association of universities. | 'universities'-res:Universities_Ireland | 'universities'-res:Universities_Ireland | 'estimate'-dbp:quote | 'sports divisions'-dbo:athletics | 'international association'-dbo:order"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/athletics> <http://dbpedia.org/resource/International_Athletics> . ?x <http://dbpedia.org/ontology/university> ?uri }" +"List the battles in which alumni of US Army Command and General Staff College fought? | 'US'-res:United_States | 'Army Command'-res:Army_Contracting_Command | 'General Staff College'-res:Staff_college | 'battles'-dbo:battle | 'alumni'-dbo:alumni | 'fought'-dbo:type","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/branch> <http://dbpedia.org/resource/United_States_Army_Contracting_Command> . ?x <http://dbpedia.org/ontology/battle> ?uri . }" +"Name the subsidary of Tandem Computers which was founded by Jim Harris ? | 'Tandem Computers'-res:Tandem_Computers | 'Jim Harris'-res:Jim_Harris | 'name'-dbo:name | 'subsidary'-dbo:subsidiary | 'founded'-dbp:founder"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Tandem_Computers> <http://dbpedia.org/property/founder> ?uri . <http://dbpedia.org/resource/Jim_Harris> <http://dbpedia.org/ontology/subsidiary> ?uri} " +"Count all the books written by an author buried in the Convent of Barefoot Trinitarians? | 'Convent of Barefoot Trinitarians'-res:The_Convent_(film) | 'count'-dbo:type | 'books'-dbo:volume | 'written'-dbo:writer | 'author'-dbo:author | 'buried'-dbo:genre","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/restingPlace> <http://dbpedia.org/resource/The_Convent_(film)> . ?uri <http://dbpedia.org/property/author> ?x . }" +"What are the things whose leader was a monarch of Willem-Alexander of the Netherlands? | 'Willem-Alexander of the Netherlands monarch'-res:Willem-Alexander_of_the_Netherlands | 'monarch'-dbo:monarch | 'leader'-dbo:leader","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/monarch> <http://dbpedia.org/resource/Willem-Alexander_of_the_Netherlands> . ?uri <http://dbpedia.org/property/leader> ?x . }" +"Which cities are located around the sea into which the ionian flows? | 'Ionian'-res:Ionian_Sea | 'cities'-dbo:country | 'located'-dbo:place | 'sea'-dbo:elevation | 'flows'-dbo:outflow"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ionian_Sea> <http://dbpedia.org/property/inflow> ?uri } " +"Give me a count of mammals which have their order as Primate? | 'mammals'-res:Mammals_of_the_Indiana_Dunes | 'Primate'-res:Primate | 'order'-dbo:order | 'mammal'-dbo:Mammal","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/order> <http://dbpedia.org/resource/Primate> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Mammal>}" +"What are some other children of the father of Marvin Bush? | 'Marvin Bush'-res:Marvin_Bush | 'children'-dbo:child | 'children'-dbp:children","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/child> <http://dbpedia.org/resource/Marvin_Bush> . ?x <http://dbpedia.org/property/children> ?uri . }" +"Which is the nearest city to Elliott Bay ? | 'Elliott Bay'-res:Elliott_Bay | 'nearest city'-dbo:nearestCity"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Elliott_Bay> <http://dbpedia.org/ontology/nearestCity> ?uri } " +"Who is the manager of the club whose homeground is the riverside stadium? | 'riverside stadium'-res:Riverside_Stadium | 'manager'-dbo:manager | 'club'-dbo:club | 'riverside stadium'-dbo:stadium","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/ground> <http://dbpedia.org/resource/Riverside_Stadium> . ?x <http://dbpedia.org/property/manager> ?uri . }" +"What is the rank of Julius C. Burrows politically? | 'C'-res:C | 'Julius Burrows politically'-res:Julius_C._Burrows | 'rank'-dbo:order"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Julius_C._Burrows> <http://dbpedia.org/property/order> ?uri } " +"Count the number of first drivers in all the GPs where Mika Hakkinen was a first driver? | 'Mika Hakkinen'-res:Mika_Häkkinen | 'count'-dbo:number | 'drivers'-dbo:operator | 'driver'-dbp:operator"," SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Mika_Häkkinen> <http://dbpedia.org/property/firstDriver> ?uri } " +"Give me a count of everything under the archipelago, where Papeete is the biggest town. | 'Papeete'-res:Papeete | 'count'-dbo:country | 'archipelago,'-dbo:archipelago | 'biggest town'-dbo:place","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/archipelago> <http://dbpedia.org/resource/Papeete> . }" +"Who all have developed a cross platform software? | 'cross platform software'-res:Cross-platform | 'developed'-dbo:developer","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/cross-platform> <http://dbpedia.org/resource/Cross-platform> . ?x <http://dbpedia.org/ontology/developer> ?uri . }" +"Which country's people work in the Birdman enterprises? | 'Birdman enterprises'-res:Birdman_Enterprises | 'country'-dbo:country | 'work'-dbo:title","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/employer> <http://dbpedia.org/resource/Birdman_Enterprises> . ?x <http://dbpedia.org/property/country> ?uri . }" +"Where is Oskar Blues located ? | 'Oskar Blues'-res:Oskar_Blues_Brewery | 'located'-dbo:location"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Oskar_Blues_Brewery> <http://dbpedia.org/ontology/location> ?uri } " +"Who won the Lovelace Medal and the Norbert Wiener Award for Social and Professional Responsibility? | 'Lovelace Medal'-res:Lovelace_Medal | 'Norbert Wiener Award for Social'-res:Norbert_Wiener | 'Professional Responsibility'-res:Professional_responsibility | 'won'-dbo:award","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lovelace_Medal> <http://dbpedia.org/property/awards> ?uri . <http://dbpedia.org/resource/Norbert_Wiener> <http://dbpedia.org/ontology/award> ?uri . }" +"In which province was Dick Redding born? | 'Dick Redding'-res:Jheri_Redding | 'born'-dbo:birthDate"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dick_Redding> <http://dbpedia.org/ontology/birthPlace> ?uri } " +"Count the number of characters of the play whose one of the character is Catwoman ? | 'Catwoman'-res:Catwoman | 'characters'-dbp:characters | 'characters'-dbp:characters"," SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/characters> <http://dbpedia.org/resource/Catwoman> } " +"What are the movies whose musicians's home town is Volos? | 'musicians'-res:Musicians_Institute | 'home town'-res:Home_Town_(song) | 'Volos'-res:Volos | 'movies'-dbo:film","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/hometown> <http://dbpedia.org/resource/Volos> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" +"Give me a count of the services by the company which provides Data center as the services ? | 'Data center'-res:Data_center | 'count'-dbo:type | 'services'-dbo:service | 'company'-dbo:company | 'services'-dbo:service"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/services> <http://dbpedia.org/resource/Data_center> . ?x <http://dbpedia.org/ontology/service> ?uri }" +"Scientists at the University of Queensland have won which awards? | 'scientists'-res:Scientists_for_Global_Responsibility | 'University of Queensland'-res:University_of_Queensland | 'won'-dbo:city | 'awards'-dbo:endowment","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/fields> <http://dbpedia.org/resource/University_of_Queensland> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}" +"Where is the south shore plaza located? | 'south shore plaza'-res:South_Shore_Plaza | 'located'-dbo:address"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/South_Shore_Plaza> <http://dbpedia.org/ontology/address> ?uri } " +"Waddy wachtel did the music for what movies? | 'Waddy wachtel'-res:Waddy_Wachtel | 'music'-dbp:music | 'movie'-dbo:Film","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Waddy_Wachtel> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" +"Who is the musical artist worked for labels Celluloid Records and Victor Entertainment? | 'labels Celluloid Records'-res:Celluloid_Heroes | 'Victor Entertainment'-res:Victor_Entertainment | 'musical artist'-dbo:associatedMusicalArtist | 'worked'-dbo:operator","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Celluloid_Heroes> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MusicalArtist>}" +"Terry Pratchett has written about how many topics? | 'Terry pratchett'-res:Terry_Pratchett | 'topics'-res:Topics_in_Early_Childhood_Special_Education | 'written'-dbo:writer","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/writer> <http://dbpedia.org/resource/Terry_Pratchett> . }" +"Who are the former partners of the figure skaters whose performance have been choreographed by Catarina Lindgren in the past? | 'Catarina Lindgren'-res:Catarina_Lindgren | 'former partners'-dbo:formerName | 'figure skaters'-dbo:flag | 'performance'-dbo:production | 'choreographed'-dbo:choreographer","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/choreographer> <http://dbpedia.org/resource/Catarina_Lindgren> . ?x <http://dbpedia.org/ontology/formerPartner> ?uri . }" +"who are all the people who have managed the England's under 20 soccer team? | 'the England's under 20 soccer team'-res:England_national_under-20_football_team | 'managed'-dbo:managerClub","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/managerClub> <http://dbpedia.org/resource/England_national_under-20_football_team> . }" +"Give me the total number of Guests of the television episodes whose one of the Guests is Michael Cristofer? | 'Guests'-res:Guests_of_the_Nation | 'Guests'-res:Guests_of_the_Nation | 'Michael Cristofer'-res:Michael_Cristofer | 'Guests'-dbp:guests | 'Guests'-dbp:guests","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/guests> <http://dbpedia.org/resource/Michael_Cristofer> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" +"who was the president under which Joe Purcell is a lieutenant? | 'Joe Purcell'-res:Joe_Purcell | 'president'-dbo:president | 'lieutenant'-dbo:lieutenant","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/lieutenant> <http://dbpedia.org/resource/Joe_Purcell> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/President>}" +"What are the veneration of the one for which there's a major shrine in Hebron? | 'Hebron'-res:Hebron | 'veneration'-dbo:time | 'major shrine'-dbo:majorShrine","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/majorShrine> <http://dbpedia.org/resource/Hebron> . ?x <http://dbpedia.org/property/veneratedIn> ?uri . }" +"Who is the chancellor of the university which affiliates the Dartington College of Arts? | 'Dartington College of Arts'-res:Dartington_College_of_Arts | 'chancellor'-dbo:chancellor | 'affiliates'-dbo:riverBranch","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dartington_College_of_Arts> <http://dbpedia.org/property/affiliates> ?x . ?x <http://dbpedia.org/ontology/chancellor> ?uri . }" +"What is the nationality of Sune Agerschou ? | 'Sune Agerschou'-res:Sune_Agerschou | 'nationality'-dbo:nationality"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Sune_Agerschou> <http://dbpedia.org/property/nationality> ?uri } " +"Namt the fields of Paul Demiville ? | 'Paul Demiville'-res:Paul_Demiéville | 'fields'-dbp:fields"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Paul_Demiéville> <http://dbpedia.org/property/fields> ?uri } " +"Who all have been canonized by Pope Paul VI | 'Paul VI'-res:Pope_Paul_VI | 'canonized'-dbo:canonizedBy","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/canonizedBy> <http://dbpedia.org/resource/Pope_Paul_VI> . }" +"What is written in a programming language developed by GNOME Project? | 'GNOME Project'-res:The_GNOME_Project | 'written'-dbo:fate | 'programming language'-dbp:programmingLanguage | 'developed'-dbp:developer","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/programmingLanguage> <http://dbpedia.org/resource/The_GNOME_Project> . ?x <http://dbpedia.org/property/developer> ?uri . }" +"Where is the building located whose architect was Francis Palmer Smith? | 'Francis Palmer Smith'-res:Francis_Palmer_Smith | 'building'-dbo:building | 'located'-dbo:garrison | 'architect'-dbo:architect","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/architect> <http://dbpedia.org/resource/Francis_Palmer_Smith> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Building>}" +"List the school of Bobby Skinstad? | 'Bobby Skinstad'-res:Bobby_Skinstad | 'school'-dbo:school"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bobby_Skinstad> <http://dbpedia.org/ontology/school> ?uri } " +"Count all the universities who participated in the tournament won by Alabama Crimson Tides in 2015 ? | 'universities'-res:Universities_South_Africa | 'Alabama Crimson Tides'-res:Alabama_Crimson_Tide | '2015'-res:2015_Super_Rugby_Final | 'count'-dbo:country | 'participated'-dbo:participant | 'tournament'-dbo:event | 'won'-dbo:city","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/name> <http://dbpedia.org/resource/Alabama_Crimson_Tide> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/University>}" +"In how many different places have ehtics philosophers died? | ''-res:Ethics | 'places'-dbp:height | 'died'-dbo:flag","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/placeOfDeath> <http://dbpedia.org/resource/Ethics> . ?x <http://dbpedia.org/ontology/deathPlace> ?uri . }" +"Which house has published books about Jazz? | 'Jazz'-res:Jazz | 'house'-dbo:house | 'published'-dbo:author | 'books'-dbo:title","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/associatedBook> <http://dbpedia.org/resource/Jazz> . ?x <http://dbpedia.org/property/publisher> ?uri . }" +"Which person naratted The Incredible Hulk and also the writer of Tales of Suspense ? | 'The Incredible Hulk'-res:The_Trial_of_the_Incredible_Hulk | 'Tales of Suspense'-res:Tales_of_Suspense | 'person'-dbp:type | 'naratted'-dbp:narrated | 'writer'-dbo:writer","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Trial_of_the_Incredible_Hulk> <http://dbpedia.org/property/narrated> ?x . ?x <http://dbpedia.org/ontology/writer> ?uri . }" +"How many movies have been directed by almunies of Parsons School of Design? | 'almunies'-res:Almunia | 'Parsons School of Design'-res:Parsons_School_of_Design | 'movies'-dbo:film | 'directed'-dbo:president","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/school> <http://dbpedia.org/resource/Parsons_School_of_Design> . ?uri <http://dbpedia.org/property/director> ?x . }" +"List the people died in Hyderabad and are a member of political party ? | 'Hyderabad'-res:Hyderabad | 'died in'-dbo:deathPlace | 'political party'-dbo:party","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/placeOfDeath> <http://dbpedia.org/resource/Hyderabad> . ?x <http://dbpedia.org/property/party> ?uri . }" +"What is the american football league whose champion is from Kansas City, Missouri? | 'american football league'-res:American_Football_League | 'Kansas City, Missouri'-res:Kansas_City,_Missouri | 'champion'-dbp:champion","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/champion> <http://dbpedia.org/resource/Kansas_City,_Missouri> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/AmericanFootballLeague>}" +"Where is the garrison of Western Naval Command ? | 'Western Naval Command'-res:Western_Naval_Command | 'garrison'-dbo:garrison"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Western_Naval_Command> <http://dbpedia.org/ontology/garrison> ?uri } " +"Which person's successor is Samsu-iluna? | 'Samsu-iluna'-res:Samsu-iluna | 'successor'-dbo:successor | 'person'-dbo:Person","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/successor> <http://dbpedia.org/resource/Samsu-iluna> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}" +"How many sports are played in maharashtran schools? | 'maharashtra'-res:Maharashtra | 'sports'-dbo:athletics | 'played'-dbo:portrayer","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/city> <http://dbpedia.org/resource/Maharashtra> . ?x <http://dbpedia.org/property/athletics> ?uri . }" +"How many owners owned the clubs participating in the Premier leagues of '14? | 'Premier leagues'-res:2013_National_Premier_Leagues | '14'-res:14 | 'owners'-dbp:owner | 'owned'-dbp:owner | 'clubs'-dbo:college | 'participating'-dbo:interest","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/league> <http://dbpedia.org/resource/2013_National_Premier_Leagues> . ?x <http://dbpedia.org/ontology/owner> ?uri . }" +"How many people live in the Beverly Hills, California? | 'Beverly Hills, California'-res:Beverly_Hills,_California | 'live'-dbo:residence","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/residence> <http://dbpedia.org/resource/Beverly_Hills,_California> . }" +"Name some islands in a pacific archipelago? | 'pacific'-res:Pacific_Ocean | 'name'-dbo:name | 'islands'-dbo:numberOfIslands | 'pacific archipelago'-dbo:archipelago","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/archipelago> <http://dbpedia.org/resource/Pacific_Ocean> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Island>}" +"In how many areas do the networks broadcast, which also broadcasts in North Carolina? | 'North Carolina'-res:North_Carolina | 'networks broadcast,'-dbo:state | 'broadcasts'-dbo:state","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/state> <http://dbpedia.org/resource/North_Carolina> . ?x <http://dbpedia.org/property/broadcastArea> ?uri . }" +"What is the total number of regions served by the companies which also serves Australia? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'Australia'-res:Australia | 'total'-dbo:populationTotal | 'regions'-dbp:region | 'served'-dbo:regionServed | 'serves'-dbo:chain"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/regionServed> <http://dbpedia.org/resource/Australia> . ?x <http://dbpedia.org/ontology/regionRegion> ?uri }" +"List the area of radio stations whose sister station is WBCQ-FM? | 'WBCQ-FM'-res:WBCQ-FM | 'area'-dbo:area | 'radio stations'-dbp:sisterStations | 'sister station'-dbo:sisterStation"," SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/sisterStations> <http://dbpedia.org/resource/WBCQ-FM> . ?x <http://dbpedia.org/ontology/area> ?uri }" +"How many companies have manufactured the rockets launched from the Cape Canaveral Air Force Station? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'Cape Canaveral Air Force Station'-res:Cape_Canaveral_Air_Force_Station | 'launched'-dbo:launchSite | 'manufactured'-dbo:manufacturer","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/launchSite> <http://dbpedia.org/resource/Cape_Canaveral_Air_Force_Station> . ?x <http://dbpedia.org/property/manufacturer> ?uri . }" +"What is the sea connected to Kaliningrad and Gdask? | 'Kaliningrad and Gdask'-res:Kaliningrad_Zoo | 'sea'-dbo:seatingCapacity | 'connected'-dbo:related","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/cities> <http://dbpedia.org/resource/Kaliningrad> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Sea>}" +"In which country did the planes designed by Ursula Hanle originate? | 'Ursula Hanle'-res:Ursula_Hänle | 'country'-dbo:country | 'planes'-dbo:founder | 'designed'-dbo:architect | 'originate'-dbo:engineer","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/designer> <http://dbpedia.org/resource/Ursula_Hänle> . ?x <http://dbpedia.org/ontology/origin> ?uri . }" +"what are some units udner the US department of navy? | 'US department of navy'-res:United_States_Department_of_the_Navy | 'units udner'-dbo:commandStructure","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/commandStructure> <http://dbpedia.org/resource/United_States_Department_of_the_Navy> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MilitaryUnit>}" +"List the children of the parent of Marvin Bush. | 'Marvin Bush'-res:Marvin_Bush | 'children'-dbp:children | 'parent'-dbo:parent","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Marvin_Bush> <http://dbpedia.org/ontology/parent> ?x . ?x <http://dbpedia.org/property/children> ?uri . }" +"Where was the Temptation Waits recorded? | 'Temptation Waits'-res:Temptation_Waits | 'recorded'-dbo:recordedIn"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Temptation_Waits> <http://dbpedia.org/ontology/recordedIn> ?uri } " +"List the relatives of clay Aiken ? | 'clay Aiken'-res:Clay_Aiken | 'relatives'-dbp:relatives"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Clay_Aiken> <http://dbpedia.org/property/relatives> ?uri } " +"which award has been won by Claudia Moro? | 'Claudia Moro'-res:Claudia_Moro | 'award'-dbo:award | 'won'-dbo:city","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Claudia_Moro> <http://dbpedia.org/property/awards> ?x . ?x <http://dbpedia.org/ontology/award> ?uri . }" +"What is the address of Federal Reserve Bank Building? | 'Federal Reserve Bank Building'-res:Federal_Reserve_Bank_Building_(Seattle) | 'address'-dbo:address"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Federal_Reserve_Bank_Building_(Seattle)> <http://dbpedia.org/ontology/address> ?uri } " +"List the countries through which European rout E39 and E8 passes ? | 'countries'-res:Countries_of_the_United_Kingdom | 'E39'-res:E39 | 'European rout'-res:Europe | 'European rout'-res:Rout | 'E8'-res:E8 | 'passes'-dbp:pages | ''-dbo:country","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/route> <http://dbpedia.org/resource/E39> . ?uri <http://dbpedia.org/property/country> <http://dbpedia.org/resource/Europe> . }" +"Who are the writer of the singles whose music genre is Rhythm and blues ? | 'Rhythm and blues'-res:Rhythm_and_blues | 'writer'-dbo:writer | 'singles'-dbo:associate | 'music genre'-dbo:genre | 'blues'-dbo:gross"," SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/genre> <http://dbpedia.org/resource/Rhythm_and_blues> . ?x <http://dbpedia.org/property/writer> ?uri }" +"What are the awards won by the film editor of The Search? | 'The Search'-res:The_Search_(2014_film) | 'editor'-dbo:editing | 'awards'-dbp:awards","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Search_(2014_film)> <http://dbpedia.org/ontology/editing> ?x . ?x <http://dbpedia.org/property/awards> ?uri . }" +"Give me some series related to the one which had Yasmin Paige in them. | 'Yasmin Paige'-res:Yasmin_Paige | 'series'-dbo:series | 'related'-dbo:related","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/related> <http://dbpedia.org/resource/Yasmin_Paige> . ?x <http://dbpedia.org/ontology/series> ?uri . }" +"How many TV shows have executive producer as Steven Moffat ? | 'TV'-res:Tv_test_pattern | 'Steven Moffat'-res:Steven_Moffat | 'executive producer'-dbo:executiveProducer | 'shows'-dbo:TelevisionShow","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/executiveProducer> <http://dbpedia.org/resource/Steven_Moffat> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" +"Who made the engine whose predecessor is the SHO V6? | 'SHO'-res:Sho | 'V6'-res:V6_engine | 'V6'-res:V6_engine | 'SHO'-res:Sho | 'engine'-dbo:engine | 'predecessor'-dbo:predecessor","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/predecessor> <http://dbpedia.org/resource/Sho_engine> . ?x <http://dbpedia.org/ontology/engine> ?uri . }" +"For how many different teams have Ontarians been drafted ? | 'Ontaria'-res:Ontario | 'teams'-dbo:numberOfTeams | 'drafted'-dbo:draft","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/draftTeam> <http://dbpedia.org/resource/Ontario> . ?x <http://dbpedia.org/property/team> ?uri . }" +"Whose academic advisor works at the St George's Hospital? | 'St George's Hospital'-res:St_George's_Hospital | 'academic advisor'-dbo:abstract | 'works'-dbo:language","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/academicAdvisor> <http://dbpedia.org/resource/St_George's_Hospital> . ?x <http://dbpedia.org/property/author> ?uri . }" +"Count the number of people who graduated from universities affiliated with the NCAA. | 'universities'-res:Universities_South_Africa | 'NCAA'-res:National_Collegiate_Athletic_Association_(Philippines) | 'count'-dbo:country | 'graduated'-dbo:effectiveRadiatedPower | 'affiliated'-dbo:league","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/athletics> <http://dbpedia.org/resource/National_Collegiate_Athletic_Association> . ?uri <http://dbpedia.org/ontology/almaMater> ?x . }" +"How many characters were made by Paul Dini? | 'Paul Dini'-res:Paul_Dini | 'made by'-dbp:creators","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/creators> <http://dbpedia.org/resource/Paul_Dini> . }" +"How many molluscas are there whose families are Buccinidae and Buccinoidea? | 'Molluscas'-res:Mollusca | 'Buccinidae and Buccinoidea'-res:Buccinidae | 'families'-dbo:established","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/family> <http://dbpedia.org/resource/Buccinidae> . }" +"Where did Aghasalim Childagh die? | 'Aghasalim Childagh'-res:Aghasalim_Childagh | 'die'-dbo:deathDate"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Aghasalim_Childagh> <http://dbpedia.org/ontology/deathPlace> ?uri } " +"Where is the successor of john waldo from? | 'john waldo'-res:John_B._Waldo | 'successor'-dbo:successor"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/John_B._Waldo> <http://dbpedia.org/property/successor> ?uri } " +"How many awards have screenwriters won? | 'screenwriters'-res:Screenwriter | 'awards'-dbo:award | 'won'-dbo:award","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/occupation> <http://dbpedia.org/resource/Screenwriter> . ?x <http://dbpedia.org/ontology/award> ?uri . }" +"What are the houses of the Parliament Security Services and Parliament of India ? | 'Parliament Security Services'-res:Parliament_Security_Services | 'Parliament of India'-res:Parliament_of_India | 'houses'-dbp:houses | 'houses'-dbp:houses","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/houses> <http://dbpedia.org/resource/Parliament_Security_Services> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/House>}" +"How many owners are there of things located in Alabama? | 'Alabama'-res:Alabama | 'in'-dbo:city | 'owners'-dbo:owner","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/location> <http://dbpedia.org/resource/Alabama> . ?x <http://dbpedia.org/ontology/owner> ?uri . }" +"Where are the shrines of the saints who were beatified by Pope Pius XI? | 'Pope Pius XI'-res:Pope_Pius_XI | 'shrines'-dbo:chain | 'saints'-dbo:saint | 'beatified'-dbp:beatifiedBy","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/beatifiedBy> <http://dbpedia.org/resource/Pope_Pius_XI> . ?x <http://dbpedia.org/ontology/mountain>}" +"Foxy Brown was associated with which band? | 'Foxy Brown'-res:Foxy_Brown_(rapper) | 'associated'-dbo:associatedBand | 'band'-dbo:band"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/associatedBand> <http://dbpedia.org/resource/Foxy_Brown_(rapper)> } " +"Of how many battles is Chickasaw Campaign of 1736 consisted? | 'Chickasaw Campaign of 1736'-res:Chickasaw_Campaign_of_1736 | 'battles'-dbo:combatant | 'consisted'-dbp:convicted","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/Chickasaw_Campaign_of_1736> . ?x <http://dbpedia.org/ontology/combatant> ?uri . }" +"Of what all has David Ian Salter been an editor of? | 'David Ian Salter'-res:David_Ian_Salter | 'editor'-dbo:editing"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/David_Ian_Salter> <http://dbpedia.org/ontology/editing> ?uri } " +"Name the river whose mouth mountain is Essex and river mouth is North Sea? | 'Essex'-res:Essex | 'North Sea'-res:North_Sea | 'name'-dbp:name | 'river'-dbo:river | 'mouth mountain'-dbo:elevation | 'river mouth'-dbo:mouthMountain","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/mouthMountain> <http://dbpedia.org/resource/Essex> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/River>}" +"What award has been given to Roy Walker as well as Walt Disney? | 'Roy Walker'-res:Roy_Walker_(production_designer) | 'Walt Disney'-res:Walt_Disney | 'award'-dbo:award","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Roy_Walker_(production_designer)> <http://dbpedia.org/ontology/award> ?uri . <http://dbpedia.org/resource/Walt_Disney> <http://dbpedia.org/property/awards> ?uri . }" +"What is the death place of the Marina Pankova and Viktor Ulyanich? | 'Marina Pankova'-res:Marina_Pankova | 'Viktor Ulyanich'-res:Viktor_Ulyanich | 'death place'-dbo:deathPlace","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Marina_Pankova> <http://dbpedia.org/ontology/deathPlace> ?uri . <http://dbpedia.org/resource/Viktor_Ulyanich> <http://dbpedia.org/property/placeOfDeath> ?uri . }" +"What products are made by Tehran based companies? | 'Tehran'-res:Tehran | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'products'-dbp:products | 'based'-dbp:based","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/locationCity> <http://dbpedia.org/resource/Tehran> . ?x <http://dbpedia.org/property/products> ?uri . }" +"Count number of people who follow a religion which has an important office in Gold Base ? | 'Gold Base'-res:Gold_Base | 'count'-dbo:type | 'follow'-dbo:course | 'religion'-dbo:religion | 'office'-dbo:office","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/office> <http://dbpedia.org/resource/Gold_Base> . ?x <http://dbpedia.org/ontology/religion> ?uri . }" +"How many basketball players studied in the Midland College? | 'basketball players'-res:National_Basketball_Players_Association | 'Midland College'-res:Midland_College | 'College'-dbo:college | 'basketball player'-dbo:BasketballPlayer","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/college> <http://dbpedia.org/resource/Midland_College> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/BasketballPlayer>}" +"Which actors have performed in plays performed in New York? | 'New York'-res:New_York | 'actors'-dbo:award | 'performed'-dbo:artist | 'plays'-dbo:plays | 'performed'-dbo:artist","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/hometown> <http://dbpedia.org/resource/New_York> . ?x <http://dbpedia.org/property/starring> ?uri . }" +"Who is the editor of Hearth and Home ? | 'Hearth and Home'-res:Hearth_and_Home | 'editor'-dbo:editor"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Hearth_and_Home> <http://dbpedia.org/ontology/editor> ?uri } " +"List the books by the authors buried in the Convent of the Barefoot Trinitarians? | 'Convent of the Barefoot Trinitarians'-res:Convent_of_the_Barefoot_Trinitarians | 'buried'-dbo:restingPlace | 'authors'-dbo:author","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/restingPlace> <http://dbpedia.org/resource/Convent_of_the_Barefoot_Trinitarians> . ?x <http://dbpedia.org/property/author> ?uri . }" +"Which awards did the creator of A Barrel of Laughs, a Vale of Tears won ? | 'A'-res:A | 'Barrel of Laughs,'-res:A_Barrel_of_Laughs,_a_Vale_of_Tears | 'Vale of Tears'-res:Vale_of_tears | 'awards'-dbo:budget | 'creator'-dbp:producer | 'won'-dbo:award","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/A_Barrel_of_Tears> <http://dbpedia.org/property/creator> ?x . ?x <http://dbpedia.org/ontology/award> ?uri . }" +"Which hockey teams have had people playing as Defenceman? | 'Defenceman'-res:Defenceman | 'hockey'-dbo:jockey | 'teams'-dbo:numberOfTeams | 'playing'-dbo:field","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/position> <http://dbpedia.org/resource/Defenceman> . ?x <http://dbpedia.org/ontology/team> ?uri . }" +"which president was served by Joseph Stiglitz? | 'Joseph Stiglitz'-res:Joseph_Stiglitz | 'president'-dbo:president | 'served'-dbo:regionServed"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/president> <http://dbpedia.org/resource/Joseph_Stiglitz> } " +"What product is made by Sony and Foxconn togather? | 'Sony'-res:Sony | 'Foxconn togather'-res:Foxconn | 'made by'-dbo:manufacturer | 'made by'-dbo:manufacturer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/manufacturer> <http://dbpedia.org/resource/Sony> . ?uri <http://dbpedia.org/property/products> <http://dbpedia.org/resource/Foxconn> . }" +"Which city has radio stations which are Religious ? | 'Religiou'-res:Religion | 'city'-dbo:city | 'radio stations'-dbo:numberOfStations"," SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/programmeFormat> <http://dbpedia.org/resource/Religion> . ?x <http://dbpedia.org/property/city> ?uri }" +"Whose mam is Bertrada of Laon? | 'Bertrada of Laon'-res:Bertrada_of_Laon | 'mam'-dbp:mother"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bertrada_of_Laon> <http://dbpedia.org/property/mother> ?uri } " +"What location country of AH141 is also the nation of malaysia Junior hockey league ? | 'AH141'-res:AH141 | 'malaysia Junior hockey league'-res:Malaysia_Junior_Hockey_League | 'country'-dbo:county | 'country'-dbo:country"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/AH141> <http://dbpedia.org/ontology/league> ?uri . <http://dbpedia.org/resource/Malaysia_Junior_Hockey_League> <http://dbpedia.org/property/country> ?uri} " +"How many artists are signed up with Celluloid Records? | 'Celluloid Records'-res:Celluloid_Records | 'artists'-dbp:artist | 'signed'-dbo:movement","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Celluloid_Records> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Artist>}" +"Henry McDaniel's trained horses have won which awards? | 'Henry McDaniel'-res:Henry_McDaniel_(racehorse_trainer) | 'trained'-dbo:coach | 'horses'-dbo:staff | 'won'-dbo:award | 'awards'-dbo:award","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/trainer> <http://dbpedia.org/resource/Henry_McDaniel_(racehorse_trainer)> . ?x <http://dbpedia.org/property/awards> ?uri . }" +"From how many coutries do companies come, which are headquartered in the Klang Valley? | 'Klang Valley'-res:Klang_Valley | 'headquarter'-dbp:headquarters | 'country'-dbp:country","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Klang_Valley> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Cashion>}" +"Who is the builder of the bridge owned by Tabriz ? | 'Tabriz'-res:Tabriz | 'builder'-dbo:builder | 'bridge'-dbo:abstract | 'owned'-dbo:owner","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/owner> <http://dbpedia.org/resource/Tabriz> . ?x <http://dbpedia.org/property/builder> ?uri . }" +"Who are the golf players whose college is Arizona State Sun Devils? | 'golf players'-res:The_Golf_Players | 'Arizona State Sun Devils'-res:Arizona_State_Sun_Devils | 'college'-dbo:college | 'golf player'-dbo:GolfPlayer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/college> <http://dbpedia.org/resource/Arizona_State_Sun_Devils> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/GolfPlayer>}" +"List everything in which saxophone players have been casted. | 'saxophone players'-res:Saxophone | 'casted'-dbo:class","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Saxophone> . ?uri <http://dbpedia.org/property/tenant> ?x . }" +"What games are played in Protestant schools? | 'Protestant schools'-res:Doveton_Corrie_Protestant_Schools_Association | 'games'-dbo:games | 'played'-dbo:portrayer","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/school> <http://dbpedia.org/resource/Protestant_Schools_Association> . ?x <http://dbpedia.org/property/games> ?uri . }" +"Which stockholder of yale Repertory Theatre was training center of William Anthony ? | 'William Anthony'-res:William_Anthony_(artist) | 'yale Repertory Theatre'-res:Yale_Repertory_Theatre | 'training'-dbo:training | 'stockholder'-dbp:owner"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/William_Anthony_(artist)> <http://dbpedia.org/ontology/training> ?uri . <http://dbpedia.org/resource/Yale_Repertory_Theatre> <http://dbpedia.org/property/owner> ?uri} " +"Name the common institution of the Erica Frank and Douglass North? | 'Erica Frank'-res:Erica_Frank | 'Douglass North'-res:Douglass_North | 'name'-dbp:name | 'common institution'-dbo:institution","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/institution> <http://dbpedia.org/resource/Erica_Frank> . }" +"List the language of Kunsten Museum of moder art Aalborg ? | 'Kunsten Museum of moder art Aalborg'-res:KUNSTEN_Museum_of_Modern_Art_Aalborg | 'language'-dbo:language"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kunsten_Museum_of_Modern_Art_Aalborg> <http://dbpedia.org/property/language> ?uri } " +"To which persons is Ron Cyrus a relative? | 'Ron Cyrus'-res:Ron_Cyrus | 'relative'-dbp:relatives | 'person'-dbo:Person","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/relatives> <http://dbpedia.org/resource/Ron_Cyrus> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}" +"How many services are there of the companies whose services is Web hosting service ? | 'Web hosting service'-res:Web_hosting_service | 'services'-dbp:services | 'services'-dbp:services","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/services> <http://dbpedia.org/resource/Web_hosting_service> . ?x <http://dbpedia.org/property/services> ?uri . }" +"Who is a successor of Kingship whose parents were Julius Caesar? | 'Kingship'-res:Kingship_and_kingdom_of_God | 'Julius Caesar'-res:Julius_Caesar | 'successor'-dbo:successor | 'parents'-dbo:parent","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/parent> <http://dbpedia.org/resource/Julius_Caesar> . ?x <http://dbpedia.org/property/successor> ?uri . }" +"Who is the predecessor of Voere ? | 'Voere'-res:Voere | 'predecessor'-dbo:predecessor"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Voere> <http://dbpedia.org/ontology/predecessor> ?uri } " +"Which movies did Mark Steven edit? | 'Mark Steven'-res:Mark_Stevens_(film_editor) | 'edit'-dbp:editing | 'movie'-dbo:Film","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/editing> <http://dbpedia.org/resource/Mark_Stevens_(film_editor)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" +"How many more teams have rented the stadium used by Raptors 905? | 'Raptors 905'-res:Raptors_905 | 'teams'-dbp:team | 'rented'-dbo:tenant | 'stadium'-dbo:stadium","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/tenants> <http://dbpedia.org/resource/Raptors_905> . ?x <http://dbpedia.org/ontology/tenant> ?uri . }" +"Count the wars in which people awarded with the Croix de guerre fought. | 'Croix de guerre'-res:Croix_de_Guerre | 'count'-dbo:country | 'wars'-dbp:battles | 'awarded'-dbo:award | 'fought'-dbo:type","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/battle> <http://dbpedia.org/resource/Croix_de_Guerre> . ?x <http://dbpedia.org/property/territory> ?uri . }" +"How many have been awarded by the Royal Society? | 'Royal Society'-res:Royal_Society | 'awarded'-dbp:awards","SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Royal_Society> <http://dbpedia.org/property/awards> ?uri . }" +"who manufactures the SHO V8? | 'sho v8'-res:Ford_SHO_V8_engine | 'manufactures'-dbo:manufacturer"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ford_SHO_V8_engine> <http://dbpedia.org/ontology/manufacturer> ?uri } " +"What are the broadcast areas of Mauritius Broadcasting Corporation? | 'Mauritius Broadcasting Corporation'-res:Mauritius_Broadcasting_Corporation | 'broadcast'-dbo:broadcastArea"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Mauritius_Broadcasting_Corporation> <http://dbpedia.org/ontology/broadcastArea> ?uri } " +"What are the movies whose cinematographer is Gregg Toland? | 'cinematographer'-res:Cinematographer | 'Gregg Toland'-res:Gregg_Toland | 'movies'-dbo:film","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/cinematography> <http://dbpedia.org/resource/Gregg_Toland> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" +"In how many different highschools have people schooled in Penn State Nittany Lions football studied? | 'Penn State Nittany Lions football'-res:Penn_State_Nittany_Lions_football | 'highschools'-dbo:highschool | 'schooled'-dbo:university | 'studied'-dbo:course","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/university> <http://dbpedia.org/resource/Penn_State_Nittany_Lions_football> . ?x <http://dbpedia.org/property/highschool> ?uri . }" +"How many different people hold authority over the members of Balanidae family? | 'Balanidae family'-res:Balanidae | 'family'-dbo:family | 'authority'-dbo:binomialAuthority","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/family> <http://dbpedia.org/resource/Balanidae> . ?x <http://dbpedia.org/property/authority> ?uri . }" +"Who is the american football player whose highschool is Ringgold High School (Pennsylvania)? | 'american football player'-res:James_Walker_(American_football_player) | 'Ringgold High School (Pennsylvania)'-res:Ringgold_High_School_(Pennsylvania) | 'highschool'-dbo:highschool","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/highschool> <http://dbpedia.org/resource/Ringgold_High_School_(Pennsylvania)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/AmericanFootballPlayer>}" +"Count the total number of conflicts people who were part of conflict in afghanisthan ? | 'Afghanisthan'-res:Afghanistan | 'count'-dbo:country | 'total'-dbo:populationTotal | 'conflicts'-dbo:battle | 'conflict'-dbo:battle","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/battle> <http://dbpedia.org/resource/Afghanistan> . ?x <http://dbpedia.org/property/territory> ?uri . }" +"Kendall Jenner has how many relatives? | 'Kendall jenner'-res:Kendall_Jenner | 'relatives'-dbp:relatives","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/relatives> <http://dbpedia.org/resource/Kendall_Jenner> . }" +"Where do the CNN employees typically graduate from? | 'CNN'-res:CNN | 'employees'-dbo:employer | 'graduate'-dbo:almaMater","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/employer> <http://dbpedia.org/resource/CNN> . ?x <http://dbpedia.org/property/almaMater> ?uri . }" +"What is the location town of First Church of Christ, Scientist (Pittsburgh) ? | 'First Church of Christ, Scientist (Pittsburgh)'-res:First_Church_of_Christ,_Scientist_(Pittsburgh) | 'location town'-dbo:location"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/First_Church_of_Christ,_Scientist_(Pittsburgh)> <http://dbpedia.org/ontology/location> ?uri } " +"Where is the spouse of Henry Bourchier of Essex buried? | 'Henry Bourchier of Essex'-res:Henry_Bourchier,_1st_Earl_of_Essex | 'spouse'-dbo:spouse | 'buried'-dbo:weight","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Henry_Bourchier> <http://dbpedia.org/ontology/spouse> ?x . ?x <http://dbpedia.org/property/restingplace> ?uri . }" +"What shows are on the networks which are from the United States? | 'United States'-res:United_States | 'shows'-dbo:place | 'networks'-dbo:network","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/United_States> . ?uri <http://dbpedia.org/property/network> ?x . }" +"Name the movies distributed by Cinema International Corporation and edited by Hulian Doyle ? | 'Cinema International Corporation'-res:Cinema_International_Corporation | 'Hulian Doyle'-res:Willie_Doyle | 'name'-dbp:name | 'movies'-dbo:film | 'distributed'-dbo:distributor | 'edited'-dbo:editor","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/distributor> <http://dbpedia.org/resource/Cinema_International_Corporation> . ?uri <http://dbpedia.org/ontology/editing> <http://dbpedia.org/resource/Hulian_Doyle_(film)> . }" +"What is the province of Rouen Business School ? | 'Rouen Business School'-res:Rouen_Business_School | 'province'-dbo:province"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Rouen_Business_School> <http://dbpedia.org/ontology/province> ?uri } " +"List some songwriters whose work has been recorded in Miami? | 'Miami'-res:Miami | 'songwriters'-dbo:composer | 'work'-dbo:part | 'recorded'-dbo:recordedIn","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/recordedIn> <http://dbpedia.org/resource/Miami> . ?uri <http://dbpedia.org/property/writer> ?x . }" +"What is the total number of relgions followed by people born in Bangkok? | 'Bangkok'-res:Bangkok | 'total'-dbo:populationTotal | 'relgions'-dbp:religion | 'born'-dbo:birthPlace","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Bangkok> . ?x <http://dbpedia.org/property/religion> ?uri . }" +"Which musical artist collaborated with Tony Allen (musician) and label is Victor Entertainment? | 'Tony Allen (musician)'-res:Tony_Allen_(musician) | 'Victor Entertainment'-res:Victor_Entertainment | 'musical artist'-dbo:artist | 'collaborated'-dbo:team | 'label'-dbp:label","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/associatedMusicalActs> <http://dbpedia.org/resource/Tony_Allen_(musician)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MusicalArtist>}" +"Count the number of software which runs on Microsoft Windows and mac OS ? | 'software'-res:Software | 'Microsoft Windows'-res:Microsoft_Windows | 'OS'-res:OS | 'count'-dbo:type | 'runs'-dbo:series | 'mac'-dbo:person"," SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/computingPlatform> <http://dbpedia.org/resource/Microsoft_Windows> } " +"What is the common race of the Martin Molony and race of the Coneygree ? | 'Martin Molony'-res:Martin_Molony | 'Coneygree'-res:Coneygree | 'common race'-dbo:race | 'race'-dbo:race"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Martin_Molony> <http://dbpedia.org/property/commonRace> ?uri . <http://dbpedia.org/resource/Coneygree> <http://dbpedia.org/ontology/race> ?uri} " +"What sports team's arena is The Palace of Auburn Hills | 'The Palace of Auburn Hills'-res:The_Palace_of_Auburn_Hills | 'arena'-dbp:arena | 'sports team'-dbo:SportsTeam","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/arena> <http://dbpedia.org/resource/The_Palace_of_Auburn_Hills> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SportsTeam>}" +"Name the TV show whose company is Playtone and written by Graham Yost? | 'TV'-res:Tv_test_pattern | 'Playtone'-res:Playtone | 'Graham Yost'-res:Graham_Yost | 'name'-dbp:name | 'show'-dbo:show | 'company'-dbo:company | 'written'-dbo:writer"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/company> <http://dbpedia.org/resource/Playtone> . ?uri <http://dbpedia.org/ontology/writer> <http://dbpedia.org/resource/Graham_Yost> } " +"What is the fictional character which belongs to families of Darth Vader and Padm Amidala? | 'Darth Vader'-res:Darth_Vader | 'Padm Amidala'-res:Padmé_Amidala | 'fictional character'-dbo:description | 'belongs'-dbp:longs | 'families'-dbo:established","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/longs> <http://dbpedia.org/resource/Darth_Vader> . ?uri <http://dbpedia.org/ontology/family> <http://dbpedia.org/resource/Padmé_Amidala> . }" +"Count the number of other services of the companies which provides the Microsoft Azure as service ? | 'companies'-res:Bluegrass_companies | 'Microsoft Azure'-res:Microsoft_Azure | 'services'-dbp:services | 'services'-dbp:services"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/services> <http://dbpedia.org/resource/Microsoft_Azure> . ?x <http://dbpedia.org/property/services> ?uri }" +"How many first drivers have participated when Scuderia Ferrari was a first team? | 'Scuderia Ferrari'-res:Scuderia_Ferrari | 'first team'-dbp:firstTeam | 'first driver'-dbo:firstDriver","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/firstTeam> <http://dbpedia.org/resource/Scuderia_Ferrari> . ?x <http://dbpedia.org/ontology/firstDriver> ?uri . }" +"What is the award which is presented by Swedish Academy? | 'Swedish Academy'-res:Sweden | 'Swedish Academy'-res:Swedish_Academy | 'presented'-dbp:presenter | 'award'-dbo:Award","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Swedish_Academy> <http://dbpedia.org/property/presenter> ?x . ?x <http://dbpedia.org/ontology/Award> ?uri . }" +"Michael Deeley produce how many movies? | 'michael Deeley'-res:Michael_Deeley | 'produce'-dbo:producer | 'movies'-dbo:film","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/director> <http://dbpedia.org/resource/Michael_Deeley> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" +"Who are in the liang chow club? | 'liang chow club'-res:Liang_Chow"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Liang_Chow> <http://dbpedia.org/property/name> ?uri } " +"In how many countries does the Zurich Affoltern am Albis Zug line go? | 'countries'-res:Countries_of_the_United_Kingdom | 'Zurich Affoltern am Albis Zug'-res:Affoltern_am_Albis","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/line> <http://dbpedia.org/resource/Zurich_Affoltern_am_Albis> . }" +"In how many places did Julian Leow Beng Kim study? | 'Julian Leow Beng Kim study'-res:Julian_Leow_Beng_Kim | 'study'-dbp:almaMater","SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Julian_Leow_Beng_Kim> <http://dbpedia.org/property/almaMater> ?uri . }" +"How many movies were directed by the graduate of Burbank High School ? | 'Burbank High School'-res:Burbank_High_School_(Burbank,_California) | 'movies'-dbo:film | 'directed'-dbo:principal | 'graduate'-dbo:numberOfGraduateStudents","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/almaMater> <http://dbpedia.org/resource/Burbank_High_School_(California)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" +"What is the type of Vesak ? | 'Vesak'-res:Vesak | 'type'-dbo:type"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Vesak> <http://dbpedia.org/ontology/type> ?uri } " +"Which awards did the parents of Anna Bergman win ? | 'Anna Bergman'-res:Anna_Bergman | 'parent'-dbo:parent | 'awards'-dbp:awards","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Anna_Bergman> <http://dbpedia.org/ontology/parent> ?x . ?x <http://dbpedia.org/property/awards> ?uri . }" +"What are some people who are on the board of companies founded in NY? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'NY'-res:New_York | 'board'-dbo:board | 'founded'-dbo:foundingYear","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/foundationPlace> <http://dbpedia.org/resource/New_York> . ?uri <http://dbpedia.org/property/board> ?x . }" +"What are the musicals of the people died in California? | 'California'-res:California | 'musicals'-dbo:musicalArtist | 'died'-dbo:flag","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/placeOfDeath> <http://dbpedia.org/resource/California> . ?x <http://dbpedia.org/property/musical> ?uri . }" +"Which software uses windows as it's operating system and is written in C++ ? | 'software'-res:Software_Publishing_Corporation | 'C++'-res:C++ | 'windows'-dbo:show | 'operating'-dbo:operatingSystem | 'written'-dbp:writtenIn","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/operatingSystem> <http://dbpedia.org/resource/C++> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Software>}" +"What currencies are circulated in the countries where people speak French? | 'French'-res:French_language | 'speak'-dbo:language | ''-dbo:country | ''-dbo:country","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/language> <http://dbpedia.org/resource/French_language> . ?x <http://dbpedia.org/property/currency> ?uri . }" +"Give the distinct number of other party of the people which have one of the party as Janata Party ? | 'Janata Party'-res:Janata_Party | 'other party'-dbo:otherParty | 'other party'-dbo:otherParty"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/party> <http://dbpedia.org/resource/Janata_Party> . ?x <http://dbpedia.org/ontology/otherParty> ?uri }" +"Which political party got elected in First Legislative Assembly of Uttar Pradesh ? | 'First Legislative Assembly of Uttar Pradesh'-res:First_Legislative_Assembly_of_Uttar_Pradesh | 'political party'-dbp:party | 'elected'-dbo:president","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/First_Legislative_Assembly_of_Uttar_Pradesh> <http://dbpedia.org/property/party> ?x . ?x <http://dbpedia.org/ontology/president> ?uri . }" +"How many organizations own the website to which Jimmy Wales contributes? | 'website'-res:Website | 'Jimmy Wales'-res:Jimmy_Wales | 'organizations'-dbo:company | 'contributes'-dbo:participant","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/leaderName> <http://dbpedia.org/resource/Jimmy_Wales> . ?x <http://dbpedia.org/ontology/owner> ?uri . }" +"Name the notable commanders of Army Group Oberrhein ? | 'Army Group Oberrhein'-res:Army_Group_Oberrhein_(Germany) | 'name'-dbo:name | 'notable commanders'-dbo:notableCommander"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Army_Group_Oberrhein_(Germany)> <http://dbpedia.org/ontology/notableCommander> ?uri } " +"Name the place of Qaqun ? | 'Qaqun'-res:Qaqun | 'name'-dbo:name | 'place'-dbo:place"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Qaqun> <http://dbpedia.org/ontology/place> ?uri } " +"What are the awards won by the film editor of World of Tomorrow ? | 'World of Tomorrow'-res:World_of_Tomorrow_(film) | 'editor'-dbo:editing | 'awards'-dbo:award","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/World_of_Tomorrow_(film)> <http://dbpedia.org/ontology/editing> ?x . ?x <http://dbpedia.org/property/awards> ?uri . }" +"Which mountains are contained in Inyo National Forest? | 'Inyo National Forest'-res:Inyo_National_Forest | 'Nation'-dbo:locatedInArea | 'mountain'-dbo:Mountain","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/locatedInArea> <http://dbpedia.org/resource/Inyo_National_Forest> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Mountain>}" +"Whose children are married to Fredric Joliot-Curie? | 'Fredric Joliot-Curie'-res:Frédéric_Joliot-Curie | 'children'-dbp:children | 'married'-dbo:spouse","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/spouse> <http://dbpedia.org/resource/Fredric_Joliot-Curie> . ?x <http://dbpedia.org/property/children> ?uri . }" +"What is the architecture of First National Bank and Trust Building (Lima, Ohio) ? | 'First National Bank'-res:First_National_Bank | 'Trust Building (Lima, Ohio)'-res:First_National_Bank_and_Trust_Building_(Lima,_Ohio) | 'architecture'-dbo:architecturalStyle"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/First_National_Bank_and_Trust_Building_(Lima,_Ohio)> <http://dbpedia.org/property/architecture> ?uri } " +"Count all the awards which were presented by something located in California. | 'California'-res:California | 'count'-dbo:country | 'awards'-dbo:award | 'located'-dbo:gross","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/California> . ?x <http://dbpedia.org/property/awards> ?uri . }" +"Who all held a position when Gough Whitlam was the prime minister? | 'Gough Whitlam'-res:Gough_Whitlam | 'held'-dbo:office | 'position'-dbo:position | 'prime minister'-dbo:primeMinister","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/primeMinister> <http://dbpedia.org/resource/Gough_Whitlam> . ?x <http://dbpedia.org/property/position> ?uri . }" +"In which part of the world will I find Kim Sawchuk and Vuelta Mexico Telmex? | 'I'-res:I | 'find Kim Sawchuk'-res:Kim_Sawchuk | 'Vuelta Mexico Telmex'-res:Vuelta_Mexico_Telmex","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kim_Sawchuk> <http://dbpedia.org/ontology/locationCity> ?uri . <http://dbpedia.org/resource/Vuelta_Mexico_Telmex> <http://dbpedia.org/property/locationCountry> ?uri . }" +"Stockholm is the HQ of how many things? | 'stockholm'-res:Stockholm | 'HQ'-res:HQ | 'HQ'-dbp:headquarters","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Stockholm> . }" +"What is a salthill? | 'Salthill'-res:Salthill"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Salthill> <http://dbpedia.org/property/locationCountry> ?uri } " +"In how many regions is the Baco Noir made? | 'Baco Noir'-res:Baco_noir | 'regions'-dbo:wineRegion","SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Baco_noir> <http://dbpedia.org/ontology/wineRegion> ?uri . }" +"Where does the Jerusalem Institute of Justice render their services? | 'Jerusalem Institute of Justice'-res:Jerusalem_Institute_of_Justice | 'render'-dbo:picture | 'services'-dbo:service"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jerusalem_Institute_of_Justice> <http://dbpedia.org/property/service> ?uri } " +"Who created the stadiums who have been rented by the Boston Red Sox? | 'Boston Red Sox'-res:Boston_Red_Sox | 'created'-dbo:author | 'stadiums'-dbo:stadium | 'rented'-dbo:tenant","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/tenant> <http://dbpedia.org/resource/Boston_Red_Sox> . ?x <http://dbpedia.org/property/tenants> ?uri . }" +"List down the commanders of Battle of Fort stephenson ? | 'Battle of Fort stephenson'-res:Battle_of_Fort_Stephenson | 'commanders'-dbo:commander"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Battle_of_Fort_Stephenson> <http://dbpedia.org/ontology/commander> ?uri } " +"What is the subject of The Prodigal son ? | 'The Prodigal son'-res:The_Prodigal_Son_(play) | 'subject'-dbp:subject"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Prodigal_Son_(play)> <http://dbpedia.org/property/subject> ?uri } " +"ARM Architecture acts as a game platform for how many things? | 'aRM Architecture'-res:ARM_architecture | 'acts'-dbo:material | 'game platform'-dbo:computingPlatform","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/material> <http://dbpedia.org/resource/ARM_architecture> . ?x <http://dbpedia.org/property/computingPlatform> ?uri . }" +"How many people have voiced characters sculpted by Clamp? | 'Clamp'-res:Clamp_(manga_artists) | 'voiced'-dbo:voice","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/creator> <http://dbpedia.org/resource/Clamp_(manga_artists)> . ?x <http://dbpedia.org/property/voice> ?uri . }" +"In how many different people are alumini of the University of Oxford working? | 'alumini'-res:NK_Aluminij | 'University of Oxford'-res:University_of_Oxford | 'working'-dbo:training","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/training> <http://dbpedia.org/resource/University_of_Oxford> . ?uri <http://dbpedia.org/ontology/training> ?x . }" +"Who is the developer of Montecito Inn ? | 'Montecito Inn'-res:Montecito_Inn | 'developer'-dbo:developer"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Montecito_Inn> <http://dbpedia.org/ontology/developer> ?uri } " +"What are the movies whose cast members are signed up with Point Blank Records? | 'Point Blank Records'-res:Point_Blank_Records | 'movies'-dbo:film | 'cast members'-dbo:genre | 'signed'-dbo:movement","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/recordLabel> <http://dbpedia.org/resource/Point_Blank_Records> . ?x <http://dbpedia.org/ontology/starring> ?uri . }" +"What do craig Van tilbury and karen Grigorian do for a living? | 'Van tilbury'-res:Craig_Van_Tilbury | 'Karen grigorian'-res:Karen_Grigorian | 'craig'-dbo:prominence | 'living'-dbo:occupation","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/occupation> <http://dbpedia.org/resource/Craig_Van_Tilbury> . ?uri <http://dbpedia.org/property/residence> <http://dbpedia.org/resource/Karen_Grigorian> . }" +"Name the televesion show which has artist named Christopher Franke ? | 'name televesion show'-res:The_Show_with_No_Name | 'Christopher Franke'-res:Christopher_Franke | 'artist'-dbo:artist","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/artist> <http://dbpedia.org/resource/Christopher_Franke> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" +"name the races where bobby beasley took part ? | 'bobby beasley'-res:Bobby_Beasley | 'races'-dbo:race"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bobby_Beasley> <http://dbpedia.org/ontology/race> ?uri } " +"List all that flows into the north sea? | 'north sea'-res:North_Sea | 'flows'-dbp:inflow","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/inflow> <http://dbpedia.org/resource/North_Sea> . }" +"How many head of agencies were there in Nazi Germany? | 'agencies'-res:Agencies_of_the_European_Union | 'Nazi Germany'-res:Nazi_Germany | 'head'-dbo:head","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/type> <http://dbpedia.org/resource/Nazi_Germany> . ?x <http://dbpedia.org/ontology/head> ?uri . }" +"What are the teams for which Wilfred McDonald played for? | 'Wilfred McDonald'-res:Wilfred_McDonald | 'played for'-dbp:playedFor"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Wilfred_McDonald> <http://dbpedia.org/property/playedFor> ?uri } " +"Count all those whose youthclub performed at the 14-15 La Liga? | '14-15 La Liga'-res:2013–14_La_Liga | 'count'-dbo:country | 'performed'-dbo:artist","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/league> <http://dbpedia.org/resource/2013–14_La_Liga> . ?uri <http://dbpedia.org/property/youthclubs> ?x . }" +"How many cities are around the sea which flows into the Atlantic? | 'Atlantic'-res:Atlantic_Ocean | 'cities'-dbo:country | 'sea'-dbp:shore | 'flows'-dbo:outflow","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/inflow> <http://dbpedia.org/resource/Atlantic_Ocean> . ?x <http://dbpedia.org/property/cities> ?uri . }" +"Who all are starring in the movies where director of photography is John Derek ? | 'John Derek'-res:John_Derek | 'starring'-dbo:starring | 'movies'-dbo:film | 'director'-dbo:director | 'photography'-dbo:picture","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/cinematography> <http://dbpedia.org/resource/John_Derek> . ?x <http://dbpedia.org/ontology/starring> ?uri . }" +"Who does Cam PLante plays for ? | 'Cam PLante'-res:Cam_Plante | 'plays for'-dbp:playedFor"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cam_Plante> <http://dbpedia.org/property/playedFor> ?uri } " +"How many awards have been given to the ones who died of lung cancer? | 'lung cancer'-res:Lung_cancer | 'awards'-dbo:award | 'died'-dbo:board","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/deathCause> <http://dbpedia.org/resource/Lung_cancer> . ?x <http://dbpedia.org/ontology/award> ?uri . }" +"Where the children of Ashot Grashi employed at? | 'Ashot Grashi'-res:Ashot_Barseghyan | 'children'-dbo:parent | 'employed'-dbo:occupation","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ashot_Barseghyan> <http://dbpedia.org/ontology/parent> ?x . ?x <http://dbpedia.org/property/occupation> ?uri . }" +"What is the alma mater of K. Terry Dornbush ? | 'K'-res:K | 'Terry Dornbush'-res:K._Terry_Dornbush | 'alma mater'-dbo:almaMater"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/K._Terry_Dornbush> <http://dbpedia.org/ontology/almaMater> ?uri } " +"What is the birthplace of the office holder who is the predecessor of Brian Peddle ? | 'Brian Peddle'-res:Brian_Peddle | 'birthplace'-dbo:birthPlace | 'office holder'-dbo:service | 'predecessor'-dbo:predecessor","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/predecessor> <http://dbpedia.org/resource/Brian_Peddle> . ?x <http://dbpedia.org/ontology/birthPlace> ?uri . }" +"How many people are known for Dragons' Den? | 'Dragons' Den'-res:Dragons'_Den_(UK_TV_series) | 'known for'-dbo:knownFor","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/knownFor> <http://dbpedia.org/resource/Dragons'_Den_(UK_TV_series)> . }" +"How many different writers have written for Jump Square? | 'Jump Square'-res:Jump_Square | 'writers'-dbo:writer | 'written'-dbo:writer","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/writer> <http://dbpedia.org/resource/Jump_Square> . ?x <http://dbpedia.org/property/writer> ?uri . }" +"Name the members of European Go Federation? | 'European Go Federation'-res:Europe | 'European Go Federation'-res:European_Go_Federation | 'name'-dbp:name | 'members'-dbo:membership | ''-dbo:country"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/membership> <http://dbpedia.org/resource/European_Go_Federation> } " +" Count the participants of the NBA. | 'NBA'-res:National_Basketball_Association | 'Count'-dbo:type | 'participants'-dbo:participant","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/league> <http://dbpedia.org/resource/National_Basketball_Association> . ?x <http://dbpedia.org/ontology/team> ?uri . }" +"Who has stock in the railway lines managed by Norfolk Southern Railway? | 'Norfolk Southern Railway'-res:Norfolk_Southern_Railway | 'stock'-dbo:languageFamily | 'railway lines'-dbo:servingRailwayLine | 'managed'-dbo:leader","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/operator> <http://dbpedia.org/resource/Norfolk_Southern_Railway> . ?x <http://dbpedia.org/property/railwayLine> ?uri . }" +"Enumerate the cars related to the ones assembled in Toluca? | 'Toluca'-res:Toluca | 'enumerate'-dbp:quote | 'cars'-dbo:management | 'related'-dbo:related | 'assembled'-dbp:assembly","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/assembly> <http://dbpedia.org/resource/Toluca> . ?x <http://dbpedia.org/ontology/related> ?uri . }" +"Count the number of other product of the banks whose one of the product is Wealth management ? | 'Wealth management'-res:Wealth_management | 'count'-dbo:type | 'product'-dbo:product | 'banks'-dbo:series | 'product'-dbo:product"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/products> <http://dbpedia.org/resource/Wealth_management> . ?x <http://dbpedia.org/ontology/product> ?uri }" +"What are all the TV shows which are related to the ones produced by Julie Gardner? | 'TV'-res:Lockheed_T-33 | 'Julie Gardner'-res:Julie_Gardner | 'shows'-dbo:place | 'related'-dbo:related | 'produced'-dbo:manufacturer","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/producer> <http://dbpedia.org/resource/Julie_Gardner> . ?uri <http://dbpedia.org/property/company> ?x . }" +"How many movies have been cinematographed by Jordan Cronenweth? | 'Jordan Cronenweth'-res:Jordan_Cronenweth | 'movies'-dbo:film | 'cinematographed'-dbo:cinematography","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/cinematography> <http://dbpedia.org/resource/Jordan_Cronenweth> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" +"What tv show is created by Brian Graden? | 'Brian Graden'-res:Brian_Graden | 'created'-dbo:developer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/creator> <http://dbpedia.org/resource/Brian_Graden> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" +"Count the total religions followed by the ones living in England. | 'England'-res:England | 'count'-dbo:country | 'total religions'-dbp:result | 'living'-dbo:occupation","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/country> <http://dbpedia.org/resource/England> . ?x <http://dbpedia.org/ontology/religion> ?uri . }" +"Who wrote the play in which a character called Stella Kowalski exists? | 'Stella Kowalski exists'-res:Stella | 'wrote'-dbo:author | 'play'-dbo:starring | 'character'-dbo:status | 'called'-dbo:alias","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/characters> <http://dbpedia.org/resource/Stella_Kowalski> . ?x <http://dbpedia.org/property/author> ?uri . }" +"What is the region of Kim Sawchuk ? | 'Kim Sawchuk'-res:Kim_Sawchuk | 'region'-dbo:region"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kim_Sawchuk> <http://dbpedia.org/ontology/region> ?uri } " +"What are the important buildings of the architect whose one of the significant building is Krasnye Vorota? | 'Krasnye Vorota'-res:Krasnye_Vorota_(Moscow_Metro) | 'buildings'-dbo:production | 'architect'-dbo:architect | 'building'-dbo:building","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/architect> <http://dbpedia.org/resource/Krasnye_Vorota_(Moscow_Metro)> . ?x <http://dbpedia.org/property/building> ?uri . }" +"Name the common institute of Robert hall and Erica Frank ? | 'Robert hall'-res:Robert_Newton_Hall | 'Erica Frank'-res:Erica_Frank | 'name'-dbp:name | 'common institute'-dbo:institution","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/institution> <http://dbpedia.org/resource/Robert_Newton_Hall> . }" +"Give me a list of everyone who married the musicians signed up with Pablo Records? | 'musicians'-res:Musicians_Institute | 'Pablo Records'-res:Pablo_Records | 'married'-dbp:spouse | 'signed'-dbo:movement","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Pablo_Records> . ?x <http://dbpedia.org/ontology/spouse> ?uri . }" +"What is the predecessor of the car engine which was succeeded by BMW M43 ? | 'BMW'-res:BMW | 'M43'-res:BMW_M43 | 'M43'-res:BMW_M43 | 'BMW'-res:BMW | 'predecessor'-dbo:predecessor | 'car engine'-dbp:engine | 'succeeded'-dbo:successor","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/BMW_M43> <http://dbpedia.org/property/successor> ?x . ?x <http://dbpedia.org/ontology/predecessor> ?uri . }" +"Which gadgets are made by companies of New Taipei City? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'New Taipei City'-res:New_Taipei_City | 'city'-dbp:locationCity | 'made by'-dbo:manufacturer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/locationCity> <http://dbpedia.org/resource/Taipei_City> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Device>}" +"What is the hub of Wan Air ? | 'Wan Air'-res:Wan_Air | 'hub'-dbp:hubs"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Wan_Air> <http://dbpedia.org/property/hubs> ?uri } " +"Who are the members of organizations headquartered at Amstelveen? | 'Amstelveen'-res:Amstelveen | 'members'-dbo:part | 'organizations'-dbo:company | 'headquartered'-dbo:headquarter","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Amstelveen> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Organisation>}" +"How many people have coached the players of Middlesbrough FC? | 'Middlesbrough FC'-res:Middlesbrough_F.C. | 'coached'-dbo:ground | 'players'-dbo:participant","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/club> <http://dbpedia.org/resource/Middlesbrough_F.C.> . ?x <http://dbpedia.org/ontology/manager> ?uri . }" +"Who has rented the stadiums owned by Toronto? | 'Toronto'-res:Toronto | 'rented'-dbp:center | 'stadiums'-dbp:stadium | 'owned'-dbp:owner","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/owner> <http://dbpedia.org/resource/Toronto> . ?x <http://dbpedia.org/ontology/tenant> ?uri . }" +"What is the mascot of alma mater of John O Moseley? | 'O'-res:O | 'John Moseley'-res:John_O._Moseley | 'mascot'-dbo:mascot | 'alma mater'-dbo:almaMater"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/John_O._Moseley> <http://dbpedia.org/property/almaMater> ?uri } " +"Which newspapers are owned by Oslo citizens? | 'Oslo citizens'-res:Oslo | 'newspapers'-dbo:title | 'owned'-dbo:owner","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/nationality> <http://dbpedia.org/resource/Oslo> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Newspaper>}" +"King crimson has been recorded in which places? | 'King crimson'-res:King_Crimson | 'king crimson'-dbo:leader | 'recorded'-dbo:background | 'places'-dbo:height","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/placeOfBirth> <http://dbpedia.org/resource/King_Crimson> . ?x <http://dbpedia.org/property/recordedIn> ?uri . }" +"Give me a count on associates of Johnny Cash? | 'Johnny Cash'-res:Johnny_Cash | 'associates'-dbp:associatedActs","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/associatedActs> <http://dbpedia.org/resource/Johnny_Cash> . }" +"what are some neighboring cities of Pregny Chambsy? | 'Pregny Chambsy'-res:Pregny-Chambésy | 'neighboring'-dbo:neighboringMunicipality | 'cities'-dbo:country","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/neighboringMunicipalities> <http://dbpedia.org/resource/Pregny-Chambésy> . }" +"How many developers make softwares for Unix like operating systems? | 'softwares'-res:Soft_Machine | 'Unix'-res:Unix | 'developers'-dbp:developer | 'operating systems'-dbp:operatingSystem","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/operatingSystem> <http://dbpedia.org/resource/Unix> . ?x <http://dbpedia.org/property/developer> ?uri . }" +"What is the second track list of Dschinghis Khan (song) ? | 'Dschinghis Khan (song)'-res:Dschinghis_Khan_(song) | 'track'-dbo:trackNumber"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dschinghis_Khan_(song)> <http://dbpedia.org/ontology/trackNumber> ?uri } " +"List the graves of the royalities which have been buried at Beeleigh Abbey ? | 'royalities'-res:Royalties | 'Beeleigh Abbey'-res:Beeleigh_Abbey | 'graves'-dbo:grades | 'buried'-dbo:flag","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/restingPlace> <http://dbpedia.org/resource/Beeleigh_Abbey> . ?x <http://dbpedia.org/ontology/deathPlace> ?uri . }" +"For which party's PM did Chidambaram Subramaniam serve? | 'PM'-res:PM | 'did Chidambaram Subramaniam'-res:Chidambaram_Subramaniam | 'party'-dbo:party | 'serve'-dbp:minister","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Chidambaram_Subramaniam> <http://dbpedia.org/property/minister> ?x . ?x <http://dbpedia.org/ontology/party> ?uri . }" +"What is the capital of the region which maintains the South Park Bridge ? | 'South Park Bridge'-res:South_Park_Bridge | 'capital'-dbo:capital | 'region'-dbo:region | 'maintains'-dbo:maintainedBy"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/South_Park_Bridge> <http://dbpedia.org/ontology/maintainedBy> ?uri } " +"What is the operating system of the LG Optimus Vu and also the developer of the Dart (programming language) | 'LG'-res:LG_Electronics | 'Optimus Vu'-res:LG_Optimus_Vu | 'Dart (programming language)'-res:Dart_(programming_language) | 'operating'-dbo:operatingSystem | 'developer'-dbo:developer"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/LG_Optimus_Vu> <http://dbpedia.org/property/operatingSystem> ?uri . <http://dbpedia.org/resource/Dart_(programming_language)> <http://dbpedia.org/ontology/developer> ?uri} " +"England is the origin of how many things? | 'England'-res:England | 'england'-dbo:province | 'origin'-dbo:origin","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/origin> <http://dbpedia.org/resource/England> . }" +"Where is the county seat of King County, Washington? | 'King County, Washington'-res:King_County,_Washington | 'county seat'-dbo:countySeat"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/King_County,_Washington> <http://dbpedia.org/ontology/countySeat> ?uri } " +"How many people work at the FBI? | 'FBI'-res:Federal_Bureau_of_Investigation | 'work'-dbo:occupation","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/occupation> <http://dbpedia.org/resource/Federal_Bureau_of_Investigation> . }" +"How many people have been trained in an institute located in California? | 'California'-res:California | 'trained'-dbo:coach | 'institute'-dbo:institution | 'located'-dbo:gross","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/California> . ?uri <http://dbpedia.org/property/training> ?x . }" +"Who were fighting the war where the QF Hotchkiss was used? | 'QF Hotchkiss'-res:QF_6-pounder_Hotchkiss | 'fighting'-dbo:combatant | 'war'-dbo:usedInWar","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/QF_6-pounder_Hotchkiss> <http://dbpedia.org/property/usedInWar> ?x . ?x <http://dbpedia.org/ontology/combatant> ?uri . }" +"Name the office holder with predecessor as Samuel W. McCall and office in Massachusetts House of Representatives? | 'W'-res:Vienna | 'Samuel McCall'-res:Samuel_W._McCall | 'Massachusetts House of Representatives'-res:Massachusetts_House_of_Representatives | 'name'-dbp:name | 'office holder'-dbo:place | 'predecessor'-dbo:predecessor | 'office'-dbp:office","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/predecessor> <http://dbpedia.org/resource/Samuel_W._McCall> . ?uri <http://dbpedia.org/property/office> <http://dbpedia.org/resource/Massachusetts_House_of_Representatives> . }" +"In which city is the sister station of WCSE-LP located ? | 'WCSE-LP'-res:WCSE-LP | 'city'-dbo:city | 'sister station'-dbo:sisterStation | 'located'-dbo:position","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/WCSE-LP> <http://dbpedia.org/ontology/sisterStation> ?x . ?x <http://dbpedia.org/property/borough> ?uri . }" +"List the producers who produced movies starring Michael Jackson. | 'produced movies movies starring Michael Jackson'-res:Movies_produced_by_ABC | 'producers'-dbo:author | 'produced'-dbo:wineProduced","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/starring> <http://dbpedia.org/resource/Michael_Jackson> . ?x <http://dbpedia.org/ontology/producer> ?uri . }" +"List the name of the soccer clubs whose chairman is Joan Laporta. | 'Joan Laporta'-res:Joan_Laporta | 'name'-dbp:name | 'soccer clubs'-dbo:clubsRecordGoalscorer | 'chairman'-dbo:chairman","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/chairman> <http://dbpedia.org/resource/Joan_Laporta> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SoccerClub>}" +"Who is the person whose alma mater is Harvard-Westlake School? | 'Harvard-Westlake School'-res:Harvard-Westlake_School | 'person'-dbo:type | 'alma mater'-dbo:almaMater","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/almaMater> <http://dbpedia.org/resource/Harvard-Westlake_School> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}" +"In how many nations can I find people related to the feminist movement? | 'feminist'-res:Feminism | 'movement'-dbo:movement | 'nations'-dbo:nationality","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/movement> <http://dbpedia.org/resource/Feminism> . ?x <http://dbpedia.org/ontology/nationality> ?uri . }" +"With whom is Heinz Kokott a relative to who also served Nazi Army? | 'Heinz Kokott'-res:Heinz_Kokott | 'Nazi Army'-res:Nazi_6th_Army | 'relative'-dbo:relative | 'served'-dbo:regionServed","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/branch> <http://dbpedia.org/resource/Nazi_6th_Army> . ?x <http://dbpedia.org/ontology/relative> ?uri . }" +"Who is the former partner of the figure skater which was the former partner of Brynn Carman ? | 'Brynn Carman'-res:Brynn_Carman | 'former partner'-dbo:spouse | 'figure skater'-dbo:flag | 'former partner'-dbo:spouse","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/formerPartner> <http://dbpedia.org/resource/Brynn_Carman> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/FigureSkater>}" +"How many ships belong to states which has Unitary as government type ? | 'Unitary'-res:Unitary | 'ships'-dbo:shipBeam | 'belong'-dbo:date | 'government type'-dbo:governmentType","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/governmentType> <http://dbpedia.org/resource/Unitary> . ?x <http://dbpedia.org/property/state> ?uri . }" +"Count all the band members who are in Bands which have signed up with Entertainment One Music? | 'Bands'-res:Bands_(neckwear) | 'Entertainment One Music'-res:Entertainment_One_Music | 'are'-dbp:label | 'band member'-dbo:bandMember","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Entertainment_One_Music> . ?x <http://dbpedia.org/ontology/bandMember> ?uri . }" +"Graduates of Somerville College have been in how many political parties? | 'Somerville College'-res:Somerville_College,_Oxford | 'graduates'-dbo:almaMater | 'parties'-dbo:party","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/almaMater> <http://dbpedia.org/resource/Somerville_College,_Oxford> . ?x <http://dbpedia.org/property/party> ?uri . }" +"Give me a count of all the producers of all the movies whose music was done by James Horner? | 'James Horner'-res:James_Horner | 'music'-dbp:music | 'producer'-dbp:producer","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/music> <http://dbpedia.org/resource/James_Horner> . ?x <http://dbpedia.org/ontology/producer> ?uri . }" +"List the notable work of David Isaacs (writer)? | 'David Isaacs (writer)'-res:David_Isaacs_(writer) | 'notable work'-dbo:notableWork"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/David_Isaacs_(writer)> <http://dbpedia.org/ontology/notableWork> ?uri } " +"What is the province of Egypt Nanotechnology Center ? | 'Egypt Nanotechnology Center'-res:Egypt_Nanotechnology_Center | 'province'-dbo:province"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Egypt_Nanotechnology_Center> <http://dbpedia.org/ontology/province> ?uri } " +"Give me the number of home stadiums of teams managed by John Spencer. | 'John Spencer'-res:John_Spencer | 'home stadiums'-dbo:party | 'teams'-dbo:team | 'managed'-dbo:governor","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/manager> <http://dbpedia.org/resource/John_Spencer> . ?x <http://dbpedia.org/ontology/homeStadium> ?uri . }" +"How many people are buried in the Winchester Cathedral? | 'Winchester Cathedral'-res:Winchester_Cathedral | 'buried in'-dbo:restingPlace","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/restingPlace> <http://dbpedia.org/resource/Winchester_Cathedral> . }" +"Name the tv series produced by Stephen Ambrose and Erik Bork? | 'Stephen Ambrose'-res:St._Ambrose_Traversari | 'Erik Bork'-res:Erik_Bork | 'produced'-dbo:producer | 'produced'-dbo:producer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/producer> <http://dbpedia.org/resource/Stephen_Ambrose_Traversari> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" +"For which other teams have the past Boston Bruins members played? | 'Boston Bruins'-res:Boston_Bruins | 'teams'-dbo:formerTeam | 'team'-dbp:playedFor","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/formerTeam> <http://dbpedia.org/resource/Boston_Bruins> . ?x <http://dbpedia.org/property/playedFor> ?uri . }" +"List the Swedish newspaper headquarted in Stockholm ? | 'Swedish newspaper'-res:Sweden | 'Swedish newspaper'-res:Dharitri_(newspaper) | 'Stockholm'-res:Stockholm | 'headquarted'-dbo:headquarter | ''-dbo:country","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Stockholm> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Newspaper>}" +"Those seasons which have been played in Fort Lauderdale Florida now host their games where? | 'Fort Lauderdale Florida'-res:Fort_Lauderdale,_Florida | 'seasons'-dbo:ground | 'played'-dbo:participant | 'host'-dbo:presenter | 'games'-dbo:games","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/ground> <http://dbpedia.org/resource/Fort_Lauderdale,_Florida> . ?x <http://dbpedia.org/property/presenter> ?uri . }" +"What is the political party to which Purnima Banerjee is a member of? | 'Purnima Banerjee'-res:Purnima_Banerjee | 'political party'-dbo:party | 'member'-dbo:arm"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Purnima_Banerjee> <http://dbpedia.org/property/party> ?uri } " +"Which operator of ganz UV is also the nationality of the Gza Horvth ? | 'Ganz uv'-res:Ganz_UV | 'Gza Horvth'-res:GZA | 'operator'-dbo:operator | 'nationality'-dbo:nationality"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ganz_UV> . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/GZA>}" +"Give me a count of movies whose producer is Larry J. Franco? | 'J'-res:J | 'Larry Franco'-res:Larry_J._Franco | 'producer'-dbo:producer | 'movie'-dbo:Film","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/producer> <http://dbpedia.org/resource/Larry_J._Franco> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" +"Which city near Nihoa is the place of death of jim Brady ? | 'Nihoa'-res:Nihoa | 'jim Brady'-res:Jim_Brady_(quarterback) | 'near city'-dbp:nearestCity | 'place death'-dbo:deathPlace"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Nihoa> <http://dbpedia.org/property/nearestCity> ?uri . <http://dbpedia.org/resource/Jim_Brady_(quarterback)> <http://dbpedia.org/ontology/deathPlace> ?uri} " +"How many different genres of games can I find which are compatible with the Commodore 64? | 'I'-res:I | 'Commodore 64'-res:Commodore_64 | 'genres'-dbo:type | 'games'-dbo:games | 'compatible'-dbo:similar","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/computingPlatform> <http://dbpedia.org/resource/Commodore_64> . ?x <http://dbpedia.org/property/genre> ?uri . }" +"In which wars has Steven Palazzo fought? | 'Steven Palazzo'-res:Steven_Palazzo | 'wars'-dbp:battles | 'fought'-dbo:type"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Steven_Palazzo> <http://dbpedia.org/property/battles> ?uri } " +"Which fields' academic journals are found in the US? | 'academic journals'-res:WikiProject_Academic_Journals | 'US'-res:United_States | 'in'-dbo:country | 'fields'-dbp:discipline","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/United_States> . ?x <http://dbpedia.org/property/discipline> ?uri . }" +"What are the television shows whose voices is given by Mona Marshall? | 'Mona Marshall'-res:Mona_Marshall | 'voices'-dbp:voices | 'television show'-dbo:TelevisionShow","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/voices> <http://dbpedia.org/resource/Mona_Marshall> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" +"Name the movie whose director of photography is Gregg Toland and Bernard Herrmann was the music composer? | 'Gregg Toland'-res:Gregg_Toland | 'Bernard Herrmann'-res:Bernard_Herrmann | 'name'-dbp:name | 'movie'-dbo:picture | 'director'-dbo:director | 'photography'-dbo:picture | 'music composer'-dbo:composer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/cinematography> <http://dbpedia.org/resource/Gregg_Toland> . ?uri <http://dbpedia.org/property/musicComposer> <http://dbpedia.org/resource/Bernard_Herrmann> . }" +"How many contries surround the seas on the banks of which is the city of Cancun? | 'Cancun'-res:Cancun_conference_(disambiguation) | 'contries'-dbp:counties | 'surround'-dbo:background | 'seas'-dbo:vein | 'banks'-dbo:series | 'city'-dbo:city","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/hometown> <http://dbpedia.org/resource/Cancun_conference_(disambiguation)> . ?x <http://dbpedia.org/property/cities> ?uri . }" +"Which television shows has sound format as 5.1 surround? | '5.1 surround'-res:5.1_surround_sound | 'format'-dbo:format | 'television show'-dbo:TelevisionShow","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/format> <http://dbpedia.org/resource/5.1_surround_sound> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" +"Who is the producer of the single which was the subsequent work of He's a Liar? | 'He's a Liar'-res:He's_a_Liar | 'producer'-dbo:producer | 'single'-dbo:parent | 'subsequent work'-dbo:subsequentWork","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/He's_a_Liar> <http://dbpedia.org/property/subsequentWork> ?x . ?x <http://dbpedia.org/ontology/producer> ?uri . }" +"Name the television show whose creator is Simon Fuller and presented by Ryan Seacrest? | 'Simon Fuller'-res:Simon_Fuller | 'Ryan Seacrest'-res:Ryan_Seacrest | 'name'-dbp:name | 'television show'-dbo:production | 'creator'-dbo:creator"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/creator> <http://dbpedia.org/resource/Simon_Fuller> . ?uri <http://dbpedia.org/ontology/presenter> <http://dbpedia.org/resource/Ryan_Seacrest> } " +"How many cars can I find related to the cars which have a V8 engine? | 'V8 engine'-res:V8_engine | 'cars'-dbo:management | 'related'-dbo:related | 'cars'-dbo:management | 'engine'-dbo:engine","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/engine> <http://dbpedia.org/resource/V8_engine> . ?x <http://dbpedia.org/ontology/related> ?uri . }" +"Name the person with opponents Ike Clanton and Tom McLaury? | 'opponents Ike Clanton'-res:Dwight_D._Eisenhower | 'Tom McLaury'-res:Tom_McLaury | 'opponents'-dbo:opponent | 'opponents'-dbo:opponent","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/opponent> <http://dbpedia.org/resource/Dwight_D._Eisenhower> . }" +"How many non fiction topics does Thud! deals with? | 'Thud deals'-res:Thud! | 'fiction topics'-dbo:nonFictionSubject","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/nonFictionSubject> <http://dbpedia.org/resource/Thud!> . }" +"In which university did Harlan Mathews study, where Richard Meriil Atkinson went too? | 'Harlan Mathews'-res:Harlan_Mathews | 'atkinson richard'-res:Richard_Merrill_Atkinson | 'study'-dbo:almaMater | 'study'-dbo:almaMater"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Harlan_Mathews> <http://dbpedia.org/property/education> ?uri . <http://dbpedia.org/resource/Richard_Merrill_Atkinson> <http://dbpedia.org/ontology/almaMater> ?uri} " +"What kind of buildings were designed by Pyusawhti? | 'Pyusawhti'-res:Pyusawhti | 'buildings'-dbo:architect | 'designed'-dbo:architect","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/architect> <http://dbpedia.org/resource/Pyusawhti> . ?x <http://dbpedia.org/property/building> ?uri . }" +"What is the owning company of the bank whose parent is Sony Financial ? | 'Sony Financial'-res:Sony_Financial | 'owning'-dbo:owningCompany | 'company'-dbo:company | 'bank'-dbo:number | 'parent'-dbp:parent","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/parent> <http://dbpedia.org/resource/Sony_Financial> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Bank>}" +"Where are the cooper mountain vineyards and Mt. bachelor ski area located? | 'cooper mountain vineyards'-res:Cooper_Mountain_Vineyards | 'Mt bachelor ski area'-res:Mount_Bachelor_ski_area | 'located'-dbo:locatedInArea","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cooper_Mountain_Vineyards> <http://dbpedia.org/property/locationCountry> ?uri . <http://dbpedia.org/resource/Mount_Bachelor_ski_area> <http://dbpedia.org/ontology/locatedInArea> ?uri . }" +"How many tenants are there in the Mercedes Benz Superdome? | 'Mercedes Benz Superdome'-res:Mercedes-Benz_Superdome | 'tenant'-dbo:tenant","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/tenant> <http://dbpedia.org/resource/Mercedes-Benz_Superdome> . }" +"What is the affiliation of the hospital where Alfred Blalock works? | 'hospital'-res:Hospital | 'Alfred Blalock'-res:Alfred_Blalock | 'affiliation'-dbo:affiliation | 'works'-dbo:language","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Alfred_Blalock> <http://dbpedia.org/ontology/affiliation> ?x . ?x <http://dbpedia.org/property/hospital> ?uri . }" +"How many causes of death have been associated with American citizens? | 'American'-res:United_States | 'citizens'-dbp:citizenship | 'death'-dbo:deathCause","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/citizenship> <http://dbpedia.org/resource/United_States> . ?x <http://dbpedia.org/ontology/deathCause> ?uri . }" +"For how many teams have the league players of Czech Extraliga, previously played? | 'Czech Extraliga,'-res:Czech_Republic | 'Czech Extraliga,'-res:Czech_Extraliga | 'league'-dbp:league | 'teams'-dbo:formerTeam","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/league> <http://dbpedia.org/resource/Czech_Extraliga> . ?x <http://dbpedia.org/ontology/formerTeam> ?uri . }" +"Artists trained at art students league NY are buried where? | 'NY'-res:Nymphicula_banauensis | 'art students league'-res:Lithuanian_Students_Basketball_League | 'artists'-dbo:rkdArtistsId | 'trained'-dbo:coach | 'buried'-dbo:family","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/burries> <http://dbpedia.org/resource/New_York> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Artist>}" +"What is the location of death of the skier who was the bronze medalist of Alpine skiing at the 1964 Winter Olympics Men's slalom ? | 'Alpine skiing at the 1964 Winter Olympics Men's slalom'-res:Alpine_skiing_at_the_1964_Winter_Olympics_–_Men's_slalom"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Alpine_skiing_at_the_1964_Winter_Olympics_–_Men's_slalom> <http://dbpedia.org/property/bronzeMedalist> ?uri } " +"In which races did Mouse Morris take part? | 'Mouse Morris'-res:Mouse_Morris | 'race'-dbp:race"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Mouse_Morris> <http://dbpedia.org/property/race> ?uri } " +"Who are the writers of South Park: The Stick of Truth? | 'South Park: The Stick of Truth'-res:South_Park:_The_Stick_of_Truth | 'writers'-dbo:writer"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/South_Park:_The_Stick_of_Truth> <http://dbpedia.org/ontology/writer> ?uri } " +"What do typically NGOs work for? | 'typically NGOs work'-res:Typically_Tropical","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/type> <http://dbpedia.org/resource/Typically_Tropical> . }" +"How many universities participate in the NCAA Division I Football Bowl Subdivision? | 'universities'-res:Universities_Ireland | 'NCAA'-res:National_Collegiate_Athletic_Association_(Philippines) | 'Division I Football Bowl Subdivision'-res:NCAA_Division_I_Football_Bowl_Subdivision | 'I'-res:I | 'NCAA Division Football Bowl Subdivision'-res:NCAA_Division_I_Football_Bowl_Subdivision | 'participate'-dbo:participant","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/league> <http://dbpedia.org/resource/NCAA_Division_I_Football_Bowl_Subdivision> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/University>}" +"Give me a count of companies located in Texas ? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'Texas'-res:Texas | 'located'-dbo:locationCity"," SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/locationCity> <http://dbpedia.org/resource/Texas> } " +"Who is the common prime minster of William Deaner and mark Latham ? | 'William Deaner'-res:William_Deane | 'mark Latham'-res:Mark_Latham | 'mark'-dbo:type"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/William_Deane> <http://dbpedia.org/property/primeminister> ?uri . <http://dbpedia.org/resource/Mark_Latham> <http://dbpedia.org/ontology/type> ?uri} " +"How many games are played at universities in Metro Manilla? | 'Metro Manill'-res:Metro_Manila | 'games'-dbo:games | 'played'-dbo:portrayer","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/campus> <http://dbpedia.org/resource/Metro_Manila> . ?x <http://dbpedia.org/property/team> ?uri . }" +"Which mainter of Cheasty Boulevard South is also the county seat of the King County, Washingtonsu ? | 'Cheasty Boulevard South'-res:Cheasty_Boulevard_South | 'King County, Washingtonsu'-res:King_County,_Washington | 'mainter'-dbo:owner | 'county seat'-dbo:countySeat"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cheasty_Boulevard_South> <http://dbpedia.org/ontology/owner> ?uri . <http://dbpedia.org/resource/King_County,_Washington> <http://dbpedia.org/property/countySeat> ?uri} " +"What are the largest cities in each of the destinations of TranStar Airlines? | 'destinations'-res:Destinations_Academy | 'TranStar Airlines'-res:TranStar_Airlines | 'destination'-dbo:destination | 'largest'-dbo:largestCity","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/TranStar_Airlines> <http://dbpedia.org/property/destinations> ?x . ?x <http://dbpedia.org/ontology/largestCity> ?uri . }" +"Which writer is famous for works written by Neil Gaiman? | 'Neil Gaiman'-res:Neil_Gaiman | 'written by'-dbp:writers | 'works'-dbo:notableWork","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/writers> <http://dbpedia.org/resource/Neil_Gaiman> . ?x <http://dbpedia.org/ontology/notableWork> ?uri . }" +"Who was in youth clubs of FC Barcelona and Newell's Old Boys? | 'FC Barcelona'-res:FC_Barcelona | 'Newell's Old Boys'-res:Newell's_Old_Boys | 'youth clubs'-dbp:youthclubs | 'youth clubs'-dbp:youthclubs","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/youthclubs> <http://dbpedia.org/resource/FC_Barcelona> . }" +"For which country did Alexander Lippisch design airplanes? | 'Alexander Lippisch design airplanes'-res:Alexander_Lippisch | 'country'-dbo:country"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/designer> <http://dbpedia.org/resource/Alexander_Lippisch> } " +"What is the religion of the relatives of Carmela Soprano ? | 'Carmela Soprano'-res:Carmela_Soprano | 'religion'-dbo:religion | 'relatives'-dbo:relative"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Carmela_Soprano> <http://dbpedia.org/ontology/relative> ?uri } " +"In all the grand prixes where the first team was Scuderia Ferrari, who all were the pole drivers? | 'Scuderia Ferrari'-res:Scuderia_Ferrari | 'grand prixes'-dbo:grandsire | 'team'-dbo:team | 'pole drivers'-dbp:drivers","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/firstTeam> <http://dbpedia.org/resource/Scuderia_Ferrari> . ?x <http://dbpedia.org/ontology/poleDriver> ?uri . }" +"What is the citizenship of Erastus Wiman ? | 'Erastus Wiman'-res:Erastus_Wiman | 'citizenship'-dbo:citizenship"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Erastus_Wiman> <http://dbpedia.org/ontology/citizenship> ?uri } " +"What are some awards given to the french people? | 'awards'-dbo:award | 'french'-dbo:channel","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/nationality> <http://dbpedia.org/resource/French_people> . ?x <http://dbpedia.org/ontology/award> ?uri . }" +"Name the district of Robert William Wilcox ? | 'Robert William Wilcox'-res:Robert_William_Wilcox | 'name'-dbp:name | 'district'-dbo:district"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Robert_William_Wilcox> <http://dbpedia.org/ontology/district> ?uri } " +"Tandem Computers is the subsidiary of which company? | 'tandem Computers'-res:Tandem_Computers | 'subsidiary'-dbo:subsidiary | 'company'-dbo:company","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/subsidiary> <http://dbpedia.org/resource/Tandem_Computers> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}" +"What are the movies whose director of photography is Jordan Cronenweth? | 'Jordan Cronenweth'-res:Jordan_Cronenweth | 'movies'-dbo:film | 'director'-dbo:director | 'photography'-dbo:picture","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/cinematography> <http://dbpedia.org/resource/Jordan_Cronenweth> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" +"Which river ends at Thames Estuary and North Sea? | 'Thames Estuary'-res:Thames_Estuary | 'North Sea'-res:North_Sea | 'river'-dbo:river | 'ends'-dbo:fate","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/riverServed> <http://dbpedia.org/resource/Thames_Estuary> . ?uri <http://dbpedia.org/property/riverMouth> <http://dbpedia.org/resource/North_Sea> . }" +"How many companies are located in Toronto ? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'Toronto'-res:Toronto | 'located'-dbo:locatedInArea","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/locationCity> <http://dbpedia.org/resource/Toronto> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}" +"What are the movies whose editor died in Westwood, Los Angeles? | 'Westwood, Los Angeles'-res:Westwood,_Los_Angeles | 'died in'-dbo:deathPlace | 'editor'-dbo:editing","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/deathPlace> <http://dbpedia.org/resource/Westwood,_Los_Angeles> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" +"In which movies directed by Orson Welles has Bernard Herrmann as music composer ? | 'Bernard Herrmann'-res:Bernard_Herrmann | 'Orson Welles'-res:Orson_Welles | 'movies'-dbo:film | 'directed'-dbo:principal | 'music composer'-dbo:musicComposer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/musicComposer> <http://dbpedia.org/resource/Bernard_Herrmann> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" +"Who is the builder of Presidio Santa Cruz de Terrenate ? | 'Presidio Santa Cruz de Terrenate'-res:Presidio_Santa_Cruz_de_Terrenate | 'builder'-dbo:builder"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Presidio_Santa_Cruz_de_Terrenate> <http://dbpedia.org/ontology/builder> ?uri } " +"In which areas is the radio station broadcasted which is a sister station of WXME ? | 'WXME'-res:WXME | 'radio station'-dbo:plant | 'broadcasted'-dbo:state | 'sister station'-dbo:sisterStation"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/WXME> <http://dbpedia.org/ontology/sisterStation> ?uri } " +"How many shows are aired on Comedy Central? | 'Comedy Central'-res:Comedy_Central | 'shows'-dbo:place | 'aired'-dbo:flag","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/network> <http://dbpedia.org/resource/Comedy_Central> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" +"What are Monrow Carell Jr Children Hospital and Vanderbilt University Medical Center both affiliated with? | 'vanderbilt hospital children'-res:Monroe_Carell_Jr._Children's_Hospital_at_Vanderbilt | 'Vanderbilt University Medical Center'-res:Vanderbilt_University_Medical_Center | 'affiliated'-dbp:affiliation | 'affiliated'-dbp:affiliation","" +"How many politicians are in the US Senate? | 'US Senate'-res:United_States_Senate","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/office> <http://dbpedia.org/resource/United_States_Senate> . }" +"Name the fictional character whose relatives are Huey, Dewey, and Louie and belongs to Duck family ? | 'Huey, Dewey, and Louie'-res:Huey,_Dewey,_and_Louie | 'Duck family'-res:Duck_family_(Disney) | 'name'-dbp:name | 'fictional character'-dbo:party | 'relatives'-dbo:relative | 'belongs'-dbp:date","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/relatives> <http://dbpedia.org/resource/Huey,_Dewey,_and_Louie> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/FictionalCharacter>}" +"What is the bloomington viaduct built to cross? | 'bloomington viaduct'-res:Bloomington_Viaduct | 'cross'-dbp:crosses"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bloomington_Viaduct> <http://dbpedia.org/property/crosses> ?uri } " +"How many politicians reside in Cape Town? | 'politicians'-res:Politicians_of_The_Wire | 'Cape Town'-res:Cape_Town | 'reside'-dbp:residence","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/residence> <http://dbpedia.org/resource/Cape_Town> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/OfficeHolder>}" +"What are some products of the company whose parent is BBC? | 'BBC'-res:BBC | 'products'-dbo:author | 'company'-dbo:company | 'parent'-dbo:parent","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/parent> <http://dbpedia.org/resource/BBC> . ?x <http://dbpedia.org/property/products> ?uri . }" +"Which associat of Martin Pugh is also married to Alana Stewert ? | 'Martin Pugh'-res:Martin_Pugh | 'Alana Stewert'-res:Alana_Stewart | 'associat'-dbo:team | 'married'-dbp:spouse"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Martin_Pugh> <http://dbpedia.org/property/spouse> ?uri . <http://dbpedia.org/resource/Alana_Stewart> <http://dbpedia.org/ontology/associatedActs> ?uri} " +"How many people played for Newell's Old Boys? | 'Newell'-res:Newell | 'Old Boys'-res:Old_Boys | 'played'-dbo:coach","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/coach> <http://dbpedia.org/resource/Newell> . }" +"What is the draft team of the Antoine Bibeau and also has player named Nathan Dempsey ? | 'Antoine Bibeau'-res:Antoine_Bibeau | 'Nathan Dempsey'-res:Nathan_Dempsey | 'draft team'-dbp:draftTeam | 'team'-dbp:playedFor"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Antoine_Bibeau> <http://dbpedia.org/property/draftTeam> ?uri . <http://dbpedia.org/resource/Nathan_Dempsey> <http://dbpedia.org/ontology/playedFor> ?uri} " +"List the broadcast area of the TV stations which also serves in Agalga ? | 'TV'-res:Tv_test_pattern | 'Agalga'-res:Galga | 'broadcast area'-dbo:broadcastArea | 'stations'-dbo:order | 'serves'-dbo:order"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Agalga> <http://dbpedia.org/ontology/broadcastArea> ?uri } " +"Whose deputy is Neil Brown? | 'Neil Brown'-res:Neil_Brown_(Australian_politician) | 'deputy'-dbo:deputy"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/deputy> <http://dbpedia.org/resource/Neil_Brown_(Australian_politician)> } " +"What is debut team of the baseball players who died in Los Angeles? | 'baseball players'-res:Major_League_Baseball_Players_Association | 'Los Angeles'-res:Los_Angeles | 'debut team'-dbo:team | 'died'-dbp:deathPlace","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/placeOfDeath> <http://dbpedia.org/resource/Los_Angeles> . ?x <http://dbpedia.org/ontology/debutTeam> ?uri . }" +"List all the operators of the train who operates in Budapest ? | 'Budapest'-res:Budapest | 'operators'-dbo:operator | 'train'-dbo:training | 'operates'-dbo:operator"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Budapest> <http://dbpedia.org/ontology/operator> ?uri } " +"What are the awards won by the producer of Puss in Boots (film)? | 'Puss in Boots (film)'-res:Puss_in_Boots_(1922_film) | 'awards'-dbo:budget | 'won'-dbo:award | 'producer'-dbo:producer","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Puss_in_Boots_(1922_film)> <http://dbpedia.org/property/producer> ?x . ?x <http://dbpedia.org/ontology/award> ?uri . }" +"How many politicians are in the militia? | 'militia'-res:Militia | 'militia'-dbo:garrison","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/garrison> <http://dbpedia.org/resource/Militia> . }" +"In which wars were people from the Saudi Arabian ministry of defense involved? | 'Saudi Arabian'-res:Minister_of_Defense_(Saudi_Arabia) | 'wars'-dbp:battles | 'defense'-dbo:garrison | 'involved'-dbo:result | ''-dbo:country","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/garrison> <http://dbpedia.org/resource/Minister_of_Defense_(Saudi_Arabia)> . ?x <http://dbpedia.org/property/battles> ?uri . }" +"Under which US president was a politician in opposition of John G Schmitz? | 'US'-res:United_States | 'G'-res:G | 'John Schmitz'-res:John_G._Schmitz | 'president'-dbo:president | 'politician'-dbo:party | 'opposition'-dbo:opponent","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/opponent> <http://dbpedia.org/resource/John_G._Schmitz> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/OfficeHolder>}" +"Who are the associated musical artist of the artists of band Shorty Rogers? | 'associated musical artist'-res:The_Artist_(film) | 'band Shorty Rogers'-res:Shorty_Rogers | 'associated band'-dbo:associatedBand | 'associated musical artist'-dbo:associatedMusicalArtist","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/associatedActs> <http://dbpedia.org/resource/Shorty_Rogers> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MusicalArtist>}" +"Who were the american football players who played for Dallas Cowboys? | 'american football players'-res:Les_Joueurs_de_football | 'Dallas Cowboys'-res:Dallas_Cowboys | 'played for'-dbo:team | 'american football player'-dbo:AmericanFootballPlayer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/team> <http://dbpedia.org/resource/Dallas_Cowboys> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/AmericanFootballPlayer>}" +"Which appliance's CPU is Cell (microprocessor) and predecessor is PlayStation 2? | 'CPU'-res:Scorpion_(CPU) | 'Cell (microprocessor)'-res:Cell_(microprocessor) | 'PlayStation 2'-res:PlayStation_2 | 'appliance'-dbp:engine | 'predecessor'-dbo:predecessor","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/microprocessor> <http://dbpedia.org/resource/Cell_(microprocessor)> . ?uri <http://dbpedia.org/property/predecessor> <http://dbpedia.org/resource/PlayStation_2> . }" +"People who debuted from Houston Astros have played in which clubs? | 'Houston Astros'-res:Houston_Astros | 'debuted'-dbo:debutTeam | 'played'-dbo:participant | 'clubs'-dbo:college","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/debutTeam> <http://dbpedia.org/resource/Houston_Astros> . ?x <http://dbpedia.org/property/name> ?uri . }" +"Radios on what topics can be tuned in to in Washington DC? | 'topics'-res:Topics_in_Early_Childhood_Special_Education | 'DC'-res:Dc_(computer_program) | 'Washington'-res:Washington | 'radios'-dbo:capital | 'tuned'-dbo:number","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/capital> <http://dbpedia.org/resource/Washington> . ?x <http://dbpedia.org/property/subject> ?uri . }" +"Give me some shows related to the ones created by Russell Davies | 'Russell Davies'-res:Russell_T_Davies | 'shows'-dbo:place | 'related'-dbo:related | 'created'-dbo:creator","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/creator> <http://dbpedia.org/resource/Russell_T_Davies> . ?uri <http://dbpedia.org/ontology/related> ?x . }" +"What is the territory of the conflict whose commander is Feng Zicai? | 'Feng Zicai'-res:Feng_Zicai | 'territory'-dbo:territory | 'conflict'-dbo:battle | 'commander'-dbo:commander","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/commander> <http://dbpedia.org/resource/Feng_Zicai> . ?x <http://dbpedia.org/property/territory> ?uri . }" +"Which club of Michael Springer is also the parent organization of Syracuse University press ? | 'Michael Springer'-res:Michael_Springer | 'Syracuse University press'-res:Syracuse_University_Press | 'club'-dbo:club | 'parent organization'-dbp:parentOrganization"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Michael_Springer> <http://dbpedia.org/property/parentOrganization> ?uri . <http://dbpedia.org/resource/Syracuse_University_Press> <http://dbpedia.org/ontology/club> ?uri} " +"Which company created BASIC and Language Integrated Query ? | 'BASIC'-res:BASIC | 'Language Integrated Query'-res:Language_Integrated_Query | 'company'-dbo:company | 'created'-dbo:designer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/designer> <http://dbpedia.org/resource/BASIC> . ?uri <http://dbpedia.org/property/company> <http://dbpedia.org/resource/Language_Integrated_Query> . }" +"Whihc successor of McDonnell Douglas was built bu Delta 3 ? | 'whihc successor'-res:The_Successor_(film) | 'McDonnell Douglas'-res:McDonnell_Douglas | 'bu Delta 3'-res:Bharathiar_University | 'built'-dbo:numberBuilt"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/McDonnell_Douglas> <http://dbpedia.org/property/successor> ?uri . <http://dbpedia.org/resource/Bharathiar_University> <http://dbpedia.org/ontology/builder> ?uri} " +"Where did some of the matches take place where Columbus Crew SC played? | 'SC'-res:SC | 'Columbus Crew'-res:Columbus_Crew_SC | 'matches'-dbp:matches | 'place'-dbo:place | 'played'-dbo:combatant","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Columbus_Crew_SC> <http://dbpedia.org/property/place> ?x . ?x <http://dbpedia.org/ontology/combatant> ?uri . }" +"Count the number of cities around the American Mediterranean Sea? | 'American Mediterranean Sea'-res:Organization_of_American_States | 'American Mediterranean Sea'-res:American_Mediterranean_Sea | 'count'-dbo:type | 'cities'-dbp:cities | ''-dbo:country"," SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/American_Mediterranean_Sea> <http://dbpedia.org/property/cities> ?uri } " +"Who produced the TV shows for Fremantle Media? | 'Fremantle Media'-res:FremantleMedia | 'produced'-dbo:manufacturer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/manufacturer> <http://dbpedia.org/resource/FremantleMedia> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" +"What is the home stadium of the soccer club seasons whose chairman is Merritt Paulson? | 'soccer club seasons'-res:Mooroolbark_Soccer_Club | 'Merritt Paulson'-res:Merritt_Paulson | 'home stadium'-dbp:ground | 'chairman'-dbo:chairman","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/chairman> <http://dbpedia.org/resource/Merritt_Paulson> . ?x <http://dbpedia.org/property/homeStadium> ?uri . }" +"How many movies did Michael Deeley produce? | 'Michael Deeley'-res:Michael_Deeley | 'produce'-dbp:producer | 'movie'-dbo:Film","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/producer> <http://dbpedia.org/resource/Michael_Deeley> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" +"What awards have been given to the anyone who raced in the Lawrence Realization Stakes? | 'Lawrence Realization Stakes'-res:Lawrence_Realization_Stakes | 'race'-dbp:race | 'awards'-dbo:honours","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/race> <http://dbpedia.org/resource/Lawrence_Realization_Stakes> . ?x <http://dbpedia.org/ontology/honours> ?uri . }" +"Count the number of movies whose editors were born in UK? | 'UK'-res:United_Kingdom | 'count'-dbo:country | 'movies'-dbo:film | 'editors'-dbo:editor | 'born'-dbo:birthPlace"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/birthPlace> <http://dbpedia.org/resource/United_Kingdom> . ?uri <http://dbpedia.org/ontology/editing> ?uri }" +"What is the television show whose cast members are Jeff Conaway and Jason Carter? | 'Jeff Conaway'-res:Jeff_Conaway | 'Jason Carter'-res:Jason_Carter_(actor) | 'television show'-dbo:transmission | 'cast members'-dbo:type","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/starring> <http://dbpedia.org/resource/Jeff_Conaway> . ?uri <http://dbpedia.org/ontology/televisionShow>}" +"Who founded the city at the end of the Pittsburgh Line route? | 'Pittsburgh Line'-res:Pittsburgh_Line | 'founded'-dbo:founder | 'city'-dbo:city | 'end'-dbp:end","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pittsburgh_Line> <http://dbpedia.org/property/end> ?x . ?x <http://dbpedia.org/ontology/foundationCity> ?uri . }" +"How many games have a publisher based in US? | 'US'-res:United_States | 'games'-dbo:games | 'publisher'-dbo:publisher | 'based'-dbo:origin","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/origin> <http://dbpedia.org/resource/United_States> . ?x <http://dbpedia.org/property/publisher> ?uri . }" +"How many people have played for the NBA? | 'NBA'-res:National_Basketball_Association | 'played'-dbo:participant","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/league> <http://dbpedia.org/resource/National_Basketball_Association> . }" +"What is the nationality of the golf player who won the 2002 Players Championship ? | '2002 Players Championship'-res:2002_Players_Championship | 'nationality'-dbo:nationality | 'golf player'-dbo:participant | 'won'-dbo:award"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/2002_Players_Championship> <http://dbpedia.org/property/nationality> ?uri } " +"Who penned Emma and Jane Austen in Manhatten? | 'Jane Austen in Manhatten'-res:Jane_Austen_in_Manhattan | 'Emma'-res:Emma_(novel) | 'penned'-dbo:colour","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jane_Austen_in_Manhattan> <http://dbpedia.org/ontology/colour> ?uri . <http://dbpedia.org/resource/Emma_(novel)> <http://dbpedia.org/property/author> ?uri . }" +"Where did the people canonized by John Paul II die? | 'John Paul II'-res:Pope_John_Paul_II | 'canonized by'-dbp:canonizedBy | 'die'-dbp:deathPlace","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/canonizedBy> <http://dbpedia.org/resource/Pope_John_Paul_II> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}" +"Who has produced movies that have a James Horner score? | 'James Horner score'-res:James_Horner | 'produced'-dbo:wineProduced | 'movies'-dbo:film","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/music> <http://dbpedia.org/resource/James_Horner> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" +"Which shows are voiced be US citizens? | 'US'-res:United_States | 'shows'-dbo:place | 'voiced'-dbo:state | 'citizens'-dbp:country","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/nationality> <http://dbpedia.org/resource/United_States> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" +"Count the different places where the people died, who were born in England? | 'died,'-res:Wulfstan_(died_1095) | 'England'-res:England | 'born'-dbp:placeOfBirth | 'died'-dbp:placeOfDeath","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/England> . ?x <http://dbpedia.org/property/placeOfDeath> ?uri . }" +"What are some relatives of Battle of the Bulge veterans? | 'Battle of the Bulge veterans'-res:Battle_of_the_Bulge_(film) | 'relatives'-dbo:languageFamily","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/Battle_of_the_Bulge_(film)> . ?x <http://dbpedia.org/ontology/relation> ?uri . }" +"Who made the Y block engine and the SHO V8 engine? | 'Y'-res:Y | 'SHO'-res:Sho | 'V8 engine'-res:V8_engine | 'V8'-res:V8_(beverage) | 'SHO engine'-res:Ford_SHO_V8_engine | 'made'-dbo:manufacturer | 'made'-dbo:manufacturer","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Sho> <http://dbpedia.org/ontology/engine> ?uri . <http://dbpedia.org/resource/V8_engine> <http://dbpedia.org/property/manufacturer> ?uri . }" +"How many different genres of games are produced by Blizzard? | 'blizzard'-res:Blizzard_Entertainment | 'produced'-dbo:developer | 'genre'-dbp:genre","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/developer> <http://dbpedia.org/resource/Blizzard_Entertainment> . ?x <http://dbpedia.org/property/genre> ?uri . }" +"How many things are located in Ridgewood, New Jersey? | 'Ridgewood, New Jersey'-res:Ridgewood,_New_Jersey | 'located'-dbo:locatedInArea","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/locatedInArea> <http://dbpedia.org/resource/Ridgewood,_New_Jersey> . }" +"How many times has Jeff Conaway been casted? | 'Jeff Conaway'-res:Jeff_Conaway | 'casted'-dbo:starring","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Jeff_Conaway> . }" +"who are some miss michigan usa? | 'michigan usa'-res:Miss_Michigan_USA"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/placeOfBirth> <http://dbpedia.org/resource/Michigan_USA> } " +"What is the regional radio sports network associated with? | 'regional radio sports network'-res:Regional_Radio_Sports_Network | 'associated'-dbo:associate"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/area> <http://dbpedia.org/resource/Regional_Radio_Sports_Network> } " +"List the fields of Sylvain Lvi ? | 'Sylvain Lvi'-res:LVI | 'fields'-dbo:stadium"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Sylvain_Lvi> <http://dbpedia.org/property/fields> ?uri } " +"Where do the airlines garrisoned at Manchester airport fly to? | 'Manchester airport'-res:Manchester_Airport | 'airlines'-dbo:icaoAirlineCode | 'garrisoned'-dbo:garrison | 'fly'-dbp:speed"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/targetAirport> <http://dbpedia.org/resource/Manchester_Airport> } " +"Who are the associate musical artists of Dalma Kovcs ? | 'Dalma Kovcs'-res:Dalma_Kovács | 'associate musical'-dbo:associatedMusicalArtist"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dalma_Kovács> <http://dbpedia.org/ontology/associatedMusicalArtist> ?uri } " +"Count the number of different religions that field marshals have followed? | 'count'-dbo:time | 'religions'-dbo:religion | 'field marshals'-dbo:stadium","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/field> <http://dbpedia.org/resource/Field_Marshal> . ?x <http://dbpedia.org/ontology/religion> ?uri . }" +"What cars were built upon the cars which were assembled in Canada? | 'Canada'-res:Canada | 'cars'-dbo:management | 'built'-dbo:ground | 'cars'-dbo:management | 'assembled'-dbp:assembly","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/assembly> <http://dbpedia.org/resource/Canada> . ?x <http://dbpedia.org/ontology/carries> ?uri . }" +"How many guests have been there on broadway? | 'on broadway'-res:On_Broadway_(Smash) | 'guests'-dbp:guests","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/hometown> <http://dbpedia.org/resource/On_Broadway_(Smash)> . ?x <http://dbpedia.org/property/guests> ?uri . }" +"How many factions have fought when Egushawa was a commander? | 'Egushawa'-res:Egushawa | 'factions'-dbo:movement | 'fought'-dbo:type | 'commander'-dbo:commander","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/commander> <http://dbpedia.org/resource/Egushawa> . ?x <http://dbpedia.org/property/combatant> ?uri . }" +"What is the layout of the automobiles designed by Olivier Boulay? | 'Olivier Boulay'-res:Olivier_Boulay | 'layout'-dbo:layout | 'automobiles'-dbo:vehicle | 'designed'-dbo:designer","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/designer> <http://dbpedia.org/resource/Olivier_Boulay> . ?x <http://dbpedia.org/ontology/layout> ?uri . }" +"What people were born in Ridgewood, New Jersey? | 'Ridgewood, New Jersey'-res:Ridgewood,_New_Jersey | 'born'-dbo:birthPlace","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Ridgewood,_New_Jersey> . }" +"Who have rented the stadium operated by Maple Leaf S&E? | 'Maple Leaf S&E'-res:Maple_Leaf_Sports_&_Entertainment | 'rented'-dbp:center | 'stadium'-dbo:stadium | 'operated'-dbo:staff","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/operator> <http://dbpedia.org/resource/Maple_Leaf_Sports_&_Entertainment> . ?x <http://dbpedia.org/ontology/tenant> ?uri . }" +"What are the main interests of Timothy Morton? | 'Timothy Morton'-res:Timothy_Morton | 'main interests'-dbp:mainInterests"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Timothy_Morton> <http://dbpedia.org/property/mainInterests> ?uri } " +"Count the awards won by the people who graduated from the National and Kapodistrian University of Athens. | 'National'-res:National | 'Kapodistrian University of Athens'-res:National_and_Kapodistrian_University_of_Athens | 'count'-dbo:country | 'awards'-dbo:award | 'won'-dbo:city | 'graduated'-dbo:effectiveRadiatedPower","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/almaMater> <http://dbpedia.org/resource/National_and_Kapodistrian_University_of_Athens> . ?x <http://dbpedia.org/property/awards> ?uri . }" +"How many games are played at universities affiliated with the Association of Southeast Asian Institutions of Higher Learning? | 'universities'-res:Universities_Ireland | 'Association of Southeast Asian Institutions of Higher Learning'-res:Association_of_Southeast_Asian_Institutions_of_Higher_Learning | 'games'-dbo:games | 'played'-dbo:portrayer | 'affiliated'-dbo:related","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/education> <http://dbpedia.org/resource/Association_of_Higher_Learning> . ?x <http://dbpedia.org/ontology/team> ?uri . }" +"Who studied in universities located in suburbs? | 'universities'-res:Universities_Ireland | 'suburbs'-res:Suburbs_(The_Suburbs_album) | 'studied'-dbo:course | 'located'-dbo:position","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/location> <http://dbpedia.org/resource/Suburb> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/University>}" +"What all are written in the C programming language? | 'C programming language'-res:C_(programming_language) | 'written'-dbp:writtenIn | 'programming language'-dbp:programmingLanguage"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/programmingLanguage> <http://dbpedia.org/resource/C_(programming_language)> } " +"Count the number of artists in the Cirque du Soleil discography? | 'Cirque du Soleil discography'-res:Cirque_du_Soleil_discography | 'count'-dbo:type | 'artists'-dbp:artist","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/artist> <http://dbpedia.org/resource/Cirque_du_Soleil_discography> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Artist>}" +"What are the movies whose director is Orson Welles? | 'Orson Welles'-res:Orson_Welles | 'director'-dbp:director | 'movie'-dbo:Film","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/director> <http://dbpedia.org/resource/Orson_Welles> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" +"which planet was discovered by Urbain Le Verrier? | 'Urbain Le Verrier'-res:Urbain_Le_Verrier | 'discovered by'-dbo:discoverer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/discoverer> <http://dbpedia.org/resource/Urbain_Le_Verrier> . }" +"?What are the airline hubs of Cascade Airways | 'What'-res:What | 'Cascade Airways'-res:Cascade_Airways | 'hubs'-dbp:hubs"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cascade_Airways> <http://dbpedia.org/property/ideology> ?uri } " +"How many rivers are crossed by different Box Girder bridges? | 'Box Girder bridge'-res:Box_girder_bridge | 'rivers'-dbo:river | 'crossed'-dbo:crosses","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/crosses> <http://dbpedia.org/resource/Box_girder_bridge> . ?x <http://dbpedia.org/ontology/river> ?uri . }" +"Count the number of members of the organization which have Austria as one of the member ? | 'Austria'-res:Austria | 'count'-dbo:country | 'members'-dbo:family | 'organization'-dbp:house | 'member'-dbo:membership"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/party> <http://dbpedia.org/resource/Austria> . ?x <http://dbpedia.org/property/membership> ?uri }" +"List the other members of the team where Jason Hayne currently plays? | 'Jason Hayne'-res:Jason_Hayne | 'members'-dbo:part | 'team'-dbo:team | 'plays'-dbo:plays"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jason_Hayne> <http://dbpedia.org/ontology/formerTeam> ?uri } " +"How many groups have fought in wars where Richard Taylor fought too? | 'Richard Taylor'-res:Richard_Taylor_(colonel) | 'fought'-dbo:type | 'wars'-dbp:battles | 'fought'-dbo:type","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/commander> <http://dbpedia.org/resource/Richard_Taylor_(colonel)> . ?x <http://dbpedia.org/property/battles> ?uri . }" +"What are the albums whose artists have performed with the Tangerine Dream? | 'Tangerine Dream'-res:Tangerine_Dream | 'albums'-dbo:album | 'artists'-dbp:artist | 'performed'-dbo:artist","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/artist> <http://dbpedia.org/resource/Tangerine_Dream> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Artist>}" +"List some writers which speak one of the Germanic languages. | 'Germanic languages'-res:Germanic_languages | 'writers'-dbo:writer | 'speak'-dbo:language","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/language> <http://dbpedia.org/resource/Germanic_languages> . ?uri <http://dbpedia.org/ontology/writer> ?x . }" +"ITV employes how many people? | 'ITV'-res:ITV_(TV_network) | 'employes'-dbp:employer","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/employer> <http://dbpedia.org/resource/ITV_(TV_network)> . }" +"What has Carl Sagan written his books about? | 'Carl Sagan'-res:Carl_Sagan | 'written'-dbo:writer | 'books'-dbo:volume"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/writer> <http://dbpedia.org/resource/Carl_Sagan> } " +"Who voiced in Peanuts Motion Comics and The Peanuts Movie? | 'Peanuts Motion Comics'-res:Peanuts_Motion_Comics | 'The Peanuts Movie'-res:The_Peanuts_Movie | 'voiced'-dbp:voice","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/voice> <http://dbpedia.org/resource/Peanuts_Motion_Comics> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" +"Who is the owner of the bank where Thomas Secunda works ? | 'Thomas Secunda'-res:Thomas_Secunda | 'owner'-dbo:owner | 'bank'-dbo:order | 'works'-dbo:language"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Thomas_Secunda> <http://dbpedia.org/ontology/owner> ?uri } " +"Who founded a company which served Mid Wales ? | 'Mid Wales'-res:Mid_Wales | 'served'-dbo:regionServed | 'founded'-dbo:foundedBy","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/regionServed> <http://dbpedia.org/resource/Mid_Wales> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}" +"British people have edited which movies? | 'British'-res:United_Kingdom | 'british'-dbo:animal | 'edited'-dbo:editor | 'movies'-dbo:film","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/nationality> <http://dbpedia.org/resource/British_people> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" +"Who are some US colonels? | 'US'-res:United_States | 'colonels'-dbo:distance"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/placeOfBirth> <http://dbpedia.org/resource/United_States> } " +"Where did Steve Romeo dies ? | 'Steve Romeo'-res:Steve_Romeo | 'dies'-dbo:deathPlace"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Steve_Romeo> <http://dbpedia.org/ontology/deathPlace> ?uri } " +"How many universities are in the National Collegiate Athletic Association? | 'universities'-res:Universities_Ireland | 'National Collegiate Athletic Association'-res:National_Collegiate_Athletic_Association | 'athletic'-dbo:athletics","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/athletics> <http://dbpedia.org/resource/National_Collegiate_Athletic_Association> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/University>}" +"Which company developed the language designed by Lars Bak? | 'Lars Bak'-res:Lars_Bak_(computer_programmer) | 'company'-dbo:company | 'developed'-dbo:leader | 'language'-dbo:language | 'designed'-dbo:designer","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/designer> <http://dbpedia.org/resource/Lars_Bak_(computer_programmer)> . ?x <http://dbpedia.org/property/language> ?uri . }" +"Which country gave birth to the Lemberger LD20b and Start+Flug H101 aircrafts? | 'Lemberger LD20b'-res:Lemberger_LD20b | 'H101'-res:H101 | 'Start+Flug aircrafts'-res:Karnit_Flug | 'country'-dbo:country | 'birth'-dbo:origin","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lemberger_LD20b> <http://dbpedia.org/property/engine> ?uri . <http://dbpedia.org/resource/H101> <http://dbpedia.org/ontology/origin> ?uri . }" +"What are some things people born in Louisiana are famous for? | 'Louisiana'-res:Louisiana | 'born'-dbp:placeOfBirth | 'famous for'-dbp:knownFor","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/placeOfBirth> <http://dbpedia.org/resource/Louisiana> . }" +"Who gave the musical score of 9 to 5 (musical) ? | '9 to 5 (musical)'-res:9_to_5_(musical) | 'musical'-dbo:musicBy"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/9_to_5_(musical)> <http://dbpedia.org/property/musicBy> ?uri } " +"Count all that was built by a company whose leader is Kazuo Hirai? | 'Kazuo Hirai'-res:Kazuo_Hirai | 'count'-dbo:type | 'built'-dbo:numberBuilt | 'company'-dbo:company | 'leader'-dbo:leader","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/keyPeople> <http://dbpedia.org/resource/Kazuo_Hirai> . ?x <http://dbpedia.org/ontology/builder> ?uri . }" +"What is the serving railway line of Rostov-Glavny ? | 'Rostov-Glavny'-res:Rostov-Glavny | 'serving'-dbo:servingRailwayLine | 'railway'-dbo:railwayPlatforms"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Rostov-Glavny> <http://dbpedia.org/ontology/servingRailwayLine> ?uri } " +"Players from how many teams have participated in the National Hockey League? | 'National Hockey League'-res:National_Hockey_League | 'players'-dbo:participant | 'teams'-dbp:teams | 'participated'-dbo:participant","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/league> <http://dbpedia.org/resource/National_Hockey_League> . ?x <http://dbpedia.org/ontology/team> ?uri . }" +"How many things are people who died in St. Petersburg known for? | 'St Petersburg'-res:St._Petersburg,_Florida | 'died'-dbp:deathPlace","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/placeOfDeath> <http://dbpedia.org/resource/St._Petersburg> . }" +"In how many nations is Coconut a common food ingredient? | 'Coconut'-res:Coconut | 'common food ingredient'-res:Ingredient | 'nations'-dbo:kingdom","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/ingredient> <http://dbpedia.org/resource/Coconut> . ?x <http://dbpedia.org/ontology/country> ?uri . }" +"What country is Jeffrey Werleman from, which also has the American Mediterranean Sea? | 'Jeffrey Werleman from,'-res:Jeffrey_Vanan | 'American Mediterranean Sea'-res:Organization_of_American_States | 'American Mediterranean Sea'-res:American_Mediterranean_Sea | 'country'-dbo:country | ''-dbo:country"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/American_Mediterranean_Sea> <http://dbpedia.org/ontology/country> ?uri } " +"List the television shows whose network's owning company is Turner Broadcasting System? | 'Turner Broadcasting System'-res:Turner_Broadcasting_System | 'television'-dbp:tv | 'shows'-dbo:place | 'network'-dbo:network | 'owning'-dbo:owningCompany | 'company'-dbo:company","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/owningCompany> <http://dbpedia.org/resource/Turner_Broadcasting_System> . ?uri <http://dbpedia.org/property/network> ?x . }" +"List the maintainers of Pandaruan Bridge? | 'Pandaruan Bridge'-res:Pandaruan_Bridge | 'maintainers'-dbo:maintainedBy"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pandaruan_Bridge> <http://dbpedia.org/ontology/maintainedBy> ?uri } " +"What are some rivers in Zambia which have a dam on them? | 'Zambia'-res:Zambia | 'rivers'-dbo:river | 'dam'-dbo:dam","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/river> <http://dbpedia.org/resource/Zambia> . ?x <http://dbpedia.org/property/dam> ?uri . }" +"what does the cahora bassa flow into? | 'Cahora bassa'-res:Cahora_Bassa | 'flow'-dbp:inflow"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cahora_Bassa> <http://dbpedia.org/property/inflow> ?uri } " +"What is the alma mater of Fikret Orman? | 'Fikret Orman'-res:Fikret_Orman | 'alma mater'-dbo:almaMater"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Fikret_Orman> <http://dbpedia.org/property/almaMater> ?uri } " +"Which company owns Evraz ? | 'Evraz'-res:Evraz | 'company'-dbo:owningCompany"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Evraz> <http://dbpedia.org/ontology/owningCompany> ?uri } " +"How many party leaders are there whose parties are headquartered in Berlin? | 'Berlin'-res:Berlin | 'headquarter'-dbo:headquarter | 'leaders'-dbo:leader","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Berlin> . ?x <http://dbpedia.org/ontology/leader> ?uri . }" +"Name a famous relative of barry voight | 'Barry voight'-res:Barry_Voight | 'name'-dbp:name | 'famous relative'-dbo:relative","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/relatives> <http://dbpedia.org/resource/Barry_Voight> . }" +"List places that are associated to cities in the state of Mecklenburg-Vorpommern. | 'Mecklenburg-Vorpommern'-res:Mecklenburg-Vorpommern | 'places'-dbo:district | 'associated'-dbo:team | 'cities'-dbo:country","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/state> <http://dbpedia.org/resource/Mecklenburg-Vorpommern> . ?x <http://dbpedia.org/property/cities> ?uri . }" +"Which awards did the writer, who is the creator of Creature Comforts, won ? | 'Creature Comforts,'-res:Creature_Comforts | 'awards'-dbo:award | 'writer,'-dbo:writer | 'creator'-dbo:creator | 'won'-dbo:award","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/creator> <http://dbpedia.org/resource/Creature_Comforts> . ?x <http://dbpedia.org/property/awards> ?uri . }" +"In which areas are the radio stations of Monticello, Maine available too? | 'Monticello, Maine'-res:Monticello,_Maine | 'radio stations'-dbo:numberOfStations"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Monticello,_Maine> <http://dbpedia.org/ontology/area> ?uri } " +"Through how many labels has Katy B released her singles? | 'B'-res:B | 'Katy'-res:Katy | 'labels'-dbo:flag | 'released'-dbo:channel | 'singles'-dbo:slogan","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/artist> <http://dbpedia.org/resource/Katy_B._Raptor> . ?x <http://dbpedia.org/property/label> ?uri . }" +"Name the sstadium of 2015 Pro Duta FC season ? | 'FC'-res:FC | '2015 Pro Duta season'-res:2015_Pro_Duta_FC_season | 'stadium'-dbp:stadium"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/2015_Pro_Duta_FC_season> <http://dbpedia.org/property/stadium> ?uri } " +"Pointe d'Aveneyre belongs to which mountain range? | 'Pointe d'Aveneyre'-res:Pointe_d'Aveneyre | 'pointe d'-dbo:date | 'belongs'-dbo:date | 'mountain range'-dbo:mountainRange"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pointe_d'Aveneyre> <http://dbpedia.org/ontology/mountainRange> ?uri } " +"Jerry Bock's musicals has been adapted from how many things? | 'Jerry bock'-res:Jerry_Bock | 'music'-dbp:music | 'adapted from'-dbo:basedOn","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Jerry_Bock> . ?uri <http://dbpedia.org/ontology/basedOn> ?x . }" +"Count the movies edited by Mark Stevens (film editor) and were directed by Joel Schumacher? | 'Mark Stevens (film editor)'-res:Mark_Stevens_(film_editor) | 'Joel Schumacher'-res:Joel_Schumacher | 'edited by'-dbp:editing | 'directed by'-dbo:director"," SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/editing> <http://dbpedia.org/resource/Mark_Stevens_(film_editor)> . ?uri <http://dbpedia.org/ontology/director> <http://dbpedia.org/resource/Joel_Schumacher> } " +"List the judge of the TV show whose one of the judge is Ludacris ? | 'TV'-res:Tv_test_pattern | 'Ludacris'-res:Ludacris | 'judge'-dbo:showJudge | 'show'-dbo:show | 'judge'-dbo:showJudge","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/judges> <http://dbpedia.org/resource/Ludacris> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" +"Whose youth clubs used to participate in Argentine Primera Division? | 'Argentine Primera Division'-res:Argentina | 'Argentine Primera Division'-res:Argentine_Primera_División | 'Division'-dbp:league | 'youth clubs'-dbp:youthclubs","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/league> <http://dbpedia.org/resource/Argentine_Primera_División> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Youthclubs>}" +"List some people who were opponents of someone who was died by hanging? | 'opponents'-dbo:rival | 'died'-dbo:board | 'hanging'-dbo:configuration","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/deathCause> <http://dbpedia.org/resource/Hanging> . ?x <http://dbpedia.org/ontology/opponent> ?uri . }" +"From which country is Lawrence Okoye's nationality ? | 'Lawrence Okoye'-res:Lawrence_Okoye | 'country'-dbo:country | 'nationality'-dbp:nationality"," SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Lawrence_Okoye> <http://dbpedia.org/property/nationality> ?uri } " +"From which party is the politician who was selected in Barasat constituency? | 'Barasat constituency'-res:Barasat_(Lok_Sabha_constituency) | 'party'-dbo:party | 'politician'-dbo:party | 'selected'-dbo:name","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/party> <http://dbpedia.org/resource/Barasat_(Lok_Sabha_constituency)> . ?x <http://dbpedia.org/ontology/party> ?uri . }" +"Where did the genres originate, which were in the Harry and the Potters album? | 'Harry and the Potters'-res:Harry_and_the_Potters_(album) | 'genre'-dbo:genre | 'album'-dbo:stylisticOrigin","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/album> <http://dbpedia.org/resource/Harry_and_the_Potters_(album)> . ?x <http://dbpedia.org/ontology/genre> ?uri . }" +"Who was succeeded by Arthur Gegei as the office ho0lder ? | 'Arthur Gegei'-res:Arthur_%22Big_Boy%22_Spires | 'succeeded'-dbo:founder | 'office ho0lder'-dbo:arm"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Arthur_Gorgei> <http://dbpedia.org/property/successor> ?uri } " +"Give me a count of movies whose editor is Mark Stevens? | 'Mark Stevens'-res:Mark_Stevens_(film_editor) | 'editor'-dbp:editing | 'movie'-dbo:Film","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/editing> <http://dbpedia.org/resource/Mark_Stevens_(film_editor)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" +"What is the academic discipline of the Journal of Cerebral Blood Flow & Metabolism and also an ingredient of the Ragout fin ? | 'Journal of Cerebral Blood Flow & Metabolism'-res:Journal_of_Cerebral_Blood_Flow_&_Metabolism | 'Ragout fin'-res:Ragout_fin | 'academic discipline'-dbo:academicDiscipline | 'ingredient'-dbo:ingredient"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Journal_of_Cerebral_Blood_Flow_&_Metabolism> <http://dbpedia.org/property/academicDiscipline> ?uri . <http://dbpedia.org/resource/Ragout_fin> <http://dbpedia.org/ontology/ingredient> ?uri} " +"In what tv shows did Jason Carter act? | 'Jason Carter'-res:Jason_Carter | 'act'-dbo:starring"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Jason_Carter> } " +"To which sports team is Aubie the mascot? | 'Aubie'-res:Aubie | 'mascot'-dbp:mascot | 'sports team'-dbo:SportsTeam"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Aubie> <http://dbpedia.org/property/mascot> ?uri . <http://dbpedia.org/resource/SportsTeam> ?uri} " +"Which royal people are buried in Rome? | 'Rome'-res:Rome | 'buried'-dbp:placeOfBurial","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/placeOfBurial> <http://dbpedia.org/resource/Rome> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/RoyalPerson>}" +"Which parent company of the Cornell University Press is also the alma mater of the Mario Garca Menocal? | 'Cornell University Press'-res:Cornell_University_Press | 'Mario Garca Menocal'-res:Mario_García_Menocal | 'parent company'-dbp:parent | 'alma mater'-dbo:almaMater"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cornell_University_Press> <http://dbpedia.org/property/parent> ?uri . <http://dbpedia.org/resource/Mario_García_Menocal> <http://dbpedia.org/ontology/almaMater> ?uri} " +"Which religions are followed by people in England? | 'England'-res:England | 'religions'-dbo:religion","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/placeOfBirth> <http://dbpedia.org/resource/England> . ?x <http://dbpedia.org/ontology/religion> ?uri . }" +"Where was MacKenzie Miller born? | 'MacKenzie Miller'-res:MacKenzie_Miller | 'born'-dbo:birthPlace"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/MacKenzie_Miller> <http://dbpedia.org/ontology/birthPlace> ?uri } " +"What is the birth location of the pope who was canonized by Agatha of Sicily? | 'Agatha of Sicily'-res:Agatha_of_Sicily | 'birth location'-dbo:origin | 'canonized'-dbo:canonizedBy","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/canonizedBy> <http://dbpedia.org/resource/Agatha_of_Sicily> . ?x <http://dbpedia.org/property/birthPlace> ?uri . }" +"Which set of researchers won the Gold Medal of the Royal Astronomical Society award? | 'Gold Medal of the Royal Astronomical Society award'-res:Royal_Astronomical_Society | 'set'-dbo:type","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/award> <http://dbpedia.org/resource/Royal_Astronomical_Society> . ?x <http://dbpedia.org/property/doctoralStudents> ?uri . }" +"Give me the places where people who worked in Church of England died in ? | 'Church of England'-res:Church_of_England | 'work'-dbo:occupation | 'died in'-dbo:deathPlace","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/placeOfDeath> <http://dbpedia.org/resource/Church_of_England> . ?x <http://dbpedia.org/ontology/deathPlace> ?uri . }" +"where are renaissance centers located? | 'renaissance centers'-res:Renaissance_Center | 'located'-dbo:address"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/address> <http://dbpedia.org/resource/Renaissance_Center> } " +"How many books are there whose author's tomb is in Madrid? | 'tomb'-res:The_Tomb_(2007_film) | 'Madrid'-res:Madrid | 'books'-dbo:title | 'author'-dbo:author","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/restingplace> <http://dbpedia.org/resource/Madrid> . ?uri <http://dbpedia.org/ontology/author> ?x . }" +"What are the television shows whose writers did notable work for Band of Brothers ? | 'Band of Brothers'-res:Band_of_Brothers_(miniseries) | 'television shows'-dbo:televisionSeries | 'writers'-dbo:composer | 'notable work'-dbo:notableWork","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/notableWork> <http://dbpedia.org/resource/Band_of_Brothers_(miniseries)> . ?uri <http://dbpedia.org/property/writers> ?x . }" +"To how many different species does the members of the Animal Kingdom belong? | 'Animal Kingdom'-res:Animal | 'species'-dbo:species | 'members'-dbo:part | 'belong'-dbo:date","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/kingdom> <http://dbpedia.org/resource/Animal> . ?x <http://dbpedia.org/property/species> ?uri . }" +"What water bodies are nearest to Helsinki city? | 'Helsinki city'-res:Helsinki | 'nearest city'-dbo:nearestCity | 'water'-dbo:BodyOfWater","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/nearestCity> <http://dbpedia.org/resource/Helsinki> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/BodyOfWater>}" +"What is the prize awarded to Bruce Beutler ? | 'Bruce Beutler'-res:Bruce_Beutler | 'prize'-dbo:award | 'awarded'-dbo:award"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bruce_Beutler> <http://dbpedia.org/property/awards> ?uri } " +"To which books Thomas Egerton, an editor? | 'Thomas Egerton,'-res:Thomas_Egerton_(publisher) | 'editor'-dbo:publisher"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Thomas_Egerton_(publisher)> <http://dbpedia.org/ontology/publisher> ?uri } " +"What is the appliance build jointly by Sony and Asus? | 'Sony and Asus'-res:Sony | 'appliance'-dbp:instrument | 'build'-dbo:order | 'jointly'-dbo:jointCommunity","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Sony> <http://dbpedia.org/property/instrument> ?uri . <http://dbpedia.org/resource/Asus> <http://dbpedia.org/ontology/jointCommunity> ?uri . }" +"What was founded by Congress of Industrial Organizations ? | 'Congress of Industrial Organizations'-res:Congress_of_Industrial_Organizations | 'founded'-dbo:leader"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Congress_of_Industrial_Organizations> <http://dbpedia.org/ontology/founder> ?uri } " +"Which current players once played for Toronto argonauts? | 'Toronto argonauts'-res:Toronto_Argonauts | 'played'-dbo:formerTeam | 'players'-dbo:AmericanFootballPlayer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/formerTeam> <http://dbpedia.org/resource/Toronto_Argonauts> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/AmericanFootballPlayer>}" +"Who was the president at the time when the opponent of Benjamin Spock held office? | 'Benjamin Spock'-res:Benjamin_Spock | 'president'-dbo:president | 'time'-dbo:time | 'opponent'-dbo:opponent | 'held'-dbo:president | 'office'-dbo:office","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/opponent> <http://dbpedia.org/resource/Benjamin_Spock> . ?x <http://dbpedia.org/property/office> ?uri . }" +"List the shrines of the saint whose one of the shrine is Ponza ? | ''-res:Poznań | 'shrines'-dbo:majorShrine | 'saint'-dbo:saint | 'shrine'-dbo:majorShrine","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/majorShrine> <http://dbpedia.org/resource/Poznań> . ?x <http://dbpedia.org/ontology/saint> ?uri . }" +"How many people are in the continental army? | 'continental army'-dbo:band","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/militaryBranch> <http://dbpedia.org/resource/The_Continental_Army> . }" +"What are the movies whose music is composed by Vangelis? | 'Vangelis'-res:Vangelis | 'composed'-dbo:musicComposer | 'movie'-dbo:Film","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Vangelis> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" +"In which areas can I find wine made of Vitis vinifera grapes? | 'I'-res:I | 'Vitis vinifera grapes'-res:Kyoho_(grape) | 'wine'-dbo:wineRegion","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/species> <http://dbpedia.org/resource/Vitis_vinifera> . ?x <http://dbpedia.org/property/wineRegion> ?uri . }" +"Who is the publisher of The Rolling Stone Album Guide ? | 'The Rolling Stone Album Guide'-res:The_Rolling_Stone_Album_Guide | 'publisher'-dbo:publisher"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Rolling_Stone_Album_Guide> <http://dbpedia.org/property/publisher> ?uri } " +"How many services does 21Vianet provide? | '21vianet'-res:21Vianet | 'services'-dbp:services","SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/21Vianet> <http://dbpedia.org/property/services> ?uri . }" +"What are some rivers over which there is a box girder bridge? | 'box girder bridge'-res:Box_girder_bridge | 'rivers'-dbo:river","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/crosses> <http://dbpedia.org/resource/Box_girder_bridge> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/River>}" +"Who is the designer of Saleen S5S Raptor ? | 'S5S'-res:Saleen_S5S_Raptor | 'Saleen Raptor'-res:Saleen_S5S_Raptor | 'designer'-dbo:designer"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Saleen_S5S_Raptor> <http://dbpedia.org/property/designer> ?uri } " +"Name the first driver of 1999 San Marino Grand Prix ? | '1999 San Marino Grand Prix'-res:1999_San_Marino_Grand_Prix | 'first driver'-dbo:firstDriver"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/1999_San_Marino_Grand_Prix> <http://dbpedia.org/property/firstDriver> ?uri } " +"What is the scientist whose doctoral students are Erich Bagge and erban ieica? | 'scientist'-res:Scientist | 'Erich Bagge'-res:Erich_Bagge | 'Erban ieica'-res:Róbert_Erban | 'doctoral students'-dbo:doctoralStudent","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/doctoralStudents> <http://dbpedia.org/resource/Erich_Bagge> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}" +"Who battled under commander Egushawa in a conflict? | 'commander Egushawa'-res:Moonbase_Commander | 'battled'-dbo:battle | 'conflict'-dbo:division","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/commander> <http://dbpedia.org/resource/Moonbase_Commander> . ?x <http://dbpedia.org/ontology/territory> ?uri . }" +"Which is the largest city of Union State ? | 'Union State'-res:Union_State | 'largest city'-dbo:largestCity"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Union_State> <http://dbpedia.org/ontology/largestCity> ?uri } " +"Which university has a sports team member called Micheal Powell and also owns Syracuse University Press ? | 'sports team member'-res:Sports_Action_Team | 'Micheal Powell'-res:Micheal_Williams | 'Syracuse University Press'-res:Syracuse_University | 'university'-dbo:university | 'called'-dbp:nickname | 'owns'-dbo:languageFamily"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Micheal_Williams> <http://dbpedia.org/ontology/athletics> ?uri . <http://dbpedia.org/resource/Syracuse_University> <http://dbpedia.org/property/owner> ?uri} " +"What are some movies whose distributer's CEO is Ted Hartley? | 'CEO'-res:Ceo_(musician) | 'Ted Hartley'-res:Ted_Hartley | 'movies'-dbo:film | 'distributer'-dbp:distributor","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/distributor> <http://dbpedia.org/resource/Ted_Hartley> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" +"Where does the road starting from Madison, Wisconsin end? | 'Madison, Wisconsin'-res:Madison,_Wisconsin | 'road end'-dbo:routeEnd | 'road starting'-dbo:routeStart","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/routeEnd> <http://dbpedia.org/resource/Madison,_Wisconsin> . ?x <http://dbpedia.org/property/routeStart> ?uri . }" +"Colin Powell was the commander of which military conflict ? | 'Colin powell'-res:Colin_Powell | 'commander'-dbo:commander | 'military conflict'-dbo:battle"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/commander> <http://dbpedia.org/resource/Colin_Powell> } " +"List all the houses of United States Congress ? | 'United States Congress'-res:United_States_Congress | 'houses'-dbp:houses"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/United_States_Congress> <http://dbpedia.org/property/houses> ?uri } " +"What companies are located in toronto? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'toronto'-res:Toronto | 'located'-dbo:locationCity"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/locationCity> <http://dbpedia.org/resource/Toronto> } " +"In which timezone does Khok Kwang lie? | 'Khok Kwang'-res:Khok_Kwang | 'timezone'-dbo:timeZone | 'lie'-dbo:position"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Khok_Kwang> <http://dbpedia.org/ontology/timeZone> ?uri } " +"Who are the opponents of Gervase Helwys? | 'Gervase Helwys'-res:Gervase_Helwys | 'opponents'-dbo:opponent","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/opponent> <http://dbpedia.org/resource/Gervase_Helwys> . }" +"Which team did Michael and Ryan Powell play for? | 'Michael'-res:Michael_Roos_(ice_hockey) | 'Ryan Powell'-res:Ryan_Powell | 'team'-dbo:team | 'play'-dbo:team","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Michael_Roos_(ice_hockey)> <http://dbpedia.org/property/name> ?uri . <http://dbpedia.org/resource/Ryan_Powell> <http://dbpedia.org/ontology/team> ?uri . }" +"What are the television shows whose network is Prime Time Entertainment Network? | 'Prime Time Entertainment Network'-res:Prime_Time_Entertainment_Network | 'network'-dbp:network | 'television show'-dbo:TelevisionShow","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/network> <http://dbpedia.org/resource/Prime_Time_Entertainment_Network> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" +"How many teams have someone playing at the defenceman position? | 'teams'-dbo:numberOfTeams | 'playing'-dbo:field | 'defenceman position'-dbo:rating","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/position> <http://dbpedia.org/resource/Defenceman> . ?x <http://dbpedia.org/ontology/team> ?uri . }" +"Name the driver who was at pole in 1997 Canadian Grand Prix and also 1994 Spanish Grand Prix ? | '1997 Canadian Grand Prix'-res:1997_Canadian_Grand_Prix | '1994 Spanish Grand Prix'-res:1994_Spanish_Grand_Prix | 'name'-dbp:name | 'driver'-dbo:poleDriver | 'pole'-dbo:poleDriverTeam"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/1997_Canadian_Grand_Prix> <http://dbpedia.org/property/poleDriver> ?uri . <http://dbpedia.org/resource/1994_Spanish_Grand-Prix> <http://dbpedia.org/ontology/poleFormulaOneRacer> ?uri} " +"Name the narrators of the album which has been narrated by Alan Thicke ? | 'Alan Thicke'-res:Alan_Thicke | 'narrated'-dbp:narrated | 'narrated'-dbp:narrated"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Alan_Thicke> <http://dbpedia.org/property/narrated> ?uri } " +"Name the television show created by CE Webber and also has actor named Companion? | 'Companion'-res:Companion_(Doctor_Who) | 'CE Webber'-res:C._E._Webber | 'created'-dbo:starring | 'actor named'-dbo:creator","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Companion_(Doctor_Who)> . ?uri <http://dbpedia.org/property/creator> <http://dbpedia.org/resource/CE._E._Webber> . }" +"In which war did the units garrisoned at Turin fight? | 'Turin fight'-res:Turin | 'war'-dbo:battle | 'units'-dbo:team | 'garrisoned'-dbo:garrison","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/garrison> <http://dbpedia.org/resource/Turin> . ?x <http://dbpedia.org/ontology/territory> ?uri . }" +"How many Thesaban towns are there? | 'Thesaban towns'-res:Thesaban","SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Thesaban> <http://dbpedia.org/property/locationCountry> ?uri . }" +"Name the office holder with predecessor as Mark Latham and partner Tim Mathieson ? | 'Mark Latham'-res:Mark_Latham | 'partner Tim Mathieson'-res:Tim_Mathieson | 'name'-dbp:name | 'office holder'-dbp:incumbent | 'predecessor'-dbo:predecessor","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/predecessor> <http://dbpedia.org/resource/Mark_Latham> . ?uri <http://dbpedia.org/property/partner> <http://dbpedia.org/resource/Tim_Mathieson> . }" +"Which newspaper owned by Schibsted is published in Swedish ? | 'swedish'-res:Swedish_language | 'Schibsted'-res:Schibsted | 'newspaper'-dbp:newspaper | 'owned'-dbo:owner | 'published'-dbo:author | ''-dbo:country","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/owners> <http://dbpedia.org/resource/Schibsted> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Newspaper>}" +"How many other people are in a band with Robert de Niro? | 'Robert de Niro'-res:Robert_De_Niro | 'band'-dbo:band","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/bandMember> <http://dbpedia.org/resource/Robert_De_Niro> . }" +"List the software which uses Microsoft Windows as their operating system ? | 'software'-res:Software | 'Microsoft Windows'-res:Microsoft_Windows | 'operating system'-dbo:operatingSystem | 'software'-dbo:Software","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/operatingSystem> <http://dbpedia.org/resource/Microsoft_Windows> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Software>}" +"What all has been created by Jerry Siegel? | 'Jerry Siegel'-res:Jerry_Siegel | 'created by'-dbp:creators","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/creators> <http://dbpedia.org/resource/Jerry_Siegel> . }" +"How many items belong to the Science Fiction genre? | 'Science Fiction'-res:Science_fiction | 'items'-dbo:material | 'belong'-dbo:date","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/literaryGenre> <http://dbpedia.org/resource/Science_fiction> . }" +"Name some dishes made with flowering plants. | 'name'-dbo:name | 'dishes'-dbo:state | 'flowering'-dbo:day | 'plants'-dbo:position","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/division> <http://dbpedia.org/resource/Plant> . ?uri <http://dbpedia.org/property/flower> ?x . }" +"Where was Ganefo hosted? | 'Ganefo'-res:GANEFO | 'hosted'-dbp:hostCity"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/GANEFO> <http://dbpedia.org/property/hostCity> ?uri } " +"Where are ethnic group located which speak Nebraskan? | 'Nebraskan'-res:Nebraska | 'Nebraskan'-res:Nebraska | 'ethnic'-dbo:origin | 'located'-dbo:locatedInArea | 'speak'-dbo:language | ''-dbo:country","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/locatedInArea> <http://dbpedia.org/resource/Nebraska> . ?x <http://dbpedia.org/ontology/ethnicGroup> ?uri . }" +"How many sitcoms were produced by the company whose predecessor was the Desilu Productions | 'Desilu Productions'-res:Desilu_Productions | 'sitcoms'-dbo:series | 'produced'-dbo:author | 'company'-dbo:company | 'predecessor'-dbo:predecessor","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/predecessor> <http://dbpedia.org/resource/Desilu_Productions> . ?uri <http://dbpedia.org/ontology/company> ?x . }" +"Count the sports played at universities located in Urban Areas? | 'Urban Areas'-res:Urban_area | 'count'-dbo:type | 'sports'-dbo:athletics | 'played'-dbo:portrayer | 'located'-dbo:position","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/location> <http://dbpedia.org/resource/Urban_area> . ?x <http://dbpedia.org/ontology/athletics> ?uri . }" +"What is the official residence of the Christopher Daz Figuero which is also the state of the Cruce a Nado Internacional | 'Christopher Daz Figuero'-res:Ana_Figuero | 'Cruce a Nado Internacional'-res:Cruce_a_Nado_Internacional | 'official residence'-dbo:occupation"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Christopher_Figuero> <http://dbpedia.org/ontology/occupation> ?uri . <http://dbpedia.org/resource/Cruce_a_Nado_Internacional> <http://dbpedia.org/property/placeOfBirth> ?uri} " +"List the races of Fergie Sutherland? | 'Fergie Sutherland'-res:Fergie_Sutherland | 'race'-dbp:race"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Fergie_Sutherland> <http://dbpedia.org/property/race> ?uri } " +"Games on amiga are typically of what kind? | 'amiga'-res:Amiga | 'typically'-res:Typically_Tropical | 'games'-dbo:games","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/computingPlatform> <http://dbpedia.org/resource/Amiga> . ?x <http://dbpedia.org/property/genre> ?uri . }" +"Which shows are similar to the ones produced by Phil Collinson? | 'Phil Collinson'-res:Phil_Collinson | 'shows'-dbo:place | 'produced'-dbo:author","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/producer> <http://dbpedia.org/resource/Phil_Collinson> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" +"Movie's produced by Michael Deeley has Jordan Cronenweth as director of photography | 'Michael Deeley'-res:Michael_Deeley | 'Jordan Cronenweth'-res:Jordan_Cronenweth | 'movie'-dbo:picture | 'produced'-dbo:architect | 'director'-dbo:director | 'photography'-dbo:picture","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/director> <http://dbpedia.org/resource/Michael_Deeley> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" +"How many companies were founded in Menlo Park, California? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'Menlo Park, California'-res:Menlo_Park,_California | 'founded'-dbp:foundation | 'companies'-dbo:Company","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/foundation> <http://dbpedia.org/resource/Menlo_Park,_California> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}" +"What is the venerated in of Edwin of Northumbria ? | 'Edwin of Northumbria'-res:Edwin_of_Northumbria | 'venerated'-dbp:veneratedIn"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Edwin_of_Northumbria> <http://dbpedia.org/property/veneratedIn> ?uri } " +"Where was Picasso's Last Words recorded ? | 'Picasso's Last Words'-res:Picasso's_Last_Words_(Drink_to_Me) | 'recorded'-dbp:recorded"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Picasso's_Last_Words_(Drink_to_Me)> <http://dbpedia.org/property/recorded> ?uri } " +"What is the hub airport of Pawan Hans, and is also the largest city of India? | 'Pawan Hans,'-res:Pawan_Hans | 'India'-res:India | 'hub airport'-dbo:hubAirport | 'largest city'-dbo:largestCity"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pawan_Hans> <http://dbpedia.org/property/hubAirport> ?uri . <http://dbpedia.org/resource/India> <http://dbpedia.org/ontology/largestCity> ?uri} " +"Which memeber of South Asia SubRegional Economic cooperation is also the nationality of Aishath saffa ? | 'South Asia SubRegional Economic cooperation'-res:South_Asia_Subregional_Economic_Cooperation | 'Aishath saffa'-res:Aishath_Saffa | 'memeber'-dbo:arm | 'nationality'-dbo:nationality"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/South_Asia_Subregional_Economic_Cooperation> <http://dbpedia.org/property/memeber> ?uri . <http://dbpedia.org/resource/Aishath_Saffa> <http://dbpedia.org/ontology/nationality> ?uri} " +"Which board memeber of jimmy Wales also owns Latvian Wikipedia ? | 'jimmy Wales'-res:Jimmy_Wales | 'Latvian Wikipedia'-res:Latvia | 'Latvian Wikipedia'-res:Latvian_Wikipedia | 'board'-dbo:board | 'owns'-dbo:owner"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jimmy_Wales> <http://dbpedia.org/property/owner> ?uri . <http://dbpedia.org/resource/Latvian_Wikipedia> <http://dbpedia.org/ontology/board> ?uri} " +"Name the TV show whose network is NBC and is the subsequent work of Fraiser ? | 'NBC'-res:NBC | ''-res:Frasier | 'name'-dbp:name | 'show'-dbo:show | 'network'-dbo:network | 'subsequent work'-dbo:service","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/network> <http://dbpedia.org/resource/NBC> . ?uri <http://dbpedia.org/property/notableWork> <http://dbpedia.org/resource/Frasier> . }" +"How many had their debut team coached by Chip Kelly? | 'Chip Kelly'-res:Chip_Kelly | 'coach'-dbp:coach | 'debut team'-dbo:debutTeam","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/coach> <http://dbpedia.org/resource/Chip_Kelly> . ?x <http://dbpedia.org/ontology/debutTeam> ?uri . }" +"Malaysian highway authority has designed bridges over what things? | 'malaysian highway authority'-res:Malaysian_Highway_Authority | 'designed'-dbo:architect | 'bridges'-dbo:abstract","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/designer> <http://dbpedia.org/resource/Malaysian_Highway_Authority> . ?x <http://dbpedia.org/property/crosses> ?uri . }" +"what are the nicknames of the people who are in Ekstraliga? | 'Ekstraliga'-res:Ekstraliga_(speedway) | 'nicknames'-dbo:denomination","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/speedway)> <http://dbpedia.org/resource/Ekstraliga> . ?x <http://dbpedia.org/property/nicknames> ?uri . }" +"List all the members of the organization whose one of the members is Bangladesh ? | 'Bangladesh'-res:Bangladesh | 'members'-dbp:members | 'organization'-dbp:establishment | 'members'-dbp:members","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/members> <http://dbpedia.org/resource/Bangladesh> . ?x <http://dbpedia.org/ontology/members> ?uri . }" +"In how many different places do Starwood hotels and resorts worldwide operate? | 'Starwood hotels'-res:Starwood_Capital_Group | 'resorts worldwide'-res:Walt_Disney_Parks_and_Resorts | 'operate'-dbp:operator | 'places'-dbp:address","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/operator> <http://dbpedia.org/resource/Starwood_Capital_Group> . ?x <http://dbpedia.org/ontology/residence> ?uri . }" +"List the architect of the buildings whose one of the architect is Philip Webb? | 'Philip Webb'-res:Philip_Webb | 'architect'-dbo:architect | 'buildings'-dbo:architect | 'architect'-dbo:architect","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/architect> <http://dbpedia.org/resource/Philip_Webb> . ?x <http://dbpedia.org/property/builder> ?uri . }" +"What is the owner of Ivanpah Solar Power Facility and the original developer of Dart? | 'Ivanpah Solar'-res:Ivanpah_Solar_Power_Facility | 'Dart'-res:Dart_(programming_language) | 'owner'-dbo:owner | 'developer'-dbo:developer"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ivanpah_Solar_Power_Facility> <http://dbpedia.org/property/owner> ?uri . <http://dbpedia.org/resource/Dart_(programming_language)> <http://dbpedia.org/ontology/developer> ?uri} " +"Find the total number of ingredient of the recepies whose ingredient is common Mushroom ? | ''-res:Agaricus_bisporus | 'total'-dbo:populationTotal | 'ingredient'-dbo:ingredient | 'ingredient'-dbo:ingredient"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/ingredient> <http://dbpedia.org/resource/Agaricus_bisporus> . ?x <http://dbpedia.org/property/erritory> ?uri }" +"How many movies are directed by the spouse of Dolores del Ro? | 'Dolores del Ro'-res:Dolores_del_Río | 'spouse'-dbp:partner | 'directed'-dbp:director","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/partner> <http://dbpedia.org/resource/Dolores_del_Río> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" +"What are some bands out to texarkana? | 'texarkana'-res:Texarkana,_Texas | 'bands'-dbo:staff","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/placeOfBirth> <http://dbpedia.org/resource/Texarkana> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Band>}" +"who is the husband of Rosie Huntington Whiteley? | 'Rosie Huntington Whiteley'-res:Rosie_Huntington-Whiteley | 'husband'-dbo:partner"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Rosie_Huntington-Whiteley> <http://dbpedia.org/ontology/partner> ?uri } " +"Which current player of Chicago Bulls was drafted by Los Angeles Clippers ? | 'Chicago Bulls'-res:Chicago_Bulls | 'Los Angeles Clippers'-res:Los_Angeles_Clippers | 'current player'-dbo:coach | 'drafted'-dbo:draft","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/draftTeam> <http://dbpedia.org/resource/Chicago_Bulls> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SportsTeam>}" +"What is the common country of Ganz UV and Balaton wine region ? | 'UV'-res:Uvaria_chamae | 'Ganz'-res:Ganzert | 'Balaton wine region'-res:Balaton_wine_region | 'common country'-dbo:country"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ganzert> . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/WineRegion>}" +"Name the constituency of Domenico Modugno ? | 'Domenico Modugno'-res:Domenico_Modugno | 'name'-dbp:name | 'constituency'-dbp:constituency"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Domenico_Modugno> <http://dbpedia.org/property/constituency> ?uri } " +"What awards were given to the producer of Chicken Little? | 'Chicken Little'-res:Chicken_Little_(1943_film) | 'awards'-dbo:budget | 'producer'-dbo:producer","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Chicken_Little_(1943_film)> <http://dbpedia.org/ontology/producer> ?x . ?x <http://dbpedia.org/property/awards> ?uri . }" +"What is the headquarters of the public transit system which is the system of Bottineau LRT ? | 'Bottineau LRT'-res:Bottineau_LRT | 'headquarters'-dbp:headquarters | 'public transit'-dbo:country","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bottineau_LRT> <http://dbpedia.org/property/headquarters> ?x . ?x <http://dbpedia.org/ontology/publicTransitSystem> ?uri . }" +"What is the hometown of John Speraw ? | 'John Speraw'-res:John_Speraw | 'hometown'-dbo:hometown"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/John_Speraw> <http://dbpedia.org/ontology/hometown> ?uri } " +"Count the journals in the field of Philosophy. | 'Philosophy'-res:Philosophy | 'count'-dbo:country | 'journals'-dbp:journal | 'field'-dbo:field","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/fields> <http://dbpedia.org/resource/Philosophy> . ?x <http://dbpedia.org/ontology/discipline> ?uri . }" +"Which scientist advised a doctoral student named Erban Ieica? | 'Erban Ieica'-res:Șerban_Țițeica | 'doctoral student'-dbp:doctoralStudents | 'scientist'-dbo:Scientist","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/doctoralStudents> <http://dbpedia.org/resource/Șerban_Țițeica> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}" +"What is the hometown of Nader Guirat, where Josef Johansson was born too? | 'Josef Johansson'-res:Josef_Johansson | 'Nader Guirat'-res:Nader_Guirat | 'hometown'-dbo:hometown | 'born'-dbo:birthPlace"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Josef_Johansson> <http://dbpedia.org/property/hometown> ?uri . <http://dbpedia.org/resource/Nader_Guirat> <http://dbpedia.org/ontology/birthPlace> ?uri} " +"What is the academic discipline of Journal of Cerebral Blood Flow & Metabolism ? | 'Journal of Cerebral Blood Flow & Metabolism'-res:Journal_of_Cerebral_Blood_Flow_&_Metabolism | 'academic discipline'-dbo:academicDiscipline"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Journal_of_Cerebral_Blood_Flow_&_Metabolism> <http://dbpedia.org/ontology/academicDiscipline> ?uri } " +"Where was David Scherman trained ? | 'David Scherman'-res:David_Scherman | 'trained'-dbo:training"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/David_Scherman> <http://dbpedia.org/ontology/training> ?uri } " +"In which series has Sean Young portrayed someone? | 'Sean Young'-res:Sean_Young | 'series'-dbo:series | 'portrayed'-dbo:portrayer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/portrayer> <http://dbpedia.org/resource/Sean_Young> . }" +"Who is the writer of the singles whose producer is Peter-John Vettese? | 'Peter-John Vettese'-res:Peter-John_Vettese | 'writer'-dbo:writer | 'singles'-dbo:associate | 'producer'-dbo:producer","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/producer> <http://dbpedia.org/resource/Peter-John_Vettese> . ?x <http://dbpedia.org/property/writer> ?uri . }" +"In which mountain Inyo National Forest and California are located? | 'mountain Inyo National Forest'-res:Inyo_National_Forest | 'California'-res:California | 'located'-dbo:locatedInArea","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/locatedInArea> <http://dbpedia.org/resource/Inyo_National_Forest> . ?uri <http://dbpedia.org/property/location> <http://dbpedia.org/resource/California> . }" +"What is the nickname of the club managed by Piotr baron? | 'Piotr baron'-res:Piotr_Baron | 'managed'-dbo:manager | 'nickname'-dbp:nickname","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Piotr_Baron> <http://dbpedia.org/ontology/manager> ?x . ?x <http://dbpedia.org/property/nickname> ?uri . }" +"For how many different teams have the players debuted in Houston Astros played? | 'Houston Astros'-res:Houston_Astros | 'teams'-dbp:team | 'players'-dbo:participant | 'debuted'-dbo:debutTeam | 'played'-dbo:participant","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/debutTeam> <http://dbpedia.org/resource/Houston_Astros> . ?x <http://dbpedia.org/ontology/team> ?uri . }" +"How many people have been the first one to scale a peak in the Yosemite Park? | 'Yosemite Park'-res:Yosemite_National_Park | 'scale'-dbp:scale | 'peak'-dbo:language","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/locatedInArea> <http://dbpedia.org/resource/Yosemite_National_Park> . ?x <http://dbpedia.org/ontology/firstAscentPerson> ?uri . }" +"What are some licensees of the stations playing in Nashville, Tennessee? | 'Nashville, Tennessee'-res:Nashville,_Tennessee | 'licensees'-dbo:licensee | 'stations'-dbo:numberOfStations | 'playing'-dbo:discharge","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/city> <http://dbpedia.org/resource/Nashville,_Tennessee> . ?x <http://dbpedia.org/property/licensees> ?uri . }" +"Count the total number of bacterias whose division is Firmicutes and domain is Bacteria? | 'bacterias'-res:Bacteriastrum_delicatulum | 'Firmicutes'-res:Firmicutes | 'Bacteria'-res:Bacteria | 'division'-dbo:division | 'domain'-dbp:domain","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/division> <http://dbpedia.org/resource/Firmicutes> . ?uri <http://dbpedia.org/property/domain> <http://dbpedia.org/resource/Bacteria> . }" +"What are some other great things by the person who produced Queer as Folk? | 'Queer as Folk'-res:Queer_as_Folk_(UK_TV_series) | 'person'-dbo:person | 'produced'-dbo:wineProduced","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/producer> <http://dbpedia.org/resource/Queer_as_Folk_(UK_TV_series)> . ?x <http://dbpedia.org/property/notableWork> ?uri . }" +"Under which scientist did doctoral students erban ieica and Erich Bagge study? | 'scientist'-res:Scientist | 'doctoral students erban ieica'-res:Róbert_Erban | 'Erich Bagge study'-res:Erich_Bagge","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/doctoralStudents> <http://dbpedia.org/resource/Róbert_Erban> . ?uri <http://dbpedia.org/property/scientist> <http://dbpedia.org/resource/Erich_Bagge> . }" +"In which racing championships did Bobby Beasley and Martin Molony participate? | 'Bobby Beasley'-res:Bobby_Beasley | 'Martin Molony'-res:Martin_Molony | 'racing'-dbo:race | 'racing'-dbo:race","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bobby_Beasley> <http://dbpedia.org/ontology/trainer> ?uri . <http://dbpedia.org/resource/Martin_Molony> <http://dbpedia.org/property/race> ?uri . }" +"Name the artist of Brad Paisley discography ? | 'Brad Paisley discography'-res:Brad_Paisley_discography | 'name'-dbp:name | 'artist'-dbp:artist"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Brad_Paisley_discography> <http://dbpedia.org/property/artist> ?uri } " +"Ernest Rutherford was the advisor of how many people? | 'Ernest rutherford'-res:Ernest_Rutherford | 'advisor'-dbo:doctoralAdvisor","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/doctoralAdvisor> <http://dbpedia.org/resource/Ernest_Rutherford> . }" +"who all play for of the american football players at Quarterback position? | 'Quarterback'-res:Quarterback | 'play'-dbo:starring","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/quarterbacks> <http://dbpedia.org/resource/Quarterback> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/AmericanFootballPlayer>}" +"What is the field of interest of the advisor of Henri Maspero ? | 'Henri Maspero'-res:Henri_Maspero | 'advisor'-dbo:academicAdvisor | 'field'-dbp:fields"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Henri_Maspero> <http://dbpedia.org/ontology/academicAdvisor> ?uri } " +"Name the actor of Soylent Green to which Lydia Clarke is married ? | 'Lydia Clarke'-res:Lydia_Clarke | 'Soylent Green'-res:Soylent_Green | 'name'-dbo:name | 'actor'-dbp:artist | 'married'-dbo:spouse"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lydia_Clarke> <http://dbpedia.org/property/starring> ?uri . <http://dbpedia.org/resource/Soylent_Green> <http://dbpedia.org/ontology/spouse> ?uri} " +"Who are the key people of FWD.us? | 'FWD.us'-res:FWD.us | 'key people'-dbp:keyPeople"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/FWD.us> <http://dbpedia.org/property/keyPeople> ?uri } " +"Who is the executive producer of Into the Dalek ? | 'Into the Dalek'-res:Into_the_Dalek | 'executive producer'-dbp:executiveProducer"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Into_the_Dalek> <http://dbpedia.org/property/executiveProducer> ?uri } " +"Through how many cities does the river flowing into Arkansas go? | 'Arkansas'-res:Arkansas | 'cities'-dbo:country | 'river'-dbo:river | 'flowing'-dbo:school","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/riverMouth> <http://dbpedia.org/resource/Arkansas> . ?x <http://dbpedia.org/property/cities> ?uri . }" +"How many things are manufactured by the company whose subsidiary is Sony Corporation shareholders and subsidiaries? | 'Sony Corporation shareholders and subsidiaries'-res:Sony_Corporation_shareholders_and_subsidiaries | 'manufactured'-dbo:product | 'company'-dbo:company | 'subsidiary'-dbo:subsidiary","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/subsidiary> <http://dbpedia.org/resource/Sony_Corporation_shareholders> . ?uri <http://dbpedia.org/property/manufacturer> ?x . }" +"In which other places are there companies which are in Ontario, too? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'Ontario,'-res:Ontario,_Indiana | 'places'-dbo:district"," SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/locationCountry> <http://dbpedia.org/resource/Ontario,_Indiana> . ?x <http://dbpedia.org/property/locations> ?uri }" +"In which companies boards do the writers of Wikitionary belong? | 'companies boards'-res:Under_the_Boards | 'Wikitionary'-res:Wiktionary | 'writers'-dbo:author | 'belong'-dbo:date","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/author> <http://dbpedia.org/resource/Wiktionary> . ?x <http://dbpedia.org/property/board> ?uri . }" +"Which nationality of Newin Chidchob is also the nationality of Ajahn Sao Kantaslo ? | 'Newin Chidchob'-res:Newin_Chidchob | 'Ajahn Sao Kantaslo'-res:Ajahn_Sao_Kantasīlo | 'nationality'-dbp:nationality | 'nationality'-dbp:nationality"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ajahn_Sao_Kantasīlo> <http://dbpedia.org/property/nationality> ?uri } " +"Count the movies directed by Tim Burton and music composer Danny Elfman ? | 'Tim Burton'-res:Tim_Burton | 'music composer Danny Elfman'-res:Jenna_Elfman | 'music composer'-dbp:music | 'directed'-dbp:director","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/director> <http://dbpedia.org/resource/Tim_Burton> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" +"From which genres of music did those genres emerge where drums are important? | 'drums'-res:Drums_Around_the_World | 'genres'-dbo:genre | 'music'-dbo:musicSubgenre | 'genres'-dbo:genre | 'emerge'-dbo:result","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/notableInstruments> <http://dbpedia.org/resource/Drums> . ?x <http://dbpedia.org/ontology/genre> ?uri . }" +"Who is the appointer of Earl B. Ruth ? | 'B'-res:B | 'Earl Ruth'-res:Earl_B._Ruth | 'appointer'-dbo:appointer"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Earl_B._Ruth> <http://dbpedia.org/ontology/appointer> ?uri } " +"To which educational institutes is Samuel Isham associated to? | 'Samuel Isham'-res:Samuel_Isham | 'education'-dbp:education"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Samuel_Isham> <http://dbpedia.org/property/education> ?uri } " +"What is the debut team of people born in Vargas? | 'Vargas'-res:Vargas_(state) | 'born in'-dbo:birthPlace | 'debut team'-dbp:debutteam","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Vargas_(state)> . ?x <http://dbpedia.org/property/debutteam> ?uri . }" +"Count the awards received by the ones who fought the battle of france? | 'battle of france'-res:Battle_of_France | 'count'-dbo:time | 'awards'-dbo:award | 'received'-dbo:board | 'fought'-dbo:nerve | 'battle'-dbo:battle | 'france'-dbo:field","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/Battle_of_France> . ?x <http://dbpedia.org/ontology/award> ?uri . }" +"Count all the Colonels? | 'Colonels'-res:Colonels_Softball_Complex | 'count'-dbo:country"," SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Colonels_Softball_Complex> } " +"What has location as Ontario? | 'Ontario'-res:Ontario | 'location'-dbo:location"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ontario> <http://dbpedia.org/ontology/location> ?uri } " +"Where was Juno I launched from ? | 'Juno I'-res:Juno_I | 'launched'-dbo:launchSite"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Juno_I> <http://dbpedia.org/ontology/launchSite> ?uri } " +"What are some common ingredients used in Swedish dishes? | 'Swedish dishes'-res:Sweden | 'Swedish dishes'-res:Tableware | 'in'-dbo:country | 'ingredient'-dbo:ingredient","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/country> <http://dbpedia.org/resource/Swedish_languages> . ?uri <http://dbpedia.org/ontology/ingredient> ?x . }" +"Where did Rheinmetall MG 60 originated ? | 'MG'-res:MG | 'Rheinmetall 60'-res:Rheinmetall_MG_60 | 'origin'-dbo:origin"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Rheinmetall_MG_60> <http://dbpedia.org/ontology/origin> ?uri } " +"Gregg Toland cinematographed how many things? | 'Gregg toland'-res:Gregg_Toland | 'cinematographed'-dbo:cinematography","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/cinematography> <http://dbpedia.org/resource/Gregg_Toland> . }" +"Give me the total number of lines owned by owner of Mwtro-Noth Railroad ? | 'Mwtro-Noth Railroad'-res:Metro-North_Railroad | 'total'-dbo:populationTotal | 'lines'-dbo:lyrics | 'owned'-dbo:subsidiary | 'owner'-dbo:owner"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/owner> <http://dbpedia.org/resource/Metro-North_Railroad> . ?x <http://dbpedia.org/property/owner> ?uri }" +"In how many places can I find people who were the architects of the Dundas Castle? | 'I'-res:I | 'Dundas Castle'-res:Dundas_Castle | 'places'-dbo:height | 'architects'-dbo:architect","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/architect> <http://dbpedia.org/resource/Dundas_Castle> . ?x <http://dbpedia.org/ontology/restingPlace> ?uri . }" +"List all the children of Barbara Bush? | 'Barbara Bush'-res:Barbara_Bush | 'children'-dbp:children"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Barbara_Bush> <http://dbpedia.org/property/children> ?uri } " +"How many cities are around the sea in which the ionian sea flows? | 'cities'-dbo:city | 'sea'-dbo:lake | 'ionian sea'-dbo:lake | 'flows'-dbo:circulation","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/inflow> <http://dbpedia.org/resource/The_Irian_Sea> . ?x <http://dbpedia.org/property/cities> ?uri . }" +"Miguel de Cervantes wrote the musical extended from which book? | 'miguel de Cervantes'-res:Miguel_de_Cervantes | 'wrote'-dbp:author | 'musical'-dbo:show | 'extended'-dbo:languageFamily | 'book'-dbo:volume","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Miguel_de_Cervantes> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Musical>}" +"In how many different teams have all those who have played as a defenceman been? | 'Defenceman'-res:Defenceman | 'teams'-dbo:numberOfTeams | 'played'-dbo:portrayer","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/position> <http://dbpedia.org/resource/Defenceman> . ?x <http://dbpedia.org/ontology/team> ?uri . }" +"How many teams have LA kings players in them currently? | 'LA kings'-res:Los_Angeles_Kings | 'teams'-dbo:numberOfTeams","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/currentclub> <http://dbpedia.org/resource/Los_Angeles_Kings> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SportsTeam>}" +"What is the television show whose developer is J. Michael Straczynski? | 'J'-res:J | 'Michael Straczynski'-res:J._Michael_Straczynski | 'television show'-dbo:transmission | 'developer'-dbo:developer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/developer> <http://dbpedia.org/resource/J._Michael_Straczynski> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" +"list the organisation with motive for peace and environmentalism? | 'environmentalism'-res:Environmentalism | 'organisation'-dbo:organisation | 'motive'-dbo:field | 'peace'-dbp:content","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/purpose> <http://dbpedia.org/resource/Environmentalism> . ?uri <http://dbpedia.org/ontology/organisation> ?x . }" +"What is the content license of Darcs ? | 'Darcs'-res:Darcs | 'content license'-dbo:license"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Darcs> <http://dbpedia.org/ontology/license> ?uri } " +"Name a military unit whose command structure is United States Department of the Navy and garrison is Arlington County, Virginia? | 'United States Department of the Navy'-res:United_States_Navy | 'Arlington County, Virginia'-res:Arlington_County,_Virginia | 'name'-dbp:name | 'military unit'-dbo:garrison | 'command structure'-dbo:commandStructure | 'garrison'-dbo:garrison","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/commandStructure> <http://dbpedia.org/resource/United_States_Navy> . ?uri <http://dbpedia.org/property/garrison> <http://dbpedia.org/resource/Arlington_County,_Virginia> . }" +"List all the artist of albums which have been produced by Stephen Kozmeniuk ? | 'Stephen Kozmeniuk'-res:Stephen_Kozmeniuk | 'artist'-dbo:artist | 'albums'-dbo:endowment | 'produced'-dbo:wineProduced","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Stephen_Kozmeniuk> <http://dbpedia.org/property/producer> ?x . ?x <http://dbpedia.org/ontology/artist> ?uri . }" +"What is the mascot of the alma mater of Deborah Crombie? | 'Deborah Crombie'-res:Deborah_Crombie | 'mascot'-dbo:mascot | 'alma mater'-dbo:almaMater"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Deborah_Crombie> <http://dbpedia.org/property/almaMater> ?uri } " +"What is the resting place of the person who is the successor of James W. Hyatt ? | 'W'-res:Vienna | 'James Hyatt'-res:James_W._Hyatt | 'resting'-dbo:battle | 'place'-dbo:place | 'person'-dbp:type | 'successor'-dbo:successor","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/successor> <http://dbpedia.org/resource/James_W._Hyatt> . ?x <http://dbpedia.org/ontology/restingplace> ?uri . }" +"Name an airline with hub airports as Los Angeles International Airport and San Francisco International Airport? | 'Los Angeles International Airport'-res:Los_Angeles_International_Airport | 'San Francisco International Airport'-res:San_Francisco_International_Airport | 'name'-dbp:name | 'airline'-dbo:icaoAirlineCode | 'hub airports'-dbp:hub","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/hubAirport> <http://dbpedia.org/resource/Los_Angeles_International_Airport> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Airline>}" +"Who owns the bank where Fabio Mercurio works? | 'Fabio Mercurio'-res:Fabio_Mercurio | 'owns'-dbo:relation | 'bank'-dbo:series | 'works'-dbo:language","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Fabio_Mercurio> <http://dbpedia.org/ontology/employer> ?x . ?x <http://dbpedia.org/property/owner> ?uri . }" +"Who owns the horses which have won the Timeform award? | 'Timeform award'-res:Timeform | 'owns'-dbo:languageFamily | 'horses'-dbo:staff | 'won'-dbo:award","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/award> <http://dbpedia.org/resource/Timeform> . ?x <http://dbpedia.org/ontology/owner> ?uri . }" +"What are some fictional characters whose voice is in the peanuts movie? | 'the peanuts movie'-res:The_Peanuts_Movie | 'voice'-dbo:voice | 'peanuts movie'-dbo:picture","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/director> <http://dbpedia.org/resource/The_Peanuts_Movie> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/FictionalCharacter>}" +"How many people used to play for Toronto Argonauts? | 'Toronto Argonauts'-res:Toronto_Argonauts | 'play'-dbo:team","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/team> <http://dbpedia.org/resource/Toronto_Argonauts> . }" +"What is the national origin of Dornier Aerodyne and Hirth Acrostar ?; | 'Dornier Aerodyne'-res:Dornier_Aerodyne | 'Hirth Acrostar ;'-res:Hirth_Acrostar | 'national origin'-dbp:nationalOrigin | 'origin'-dbo:origin"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dornier_Aerodyne> <http://dbpedia.org/property/nationalOrigin> ?uri . <http://dbpedia.org/resource/Hirth_Acrostar> <http://dbpedia.org/ontology/origin> ?uri} " +"Who acted in the work written by Colin Brake? | 'Colin Brake'-res:Colin_Brake | 'acted'-dbp:noted | 'work'-dbo:service | 'written'-dbp:writtenby","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/notedWork> <http://dbpedia.org/resource/Colin_Brake> . ?x <http://dbpedia.org/ontology/starring> ?uri . }" +"List the series of the books whose author is K. W. Jeter. | 'K'-res:K | 'W Jeter'-res:K._W._Jeter | 'W'-res:W | 'K Jeter'-res:K._W._Jeter | 'series'-dbo:series | 'books'-dbo:title | 'author'-dbo:author","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/author> <http://dbpedia.org/resource/K._W._Jeter> . ?x <http://dbpedia.org/ontology/series> ?uri . }" +"How many sports are played at the university whose president is Emanuel de Guzman? | 'Emanuel de Guzman'-res:Emanuel_de_Guzman | 'sports'-dbo:athletics | 'played'-dbo:coach | 'university'-dbo:university | 'president'-dbo:president","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/president> <http://dbpedia.org/resource/Emanuel_de_Guzman> . ?x <http://dbpedia.org/ontology/athletics> ?uri . }" +"Give me the count of interests of the philosopher whose primary interest is Metaphysics ? | 'Metaphysics'-res:Metaphysics | 'interests'-dbp:mainInterests | 'interests'-dbp:mainInterests"," SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/mainInterests> <http://dbpedia.org/resource/Metaphysics> } " +"How many people won the Gold Medal of the Royal Astronomical Society? | 'Gold Medal of the Royal Astronomical Society'-res:Gold_Medal_of_the_Royal_Astronomical_Society | 'won'-dbp:prizes","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/prizes> <http://dbpedia.org/resource/Gold_Medal_of_the_Royal_Astronomical_Society> . }" +"Which program was on NBC network with executive producer as Glen and Les Charles? | 'NBC'-res:NBC | 'Glen'-res:Glen | 'Les Charles'-res:Glen_and_Les_Charles | 'program'-dbo:programmeFormat | 'network'-dbo:network | 'executive producer'-dbo:writer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/executiveProducer> <http://dbpedia.org/resource/Glen_and_Les_Charles> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" +"Which countries came together to serve a greater purpose and founded South Asia Subregional Economic Cooperation? | 'countries'-res:Countries_of_the_United_Kingdom | 'South Asia Subregional Economic Cooperation'-res:South_Asia_Subregional_Economic_Cooperation | 'serve'-dbp:minister | 'purpose'-dbo:purpose | 'founded'-dbo:leader","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/purpose> <http://dbpedia.org/resource/South_Asia_Subregional_Economic_Cooperation> . ?x <http://dbpedia.org/ontology/foundationCountry> ?uri . }" +"Through which label has Katy B released her singles? | 'B'-res:B | 'Katy'-res:Katy | 'label'-dbo:flag | 'released'-dbo:channel | 'singles'-dbo:slogan","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/artist> <http://dbpedia.org/resource/Katy_B._Raptor> . ?x <http://dbpedia.org/property/label> ?uri . }" +"List the teams for which Bobby Hoppe played ? | 'Bobby Hoppe'-res:Bobby_Hoppe | 'teams'-dbp:pastteams"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bobby_Hoppe> <http://dbpedia.org/property/pastteams> ?uri } " +"Who first ascented a mountain of Cathedral Peak (California) ? | 'Cathedral Peak (California)'-res:Cathedral_Peak_(California) | 'ascented'-dbo:firstAscentPerson | 'mountain'-dbo:elevation"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cathedral_Peak_(California)> <http://dbpedia.org/ontology/mountain> ?uri } " +"Which awards did the children of Erik Bergman won ? | 'Erik Bergman'-res:Erik_Bergman_(Lutheran_minister) | 'children'-dbp:children | 'awards'-dbp:awards"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Erik_Bergman_(Lutheran_minister)> <http://dbpedia.org/property/children> ?uri } " +"How many people are buried in the Mausoleum of Augustus? | 'Mausoleum of Augustus'-res:Mausoleum_of_Augustus | 'buried'-dbp:placeOfBurial","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/placeOfBurial> <http://dbpedia.org/resource/Mausoleum_of_Augustus> . }" +"List the program genres of the sister stations of 97.1 WASH FM? | 'WASH'-res:WASH_(FM) | 'sister stations'-dbp:sisterStations | 'program'-dbo:programmeFormat","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/sisterStations> <http://dbpedia.org/resource/WASH_(FM)> . ?x <http://dbpedia.org/ontology/programmeFormat> ?uri . }" +"Which team's players have played in the national hockey league? | 'national hockey league'-res:National_Hockey_League | 'team'-dbo:team | 'players'-dbo:participant | 'played'-dbo:participant","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/league> <http://dbpedia.org/resource/National_Hockey_League> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/HockeyPlayer>}" +"Where was James McClure born ? | 'James McClure'-res:James_McClure_(table_tennis) | 'born'-dbo:birthPlace"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/James_McClure_(table_tennis)> <http://dbpedia.org/ontology/birthPlace> ?uri } " +"Whose music composer is signed up with Sony Music Entertainment? | 'Sony Music Entertainment'-res:Sony_Music_Entertainment | 'music composer'-dbo:creator | 'signed'-dbo:movement","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/recordLabel> <http://dbpedia.org/resource/Sony_Music_Entertainment> . ?uri <http://dbpedia.org/property/musicComposer> ?x . }" +"Which labels signs up progressive rock bands? | 'progressive rock'-res:Progressive_rock | 'labels'-dbp:label | 'signs'-dbo:precursor","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/genre> <http://dbpedia.org/resource/Progressive_rock> . ?x <http://dbpedia.org/ontology/recordLabel> ?uri . }" +"Where does the railway tracks start, which ends in Kazan? | 'railway tracks start,'-res:Start | 'Kazan'-res:Kazan | 'ends'-dbp:end","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/end> <http://dbpedia.org/resource/Kazan> . ?x <http://dbpedia.org/ontology/railwayTrack> ?uri . }" +"what are some devices made by asus? | 'asus'-res:Asus | 'made by'-dbo:manufacturer | 'devices'-dbo:InformationAppliance","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/manufacturer> <http://dbpedia.org/resource/Asus> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Device>}" +"Which former team of Franois Beauchemin does the Nathan Dempsey played for ? | 'Franois Beauchemin does the Nathan Dempsey'-res:François_Beauchemin | 'former team'-dbo:formerTeam | 'played'-dbo:participant"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/François_Beauchemin> <http://dbpedia.org/ontology/formerTeam> ?uri } " +"What is the colour of Red Marauder ? | 'Red Marauder'-res:Red_Marauder | 'colour'-dbo:colour"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Red_Marauder> <http://dbpedia.org/ontology/colour> ?uri } " +"Who is the scientist whose doctoral student is Erich Bagge? | 'scientist'-res:Scientist | 'Erich Bagge'-res:Erich_Bagge | 'doctoral student'-dbo:doctoralStudent | 'scientist'-dbo:Scientist","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/doctoralStudent> <http://dbpedia.org/resource/Erich_Bagge> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}" +"Name some leaders of the parent organisation of the Gestapo? | 'Gestapo'-res:Gestapo | 'parent organisation'-dbo:parentOrganisation | 'leaders'-dbo:leader","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/parentOrganisation> <http://dbpedia.org/resource/Gestapo> . ?x <http://dbpedia.org/property/leader> ?uri . }" +"How many venues are located in the US? | 'US'-res:United_States | 'venues'-dbo:location | 'located'-dbo:locatedInArea","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/United_States> . ?x <http://dbpedia.org/property/venue> ?uri . }" +"Name the television show whose company is HBO and Playtone? | 'HBO'-res:HBO | 'and Playtone'-res:Playtone | 'name'-dbp:name | 'television show'-dbo:transmission | 'company'-dbo:company","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/company> <http://dbpedia.org/resource/HBO> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" +"List the actors of Lucy Sullivan Is Getting Married? | 'Lucy Sullivan Is Getting Married'-res:Lucy_Sullivan_Is_Getting_Married | 'actors of'-dbp:starring"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lucy_Sullivan_Is_Getting_Married> <http://dbpedia.org/property/starring> ?uri } " +"How many people have worked in the band one of whose current member is Hynief? | 'Hynief'-res:Hynief | 'worked'-dbo:operator | 'band'-dbo:band | 'current member'-dbo:part","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/currentMembers> <http://dbpedia.org/resource/Hynief> . ?uri <http://dbpedia.org/ontology/bandMember> ?x . }" +"Enumerate all those who are in the Board of companies founded in New York? | 'Board'-res:Board | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'New York'-res:New_York | 'founded'-dbp:foundation | 'Board'-dbo:board","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/foundation> <http://dbpedia.org/resource/New_York> . ?uri <http://dbpedia.org/ontology/board> ?x . }" +"How many people have been presenters for NBC shows? | 'NBC'-res:NBC | 'presenters'-dbo:presenter | 'shows'-dbo:place","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/channel> <http://dbpedia.org/resource/NBC> . ?uri <http://dbpedia.org/property/presenter> ?x . }" +"In which wars army men awarded with the Croix de Guerre, fought? | 'army men awarded'-res:Army_Men:_RTS | 'Croix de Guerre,'-res:École_Militaire | 'wars'-dbp:battles | 'fought'-dbo:type","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/battles> <http://dbpedia.org/resource/École_Militaire> . ?x <http://dbpedia.org/property/territory> ?uri . }" +"Where is Lao Plaza Hotel located? | 'Lao Plaza Hotel'-res:Lao_Plaza_Hotel | 'located'-dbo:position"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lao_Plaza_Hotel> <http://dbpedia.org/property/locationCountry> ?uri } " +"Which mainter of Pandaruan Bridge is also the land of Malaysia junior Hockey league ? | 'Pandaruan Bridge'-res:Pandaruan_Bridge | 'Malaysia junior Hockey league'-res:Malaysia_Junior_Hockey_League | 'mainter'-dbo:owner | 'land'-dbo:country"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pandaruan_Bridge> <http://dbpedia.org/ontology/owner> ?uri . <http://dbpedia.org/resource/Malaysia_Junior_Hockey_League> <http://dbpedia.org/property/country> ?uri} " +"Which writer has childrens named Mother Mary Alphonsa and Julian Hawthorne? | 'Mother Mary Alphonsa'-res:Mother_Mary_Alphonsa | 'Julian Hawthorne'-res:Julian_Hawthorne | 'writer'-dbo:writer | 'childrens'-dbp:children","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/children> <http://dbpedia.org/resource/Mother_Mary_Alphonsa> . ?uri <http://dbpedia.org/ontology/writer> <http://dbpedia.org/resource/Julian_Hawthorne> . }" +"Name all the hubs of the airlines whose one of the hubs is Selangir ? | 'Selangir'-res:Selangor | 'name'-dbo:name | 'hubs'-dbo:hubAirport | 'airlines'-dbo:icaoAirlineCode | 'hubs'-dbo:hubAirport"," SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/hubAirport> <http://dbpedia.org/resource/Selangor> . ?x <http://dbpedia.org/property/hubs> ?uri }" +"Who is the President of United World College of Costa Rica ? | 'President of United World College of Costa Rica'-res:United_World_College_of_Costa_Rica | 'President'-dbp:president"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/United_World_College_of_Costa_Rica> <http://dbpedia.org/property/president> ?uri } " +"Which city has it's landmark as Cheasty Boulevard South? | 'landmark'-res:Landmark | 'Cheasty Boulevard South'-res:Cheasty_Boulevard_South | 'city'-dbo:city","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cheasty_Boulevard_South> <http://dbpedia.org/property/Landmark> ?x . ?x <http://dbpedia.org/ontology/city> ?uri . }" +"Name the movie whose director is Ridley Scott and it's music composer is Vangelis? | 'Ridley Scott'-res:Ridley_Scott | 'Vangelis'-res:Vangelis | 'name'-dbp:name | 'movie'-dbo:picture | 'director'-dbo:director | 'music composer'-dbo:musicComposer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/director> <http://dbpedia.org/resource/Ridley_Scott> . ?uri <http://dbpedia.org/property/musicComposer> <http://dbpedia.org/resource/Vangelis> . }" +"How many currencies are in used in places where people speak French? | 'French'-res:French_language | 'places'-dbp:height | 'speak'-dbo:language | ''-dbo:country | ''-dbo:country","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/language> <http://dbpedia.org/resource/French_language> . ?x <http://dbpedia.org/property/currency> ?uri . }" +"How many factions were involved in the battles fought by Arthur St. Clair? | 'Arthur St Clair'-res:Arthur_St._Clair | 'factions'-dbo:movement | 'involved'-dbo:date | 'battles'-dbo:battle | 'fought'-dbo:type","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/battles> <http://dbpedia.org/resource/Arthur_St._Clair> . ?x <http://dbpedia.org/property/combatant> ?uri . }" +"Count the number of ingredient of the foods which have one of the ingredient is Pork ? | 'Pork'-res:Pork | 'count'-dbo:country | 'ingredient'-dbo:ingredient | 'foods'-dbo:product | 'ingredient'-dbo:ingredient"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/ingredient> <http://dbpedia.org/resource/Pork> . ?x <http://dbpedia.org/property/ingredients> ?uri }" +"List the newspapers whose headquarters's time zone is Central European Summer Time. | 'time zone'-res:Time_zone | 'Central European Summer Time'-res:Central_European_Summer_Time | 'newspapers'-dbo:title | 'headquarters'-dbo:headquarter","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Central_European_Summer_Time> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Newspaper>}" +"What are the academic interests of the advisor of Paul Demiville ? | 'Paul Demiville'-res:Paul_Paul | 'academic'-dbo:abstract | 'advisor'-dbo:doctoralAdvisor"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Paul_Paul> <http://dbpedia.org/ontology/doctoralAdvisor> ?uri } " +"Which awards are presented by Swedish Academy? | 'Swedish Academy'-res:Sweden | 'Swedish Academy'-res:Swedish_Academy | 'presented'-dbo:presenter | 'awards'-dbo:Award","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/presenter> <http://dbpedia.org/resource/Swedish_Academy> . ?x <http://dbpedia.org/ontology/Award> ?uri . }" +"what are some journals of academic Philosophy | 'academic Philosophy'-res:Teaching_Philosophy | 'journals'-dbp:journal","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/academicPhilosophy> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Journal>}" +"What is the official residence of the Lula J. Davis which is also the death location of the John McTaggart (jockey) ? | 'Lula J. Davis'-res:Lula_J._Davis | 'John McTaggart (jockey)'-res:John_McTaggart_(jockey) | 'residence'-dbo:residence | 'death location'-dbo:deathPlace"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lula_J._Davis> <http://dbpedia.org/ontology/residence> ?uri . <http://dbpedia.org/resource/John_McTaggart_(jockey)> <http://dbpedia.org/property/deathPlace> ?uri} " +"Name the nearest city to Lake Victoria? | 'Lake Victoria'-res:Lake_Victoria | 'nearest city'-dbo:nearestCity"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lake_Victoria> <http://dbpedia.org/ontology/nearestCity> ?uri } " +"What is the common award won by Charles LeMaire and Eric Roth | 'Charles LeMaire'-res:Charles_LeMaire | 'Eric Roth'-res:Eric_Roth | 'award won'-dbp:awards | 'award won'-dbo:award","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Charles_LeMaire> <http://dbpedia.org/property/awards> ?uri . <http://dbpedia.org/resource/Eric_Roth> <http://dbpedia.org/ontology/award> ?uri . }" +"Tell me the total number of organizations who maintain the bridges made by the malaysian PWD? | 'Malaysian pwd'-res:Malaysia | 'Malaysian pwd'-res:PWD_Bamenda | 'total'-dbo:populationTotal | 'organizations'-dbo:company | 'maintain'-dbo:maintainedBy | 'bridges'-dbo:abstract | ''-dbo:country"," SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/maintainedBy> <http://dbpedia.org/resource/Malaysian_PWD_Bamenda> . ?x <http://dbpedia.org/property/crosses> ?uri }" +"How many shows does HBO have? | 'HBO'-res:HBO | '@@@'-dbo:company | 'shows'-dbo:TelevisionShow","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/company> <http://dbpedia.org/resource/HBO> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" +"How many people have been canonized by Pope Benedict XVI? | 'Pope Benedict XVI'-res:Pope_Benedict_XVI | 'canonized'-dbo:canonizedBy","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/canonizedBy> <http://dbpedia.org/resource/Pope_Benedict_XVI> . }" +"Whose work is in the Musee d'orsay? | 'Musee d'-res:Musée_d'Orsay | 'work'-dbp:work","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/museum> <http://dbpedia.org/resource/Musée_d'Orsay> . ?x <http://dbpedia.org/property/work> ?uri . }" +"What are the famous Uni Toronto scientists known for? | 'Uni Toronto'-res:University_of_Toronto","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/university> <http://dbpedia.org/resource/University_of_Toronto> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}" +"How many books have been penned by Miguel de Cervantes? | 'Miguel de Cervantes'-res:Miguel_de_Cervantes | 'penned'-dbo:author | 'books'-dbo:Book","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/author> <http://dbpedia.org/resource/Miguel_de_Cervantes> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book>}" +"Count the band members of Skull Gang? | 'Skull Gang'-res:Skull_Gang | 'band members'-dbo:bandMember"," SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/bandMember> <http://dbpedia.org/resource/Skull_Gang> } " +"In which teams have league members of the Czech Extraliga played previously? | 'Czech Extraliga'-res:Czech_Republic | 'Czech Extraliga'-res:Czech_Extraliga | 'league'-dbp:league | 'teams'-dbo:formerTeam","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/league> <http://dbpedia.org/resource/Czech_Extraliga> . ?x <http://dbpedia.org/ontology/formerTeam> ?uri . }" +"In which cities were the chess grand masters born? | 'chess grand masters'-res:Grand_Masters'_Choice | 'cities'-dbo:country | 'born'-dbo:birthPlace","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/leaderName> <http://dbpedia.org/resource/Grand_Masters'_Choice> . ?x <http://dbpedia.org/ontology/birthPlace> ?uri . }" +"WHo gave the lyrcis of Doonesbury ? | 'wHo'-res:Who | 'Doonesbury'-res:Doonesbury_(musical) | 'lyrics'-dbo:lyrics"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Doonesbury_(musical)> <http://dbpedia.org/property/lyrics> ?uri } " +"Which things have been located, where governance is Houston City Council? | 'Houston City Council'-res:Houston_City_Council | 'located,'-dbo:locatedInArea | 'governance'-dbo:management","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/leaderName> <http://dbpedia.org/resource/Houston_City_Council> . ?x <http://dbpedia.org/ontology/location> ?uri . }" +"Who are the parents of Charles Phelps Taft II and Robert A. Taft? | 'II'-res:Ii | 'Charles Phelps Taft'-res:Charles_Phelps_Taft | 'A'-res:A | 'Robert Taft'-res:Robert_A._Taft | 'parents'-dbp:parents","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Charles_Phelps_Taft> <http://dbpedia.org/property/parents> ?uri . <http://dbpedia.org/resource/Robert_A._Taft> <http://dbpedia.org/ontology/parent> ?uri . }" +"How many prime ministers did the predecessor of Duncan Sandys serve? | 'Duncan Sandys'-res:Duncan_Sandys | 'prime ministers'-dbo:primeMinister | 'predecessor'-dbo:predecessor | 'serve'-dbo:colour","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/predecessor> <http://dbpedia.org/resource/Duncan_Sandys> . ?x <http://dbpedia.org/ontology/primeMinister> ?uri . }" +"Name the city served by Juhu Aerodrome ? | 'Juhu Aerodrome'-res:Juhu_Aerodrome | 'served city'-dbp:cityServed"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Juhu_Aerodrome> <http://dbpedia.org/property/cityServed> ?uri } " +"How many cars succeed the cars assembled in Canada? | 'Canada'-res:Canada | 'cars'-dbo:management | 'succeed'-dbp:work | 'cars'-dbo:management | 'assembled'-dbp:assembly","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/assembly> <http://dbpedia.org/resource/Canada> . ?x <http://dbpedia.org/ontology/predecessor> ?uri . }" +"What are the airlines whose hub is San Francisco International Airport? | 'San Francisco International Airport'-res:San_Francisco_International_Airport | 'hub'-dbp:hubs | 'airlines'-dbo:Airline","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/hubs> <http://dbpedia.org/resource/San_Francisco_International_Airport> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Airline>}" +"Which religions' people fought in the Miao rebellion? | 'Miao rebellion'-res:Miao_Rebellion | 'religions'-dbo:religion | 'fought'-dbo:type","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/Miao_Rebellion> . ?x <http://dbpedia.org/ontology/religion> ?uri . }" +"How many other architect are there of the historic places whose architect is also Stanford White ? | 'historic places'-res:Heritage_New_Zealand | 'Stanford White'-res:Stanford_White | 'architect'-dbo:architect | 'architect'-dbo:architect","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/architect> <http://dbpedia.org/resource/Stanford_White> . ?x <http://dbpedia.org/property/restingplace> ?uri . }" +"Which religion is followed by people in the family of Meadow Sopranos? | 'Meadow Sopranos'-res:Meadow_Soprano | 'religion'-dbo:religion | 'family'-dbo:family","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/family> <http://dbpedia.org/resource/Meadow_Soprano> . ?x <http://dbpedia.org/property/religion> ?uri . }" +"What are some shows whose voice actors play the piano? | 'piano'-res:Piano | 'shows'-dbo:place | 'voice actors'-dbo:voice | 'play'-dbo:starring","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/piano> <http://dbpedia.org/resource/Piano> . ?uri <http://dbpedia.org/ontology/voice> ?x . }" +"From how many different places have participants of Breeders's Cup Turf come? | 'Breeders'-res:Breeders_(film) | 'Cup Turf'-res:Breeders'_Cup_Juvenile_Turf | 'places'-dbp:height | 'participants'-dbo:participant","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/ontology/race> <http://dbpedia.org/resource/Breeders'_Cup_Juvenile_Turf> . ?x <http://dbpedia.org/property/locations> ?uri . }" +"How many athletic associations are there in all of the private universities? | 'athletic associations'-res:Bahamas_Association_of_Athletic_Associations | 'private universities'-res:List_of_private_universities_in_Canada","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/athletics> <http://dbpedia.org/resource/Bahamas_Association_of_Athletic_Associations> . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/University>}" +"What are some products manufactured by Sony? | 'Sony'-res:Sony | 'manufactured by'-dbo:manufacturer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/manufacturer> <http://dbpedia.org/resource/Sony> . }" +"What is the producer of the television shows whose channel is CBBC? | 'CBBC'-res:CBBC_(TV_channel) | 'producer'-dbo:producer | 'television'-dbo:transmission | 'shows'-dbo:place | 'channel'-dbo:channel","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/channel> <http://dbpedia.org/resource/CBBC_(TV_channel)> . ?x <http://dbpedia.org/property/producer> ?uri . }" +"List all the movies whose music has been made up with someone under RCA records? | 'RCA records'-res:RCA_Records | 'movies'-dbo:film | 'music'-dbo:musicFusionGenre | 'records'-dbp:book","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/recordLabel> <http://dbpedia.org/resource/RCA_Records> . ?uri <http://dbpedia.org/ontology/music> ?x . }" +"Name the ssignificant buildings of Ivan Fomin ? | 'ssignificant buildings'-res:Rigby's_Buildings | 'Ivan Fomin'-res:Ivan_Fomin | 'significant building'-dbo:significantBuilding"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ivan_Fomin> <http://dbpedia.org/ontology/significantBuilding> ?uri } " +"Give me the count of newspaper whose language is Sweedish and headquartered at stockholm ? | 'Sweedish'-res:Swedish | 'stockholm'-res:Stockholm | 'count'-dbo:country | 'newspaper'-dbo:title | 'language'-dbo:language | 'headquartered'-dbo:headquarter | ''-dbo:country","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/language> <http://dbpedia.org/resource/Swedish> . ?uri <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Stockholm> . }" +"What are the cities located on the sea into which the Aegean Sea flows? | 'Aegean Sea'-res:Aegean_Sea | 'flows'-dbo:outflow | 'cities'-dbp:cities","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Aegean_Sea> <http://dbpedia.org/ontology/inflow> ?x . ?x <http://dbpedia.org/property/cities> ?uri . }" +"In which areas did the pupils of Sylvain Levi work? | 'Sylvain Levi work'-res:Sylvain_Lévi | 'pupils'-dbo:school","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Sylvain_Lévi> <http://dbpedia.org/ontology/school> ?x . ?x <http://dbpedia.org/property/subject> ?uri . }" +"List the writers of Tales of Suspense ? | 'Tales of Suspense'-res:Tales_of_Suspense | 'writers'-dbp:writers"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Tales_of_Suspense> <http://dbpedia.org/property/writers> ?uri } " +"Who are the children of Abigail Adams? | 'Abigail Adams'-res:Abigail_Adams | 'children'-dbp:children"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Abigail_Adams> <http://dbpedia.org/property/children> ?uri } " +"what are some common games played at both Fr Agnel Multipurpose School and Vishwajyot High School? | 'Fr Agnel Multipurpose School'-res:Fr._Agnel_Multipurpose_School_and_Junior_College | 'Vishwajyot High School'-res:Vishwajyot_High_School | 'common games'-dbo:sport | 'played'-dbo:coach","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Fr._Agnel_Multipurpose_School_and_Junior_College> <http://dbpedia.org/ontology/sport> ?uri . <http://dbpedia.org/resource/Vishwajyot_High_School> <http://dbpedia.org/property/team> ?uri . }" +"Who have done their PhDs under a National Medal of Science winner? | 'PhDs under a National Medal of Science winner'-res:National_Medal_of_Science | 'winner'-dbp:prizes | 'PhDs under'-dbp:doctoralAdvisor","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/prizes> <http://dbpedia.org/resource/National_Medal_of_Science> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/PhD>}" +"How many people are there who have relationship with Kennedy family? | 'Kennedy family'-res:Kennedy_family | 'relationship'-dbo:relation","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/ontology/relation> <http://dbpedia.org/resource/Kennedy_family> . }" +"What islands are there on the Greater Antilles archipelago? | 'Greater Antilles archipelago'-res:Greater_Antilles | 'islands'-dbo:numberOfIslands","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/archipelago> <http://dbpedia.org/resource/Greater_Antilles> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Island>}" +"Name the military units whose command structure's headquarters is The Pentagon? | 'The Pentagon'-res:The_Pentagon | 'name'-dbp:name | 'military units'-dbo:militaryBranch | 'command structure'-dbo:commandStructure | 'headquarters'-dbp:headquarters","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/commandStructure> <http://dbpedia.org/resource/The_Pentagon> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MilitaryUnit>}" +"Which rivers end in Old Saybrook, Connecticut? | 'Old Saybrook, Connecticut'-res:Old_Saybrook,_Connecticut | 'in'-dbo:mouthMountain"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/mouthMountain> <http://dbpedia.org/resource/Old_Saybrook,_Connecticut> } " +"What are the baseball players who played for San Francisco Giants? | 'baseball players'-res:List_of_Japanese_baseball_players | 'San Francisco Giants'-res:San_Francisco_Giants | 'played for'-dbo:team | 'baseball player'-dbo:BaseballPlayer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/team> <http://dbpedia.org/resource/San_Francisco_Giants> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/BaseballPlayer>}" +"What are the schools whose city is Reading, Berkshire? | 'Reading, Berkshire'-res:Reading,_Berkshire | 'city'-dbo:city","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/city> <http://dbpedia.org/resource/Reading,_Berkshire> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/School>}" +"Find the total number of tenants of the stadium whose tenants was Toronto Marlies? | 'Toronto Marlies'-res:Toronto_Marlies | 'tenants'-dbp:tenants | 'tenants'-dbp:tenants","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/tenants> <http://dbpedia.org/resource/Toronto_Marlies> . ?tenants ?uri . }" +"Whose relatives are Uncle Henry (Oz) and Aunt Em? | 'Uncle Henry (Oz)'-res:Uncle_Henry_(Oz) | 'Aunt Em'-res:Aunt_Em | 'relatives'-dbo:relative | 'relatives'-dbo:relative","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/relatives> <http://dbpedia.org/resource/Uncle_Henry_(Oz)> . ?uri <http://dbpedia.org/ontology/relative> <http://dbpedia.org/resource/Aunt_Em> . }" +"Which companies have Kumho Asiana Group as their parent company? | 'companies'-res:Companies_listed_on_the_New_York_Stock_Exchange_(J) | 'Kumho Asiana Group'-res:Kumho_Asiana_Group | 'parent company'-dbo:parentCompany"," SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/parentCompany> <http://dbpedia.org/resource/Kumho_Asiana_Group> } " +"How many buildings are located in Toronto ? | 'Toronto'-res:Toronto | 'located'-dbp:location","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/location> <http://dbpedia.org/resource/Toronto> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Building>}" +"How many people have been the head coach for Middlesbrough FC? | 'Middlesbrough FC'-res:Middlesbrough_F.C. | 'head coach'-dbo:ground","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/club> <http://dbpedia.org/resource/Middlesbrough_F.C> . . }" +"Who is married to a Miss Louisiana, USA? | ''-res:Miss_Louisiana_USA | 'USA'-dbp:title | 'married to'-dbp:spouse","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/title> <http://dbpedia.org/resource/Miss_Louisiana_USA> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Spouse>}" +"What sports are played by school which owns Fr. Agnel Stadium ? | 'Fr. Agnel Stadium'-res:Fr._Agnel_Stadium | 'sports'-dbo:sport | 'played'-dbo:coach | 'school'-dbo:school | 'owns'-dbo:languageFamily"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Fr._Agnel_Stadium> <http://dbpedia.org/property/owner> ?uri } " +"What are the television shows telecasted on the network which has headquarters at Atlanta? | 'Atlanta'-res:Atlanta | 'television shows'-dbo:televisionSeries | 'telecasted'-dbo:transmission | 'network'-dbo:network | 'headquarters'-dbo:headquarter","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Atlanta> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" +"Name the award given in Norway and presented by Swedish Academy ? | 'Norway'-res:Norway | 'Swedish Academy'-res:Sweden | 'Swedish Academy'-res:Swedish_Academy | 'name'-dbp:name | 'award'-dbo:award | ''-dbo:country","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Norway> <http://dbpedia.org/property/presenter> ?x . ?x <http://dbpedia.org/ontology/award> ?uri . }" +"What are some shows by Comedy Central? | 'Comedy Central'-res:Comedy_Central | 'shows'-dbo:place","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/company> <http://dbpedia.org/resource/Comedy_Central> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" +"What came before PlayStation 4 and uses PlayStation 3 system software as OS? | 'PlayStation 4'-res:PlayStation_4 | 'PlayStation 3'-res:PlayStation_3 | 'software'-res:Software | 'OS'-res:OS","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/computingPlatform> <http://dbpedia.org/resource/PlayStation_4> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Software>}" +"Who are the people which were the influencer of the person, who influenced Costanzo Preve ? | 'Costanzo Preve'-res:Costanzo_Preve | 'influncer'-dbo:influencedBy | 'influnced'-dbo:influencedBy","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/influencedBy> <http://dbpedia.org/resource/Costanzo_Preve> . ?x <http://dbpedia.org/property/influncer> ?uri . }" +"What is the alma mater of Andrew W. Lewis ? | 'W'-res:W | 'Andrew Lewis'-res:Andrew_W._Lewis | 'alma mater'-dbo:almaMater"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Andrew_W._Lewis> <http://dbpedia.org/ontology/almaMater> ?uri } " +"Name the nearest city to the historic place which has Englewood, Colorado as one of them ? | 'Englewood, Colorado'-res:Englewood,_Colorado | 'name'-dbp:name | 'nearest city'-dbo:city | 'historic place'-dbo:district"," SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/nearestCity> <http://dbpedia.org/resource/Englewood,_Colorado> . ?x <http://dbpedia.org/ontology/district> ?uri }" +"From which team did Marv McFadden played ? | 'Marv McFadden'-res:Marv_McFadden | 'team'-dbp:pastteams"," SELECT DISTINCT COUNT( ?uri) WHERE { <http://dbpedia.org/resource/Marv_McFadden> <http://dbpedia.org/property/pastteams> ?uri } " +"What is the title of Kakae ? | 'Kakae'-res:Kakae | 'title'-dbo:title"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kakae> <http://dbpedia.org/ontology/title> ?uri } " +"Who wrote Heroman? | 'Heroman'-res:Heroman | 'wrote'-dbo:author"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Heroman> <http://dbpedia.org/ontology/author> ?uri } " +"Where did the ultimate fighter: a champion will be crowned tonight and ultimate fighter: team rousey vs team tate take place? | 'ultimate fighter: team rousey'-res:Ronda_Rousey | 'ultimate fighter:'-dbo:height | 'champion'-dbo:champion | 'crowned'-dbo:height | 'tonight'-dbo:champion | 'team tate'-dbo:band | 'place'-dbo:place"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ronda_Rousey> <http://dbpedia.org/property/champion> ?uri . <http://dbpedia.org/resource/Team_Tate> <http://dbpedia.org/ontology/tenant> ?uri} " +"Which nation's engineers have graduated in Poland? | 'Poland'-res:Poland | 'nation'-dbo:country | 'engineers'-dbo:architect | 'graduated'-dbo:effectiveRadiatedPower","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/country> <http://dbpedia.org/resource/Poland> . ?x <http://dbpedia.org/ontology/engineer> ?uri . }" +"Give me a count of movies whose music composer is Bernard Herrmann? | 'Bernard Herrmann'-res:Bernard_Herrmann | 'music composer'-dbo:musicComposer | 'movie'-dbo:Film","SELECT DISTINCT COUNT( ?uri) WHERE { ?uri <http://dbpedia.org/property/musicComposer> <http://dbpedia.org/resource/Bernard_Herrmann> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" +"Who has written works found in the Gangan comics? | 'Gangan comics'-res:Gangan_Comics | 'found'-dbp:magazine | 'found'-dbp:author","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/magazine> <http://dbpedia.org/resource/Gangan_Comics> . ?uri <http://dbpedia.org/ontology/author> ?x . }" +"What is the device whose successor's CPU is by AMD? | 'AMD'-res:Advanced_Micro_Devices | 'device'-dbo:title | 'successor'-dbo:successor","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/successor> <http://dbpedia.org/resource/Advanced_Micro_Devices> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Device>}" +"What is the club of Perianne Jones ? | 'Perianne Jones'-res:Perianne_Jones | 'club'-dbo:club"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Perianne_Jones> <http://dbpedia.org/ontology/club> ?uri } " +"Who are the opponents of graduates of the Middle Temple? | 'Middle Temple'-res:Middle_Temple | 'graduates'-dbp:education | 'opponent'-dbo:opponent","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/education> <http://dbpedia.org/resource/Middle_Temple> . ?x <http://dbpedia.org/ontology/opponent> ?uri . }" +"Which sports are played typically in private schools? | 'private school'-res:Private_school | 'schools'-dbp:schooltype | 'sport'-dbo:sport","SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/school> <http://dbpedia.org/resource/Private_school> . ?x <http://dbpedia.org/ontology/sport> ?uri . }" +"What is the casting of the movie directed by Justin Zackham ? | 'Justin Zackham'-res:Justin_Zackham | 'casting'-dbo:position | 'movie'-dbo:picture | 'directed'-dbo:principal","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/director> <http://dbpedia.org/resource/Justin_Zackham> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}" +"List all the mmebers of Mekong River Commission? | 'Mekong River Commission'-res:Mekong_River_Commission | 'mmebers'-dbo:membership"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Mekong_River_Commission> <http://dbpedia.org/ontology/membership> ?uri } " +"Name the actors of the TV show which has an episode named The Five ? | 'TV'-res:Tv_test_pattern | 'The Five'-res:The_Five | 'name actors'-dbo:leaderName | 'show'-dbo:show | 'episode'-dbo:type","SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Five> <http://dbpedia.org/ontology/series> ?x . ?x <http://dbpedia.org/property/starring> ?uri . }" +"How many religion's people have died in Malaysia? | 'Malaysia'-res:Malaysia | 'died in'-dbo:deathPlace | 'religion'-dbo:religion","SELECT DISTINCT COUNT( ?uri) WHERE { ?x <http://dbpedia.org/property/placeOfDeath> <http://dbpedia.org/resource/Malaysia> . ?x <http://dbpedia.org/ontology/religion> ?uri . }" +"Name the HBO TV show written by Erik jendresen ? | 'HBO'-res:HBO | 'TV show'-res:Show_TV | 'TV'-res:Tv_test_pattern | 'HBO show'-res:HBO_Pakistan | 'Erik jendresen'-res:Erik_Jendresen | 'name'-dbp:name | 'written'-dbo:writer","SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/writer> <http://dbpedia.org/resource/HBO_Pakistan> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}" +"List the team for which Doug Acomb played ? | 'Doug Acomb'-res:Doug_Acomb | 'team'-dbp:playedFor"," SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Doug_Acomb> <http://dbpedia.org/property/playedFor> ?uri } " diff --git a/evaluate.ipynb b/evaluate.ipynb index 34e1a0c67a99c31435cd3105af63b1a2d3ff4299..fa08020b2ec633d9b1ad75a2bbfbeec373d5e80f 100644 --- a/evaluate.ipynb +++ b/evaluate.ipynb @@ -2,7 +2,7 @@ "cells": [ { "cell_type": "code", - "execution_count": 2, + "execution_count": 1, "metadata": {}, "outputs": [], "source": [ @@ -11,27 +11,34 @@ "\n", "# Specify the correct and predicted query responses\n", "input_path= \"data/lc-quad-requeried-linked-test.json\"\n", - "pred_path = \"data/predicted/lc-quad-requeried-linked-test-predicted-append-1-large-10-epochs.csv\"\n", + "pred_path = \"data/predicted/lc-quad-requeried-linked-test-predicted-append-1-large-4-epochs.csv\"\n", "dump_path = pred_path.replace(\"predicted\", \"pred_responses\").replace(\".csv\", \".json\")\n" ] }, { "cell_type": "code", - "execution_count": 16, + "execution_count": 2, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ - "1161it [03:22, 5.74it/s]\n" + "1161it [03:03, 6.33it/s]" ] }, { "name": "stdout", "output_type": "stream", "text": [ - "Errors: 137\n" + "Errors: 15\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\n" ] } ], @@ -49,18 +56,38 @@ "name": "stdout", "output_type": "stream", "text": [ - "Evaluation againts server results\n" + "Evaluation againts server results\n", + "Begin evaluation\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100%|██████████| 1161/1161 [00:00<00:00, 67736.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Precision macro: 0.34168246759219223\n", + "Recall macro: 0.34538766263173165\n", + "F1 macro: 0.33773159161379057\n", + "Precision micro: 0.2601919788161299\n", + "Recall micro: 0.34827395237216047\n", + "F1 micro: 0.29785756006408937\n", + "TP micro: 9433\n", + "FP micro: 26821\n", + "FN micro: 17652\n", + "Fully correct: 358\n" ] }, { - "ename": "NameError", - "evalue": "name 'dump_path' is not defined", - "output_type": "error", - "traceback": [ - "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[1;31mNameError\u001b[0m Traceback (most recent call last)", - "\u001b[1;32mc:\\Users\\Albin\\workspace\\codebase\\evaluate.ipynb Cell 3\u001b[0m in \u001b[0;36m<cell line: 3>\u001b[1;34m()\u001b[0m\n\u001b[0;32m <a href='vscode-notebook-cell:/c%3A/Users/Albin/workspace/codebase/evaluate.ipynb#W2sZmlsZQ%3D%3D?line=0'>1</a>\u001b[0m \u001b[39m# Evaluate expected query response, against the predicted query response\u001b[39;00m\n\u001b[0;32m <a href='vscode-notebook-cell:/c%3A/Users/Albin/workspace/codebase/evaluate.ipynb#W2sZmlsZQ%3D%3D?line=1'>2</a>\u001b[0m \u001b[39mprint\u001b[39m(\u001b[39m\"\u001b[39m\u001b[39mEvaluation againts server results\u001b[39m\u001b[39m\"\u001b[39m)\n\u001b[1;32m----> <a href='vscode-notebook-cell:/c%3A/Users/Albin/workspace/codebase/evaluate.ipynb#W2sZmlsZQ%3D%3D?line=2'>3</a>\u001b[0m precision_macro_query, recall_macro_query, f1_macro_query, precision_micro_query, recall_micro_query, f1_micro_query, fully_correct_query \u001b[39m=\u001b[39m eq\u001b[39m.\u001b[39meval_query_response(input_path, dump_path)\n", - "\u001b[1;31mNameError\u001b[0m: name 'dump_path' is not defined" + "name": "stderr", + "output_type": "stream", + "text": [ + "\n" ] } ], @@ -73,25 +100,45 @@ }, { "cell_type": "code", - "execution_count": 1, + "execution_count": 4, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "Evaluation of queries as strings\n" + "Evaluation of queries as strings\n", + "Begin evaluation\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100%|██████████| 1161/1161 [00:00<00:00, 193337.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Precision macro: 0.8030609762521919\n", + "Recall macro: 0.7913620401992508\n", + "F1 macro: 0.7947304198110867\n", + "Precision micro: 0.7912972085385879\n", + "Recall micro: 0.7802153323079414\n", + "F1 micro: 0.7857171972445279\n", + "TP micro: 9638\n", + "FP micro: 2542\n", + "FN micro: 2715\n", + "Fully correct: 162\n" ] }, { - "ename": "NameError", - "evalue": "name 'eq' is not defined", - "output_type": "error", - "traceback": [ - "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[1;31mNameError\u001b[0m Traceback (most recent call last)", - "\u001b[1;32mc:\\Users\\Albin\\workspace\\codebase\\evaluate.ipynb Cell 4\u001b[0m in \u001b[0;36m<cell line: 3>\u001b[1;34m()\u001b[0m\n\u001b[0;32m <a href='vscode-notebook-cell:/c%3A/Users/Albin/workspace/codebase/evaluate.ipynb#W3sZmlsZQ%3D%3D?line=0'>1</a>\u001b[0m \u001b[39m# Evaluate the expected query against the predicted query as string likness.\u001b[39;00m\n\u001b[0;32m <a href='vscode-notebook-cell:/c%3A/Users/Albin/workspace/codebase/evaluate.ipynb#W3sZmlsZQ%3D%3D?line=1'>2</a>\u001b[0m \u001b[39mprint\u001b[39m(\u001b[39m\"\u001b[39m\u001b[39mEvaluation of queries as strings\u001b[39m\u001b[39m\"\u001b[39m)\n\u001b[1;32m----> <a href='vscode-notebook-cell:/c%3A/Users/Albin/workspace/codebase/evaluate.ipynb#W3sZmlsZQ%3D%3D?line=2'>3</a>\u001b[0m precision_macro_string, recall_macro_string, f1_macro_string, precision_micro_string, recall_micro_string, f1_micro_string, fully_correct_string \u001b[39m=\u001b[39m eq\u001b[39m.\u001b[39meval_query_json(input_path, dump_path)\n", - "\u001b[1;31mNameError\u001b[0m: name 'eq' is not defined" + "name": "stderr", + "output_type": "stream", + "text": [ + "\n" ] } ], @@ -103,7 +150,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 5, "metadata": {}, "outputs": [], "source": [