diff --git a/.gitignore b/.gitignore index 9a954b8..1d81a7b 100644 --- a/.gitignore +++ b/.gitignore @@ -16,3 +16,4 @@ bin/ */.tmp *.log +/target/ diff --git a/pom.xml b/pom.xml index f8e0514..5e71b07 100644 --- a/pom.xml +++ b/pom.xml @@ -1,123 +1,128 @@ - 4.0.0 - com.magnetic - erd - 0.0.1-SNAPSHOT - erd-contest - Entity Linking Challenge - - - - - - org.apache.lucene - lucene-suggest - 4.3.0 - - - - com.fasterxml.jackson.core - jackson-databind - 2.6.2 - - - - com.fasterxml.jackson.core - jackson-annotations - 2.6.2 - - - - com.fasterxml.jackson.core - jackson-core - 2.6.2 - - - - junit - junit - 4.11 - - - - com.sun.jersey - jersey-servlet - 1.17 - - - - com.sun.jersey.contribs - jersey-multipart - 1.17 - - - - com.sun.jersey - jersey-json - 1.17 - - - com.sun.jersey - jersey-bundle - 1.17 - - - - org.jvnet - mimepull - 1.6 - - - - org.apache.lucene - lucene-core - 4.3.0 - - - - - org.apache.lucene - lucene-queryparser - 4.3.0 - - - - org.apache.lucene - lucene-analyzers-common - 4.3.0 - - - - log4j - log4j - 1.2.16 - - - - - com.ibm.icu - icu4j - 53.1 - - - - commons-lang - commons-lang - 2.3 - - - - - - - org.apache.commons - commons-compress - 1.5 - - + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + 4.0.0 + com.magnetic + erd + 0.0.1-SNAPSHOT + erd-contest + Entity Linking Challenge + + + + + + org.apache.lucene + lucene-suggest + 4.3.0 + + + + com.fasterxml.jackson.core + jackson-databind + 2.6.2 + + + + com.fasterxml.jackson.core + jackson-annotations + 2.6.2 + + + + com.fasterxml.jackson.core + jackson-core + 2.6.2 + + + + junit + junit + 4.11 + + + + com.sun.jersey + jersey-servlet + 1.17 + + + + com.sun.jersey.contribs + jersey-multipart + 1.17 + + + + com.sun.jersey + jersey-json + 1.17 + + + com.sun.jersey + jersey-bundle + 1.17 + + + + org.jvnet + mimepull + 1.6 + + + + org.apache.lucene + lucene-core + 4.3.0 + + + + + org.apache.lucene + lucene-queryparser + 4.3.0 + + + + org.apache.lucene + lucene-analyzers-common + 4.3.0 + + + + log4j + log4j + 1.2.16 + + + + + com.ibm.icu + icu4j + 53.1 + + + + commons-lang + commons-lang + 2.3 + + + + + + + org.apache.commons + commons-compress + 1.5 + + + + commons-cli + commons-cli + 1.2 + commons-cli commons-cli @@ -128,67 +133,82 @@ poi 3.11 - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 2.3.2 - - 1.7 - 1.7 - UTF-8 - - - - - - maven-assembly-plugin - - - - jar-with-dependencies - - - - - - + + org.apache.commons + commons-lang3 + + + commons-io + commons-io + + + org.jblas + jblas + + + me.lemire.integercompression + JavaFastPFOR + + + com.esotericsoftware.kryo + kryo + + + edu.stanford.nlp + stanford-corenlp + 3.6.0 + + + edu.stanford.nlp + stanford-corenlp + 3.6.0 + models + + + edu.washington.cs.knowitall.openie + openie_2.10 + 4.2.1 + + + net.sf.jwordnet + jwnl + 1.4_rc3 + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 2.3.2 + + 1.7 + 1.7 + UTF-8 + + + + + + maven-assembly-plugin + + + + jar-with-dependencies + + + + + + org.apache.maven.plugins maven-assembly-plugin @@ -216,7 +236,46 @@ - - + + + + + + org.apache.commons + commons-math3 + 3.5 + + + org.apache.commons + commons-lang3 + 3.3.2 + + + commons-io + commons-io + 2.4 + + + org.jblas + jblas + 1.2.3 + + + me.lemire.integercompression + JavaFastPFOR + 0.0.12 + + + com.esotericsoftware.kryo + kryo + 2.24.0 + + + edu.stanford.nlp + stanford-corenlp + 3.6.0 + + + diff --git a/src/main/java/DP_entity_linking/Main.java b/src/main/java/DP_entity_linking/Main.java index 793f442..9ea37a1 100644 --- a/src/main/java/DP_entity_linking/Main.java +++ b/src/main/java/DP_entity_linking/Main.java @@ -23,7 +23,7 @@ public class Main { public void normalStart() throws IOException, ParseException { - DataSet dataset = new DataSet(); + DataSet dataset = new DataSet("C:\\workspace\\webquestions.json"); List records = dataset.loadWebquestions(); //records = records.subList(0, 3700); records = records.subList(0, 5); diff --git a/src/main/java/DP_entity_linking/dataset/DataSet.java b/src/main/java/DP_entity_linking/dataset/DataSet.java index 3077e77..2beea89 100644 --- a/src/main/java/DP_entity_linking/dataset/DataSet.java +++ b/src/main/java/DP_entity_linking/dataset/DataSet.java @@ -13,21 +13,25 @@ * Created by miroslav.kudlac on 11/22/2015. */ public class DataSet { - private static Logger LOGGER = Logger.getLogger(Search.class); - //private static final File JSON_FILE = new File("data/webquestions.train"); - private static final File JSON_FILE = new File("data/data.json"); - public static class Records extends ArrayList { - public Records() { - } - } + private static Logger LOGGER = Logger.getLogger(Search.class); + private static File JSON_FILE; - /** - * @return - * @throws IOException - */ - public List loadWebquestions() throws IOException { - ObjectMapper mapper = new ObjectMapper(); - return (List)mapper.readValue(JSON_FILE, Records.class); - } + public DataSet(String path) { + JSON_FILE = new File(path); + } + + public static class Records extends ArrayList { + public Records() { + } + } + + /** + * @return + * @throws IOException + */ + public List loadWebquestions() throws IOException { + ObjectMapper mapper = new ObjectMapper(); + return (List) mapper.readValue(JSON_FILE, Records.class); + } } diff --git a/src/main/java/DP_entity_linking/dataset/Record.java b/src/main/java/DP_entity_linking/dataset/Record.java index 57fba4c..e108601 100644 --- a/src/main/java/DP_entity_linking/dataset/Record.java +++ b/src/main/java/DP_entity_linking/dataset/Record.java @@ -1,58 +1,64 @@ package DP_entity_linking.dataset; +import java.net.URI; +import java.util.ArrayList; +import java.util.Map; + /** * Created by miroslav.kudlac on 10/3/2015. */ public class Record { - private String utterance; - private String url; - private String targetValue; - - public String getUrl() { - return url; - } - - public void setUrl(String url) { - this.url = url; - } - - public void setTargetValue(String targetValue) { - this.targetValue = targetValue; - } - - public String getTargetValue() { - return targetValue; - } - - public String getUtterance() { - return utterance; - } - - public void setUtterance(String utterance) { - this.utterance = utterance; - } - - public String getAnswer() { - if (getUrl() == null) { - return " "; - } - return getUrl(); - // String path = this.getUrl().getPath(); - // path = path.substring(path.lastIndexOf('/') + 1); - // String answer = path.replace("_", " "); - // return answer; - } - - public String getQuestion() { - return getUtterance(); - } - - @Override - public String toString() { - return "Record{" + - "utterance='" + utterance + '\'' + - ", url=" + url + - ", targetValue='" + targetValue + '\'' + - '}'; - } + private String utterance; + private URI url; + private String targetValue; + private Map> relations; + + public URI getUrl() { + return url; + } + + public void setUrl(URI url) { + this.url = url; + } + + public void setTargetValue(String targetValue) { + this.targetValue = targetValue; + } + + public String getTargetValue() { + return targetValue; + } + + public String getUtterance() { + return utterance; + } + + public Map> getRelations() { + return relations; + } + + public void setUtterance(String utterance) { + this.utterance = utterance; + } + + public String getAnswer() { + String path = this.getUrl().getPath(); + path = path.substring(path.lastIndexOf('/') + 1); + String answer = path.replace("_", " "); + return answer; + } + + public String getQuestion() { + return getUtterance(); + } + + public void setRelations(Map> relations) { + this.relations = relations; + } + + @Override + public String toString() { + return "Record{" + "utterance='" + utterance + '\'' + ", url=" + url + ", targetValue='" + targetValue + '\'' + + '}'; + } } diff --git a/src/main/java/DP_entity_linking/geneticAlgorithm/GeneticClass.java b/src/main/java/DP_entity_linking/geneticAlgorithm/GeneticClass.java index 2b8972f..c857543 100644 --- a/src/main/java/DP_entity_linking/geneticAlgorithm/GeneticClass.java +++ b/src/main/java/DP_entity_linking/geneticAlgorithm/GeneticClass.java @@ -34,7 +34,7 @@ public GeneticClass(Random rnd) { * @throws ParseException */ public void doJob() throws IOException, ParseException { - DataSet dataset = new DataSet(); + DataSet dataset = new DataSet("C:\\workspace\\webquestions.json"); List records = dataset.loadWebquestions(); records = records.subList(0, 1000); Search search = new Search(); diff --git a/src/main/java/relation_linking/DBPediaOntologyExtractor.java b/src/main/java/relation_linking/DBPediaOntologyExtractor.java new file mode 100644 index 0000000..c525cf4 --- /dev/null +++ b/src/main/java/relation_linking/DBPediaOntologyExtractor.java @@ -0,0 +1,86 @@ +package relation_linking; + +import java.io.*; +import java.util.*; + +public class DBPediaOntologyExtractor { + + private ArrayList listOfRelations = new ArrayList(); + private Map listOfCleanRelations = new HashMap(); + private ArrayList lowerCaseListOfRelations = new ArrayList(); + + @SuppressWarnings("unchecked") + public DBPediaOntologyExtractor(String filePath) throws FileNotFoundException, IOException, ClassNotFoundException { + + System.out.println("Initializing DBPedia Ontology extractor..."); + + File dbPediaStore = new File("src/main/resources/data/DBPediaStore"); + + if (!dbPediaStore.exists() || dbPediaStore.isDirectory()) { + try (BufferedReader br = new BufferedReader(new FileReader(filePath))) { + String line; + String relation = new String(); + while ((line = br.readLine()) != null) { + if (line.indexOf(") ois.readObject(); + ois.close(); + } + cleanDBPediaTypes(); + toLowerCaseTypes(); + } + + private String getRelation(String line) { + String ontologyLink = line.substring(line.indexOf("<"), line.indexOf(">") + 1); + return ontologyLink.substring(ontologyLink.lastIndexOf("/") + 1, ontologyLink.indexOf(">")); + } + + public ArrayList getDBPediaRelations() { + return this.listOfRelations; + } + + public ArrayList getLowerDBPediaRelations(){ + return this.lowerCaseListOfRelations; + } + + public String[] splitKey(String key) { + String[] r = key.split("(?=\\p{Upper})"); + return r; + } + + private void cleanDBPediaTypes(){ + for (String relation : listOfRelations){ + if(!relation.equals(relation.toLowerCase())){ + String[] r = splitKey(relation); + for (int i=0;i getCleanDBPediaTypes(){ + return this.listOfCleanRelations; + } + +} diff --git a/src/main/java/relation_linking/DirectSearchEngine.java b/src/main/java/relation_linking/DirectSearchEngine.java new file mode 100644 index 0000000..4cc4b88 --- /dev/null +++ b/src/main/java/relation_linking/DirectSearchEngine.java @@ -0,0 +1,111 @@ +package relation_linking; + +import java.io.*; +import java.util.*; + +import edu.stanford.nlp.ling.HasWord; +import edu.stanford.nlp.process.DocumentPreprocessor; + +public class DirectSearchEngine { + + private DBPediaOntologyExtractor doe; + private FBCategoriesExtractor fce; + private int matchedInSentence; + + public DirectSearchEngine() { + + System.out.println("Initializing Direct search engine..."); + + this.doe = RelationLinkingEngine.getDBPediaOntologyExtractor(); + this.fce = RelationLinkingEngine.getFBCategoriesExtractor(); + } + + protected Map getRelations(String sentence) + throws FileNotFoundException, UnsupportedEncodingException { + + System.out.println("Getting direct search relations..."); + + Map results = new HashMap(); + + Reader reader = new StringReader(sentence); + + for (Iterator> iterator = new DocumentPreprocessor(reader).iterator(); iterator.hasNext();) { + List word = iterator.next(); + + matchedInSentence = 0; + + for (int i = 0; i < word.size(); i++) { + String sWord = word.get(i).toString(); + if (isDBPediaRelation(sWord)) { + results.put(sWord, new Double(1.00)); + matchedInSentence++; + } + if (isFBCategory(sWord)) { + results.put(sWord, new Double(1.00)); + matchedInSentence++; + } + + String matched = isInComposedDBPediaRelations(word.get(i), word); + if (matched != null) { + results.put(matched, new Double(1.00)); + matchedInSentence++; + } + + matched = isInComposedFBRelations(word.get(i), word); + if (matched != null) { + results.put(matched, new Double(1.00)); + matchedInSentence++; + } + } + } + + return results; + } + + private boolean isDBPediaRelation(String word) { + return doe.getLowerDBPediaRelations().contains(word.toLowerCase()); + } + + private boolean isFBCategory(String word) { + return fce.getCategories().contains(word); + } + + private String findComposedRelation(HasWord word, List sentence, boolean Freebase, + Map cleanTypes) { + boolean matched = false; + String key = new String(); + + for (Map.Entry entry : cleanTypes.entrySet()) { + if (entry.getValue().toLowerCase().equals(word.toString().toLowerCase())) { + int wordIndex = sentence.indexOf(word); + key = entry.getKey(); + key = key.substring(0, key.length() - 1); + String[] r = Freebase ? fce.splitKey(key) : doe.splitKey(key); + if (word.toString().toLowerCase().equals(r[0].toLowerCase())) { + matched = true; + for (int i = 1; i < r.length; i++) { + if (sentence.size() < r.length + wordIndex) { + matched = false; + break; + } else if (!r[i].toLowerCase().equals(sentence.get(wordIndex + i).toString().toLowerCase())) { + matched = false; + break; + } + } + } + if (matched) { + return key; + } + } + } + return null; + } + + private String isInComposedDBPediaRelations(HasWord word, List sentence) { + return findComposedRelation(word, sentence, false, doe.getCleanDBPediaTypes()); + } + + private String isInComposedFBRelations(HasWord word, List sentence) { + return findComposedRelation(word, sentence, true, fce.getCleanFBCategories()); + } +} diff --git a/src/main/java/relation_linking/FBCategoriesExtractor.java b/src/main/java/relation_linking/FBCategoriesExtractor.java new file mode 100644 index 0000000..7536658 --- /dev/null +++ b/src/main/java/relation_linking/FBCategoriesExtractor.java @@ -0,0 +1,83 @@ +package relation_linking; + +import java.io.File; +import java.io.FileInputStream; +import java.io.FileOutputStream; +import java.io.IOException; +import java.io.ObjectInputStream; +import java.io.ObjectOutputStream; +import java.util.ArrayList; +import java.util.HashMap; +import java.util.Map; + +import org.apache.lucene.index.*; +import org.apache.lucene.store.Directory; +import org.apache.lucene.store.MMapDirectory; +import org.apache.lucene.util.BytesRef; + +public class FBCategoriesExtractor { + + ArrayList fbCategories = new ArrayList(); + private Map listOfCleanCategories = new HashMap(); + + @SuppressWarnings("unchecked") + public FBCategoriesExtractor() throws IOException, ClassNotFoundException { + + System.out.println("Initializing FBCategories extractor..."); + + File fbStore = new File("src/main/resources/data/FBStore"); + if (!fbStore.exists() || fbStore.isDirectory()) { + Directory directory = new MMapDirectory(new File("/workspace/erd/index_wikipedia")); + @SuppressWarnings("deprecation") + IndexReader indexReader = IndexReader.open(directory); + Fields fields = MultiFields.getFields(indexReader); + Terms terms = fields.terms("fb_category"); + TermsEnum iterator = terms.iterator(null); + BytesRef byteRef = null; + + while ((byteRef = iterator.next()) != null) { + String term = new String(byteRef.bytes, byteRef.offset, byteRef.length); + term = term.substring(term.lastIndexOf(".") + 1, term.length()); + if (!fbCategories.contains(term) && !term.isEmpty()) { + fbCategories.add(term); + } + } + + ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream("src/main/resources/data/FBStore")); + oos.writeObject(fbCategories); + oos.flush(); + oos.close(); + } else { + ObjectInputStream ois = new ObjectInputStream(new FileInputStream("src/main/resources/data/FBStore")); + fbCategories = (ArrayList) ois.readObject(); + ois.close(); + } + + cleanCategories(); + } + + public ArrayList getCategories() { + return this.fbCategories; + } + + public String[] splitKey(String key) { + String[] r = key.split("_"); + return r; + } + + private void cleanCategories(){ + for (String category : fbCategories){ + if (category.contains("_")){ + String[] r = splitKey(category); + for (int i=0;i getCleanFBCategories(){ + return this.listOfCleanCategories; + } + +} diff --git a/src/main/java/relation_linking/GloVeEngine.java b/src/main/java/relation_linking/GloVeEngine.java new file mode 100644 index 0000000..c71691c --- /dev/null +++ b/src/main/java/relation_linking/GloVeEngine.java @@ -0,0 +1,332 @@ +package relation_linking; + +import java.io.Reader; +import java.io.StringReader; +import java.util.*; + +import edu.stanford.nlp.ling.HasWord; +import edu.stanford.nlp.process.DocumentPreprocessor; +import relation_linking.RelationLinkingEngine.METHOD_DETECTION_TYPE; +import word2vec.*; + +public class GloVeEngine { + + private DBPediaOntologyExtractor doe = null; + private FBCategoriesExtractor fce = null; + private LexicalParsingEngine lpe = null; + private OpenIEEngine openIE = null; + private QueryStrippingEngine qse = null; + + private boolean allOverSimilarity; + private double similarity; + + private GloVeSpace model = null; + + private static GloVeEngine instance = null; + + public static GloVeEngine getInstance() { + if (instance != null) + return instance; + else + return new GloVeEngine(); + } + + public void init(String modelPath, double similarity, boolean allOverSimilarity) { + + System.out.println("Initializing Glove search engine..."); + + if (model == null) { + model = new GloVeSpace(); + model = GloVeSpace.load(modelPath, true, false); + } + + if (this.doe == null) + this.doe = RelationLinkingEngine.getDBPediaOntologyExtractor(); + if (this.fce == null) + this.fce = RelationLinkingEngine.getFBCategoriesExtractor(); + this.similarity = similarity; + this.allOverSimilarity = allOverSimilarity; + } + + public void init(String modelPath, double similarity, LexicalParsingEngine lpe, boolean allOverSimilarity) { + System.out.println("Initializing Glove search engine with lexical parser..."); + + if (model == null) { + model = new GloVeSpace(); + model = GloVeSpace.load(modelPath, true, false); + } + + if (this.lpe == null) + this.lpe = lpe; + if (this.doe == null) + this.doe = RelationLinkingEngine.getDBPediaOntologyExtractor(); + if (this.fce == null) + this.fce = RelationLinkingEngine.getFBCategoriesExtractor(); + this.similarity = similarity; + this.allOverSimilarity = allOverSimilarity; + } + + public void init(String modelPath, double similarity, OpenIEEngine openIE, boolean allOverSimilarity) { + System.out.println("Initializing Glove search engine with OpenIE..."); + + if (model == null) { + model = new GloVeSpace(); + model = GloVeSpace.load(modelPath, true, false); + } + if (this.openIE == null) + this.openIE = openIE; + if (this.doe == null) + this.doe = RelationLinkingEngine.getDBPediaOntologyExtractor(); + if (this.fce == null) + this.fce = RelationLinkingEngine.getFBCategoriesExtractor(); + this.similarity = similarity; + this.allOverSimilarity = allOverSimilarity; + } + + public void init(String modelPath, double similarity, QueryStrippingEngine qse, boolean allOverSimilarity) { + System.out.println("Initializing Glove search engine with Query stripping..."); + + if (model == null) { + model = new GloVeSpace(); + model = GloVeSpace.load(modelPath, true, false); + } + if (this.qse == null) + this.qse = qse; + if (this.doe == null) + this.doe = RelationLinkingEngine.getDBPediaOntologyExtractor(); + if (this.fce == null) + this.fce = RelationLinkingEngine.getFBCategoriesExtractor(); + this.similarity = similarity; + this.allOverSimilarity = allOverSimilarity; + } + + private Map getComposedRelations(ArrayList sentenceParts) { + Map results = new HashMap(); + + for (String sentencePart : sentenceParts) { + + Map relations = isDBPediaRelation(sentencePart); + if (relations != null) { + results.putAll(relations); + } + + relations = isFBCategory(sentencePart); + if (relations != null) { + results.putAll(relations); + } + + relations = isInComposedDBPediaRelations(sentencePart); + if (relations != null) { + results.putAll(relations); + } + + relations = isInComposedFBRelations(sentencePart); + if (relations != null) { + results.putAll(relations); + } + } + + return results; + } + + private Map getOpenIERelations(String sentence) { + return getComposedRelations(openIE.getRelations(sentence)); + } + + private Map getLexicalizedRelations(String sentence) { + return getComposedRelations(lpe.getPairsFromSentence(sentence)); + } + + private Map getStrippedRelations(String sentence) { + StringBuilder sb = new StringBuilder(); + ArrayList words = qse.getRelations(sentence); + + for (String word : words) { + sb.append(word); + sb.append(" "); + } + + words.clear(); + words.add(sb.toString()); + + return getComposedRelations(words); + } + + public Map getRelations(String sentence, METHOD_DETECTION_TYPE methodType) { + System.out.println("Getting glove relations..."); + + Map results = new HashMap(); + + switch (methodType) { + case ALL: { + Reader reader = new StringReader(sentence); + + for (Iterator> iterator = new DocumentPreprocessor(reader).iterator(); iterator.hasNext();) { + List word = iterator.next(); + + for (int i = 0; i < word.size(); i++) { + String sWord = word.get(i).toString(); + + Map relations = isDBPediaRelation(sWord); + if (relations != null) { + results.putAll(relations); + } + + relations = isFBCategory(sWord); + if (relations != null) { + results.putAll(relations); + } + + relations = isInComposedDBPediaRelations(sWord); + if (relations != null) { + results.putAll(relations); + } + + relations = isInComposedFBRelations(sWord); + if (relations != null) { + results.putAll(relations); + } + } + } + } + break; + case OPENIE: + results.putAll(getOpenIERelations(sentence)); + break; + case LEXICALPARSER: + results.putAll(getLexicalizedRelations(sentence)); + break; + case QUERYSTRIPPING: + results.putAll(getStrippedRelations(sentence)); + break; + default: + break; + } + + return results; + } + + private double getSentencesSimilarity(String sentence, String composedRelation) { + double similarity = 0; + if (canBeSentenceVectorized(sentence) && canBeSentenceVectorized(composedRelation)) { + similarity = model.cosineSimilarity(model.sentenceVector(sentence), model.sentenceVector(composedRelation)); + } + return similarity; + } + + private double getSimilarity(String sentence, String word) { + double similarity = 0; + if (isWordInModel(word) && canBeSentenceVectorized(sentence)) + similarity = model.cosineSimilarity(model.sentenceVector(sentence), model.vector(word.toLowerCase())); + return similarity; + } + + private double getWordsSimilarity(String word1, String word2) { + double similarity = model.cosineSimilarity(word1.toLowerCase(), word2.toLowerCase()); + return similarity; + } + + private boolean isWordInModel(String word) { + return model.contains(word.toLowerCase()); + } + + private boolean canBeSentenceVectorized(String sentence) { + return model.sentenceVector(sentence) == null ? false : true; + } + + private String makeSentenceFromSequence(String[] r) { + StringBuilder sentence = new StringBuilder(); + for (int i = 0; i < r.length; i++) { + sentence.append(r[i]); + sentence.append(" "); + } + return sentence.toString(); + } + + private Map findComposedRelation(String word, boolean Freebase, Map cleanTypes) { + double maxSimilarity = 0; + String maxRelation = null; + String key; + Map foundRelations = new HashMap(); + + for (Map.Entry entry : cleanTypes.entrySet()) { + key = entry.getKey(); + key = key.substring(0, key.length() - 1); + String[] r = Freebase ? fce.splitKey(key) : doe.splitKey(key); + String sentence = makeSentenceFromSequence(r); + double tSim = 0; + if (lpe != null || qse != null || openIE != null) { + tSim = getSentencesSimilarity(sentence, word); + } else { + tSim = getSimilarity(sentence, word); + } + if (tSim > similarity) { + if (Double.isFinite(tSim)) { + if (allOverSimilarity) { + foundRelations.put(key, tSim); + } else if (tSim > maxSimilarity) { + maxRelation = key; + maxSimilarity = tSim; + } + } + } + + } + + if (!allOverSimilarity) + foundRelations.put(maxRelation, maxSimilarity); + + return foundRelations; + } + + private Map isInComposedDBPediaRelations(String word) { + return findComposedRelation(word, false, doe.getCleanDBPediaTypes()); + } + + private Map isInComposedFBRelations(String word) { + return findComposedRelation(word, true, fce.getCleanFBCategories()); + } + + private Map findRelation(String word, ArrayList relations) { + double maxSimilarity = 0; + String maxRelation = null; + Map foundResults = new HashMap(); + + for (String relation : relations) { + + double tSim = 0; + if (lpe != null || qse != null || openIE != null) { + tSim = getSimilarity(word, relation); + } else { + if (isWordInModel(word) && isWordInModel(relation)) { + tSim = getWordsSimilarity(word, relation); + } + } + + if (tSim > similarity) { + if (Double.isFinite(tSim)) { + + if (allOverSimilarity) { + foundResults.put(relation, tSim); + } else if (tSim > maxSimilarity) { + maxRelation = relation; + maxSimilarity = tSim; + } + } + } + } + + if (!allOverSimilarity) + foundResults.put(maxRelation, maxSimilarity); + + return foundResults; + } + + private Map isDBPediaRelation(String word) { + return findRelation(word, doe.getLowerDBPediaRelations()); + } + + private Map isFBCategory(String word) { + return findRelation(word, fce.getCategories()); + } +} diff --git a/src/main/java/relation_linking/LexicalParsingEngine.java b/src/main/java/relation_linking/LexicalParsingEngine.java new file mode 100644 index 0000000..5dce947 --- /dev/null +++ b/src/main/java/relation_linking/LexicalParsingEngine.java @@ -0,0 +1,87 @@ +package relation_linking; + +import edu.stanford.nlp.process.*; + +import java.io.*; +import java.util.*; + +import edu.stanford.nlp.ling.*; +import edu.stanford.nlp.trees.*; +import edu.stanford.nlp.parser.lexparser.LexicalizedParser; + +public class LexicalParsingEngine { + + LexicalizedParser lp; + + public LexicalParsingEngine(String parserModel) throws FileNotFoundException, UnsupportedEncodingException { + + System.out.println("Initializing Lexical Parser..."); + lp = LexicalizedParser.loadModel(parserModel); + } + + private Collection parseSentenceTDL(String text) { + System.out.println("Parsing sentence..."); + + Collection tdl = null; + TreebankLanguagePack tlp = lp.treebankLanguagePack(); + GrammaticalStructureFactory gsf = null; + if (tlp.supportsGrammaticalStructures()) { + gsf = tlp.grammaticalStructureFactory(); + } + + Reader reader = new StringReader(text); + + for (List sentence : new DocumentPreprocessor(reader)) { + Tree parse = lp.apply(sentence); + if (gsf != null) { + GrammaticalStructure gs = gsf.newGrammaticalStructure(parse); + tdl = gs.allTypedDependencies(); + } + } + return tdl; + } + + private ArrayList parseSentenceTD(String text) { + System.out.println("Parsing sentence..."); + + ArrayList tw = new ArrayList(); + + Reader reader = new StringReader(text); + + for (List sentence : new DocumentPreprocessor(reader)) { + + Tree parse = lp.apply(sentence); + + tw = parse.taggedYield(); + } + return tw; + } + + public ArrayList getPairsFromSentence(String sentence) { + Collection tdl = parseSentenceTDL(sentence); + ArrayList pairs = new ArrayList(); + + for (TypedDependency td : tdl) { + StringBuilder sb = new StringBuilder(); + sb.append(td.gov().originalText()); + sb.append(" "); + sb.append(td.dep().originalText()); + pairs.add(sb.toString()); + } + + return pairs; + } + + public ArrayList getNounsFromSentence(String sentence) { + ArrayList tw = parseSentenceTD(sentence); + ArrayList nouns = new ArrayList(); + + for (TaggedWord t : tw) { + if (t.tag().startsWith("N")) { + nouns.add(t.value()); + } + } + + return nouns; + } +} diff --git a/src/main/java/relation_linking/OpenIEEngine.java b/src/main/java/relation_linking/OpenIEEngine.java new file mode 100644 index 0000000..0456917 --- /dev/null +++ b/src/main/java/relation_linking/OpenIEEngine.java @@ -0,0 +1,37 @@ +package relation_linking; + +import java.util.*; + +import scala.collection.*; +import edu.knowitall.openie.*; +import edu.knowitall.tool.parse.ClearParser; +import edu.knowitall.tool.postag.ClearPostagger; +import edu.knowitall.tool.srl.ClearSrl; +import edu.knowitall.tool.tokenize.ClearTokenizer; + +public class OpenIEEngine { + + private OpenIE openIE; + + public OpenIEEngine(){ + System.out.println("Starting openIE Engine..."); + openIE = new OpenIE(new ClearParser(new ClearPostagger(new ClearTokenizer())), new ClearSrl(), true, true); + } + + public ArrayList getRelations(String sentence){ + + System.out.println("Getting openIE relations..."); + + ArrayList results = new ArrayList(); + + Seq extractions = openIE.extract(sentence); + List list_extractions = JavaConversions.seqAsJavaList(extractions); + + for(Instance instance : list_extractions) { + results.add(instance.extr().rel().text()); + } + + return results; + } + +} diff --git a/src/main/java/relation_linking/QueryStrippingEngine.java b/src/main/java/relation_linking/QueryStrippingEngine.java new file mode 100644 index 0000000..807fe75 --- /dev/null +++ b/src/main/java/relation_linking/QueryStrippingEngine.java @@ -0,0 +1,91 @@ +package relation_linking; + +import java.io.*; +import java.util.*; + +import util.StopWords; + +public class QueryStrippingEngine { + + private String filePath; + private Map entities = null; + + public QueryStrippingEngine(String filePath) throws FileNotFoundException, IOException, ClassNotFoundException { + this.filePath = filePath; + if (entities == null) + getEntities(); + } + + @SuppressWarnings("unchecked") + private void getEntities() throws FileNotFoundException, IOException, ClassNotFoundException { + File entitiesFile = new File("src/main/resources/data/entitiesStore"); + entities = new HashMap(); + + if (entitiesFile.exists()) { + ObjectInputStream ois = new ObjectInputStream(new FileInputStream("src/main/resources/data/entitiesStore")); + entities = (Map) ois.readObject(); + ois.close(); + } else { + try (BufferedReader br = new BufferedReader(new FileReader(filePath))) { + String line; + while ((line = br.readLine()) != null) { + if (line.indexOf("QUESTION:") != -1) { + String question = line.substring(line.indexOf(":") + 2); + line = br.readLine(); + String entity = line.substring(line.indexOf(":") + 2); + entity = entity.replaceAll("_", " "); + System.out.println(question + ":" + entity); + entities.put(question, entity); + } + } + } + ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream("src/main/resources/data/entitiesStore")); + oos.writeObject(entities); + oos.flush(); + oos.close(); + } + } + + public ArrayList getRelations(String sentence) { + String entity = entities.get(sentence); + + String[] words = sentence.split("\\s+"); + for (int i = 0; i < words.length; i++) { + words[i] = words[i].replaceAll("[^\\w]", ""); + } + + ArrayList listOfWords = new ArrayList(); + for (String word : words) { + if (!word.isEmpty()) + listOfWords.add(word); + } + + words = entity.split("\\s+"); + for (String word : words) { + listOfWords.remove(word); + } + + StopWords stopWords = new StopWords( + new File("src/main/resources/data/stop-words_long.txt")); + Set stopW = stopWords.getStopWords(); + + ArrayList copy = new ArrayList(listOfWords); + for (String word : copy) { + if (stopW.contains(word)) { + listOfWords.remove(word); + } + } + + StringBuilder sb = new StringBuilder(); + for (String word : listOfWords) { + sb.append(word); + sb.append(" "); + } + + listOfWords.clear(); + listOfWords.add(sb.toString()); + + return listOfWords; + } + +} diff --git a/src/main/java/relation_linking/RelationLinkingEngine.java b/src/main/java/relation_linking/RelationLinkingEngine.java new file mode 100644 index 0000000..977ed85 --- /dev/null +++ b/src/main/java/relation_linking/RelationLinkingEngine.java @@ -0,0 +1,599 @@ +package relation_linking; + +import java.io.*; +import java.util.*; +import java.util.Map.Entry; + +import com.ibm.icu.text.DecimalFormat; + +import DP_entity_linking.dataset.*; +import net.didion.jwnl.JWNLException; + +public class RelationLinkingEngine { + + public enum METHOD_MAPPING_TYPE { + DIRECT, GLOVE, WORDNET; + } + + public enum METHOD_DETECTION_TYPE { + ALL, OPENIE, LEXICALPARSER, QUERYSTRIPPING; + } + + private boolean directCheck = true; + private boolean checkGlove = true; + private boolean checkWordNet = true; + + private boolean withOpenIE = true; + private boolean withLexicalParser = true; + private boolean withQueryStripping = true; + private boolean withEveryWord = true; + private boolean allOverSimilarity = true; + + private double similarity = 0.1; + private int firstResults = 3; + + private String datasetPath = "src/main/resources/data/webquestionsRelation.json"; + private String dbPediaOntologyPath = "src/main/resources/data/dbpedia_2015-04.nt"; + private String gloveModelPath = "/Users/fjuras/OneDriveBusiness/DPResources/glove.6B/glove.6B.300d.txt"; + private String lexicalParserModel = "edu/stanford/nlp/models/lexparser/englishPCFG.ser.gz"; + private String JWNLPropertiesPath = "src/main/resources/data/file_properties.xml"; + private String entitySearchResultsFilePath = "src/main/resources/data/resultsWebquestions.txt"; + + private String csvOutputPath = "/Users/fjuras/OneDriveBusiness/DPResources/Relations.csv"; + private String trainOutputPath = "/Users/fjuras/OneDriveBusiness/DPResources/trainSet"; + private String testOutputPath = "/Users/fjuras/OneDriveBusiness/DPResources/testSet"; + + private String outputUtteranceKey = "utterance"; + private String outputRelationKey = "relation"; + private String outputDetectedKey = "detected"; + private String outputFoundRelationsKey = "number of found"; + private String outputDetectedRelationsKey = "number of detected"; + private String outputFromDetectedKey = "detected from"; + private String outputDetectedForKey = "detected for"; + private String outputFromDetectedAllKey = "detected from complete"; + private String outputSeparator = ";"; + private String outputDirectKey = "Direct"; + private String outputGloveLexicalKey = "GloVe_Lexical"; + private String outputGloveOpenIEKey = "GloVe_OpenIE"; + private String outputGloveStrippingKey = "GloVe_QuerryStripping"; + private String outputGloveAllKey = "GloVe_All"; + private String outputWordNetLexicalKey = "WordNet_Lexical"; + private String outputWordNetOpenIEKey = "WordNet_OpenIE"; + private String outputWordNetStrippingKey = "WordNet_QuerryStripping"; + private String outputWordNetAllKey = "WordNet_All"; + private String outputTrueValue = "1"; + private String outputFalseValue = "0"; + private String outputNotFoundValue = "-1"; + private String outputNewLine = "\n"; + + private String outputTrainSeparator = " "; + private String outputCategory = "|a"; + private String outputTrainValueSeparator = ":"; + + private static DBPediaOntologyExtractor doe = null; + private static FBCategoriesExtractor fce = null; + + private FileWriter csvOutput; + private FileWriter trainOutput; + private FileWriter testOutput; + + private DirectSearchEngine dse = null; + private GloVeEngine glove = null; + private WordNetEngine wordnet = null; + + boolean testStarted = false; + private double precision = 0; + private double recall = 0; + private int TP = 0; + private int tTP = 0; + private int FP = 0; + private int tFP = 0; + private int FN = 0; + private int tFN = 0; + + public RelationLinkingEngine() { + } + + public static void main(String[] args) + throws ClassNotFoundException, IOException, JWNLException, InterruptedException { + + RelationLinkingEngine rle = new RelationLinkingEngine(); + rle.runDetection(); + rle.calculateXGBoostStatistics(); + } + + private void runDetection() throws IOException, ClassNotFoundException, JWNLException, InterruptedException { + System.out.println("Reading dataset..."); + DataSet dataset = new DataSet(datasetPath); + List records = dataset.loadWebquestions(); + + csvOutput = new FileWriter(csvOutputPath); + trainOutput = new FileWriter(trainOutputPath); + testOutput = new FileWriter(testOutputPath); + printCSVRow(outputUtteranceKey, outputRelationKey, outputDirectKey, outputGloveLexicalKey, outputGloveOpenIEKey, + outputGloveStrippingKey, outputGloveAllKey, outputWordNetLexicalKey, outputWordNetOpenIEKey, + outputWordNetStrippingKey, outputWordNetAllKey, outputDetectedKey, outputDetectedRelationsKey, + outputFoundRelationsKey, outputFromDetectedKey, outputDetectedForKey, outputFromDetectedAllKey); + + doe = new DBPediaOntologyExtractor(dbPediaOntologyPath); + fce = new FBCategoriesExtractor(); + + LexicalParsingEngine lpe = null; + OpenIEEngine openIE = null; + QueryStrippingEngine qse = null; + if (withLexicalParser) + lpe = new LexicalParsingEngine(lexicalParserModel); + if (withOpenIE) + openIE = new OpenIEEngine(); + if (withQueryStripping) + qse = new QueryStrippingEngine(entitySearchResultsFilePath); + + if (directCheck) + dse = new DirectSearchEngine(); + + if (checkGlove) { + glove = GloVeEngine.getInstance(); + if (withLexicalParser) { + glove.init(gloveModelPath, similarity, lpe, allOverSimilarity); + } + if (withOpenIE) { + glove.init(gloveModelPath, similarity, openIE, allOverSimilarity); + } + if (withQueryStripping) { + glove.init(gloveModelPath, similarity, qse, allOverSimilarity); + } + if (withEveryWord) { + glove.init(gloveModelPath, similarity, allOverSimilarity); + } + } + + if (checkWordNet) { + wordnet = WordNetEngine.getInstance(); + if (withLexicalParser) { + wordnet.init(JWNLPropertiesPath, lpe, similarity); + } + if (withOpenIE) { + wordnet.init(JWNLPropertiesPath, openIE, similarity); + } + if (withQueryStripping) { + wordnet.init(JWNLPropertiesPath, qse, similarity); + } + + if (withEveryWord) { + wordnet.init(JWNLPropertiesPath, similarity); + } + } + + int r = 0; + for (Record record : records) { + System.out.println(r + ":Processing utterance: " + record.getUtterance()); + + Map results = new HashMap(); + if (directCheck) + results.putAll(addFoundRelations(dse.getRelations(record.getUtterance()), results, + METHOD_MAPPING_TYPE.DIRECT, null, record)); + + if (checkGlove) { + if (withLexicalParser) { + results.putAll(addFoundRelations( + glove.getRelations(record.getUtterance(), METHOD_DETECTION_TYPE.LEXICALPARSER), results, + METHOD_MAPPING_TYPE.GLOVE, METHOD_DETECTION_TYPE.LEXICALPARSER, record)); + } + if (withOpenIE) { + results.putAll( + addFoundRelations(glove.getRelations(record.getUtterance(), METHOD_DETECTION_TYPE.OPENIE), + results, METHOD_MAPPING_TYPE.GLOVE, METHOD_DETECTION_TYPE.OPENIE, record)); + } + if (withQueryStripping) { + results.putAll(addFoundRelations( + glove.getRelations(record.getUtterance(), METHOD_DETECTION_TYPE.QUERYSTRIPPING), results, + METHOD_MAPPING_TYPE.GLOVE, METHOD_DETECTION_TYPE.QUERYSTRIPPING, record)); + } + + if (withEveryWord) { + results.putAll( + addFoundRelations(glove.getRelations(record.getUtterance(), METHOD_DETECTION_TYPE.ALL), + results, METHOD_MAPPING_TYPE.GLOVE, METHOD_DETECTION_TYPE.ALL, record)); + } + } + if (checkWordNet) { + if (withLexicalParser) { + results.putAll(addFoundRelations( + wordnet.getRelations(record.getUtterance(), METHOD_DETECTION_TYPE.LEXICALPARSER), results, + METHOD_MAPPING_TYPE.WORDNET, METHOD_DETECTION_TYPE.LEXICALPARSER, record)); + } + if (withOpenIE) { + results.putAll( + addFoundRelations(wordnet.getRelations(record.getUtterance(), METHOD_DETECTION_TYPE.OPENIE), + results, METHOD_MAPPING_TYPE.WORDNET, METHOD_DETECTION_TYPE.OPENIE, record)); + } + if (withQueryStripping) { + results.putAll(addFoundRelations( + wordnet.getRelations(record.getUtterance(), METHOD_DETECTION_TYPE.QUERYSTRIPPING), results, + METHOD_MAPPING_TYPE.WORDNET, METHOD_DETECTION_TYPE.QUERYSTRIPPING, record)); + } + + if (withEveryWord) { + results.putAll( + addFoundRelations(wordnet.getRelations(record.getUtterance(), METHOD_DETECTION_TYPE.ALL), + results, METHOD_MAPPING_TYPE.WORDNET, METHOD_DETECTION_TYPE.ALL, record)); + } + } + + if (r < 3 * records.size() / 4) { + printFoundRelations(results, record.getUtterance(), trainOutput); + } else { + if (!testStarted) { + tTP = 0; + tFP = 0; + tFN = 0; + testStarted = true; + } + printFoundRelations(results, record.getUtterance(), testOutput); + } + + r++; + } + + System.out.println(); + precision = ((double) TP / ((double) TP + (double) FP)); + recall = ((double) TP / ((double) TP + (double) FN)); + System.out.println("Precision = " + precision); + System.out.println("Recall = " + recall); + System.out.println("F1 = " + (2 * ((precision * recall) / (precision + recall)))); + System.out.println(); + precision = ((double) tTP / ((double) tTP + (double) tFP)); + recall = ((double) tTP / ((double) tTP + (double) tFN)); + System.out.println("Test Precision = " + precision); + System.out.println("Test Recall = " + recall); + System.out.println("Test F1 = " + (2 * ((precision * recall) / (precision + recall)))); + + csvOutput.flush(); + csvOutput.close(); + trainOutput.flush(); + trainOutput.close(); + testOutput.flush(); + testOutput.close(); + + } + + private void calculateXGBoostStatistics() throws IOException { + FileReader test = new FileReader("/Users/fjuras/Downloads/xgboost-0.47/testedTrain"); + FileReader pred = new FileReader("/Users/fjuras/Downloads/xgboost-0.47/predicted.txt"); + + @SuppressWarnings("resource") + BufferedReader brT = new BufferedReader(test); + @SuppressWarnings("resource") + BufferedReader brP = new BufferedReader(pred); + String lineT; + String lineP; + while ((lineT = brT.readLine()) != null) { + lineP = brP.readLine(); + if (lineT.startsWith("1")) { + if (lineP.startsWith("0")) { + FN++; + } else { + TP++; + } + } else { + if (lineP.startsWith("1")) { + FP++; + } + } + } + System.out.println(); + precision = ((double) TP / ((double) TP + (double) FP)); + recall = ((double) TP / ((double) TP + (double) FN)); + System.out.println("Precision = " + precision); + System.out.println("Recall = " + recall); + System.out.println("F1 = " + (2 * ((precision * recall) / (precision + recall)))); + System.out.println(); + } + + private void printCSVRow(String utteranceValue, String relationValue, String directValue, String gloveLexicalValue, + String gloveOpenIEValue, String gloveStrippingValue, String gloveAllValue, String wordNetLexicalValue, + String wordNetOpenIEValue, String wordNetStrippingValue, String wordNetAllValue, String detectedValue, + String foundValue, String detectedNumberValue, String outputFromDetectedValue, + String outputDetectedForValue, String outputFromDetectedAllValue) throws IOException { + + csvOutput.append(utteranceValue); + csvOutput.append(outputSeparator); + csvOutput.append(relationValue); + csvOutput.append(outputSeparator); + csvOutput.append(directValue); + csvOutput.append(outputSeparator); + csvOutput.append(gloveLexicalValue); + csvOutput.append(outputSeparator); + csvOutput.append(gloveOpenIEValue); + csvOutput.append(outputSeparator); + csvOutput.append(gloveStrippingValue); + csvOutput.append(outputSeparator); + csvOutput.append(gloveAllValue); + csvOutput.append(outputSeparator); + csvOutput.append(wordNetLexicalValue); + csvOutput.append(outputSeparator); + csvOutput.append(wordNetOpenIEValue); + csvOutput.append(outputSeparator); + csvOutput.append(wordNetStrippingValue); + csvOutput.append(outputSeparator); + csvOutput.append(wordNetAllValue); + csvOutput.append(outputSeparator); + csvOutput.append(detectedValue); + csvOutput.append(outputSeparator); + csvOutput.append(foundValue); + csvOutput.append(outputSeparator); + csvOutput.append(detectedNumberValue); + csvOutput.append(outputSeparator); + csvOutput.append(outputFromDetectedAllValue); + csvOutput.append(outputSeparator); + csvOutput.append(outputFromDetectedValue); + csvOutput.append(outputSeparator); + csvOutput.append(outputDetectedForValue); + csvOutput.append(outputNewLine); + } + + private void printTrainRow(boolean found, String relationName, Double direct, Double gloveLexical, + Double gloveOpenIE, Double gloveStripping, Double gloveAll, Double wordnetLexical, Double wordnetOpenIE, + Double wordnetStripping, Double wordnetAll, FileWriter output) throws IOException { + + DecimalFormat formatter = new DecimalFormat("#0.00"); + + if (found) + output.append(outputTrueValue); + else + output.append(outputNotFoundValue); + output.append(outputTrainSeparator); + output.append(outputCategory); + output.append(outputTrainSeparator); + output.append(relationName); + output.append(outputTrainSeparator); + output.append(outputDirectKey); + output.append(outputTrainValueSeparator); + output.append(formatter.format(direct)); + output.append(outputTrainSeparator); + output.append(outputGloveLexicalKey); + output.append(outputTrainValueSeparator); + output.append(formatter.format(gloveLexical)); + output.append(outputTrainSeparator); + output.append(outputGloveOpenIEKey); + output.append(outputTrainValueSeparator); + output.append(formatter.format(gloveOpenIE)); + output.append(outputTrainSeparator); + output.append(outputGloveStrippingKey); + output.append(outputTrainValueSeparator); + output.append(formatter.format(gloveStripping)); + output.append(outputTrainSeparator); + output.append(outputGloveAllKey); + output.append(outputTrainValueSeparator); + output.append(formatter.format(gloveAll)); + output.append(outputTrainSeparator); + output.append(outputWordNetLexicalKey); + output.append(outputTrainValueSeparator); + output.append(formatter.format(wordnetLexical)); + output.append(outputTrainSeparator); + output.append(outputWordNetOpenIEKey); + output.append(outputTrainValueSeparator); + output.append(formatter.format(wordnetOpenIE)); + output.append(outputTrainSeparator); + output.append(outputWordNetStrippingKey); + output.append(outputTrainValueSeparator); + output.append(formatter.format(wordnetStripping)); + output.append(outputTrainSeparator); + output.append(outputWordNetAllKey); + output.append(outputTrainValueSeparator); + output.append(formatter.format(wordnetAll)); + output.append(outputNewLine); + } + + private int getNumberOfDetected(Map results) { + int detected = 0; + for (Entry result : results.entrySet()) { + if (result.getValue().isDetected()) { + detected++; + } + } + return detected; + } + + private String valueForBool(boolean bool) { + return bool ? outputTrueValue : outputFalseValue; + } + + private void printFoundRelations(Map results, String utterance, FileWriter output) + throws IOException { + System.out.println("Printing relations..."); + + int numberOfDetected = getNumberOfDetected(results); + int numberOfFound = results.size(); + + if (results.isEmpty()) { + printCSVRow(utterance, outputNotFoundValue, outputNotFoundValue, outputNotFoundValue, outputNotFoundValue, + outputNotFoundValue, outputNotFoundValue, outputNotFoundValue, outputNotFoundValue, + outputNotFoundValue, outputNotFoundValue, outputNotFoundValue, String.valueOf(numberOfDetected), + String.valueOf(numberOfFound), outputNotFoundValue, outputNotFoundValue, outputNotFoundValue); + } else { + for (Entry relation : results.entrySet()) { + Result result = relation.getValue(); + DecimalFormat formatter = new DecimalFormat("#0.00"); + printCSVRow(utterance, result.getName(), formatter.format(result.getDirectSearch()), + formatter.format(result.getGloveLexicalParserSimilarity()), + formatter.format(result.getGloveOpenIESimilarity()), + formatter.format(result.getGloveStrippingSimilarity()), + formatter.format(result.getGloveAllSimilarity()), + formatter.format(result.getWordnetLexicalParserSimilarity()), + formatter.format(result.getWordnetOpenIESimilarity()), + formatter.format(result.getWordnetStrippingSimilarity()), + formatter.format(result.getWordnetAllSimilarity()), valueForBool(result.isDetected()), + String.valueOf(numberOfDetected), String.valueOf(numberOfFound), + result.getNumberOfRelations().toString(), result.getNumberOfAllRelations().toString(), + result.getDetectedFor()); + printTrainRow(result.isDetected(), result.getName(), result.getDirectSearch(), + result.getGloveLexicalParserSimilarity(), result.getGloveOpenIESimilarity(), + result.getGloveStrippingSimilarity(), result.getGloveAllSimilarity(), + result.getWordnetLexicalParserSimilarity(), result.getWordnetOpenIESimilarity(), + result.getWordnetStrippingSimilarity(), result.getWordnetAllSimilarity(), output); + } + } + } + + private boolean isRelationDetected(String relation, Record record) { + Map> relations = record.getRelations(); + + for (Entry> rel : relations.entrySet()) { + for (String r : rel.getValue()) + if (r.toLowerCase().compareTo(relation.toLowerCase()) == 0) { + return true; + } + } + FP++; + tFP++; + return false; + } + + private Integer getNumberOfRelations(Record record, boolean all) { + Map> relations = record.getRelations(); + if (all) + return new Integer(relations.size()); + + Integer number = new Integer(0); + for (Entry> entry : relations.entrySet()) { + number += entry.getValue().size(); + } + return number; + } + + private String getDetectedFor(Record record, String relation) { + Map> relations = record.getRelations(); + + for (Entry> entry : relations.entrySet()) { + for (String rel : entry.getValue()) + if (rel.toLowerCase().equals(relation.toLowerCase())) + return entry.getKey(); + } + return null; + } + + private ArrayList getRelationsToDetect(Record record) { + ArrayList rel = new ArrayList(); + for (Entry> r : record.getRelations().entrySet()) { + rel.add(r.getKey().toString()); + } + return rel; + } + + private int getUndetected(ArrayList rel) { + return rel.size(); + } + + @SuppressWarnings("hiding") + > List> entriesSortedByValues( + Map map) { + + List> sortedEntries = new ArrayList>(map.entrySet()); + + Collections.sort(sortedEntries, new Comparator>() { + @Override + public int compare(Entry e1, Entry e2) { + return e2.getValue().compareTo(e1.getValue()); + } + }); + + return sortedEntries; + } + + private Map addFoundRelations(Map relations, Map results, + METHOD_MAPPING_TYPE mappingType, METHOD_DETECTION_TYPE detectionType, Record record) { + + List> sortedRelations = entriesSortedByValues(relations); + + ArrayList relationsToDetect = getRelationsToDetect(record); + + Result result; + int r = 0; + + for (Entry relation : sortedRelations) { + if (r == firstResults || relationsToDetect.isEmpty()) + break; + if (relation.getKey() == null) + continue; + if (!results.isEmpty() && results.containsKey(relation.getKey().toLowerCase())) { + result = results.get(relation.getKey().toLowerCase()); + switch (mappingType) { + case DIRECT: + result.setDirectSearch(relation.getValue()); + break; + case GLOVE: { + switch (detectionType) { + case ALL: + result.setGloveAllSimilarity(relation.getValue()); + break; + case OPENIE: + result.setGloveOpenIESimilarity(relation.getValue()); + break; + case LEXICALPARSER: + result.setGloveLexicalParserSimilarity(relation.getValue()); + break; + case QUERYSTRIPPING: + result.setGloveStrippingSimilarity(relation.getValue()); + break; + default: + break; + } + } + break; + case WORDNET: + switch (detectionType) { + case ALL: + result.setWordnetAllSimilarity(relation.getValue()); + break; + case OPENIE: + result.setWordnetOpenIESimilarity(relation.getValue()); + break; + case LEXICALPARSER: + result.setWordnetLexicalParserSimilarity(relation.getValue()); + break; + case QUERYSTRIPPING: + result.setWordnetStrippingSimilarity(relation.getValue()); + break; + default: + break; + } + break; + } + } else { + result = new Result(relation.getKey(), mappingType, detectionType, relation.getValue()); + boolean detected = isRelationDetected(relation.getKey(), record); + result.setDetected(detected); + String detFor = getDetectedFor(record, relation.getKey()); + if (detected) { + TP++; + tTP++; + if (!relationsToDetect.remove(detFor)) { + TP--; + tTP--; + } + } + result.setDetectedFor(detFor); + results.put(relation.getKey().toLowerCase(), result); + } + + result.setNumberOfRelations(getNumberOfRelations(record, false)); + result.setNumberOfAllRelations(getNumberOfRelations(record, true)); + results.replace(relation.getKey().toLowerCase(), result); + r++; + } + + FN += getUndetected(relationsToDetect); + tFN += getUndetected(relationsToDetect); + + return results; + } + + public static DBPediaOntologyExtractor getDBPediaOntologyExtractor() { + return doe; + } + + public static FBCategoriesExtractor getFBCategoriesExtractor() { + return fce; + } +} diff --git a/src/main/java/relation_linking/Result.java b/src/main/java/relation_linking/Result.java new file mode 100644 index 0000000..84c1ce1 --- /dev/null +++ b/src/main/java/relation_linking/Result.java @@ -0,0 +1,186 @@ +package relation_linking; + +import relation_linking.RelationLinkingEngine.METHOD_DETECTION_TYPE; +import relation_linking.RelationLinkingEngine.METHOD_MAPPING_TYPE; + +public class Result { + + private String name; + private Double directSearchSimilarity = 0.00; + private Double gloveAllSimilarity = 0.00; + private Double gloveOpenIESimilarity = 0.00; + private Double gloveLexicalParserSimilarity = 0.00; + private Double gloveStrippingSimilarity = 0.00; + private Double wordnetAllSimilarity = 0.00; + private Double wordnetOpenIESimilarity = 0.00; + private Double wordnetLexicalParserSimilarity = 0.00; + private Double wordnetStrippingSimilarity = 0.00; + private Integer numberOfRelations = 0; + private Integer numberOfAllRelations = 0; + private String detectedFor; + private boolean detected = false; + + public Result(String name, METHOD_MAPPING_TYPE mappingType, METHOD_DETECTION_TYPE detectionType, + Double similarity) { + switch (mappingType) { + case DIRECT: + directSearchSimilarity = similarity; + break; + case GLOVE: { + switch (detectionType) { + case ALL: + gloveAllSimilarity = similarity; + break; + case OPENIE: + gloveOpenIESimilarity = similarity; + break; + case LEXICALPARSER: + gloveLexicalParserSimilarity = similarity; + break; + case QUERYSTRIPPING: + gloveStrippingSimilarity = similarity; + break; + default: + break; + } + } + break; + case WORDNET: { + switch (detectionType) { + case ALL: + wordnetAllSimilarity = similarity; + break; + case OPENIE: + wordnetOpenIESimilarity = similarity; + break; + case LEXICALPARSER: + wordnetLexicalParserSimilarity = similarity; + break; + case QUERYSTRIPPING: + wordnetStrippingSimilarity = similarity; + break; + default: + break; + } + } + break; + default: + break; + } + + this.setName(name); + } + + public Double getDirectSearch() { + return directSearchSimilarity; + } + + public void setDirectSearch(Double directSearch) { + this.directSearchSimilarity = directSearch; + } + + public boolean isDetected() { + return detected; + } + + public void setDetected(boolean detected) { + this.detected = detected; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public Double getGloveAllSimilarity() { + return gloveAllSimilarity; + } + + public void setGloveAllSimilarity(Double gloveAllSimilarity) { + this.gloveAllSimilarity = gloveAllSimilarity; + } + + public Double getGloveOpenIESimilarity() { + return gloveOpenIESimilarity; + } + + public void setGloveOpenIESimilarity(Double gloveOpenIESimilarity) { + this.gloveOpenIESimilarity = gloveOpenIESimilarity; + } + + public Double getGloveLexicalParserSimilarity() { + return gloveLexicalParserSimilarity; + } + + public void setGloveLexicalParserSimilarity(Double gloveLexicalParserSimilarity) { + this.gloveLexicalParserSimilarity = gloveLexicalParserSimilarity; + } + + public Double getGloveStrippingSimilarity() { + return gloveStrippingSimilarity; + } + + public void setGloveStrippingSimilarity(Double gloveStrippingSimilarity) { + this.gloveStrippingSimilarity = gloveStrippingSimilarity; + } + + public Double getWordnetAllSimilarity() { + return wordnetAllSimilarity; + } + + public void setWordnetAllSimilarity(Double wordnetAllSimilarity) { + this.wordnetAllSimilarity = wordnetAllSimilarity; + } + + public Double getWordnetOpenIESimilarity() { + return wordnetOpenIESimilarity; + } + + public void setWordnetOpenIESimilarity(Double wordnetOpenIESimilarity) { + this.wordnetOpenIESimilarity = wordnetOpenIESimilarity; + } + + public Double getWordnetLexicalParserSimilarity() { + return wordnetLexicalParserSimilarity; + } + + public void setWordnetLexicalParserSimilarity(Double wordnetLexicalParserSimilarity) { + this.wordnetLexicalParserSimilarity = wordnetLexicalParserSimilarity; + } + + public Double getWordnetStrippingSimilarity() { + return wordnetStrippingSimilarity; + } + + public void setWordnetStrippingSimilarity(Double wordnetStrippingSimilarity) { + this.wordnetStrippingSimilarity = wordnetStrippingSimilarity; + } + + public Integer getNumberOfRelations() { + return numberOfRelations; + } + + public void setNumberOfRelations(Integer numberOfRelations) { + this.numberOfRelations = numberOfRelations; + } + + public Integer getNumberOfAllRelations() { + return numberOfAllRelations; + } + + public void setNumberOfAllRelations(Integer numberOfAllRelations) { + this.numberOfAllRelations = numberOfAllRelations; + } + + public String getDetectedFor() { + return detectedFor; + } + + public void setDetectedFor(String detectedFor) { + this.detectedFor = detectedFor; + } + +} diff --git a/src/main/java/relation_linking/WordNetEngine.java b/src/main/java/relation_linking/WordNetEngine.java new file mode 100644 index 0000000..0bb4ab2 --- /dev/null +++ b/src/main/java/relation_linking/WordNetEngine.java @@ -0,0 +1,314 @@ +package relation_linking; + +import java.io.*; +import java.util.*; +import java.util.Map.Entry; + +import edu.stanford.nlp.ling.HasWord; +import edu.stanford.nlp.process.DocumentPreprocessor; +import net.didion.jwnl.JWNL; +import net.didion.jwnl.JWNLException; +import net.didion.jwnl.data.*; +import net.didion.jwnl.dictionary.Dictionary; +import relation_linking.RelationLinkingEngine.METHOD_DETECTION_TYPE; + +public class WordNetEngine { + + Dictionary wordnet = null; + private Map> DBPediaSynsets = null; + private Map> FreebaseSynsets = null; + private LexicalParsingEngine lpe = null; + private OpenIEEngine openIE = null; + private QueryStrippingEngine qse = null; + private double similarity; + + private static WordNetEngine instance = null; + + public static WordNetEngine getInstance() { + if (instance != null) + return instance; + else + return new WordNetEngine(); + } + + public void init(String path, double similarity) throws JWNLException, ClassNotFoundException, IOException { + System.out.println("Initializing WordNet Search engine..."); + + if (wordnet == null) { + JWNL.initialize(new FileInputStream(path)); + wordnet = Dictionary.getInstance(); + } + + if (DBPediaSynsets == null) + DBPediaSynsets = getSynsetsForDBPedia(); + if (FreebaseSynsets == null) + FreebaseSynsets = getSynsetsForFreebase(); + this.similarity = similarity; + } + + public void init(String path, LexicalParsingEngine lpe, double similarity) + throws JWNLException, ClassNotFoundException, IOException { + System.out.println("Initializing WordNet Search engine with lexical parser..."); + + if (wordnet == null) { + JWNL.initialize(new FileInputStream(path)); + wordnet = Dictionary.getInstance(); + } + + if (DBPediaSynsets == null) + DBPediaSynsets = getSynsetsForDBPedia(); + if (FreebaseSynsets == null) + FreebaseSynsets = getSynsetsForFreebase(); + if (this.lpe == null) + this.lpe = lpe; + this.similarity = similarity; + } + + public void init(String path, OpenIEEngine openIE, double similarity) + throws JWNLException, ClassNotFoundException, IOException { + System.out.println("Initializing WordNet Search engine with OpenIE..."); + + if (wordnet == null) { + JWNL.initialize(new FileInputStream(path)); + wordnet = Dictionary.getInstance(); + } + + if (DBPediaSynsets == null) + DBPediaSynsets = getSynsetsForDBPedia(); + if (FreebaseSynsets == null) + FreebaseSynsets = getSynsetsForFreebase(); + if (this.openIE == null) + this.openIE = openIE; + this.similarity = similarity; + } + + public void init(String path, QueryStrippingEngine qse, double similarity) + throws JWNLException, ClassNotFoundException, IOException { + System.out.println("Initializing WordNet Search engine with lexical parser..."); + + if (wordnet == null) { + JWNL.initialize(new FileInputStream(path)); + wordnet = Dictionary.getInstance(); + } + + if (DBPediaSynsets == null) + DBPediaSynsets = getSynsetsForDBPedia(); + if (FreebaseSynsets == null) + FreebaseSynsets = getSynsetsForFreebase(); + if (this.qse == null) + this.qse = qse; + this.similarity = similarity; + } + + private ArrayList getSynsetsFromWord(String relation) throws JWNLException { + ArrayList results = new ArrayList(); + + IndexWordSet indexWordSet = wordnet.lookupAllIndexWords(relation); + IndexWord[] indexWords = indexWordSet.getIndexWordArray(); + + for (IndexWord indexWord : indexWords) { + for (Synset synset : indexWord.getSenses()) { + Word[] words = synset.getWords(); + for (Word word : words) { + if (!results.contains(word.getLemma())) + results.add(word.getLemma()); + } + } + } + + return results; + } + + @SuppressWarnings("unchecked") + private Map> getSynsets(String filename, boolean freebase) + throws JWNLException, FileNotFoundException, IOException, ClassNotFoundException { + File wordnetStore = new File(filename); + + Map> map = new HashMap>(); + + if (!wordnetStore.exists()) { + ArrayList relations; + if (freebase) { + FBCategoriesExtractor fbe = RelationLinkingEngine.getFBCategoriesExtractor(); + relations = fbe.getCategories(); + } else { + DBPediaOntologyExtractor doe = RelationLinkingEngine.getDBPediaOntologyExtractor(); + relations = doe.getDBPediaRelations(); + } + for (String relation : relations) { + ArrayList synsets = getSynsetsFromWord(relation); + map.put(relation, synsets); + } + + System.out.println("Writing synsets to file..."); + ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream(filename)); + oos.writeObject(map); + oos.flush(); + oos.close(); + } else { + System.out.println("Reading synsets from file..."); + ObjectInputStream ois = new ObjectInputStream(new FileInputStream(filename)); + map = (HashMap>) ois.readObject(); + ois.close(); + } + + return map; + } + + private Map> getSynsetsForDBPedia() + throws JWNLException, FileNotFoundException, IOException, ClassNotFoundException { + System.out.println("Getting synsets for DBPedia..."); + return getSynsets("src/main/resources/data/DBPediaSynsets", false); + } + + private Map> getSynsetsForFreebase() + throws FileNotFoundException, ClassNotFoundException, JWNLException, IOException { + System.out.println("Getting synsets for Freebase..."); + return getSynsets("src/main/resources/data/FreebaseSynsets", true); + } + + private Map getLexicalizedRelations(String sentence) throws JWNLException { + ArrayList nouns = lpe.getNounsFromSentence(sentence); + + Map results = new HashMap(); + + for (String word : nouns) { + ArrayList synsets = getSynsetsFromWord(word); + + Map relations = isDBPediaRelation(synsets); + if (relations != null) { + results.putAll(relations); + } + + relations = isFBCategory(synsets); + if (relations != null) { + results.putAll(relations); + } + } + + return results; + } + + private String[] splitRelation(String relation) { + return relation.split("\\s+"); + } + + private Map getOpenIERelations(String sentence) throws JWNLException { + + ArrayList openIERelations = openIE.getRelations(sentence); + Map results = new HashMap(); + + for (String relation : openIERelations) { + String[] words = splitRelation(relation); + for (String word : words) { + ArrayList synsets = getSynsetsFromWord(word); + + Map relations = isDBPediaRelation(synsets); + if (relations != null) { + results.putAll(relations); + } + + relations = isFBCategory(synsets); + if (relations != null) { + results.putAll(relations); + } + } + } + + return results; + } + + private Map getQueryStrippedRelations(String sentence) throws JWNLException { + ArrayList strippedWords = qse.getRelations(sentence); + Map results = new HashMap(); + + for (String relation : strippedWords) { + ArrayList synsets = getSynsetsFromWord(relation); + + Map relations = isDBPediaRelation(synsets); + if (relations != null) { + results.putAll(relations); + } + + relations = isFBCategory(synsets); + if (relations != null) { + results.putAll(relations); + } + } + + return results; + } + + private Map getRelations(ArrayList synsets, Map> map) { + Map results = new HashMap(); + + for (Entry> mapEntry : map.entrySet()) { + @SuppressWarnings("unchecked") + ArrayList relSynsets = (ArrayList) synsets.clone(); + relSynsets.removeAll((Collection) mapEntry.getValue()); + if (relSynsets.size() != synsets.size()) { + double number = (double) relSynsets.size() / (double) synsets.size(); + if (((double) (1 - number)) > similarity) { + results.put(mapEntry.getKey(), new Double(1 - number)); + } + } + } + + return results; + } + + private Map isDBPediaRelation(ArrayList synsets) { + return getRelations(synsets, DBPediaSynsets); + } + + private Map isFBCategory(ArrayList synsets) { + return getRelations(synsets, FreebaseSynsets); + } + + public Map getRelations(String sentence, METHOD_DETECTION_TYPE methodType) throws JWNLException { + System.out.println("Getting WordNet relations..."); + + Map results = new HashMap(); + + switch (methodType) { + case ALL: { + Reader reader = new StringReader(sentence); + + for (Iterator> iterator = new DocumentPreprocessor(reader).iterator(); iterator.hasNext();) { + List word = iterator.next(); + + for (int i = 0; i < word.size(); i++) { + String sWord = word.get(i).toString(); + + ArrayList synsets = getSynsetsFromWord(sWord); + + Map relations = isDBPediaRelation(synsets); + if (relations != null) { + results.putAll(relations); + } + + relations = isFBCategory(synsets); + if (relations != null) { + results.putAll(relations); + } + } + } + } + break; + case OPENIE: + results.putAll(getOpenIERelations(sentence)); + break; + case LEXICALPARSER: + results.putAll(getLexicalizedRelations(sentence)); + break; + case QUERYSTRIPPING: + results.putAll(getQueryStrippedRelations(sentence)); + break; + default: + break; + } + + return results; + } + +} diff --git a/src/main/java/util/CollectionChanges.java b/src/main/java/util/CollectionChanges.java new file mode 100755 index 0000000..afd68f4 --- /dev/null +++ b/src/main/java/util/CollectionChanges.java @@ -0,0 +1,106 @@ +package util; + +import java.util.Collection; +import java.util.HashSet; + +public class CollectionChanges { + + public String summaryString() { + + StringBuilder sb = new StringBuilder(); + + sb.append("Additions: "); + sb.append("" + addedToSet + "\n"); + + sb.append("Removals: "); + sb.append("" + removedFromSet + "\n"); + + return sb.toString(); + + } + + Collection addedToSet = new HashSet(); + Collection removedFromSet = new HashSet(); + + public void setAddition(String setItem) { + addedToSet.add(setItem); + } + + public void setRemoval(String setItem) { + removedFromSet.add(setItem); + } + + public Collection additions() { + return addedToSet; + } + + public Collection removals() { + return removedFromSet; + } + + public boolean isEmpty() { + return addedToSet.isEmpty() && removedFromSet.isEmpty(); + } + + /** + * Compute the changes between the two sets. + * + * @param previous the previous set + * @param next the current set + * @return the changes + */ + + public static CollectionChanges findAdditions(Collection previous, Collection next) { + + CollectionChanges chg = new CollectionChanges(); + + // Check for added terms + for (String setElement : next) { + if (!previous.contains(setElement)) { + chg.setAddition(setElement); + } + } + + return chg; + + } + + public static CollectionChanges findAdditions(Collection previous, Collection next, boolean ignore_mentions) { + + CollectionChanges chg = new CollectionChanges(); + + // Check for added terms + for (String setElement : next) { + + if (setElement.startsWith("@")) { + continue; + } + + if (!previous.contains(setElement)) { + chg.setAddition(setElement); + } + } + + return chg; + + } + + public CollectionChanges findChanges(Collection previous, Collection next) { + + // Check for added users + for (String setElement : next) { + if (!previous.contains(setElement)) { + this.setAddition(setElement); + } + } + + // Check for removed + for (String setElement : previous) { + if (!next.contains(setElement)) { + this.setRemoval(setElement); + } + } + + return this; + } +} diff --git a/src/main/java/util/Compression.java b/src/main/java/util/Compression.java new file mode 100755 index 0000000..21d4d6a --- /dev/null +++ b/src/main/java/util/Compression.java @@ -0,0 +1,50 @@ +package util; + +import java.util.Arrays; +import java.util.HashMap; +import java.util.Map.Entry; + +import me.lemire.integercompression.Composition; +import me.lemire.integercompression.FastPFOR; +import me.lemire.integercompression.IntWrapper; +import me.lemire.integercompression.IntegerCODEC; +import me.lemire.integercompression.VariableByte; + +public class Compression { + + static final IntegerCODEC codec = new Composition(new FastPFOR(), new VariableByte()); + + public static HashMap compressSemantics(HashMap input) { + HashMap compressed = new HashMap(); + System.out.println("Compress..."); + for (Entry e : input.entrySet()) { + compressed.put(e.getKey(), compress(e.getValue())); + } + System.out.println("...Done."); + return compressed; + } + + public static int[] compress(int[] data) { + int[] compressed = new int[data.length + 1024];// could need more + // compressing + IntWrapper inputoffset = new IntWrapper(0); + IntWrapper outputoffset = new IntWrapper(0); + codec.compress(data, inputoffset, data.length, compressed, outputoffset); + // System.out.println("compressed unsorted integers from "+data.length*4/1024+"KB to "+outputoffset.intValue()*4/1024+"KB"); + // we can repack the data: (optional) + compressed = Arrays.copyOf(compressed, outputoffset.intValue()); + return compressed; + } + + public static int[] decompress(int[] compressed, int vectorSize) { + int[] recovered = new int[vectorSize]; + IntWrapper recoffset = new IntWrapper(0); + codec.uncompress(compressed, new IntWrapper(0), compressed.length, recovered, recoffset); + // if(Arrays.equals(data,recovered)) + // System.out.println("data is recovered without loss"); + // else + // throw new RuntimeException("bug"); // could use assert + return recovered; + } + +} diff --git a/src/main/java/util/ConvertFormats.java b/src/main/java/util/ConvertFormats.java new file mode 100755 index 0000000..69cd5ed --- /dev/null +++ b/src/main/java/util/ConvertFormats.java @@ -0,0 +1,21 @@ +package util; + +import java.io.File; + +import word2vec.W2vSpace; + +public class ConvertFormats { + + public static void main(String[] args) { + + W2vSpace txt = W2vSpace.loadText("/home/igor/git/word2vec-java/src/test/resources/small_vectors.txt"); + + W2vSpace gz = W2vSpace.loadText("/home/igor/git/word2vec-java/src/test/resources/small_vectors.txt.gz"); + + + txt.saveAsText(new File("/home/igor/git/word2vec-java/src/test/resources/small_vectors.txt1")); + gz.saveAsText(new File("/home/igor/git/word2vec-java/src/test/resources/small_vectors.txt2")); + + } + +} diff --git a/src/main/java/util/Filters.java b/src/main/java/util/Filters.java new file mode 100755 index 0000000..cb5ed83 --- /dev/null +++ b/src/main/java/util/Filters.java @@ -0,0 +1,211 @@ +package util; + +import java.io.IOException; +import java.io.InputStream; +import java.util.Arrays; +import java.util.Collection; +import java.util.HashSet; +import java.util.Set; + +import org.apache.commons.io.IOUtils; +import org.apache.commons.lang3.StringUtils; + +/* + * Apply Various Filters to words: + */ +public class Filters { + + public WordFilter ccomp = (new PrefixFilter()).with("ccomp"); + public WordFilter nsubj = (new PrefixFilter()).with("nsubj"); + public WordFilter agent = (new PrefixFilter()).with("agent"); + public WordFilter advcl = (new PrefixFilter()).with("advcl"); + + + + public WordFilter removeHashtags = (new PrefixFilter()).with("#"); + public WordFilter removeMentions = (new PrefixFilter()).with("@"); + + public WordFilter removeWords = new RemoveWords(); + + public WordFilter removeShort = new RemoveShortWords(); + + + /* + * Remove default nltk + twitter stopwords + */ + public WordFilter removeStopwords = new RemoveWords() { + { + try (InputStream in = this.getClass().getResourceAsStream("/data/nltk_en_stopwords.txt")) { + String text = IOUtils.toString(in, "UTF-8"); + remove.addAll(Arrays.asList(StringUtils.split(text, ' '))); + } catch (IOException e) { + e.printStackTrace(); + } + } + }; + + public WordFilter removeShortWords = new RemoveWords() { + { + try (InputStream in = this.getClass().getResourceAsStream("/data/nltk_en_stopwords.txt")) { + String text = IOUtils.toString(in, "UTF-8"); + remove.addAll(Arrays.asList(StringUtils.split(text, ' '))); + } catch (IOException e) { + e.printStackTrace(); + } + } + }; + + /* + * Common filter: + */ + public WordFilter[] wordsOnly(WordFilter... moreFilters) { + WordFilter[] filters = new WordFilter[3 + moreFilters.length]; + filters[0] = removeStopwords; + filters[1] = removeHashtags; + filters[2] = removeMentions; + int i = 3; + for (WordFilter f : moreFilters) { + filters[i++] = f; + } + return filters; + } + + /* + * Apply filters to words: + */ + public static boolean apply(WordSim wordSim, WordFilter... filters) { + return apply(wordSim.getString(), filters); + } + + public static boolean apply(String word, WordFilter... filters) { + boolean keep = true; + //Remove Duplicate Filters: + final Set applyFilters = new HashSet(Arrays.asList(filters)); + // XOR Results: + for (WordFilter f : applyFilters) { + keep = keep ^ f.evaluate(word); + // System.out.println("Eval: " + word + " " + f.evaluate(word) + " still keep? " + keep); + } + return keep; + } + + public interface WordFilter { + public boolean evaluate(String word); + + public boolean evaluate(WordSim wordSim); + + public WordFilter with(String... words); + + public WordFilter with(Collection words); + } + + /* + * Default: treat WordSim as String: + */ + private abstract class DefaultFilter implements WordFilter { + @Override + public abstract boolean evaluate(String word); + + @Override + public boolean evaluate(WordSim wordSim) { + return evaluate(wordSim.getString()); + } + + @Override + public WordFilter with(String... words) { + return this; + } + } + + /* + * Remove words specified with init(...) + */ + private class RemoveWords extends DefaultFilter { + Set remove; + + public RemoveWords() { + remove = new HashSet(); + } + + @Override + public boolean evaluate(String word) { + return remove.contains(word); + } + + @Override + public WordFilter with(String... words) { + remove.addAll(Arrays.asList(words)); + return this; + } + @Override + public WordFilter with(Collection words) { + remove.addAll(words); + return this; + } + } + + private class RemoveShortWords extends DefaultFilter { + public RemoveShortWords() { + } + + @Override + public boolean evaluate(String word) { + return (word.length() < 3); + } + + @Override + public WordFilter with(Collection words) { + return this; + } + + } + + + /* + * Useful to add if you want to keep a word that gets filtered. + * + * Invert removal of specific words: Filters.invert.with("is", "#is") + * + * Invert ALL removals from all other filters: Filters.invert + */ + public WordFilter invertRemove = new DefaultFilter() { + Set keep = new HashSet(); + + @Override + public boolean evaluate(String word) { + if (keep.size() > 0) { + return keep.contains(word); + } else { + return !keep.contains(word); + } + } + + @Override + public WordFilter with(Collection words) { + return this; + } + }; + + public class PrefixFilter extends DefaultFilter { + String[] pref = new String[0]; + + @Override + public boolean evaluate(String word) { + for (String p : pref) { + return word.startsWith(p); + } + return false; + } + + @Override + public WordFilter with(String... pref) { + this.pref = pref; + return this; + } + + @Override + public WordFilter with(Collection words) { + return this; + } + } +} diff --git a/src/main/java/util/VectorMath.java b/src/main/java/util/VectorMath.java new file mode 100755 index 0000000..04b8bf7 --- /dev/null +++ b/src/main/java/util/VectorMath.java @@ -0,0 +1,78 @@ +package util; + +import java.util.List; + +import org.jblas.DoubleMatrix; +import org.jblas.FloatMatrix; + +public class VectorMath { + + /* + * Vectors are normalized on load, just need dot product: + */ + public static double cosineSimilarity(FloatMatrix vec1, FloatMatrix vec2) { + double dotSim = vec1.dot(vec2); + double norm = vec1.norm2() * vec2.norm2(); + return norm == 0 ? 1 : dotSim / norm; + } + + public static double cosineSimilarity(DoubleMatrix vec1, DoubleMatrix vec2) { + double dotSim = vec1.dot(vec2); + double norm = vec1.norm2() * vec2.norm2(); + return norm == 0 ? 1 : dotSim / norm; + } + + public static double distance(FloatMatrix vec1, final FloatMatrix vec2) { + return vec1.distance2(vec2); + } + + public static double distanceSimilarity(FloatMatrix vec1, final FloatMatrix vec2) { + return 1 / (1 + vec1.distance2(vec2)); + } + + public static double distanceSimilarity(DoubleMatrix vec1, final DoubleMatrix vec2) { + return 1 / (1 + vec1.distance2(vec2)); + } + + /* + * Utility functions: + */ + + public static FloatMatrix normalize(FloatMatrix f) { + return f.divi(f.norm2()); + } + + public static DoubleMatrix normalize(DoubleMatrix d) { + return d.divi(d.norm2()); + } + + public static FloatMatrix addFloatMatrix(List vectors) { + if (vectors.size() < 1) { + return null; + } + FloatMatrix vec = vectors.remove(0); + for (FloatMatrix f : vectors) { + vec.addi(f); + } + return vec; + } + + public static DoubleMatrix addDoubleMatrix(List vectors) { + if (vectors.size() < 1) { + return null; + } + DoubleMatrix vec = vectors.remove(0); + for (DoubleMatrix d : vectors) { + vec.addi(d); + } + return vec; + } + + /* + * Only used by GloveModelLoader + */ + public static DoubleMatrix addDoubleMatrix(DoubleMatrix vector1, DoubleMatrix vector2) { + return vector1.addi(vector2); + } + +} diff --git a/src/main/java/util/WordSim.java b/src/main/java/util/WordSim.java new file mode 100755 index 0000000..850373d --- /dev/null +++ b/src/main/java/util/WordSim.java @@ -0,0 +1,32 @@ +package util; + +public class WordSim implements Comparable { + + private final String s; + private final Double d; + + public WordSim(String s, Double d) { + this.s = s; + this.d = d; + } + + public String getString() { + return this.s; + } + + public Double getDouble() { + return this.d; + } + + @Override + public int compareTo(WordSim other) { + // Reverse: + return (-1 * getDouble().compareTo(other.getDouble())); + } + + @Override + public String toString() { + return String.format("%s : %.2f", this.s, this.d); + } + +} diff --git a/src/main/java/util/WordSpaceUtils.java b/src/main/java/util/WordSpaceUtils.java new file mode 100755 index 0000000..ec29cd8 --- /dev/null +++ b/src/main/java/util/WordSpaceUtils.java @@ -0,0 +1,23 @@ +package util; + +import java.util.HashSet; +import java.util.Set; + +import word2vec.GenericWordSpace; + +public class WordSpaceUtils { + + /* + * Remove vectors from model: + */ + public static GenericWordSpace reduceModelVocab(GenericWordSpace model, Set keyVectors) { + Set vocab = new HashSet(model.store.keySet()); + for (String word : vocab) { + if (!keyVectors.contains(word)) { + model.store.remove(word); + } + } + return model; + } + +} diff --git a/src/main/java/word2vec/GenericWordSpace.java b/src/main/java/word2vec/GenericWordSpace.java new file mode 100755 index 0000000..dae6b10 --- /dev/null +++ b/src/main/java/word2vec/GenericWordSpace.java @@ -0,0 +1,166 @@ +package word2vec; + +import java.io.File; +import java.io.IOException; +import java.util.ArrayList; +import java.util.HashMap; +import java.util.List; +import java.util.Map; +import java.util.Map.Entry; +import java.util.PriorityQueue; + +import org.apache.commons.io.FileUtils; +import org.apache.commons.lang3.StringUtils; +import util.Filters; +import util.Filters.WordFilter; +import util.WordSim; + +public abstract class GenericWordSpace implements WordSpace { + + public Filters f = new Filters(); + /* + * Store vectors & vocab in memory: + */ + public Map store = new HashMap(); + + @Override + public boolean contains(String word) { + return store.containsKey(word); + } + + @Override + public T vector(String word) { + return store.get(word); + } + + @Override + public double cosineSimilarity(String w1, String w2) { + return cosineSimilarity(vector(w1), vector(w2)); + } + + public abstract double cosineSimilarity(T vec1, T vec2); + + @Override + public double distanceSimilarity(String w1, String w2) { + return distanceSimilarity(vector(w1), vector(w2)); + } + + public abstract double distanceSimilarity(T vec1, T vec2); + + /* + * Linear search for k Nearest Neighbours of a vector: + */ + @Override + public List knn(T vec, int k, WordFilter... filters) { + PriorityQueue kSimilarWords = new PriorityQueue(k * 2); + for (Entry e : store.entrySet()) { + if (Filters.apply(e.getKey(), filters)) { + double dot = cosineSimilarity(vec, e.getValue()); + if (Double.isFinite(dot)) { + kSimilarWords.add(new WordSim(e.getKey(), dot)); + } + } + } + List col = new ArrayList(); + for (int i = 0; i < k; i++) { + WordSim ws = kSimilarWords.poll(); + if (ws != null) { + col.add(ws); + } + } + return col; + } + + public List dist_knn(T vec, int k, WordFilter... filters) { + PriorityQueue kSimilarWords = new PriorityQueue(k * 2); + for (Entry e : store.entrySet()) { + if (Filters.apply(e.getKey(), filters)) { + double dot = distanceSimilarity(vec, e.getValue()); + if (Double.isFinite(dot)) { + kSimilarWords.add(new WordSim(e.getKey(), dot)); + } + } + } + List col = new ArrayList(); + for (int i = 0; i < k; i++) { + WordSim ws = kSimilarWords.poll(); + if (ws != null) { + col.add(ws); + } + } + return col; + } + + @Override + public List knn(String word, int k, WordFilter... filters) { + return knn(vector(word), k, filters); + } + + @Override + public List knnWords(String word, int k, WordFilter... filters) { + return knnWords(vector(word), k, filters); + } + + @Override + public List knnWords(T vec, int k, WordFilter... filters) { + List sims = knn(vec, k, filters); + List words = new ArrayList(); + for (WordSim sim : sims) { + words.add(sim.getString()); + } + return words; + } + + /* + * Additive representation of several words: + */ + @Override + public T sentenceVector(String sentence) { + return sentenceVector(sentence, f.removeStopwords); + } + + @Override + public T sentenceVector(String sentence, WordFilter... filters) { + List vectors = new ArrayList(); + for (String word : StringUtils.split(sentence, ' ')) { + if (Filters.apply(word, filters) && contains(word)) { + vectors.add(vector(word)); + } + } + return additiveSentenceVector(vectors); + } + + @Override + public abstract T additiveSentenceVector(List vectors); + + /* + * Debug: + */ + public void printSims(String w, List sims) { + for (WordSim s : sims) { + String str = String.format("%s %s %.4f", w, s.getString(), s.getDouble()); + System.out.println(str); + } + } + + /* + * Save Model as text file: + */ + public boolean saveAsText(File output) { + for (Entry entry : store.entrySet()) { + String word = String.format("%s %s\n", entry.getKey(), StringUtils.join(entry.getValue(), ' ')); + // TODO: + word = word.replaceAll("\\[", ""); + word = word.replaceAll(";", ""); + word = word.replaceAll("\\]", ""); + try { + FileUtils.writeStringToFile(output, word, true); + } catch (IOException e) { + e.printStackTrace(); + return false; + } + } + return true; + } + +} diff --git a/src/main/java/word2vec/GloVeSpace.java b/src/main/java/word2vec/GloVeSpace.java new file mode 100755 index 0000000..06d3128 --- /dev/null +++ b/src/main/java/word2vec/GloVeSpace.java @@ -0,0 +1,172 @@ +package word2vec; + +import java.io.BufferedInputStream; +import java.io.BufferedReader; +import java.io.DataInputStream; +import java.io.File; +import java.io.FileInputStream; +import java.io.IOException; +import java.io.InputStreamReader; +import java.io.Reader; +import java.util.List; +import java.util.Map.Entry; +import java.util.zip.GZIPInputStream; + +import org.apache.commons.io.FileUtils; +import org.apache.commons.lang3.StringUtils; +import util.VectorMath; +import org.jblas.DoubleMatrix; + +/* + * A Java wrapper for GloVe - Only Reads a pre trained model! + */ +public class GloVeSpace extends GenericWordSpace { + + /* + * Read .txt or .txt.gz model: + */ + public static GloVeSpace load(String gloVeModel, boolean norm, boolean header) { + GloVeSpace model = new GloVeSpace(); + try { + Reader decoder; + if (gloVeModel.endsWith("gz")) { + decoder = new InputStreamReader(new GZIPInputStream(new FileInputStream(gloVeModel)), "UTF-8"); + } else { + decoder = new InputStreamReader(new FileInputStream(gloVeModel), "UTF-8"); + } + BufferedReader r = new BufferedReader(decoder); + + long numWords = 0; + String line; + + if (header) { + String h = r.readLine(); + System.out.println(h); + } + + while ((line = r.readLine()) != null) { + // Split into words: + String[] wordvec = StringUtils.split(line, ' '); + if (wordvec.length < 2) { + break; + } + double[] vec = readDoubleVector(wordvec); + if (norm) { + model.store.put(wordvec[0], VectorMath.normalize(new DoubleMatrix(vec))); + } else { + model.store.put(wordvec[0], new DoubleMatrix(vec)); + } + numWords++; + } + decoder.close(); + r.close(); + int vecSize = model.store.entrySet().iterator().next().getValue().length; + System.out.println(String.format("Loaded %s words, vector size %s", numWords, vecSize)); + + } catch (IOException e) { + System.err.println("ERROR: Failed to load model: " + gloVeModel); + e.printStackTrace(); + } + return model; + } + + /* + * Equivalent to Text model: With Contexts, no bias. norm = unit vector + */ + public static GloVeSpace load(String vocabFile, String gloVeModel, boolean norm) { + return load(vocabFile, gloVeModel, true, false, norm); + } + + /* + * Read binary model, includes bias term, context vectors: + */ + public static GloVeSpace load(String vocabFile, String gloVeModel, boolean withContexts, boolean bias, boolean norm) { + GloVeSpace model = new GloVeSpace(); + try { + FileInputStream in = new FileInputStream(gloVeModel); + DataInputStream ds = new DataInputStream(new BufferedInputStream(in, 131072)); + List vocab = FileUtils.readLines(new File(vocabFile)); + long numWords = vocab.size(); + // Vector Size = num of bytes in total / 16 / vocab + int vecSize = (int) (in.getChannel().size() / 16 / numWords) - 1; + // Word Vectors: + for (int i = 0; i < numWords; i++) { + String word = StringUtils.split(vocab.get(i), ' ')[0]; + double[] vector = readDoubleVector(ds, vecSize, bias); + model.store.put(word, new DoubleMatrix(vector)); + } + // Context Vectors: + if (withContexts) { + for (int i = 0; i < numWords; i++) { + String word = StringUtils.split(vocab.get(i), ' ')[0]; + double[] vector = readDoubleVector(ds, vecSize, bias); + model.store.put(word, VectorMath.addDoubleMatrix(model.store.get(word), new DoubleMatrix(vector))); + } + } + // Unit Vectors: + if (norm) { + for (Entry e : model.store.entrySet()) { + model.store.put(e.getKey(), VectorMath.normalize(e.getValue())); + } + } + System.out.println(String.format("Loaded %s words, vector size %s", numWords, vecSize)); + } catch (IOException e) { + System.err.println("ERROR: Failed to load model: " + gloVeModel); + e.printStackTrace(); + } + return model; + } + + /* + * Read a Vector - Array from text file: + */ + private static double[] readDoubleVector(String[] line) throws IOException { + int vectorSize = line.length; + double[] vector = new double[vectorSize - 1]; + for (int j = 1; j < vectorSize; j++) { + try { + double d = Double.parseDouble(line[j]); + vector[j - 1] = d; + } catch (NumberFormatException e) { + System.err.println("ERROR Parsing: " + line + " " + e.getMessage()); + vector[j - 1] = 0.0D; + } + } + return vector; + } + + /* + * Read a Vector - Array from binary file: + */ + private static double[] readDoubleVector(DataInputStream ds, int vectorSize, boolean bias) throws IOException { + if (bias) { + vectorSize += 1; // Include Bias + } + double[] vector = new double[vectorSize]; + for (int j = 0; j < vectorSize; j++) { + long l = ds.readLong(); + double d = Double.longBitsToDouble(Long.reverseBytes(l)); + vector[j] = d; + } + if (!bias) { + ds.readLong(); // Skip Bias + } + return vector; + } + + @Override + public double cosineSimilarity(DoubleMatrix vec1, DoubleMatrix vec2) { + return VectorMath.cosineSimilarity(vec1, vec2); + } + + @Override + public double distanceSimilarity(DoubleMatrix vec1, DoubleMatrix vec2) { + return VectorMath.distanceSimilarity(vec1, vec2); + } + + @Override + public DoubleMatrix additiveSentenceVector(List vectors) { + return VectorMath.addDoubleMatrix(vectors); + } + +} diff --git a/src/main/java/word2vec/RidxSpace.java b/src/main/java/word2vec/RidxSpace.java new file mode 100755 index 0000000..5e1b0e5 --- /dev/null +++ b/src/main/java/word2vec/RidxSpace.java @@ -0,0 +1,108 @@ +package word2vec; + +import java.io.FileInputStream; +import java.io.FileNotFoundException; +import java.util.Arrays; +import java.util.HashMap; +import java.util.List; +import java.util.Map.Entry; + +import util.Compression; +import util.VectorMath; +import org.jblas.FloatMatrix; + +import com.esotericsoftware.kryo.Kryo; +import com.esotericsoftware.kryo.io.UnsafeMemoryInput; + +/* + * Random Indexing + */ +public class RidxSpace extends GenericWordSpace { + + private static int vectorSize; + + public RidxSpace(int vectorSize) { + RidxSpace.vectorSize = vectorSize; + } + + @SuppressWarnings("unchecked") + public static RidxSpace load(String ridxSpaceModel, int vectorSize) { + RidxSpace model = new RidxSpace(vectorSize); + System.out.println("Loading from file: " + ridxSpaceModel); + try { + // KRYO Store: + HashMap clazz = new HashMap(); + Kryo kryo = new Kryo(); + kryo.register(clazz.getClass()); + UnsafeMemoryInput input = new UnsafeMemoryInput(new FileInputStream(ridxSpaceModel)); + clazz = kryo.readObject(input, clazz.getClass()); + for (Entry e : clazz.entrySet()) { + model.store.put(e.getKey(), Compression.decompress(e.getValue(), vectorSize)); + } + input.close(); + } catch (FileNotFoundException e) { + // TODO Auto-generated catch block + e.printStackTrace(); + } + return model; + } + + + public static FloatMatrix convertVector(int[] input, boolean decompress) { + FloatMatrix f = new FloatMatrix(convertVector(Compression.decompress(input, vectorSize))); + return f; + } + + public static float[] convertVector(int[] input) { + if (input == null) { + return new float[vectorSize]; // Or throw an exception? + } + float[] output = new float[input.length]; + for (int i = 0; i < input.length; i++) { + output[i] = input[i]; + } + return output; + } + + + @Override + public double cosineSimilarity(int[] vec1, int[] vec2) { + + FloatMatrix d1 = new FloatMatrix(copyFromIntArray(vec1)); + FloatMatrix d2 = new FloatMatrix(copyFromIntArray(vec2)); + + d1 = VectorMath.normalize(d1); + d2 = VectorMath.normalize(d2); + + return VectorMath.cosineSimilarity(d1, d2); + + } + + + @Override + public double distanceSimilarity(int[] vec1, int[] vec2) { + //EuclideanDistance e = new EuclideanDistance(); + //return e.compute(copyFromIntArray(vec1), copyFromIntArray(vec2)); + return 0; + } + + + @Override + public int[] additiveSentenceVector(List vectors) { + final int[] result = new int[vectorSize]; + for (final int[] v : vectors) { + Arrays.parallelSetAll(result, i -> result[i] + v[i]); + } + return result; + } + + public static float[] copyFromIntArray(int[] source) { + float[] dest = new float[source.length]; + for (int i = 0; i < source.length; i++) { + dest[i] = source[i]; + } + return dest; + } + + +} diff --git a/src/main/java/word2vec/W2vSpace.java b/src/main/java/word2vec/W2vSpace.java new file mode 100755 index 0000000..698c5eb --- /dev/null +++ b/src/main/java/word2vec/W2vSpace.java @@ -0,0 +1,185 @@ +package word2vec; + +import java.io.BufferedInputStream; +import java.io.BufferedReader; +import java.io.ByteArrayOutputStream; +import java.io.DataInputStream; +import java.io.FileInputStream; +import java.io.FileNotFoundException; +import java.io.IOException; +import java.io.InputStreamReader; +import java.io.Reader; +import java.util.List; +import java.util.zip.GZIPInputStream; + +import org.apache.commons.lang3.StringUtils; +import util.VectorMath; +import org.jblas.FloatMatrix; + +/* + * A Java wrapper for W2v - Only Reads a pre trained model! + */ +public class W2vSpace extends GenericWordSpace { + + /* + * Load vectors from a text file - 1 word per line. + */ + public static W2vSpace loadText(String word2vecModel) { + return loadText(word2vecModel, true, false); + } + + public static W2vSpace loadText(String word2vecModel, boolean norm, boolean header) { + W2vSpace model = new W2vSpace(); + try { + Reader decoder; + if (word2vecModel.endsWith("gz")) { + decoder = new InputStreamReader(new GZIPInputStream(new FileInputStream(word2vecModel)), "UTF-8"); + } else { + decoder = new InputStreamReader(new FileInputStream(word2vecModel), "UTF-8"); + } + BufferedReader r = new BufferedReader(decoder); + + long numWords = 0; + String line; + + if (header) { + String h = r.readLine(); + System.out.println(h); + } + + while ((line = r.readLine()) != null) { + // Split into words: + String[] wordvec = StringUtils.split(line, ' '); + if (wordvec.length < 2) { + break; + } + float[] vec = readFloatVector(wordvec); + if (norm) { + model.store.put(wordvec[0], VectorMath.normalize(new FloatMatrix(vec))); + } else { + model.store.put(wordvec[0], new FloatMatrix(vec)); + } + numWords++; + } + int vecSize = model.store.entrySet().iterator().next().getValue().length; + System.out.println(String.format(word2vecModel + " Loaded %s words, vector size %s", numWords, vecSize)); + } catch (FileNotFoundException e) { + // TODO Auto-generated catch block + e.printStackTrace(); + } catch (IOException e) { + // TODO Auto-generated catch block + e.printStackTrace(); + } + return model; + } + + /* + * Read a Vector - Array from text file: + */ + private static float[] readFloatVector(String[] line) throws IOException { + int vectorSize = line.length; + float[] vector = new float[vectorSize - 1]; + for (int j = 1; j < vectorSize; j++) { + try { + float d = Float.parseFloat(line[j]); + vector[j - 1] = d; + } catch (NumberFormatException e) { + System.err.println("ERROR Parsing: " + line + " " + e.getMessage()); + vector[j - 1] = 0.0f; + } + } + return vector; + } + + /* + * Load vectors from w2v C binary file + */ + public static W2vSpace load(String word2vecModel) { + return load(word2vecModel, true); + } + + public static W2vSpace load(String word2vecModel, boolean norm) { + W2vSpace model = new W2vSpace(); + try (DataInputStream ds = new DataInputStream(new BufferedInputStream(new FileInputStream(word2vecModel), 131072))) { + // Read header: + int numWords = Integer.parseInt(readString(ds)); + int vecSize = Integer.parseInt(readString(ds)); + for (int i = 0; i < numWords; i++) { + // Word: + String word = readString(ds); + // Unit Vector + FloatMatrix f = new FloatMatrix(readFloatVector(ds, vecSize)); + if (norm) { + f = VectorMath.normalize(f); + } + model.store.put(word, f); + } + //System.out.println(String.format("Loaded %s words, vector size %s", numWords, vecSize)); + } catch (IOException e) { + System.err.println("ERROR: Failed to load model: " + word2vecModel); + e.printStackTrace(); + } + return model; + } + + /* + * Read a string from the binary model (System default should be UTF-8): + */ + public static String readString(DataInputStream ds) throws IOException { + ByteArrayOutputStream byteBuffer = new ByteArrayOutputStream(); + while (true) { + byte byteValue = ds.readByte(); + if ((byteValue != 32) && (byteValue != 10)) { + byteBuffer.write(byteValue); + } else if (byteBuffer.size() > 0) { + break; + } + } + String word = byteBuffer.toString(); + byteBuffer.close(); + return word; + } + + /* + * Read a Vector - Array of Floats from the binary model: + */ + public static float[] readFloatVector(DataInputStream ds, int vectorSize) throws IOException { + // Vector is an Array of Floats... + float[] vector = new float[vectorSize]; + // Floats stored as 4 bytes + byte[] vectorBuffer = new byte[4 * vectorSize]; + // Read the full vector in a single chunk: + ds.read(vectorBuffer); + // Parse bytes into floats + for (int i = 0; i < vectorSize; i++) { + // & with 0xFF to get unsigned byte value as int + int byte1 = (vectorBuffer[(i * 4) + 0] & 0xFF) << 0; + int byte2 = (vectorBuffer[(i * 4) + 1] & 0xFF) << 8; + int byte3 = (vectorBuffer[(i * 4) + 2] & 0xFF) << 16; + int byte4 = (vectorBuffer[(i * 4) + 3] & 0xFF) << 24; + // Encode the 4 byte values (0-255) above into a single int + // Reverse bytes for endian compatibility + int reverseBytes = (byte1 | byte2 | byte3 | byte4); + vector[i] = Float.intBitsToFloat(reverseBytes); + } + return vector; + } + + @Override + public double cosineSimilarity(FloatMatrix vec1, FloatMatrix vec2) { + return VectorMath.cosineSimilarity(vec1, vec2); + } + + @Override + public double distanceSimilarity(FloatMatrix vec1, FloatMatrix vec2) { + return VectorMath.distanceSimilarity(vec1, vec2); + } + + @Override + public FloatMatrix additiveSentenceVector(List vectors) { + // return VectorMath.addFloatMatrix(vectors); + return VectorMath.normalize(VectorMath.addFloatMatrix(vectors)); + + } + +} diff --git a/src/main/java/word2vec/WordSpace.java b/src/main/java/word2vec/WordSpace.java new file mode 100755 index 0000000..3c33372 --- /dev/null +++ b/src/main/java/word2vec/WordSpace.java @@ -0,0 +1,32 @@ +package word2vec; + +import java.util.List; + +import util.Filters.WordFilter; +import util.WordSim; + +public interface WordSpace { + + public boolean contains(String word); + + public T vector(String word); + + public T sentenceVector(String sentence); + + public T sentenceVector(String sentence, WordFilter... filters); + + public T additiveSentenceVector(List vectors); + + public double cosineSimilarity(String w1, String w2); + + public double distanceSimilarity(String w1, String w2); + + public List knn(String word, int k, WordFilter... filters); + + public List knn(T vec, int k, WordFilter... filters); + + public List knnWords(String word, int k, WordFilter... filters); + + public List knnWords(T vec, int k, WordFilter... filters); + +} diff --git a/src/main/resources/0020.model b/src/main/resources/0020.model new file mode 100644 index 0000000..0ab20e1 Binary files /dev/null and b/src/main/resources/0020.model differ diff --git a/src/main/resources/data/DBPediaStore b/src/main/resources/data/DBPediaStore new file mode 100644 index 0000000..f9feb02 Binary files /dev/null and b/src/main/resources/data/DBPediaStore differ diff --git a/src/main/resources/data/DBPediaSynsets b/src/main/resources/data/DBPediaSynsets new file mode 100644 index 0000000..8af5df8 Binary files /dev/null and b/src/main/resources/data/DBPediaSynsets differ diff --git a/src/main/resources/data/FBStore b/src/main/resources/data/FBStore new file mode 100644 index 0000000..c7bee51 Binary files /dev/null and b/src/main/resources/data/FBStore differ diff --git a/src/main/resources/data/FreebaseSynsets b/src/main/resources/data/FreebaseSynsets new file mode 100644 index 0000000..dd3d10b Binary files /dev/null and b/src/main/resources/data/FreebaseSynsets differ diff --git a/src/main/resources/data/dbpedia_2015-04.nt b/src/main/resources/data/dbpedia_2015-04.nt new file mode 100644 index 0000000..2a31b3f --- /dev/null +++ b/src/main/resources/data/dbpedia_2015-04.nt @@ -0,0 +1,28880 @@ + . + . + "dbo" . + "http://dbpedia.org/ontology/" . + "The DBpedia Ontology"@en . + "\n The DBpedia ontology provides the classes and properties used in the DBpedia data set.\n "@en . + . + . + "DBpedia Maintainers" . + "DBpedia Maintainers and Contributors" . + "2008-11-17T12:00Z" . + "2015-04-10T13:58Z" . + "4.0-SNAPSHOT"@en . + "\n This ontology is generated from the manually created specifications in the DBpedia Mappings\n Wiki. Each release of this ontology corresponds to a new release of the DBpedia data set which\n contains instance data extracted from the different language versions of Wikipedia. For\n information regarding changes in this ontology, please refer to the DBpedia Mappings Wiki.\n "@en . + . + . + . + "basketbal competitie"@nl . + "\u039F\u03BC\u03BF\u03C3\u03C0\u03BF\u03BD\u03B4\u03AF\u03B1 \u039A\u03B1\u03BB\u03B1\u03B8\u03BF\u03C3\u03C6\u03B1\u03AF\u03C1\u03B9\u03C3\u03B7\u03C2"@el . + "ligue de basketball"@fr . + "lega di pallacanestro"@it . + "liga de baloncesto"@es . + "basketball league"@en . + "\uB18D\uAD6C \uB9AC\uADF8"@ko . + "\u30D0\u30B9\u30B1\u30C3\u30C8\u30DC\u30FC\u30EB\u30EA\u30FC\u30B0"@ja . + "Basketball-Liga"@de . + "a group of sports teams that compete against each other in Basketball"@en . + . + . + . + "gebeurtenis in de natuur"@nl . + "\u03C6\u03C5\u03C3\u03B9\u03BA\u03CC \u03B3\u03B5\u03B3\u03BF\u03BD\u03CC\u03C2"@el . + "evento naturale"@it . + "natural event"@en . + "Naturereignis"@de . + "\u03A4\u03BF \u03C6\u03C5\u03C3\u03B9\u03BA\u03CC \u03B3\u03B5\u03B3\u03BF\u03BD\u03CC\u03C2 \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03B5\u03AF\u03C4\u03B1\u03B9 \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03C0\u03B5\u03C1\u03B9\u03B3\u03C1\u03AC\u03C8\u03B5\u03B9 \u03AD\u03BD\u03B1 \u03C3\u03C5\u03BC\u03B2\u03AC\u03BD \u03C0\u03BF\u03C5 \u03C0\u03C1\u03B1\u03B3\u03BC\u03B1\u03C4\u03BF\u03C0\u03BF\u03B9\u03B5\u03AF\u03C4\u03B1\u03B9 \u03C6\u03C5\u03C3\u03B9\u03BA\u03AC"@el . + . + . + . + "provincie"@nl . + "\u03B5\u03C0\u03B1\u03C1\u03C7\u03AF\u03B1"@el . + "province"@fr . + "province"@en . + "Provinz"@de . + "An administrative body governing a territorial unity on the intermediate level, between local and national level"@en . + "\u0395\u03AF\u03BD\u03B1\u03B9 \u03B4\u03B9\u03BF\u03B9\u03BA\u03B7\u03C4\u03B9\u03BA\u03AE \u03B4\u03BF\u03BC\u03AE \u03C4\u03BF\u03C5 \u03BA\u03C1\u03AC\u03C4\u03BF\u03C5\u03C2 \u03C0\u03BF\u03C5 \u03B4\u03B9\u03BF\u03B9\u03BA\u03B5\u03AF \u03BC\u03B9\u03B1 \u03C0\u03B5\u03C1\u03B9\u03BF\u03C7\u03AE \u03C0\u03BF\u03C5 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03C3\u03B5 \u03AD\u03BA\u03C4\u03B1\u03C3\u03B7 \u03BC\u03B5\u03B3\u03B1\u03BB\u03CD\u03C4\u03B5\u03C1\u03B7 \u03B1\u03C0\u03CC \u03C4\u03BF\u03C0\u03B9\u03BA\u03CC \u03B5\u03C0\u03AF\u03C0\u03B5\u03B4\u03BF \u03BA\u03B1\u03B9 \u03BC\u03B9\u03BA\u03C1\u03CC\u03C4\u03B5\u03C1\u03B7 \u03B1\u03C0\u03CC \u03B5\u03B8\u03BD\u03B9\u03BA\u03CC \u03B5\u03C0\u03AF\u03C0\u03B5\u03B4\u03BF."@el . + . + . + . + "maankrater"@nl . + "\u03A3\u03B5\u03BB\u03B7\u03BD\u03B9\u03B1\u03BA\u03CC\u03C2 \u03BA\u03C1\u03B1\u03C4\u03AE\u03C1\u03B1\u03C2"@el . + "crat\u00E8re lunaire"@fr . + "lunar crater"@en . + "Mondkrater"@de . + . + . + . + . + "motorsport season"@en . + "motorsportseizoen"@nl . + "Motorsportsaison"@de . + . + . + . + "militair"@nl . + "\u03C3\u03C4\u03C1\u03B1\u03C4\u03B9\u03C9\u03C4\u03B9\u03BA\u03CC\u03C2"@el . + "militaire"@fr . + "militare"@it . + "military person"@en . + "\uAD70\uC778"@ko . + "milit\u00E4rische Person"@de . + . + . + . + "tijdvak"@nl . + "\u03C7\u03C1\u03BF\u03BD\u03B9\u03BA\u03AE \u03C0\u03B5\u03C1\u03AF\u03BF\u03B4\u03BF\u03C2"@el . + "p\u00E9riode temporelle"@fr . + "periodo temporal"@es . + "time period"@en . + "Zeitraum"@de . + . + . + . + . + "automotor"@nl . + "\u03BA\u03B9\u03BD\u03B7\u03C4\u03AE\u03C1\u03B1\u03C2 \u03B1\u03C5\u03C4\u03BF\u03BA\u03B9\u03BD\u03AE\u03C4\u03BF\u03C5"@el . + "moteur d'automobile"@fr . + "motor de autom\u00F3vel"@pt . + "motore d'automobile"@it . + "automobile engine"@en . + "\uC790\uB3D9\uCC28 \uC5D4\uC9C4"@ko . + "\u5185\u71C3\u6A5F\u95A2"@ja . + "Fahrzeugmotor"@de . + . + . + . + "archeolog"@pl . + "archeoloog"@nl . + "\u0391\u03C1\u03C7\u03B1\u03B9\u03BF\u03BB\u03CC\u03B3\u03BF\u03C2"@el . + "arch\u00E9ologue"@fr . + "Arque\u00F3logo"@es . + "archeologist"@en . + "seand\u00E1la\u00ED"@ga . + "Arch\u00E4ologe"@de . + . + . + . + . + "enzym"@nl . + "\u03AD\u03BD\u03B6\u03C5\u03BC\u03BF"@el . + "enzima"@it . + "enzyme"@en . + "\uD6A8\uC18C"@ko . + "\u9175\u7D20"@ja . + "Enzym"@de . + . + . + . + . + "songwriter"@en . + "Liedschreiber"@de . + "songwriter (tekstdichter)"@nl . + "auteur-compositeur"@fr . + "a person who writes songs."@en . + "een persoon die de muziek en/of de tekst voor populaire muzieknummers schrijft."@nl . + . + . + . + . + "square"@en . + "Platz"@de . + "plein"@nl . + . + . + . + . + "uniwersytet"@pl . + "universiteit"@nl . + "\u03C0\u03B1\u03BD\u03B5\u03C0\u03B9\u03C3\u03C4\u03AE\u03BC\u03B9\u03BF"@el . + "universit\u00E9"@fr . + "universidade"@pt . + "universidad"@es . + "university"@en . + "ollscoil"@ga . + "\uB300\uD559"@ko . + "\u5927\u5B66"@ja . + "Universit\u00E4t"@de . + . + . + . + . + . + "anatomische structuur"@nl . + "\u03B1\u03BD\u03B1\u03C4\u03BF\u03BC\u03B9\u03BA\u03AE \u03B4\u03BF\u03BC\u03AE"@el . + "structure anatomique"@fr . + "struttura anatomica"@it . + "anatomical structure"@en . + "\uD574\uBD80\uD559"@ko . + "anatomska struktura"@sl . + "\u89E3\u5256\u69CB\u9020"@ja . + "anatomischen Struktur"@de . + . + . + . + . + "televisie show"@nl . + "\u03C4\u03B7\u03BB\u03B5\u03BF\u03C0\u03C4\u03B9\u03BA\u03AE \u03C3\u03B5\u03B9\u03C1\u03AC"@el . + "\u00E9mission de t\u00E9l\u00E9vision"@fr . + "serie de televisi\u00F3n"@es . + "television show"@en . + "televizijska oddaja"@sl . + "\u30C6\u30EC\u30D3\u756A\u7D44"@ja . + "Fernsehsendung"@de . + . + . + . + . + "lanceerbasis"@nl . + "\u03C1\u03AC\u03BC\u03C0\u03B1 \u03C6\u03BF\u03C1\u03C4\u03CE\u03C3\u03B5\u03C9\u03C2"@el . + "rampe de lancement"@fr . + "launch pad"@en . + "Startrampe"@de . + . + . + . + . + "wielerronde"@nl . + "\u039F\u03BC\u03BF\u03C3\u03C0\u03BF\u03BD\u03B4\u03AF\u03B1 \u03A0\u03BF\u03B4\u03B7\u03BB\u03B1\u03C3\u03AF\u03B1\u03C2"@el . + "ligue de cyclisme"@fr . + "liga de ciclismo"@es . + "cycling league"@en . + "\uC0AC\uC774\uD074 \uB9AC\uADF8"@ko . + "Rad-Liga"@de . + "a group of sports teams that compete against each other in Cycling"@en . + . + . + . + "territorium"@nl . + "\u03C0\u03B5\u03C1\u03B9\u03BF\u03C7\u03AE"@el . + "territoire"@fr . + "territory"@en . + "Territorium"@de . + "A territory may refer to a country subdivision, a non-sovereign geographic region."@en . + . + . + . + "curling competitie"@nl . + "\u03C0\u03C1\u03C9\u03C4\u03AC\u03B8\u03BB\u03B7\u03BC\u03B1 curling"@el . + "ligue de curling"@fr . + "liga de curling"@es . + "curling league"@en . + "\uCEEC\uB9C1 \uB9AC\uADF8"@ko . + "Curling-Liga"@de . + "a group of sports teams that compete against each other in Curling"@en . + . + . + . + "Gated community"@en . + "Hofje / gebouw met woongemeenschap"@nl . + "bewachte Wohnanlage / Siedlung"@de . + . + . + . + "muziekfestival"@nl . + "\u03C6\u03B5\u03C3\u03C4\u03B9\u03B2\u03AC\u03BB \u03BC\u03BF\u03C5\u03C3\u03B9\u03BA\u03AE\u03C2"@el . + "festival de musique"@fr . + "festival de m\u00FAsica"@es . + "music festival"@en . + "\uC74C\uC545\uC81C"@ko . + "Musikfestival"@de . + . + . + . + . + . + "belasting"@nl . + "\u03C6\u03CC\u03C1\u03BF\u03C2"@el . + "taxe"@fr . + "impuesto"@es . + "tax"@en . + "\u79DF\u7A0E"@ja . + "Steuer"@de . + . + . + . + . + . + "racecourse"@en . + "Rennbahn"@de . + "\u03B9\u03C0\u03C0\u03CC\u03B4\u03C1\u03BF\u03BC\u03BF\u03C2"@el . + "ippodromo"@it . + "A racecourse is an alternate term for a horse racing track, found in countries such as the United Kingdom, Australia, Hong Kong, and the United Arab Emirates."@en . + "\u039F \u03B9\u03C0\u03C0\u03CC\u03B4\u03C1\u03BF\u03BC\u03BF\u03C2,\u03B5\u03BD\u03B1\u03BB\u03BB\u03B1\u03BA\u03C4\u03B9\u03BA\u03CC\u03C2 \u03CC\u03C1\u03BF\u03C2 \u03B3\u03B9\u03B1 \u03C4\u03B7\u03BD \u03C0\u03AF\u03C3\u03C4\u03B1 \u03B4\u03B9\u03B5\u03BE\u03B1\u03B3\u03C9\u03B3\u03AE\u03C2 \u03B1\u03B3\u03CE\u03BD\u03C9\u03BD \u03BC\u03B5\u03C4\u03B1\u03BE\u03CD \u03AF\u03C0\u03C0\u03C9\u03BD,\u03C3\u03C5\u03BD\u03B1\u03BD\u03C4\u03AC\u03C4\u03B1\u03B9 \u03C3\u03B5 \u03C7\u03CE\u03C1\u03B5\u03C2 \u03CC\u03C0\u03C9\u03C2 \u03B7 \u0391\u03B3\u03B3\u03BB\u03AF\u03B1, \u0391\u03C5\u03C3\u03C4\u03C1\u03B1\u03BB\u03AF\u03B1, \u03A7\u03BF\u03BD\u03B3\u03BA \u039A\u03BF\u03BD\u03B3\u03BA \u03BA\u03B1\u03B9 \u03C4\u03B1 \u0397\u03BD\u03C9\u03BC\u03AD\u03BD\u03B1 \u0391\u03C1\u03B1\u03B2\u03B9\u03BA\u03AC \u0395\u03BC\u03B9\u03C1\u03AC\u03C4\u03B1."@el . + . + . + . + . + "danser"@nl . + "\u03C7\u03BF\u03C1\u03B5\u03C5\u03C4\u03AE\u03C2"@el . + "danceur"@fr . + "ballerino"@it . + "dancer"@en . + "T\u00E4nzer"@de . + . + . + . + "ijshockeyspeler"@nl . + "\u03C0\u03B1\u03AF\u03BA\u03C4\u03B7\u03C2 \u03C7\u03CC\u03BA\u03B5\u03CB"@el . + "joueur de hockey sur glace"@fr . + "ice hockey player"@en . + "\uC544\uC774\uC2A4\uD558\uD0A4 \uC120\uC218"@ko . + "Eishockeyspieler"@de . + . + . + . + . + "openbaar vervoer systeem"@nl . + "\u03BC\u03AD\u03C3\u03B1 \u03BC\u03B1\u03B6\u03B9\u03BA\u03AE\u03C2 \u03BC\u03B5\u03C4\u03B1\u03C6\u03BF\u03C1\u03AC\u03C2"@el . + "Sistema de Transporte P\u00FAblico"@es . + "public transit system"@en . + "\u00D6ffentliches Personenverkehrssystem"@de . + "A public transit system is a shared passenger transportation service which is available for use by the general public. Public transport modes include buses, trolleybuses, trams and trains, 'rapid transit' (metro/subways/undergrounds etc) and ferries. Intercity public transport is dominated by airlines, coaches, and intercity rail. (http://en.wikipedia.org/wiki/Public_transit)."@en . + "\u03A4\u03B1 \u03BC\u03AD\u03C3\u03B1 \u03BC\u03B1\u03B6\u03B9\u03BA\u03AE\u03C2 \u03BC\u03B5\u03C4\u03B1\u03C6\u03BF\u03C1\u03AC\u03C2 (\u03C3\u03C5\u03BD\u03C4\u03BF\u03BC\u03BF\u03B3\u03C1\u03B1\u03C6\u03AF\u03B1 \u039C\u039C\u039C) \u03B5\u03AF\u03BD\u03B1\u03B9 \u03C4\u03B1 \u03B4\u03B7\u03BC\u03CC\u03C3\u03B9\u03B1 \u03C3\u03C5\u03B3\u03BA\u03BF\u03B9\u03BD\u03C9\u03BD\u03B9\u03B1\u03BA\u03AC \u03BC\u03AD\u03C3\u03B1, \u03C0\u03BF\u03C5 \u03C0\u03B5\u03C1\u03B9\u03BB\u03B1\u03BC\u03B2\u03AC\u03BD\u03BF\u03C5\u03BD \u03C4\u03B1 \u03BB\u03B5\u03C9\u03C6\u03BF\u03C1\u03B5\u03AF\u03B1, \u03C4\u03B1 \u03C4\u03C1\u03CC\u03BB\u03B5\u03CA, \u03C4\u03B1 \u03C4\u03C1\u03B1\u03BC, \u03C4\u03B1 \u03C4\u03C1\u03AD\u03BD\u03B1, \u03C4\u03BF \u03BC\u03B5\u03C4\u03C1\u03CC, \u03C4\u03B1 \u03C0\u03BB\u03BF\u03AF\u03B1. \u03A5\u03C0\u03AC\u03C1\u03C7\u03BF\u03C5\u03BD \u03BA\u03B1\u03B9 \u03C4\u03B1 \u03C4\u03B1\u03C7\u03B5\u03AF\u03B1 \u03BC\u03AD\u03C3\u03B1 \u03C3\u03C5\u03B3\u03BA\u03BF\u03B9\u03BD\u03C9\u03BD\u03AF\u03B1\u03C2 \u03C0\u03BF\u03C5 \u03C0\u03B5\u03C1\u03B9\u03BB\u03B1\u03BC\u03B2\u03AC\u03BD\u03BF\u03C5\u03BD \u03C4\u03B1 \u03B1\u03B5\u03C1\u03BF\u03C0\u03BB\u03AC\u03BD\u03B1, \u03C5\u03C0\u03B5\u03C1\u03C4\u03B1\u03C7\u03B5\u03AF\u03B1 \u03C4\u03C1\u03AD\u03BD\u03B1."@el . + "Ein System des \u00D6ffentlichen Personenverkehrs auf Stra\u00DFe, Schiene oder Wasser."@de . + . + . + . + "mecz pi\u0142ki no\u017Cnej"@pl . + "voetbal wedstrijd"@nl . + "\u03B1\u03B3\u03CE\u03BD\u03B1\u03C2 \u03C0\u03BF\u03B4\u03BF\u03C3\u03C6\u03B1\u03AF\u03C1\u03BF\u03C5"@el . + "partido de f\u00FAtbol"@es . + "football match"@en . + "Fu\u00DFballspiel"@de . + "a competition between two football teams"@en . + . + . + . + "MouseGeneLocation"@en . + "Mausgenom Lokation"@de . + "muisgenoom locatie"@nl . + "\u30DE\u30A6\u30B9\u907A\u4F1D\u5B50\u5EA7"@ja . + . + . + . + "militair conflict"@nl . + "\u03C3\u03C4\u03C1\u03B1\u03C4\u03B9\u03C9\u03C4\u03B9\u03BA\u03AE \u03C3\u03CD\u03B3\u03BA\u03C1\u03BF\u03C5\u03C3\u03B7"@el . + "conflit militaire"@fr . + "military conflict"@en . + "\uC804\uC7C1"@ko . + "milit\u00E4rischer Konflikt"@de . + . + . + . + "Stated Resolution"@en . + "Angenommen Beschlu\u00DF"@de . + "Aangenomen Besluit"@nl . + "A Resolution describes a formal statement adopted by a meeting or convention."@en . + "Een Besluit of Verklaring beschrijft een formeel besluit of formele aanbeveling aangenomen door een vergadering."@nl . + . + . + . + "festiwal filmowy"@pl . + "filmfestival"@nl . + "\u03C6\u03B5\u03C3\u03C4\u03B9\u03B2\u03AC\u03BB \u03BA\u03B9\u03BD\u03B7\u03BC\u03B1\u03C4\u03BF\u03B3\u03C1\u03AC\u03C6\u03BF\u03C5"@el . + "festival du film"@fr . + "film festival"@en . + "f\u00E9ile scann\u00E1n"@ga . + "\uC601\uD654\uC81C"@ko . + "\u6620\u753B\u796D"@ja . + "Filmfestival"@de . + . + . + . + . + . + "Theatre director"@en . + "directeur de th\u00E9\u00E2tre"@fr . + "theaterdirecteur"@nl . + "Theaterdirektor"@de . + "A director in the theatre field who oversees and orchestrates the mounting of a theatre production."@en . + . + . + . + . + "drank"@nl . + "\u03B1\u03BD\u03B1\u03C8\u03C5\u03BA\u03C4\u03B9\u03BA\u03CC"@el . + "boisson"@fr . + "bevanda"@it . + "bebida"@es . + "beverage"@en . + "\uC74C\uB8CC"@ko . + "\u98F2\u6599"@ja . + "Getr\u00E4nk"@de . + "A drink, or beverage, is a liquid which is specifically prepared for human consumption."@en . + "Ein Getr\u00E4nk ist eine zum Trinken zubereitete Fl\u00FCssigkeit. Getr\u00E4nke werden entweder zum Stillen von Durst und damit zur Wasseraufnahme des K\u00F6rpers, als Nahrungsmittel oder auch als reine Genussmittel aufgenommen."@de . + "\u0388\u03BD\u03B1 \u03C0\u03CC\u03C3\u03B9\u03BC\u03BF \u03C5\u03B3\u03C1\u03CC \u03C1\u03CC\u03C6\u03B7\u03BC\u03B1, \u03C3\u03C5\u03BD\u03AE\u03B8\u03C9\u03C2 \u03BC\u03B5 \u03BC\u03B7\u03B4\u03B5\u03BD\u03B9\u03BA\u03AE \u03AE \u03B5\u03BB\u03AC\u03C7\u03B9\u03C3\u03C4\u03B7 \u03C0\u03B5\u03C1\u03B9\u03B5\u03BA\u03C4\u03B9\u03BA\u03CC\u03C4\u03B7\u03C4\u03B1 \u03B1\u03BB\u03BA\u03BF\u03CC\u03BB\u03B7\u03C2."@el . + . + . + . + "ruimteveer"@nl . + "\u03B4\u03B9\u03B1\u03C3\u03C4\u03B7\u03BC\u03B9\u03BA\u03CC \u03BB\u03B5\u03C9\u03C6\u03BF\u03C1\u03B5\u03AF\u03BF"@el . + "navette spatiale"@fr . + "space shuttle"@en . + "\uC6B0\uC8FC \uC655\uBCF5\uC120"@ko . + "Raumf\u00E4hre"@de . + . + . + . + . + "Employers' Organisation"@en . + "Arbeitgeberverb\u00E4nde"@de . + "werkgeversorganisatie"@nl . + "syndicat de patrons"@fr . + "An employers' organisation is an organisation of entrepreneurs who work together to coordinate their actions in the field of labour relations"@en . + . + . + . + "gevangenis"@nl . + "\u03C6\u03C5\u03BB\u03B1\u03BA\u03AE"@el . + "prison"@fr . + "prigione"@it . + "prison"@en . + "gef\u00E4ngnis"@de . + . + . + . + . + "Archaea (oerbacteri\u00EBn)"@nl . + "\u03B1\u03C1\u03C7\u03B1\u03AF\u03B1"@el . + "arch\u00E9es"@fr . + "archei"@it . + "archaea"@en . + "\uACE0\uC138\uADE0"@ko . + "\u53E4\u7D30\u83CC"@ja . + "Archaeen"@de . + . + . + . + "handballer"@nl . + "\u03C0\u03B1\u03AF\u03BA\u03C4\u03B7\u03C2 \u03C4\u03BF\u03C5 handball"@el . + "joueur de handball"@fr . + "jugador de balonmano"@es . + "handball player"@en . + "Handballspieler"@de . + . + . + . + . + "religieus"@nl . + "\u03B8\u03C1\u03B7\u03C3\u03BA\u03B5\u03C5\u03C4\u03B9\u03BA\u03CC\u03C2"@el . + "religieux"@fr . + "religious"@en . + "religi\u00F6s"@de . + . + . + . + . + "spinachtigen"@nl . + "\u03B1\u03C1\u03B1\u03C7\u03BD\u03BF\u03B5\u03B9\u03B4\u03AD\u03C2"@el . + "arachnides"@fr . + "aracn\u00EDdeos"@pt . + "aracnide"@it . + "ar\u00E1cnido"@es . + "arachnid"@en . + "\uAC70\uBBF8\uAC15"@ko . + "\u30AF\u30E2\u7DB1"@ja . + "Spinnentier"@de . + . + . + . + "Deel (van werk)"@nl . + "\u03B4\u03CC\u03C3\u03B7"@el . + "Versement"@fr . + "Installment"@en . + "Teilzahlung"@de . + . + . + . + "departement"@nl . + "\u03C4\u03BC\u03AE\u03BC\u03B1"@el . + "d\u00E9partement"@fr . + "Distrito"@es . + "department"@en . + "\uBD80\uC11C"@ko . + "Distrikt"@de . + . + . + . + "Cardinal direction"@en . + "windrichting"@nl . + "Windrichtung"@de . + "One of the four main directions on a compass or any other system to determine a geographical position"@en . + . + . + . + "schilder"@nl . + "\u03B6\u03C9\u03B3\u03C1\u03AC\u03C6\u03BF\u03C2"@el . + "peintre"@fr . + "painter"@en . + "Maler"@de . + . + . + . + . + "line of fashion"@en . + "Modelinie"@de . + "modelijn"@nl . + "type de couture"@fr . + "A coherent type of clothing or dressing following a particular fashion"@en . + "Een samenhangend geheel van kleding in een bepaalde stijl volgens een bepaalde mode."@nl . + . + . + . + "park"@nl . + "\u03C0\u03AC\u03C1\u03BA\u03BF"@el . + "parc"@fr . + "parque"@pt . + "park"@en . + "\uACF5\uC6D0"@ko . + "\u516C\u5712"@ja . + "Park"@de . + "A park is an area of open space provided for recreational use. http://en.wikipedia.org/wiki/Park"@en . + . + . + . + . + "wielerploeg"@nl . + "\u03BF\u03BC\u03AC\u03B4\u03B1 \u03C0\u03BF\u03B4\u03B7\u03BB\u03B1\u03C3\u03AF\u03B1\u03C2"@el . + "squadra di ciclismo"@it . + "cycling team"@en . + "\uC0AC\uC774\uD074 \uD300"@ko . + "Radsportteam"@de . + . + . + . + "gross domestic product"@en . + "Bruttoinlandsprodukt"@de . + "\u03B1\u03BA\u03B1\u03B8\u03AC\u03C1\u03B9\u03C3\u03C4\u03BF \u03B5\u03B3\u03C7\u03CE\u03C1\u03B9\u03BF \u03C0\u03C1\u03BF\u03CA\u03CC\u03BD"@el . + . + . + . + "water ride"@en . + "Wasserbahn"@de . + . + . + . + . + "military vehicle"@en . + "Milit\u00E4rfahrzeug"@de . + "legervoertuig"@nl . + . + . + . + . + "artistic genre"@en . + "Kunstgattung"@de . + "Genres of art, e.g. Pointillist, Modernist"@en . + "Gattung nennt man in den Kunstwissenschaften die auf das k\u00FCnstlerische Ausdrucksmedium bezogenen Formen der Kunst."@de . + . + . + . + "sports season"@en . + "Sportsaison"@de . + "\u03C0\u03B5\u03C1\u03AF\u03BF\u03B4\u03BF\u03C2 \u03B1\u03B8\u03BB\u03B7\u03BC\u03AC\u03C4\u03C9\u03BD"@el . + "sportseizoen"@nl . + . + . + . + "cricketspeler"@nl . + "\u03C0\u03B1\u03AF\u03BA\u03C4\u03B7\u03C2 \u03C4\u03BF\u03C5 \u03BA\u03C1\u03AF\u03BA\u03B5\u03C4"@el . + "joueur de cricket"@fr . + "cricketer"@en . + "\uD06C\uB9AC\uCF13 \uC120\uC218"@ko . + "Cricketspieler"@de . + . + . + . + "bedektzadigen"@nl . + "\u03B1\u03BD\u03B8\u03BF\u03C6\u03CC\u03C1\u03BF \u03C6\u03C5\u03C4\u03CC"@el . + "angiospermes"@fr . + "magnoliofita"@it . + "angiosperma"@es . + "flowering plant"@en . + "\u88AB\u5B50\u690D\u7269"@ja . + "bedecktsamige Pflanze"@de . + . + . + . + "televisie seizoen"@nl . + "\u03B5\u03C0\u03B5\u03B9\u03C3\u03CC\u03B4\u03B9\u03BF \u03C4\u03B7\u03BB\u03B5\u03CC\u03C1\u03B1\u03C3\u03B7\u03C2"@el . + "\u00E9pisode t\u00E9l\u00E9vis\u00E9"@fr . + "cap\u00EDtulo de serie de televisi\u00F3n"@es . + "television episode"@en . + "\uD154\uB808\uBE44\uC804 \uC5D0\uD53C\uC18C\uB4DC"@ko . + "Fernsehfolge"@de . + "A television episode is a part of serial television program."@en . + . + . + . + . + "baronet"@en . + "baronet"@nl . + "Baronet"@de . + "baronetto"@it . + . + . + . + "Gnetales"@nl . + "Gnetophytes"@el . + "gn\u00E9tophytes"@fr . + "Gnetophytes"@en . + "\u30B0\u30CD\u30C4\u30E0\u7DB1"@ja . + "Gnetophyta"@de . + . + . + . + "jockey"@nl . + "\u03B1\u03BD\u03B1\u03B2\u03AC\u03C4\u03B7\u03C2 \u03B1\u03BB\u03CC\u03B3\u03BF\u03C5 \u03B1\u03B3\u03CE\u03BD\u03C9\u03BD"@el . + "jockey (horse racer)"@en . + "\u9A0E\u624B"@ja . + "Jockey (Pferderennprofi)"@de . + . + . + . + "Scientific concept"@en . + "wissenschaftliche Theorie"@de . + "wetenschappelijke theorie"@nl . + "Scientific concepts, e.g. Theory of relativity, Quantum gravity"@en . + . + . + . + "Link Title"@en . + "Zwischentitel"@de . + "Surface form (dc:title) and count (dno:number) used to refer to a page from other pages"@en . + . + . + . + "\u03B1\u03C0\u03BF\u03C4\u03B5\u03BB\u03AD\u03C3\u03BC\u03B1\u03C4\u03B1 \u03B1\u03B8\u03BB\u03B7\u03C4\u03B9\u03BA\u03BF\u03CD \u03B4\u03B9\u03B1\u03B3\u03C9\u03BD\u03B9\u03C3\u03BC\u03BF\u03CD"@el . + "r\u00E9sultats d'une comp\u00E9tition sportive"@fr . + "resultados de una competici\u00F3n deportiva"@es . + "results of a sport competition"@en . + "Ergebnisse eines Sportwettbewerbs"@de . + . + . + . + "tower"@en . + "Turm"@de . + "\u03C0\u03CD\u03C1\u03B3\u03BF\u03C2"@el . + "toren"@nl . + "A Tower is a kind of structure (not necessarily a building) that is higher than the rest"@en . + . + . + . + . + . + "prote\u00EFne"@nl . + "\u03C0\u03C1\u03C9\u03C4\u03B5\u0390\u03BD\u03B7"@el . + "prot\u00E9ine"@fr . + "prote\u00EDna"@pt . + "proteina"@it . + "protein"@en . + "\uB2E8\uBC31\uC9C8"@ko . + "\u30BF\u30F3\u30D1\u30AF\u8CEA"@ja . + "Protein"@de . + . + . + . + . + "menselijk genoom locatie"@nl . + "\u03C4\u03BF\u03C0\u03BF\u03B8\u03B5\u03C3\u03AF\u03B1 \u03C4\u03BF\u03C5 \u03B1\u03BD\u03B8\u03C1\u03CE\u03C0\u03B9\u03BD\u03BF\u03C5 \u03B3\u03BF\u03BD\u03B9\u03B4\u03AF\u03BF\u03C5"@el . + "HumanGeneLocation"@en . + "\u30D2\u30C8\u907A\u4F1D\u5B50\u5EA7"@ja . + "Humangen Lokation"@de . + . + . + . + "speedway Team"@en . + "speedwayteam"@nl . + "Speedwayteam"@de . + "klub \u017Cu\u017Clowy"@pl . + . + . + . + "patriarcha chrze\u015Bcija\u0144ski"@pl . + "christelijk patriarch"@nl . + "\u03C7\u03C1\u03B9\u03C3\u03C4\u03B9\u03B1\u03BD\u03CC\u03C2 \u03C0\u03B1\u03C4\u03C1\u03B9\u03AC\u03C1\u03C7\u03B7\u03C2"@el . + "patriarca cristiano"@it . + "Christian Patriarch"@en . + "\uAE30\uB3C5\uAD50 \uCD1D\uB300\uC8FC\uAD50"@ko . + "christlicher Patriarch"@de . + . + . + . + "Government Type"@en . + "r\u00E9gime politique"@fr . + "\u0395\u03AF\u03B4\u03B7 \u0394\u03B9\u03B1\u03BA\u03C5\u03B2\u03AD\u03C1\u03BD\u03B7\u03C3\u03B7\u03C2"@el . + "Regierungsform"@de . + "a form of government"@en . + "regeringsvorm"@nl . + . + . + . + . + "miasteczko"@pl . + "stad"@nl . + "\u03C0\u03CC\u03BB\u03B7"@el . + "ville"@fr . + "town"@en . + "baile"@ga . + "\u753A"@ja . + "Stadt"@de . + "a settlement ranging from a few hundred to several thousand (occasionally hundreds of thousands). The precise meaning varies between countries and is not always a matter of legal definition. Usually, a town is thought of as larger than a village but smaller than a city, though there are exceptions to this rule."@en . + . + . + . + . + "roman emperor"@en . + "r\u00F6mischer Kaiser"@de . + "\u03C1\u03C9\u03BC\u03B1\u03AF\u03BF\u03C2 \u03B1\u03C5\u03C4\u03BF\u03BA\u03C1\u03AC\u03C4\u03BF\u03C1\u03B1\u03C2"@el . + "Romeinse keizer"@nl . + . + . + . + . + "cultusgebouw"@nl . + "\u03B8\u03C1\u03B7\u03C3\u03BA\u03B5\u03C5\u03C4\u03B9\u03BA\u03CC \u03BA\u03C4\u03AF\u03C1\u03B9\u03BF"@el . + "\u00E9difice religieux"@fr . + "edificio religioso"@it . + "edificio religioso"@es . + "religious building"@en . + "\uC885\uAD50 \uAC74\uBB3C"@ko . + "\u5B97\u6559\u5EFA\u7BC9"@ja . + "religi\u00F6ses Geb\u00E4ude"@de . + . + . + . + . + "motorcycle rider"@en . + "Motorradfahrer"@de . + "\u03BC\u03BF\u03C4\u03BF\u03C3\u03C5\u03BA\u03BB\u03B5\u03C4\u03B9\u03C3\u03C4\u03AE\u03C2"@el . + "motorrijder"@nl . + . + . + . + "kerkelijk bestuurlijk gebied"@nl . + "r\u00E9gion administrative dans une \u00E9glise"@fr . + "clerical administrative region"@en . + "\uC0AC\uBB34 \uAD00\uB9AC \uC9C0\uC5ED"@ko . + "klerikale Verwaltungsregion"@de . + "An administrative body governing some territorial unity, in this case a clerical administrative body"@en . + . + . + . + "busmaatschappij"@nl . + "\u03B5\u03C4\u03B1\u03B9\u03C1\u03AF\u03B1 \u03BB\u03B5\u03C9\u03C6\u03BF\u03C1\u03B5\u03AF\u03C9\u03BD"@el . + "compa\u00F1\u00EDa de autobuses"@es . + "bus Company"@en . + "Busunternehmen"@de . + . + . + . + "Elektriciteitscentrale"@nl . + "\u03C3\u03C4\u03B1\u03B8\u03BC\u03CC\u03C2 \u03C0\u03B1\u03C1\u03B1\u03B3\u03C9\u03B3\u03AE\u03C2 \u03B5\u03BD\u03AD\u03C1\u03B3\u03B5\u03B9\u03B1\u03C2"@el . + "centrale \u00E9lectrique"@fr . + "central el\u00E9ctrica"@es . + "power station"@en . + "\u767A\u96FB\u6240"@ja . + "Kraftwerk"@de . + . + . + . + . + "ingenieur"@nl . + "\u03BC\u03B7\u03C7\u03B1\u03BD\u03B9\u03BA\u03CC\u03C2"@el . + "ing\u00E9nieur"@fr . + "ingeniere"@it . + "ingeniero"@es . + "engineer"@en . + "\uACF5\uD559\uC790"@ko . + "\u6280\u8853\u8005"@ja . + "Ingenieur"@de . + . + . + . + . + "geboorte"@nl . + "\u03B3\u03AD\u03BD\u03BD\u03B7\u03C3\u03B7"@el . + "naissance"@fr . + "birth"@en . + "Geburt"@de . + "someone's birth as a type of personal event"@en . + . + . + . + "nazwa"@pl . + "naam"@nl . + "\u03CC\u03BD\u03BF\u03BC\u03B1"@el . + "nom"@fr . + "nome"@pt . + "name"@en . + "ainm"@ga . + "\u540D\u524D"@ja . + "Name"@de . + . + . + . + . + "sumo wrestler"@en . + "Sumo-Ringer"@de . + "sumoworstelaar"@nl . + . + . + . + "Turmspringer"@de . + "high diver"@en . + . + . + . + "formule 1-coureur"@nl . + "\u03C0\u03B9\u03BB\u03CC\u03C4\u03BF\u03C2 \u03C4\u03B7\u03C2 \u03C6\u03CC\u03C1\u03BC\u03BF\u03C5\u03BB\u03B1\u03C2 \u03AD\u03BD\u03B1"@el . + "pilote de formule 1"@fr . + "Formula One racer"@en . + "Formel-1 Rennfahrer"@de . + . + . + . + "conifeer"@nl . + "\u03BA\u03C9\u03BD\u03BF\u03C6\u03CC\u03C1\u03BF"@el . + "conifere"@fr . + "con\u00EDfera"@es . + "conifer"@en . + "\uCE68\uC5FD\uC218"@ko . + "\u7403\u679C\u690D\u7269\u9580"@ja . + "Konifere"@de . + "Le conifere sono piante vascolari, con semi contenuti in un cono. Sono piante legnose, perlopi\u00F9 sono alberi e solo poche sono arbusti."@it . + "Las con\u00EDferas son plantas vasculares, con las semillas contenidas en un cono. Son plantas le\u00F1osas."@es . + . + . + . + "speedway league"@en . + "Speedway Liga"@de . + "\u03C0\u03C1\u03C9\u03C4\u03AC\u03B8\u03BB\u03B7\u03BC\u03B1 \u03B1\u03C5\u03C4\u03BF\u03BA\u03B9\u03BD\u03B7\u03C4\u03BF\u03B4\u03C1\u03CC\u03BC\u03BF\u03C5"@el . + "ligue de speedway"@fr . + "A group of sports teams that compete against each other in motorcycle speedway racing."@en . + . + . + . + "instrumentalist"@nl . + "\u03BC\u03BF\u03C5\u03C3\u03B9\u03BA\u03CC\u03C2"@el . + "instrumentaliste"@fr . + "instrumentalist"@en . + "Musiker"@de . + "\u039F \u03BC\u03BF\u03C5\u03C3\u03B9\u03BA\u03CC\u03C2 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03AD\u03BD\u03B1 \u03AC\u03C4\u03BF\u03BC\u03BF \u03C4\u03BF \u03BF\u03C0\u03BF\u03AF\u03BF \u03B3\u03C1\u03AC\u03C6\u03B5\u03B9, \u03B5\u03C1\u03BC\u03B7\u03BD\u03B5\u03CD\u03B5\u03B9, \u03AE \u03BA\u03AC\u03BD\u03B5\u03B9 \u03BC\u03BF\u03C5\u03C3\u03B9\u03BA\u03AE."@el . + "Een instrumentalist is een musicus die een muziekinstrument bespeelt. (https://nl.wikipedia.org/wiki/Instrumentalist)"@nl . + . + . + . + "boer"@nl . + "\u03B1\u03B3\u03C1\u03CC\u03C4\u03B7\u03C2"@el . + "fermier"@fr . + "farmer"@en . + "Bauer"@de . + . + . + . + . + "Historical settlement"@en . + "ancien ville ou village"@fr . + "historischer Siedlung"@de . + "A place which used to be a city or town or village."@en . + . + . + . + "videogames league"@en . + "\u03C0\u03C1\u03C9\u03C4\u03AC\u03B8\u03BB\u03B7\u03BC\u03B1 \u03B2\u03B9\u03BD\u03C4\u03B5\u03BF\u03C0\u03B1\u03B9\u03C7\u03BD\u03B9\u03B4\u03B9\u03CE\u03BD"@el . + "Videospiele-Liga"@de . + "ligue de jeux vid\u00E9o"@fr . + "A group of sports teams or person that compete against each other in videogames."@en . + "\u0388\u03BD\u03B1 \u03C3\u03CD\u03BD\u03BF\u03BB\u03BF \u03BF\u03BC\u03AC\u03B4\u03C9\u03BD \u03AE \u03B1\u03C4\u03CC\u03BC\u03C9\u03BD \u03C0\u03BF\u03C5 \u03B1\u03BD\u03C4\u03B1\u03B3\u03C9\u03BD\u03AF\u03B6\u03BF\u03BD\u03C4\u03B1\u03B9 \u03C3\u03B5 \u03B7\u03BB\u03B5\u03BA\u03C4\u03C1\u03BF\u03BD\u03B9\u03BA\u03AC \u03C0\u03B1\u03B9\u03C7\u03BD\u03AF\u03B4\u03B9\u03B1."@el . + . + . + . + "cricket ground"@en . + "Cricketfeld"@de . + "cricketveld"@nl . + "campo da cricket"@it . + . + . + . + "DTM racer"@en . + "DTM Rennfahrer"@de . + . + . + . + "Historical district"@en . + "ancien d\u00E9partement"@fr . + "historischer Kreis / Bezirk"@de . + "a place which used to be a district."@en . + . + . + . + "bedrijf"@nl . + "\u03B5\u03C4\u03B1\u03B9\u03C1\u03AF\u03B1"@el . + "entreprise"@fr . + "empresa"@pt . + "empresa"@es . + "compa\u00F1\u00EDa"@en . + "\uD68C\uC0AC"@ko . + "\u4F1A\u793E"@ja . + "Unternehmen"@de . + . + . + . + "locomotief"@nl . + "\u03BA\u03B9\u03BD\u03B7\u03C4\u03AE\u03C1\u03B9\u03BF\u03C2"@el . + "locomotive"@fr . + "locomotive"@en . + "Lokomotive"@de . + . + . + . + . + . + "motocycle racer"@en . + "\u03BF\u03B4\u03B7\u03B3\u03CC\u03C2 \u03B1\u03B3\u03CE\u03BD\u03C9\u03BD \u03BC\u03BF\u03C4\u03BF\u03C3\u03C5\u03BA\u03BB\u03AD\u03C4\u03B1\u03C2"@el . + "Motorrad-Rennfahrer"@de . + . + . + . + "worstelaar"@nl . + "\u03C0\u03B1\u03BB\u03B1\u03B9\u03C3\u03C4\u03AE\u03C2"@el . + "lutteur"@fr . + "wrestler"@en . + "\u30EC\u30B9\u30E9\u30FC"@ja . + "Ringer"@de . + . + . + . + . + "golf tournament"@en . + "Golfturnier"@de . + "torneo di golf"@it . + "golf toernooi"@nl . + . + . + . + . + "motorcycle racing league"@en . + "Motorradrennen Liga"@de . + "ligue de courses motocycliste"@fr . + "motorrace competitie"@nl . + "a group of sports teams or bikerider that compete against each other in Motorcycle Racing"@en . + . + . + . + "verkoop"@nl . + "\u03B5\u03BA\u03C0\u03C4\u03CE\u03C3\u03B5\u03B9\u03C2"@el . + "vente"@fr . + "sales"@en . + "\u8CA9\u58F2"@ja . + "Vertrieb"@de . + . + . + . + . + . + "aktor pornograficzny"@pl . + "pornografisch acteur"@nl . + "\u03B5\u03BD\u03AE\u03BB\u03B9\u03BA\u03B1\u03C2 (\u03C0\u03BF\u03C1\u03BD\u03BF\u03B3\u03C1\u03B1\u03C6\u03B9\u03BA\u03CC\u03C2) \u03B7\u03B8\u03BF\u03C0\u03BF\u03B9\u03CC\u03C2"@el . + "acteur porno/acteur adulte"@fr . + "ator adulto"@pt . + "attore porno"@it . + "actor porno"@es . + "adult (pornographic) actor"@en . + "\uC131\uC778 \uBC30\uC6B0"@ko . + "\u8272\u60C5\u6F14\u54E1"@zh . + "\u30DD\u30EB\u30CE\u5973\u512A"@ja . + "pornographischer Schauspieler"@de . + "A pornographic actor or actress or a porn star is a person who performs sex acts in film, normally characterised as a pornographic film."@en . + . + . + . + . + "gridiron football player"@en . + "Gridiron Footballspieler"@de . + "joueur de football am\u00E9ricain gridiron"@fr . + . + . + . + . + "engine"@en . + "Motor"@de . + "motor"@nl . + . + . + . + "Christelijke leer"@nl . + "\u03A7\u03C1\u03B9\u03C3\u03C4\u03B9\u03B1\u03BD\u03B9\u03BA\u03CC \u0394\u03CC\u03B3\u03BC\u03B1"@el . + "dottrina cristiana"@it . + "Christian Doctrine"@en . + "\uAE30\uB3C5\uAD50 \uAD50\uB9AC"@ko . + "Christliche Lehre"@de . + "Tenets of the Christian faith, e.g. Trinity, Nicene Creed"@en . + . + . + . + "area"@en . + "gebied"@nl . + "Bereich"@de . + "\u03B5\u03BC\u03B2\u03B1\u03B4\u03CC\u03BD"@el . + "Area of something. Use \"value\" for the value, \"min\" & \"max\" for a range (if uncertain) and \"rank\" (integer) for the rank of that thing amongst its siblings (eg regions ordered by area)"@en . + "\u0395\u03BC\u03B2\u03B1\u03B4\u03CC\u03BD \u03AE \u03AD\u03BA\u03C4\u03B1\u03C3\u03B7 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03C4\u03BF \u03BC\u03AD\u03B3\u03B5\u03B8\u03BF\u03C2 \u03BC\u03AD\u03C4\u03C1\u03B7\u03C3\u03B7\u03C2 \u03C4\u03C9\u03BD \u03B5\u03C0\u03B9\u03C6\u03B1\u03BD\u03B5\u03B9\u03CE\u03BD."@el . + . + . + . + "National anthem"@en . + "Nationalhymne"@de . + "Hymne national"@fr . + "volkslied"@nl . + "Patriotic musical composition which is the offcial national song."@en . + . + . + . + . + "voetbal competitie"@nl . + "\u039F\u03BC\u03BF\u03C3\u03C0\u03BF\u03BD\u03B4\u03AF\u03B1 \u03A0\u03BF\u03B4\u03BF\u03C3\u03C6\u03B1\u03AF\u03C1\u03BF\u03C5"@el . + "ligue de football"@fr . + "soccer league"@en . + "Fu\u00DFball Liga"@de . + "A group of sports teams that compete against each other in soccer."@en . + . + . + . + "Biathlete"@en . + "Biathlete"@de . + . + . + . + "rebellion"@en . + "Aufstand"@de . + "r\u00E9volte"@fr . + "opstand"@nl . + . + . + . + "teamlid"@nl . + "\u039C\u03AD\u03BB\u03BF\u03C2 \u03BF\u03BC\u03AC\u03B4\u03B1\u03C2"@el . + "co\u00E9quipier"@fr . + "Team member"@en . + "Teammitglied"@de . + "A member of an athletic team."@en . + "\u0388\u03BD\u03B1 \u03BC\u03AD\u03BB\u03BF\u03C2 \u03BC\u03B9\u03B1\u03C2 \u03B1\u03B8\u03BB\u03B7\u03C4\u03B9\u03BA\u03AE\u03C2 \u03BF\u03BC\u03AC\u03B4\u03B1\u03C2."@el . + . + . + . + "locus"@nl . + "\u03B8\u03AD\u03C3\u03B7 \u03B3\u03BF\u03BD\u03B9\u03B4\u03AF\u03C9\u03BD"@el . + "GeneLocation"@en . + "\u907A\u4F1D\u5B50\u5EA7"@ja . + "Gen Lokation"@de . + . + . + . + "road junction"@en . + "Stra\u00DFenkreuzung"@de . + "wegkruising"@nl . + "A road junction is a location where vehicular traffic going in different directions can proceed in a controlled manner designed to minimize accidents. In some cases, vehicles can change between different routes or directions of travel (http://en.wikipedia.org/wiki/Junction_%28road%29)."@en . + "Eine Stra\u00DFenkreuzung ist eine Stelle, an der sich zwei oder mehrere Stra\u00DFen kreuzen (http://de.wikipedia.org/wiki/Stra%C3%9Fenkreuzung)."@de . + . + . + . + "\u039C\u03CD\u03BB\u03BF\u03C2"@el . + "Treadmill"@en . + "Tretm\u00FChle"@de . + "Rosmolen"@nl . + "A mill driven by the tractive power of horses, donkeys or even people"@en . + . + . + . + . + "hersenen"@nl . + "\u03B5\u03B3\u03BA\u03AD\u03C6\u03B1\u03BB\u03BF\u03C2"@el . + "cerveau"@fr . + "cervello"@it . + "cerebro"@es . + "brain"@en . + "\uB1CC"@ko . + "\u8133"@ja . + "Gehirn"@de . + "\u03A4\u03BF \u03B2\u03B1\u03C3\u03B9\u03BA\u03CC \u03CC\u03C1\u03B3\u03B1\u03BD\u03BF \u03C4\u03BF\u03C5 \u03BD\u03B5\u03C5\u03C1\u03B9\u03BA\u03BF\u03CD \u03C3\u03C5\u03C3\u03C4\u03AE\u03BC\u03B1\u03C4\u03BF\u03C2 \u03C4\u03C9\u03BD \u03B6\u03CE\u03C9\u03BD, \u03C4\u03BF \u03BF\u03C0\u03BF\u03AF\u03BF \u03BA\u03B1\u03B8\u03BF\u03C1\u03AF\u03B6\u03B5\u03B9 \u03B1\u03C3\u03C5\u03BD\u03B5\u03AF\u03B4\u03B7\u03C4\u03B5\u03C2 \u03BA\u03B1\u03B9 \u03C3\u03C5\u03BD\u03B5\u03B9\u03B4\u03B7\u03C4\u03AD\u03C2 \u03BB\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03AF\u03B5\u03C2. \u039F \u03CC\u03C1\u03BF\u03C2 \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03B5\u03AF\u03C4\u03B1\u03B9 \u03C0\u03BB\u03AD\u03BF\u03BD \u03BA\u03B1\u03B9 \u03B3\u03B9\u03B1 \u03C4\u03BF\u03BD \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03BC\u03CC \u03C4\u03C9\u03BD \u03BA\u03B1\u03B8\u03BF\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03CC\u03C4\u03B5\u03C1\u03C9\u03BD \u03C3\u03C4\u03BF\u03B9\u03C7\u03B5\u03AF\u03C9\u03BD \u03BC\u03AF\u03B1\u03C2 \u03BC\u03B7\u03C7\u03B1\u03BD\u03AE\u03C2 \u03AE \u03B5\u03BD\u03CC\u03C2 \u03C3\u03C5\u03BD\u03CC\u03BB\u03BF\u03C5 \u03C0\u03C1\u03B1\u03B3\u03BC\u03AC\u03C4\u03C9\u03BD."@el . + . + . + . + "protohistorical period"@en . + "proto-historisch Zeitalter"@de . + "periode in de protohistorie"@nl . + . + . + . + . + "WTA-toernooi"@nl . + "Tournoi de la Women's Tennis Association"@fr . + "Torneo di Women's Tennis Association"@it . + "Women's Tennis Association tournament"@en . + "WTA Turnier"@de . + . + . + . + "ondernemer"@nl . + "\u03B5\u03C0\u03B9\u03C7\u03B5\u03B9\u03C1\u03B7\u03BC\u03B1\u03C4\u03AF\u03B1\u03C2"@el . + "imprenditore"@it . + "businessperson"@en . + "Unternehmer"@de . + "\u039C\u03B5 \u03C4\u03BF\u03BD \u03CC\u03C1\u03BF \u03B5\u03C0\u03B9\u03C7\u03B5\u03B9\u03C1\u03B7\u03BC\u03B1\u03C4\u03AF\u03B1\u03C2 \u03BD\u03BF\u03B5\u03AF\u03C4\u03B1\u03B9 \u03BA\u03C5\u03C1\u03AF\u03C9\u03C2 \u03BA\u03AC\u03C0\u03BF\u03B9\u03BF\u03C2 \u03C0\u03BF\u03C5 \u03BA\u03B1\u03C4\u03AD\u03C7\u03B5\u03B9 \u03BC\u03AF\u03B1 \u03B1\u03BD\u03CE\u03C4\u03B5\u03C1\u03B7 \u03B8\u03AD\u03C3\u03B7, \u03CC\u03C0\u03C9\u03C2 \u03AD\u03BD\u03B1 \u03C3\u03C4\u03AD\u03BB\u03B5\u03C7\u03BF\u03C2."@el . + . + . + . + "lipid"@en . + "lipide"@nl . + "lipid"@de . + "Zijn vetten en vetachtige stoffen die in de biochemie een belangrijke rol spelen"@nl . + . + . + . + "volleybalcoach"@nl . + "\u03C0\u03C1\u03BF\u03C0\u03BF\u03BD\u03B7\u03C4\u03AE\u03C2 \u03B2\u03CC\u03BB\u03BB\u03B5\u03CB"@el . + "allenatore di pallavolo"@it . + "volleyball coach"@en . + "Volleyballtrainer"@de . + . + . + . + "Theological concept"@en . + "Theologisch Konzept"@de . + "theologisch concept"@nl . + "Theological concepts, e.g. The apocalypse, Trinty, Stoicism"@en . + . + . + . + "nederzetting"@nl . + "\u03BF\u03B9\u03BA\u03B9\u03C3\u03BC\u03CC\u03C2"@el . + "zone peupl\u00E9e"@fr . + "settlement"@en . + "Siedlung"@de . + . + . + . + . + "hoofdstad"@nl . + "\u039A\u03B5\u03C6\u03AC\u03BB\u03B1\u03B9\u03BF"@el . + "Capitale"@fr . + "Capitale"@it . + "Capital"@en . + "Hauptstadt"@de . + "A municipality enjoying primary status in a state, country, province, or other region as its seat of government."@en . + . + . + . + "Producer"@en . + "Produzent"@de . + "Producteur"@fr . + "producent"@nl . + "a person who manages movies or music recordings."@en . + . + . + . + . + "software"@nl . + "\u03BB\u03BF\u03B3\u03B9\u03C3\u03BC\u03B9\u03BA\u03CC"@el . + "logiciel"@fr . + "software"@en . + "\uC18C\uD504\uD2B8\uC6E8\uC5B4"@ko . + "programska oprema"@sl . + "\u30BD\u30D5\u30C8\u30A6\u30A7\u30A2"@ja . + "Software"@de . + . + . + . + . + "opera"@nl . + "\u03CC\u03C0\u03B5\u03C1\u03B1"@el . + "op\u00E9ra"@fr . + "opera"@it . + "\u03CCpera"@es . + "opera"@en . + "\u30AA\u30DA\u30E9"@ja . + "oper"@de . + . + . + . + . + "lacrosse player"@en . + "lacrosse-speler"@nl . + "Lacrossespieler"@de . + "\u03C0\u03B1\u03AF\u03BA\u03C4\u03B7\u03C2 \u03C7\u03CC\u03BA\u03B5\u03CB \u03C3\u03B5 \u03C7\u03CC\u03C1\u03C4\u03BF"@el . + . + . + . + "\u0395\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03B7 \u03BF\u03BD\u03BF\u03BC\u03B1\u03C3\u03AF\u03B1 \u03C0\u03C1\u03BF\u03AD\u03BB\u03B5\u03C5\u03C3\u03B7\u03C2 \u03BA\u03C1\u03B1\u03C3\u03B9\u03BF\u03CD"@el . + "vin A.O.C."@fr . + "vino D.O.C."@it . + "Controlled designation of origin wine"@en . + "kontrollierte Ursprungsbezeichnung f\u00FCr Qualit\u00E4tsweine"@de . + "A quality assurance label for wines"@en . + "\u039C\u03B9\u03B1 \u03B5\u03C4\u03B9\u03BA\u03AD\u03C4\u03B1 \u03B4\u03B9\u03B1\u03C3\u03C6\u03AC\u03BB\u03B9\u03C3\u03B7\u03C2 \u03C4\u03B7\u03C2 \u03C0\u03BF\u03B9\u03CC\u03C4\u03B7\u03C4\u03B1\u03C2 \u03C4\u03C9\u03BD \u03BF\u03AF\u03BD\u03C9\u03BD"@el . + . + . + . + "prezydent"@pl . + "president"@nl . + "\u03C0\u03C1\u03CC\u03B5\u03B4\u03C1\u03BF\u03C2"@el . + "pr\u00E9sident"@fr . + "president"@en . + "\uAD6D\uAC00\uC6D0\uC218"@ko . + "\u5927\u7D71\u9818"@ja . + "Pr\u00E4sident"@de . + . + . + . + . + "racing driver"@en . + "Rennfahrer"@de . + "\u03BF\u03B4\u03B7\u03B3\u03CC\u03C2 \u03B1\u03B3\u03CE\u03BD\u03C9\u03BD"@el . + . + . + . + . + "bouwsel"@nl . + "\u03B1\u03C1\u03C7\u03B9\u03C4\u03B5\u03BA\u03C4\u03BF\u03BD\u03B9\u03BA\u03AE \u03BA\u03B1\u03C4\u03B1\u03C3\u03BA\u03B5\u03C5\u03AE"@el . + "structure architecturale"@fr . + "struttura architettonica"@it . + "estructura arquitectural"@es . + "architectural structure"@en . + "\uAC74\uCD95 \uAD6C\uC870"@ko . + "\u69CB\u9020\u7269"@ja . + "Bauwerk"@de . + "An architectural structure is a human-made, free-standing, immobile outdoor construction (http://en.wikipedia.org/wiki/Architectural_structure)."@en . + "\u039C\u03B9\u03B1 \u03B1\u03C1\u03C7\u03B9\u03C4\u03B5\u03BA\u03C4\u03BF\u03BD\u03B9\u03BA\u03AE \u03BA\u03B1\u03C4\u03B1\u03C3\u03BA\u03B5\u03C5\u03AE \u03B5\u03AF\u03BD\u03B1\u03B9 \u03BC\u03B9\u03B1 \u03B1\u03BD\u03B8\u03C1\u03CE\u03C0\u03B9\u03BD\u03B7 \u03BA\u03B1\u03C4\u03B1\u03C3\u03BA\u03B5\u03C5\u03AE, \u03B5\u03C0\u03B9\u03B4\u03B1\u03C0\u03AD\u03B4\u03B9\u03B1, \u03B1\u03BA\u03AF\u03BD\u03B7\u03C4\u03B7 \u03BA\u03B1\u03C4\u03B1\u03C3\u03BA\u03B5\u03C5\u03AE (http://en.wikipedia.org/wiki/Architectural_structure)."@el . + "Ein Bauwerk ist eine von Menschen errichtete Konstruktion mit ruhendem Kontakt zum Untergrund. Es ist in der Regel f\u00FCr eine langfristige Nutzungsdauer konzipiert (http://de.wikipedia.org/wiki/Bauwerk)."@de . + . + . + . + "tennisser"@nl . + "\u03C0\u03B1\u03AF\u03C7\u03C4\u03B7\u03C2 \u03C4\u03AD\u03BD\u03B9\u03C2"@el . + "joueur de tennis"@fr . + "jogador de tennis"@pt . + "tenista"@es . + "tennis player"@en . + "Tennisspieler"@de . + . + . + . + . + "coal pit"@en . + "steenkolenmijn"@nl . + "Kohlengrube"@de . + "A coal pit is a place where charcoal is or was extracted"@en . + "Een mijn is een plaats waar steenkool wordt of werd gewonnen"@nl . + . + . + . + "Political concept"@en . + "politische Konzept"@de . + "Political concepts, e.g. Capitalism, Democracy"@en . + . + . + . + "digitale camera"@nl . + "\u03C8\u03B7\u03C6\u03B9\u03B1\u03BA\u03AE \u03C6\u03C9\u03C4\u03BF\u03B3\u03C1\u03B1\u03C6\u03B9\u03BA\u03AE \u03BC\u03B7\u03C7\u03B1\u03BD\u03AE"@el . + "appareil photo num\u00E9rique"@fr . + "digital camera"@en . + "\uB514\uC9C0\uD138 \uCE74\uBA54\uB77C"@ko . + "Digitalkamera"@de . + "\u0397 \u03C8\u03B7\u03C6\u03B9\u03B1\u03BA\u03AE \u03C6\u03C9\u03C4\u03BF\u03B3\u03C1\u03B1\u03C6\u03B9\u03BA\u03AE \u03BC\u03B7\u03C7\u03B1\u03BD\u03AE \u03B5\u03AF\u03BD\u03B1\u03B9 \u03C3\u03C5\u03C3\u03BA\u03B5\u03C5\u03AE \u03B7 \u03BF\u03C0\u03BF\u03AF\u03B1 \u03BA\u03B1\u03C4\u03B1\u03B3\u03C1\u03AC\u03C6\u03B5\u03B9 \u03B5\u03B9\u03BA\u03CC\u03BD\u03B5\u03C2 \u03BC\u03B5 \u03B7\u03BB\u03B5\u03BA\u03C4\u03C1\u03BF\u03BD\u03B9\u03BA\u03CC \u03C4\u03C1\u03CC\u03C0\u03BF, \u03C3\u03B5 \u03B1\u03BD\u03C4\u03AF\u03B8\u03B5\u03C3\u03B7 \u03BC\u03B5 \u03C4\u03B7\u03BD \u03C3\u03C5\u03BC\u03B2\u03B1\u03C4\u03B9\u03BA\u03AE \u03C6\u03C9\u03C4\u03BF\u03B3\u03C1\u03B1\u03C6\u03B9\u03BA\u03AE \u03BC\u03B7\u03C7\u03B1\u03BD\u03AE, \u03B7 \u03BF\u03C0\u03BF\u03AF\u03B1 \u03BA\u03B1\u03C4\u03B1\u03B3\u03C1\u03AC\u03C6\u03B5\u03B9 \u03B5\u03B9\u03BA\u03CC\u03BD\u03B5\u03C2 \u03BC\u03B5 \u03C7\u03B7\u03BC\u03B9\u03BA\u03AD\u03C2 \u03BA\u03B1\u03B9 \u03BC\u03B7\u03C7\u03B1\u03BD\u03B9\u03BA\u03AD\u03C2 \u03B4\u03B9\u03B1\u03B4\u03B9\u03BA\u03B1\u03C3\u03AF\u03B5\u03C2."@el . + . + . + . + "gebeurtenis"@nl . + "\u03B3\u03B5\u03B3\u03BF\u03BD\u03CC\u03C2"@el . + "\u00E9v\u00E8nement"@fr . + "evento"@pt . + "event"@en . + "\uC0AC\uAC74"@ko . + "\u30A4\u30D9\u30F3\u30C8"@ja . + "Ereignis"@de . + . + . + . + . + . + . + "band"@nl . + "\u03BC\u03BF\u03C5\u03C3\u03B9\u03BA\u03CC \u03C3\u03C5\u03B3\u03BA\u03C1\u03CC\u03C4\u03B7\u03BC\u03B1"@el . + "groupe de musique"@fr . + "banda"@pt . + "gruppo musicale"@it . + "banda"@es . + "Band"@en . + "\uC74C\uC545 \uADF8\uB8F9"@ko . + "\u30D0\u30F3\u30C9_(\u97F3\u697D)"@ja . + "Musikgruppe"@de . + . + . + . + . + . + . + "regentschap (regering)"@nl . + "\u03B1\u03BD\u03C4\u03B9\u03B2\u03B1\u03C3\u03B9\u03BB\u03B5\u03AF\u03B1"@el . + "regency"@en . + "kabupaten"@id . + "Regentschaft"@de . + "bagian wilayah administratif dibawah provinsi"@id . + . + . + . + "land"@nl . + "\u03C7\u03CE\u03C1\u03B1"@el . + "pays"@fr . + "pa\u00EDs"@es . + "\u0413\u043E\u0441\u0443\u0434\u0430\u0440\u0441\u0442\u0432\u043E"@ru . + "country"@en . + "\uB098\uB77C"@ko . + "dr\u017Eava"@sl . + "\u56FD"@ja . + "Staat"@de . + . + . + . + . + . + "stierenvechter"@nl . + "\u03C4\u03B1\u03C5\u03C1\u03BF\u03BC\u03AC\u03C7\u03BF\u03C2"@el . + "torero"@fr . + "torero"@it . + "torero"@es . + "bullfighter"@en . + "\uD22C\uC6B0\uC0AC"@ko . + "\u95D8\u725B\u58EB"@ja . + "Stierk\u00E4mpfer"@de . + . + . + . + "fencer"@en . + "\u03BE\u03B9\u03C6\u03BF\u03BC\u03AC\u03C7\u03BF\u03C2"@el . + "Fechter"@de . + "schermer"@nl . + . + . + . + . + "horse race"@en . + "Pferderennen"@de . + "\u03B1\u03B3\u03CE\u03BD\u03B1\u03C2 \u03B9\u03C0\u03C0\u03B1\u03C3\u03AF\u03B1\u03C2"@el . + "paardenrace"@nl . + . + . + . + "vis"@nl . + "\u03C8\u03AC\u03C1\u03B9"@el . + "poisson"@fr . + "peixe"@pt . + "pescado"@es . + "fish"@en . + "\u9B5A\u985E"@ja . + "Fisch"@de . + . + . + . + . + "tijdschrift"@nl . + "\u03A0\u03B5\u03C1\u03B9\u03BF\u03B4\u03B9\u03BA\u03CC"@el . + "magazine"@fr . + "magazine"@en . + "\uC7A1\uC9C0"@ko . + "\u96D1\u8A8C"@ja . + "Publikumszeitschrift"@de . + "Magazines, periodicals, glossies or serials are publications, generally published on a regular schedule, containing a variety of articles. They are generally financed by advertising, by a purchase price, by pre-paid magazine subscriptions, or all three."@en . + "\u03A0\u03B5\u03C1\u03B9\u03BF\u03B4\u03B9\u03BA\u03AC \u03AE \u03B3\u03C5\u03B1\u03BB\u03B9\u03C3\u03C4\u03B5\u03C1\u03AD\u03C2 \u03C6\u03C9\u03C4\u03BF\u03B3\u03C1\u03B1\u03C6\u03AF\u03B5\u03C2 \u03C0\u03B5\u03C1\u03B9\u03BF\u03B4\u03B9\u03BA\u03CE\u03BD \u03B5\u03BA\u03B4\u03CC\u03C3\u03B5\u03C9\u03BD \u03B4\u03B7\u03BC\u03BF\u03C3\u03B9\u03B5\u03CD\u03BF\u03BD\u03C4\u03B1\u03B9 \u03C3\u03B5 \u03C4\u03B1\u03BA\u03C4\u03AC \u03C7\u03C1\u03BF\u03BD\u03B9\u03BA\u03AC \u03B4\u03B9\u03B1\u03C3\u03C4\u03AE\u03BC\u03B1\u03C4\u03B1, \u03C0\u03B5\u03C1\u03B9\u03AD\u03C7\u03B5\u03B9 \u03BC\u03B9\u03B1 \u03C0\u03BF\u03B9\u03BA\u03B9\u03BB\u03AF\u03B1 \u03B1\u03C0\u03CC \u03B1\u03BD\u03C4\u03B9\u03BA\u03B5\u03AF\u03BC\u03B5\u03BD\u03B1.\u0393\u03B5\u03BD\u03B9\u03BA\u03AC \u03C7\u03C1\u03B7\u03BC\u03B1\u03C4\u03BF\u03B4\u03BF\u03C4\u03B5\u03AF\u03C4\u03B1\u03B9 \u03B1\u03C0\u03CC \u03B4\u03B9\u03B1\u03C6\u03B7\u03BC\u03AF\u03C3\u03B5\u03B9\u03C2, \u03BC\u03B5 \u03C4\u03B9\u03BC\u03AE \u03B1\u03B3\u03BF\u03C1\u03AC\u03C2, \u03BC\u03B5 \u03C0\u03C1\u03BF\u03C0\u03BB\u03B7\u03C1\u03C9\u03BC\u03AD\u03BD\u03B5\u03C2 \u03C3\u03C5\u03BD\u03B4\u03C1\u03BF\u03BC\u03AD\u03C2 \u03C0\u03B5\u03C1\u03B9\u03BF\u03B4\u03B9\u03BA\u03CE\u03BD, \u03AE \u03BA\u03B1\u03B9 \u03C4\u03C9\u03BD \u03C4\u03C1\u03B9\u03CE\u03BD."@el . + "Als Publikumszeitschrift (auch Magazin) bezeichnet man eine Gattung von Zeitschriften, die sich an eine sehr breite Zielgruppe wendet und keine fachlichen Pr\u00E4gungen oder andere spezifische Merkmale voraussetzt. Publikumszeitschriften dienen der Unterhaltung und Information, sie sollen unangestrengt gelesen werden k\u00F6nnen."@de . + . + . + . + . + "galaksi"@tr . + "melkwegstelsel"@nl . + "\u03B3\u03B1\u03BB\u03B1\u03BE\u03AF\u03B1\u03C2"@el . + "galaxie"@fr . + "gal\u00E1xia"@pt . + "galaxy"@en . + "\uC740\uD558"@ko . + "\u9280\u6CB3"@ja . + "Galaxie"@de . + . + . + . + . + "manhwa"@en . + "manhwa"@nl . + "manhwa"@de . + "manhwa"@el . + "Korean term for comics and print cartoons"@en . + "ist die in der westlichen Welt verbreitete Bezeichnung f\u00FCr Comics aus S\u00FCdkorea."@de . + "Manhua is het Koreaanse equivalent van het stripverhaal"@nl . + "\u039A\u03BF\u03C1\u03B5\u03AC\u03C4\u03B9\u03BA\u03BF\u03C2 \u03CC\u03C1\u03BF\u03C2 \u03B3\u03B9\u03B1 \u03C4\u03B1 \u03BA\u03CC\u03BC\u03B9\u03BA\u03C2 \u03BA\u03B1\u03B9 \u03C4\u03B1 \u03BA\u03B9\u03BD\u03BF\u03CD\u03BC\u03B5\u03BD\u03B1 \u03C3\u03C7\u03AD\u03B4\u03B9\u03B1 \u03B5\u03BA\u03C4\u03CD\u03C0\u03C9\u03C3\u03B7\u03C2"@el . + . + . + . + . + "organisatielid"@nl . + "\u039C\u03AD\u03BB\u03BF\u03C2 \u03BF\u03C1\u03B3\u03B1\u03BD\u03B9\u03C3\u03BC\u03BF\u03CD"@el . + "Miembro de organizaci\u00F3n"@es . + "Organisation member"@en . + "Organisationsmitglied"@de . + "A member of an organisation."@en . + "\u039C\u03AD\u03BB\u03BF\u03C2 \u03B5\u03BD\u03CC\u03C2 \u03BF\u03C1\u03B3\u03B1\u03BD\u03B9\u03C3\u03BC\u03BF\u03CD."@el . + . + . + . + "televisie seizoen"@nl . + "\u03C4\u03B7\u03BB\u03B5\u03BF\u03C0\u03C4\u03B9\u03BA\u03AE \u03C3\u03B5\u03B6\u03CC\u03BD"@el . + "television season"@en . + "\uD154\uB808\uBE44\uC804 \uC2DC\uC98C"@ko . + "Fernsehstaffel"@de . + . + . + . + "zaak"@nl . + "\u03C5\u03C0\u03CC\u03B8\u03B5\u03C3\u03B7"@el . + "dossier"@fr . + "case"@en . + "\uCF00\uC774\uC2A4"@ko . + "Sache"@de . + "A case is the total of work done to prepare for an administrative or business decision. As a rule, a case is reflected in a set of documents."@en . + "Een zaak is het geheel aan werk gedaan om tot een bestuurlijke of zakelijke beslissing te komen. Een zaak slaat doorgaans neer in een verzameling documenten."@de . + . + . + . + "taxonomic group"@en . + "taxonomische Gruppe"@de . + "\u03C4\u03B1\u03BE\u03BF\u03BD\u03BF\u03BC\u03B9\u03BA\u03AE \u03BF\u03BC\u03AC\u03B4\u03B1"@el . + "taxon"@nl . + "a category within a classification system for Species"@en . + "categorie binnen een classificatiesysteem voor plant- en diersoorten"@nl . + . + . + . + . + "advocatenkantoor"@nl . + "\u03B5\u03C4\u03B1\u03B9\u03C1\u03B5\u03AF\u03B1 \u03B4\u03B9\u03BA\u03B7\u03B3\u03CC\u03C1\u03C9\u03BD"@el . + "bufete de abogados"@es . + "law firm"@en . + "\u6CD5\u5F8B\u4E8B\u52D9\u6240"@ja . + "Anwaltskanzlei"@de . + "A law firm is a business entity formed by one or more lawyers to engage in the practice of law. The primary service provided by a law firm is to advise clients (individuals or corporations) about their legal rights and responsibilities, and to represent their clients in civil or criminal cases, business transactions, and other matters in which legal advice and other assistance are sought."@en . + "Als Anwaltskanzlei bezeichnet man die B\u00FCror\u00E4ume und das Unternehmen oder den Betrieb eines Rechtsanwalts oder mehrerer Rechtsanw\u00E4lte."@de . + . + . + . + . + "motor race"@en . + "Motorradrennen"@de . + "motorwedstrijd"@nl . + . + . + . + "waterway tunnel"@en . + "Kanaltunnel"@de . + . + . + . + "oceaan"@nl . + "\u03A9\u03BA\u03B5\u03B1\u03BD\u03CC\u03C2"@el . + "Oc\u00E9an"@fr . + "Ocean"@en . + "Ozean"@de . + "A body of saline water that composes much of a planet's hydrosphere."@en . + "\u039C\u03AC\u03B6\u03B1 \u03B1\u03BB\u03BC\u03C5\u03C1\u03BF\u03CD \u03BD\u03B5\u03C1\u03BF\u03CD \u03C0\u03BF\u03C5 \u03B1\u03C0\u03BF\u03C4\u03B5\u03BB\u03B5\u03AF \u03C3\u03B7\u03BC\u03B1\u03BD\u03C4\u03B9\u03BA\u03CC \u03BC\u03AD\u03C1\u03BF\u03C2 \u03C4\u03B7\u03C2 \u03C5\u03B4\u03C1\u03CC\u03C3\u03C6\u03B1\u03B9\u03C1\u03B1\u03C2 \u03B5\u03BD\u03CC\u03C2 \u03C0\u03BB\u03B1\u03BD\u03AE\u03C4\u03B7."@el . + . + . + . + . + "lotnisko"@pl . + "luchthaven"@nl . + "\u03B1\u03B5\u03C1\u03BF\u03B4\u03C1\u03CC\u03BC\u03B9\u03BF"@el . + "a\u00E9roport"@fr . + "aeroporto"@pt . + "aeroporto"@it . + "aeropuerto"@es . + "airport"@en . + "\uACF5\uD56D"@ko . + "\u6A5F\u5834"@zh . + "\u7A7A\u6E2F"@ja . + "Flughafen"@de . + . + . + . + . + . + "bokser"@nl . + "\u03C0\u03C5\u03B3\u03BC\u03AC\u03C7\u03BF\u03C2"@el . + "boxeur"@fr . + "boxeador"@pt . + "pugile"@it . + "boxer"@en . + "\uAD8C\uD22C \uC120\uC218"@ko . + "\u30DC\u30AF\u30B5\u30FC"@ja . + "Boxer"@de . + . + . + . + "varen"@nl . + "\u03C6\u03C4\u03AD\u03C1\u03B7"@el . + "foug\u00E8res"@fr . + "samambaia"@pt . + "felce"@it . + "helecho"@es . + "fern"@en . + "\u30B7\u30C0\u690D\u7269\u9580"@ja . + "farn"@de . + . + . + . + "naruto character"@en . + "Naruto Charakter"@de . + . + . + . + "voetballer"@nl . + "\u03C0\u03B1\u03AF\u03C7\u03C4\u03B7\u03C2 \u03C0\u03BF\u03B4\u03BF\u03C3\u03C6\u03B1\u03AF\u03C1\u03BF\u03C5"@el . + "joueur de football"@fr . + "futbolista"@es . + "soccer player"@en . + "\uCD95\uAD6C \uC120\uC218"@ko . + "Fu\u00DFballspieler"@de . + . + . + . + . + "mode"@nl . + "\u03BC\u03CC\u03B4\u03B1"@el . + "mode"@fr . + "fashion"@en . + "Mode"@de . + "type or code of dressing, according to the standards of the time or individual design."@en . + "Een stijl of code voor kleding, bepaald door de voorkeursstijl van een tijdperk of door individuele ontwerpers."@nl . + . + . + . + "wyspa"@pl . + "eiland"@nl . + "\u03BD\u03B7\u03C3\u03AF"@el . + "\u00EEle"@fr . + "ilha"@pt . + "Isla"@es . + "island"@en . + "\uC12C"@ko . + "\u5CF6"@ja . + "Insel"@de . + . + . + . + . + "Open Swarm"@en . + "Open Swarm"@de . + "\u0391\u03BD\u03BF\u03B9\u03BA\u03C4\u03CC \u03C3\u03BC\u03AE\u03BD\u03BF\u03C2"@el . + . + . + . + "natuurgebied"@nl . + "\u03C6\u03C5\u03C3\u03B9\u03BA\u03AE \u03B8\u03AD\u03C3\u03B7"@el . + "lieu naturel"@fr . + "natural place"@en . + "nat\u00FCrlicher Ort"@de . + "\u0397 \u03C6\u03C5\u03C3\u03B9\u03BA\u03AE \u03B8\u03AD\u03C3\u03B7 \u03B5\u03C1\u03BC\u03B7\u03BD\u03B5\u03CD\u03B5\u03B9 \u03CC\u03BB\u03B1 \u03C4\u03B1 \u03C3\u03B7\u03BC\u03B5\u03AF\u03B1 \u03C0\u03BF\u03C5 \u03B1\u03C0\u03B1\u03BD\u03C4\u03CE\u03BD\u03C4\u03B1\u03B9 \u03C6\u03C5\u03C3\u03B9\u03BA\u03AC \u03C3\u03C4\u03BF \u03C3\u03CD\u03BC\u03C0\u03B1\u03BD"@el . + "The natural place encompasses all places occurring naturally in universe."@en . + "Der nat\u00FCrlicher Ort beinhaltet alle Orte die nat\u00FCrlicherweise im Universum existieren."@de . + . + . + . + "grave stone or grave monument"@en . + "grafsteen of grafmonument"@nl . + "Grabdenkmal"@de . + "A monument erected on a tomb, or a memorial stone."@en . + . + . + . + "soap character"@en . + "Soapoper Charakter"@de . + "\u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03AE\u03C1\u03B1\u03C2 \u03C3\u03B1\u03C0\u03BF\u03C5\u03BD\u03CC\u03C0\u03B5\u03C1\u03B1\u03C2"@el . + "soap karakter"@nl . + . + . + . + "agglomeratie"@nl . + "\u03C3\u03C5\u03C3\u03C3\u03CE\u03C1\u03B5\u03C5\u03C3\u03B7"@el . + "agglom\u00E9ration"@fr . + "agglomeration"@en . + "Ballungsgebiet"@de . + . + . + . + "\u03C0\u03C1\u03BF\u03C0\u03BF\u03BD\u03B7\u03C4\u03AE\u03C2 \u03BA\u03BF\u03BB\u03B5\u03B3\u03AF\u03BF\u03C5"@el . + "entra\u00EEneur universitaire"@fr . + "college coach"@en . + "\uB300\uD559 \uCF54\uCE58"@ko . + "College-Trainer"@de . + . + . + . + "menselijk gen"@nl . + "\u03B1\u03BD\u03B8\u03C1\u03CE\u03C0\u03B9\u03BD\u03BF \u03B3\u03BF\u03BD\u03AF\u03B4\u03B9\u03BF"@el . + "HumanGene"@en . + "\u30D2\u30C8\u907A\u4F1D\u5B50"@ja . + "Humangen"@de . + . + . + . + "spier"@nl . + "\u03BC\u03C5\u03C2"@el . + "muscle"@fr . + "muscle"@en . + "\u7B4B\u8089"@ja . + "Muskel"@de . + . + . + . + . + "information appliance"@en . + "Datenger\u00E4t"@de . + "\u03C3\u03C5\u03C3\u03BA\u03B5\u03C5\u03AE \u03C0\u03BB\u03B7\u03C1\u03BF\u03C6\u03BF\u03C1\u03B9\u03BA\u03AE\u03C2"@el . + "dispositivo electr\u00F3nico"@es . + "An information device such as PDAs or Video game consoles, etc."@en . + . + . + . + . + "psychologist"@en . + "psycholoog"@nl . + "Psychologe"@de . + "\u03C8\u03C5\u03C7\u03BF\u03BB\u03CC\u03B3\u03BF\u03C2"@el . + . + . + . + . + "stroom"@nl . + "\u03C1\u03AD\u03BC\u03B1"@el . + "ruisseau"@fr . + "ruscello"@it . + "stream"@en . + "\u6CB3\u5DDD"@ja . + "Bach"@de . + "a flowing body of water with a current, confined within a bed and stream banks"@en . + . + . + . + . + "Record Office"@en . + "Amtsarchiv"@de . + "Archiefinstelling"@nl . + . + . + . + "sportbestuurder"@nl . + "\u03B1\u03B8\u03BB\u03B7\u03C4\u03B9\u03BA\u03CC\u03C2 \u03BC\u03AC\u03BD\u03B1\u03C4\u03B6\u03B5\u03C1"@el . + "director deportivo"@es . + "sports manager"@en . + "Sportmanager"@de . + "According to the french label sub Soccer, trainership could be meant. However, here a Sportsmanager is interpreted as a member of the board of a sporting club."@en . + "\u03A3\u03CD\u03BC\u03C6\u03C9\u03BD\u03B1 \u03BC\u03B5 \u03C4\u03B7 \u03B3\u03B1\u03BB\u03BB\u03B9\u03BA\u03AE \u03B5\u03C4\u03B9\u03BA\u03AD\u03C4\u03B1 Soccer,\u03BC\u03C0\u03BF\u03C1\u03B5\u03AF \u03BD\u03B1 \u03B5\u03BD\u03BD\u03BF\u03B5\u03AF\u03C4\u03B1\u03B9 \u03BF \u03C0\u03C1\u03BF\u03C0\u03BF\u03BD\u03B7\u03C4\u03AE\u03C2.\u03A0\u03B1\u03C1'\u03CC\u03BB\u03B1 \u03B1\u03C5\u03C4\u03B1,\u03B5\u03B4\u03CE \u03AD\u03BD\u03B1\u03C2 \u03B1\u03B8\u03BB\u03B7\u03C4\u03B9\u03BA\u03CC\u03C2 \u03BC\u03AC\u03BD\u03B1\u03C4\u03B6\u03B5\u03C1 \u03BC\u03B5\u03C4\u03B1\u03C6\u03C1\u03AC\u03B6\u03B5\u03C4\u03B1\u03B9 \u03C9\u03C2 \u03AD\u03BD\u03B1 \u03BC\u03AD\u03BB\u03BF\u03C2 \u03C3\u03C5\u03BC\u03B2\u03BF\u03C5\u03BB\u03AF\u03BF\u03C5 \u03B5\u03BD\u03CC\u03C2 \u03B1\u03B8\u03BB\u03B7\u03C4\u03B9\u03BA\u03BF\u03CD \u03BA\u03BB\u03B1\u03BC\u03C0."@el . + . + . + . + "surfer"@en . + "\u03C3\u03AD\u03C1\u03C6\u03B5\u03C1"@el . + "Surfer"@de . + "surfer"@nl . + . + . + . + . + "ziekenhuis"@nl . + "\u03BD\u03BF\u03C3\u03BF\u03BA\u03BF\u03BC\u03B5\u03AF\u03BF"@el . + "h\u00F4pital"@fr . + "hospital"@pt . + "hospital"@en . + "\uBCD1\uC6D0"@ko . + "\u75C5\u9662"@ja . + "Krankenhaus"@de . + . + . + . + . + . + "hot spring"@en . + "warmwaterbron"@nl . + "hei\u00DFe Quelle"@de . + "\u6E29\u6CC9"@ja . + . + . + . + . + "szef kuchni"@pl . + "kok"@nl . + "\u03B1\u03C1\u03C7\u03B9\u03BC\u03AC\u03B3\u03B5\u03B9\u03C1\u03BF\u03C2"@el . + "chef"@fr . + "chef"@it . + "cocinero"@es . + "chef"@en . + "c\u00F3caire"@ga . + "\uC694\uB9AC\uC0AC"@ko . + "Koch"@de . + "a person who cooks professionally for other people"@en . + "una persona que cocina profesionalmente para otras"@es . + . + . + . + "filosoof"@nl . + "\u03C6\u03B9\u03BB\u03CC\u03C3\u03BF\u03C6\u03BF\u03C2"@el . + "philosophe"@fr . + "philosopher"@en . + "\uCCA0\uD559\uC790"@ko . + "\u54F2\u5B66\u8005"@ja . + "Philosoph"@de . + . + . + . + . + "rechtssysteem"@nl . + "\u03C3\u03CD\u03C3\u03C4\u03B7\u03BC\u03B1 \u03B4\u03B9\u03BA\u03B1\u03AF\u03BF\u03C5"@el . + "r\u00E9gime de droit"@fr . + "ordenamiento jur\u00EDdico"@es . + "System of law"@en . + "Rechtssystem"@de . + "a system of legislation, either national or international"@en . + . + . + . + "biologische databank"@nl . + "\u0392\u03AC\u03C3\u03B7 \u0394\u03B5\u03B4\u03BF\u03BC\u03AD\u03BD\u03C9\u03BD \u0392\u03B9\u03BF\u03BB\u03BF\u03B3\u03B9\u03BA\u03CE\u03BD \u03A7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03CE\u03BD"@el . + "Base de donn\u00E9es biologiques"@fr . + "Banco de dados biol\u00F3gico"@pt . + "database biologico"@it . + "Biological database"@en . + "\uC0DD\uBB3C\uD559 \uB370\uC774\uD130\uBCA0\uC774\uC2A4"@ko . + "\u30D0\u30A4\u30AA\u30C7\u30FC\u30BF\u30D9\u30FC\u30B9"@ja . + "Biologische Datenbank"@de . + "\u0394\u03B9\u03AC\u03C6\u03BF\u03C1\u03B5\u03C2 \u03B2\u03AC\u03C3\u03B5\u03B9\u03C2 \u03B4\u03B5\u03B4\u03BF\u03BC\u03AD\u03BD\u03C9\u03BD \u03BF\u03B9 \u03BF\u03C0\u03BF\u03AF\u03B5\u03C2 \u03C0\u03B5\u03C1\u03B9\u03AD\u03C7\u03BF\u03C5\u03BD \u03C0\u03BB\u03B7\u03C1\u03BF\u03C6\u03BF\u03C1\u03AF\u03B5\u03C2 \u03C0\u03BF\u03C5 \u03C4\u03B1\u03C5\u03C4\u03BF\u03C0\u03BF\u03B9\u03BF\u03CD\u03BD \u03C4\u03B1 \u03B2\u03B1\u03C3\u03B9\u03BA\u03AC \u03B2\u03B9\u03BF\u03BB\u03BF\u03B3\u03B9\u03BA\u03AC \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03AC \u03C4\u03C9\u03BD \u03BF\u03C1\u03B3\u03B1\u03BD\u03B9\u03C3\u03BC\u03CE\u03BD. \u039F\u03B9 \u03C0\u03BB\u03B7\u03C1\u03BF\u03C6\u03BF\u03C1\u03AF\u03B5\u03C2 \u03B1\u03C5\u03C4\u03AD\u03C2 \u03C3\u03C5\u03B3\u03BA\u03C1\u03BF\u03C4\u03BF\u03CD\u03BD\u03C4\u03B1\u03B9 \u03C3\u03B5 \u03C3\u03CD\u03BD\u03BF\u03BB\u03B1 \u03B2\u03B9\u03B2\u03BB\u03B9\u03BF\u03B8\u03B7\u03BA\u03CE\u03BD \u03C4\u03C9\u03BD \u03B2\u03B1\u03C3\u03B9\u03BA\u03CE\u03BD \u03B4\u03BF\u03BC\u03CE\u03BD \u03C4\u03C9\u03BD \u03BA\u03C5\u03C4\u03C4\u03AC\u03C1\u03C9\u03BD \u03C4\u03C9\u03BD \u03BF\u03C1\u03B3\u03B1\u03BD\u03B9\u03C3\u03BC\u03CE\u03BD, \u03CC\u03C0\u03C9\u03C2 \u03BF\u03B9 \u03B2\u03B9\u03BB\u03B2\u03B9\u03BF\u03B8\u03AE\u03BA\u03B5\u03C2 \u03BD\u03BF\u03C5\u03BA\u03BB\u03B5\u03CA\u03BD\u03B9\u03BA\u03CE\u03BD \u03BF\u03BE\u03AD\u03C9\u03BD (genomics) \u03BA\u03B1\u03B9 \u03C0\u03C1\u03C9\u03C4\u03B5\u03CA\u03BD\u03CE\u03BD (proteomics)."@el . + . + . + . + "kerk"@nl . + "\u03B5\u03BA\u03BA\u03BB\u03B7\u03C3\u03AF\u03B1"@el . + "\u00E9glise"@fr . + "igreja"@pt . + "chiesa"@it . + "iglesia"@es . + "church"@en . + "\uAD50\uD68C"@ko . + "\u6559\u4F1A"@ja . + "Kirche"@de . + "This is used for church buildings, not any other meaning of church."@en . + . + . + . + "tunnel"@nl . + "\u03C4\u03BF\u03CD\u03BD\u03B5\u03BB"@el . + "tunnel"@fr . + "tunnel"@en . + "\uD130\uB110"@ko . + "\u30C8\u30F3\u30CD\u30EB"@ja . + "Tunnel"@de . + "A tunnel may be for foot or vehicular road traffic, for rail traffic, or for a canal. Some tunnels are aqueducts to supply water for consumption or for hydroelectric stations or are sewers (http://en.wikipedia.org/wiki/Tunnel)."@en . + "Un tunnel est une galerie souterraine livrant passage \u00E0 une voie de communication (chemin de fer, canal, route, chemin pi\u00E9tonnier). Sont apparent\u00E9s aux tunnels par leur mode de construction les grands ouvrages hydrauliques souterrains, tels que les aqueducs, collecteurs et \u00E9missaires destin\u00E9s soit \u00E0 l'amen\u00E9e, soit \u00E0 l'\u00E9vacuation des eaux des grands centres et certaines conduites \u00E9tablies en liaison avec les barrages et usines hydro-\u00E9lectriques. (http://fr.wikipedia.org/wiki/Tunnel)."@fr . + "Ein Tunnel (auch Tunell) ist eine k\u00FCnstliche Passage, die Berge, Gew\u00E4sser oder andere Hindernisse (in der Regel als Verkehrsweg) unterquert (http://de.wikipedia.org/wiki/Tunnel)."@de . + "\u0388\u03BD\u03B1 \u03C4\u03BF\u03CD\u03BD\u03B5\u03BB \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF \u03BD\u03B1 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B3\u03B9\u03B1 \u03C0\u03B5\u03B6\u03BF\u03CD\u03C2 \u03AE \u03B3\u03B9\u03B1 \u03B1\u03C5\u03C4\u03BF\u03BA\u03B9\u03BD\u03B7\u03C4\u03CC\u03B4\u03C1\u03BF\u03BC\u03BF\u03C5\u03C2,\u03B3\u03B9\u03B1 \u03C3\u03B9\u03B4\u03B7\u03C1\u03CC\u03B4\u03C1\u03BF\u03BC\u03BF\u03C5\u03C2,\u03AE \u03B3\u03B9\u03B1 \u03BA\u03B1\u03BD\u03AC\u03BB\u03B9\u03B1 \u03C3\u03C4\u03BF \u03BD\u03B5\u03C1\u03CC.\u039C\u03B5\u03C1\u03B9\u03BA\u03AC \u03C4\u03BF\u03CD\u03BD\u03B5\u03BB \u03B5\u03AF\u03BD\u03B1\u03B9 \u03C5\u03B4\u03C1\u03B1\u03B3\u03C9\u03B3\u03B5\u03AF\u03B1 \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03C0\u03B1\u03C1\u03AD\u03C7\u03BF\u03C5\u03BD \u03BD\u03B5\u03C1\u03CC \u03C0\u03C1\u03BF\u03C2 \u03BA\u03B1\u03C4\u03B1\u03BD\u03AC\u03BB\u03C9\u03C3\u03B7 \u03AE \u03B3\u03B9\u03B1 \u03C5\u03B4\u03C1\u03BF\u03B7\u03BB\u03B5\u03BA\u03C4\u03B9\u03BA\u03BF\u03CD\u03C2 \u03C3\u03C4\u03B1\u03B8\u03BC\u03BF\u03CD\u03C2 \u03AE \u03B5\u03AF\u03BD\u03B1\u03B9 \u03C5\u03C0\u03CC\u03BD\u03BF\u03BC\u03BF\u03B9."@el . + . + . + . + . + "roeier"@nl . + "\u03BA\u03C9\u03C0\u03B7\u03BB\u03AC\u03C4\u03B7\u03C2"@el . + "canottiere"@it . + "rower"@en . + "Ruderer"@de . + . + . + . + . + "Ginkgo biloba"@nl . + "ginkgo"@el . + "ginkgo"@fr . + "ginkgo"@pt . + "ginkgo biloba"@it . + "ginkgo"@en . + "\u9280\u674F\u5C5E"@ja . + "ginkgo"@de . + . + . + . + "vallei"@nl . + "\u039A\u03BF\u03B9\u03BB\u03AC\u03B4\u03B1"@el . + "vall\u00E9e"@fr . + "valle"@it . + "valley"@en . + "\u8C37"@ja . + "tal"@de . + "a depression with predominant extent in one direction"@en . + . + . + . + . + "coach"@nl . + "\u03C0\u03C1\u03BF\u03C0\u03BF\u03BD\u03B7\u03C4\u03AE\u03C2"@el . + "entra\u00EEneur"@fr . + "allenatore"@it . + "coach"@en . + "Trainer"@de . + . + . + . + "pisarz"@pl . + "auteur"@nl . + "\u03C3\u03C5\u03B3\u03B3\u03C1\u03B1\u03C6\u03AD\u03B1\u03C2"@el . + "\u00E9crivain"@fr . + "escritor"@es . + "writer"@en . + "scr\u00EDbhneoir"@ga . + "\uC791\uAC00"@ko . + "\u8457\u4F5C\u5BB6"@ja . + "schriftsteller"@de . + . + . + . + . + "samoch\u00F3d"@pl . + "automobiel"@nl . + "\u03B1\u03C5\u03C4\u03BF\u03BA\u03AF\u03BD\u03B7\u03C4\u03BF"@el . + "automobile"@fr . + "automovel"@pt . + "automobile"@it . + "autom\u00F3vil"@es . + "\u0430\u0432\u0442\u043E\u043C\u043E\u0431\u0438\u043B\u044C"@ru . + "automobile"@en . + "\uC790\uB3D9\uCC28"@ko . + "avtomobil"@sl . + "\u81EA\u52D5\u8ECA"@ja . + "\u0430\u045E\u0442\u0430\u043C\u0430\u0431\u0456\u043B\u044C"@be . + "Automobil"@de . + . + . + . + . + "ideologie"@nl . + "\u03B9\u03B4\u03B5\u03BF\u03BB\u03BF\u03B3\u03AF\u03B1"@el . + "id\u00E9ologie"@fr . + "ideologia"@pt . + "ideology"@en . + "Ideologie"@de . + "for example: Progressivism_in_the_United_States, Classical_liberalism"@en . + "\u03B3\u03B9\u03B1 \u03C0\u03B1\u03C1\u03B1\u03B4\u03B5\u03B9\u03B3\u03BC\u03B1: \u03A0\u03C1\u03BF\u03BF\u03B4\u03B5\u03C5\u03C4\u03B9\u03C3\u03BC\u03CC\u03C2 \u03C3\u03C4\u03B9\u03C2 \u0397\u03A0\u0391, \u03BA\u03BB\u03B1\u03C3\u03B9\u03BA\u03CC\u03C2 \u03C6\u03B9\u03BB\u03B5\u03BB\u03B5\u03C5\u03B8\u03B5\u03C1\u03B9\u03C3\u03BC\u03CC\u03C2"@el . + . + . + . + . + . + "Supreme Court of the United States case"@en . + "Fall Oberster Gerichtshof der Vereinigten"@de . + "cas juridique de la Cour supr\u00EAme des \u00C9tats-Unis"@fr . + . + . + . + "zwerm"@nl . + "\u03A3\u03BC\u03AE\u03BD\u03BF\u03C2"@el . + "stormo"@it . + "Swarm"@en . + "schwarm"@de . + . + . + . + "gemeenschap (community)"@nl . + "\u03BA\u03BF\u03B9\u03BD\u03CC\u03C4\u03B7\u03C4\u03B1"@el . + "Community"@en . + "\uACF5\uB3D9\uCCB4"@ko . + "Gemeinde"@de . + "\u039A\u03BF\u03B9\u03BD\u03CC\u03C4\u03B7\u03C4\u03B1 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03BC\u03AF\u03B1 \u03BF\u03BC\u03AC\u03B4\u03B1 \u03B6\u03CE\u03BD\u03C4\u03C9\u03BD \u03BF\u03C1\u03B3\u03B1\u03BD\u03B9\u03C3\u03BC\u03CE\u03BD, \u03B1\u03BD\u03B8\u03C1\u03CE\u03C0\u03C9\u03BD, \u03C6\u03C5\u03C4\u03CE\u03BD \u03AE \u03B6\u03CE\u03C9\u03BD \u03C0\u03BF\u03C5 \u03B6\u03BF\u03C5\u03BD \u03C3\u03B5 \u03AD\u03BD\u03B1 \u03BA\u03BF\u03B9\u03BD\u03CC \u03C0\u03B5\u03C1\u03B9\u03B2\u03AC\u03BB\u03BB\u03BF\u03BD."@el . + . + . + . + "Canadees footballteam"@nl . + "\u03BA\u03B1\u03BD\u03B1\u03B4\u03AD\u03B6\u03B9\u03BA\u03B7 \u03BF\u03BC\u03AC\u03B4\u03B1 \u03C0\u03BF\u03B4\u03BF\u03C3\u03C6\u03B1\u03AF\u03C1\u03BF\u03C5"@el . + "\u00E9quipe canadienne de football am\u00E9ricain"@fr . + "squadra di football canadese"@it . + "canadian football Team"@en . + "\uCE90\uB098\uB2E4 \uCD95\uAD6C \uD300"@ko . + "kanadische Footballmannschaft"@de . + . + . + . + "radiozender"@nl . + "\u03C1\u03B1\u03B4\u03B9\u03BF\u03C6\u03C9\u03BD\u03B9\u03BA\u03CC\u03C2 \u03C3\u03C4\u03B1\u03B8\u03BC\u03CC\u03C2"@el . + "station de radio"@fr . + "emisora de radio"@es . + "radio station"@en . + "\u30E9\u30B8\u30AA\u653E\u9001\u5C40"@ja . + "Radiosender"@de . + "A radio station has one line up. For instance the radio station BBC Radio 1. Not to be confused with the broadcasting network BBC, which has many radio stations."@en . + "Ein Radiosender hat genau ein Programm, zum Beispiel der Sender NDR Kultur. Nicht zu verwechseln mit der Rundfunkanstalt NDR, welche mehrere Radiosender hat."@de . + . + . + . + . + "dood"@nl . + "\u03B8\u03AC\u03BD\u03B1\u03C4\u03BF\u03C2"@el . + "mort"@fr . + "death"@en . + "Tod"@de . + "someone's death as a type of personal event"@en . + . + . + . + "voetbalmanager"@nl . + "\u03C0\u03C1\u03BF\u03C0\u03BF\u03BD\u03B7\u03C4\u03AE\u03C2 \u03C0\u03BF\u03B4\u03BF\u03C3\u03C6\u03B1\u03AF\u03C1\u03BF\u03C5"@el . + "entra\u00EEneur de football"@fr . + "gerente de f\u00FAtbol"@es . + "soccer manager"@en . + "Fu\u00DFballmanager"@de . + . + . + . + . + "gedicht"@nl . + "\u03C0\u03BF\u03AF\u03B7\u03BC\u03B1"@el . + "po\u00E8me"@fr . + "poesia"@it . + "poem"@en . + "Gedicht"@de . + . + . + . + . + "politicus"@nl . + "\u03C0\u03BF\u03BB\u03B9\u03C4\u03B9\u03BA\u03CC\u03C2"@el . + "politicien"@fr . + "pol\u00EDtico"@pt . + "politician"@en . + "politik"@sl . + "\uC815\uCE58\uC778"@ja . + "Politiker"@de . + . + . + . + . + "komiek"@nl . + "\u03BA\u03C9\u03BC\u03B9\u03BA\u03CC\u03C2"@el . + "com\u00E9dien"@fr . + "comediante"@pt . + "comedian"@en . + "\uD76C\uADF9 \uBC30\uC6B0"@ko . + "\u304A\u7B11\u3044\u82B8\u4EBA"@ja . + "Komiker"@de . + . + . + . + "\u03B4\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03CC\u03C2 \u03BA\u03CC\u03BC\u03B9\u03BE"@el . + "cr\u00E9ateur de bandes dessin\u00E9es"@fr . + "comics creator"@en . + "\uB9CC\uD654\uAC00"@ko . + "\u6F2B\u753B\u5BB6"@ja . + "Comicautor"@de . + . + . + . + "monarch"@nl . + "\u03BC\u03BF\u03BD\u03AC\u03C1\u03C7\u03B7\u03C2"@el . + "monarque"@fr . + "monarca"@it . + "monarca"@es . + "monarch"@en . + "\uAD70\uC8FC"@ko . + "monarch"@de . + . + . + . + . + "droga"@pl . + "weg"@nl . + "\u03B4\u03C1\u03CC\u03BC\u03BF\u03C2"@el . + "route"@fr . + "carretera"@es . + "road"@en . + "b\u00F3thar"@ga . + "\uB3C4\uB85C"@ko . + "\u9053\u8DEF"@ja . + "carretera"@ca . + "Stra\u00DFe"@de . + . + . + . + . + "Philosophical concept"@en . + "philosophisch Konzept"@de . + "Filosofisch thema"@nl . + "Philosophical concepts, e.g. Existentialism, Cogito Ergo Sum"@en . + . + . + . + "Playboy Playmate"@en . + "Playboy Playmate"@de . + "playboy playmate"@el . + "playmate pour Playboy"@fr . + . + . + . + "television personality"@en . + "\u03C4\u03B7\u03BB\u03B5\u03BF\u03C0\u03C4\u03B9\u03BA\u03AE \u03C0\u03C1\u03BF\u03C3\u03C9\u03C0\u03B9\u03BA\u03CC\u03C4\u03B7\u03C4\u03B1"@el . + "Fernsehpers\u00F6nlichkeit"@de . + "televisiepersoon"@nl . + . + . + . + "apparaat"@nl . + "\u03C3\u03C5\u03C3\u03BA\u03B5\u03C5\u03B7"@el . + "appareil"@fr . + "device"@en . + "\uC7A5\uCE58"@ko . + "\u30C7\u30D0\u30A4\u30B9"@ja . + "Ger\u00E4t"@de . + . + . + . + "vulkaan"@nl . + "\u03B7\u03C6\u03B1\u03AF\u03C3\u03C4\u03B5\u03B9\u03BF"@el . + "volcan"@fr . + "volcano"@en . + "\u706B\u5C71"@ja . + "Vulkan"@de . + "A volcano is currently subclass of naturalplace, but it might also be considered a mountain."@en . + "\u03A4\u03BF \u03B7\u03C6\u03B1\u03AF\u03C3\u03C4\u03B5\u03B9\u03BF \u03B5\u03AF\u03BD\u03B1\u03B9 \u03C5\u03C0\u03BF\u03BA\u03B1\u03C4\u03B7\u03B3\u03BF\u03C1\u03AF\u03B1 \u03C6\u03C5\u03C3\u03B9\u03BA\u03CE\u03BD \u03BA\u03B1\u03C4\u03B1\u03C3\u03C4\u03AC\u03C3\u03B5\u03C9\u03BD, \u03B1\u03BB\u03BB\u03AC \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF \u03B5\u03C0\u03AF\u03C3\u03B7\u03C2 \u03BD\u03B1 \u03B8\u03B5\u03C9\u03C1\u03B7\u03B8\u03B5\u03AF \u03BA\u03B1\u03B9 \u03B2\u03BF\u03C5\u03BD\u03CC."@el . + . + . + . + . + "krant"@nl . + "\u03B5\u03C6\u03B7\u03BC\u03B5\u03C1\u03AF\u03B4\u03B1"@el . + "journal"@fr . + "newspaper"@en . + "\uC2E0\uBB38"@ko . + "\u65B0\u805E"@ja . + "Zeitung"@de . + "A newspaper is a regularly scheduled publication containing news of current events, informative articles, diverse features and advertising. It usually is printed on relatively inexpensive, low-grade paper such as newsprint."@en . + "Eine Zeitung ist ein Druckwerk von m\u00E4\u00DFigem Seitenumfang, das in kurzen periodischen Zeitspannen, mindestens einmal w\u00F6chentlich, \u00F6ffentlich erscheint. Die Zeitung ist, anders als die Zeitschrift, ein der Aktualit\u00E4t verpflichtetes Presseorgan und gliedert sich meist in mehrere inhaltliche Rubriken wie Politik, Lokales, Wirtschaft, Sport, Feuilleton und Immobilien."@de . + . + . + . + . + "American footballspeler"@nl . + "\u03C0\u03B1\u03AF\u03BA\u03C4\u03B7\u03C2 \u03B1\u03BC\u03B5\u03C1\u03B9\u03BA\u03B1\u03BD\u03B9\u03BA\u03BF\u03CD \u03C0\u03BF\u03B4\u03BF\u03C3\u03C6\u03B1\u03AF\u03C1\u03BF\u03C5"@el . + "joueur de football am\u00E9ricain"@fr . + "giocatore di football americano"@it . + "jugador de f\u00FAtbol americano"@es . + "american football player"@en . + "\uBBF8\uC2DD \uCD95\uAD6C \uC120\uC218"@ko . + "\u30A2\u30E1\u30EA\u30AB\u30F3\u30D5\u30C3\u30C8\u30DC\u30FC\u30EB\u9078\u624B"@ja . + "American Footballspieler"@de . + . + . + . + . + "wetenschappelijk tijdschrift"@nl . + "\u03B1\u03BA\u03B1\u03B4\u03B7\u03BC\u03B1\u03CA\u03BA\u03CC \u03C0\u03B5\u03C1\u03B9\u03BF\u03B4\u03B9\u03BA\u03CC"@el . + "journal acad\u00E9mique"@fr . + "giornale accademico"@it . + "academic journal"@en . + "\uD559\uC220\uC9C0"@ko . + "\u5B78\u8853\u671F\u520A"@zh . + "\u5B66\u8853\u96D1\u8A8C"@ja . + "Wissenschaftliche Fachzeitschrift"@de . + "An academic journal is a mostly peer-reviewed periodical in which scholarship relating to a particular academic discipline is published. Academic journals serve as forums for the introduction and presentation for scrutiny of new research, and the critique of existing research. Content typically takes the form of articles presenting original research, review articles, and book reviews."@en . + "\u0388\u03BD\u03B1 \u03B1\u03BA\u03B1\u03B4\u03B7\u03BC\u03B1\u03CA\u03BA\u03CC \u03C0\u03B5\u03C1\u03B9\u03BF\u03B4\u03B9\u03BA\u03CC \u03B5\u03AF\u03BD\u03B1\u03B9 \u03C9\u03C2 \u03B5\u03C0\u03AF \u03C4\u03BF \u03C0\u03BB\u03B5\u03AF\u03C3\u03C4\u03BF\u03BD \u03C0\u03B5\u03C1\u03B9\u03BF\u03B4\u03B9\u03BA\u03CC \u03B3\u03B9\u03B1 \u03BA\u03C1\u03B9\u03C4\u03B9\u03BA\u03AD\u03C2 \u03BF\u03B9 \u03BF\u03C0\u03BF\u03AF\u03B5\u03C2 \u03C3\u03C7\u03B5\u03C4\u03AF\u03B6\u03BF\u03BD\u03C4\u03B1\u03B9 \u03BC\u03B5 \u03AD\u03BD\u03B1\u03BD \u03C3\u03C5\u03B3\u03BA\u03B5\u03BA\u03C1\u03B9\u03BC\u03AD\u03BD\u03BF \u03B1\u03BA\u03B1\u03B4\u03B7\u03BC\u03B1\u03CA\u03BA\u03CC \u03C4\u03BF\u03BC\u03AD\u03B1. \u03A4\u03B1 \u03B1\u03BA\u03B1\u03B4\u03B7\u03BC\u03B1\u03CA\u03BA\u03AC \u03C0\u03B5\u03C1\u03B9\u03BF\u03B4\u03B9\u03BA\u03AC \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03B5\u03CD\u03BF\u03C5\u03BD \u03C9\u03C2 \u03C6\u03CC\u03C1\u03BF\u03C5\u03BC \u03B3\u03B9\u03B1 \u03C4\u03B7\u03BD \u03B5\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE \u03BA\u03B1\u03B9 \u03C0\u03B1\u03C1\u03BF\u03C5\u03C3\u03AF\u03B1\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03B5\u03BB\u03AD\u03B3\u03C7\u03BF\u03C5 \u03C4\u03C9\u03BD \u03BD\u03AD\u03C9\u03BD \u03B5\u03C1\u03B5\u03C5\u03BD\u03CE\u03BD \u03BA\u03B1\u03B9 \u03C4\u03B7\u03C2 \u03BA\u03C1\u03B9\u03C4\u03B9\u03BA\u03AE\u03C2 \u03C4\u03B7\u03C2 \u03C5\u03C0\u03AC\u03C1\u03C7\u03BF\u03C5\u03C3\u03B1\u03C2 \u03AD\u03C1\u03B5\u03C5\u03BD\u03B1\u03C2. \u03A4\u03BF \u03C0\u03B5\u03C1\u03B9\u03B5\u03C7\u03CC\u03BC\u03B5\u03BD\u03BF \u03AD\u03C7\u03B5\u03B9 \u03C3\u03C5\u03BD\u03AE\u03B8\u03C9\u03C2 \u03C4\u03B7\u03BD \u03BC\u03BF\u03C1\u03C6\u03AE \u03AC\u03C1\u03B8\u03C1\u03C9\u03BD \u03C0\u03B1\u03C1\u03BF\u03C5\u03C3\u03AF\u03B1\u03C3\u03B7\u03C2 \u03BD\u03AD\u03B1\u03C2 \u03AD\u03C1\u03B5\u03C5\u03BD\u03B1\u03C2, \u03B1\u03BD\u03B1\u03C3\u03BA\u03CC\u03C0\u03B7\u03C3\u03B7\u03C2 \u03C5\u03C0\u03AC\u03C1\u03C7\u03C9\u03BD \u03AC\u03C1\u03B8\u03C1\u03C9\u03BD \u03BA\u03B1\u03B9 \u03BA\u03C1\u03B9\u03C4\u03B9\u03BA\u03AD\u03C2 \u03B2\u03B9\u03B2\u03BB\u03AF\u03C9\u03BD."@el . + "Wissenschaftliche Fachzeitschriften sind regelm\u00E4\u00DFig verlegte Fachzeitschriften \u00FCber Spezialthemen aus den verschiedensten wissenschaftlichen Disziplinen. Sie stellen neue Methoden, Techniken und aktuelle Trends aus den Wissenschaften dar."@de . + . + . + . + . + "tafeltennisser"@nl . + "\u03C0\u03B1\u03AF\u03BA\u03C4\u03B7\u03C2 \u03C0\u03B9\u03BD\u03B3\u03BA-\u03C0\u03BF\u03BD\u03B3\u03BA"@el . + "table tennis player"@en . + "\uD0C1\uAD6C \uC120\uC218"@ko . + "Tischtennisspieler"@de . + "Athlete who plays table tennis"@en . + "O \u03B1\u03B8\u03BB\u03B7\u03C4\u03AE\u03C2 \u03C0\u03BF\u03C5 \u03C0\u03B1\u03AF\u03B6\u03B5\u03B9 \u03C0\u03B9\u03BD\u03B3\u03BA-\u03C0\u03BF\u03BD\u03B3\u03BA"@el . + . + . + . + . + "kunstwerk"@nl . + "\u03AD\u03C1\u03B3\u03BF \u03C4\u03AD\u03C7\u03BD\u03B7\u03C2"@el . + "\u0153uvre d'art"@fr . + "opera d'arte"@it . + "obra de arte"@es . + "artwork"@en . + "\uC791\uD488"@ko . + "\u4F5C\u54C1"@ja . + "Kunstwerk"@de . + "A work of art, artwork, art piece, or art object is an aesthetic item or artistic creation."@en . + . + . + . + "siatkarz"@pl . + "volleyballer"@nl . + "\u03C0\u03B1\u03AF\u03C7\u03C4\u03B7\u03C2 \u03B2\u03CC\u03BB\u03B5\u03CA"@el . + "volleyball player"@en . + "\uBC30\uAD6C \uC120\uC218"@ko . + "Volleyballspieler"@de . + . + . + . + . + "non-profit organisatie"@nl . + "\u03BC\u03B7 \u03BA\u03B5\u03C1\u03B4\u03BF\u03C3\u03BA\u03BF\u03C0\u03B9\u03BA\u03AE \u03BF\u03C1\u03B3\u03AC\u03BD\u03C9\u03C3\u03B7"@el . + "organisation \u00E0 but non lucratif"@fr . + "non-profit organisation"@en . + "gemeinn\u00FCtzige Organisation"@de . + . + . + . + . + "zee"@nl . + "\u03B8\u03AC\u03BB\u03B1\u03C3\u03C3\u03B1"@el . + "mer"@fr . + "sea"@en . + "\u6D77"@ja . + "Meer"@de . + . + . + . + . + "geestelijke"@nl . + "\u039A\u03BB\u03AE\u03C1\u03BF\u03C2"@el . + "eccl\u00E9siastique"@fr . + "ecclesiastico"@it . + "cleric"@en . + "\uC131\uC9C1\uC790"@ko . + "\u8056\u8077\u8005"@ja . + "geistlicher"@de . + . + . + . + "schoonheidskoningin"@nl . + "\u03B2\u03B1\u03C3\u03AF\u03BB\u03B9\u03C3\u03C3\u03B1 \u03BF\u03BC\u03BF\u03C1\u03C6\u03B9\u03AC\u03C2"@el . + "reginetta di bellezza"@it . + "beauty queen"@en . + "\uBDF0\uD2F0\uD038"@ko . + "\u30DF\u30B9"@ja . + "Sch\u00F6nheitsk\u00F6nigin"@de . + "A beauty pageant titleholder"@en . + "\u03A4\u03AF\u03C4\u03BB\u03BF\u03C2 \u03C0\u03BF\u03C5 \u03B1\u03C0\u03BF\u03B4\u03AF\u03B4\u03B5\u03C4\u03B1\u03B9 \u03C3\u03B5 \u03BC\u03AF\u03B1 \u03B3\u03C5\u03BD\u03B1\u03AF\u03BA\u03B1, \u03C4\u03B9\u03C2 \u03C0\u03B5\u03C1\u03B9\u03C3\u03C3\u03CC\u03C4\u03B5\u03C1\u03B5\u03C2 \u03C6\u03BF\u03C1\u03AD\u03C2 \u03BC\u03B5\u03C4\u03AC \u03B1\u03C0\u03CC \u03B4\u03B9\u03B1\u03B3\u03C9\u03BD\u03B9\u03C3\u03BC\u03CC."@el . + . + . + . + "szko\u0142a"@pl . + "school"@nl . + "\u03C3\u03C7\u03BF\u03BB\u03B5\u03AF\u03BF"@el . + "\u00E9cole"@fr . + "escola"@pt . + "scuola"@it . + "escuela"@es . + "school"@en . + "scoil"@ga . + "\uD559\uAD50"@ko . + "\u5B66\u6821"@ja . + "Schule"@de . + . + . + . + . + . + "region"@en . + "r\u00E9gion"@fr . + "\u03C0\u03B5\u03C1\u03B9\u03BF\u03C7\u03AE"@el . + "Region"@de . + . + . + . + . + "light novel"@en . + "Trivialroman"@de . + "\u30E9\u30A4\u30C8\u30CE\u30D9\u30EB"@ja . + "\u03B1\u03BD\u03AC\u03BB\u03B1\u03C6\u03C1\u03BF \u03BC\u03C5\u03B8\u03B9\u03C3\u03C4\u03CC\u03C1\u03B7\u03BC\u03B1"@el . + "A style of Japanese novel"@en . + . + . + . + . + "\u03A4\u03BF\u03C0\u03BF\u03B8\u03B5\u03C3\u03AF\u03B1 \u0395\u03B9\u03B4\u03B9\u03BA\u03BF\u03CD \u0395\u03C0\u03B9\u03C3\u03C4\u03B7\u03BC\u03BF\u03BD\u03B9\u03BA\u03BF\u03CD \u0395\u03BD\u03B4\u03B9\u03B1\u03C6\u03AD\u03C1\u03BF\u03BD\u03C4\u03BF\u03C2"@el . + "site d'int\u00E9r\u00EAt scientifique particulier"@fr . + "Site of Special Scientific Interest"@en . + "\u81EA\u7136\u4FDD\u8B77\u5354\u4F1A\u7279\u5225\u6307\u5B9A\u5730\u533A"@ja . + "wissenschaftliche Interessenvertretung f\u00FCr Denkmalschutz"@de . + "A Site of Special Scientific Interest (SSSI) is a conservation designation denoting a protected area in the United Kingdom. SSSIs are the basic building block of site-based nature conservation legislation and most other legal nature/geological conservation designations in Great Britain are based upon them, including National Nature Reserves, Ramsar Sites, Special Protection Areas, and Special Areas of Conservation."@en . + . + . + . + . + "snooker player"@en . + "Snookerspieler"@de . + "biljarter"@nl . + "An athlete that plays snooker, which is a billard derivate"@en . + "Ein Sportler der Snooker spielt, eine bekannte Billardvariante"@de . + . + . + . + "ijshockey competitie"@nl . + "\u03C0\u03C1\u03C9\u03C4\u03AC\u03B8\u03BB\u03B7\u03BC\u03B1 \u03C7\u03CC\u03BA\u03B5\u03CB"@el . + "ligue d'hockey sur glace"@fr . + "ice hockey league"@en . + "Eishockey-Liga"@de . + "a group of sports teams that compete against each other in Ice Hockey."@en . + . + . + . + "functie van persoon"@nl . + "fonction de personne"@fr . + "funci\u00F3n de persona"@es . + "person function"@en . + "Funktion einer Person"@de . + . + . + . + "muziekartiest"@nl . + "\u03BC\u03BF\u03C5\u03C3\u03B9\u03BA\u03CC\u03C2"@el . + "musicien"@fr . + "artista musical"@pt . + "musical artist"@en . + "\uC74C\uC545\uAC00"@ko . + "musikalischer K\u00FCnstler"@de . + . + . + . + . + . + "entomoloog"@nl . + "\u03B5\u03BD\u03C4\u03BF\u03BC\u03BF\u03BB\u03CC\u03B3\u03BF\u03C2"@el . + "entomologo"@it . + "entomologist"@en . + "Entomologe"@de . + . + . + . + . + "partia polityczna"@pl . + "politieke partij"@nl . + "\u03C0\u03BF\u03BB\u03B9\u03C4\u03B9\u03BA\u03CC \u03BA\u03CC\u03BC\u03BC\u03B1"@el . + "parti politique"@fr . + "partido pol\u00EDtico"@pt . + "partido pol\u00EDtico"@es . + "political party"@en . + "partit pol\u00EDtic"@ca . + "politische Partei"@de . + "for example: Democratic_Party_(United_States)"@en . + "\u03B3\u03B9\u03B1 \u03C0\u03B1\u03C1\u03AC\u03B4\u03B5\u03B9\u03B3\u03BC\u03B1: \u0394\u03B7\u03BC\u03BF\u03BA\u03C1\u03B1\u03C4\u03B9\u03BA\u03CC \u039A\u03CC\u03BC\u03BC\u03B1 _United_States)"@el . + . + . + . + . + "presentator"@nl . + "\u03A0\u03B1\u03C1\u03BF\u03C5\u03C3\u03B9\u03B1\u03C3\u03C4\u03AE\u03C2"@el . + "pr\u00E9sentateur"@fr . + "presenter"@en . + "Moderator"@de . + "TV or radio show presenter"@en . + . + . + . + . + "Watermolen"@nl . + "\u039D\u03B5\u03C1\u03CC\u03BC\u03C5\u03BB\u03BF\u03C2"@el . + "Moulin \u00E0 eau"@fr . + "mulino ad acqua"@it . + "Watermill"@en . + "Wasserm\u00FChle"@de . + "A watermill is a structure that uses a water wheel or turbine to drive a mechanical process such as flour, lumber or textile production, or metal shaping (rolling, grinding or wire drawing)"@en . + . + . + . + . + "database"@nl . + "\u03B2\u03AC\u03C3\u03B7 \u03B4\u03B5\u03B4\u03BF\u03BC\u03AD\u03BD\u03C9\u03BD"@el . + "Base de donn\u00E9es"@fr . + "Banco de dados"@pt . + "Database"@en . + "\uB370\uC774\uD130\uBCA0\uC774\uC2A4"@ko . + "\u30C7\u30FC\u30BF\u30D9\u30FC\u30B9"@ja . + "Datenbank"@de . + . + . + . + . + "Place in the Music Charts"@en . + "Chartplatzierungen"@de . + "plaats op de muziek hitlijst"@nl . + . + . + . + "etnische groep"@nl . + "\u03B5\u03B8\u03BD\u03B9\u03BA\u03AE \u03BF\u03BC\u03AC\u03B4\u03B1"@el . + "groupe ethnique"@fr . + "etnia"@it . + "ethnic group"@en . + "\uBBFC\uC871"@ko . + "ethnie"@de . + . + . + . + . + "international football league event"@en . + "International Football Liga Veranstaltung"@de . + . + . + . + "honkbal team"@nl . + "\u03BF\u03BC\u03AC\u03B4\u03B1 \u03BC\u03C0\u03AD\u03B9\u03B6\u03BC\u03C0\u03BF\u03BB"@el . + "\u00E9quipe de basket-ball"@fr . + "squadra di baseball"@it . + "baseball team"@en . + "\uC57C\uAD6C\uD300"@ko . + "\u91CE\u7403\u30C1\u30FC\u30E0"@ja . + "Baseballmannschaft"@de . + "\u0388\u03BD\u03B1\u03C2 \u03B1\u03C1\u03B9\u03B8\u03BC\u03CC\u03C2 \u03B1\u03C0\u03CC \u03AC\u03BD\u03B4\u03C1\u03B5\u03C2 \u03AE \u03B3\u03C5\u03BD\u03B1\u03AF\u03BA\u03B5\u03C2 \u03C0\u03BF\u03C5 \u03B1\u03C0\u03BF\u03C4\u03B5\u03BB\u03BF\u03CD\u03BD \u03AD\u03BD\u03B1 \u03B4\u03B9\u03B1\u03BA\u03C1\u03B9\u03C4\u03CC \u03C3\u03CD\u03BD\u03BF\u03BB\u03BF \u03BC\u03B5 \u03C3\u03C5\u03B3\u03BA\u03B5\u03BA\u03C1\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5\u03C2 \u03C3\u03C4\u03CC\u03C7\u03BF\u03C5\u03C2 \u03C3\u03C7\u03B5\u03C4\u03B9\u03BA\u03AC \u03BC\u03B5 \u03C4\u03BF \u03AC\u03B8\u03BB\u03B7\u03BC\u03B1 \u03C4\u03BF\u03C5 \u03BC\u03C0\u03AD\u03B9\u03B6\u03BC\u03C0\u03BF\u03BB."@el . + . + . + . + "vakantie"@nl . + "\u03B1\u03C1\u03B3\u03AF\u03B1"@el . + "jour f\u00E9ri\u00E9"@fr . + "giorno festivo"@it . + "holiday"@en . + "\uD734\uC77C"@ko . + "\u795D\u65E5"@ja . + "Feiertag"@de . + "Un jour f\u00E9ri\u00E9 est un jour de f\u00EAte civile ou religieuse, ou comm\u00E9morant un \u00E9v\u00E9nement."@fr . + "Unter einem Feiertag oder Festtag wird allgemein ein arbeitsfreier Tag mit besonderer Feiertagsruhe verstanden."@de . + . + . + . + . + . + "insect"@nl . + "\u03AD\u03BD\u03C4\u03BF\u03BC\u03BF"@el . + "insecte"@fr . + "insecto"@es . + "insect"@en . + "\u6606\u866B"@ja . + "Insekt"@de . + . + . + . + . + "mineraal"@nl . + "\u03BF\u03C1\u03C5\u03BA\u03C4\u03CC"@el . + "min\u00E9ral"@fr . + "minerale"@it . + "mineral"@en . + "\uAD11\uBB3C"@ko . + "\u9271\u7269"@ja . + "mineral"@de . + "A naturally occurring solid chemical substance."@en . + "Corpi naturali inorganici, in genere solidi."@it . + . + . + . + . + "muziekwerk"@nl . + "\u03BC\u03BF\u03C5\u03C3\u03B9\u03BA\u03CC \u03AD\u03C1\u03B3\u03BF"@el . + "\u0153uvre musicale"@fr . + "opera musicale"@it . + "musical work"@en . + "musikalisches Werk"@de . + . + . + . + . + "soccer club season"@en . + "Fu\u00DFballverein Saison"@de . + . + . + . + "vervoermiddel"@nl . + "\u03BC\u03B5\u03C4\u03B1\u03C6\u03BF\u03C1\u03B9\u03BA\u03CC \u03BC\u03AD\u03C3\u03BF"@el . + "moyen de transport"@fr . + "mean of transportation"@en . + "Transportmittel"@de . + . + . + . + . + . + "Annotation"@en . + "\u03A3\u03C7\u03CC\u03BB\u03B9\u03BF"@el . + "Aantekening"@nl . + "Randglosse"@de . + . + . + . + . + . + "unit of work"@en . + "Arbeitseinheit"@de . + "werkeenheid"@nl . + "This class is meant to convey the notion of an amount work to be done. It is different from Activity in that it has a definite end and is being measured."@en . + . + . + . + . + . + "meczet"@pl . + "moskee"@nl . + "\u03C4\u03B6\u03B1\u03BC\u03AF"@el . + "mosqu\u00E9e"@fr . + "mezquita"@es . + "mosque"@en . + "mosc"@ga . + "Moschee"@de . + "Meczet \u2013 miejsce kultu muzu\u0142ma\u0144skiego"@pl . + "\u03A4\u03BF \u03C4\u03B6\u03B1\u03BC\u03AF \u03B5\u03AF\u03BD\u03B1\u03B9 \u03BF \u03C4\u03CC\u03C0\u03BF\u03C2 \u03BB\u03B1\u03C4\u03C1\u03B5\u03AF\u03B1\u03C2 \u03C4\u03C9\u03BD \u039C\u03BF\u03C5\u03C3\u03BF\u03C5\u03BB\u03BC\u03AC\u03BD\u03C9\u03BD."@el . + "Une mosqu\u00E9e est un lieu de culte o\u00F9 se rassemblent les musulmans pour les pri\u00E8res communes."@fr . + "A mosque, sometimes spelt mosk, is a place of worship for followers of Islam."@en . + "Is \u00E1it adhartha na Moslamach, lucht lean\u00FAna an reiligi\u00FAin Ioslam, \u00E9 mosc"@ga . + . + . + . + . + "national collegiate athletic association athlete"@en . + "NCAA"@de . + "athl\u00E8te de la national collegiate athletic association"@fr . + . + . + . + "motorsport racer"@en . + "Motorsport Fahrer"@de . + "motorsport renner"@nl . + "\u03BF\u03B4\u03B7\u03B3\u03CC\u03C2 \u03B1\u03B3\u03CE\u03BD\u03C9\u03BD"@el . + . + . + . + "gen"@nl . + "\u03B3\u03BF\u03BD\u03AF\u03B4\u03B9\u03BF"@el . + "g\u00E8ne"@fr . + "gene"@pt . + "gene"@en . + "\u907A\u4F1D\u5B50"@ja . + "Gen"@de . + . + . + . + . + "scheidsrechter"@nl . + "\u03B4\u03B9\u03B1\u03B9\u03C4\u03B7\u03C4\u03AE\u03C2"@el . + "arbitre"@fr . + "arbitro"@it . + "\u00E1rbitro"@es . + "referee"@en . + "schiedsrichter"@de . + "An official who watches a game or match closely to ensure that the rules are adhered to."@en . + . + . + . + "reptiel"@nl . + "\u03B5\u03C1\u03C0\u03B5\u03C4\u03CC"@el . + "reptile"@fr . + "reptile"@en . + "\u722C\u866B\u985E"@ja . + "reptil"@de . + . + . + . + "Satellite"@en . + "satelliet"@nl . + "Satellite"@de . + "\u03B4\u03BF\u03C1\u03C5\u03C6\u03CC\u03C1\u03BF\u03C2"@el . + "An astronomic object orbiting around a planet or star. Definition partly derived from http://www.ontotext.com/proton/protonext# (and thus WordNet 1.7)."@en . + "\u0388\u03BD\u03B1 \u03B1\u03C3\u03C4\u03C1\u03BF\u03BD\u03BF\u03BC\u03B9\u03BA\u03CC \u03B1\u03BD\u03C4\u03B9\u03BA\u03B5\u03AF\u03BC\u03B5\u03BD\u03BF \u03C0\u03BF\u03C5 \u03B2\u03C1\u03AF\u03C3\u03BA\u03B5\u03C4\u03B1\u03B9 \u03C3\u03B5 \u03C4\u03C1\u03BF\u03C7\u03B9\u03AC \u03B3\u03CD\u03C1\u03C9 \u03B1\u03C0\u03CC \u03AD\u03BD\u03B1\u03BD \u03C0\u03BB\u03B1\u03BD\u03AE\u03C4\u03B7 \u03AE \u03B1\u03C3\u03C4\u03AD\u03C1\u03B9."@el . + . + . + . + "Canadese football speler"@nl . + "\u03BA\u03B1\u03BD\u03B1\u03B4\u03CC\u03C2 \u03C0\u03B1\u03AF\u03BA\u03C4\u03B7\u03C2 \u03C0\u03BF\u03B4\u03BF\u03C3\u03C6\u03B1\u03AF\u03C1\u03BF\u03C5"@el . + "joueur de football canadien"@fr . + "jogador de futebol canadense"@pt . + "giocatore di football canadese"@it . + "canadian football Player"@en . + "\uCE90\uB098\uB2E4 \uCD95\uAD6C \uC120\uC218"@ko . + "kanadischer Footballspieler"@de . + . + . + . + "orgaan openbaar bestuur"@nl . + "\u03BA\u03C5\u03B2\u03B5\u03C1\u03BD\u03B7\u03C4\u03B9\u03BA\u03AE \u03C5\u03C0\u03B7\u03C1\u03B5\u03C3\u03AF\u03B1"@el . + "agence gouvernementale"@fr . + "agencia del gobierno"@es . + "government agency"@en . + "\uC815\uBD80 \uAE30\uAD00"@ko . + "Beh\u00F6rde"@de . + "A government agency is a permanent or semi-permanent organization in the machinery of government that is responsible for the oversight and administration of specific functions, such as an intelligence agency."@en . + "Eine Beh\u00F6rde ist eine staatliche Einrichtung, die im weitesten Sinne f\u00FCr die Erf\u00FCllung von Aufgaben der Verwaltung des Staates und dabei insbesondere f\u00FCr Dienstleistungen des Staates gegen\u00FCber seinen B\u00FCrgern zust\u00E4ndig ist. Eine Beh\u00F6rde erh\u00E4lt ihren Auftrag aus den Gesetzen des Staates, in dem und f\u00FCr den sie t\u00E4tig ist."@de . + "\u039C\u03B9\u03B1 \u03BA\u03C5\u03B2\u03B5\u03C1\u03BD\u03B7\u03C4\u03B9\u03BA\u03AE \u03C5\u03C0\u03B7\u03C1\u03B5\u03C3\u03AF\u03B1 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03BC\u03CC\u03BD\u03B9\u03BC\u03B7 \u03AE \u03B7\u03BC\u03B9-\u03BC\u03CC\u03BD\u03B9\u03BC\u03B7 \u03BF\u03C1\u03B3\u03AC\u03BD\u03C9\u03C3\u03B7 \u03C3\u03C4\u03BF \u03BC\u03B7\u03C7\u03B1\u03BD\u03B9\u03C3\u03BC\u03CC \u03C4\u03B7\u03C2 \u03BA\u03C5\u03B2\u03AD\u03C1\u03BD\u03B7\u03C3\u03B7\u03C2, \u03B7 \u03BF\u03C0\u03BF\u03AF\u03B1 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03C5\u03C0\u03B5\u03CD\u03B8\u03C5\u03BD\u03B7 \u03B3\u03B9\u03B1 \u03C4\u03B7\u03BD \u03B5\u03C0\u03BF\u03C0\u03C4\u03B5\u03AF\u03B1 \u03BA\u03B1\u03B9 \u03B4\u03B9\u03B1\u03C7\u03B5\u03AF\u03C1\u03B9\u03C3\u03B7 \u03C3\u03C5\u03B3\u03BA\u03B5\u03BA\u03C1\u03B9\u03BC\u03AD\u03BD\u03C9\u03BD \u03BB\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03B9\u03CE\u03BD, \u03CC\u03C0\u03C9\u03C2 \u03B7 \u03C5\u03C0\u03B7\u03C1\u03B5\u03C3\u03AF\u03B1 \u03C0\u03BB\u03B7\u03C1\u03BF\u03C6\u03BF\u03C1\u03B9\u03CE\u03BD."@el . + . + . + . + . + "bayrak"@tr . + "vlag"@nl . + "\u03C3\u03B7\u03BC\u03B1\u03AF\u03B1"@el . + "drapeau"@fr . + "flag"@en . + "\uAD6D\uAE30"@ko . + "\u65D7"@ja . + "Flagge"@de . + . + . + . + . + "rally driver"@en . + "\u03BF\u03B4\u03B7\u03B3\u03CC\u03C2 \u03C1\u03AC\u03BB\u03B9"@el . + "Rallyefahrer"@de . + "\u039F \u03BF\u03B4\u03B7\u03B3\u03CC\u03C2 \u03C1\u03AC\u03BB\u03B9 \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03B5\u03AF\u03C4\u03B1\u03B9 \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03C0\u03B5\u03C1\u03B9\u03B3\u03C1\u03AC\u03C8\u03B5\u03B9 \u03AC\u03BD\u03B4\u03C1\u03B1 \u03C0\u03BF\u03C5 \u03BB\u03B1\u03BC\u03B2\u03AC\u03BD\u03B5\u03B9 \u03BC\u03AD\u03C1\u03BF\u03C2 \u03C3\u03B5 \u03B1\u03B3\u03CE\u03BD\u03B5\u03C2 \u03B1\u03C5\u03C4\u03BF\u03BA\u03B9\u03BD\u03AE\u03C4\u03C9\u03BD \u03B5\u03B9\u03B4\u03B9\u03BA\u03AE\u03C2 \u03BA\u03B1\u03C4\u03B7\u03B3\u03BF\u03C1\u03AF\u03B1\u03C2"@el . + . + . + . + . + "bacterie"@nl . + "\u03B2\u03B1\u03BA\u03C4\u03AE\u03C1\u03B9\u03B1"@el . + "bact\u00E9rie"@fr . + "batterio"@it . + "bacteria"@es . + "bacteria"@en . + "\uC138\uADE0"@ko . + "\u771F\u6B63\u7D30\u83CC"@ja . + "bakterium"@de . + . + . + . + "Archer Player"@en . + "Bogensch\u00FCtze"@de . + "boogschutter"@nl . + . + . + . + "kardinaal"@nl . + "\u03BA\u03B1\u03C1\u03B4\u03B9\u03BD\u03AC\u03BB\u03B9\u03BF\u03C2"@el . + "cardinal"@fr . + "cardeal"@pt . + "cardinale"@it . + "cardinal"@en . + "\uCE74\uB514\uB110"@ko . + "Kardinal"@de . + . + . + . + "weekdier"@nl . + "\u03BC\u03B1\u03BB\u03AC\u03BA\u03B9\u03B1"@el . + "mollusque"@fr . + "mollusca"@en . + "\u8EDF\u4F53\u52D5\u7269"@ja . + "Weichtiere"@de . + "\u03A4\u03B1 \u03BC\u03B1\u03BB\u03AC\u03BA\u03B9\u03B1 \u03B1\u03C0\u03BF\u03C4\u03B5\u03BB\u03BF\u03CD\u03BD \u03BC\u03B9\u03B1 \u03C4\u03B5\u03C1\u03AC\u03C3\u03C4\u03B9\u03B1 \u03C3\u03C5\u03BD\u03BF\u03BC\u03BF\u03C4\u03B1\u03BE\u03AF\u03B1 \u03B6\u03CE\u03C9\u03BD, \u03C4\u03B7\u03BD \u03C0\u03BF\u03BB\u03C5\u03C0\u03BB\u03B7\u03B8\u03AD\u03C3\u03C4\u03B5\u03C1\u03B7 \u03BC\u03B5\u03C4\u03AC \u03C4\u03B1 \u03B1\u03C1\u03B8\u03C1\u03CC\u03C0\u03BF\u03B4\u03B1, \u03BC\u03B5 \u03C0\u03AC\u03BD\u03C9 \u03B1\u03C0\u03CC 100.000 \u03B5\u03AF\u03B4\u03B7."@el . + . + . + . + . + "stadion"@nl . + "\u03C3\u03C4\u03AC\u03B4\u03B9\u03BF"@el . + "stade"@fr . + "stadium"@en . + "\uACBD\uAE30\uC7A5"@ko . + "\u30B9\u30BF\u30B8\u30A2\u30E0"@ja . + "Stadion"@de . + . + . + . + . + "wijn"@nl . + "\u03BA\u03C1\u03B1\u03C3\u03AF"@el . + "vin"@fr . + "vino"@it . + "vino"@es . + "wine"@en . + "\u30EF\u30A4\u30F3"@ja . + "Wein"@de . + . + . + . + . + "national soccer club"@en . + "nationaler Fu\u00DFballverein"@de . + "milli tak\u0131m"@tr . + "nationale voetbalclub"@nl . + . + . + . + "muzeum"@pl . + "museum"@nl . + "\u03BC\u03BF\u03C5\u03C3\u03B5\u03AF\u03BF"@el . + "mus\u00E9e"@fr . + "museu"@pt . + "museum"@en . + "m\u00FAsaem"@ga . + "\uBC15\uBB3C\uAD00"@ko . + "\u535A\u7269\u9928"@ja . + "Museum"@de . + . + . + . + . + "kunstschaatser"@nl . + "\u03B1\u03B8\u03BB\u03B7\u03C4\u03AE\u03C2 \u03C4\u03BF\u03C5 \u03BA\u03B1\u03BB\u03BB\u03B9\u03C4\u03B5\u03C7\u03BD\u03B9\u03BA\u03BF\u03CD \u03C0\u03B1\u03C4\u03B9\u03BD\u03AC\u03B6"@el . + "patineur artistique"@fr . + "patinador art\u00EDstico"@pt . + "patinador art\u00EDstico"@es . + "figure skater"@en . + "\u30D5\u30A3\u30AE\u30E5\u30A2\u30B9\u30B1\u30FC\u30C8\u9078\u624B"@ja . + "Eiskunstl\u00E4ufer"@de . + . + . + . + . + "manga"@nl . + "\u03BA\u03B9\u03BD\u03BF\u03CD\u03BC\u03B5\u03BD\u03B1 \u03C3\u03C7\u03AD\u03B4\u03B9\u03B1"@el . + "manga"@fr . + "manga"@it . + "manga"@en . + "\u65E5\u672C\u306E\u6F2B\u753B"@ja . + "manga"@de . + "Manga are comics created in Japan"@en . + "Manga is het Japanse equivalent van het stripverhaal"@nl . + . + . + . + . + "college"@nl . + "\u03BA\u03BF\u03BB\u03AD\u03B3\u03B9\u03BF"@el . + "universit\u00E9"@fr . + "faculdade"@pt . + "universidad"@es . + "college"@en . + "\uB2E8\uACFC\uB300\uD559"@ko . + "\u5358\u79D1\u5927\u5B66"@ja . + "College"@de . + . + . + . + . + "nascar coureur"@nl . + "\u03BF\u03B4\u03B7\u03B3\u03CC\u03C2 \u03B1\u03B3\u03CE\u03BD\u03C9\u03BD nascar"@el . + "pilote de la nascar"@fr . + "nascar driver"@en . + "NASCAR Fahrer"@de . + . + . + . + "periodical literature"@en . + "Periodikum"@de . + "\u03C0\u03B5\u03C1\u03B9\u03BF\u03B4\u03B9\u03BA\u03CC\u03C2 \u03C4\u03CD\u03C0\u03BF\u03C2"@el . + "publication p\u00E9riodique"@fr . + "Periodical literature (also called a periodical publication or simply a periodical) is a published work that appears in a new edition on a regular schedule. The most familiar examples are the newspaper, often published daily, or weekly; or the magazine, typically published weekly, monthly or as a quarterly. Other examples would be a newsletter, a literary journal or learned journal, or a yearbook."@en . + "\u03A0\u03B5\u03C1\u03B9\u03BF\u03B4\u03B9\u03BA\u03CC\u03C2 \u03A4\u03CD\u03C0\u03BF\u03C2 (\u03AE \u03B1\u03BB\u03BB\u03B9\u03CE\u03C2 \u03C0\u03B5\u03C1\u03B9\u03BF\u03B4\u03B9\u03BA\u03CC \u03AE \u03B5\u03C6\u03B7\u03BC\u03B5\u03C1\u03AF\u03B4\u03B1) \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B7 \u03B4\u03B7\u03BC\u03BF\u03C3\u03AF\u03B5\u03C5\u03C3\u03B7 \u03AC\u03C1\u03B8\u03C1\u03BF\u03C5 \u03AE \u03BD\u03AD\u03C9\u03BD \u03B1\u03BD\u03AC \u03C4\u03B1\u03BA\u03C4\u03AC \u03B4\u03B9\u03B1\u03C3\u03C4\u03AE\u03BC\u03B1\u03C4\u03B1. \u03A4\u03BF \u03C0\u03B9\u03BF \u03B3\u03BD\u03C9\u03C3\u03C4\u03CC \u03C0\u03B1\u03C1\u03AC\u03B4\u03B5\u03B9\u03B3\u03BC\u03B1 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03BF\u03B9 \u03B5\u03C6\u03B7\u03BC\u03B5\u03C1\u03AF\u03B4\u03B5\u03C2, \u03C0\u03BF\u03C5 \u03B4\u03B7\u03BC\u03BF\u03C3\u03B9\u03B5\u03CD\u03BF\u03BD\u03C4\u03B1\u03B9 \u03C3\u03B5 \u03BA\u03B1\u03B8\u03B7\u03BC\u03B5\u03C1\u03B9\u03BD\u03AE \u03AE \u03B5\u03B2\u03B4\u03BF\u03BC\u03B1\u03B4\u03B9\u03B1\u03AF\u03B1 \u03B2\u03AC\u03C3\u03B7 \u03BA\u03B1\u03B9 \u03C4\u03BF \u03C0\u03B5\u03C1\u03B9\u03BF\u03B4\u03B9\u03BA\u03CC, \u03C0\u03BF\u03C5 \u03C4\u03C5\u03C0\u03B9\u03BA\u03AC \u03B5\u03BA\u03B4\u03AF\u03B4\u03B5\u03C4\u03B1\u03B9 \u03C3\u03B5 \u03B5\u03B2\u03B4\u03BF\u03BC\u03B1\u03B4\u03B9\u03B1\u03AF\u03B1, \u03BC\u03B7\u03BD\u03B9\u03B1\u03AF\u03B1 \u03AE \u03B4\u03AF\u03BC\u03B7\u03BD\u03B7 \u03B2\u03AC\u03C3\u03B7. \u0386\u03BB\u03BB\u03B1 \u03C0\u03B1\u03C1\u03B1\u03B4\u03B5\u03AF\u03B3\u03BC\u03B1\u03C4\u03B1 \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF \u03BD\u03B1 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03C4\u03B1 \u03BD\u03AD\u03B1 \u03B5\u03BD\u03CC\u03C2 \u03BF\u03C1\u03B3\u03B1\u03BD\u03B9\u03C3\u03BC\u03BF\u03CD \u03AE \u03B5\u03C4\u03B1\u03B9\u03C1\u03B5\u03AF\u03B1\u03C2, \u03AD\u03BD\u03B1 \u03BB\u03BF\u03B3\u03BF\u03C4\u03B5\u03C7\u03BD\u03B9\u03BA\u03CC \u03AE \u03B5\u03BA\u03C0\u03B1\u03B9\u03B4\u03B5\u03C5\u03C4\u03B9\u03BA\u03CC \u03C0\u03B5\u03C1\u03B9\u03BF\u03B4\u03B9\u03BA\u03CC \u03AE \u03AD\u03BD\u03B1 \u03B5\u03C4\u03AE\u03C3\u03B9\u03BF \u03BB\u03B5\u03CD\u03BA\u03C9\u03BC\u03B1."@el . + "Unter Periodikum wird im Bibliothekswesen im Gegensatz zu Monografien ein (in der Regel) regelm\u00E4\u00DFig erscheinendes Druckwerk bezeichnet. Es handelt sich um den Fachbegriff f\u00FCr Heftreihen, Gazetten, Journale, Magazine, Zeitschriften und Zeitungen."@de . + "Une publication p\u00E9riodique est un titre de presse qui para\u00EEt r\u00E9guli\u00E8rement."@fr . + . + . + . + . + "ader"@nl . + "\u03C6\u03BB\u03AD\u03B2\u03B1"@el . + "veine"@fr . + "veia"@pt . + "vein"@en . + "\u9759\u8108"@ja . + "Vene"@de . + . + . + . + . + "plant"@nl . + "\u03C6\u03C5\u03C4\u03CC"@el . + "plante"@fr . + "pianta"@it . + "plant"@en . + "\u690D\u7269"@ja . + "pflanze"@de . + . + . + . + . + "film"@pl . + "film"@nl . + "\u03C4\u03B1\u03B9\u03BD\u03AF\u03B1"@el . + "film"@fr . + "pel\u00EDcula"@es . + "movie"@en . + "scann\u00E1n"@ga . + "\uC601\uD654"@ko . + "\u6620\u753B"@ja . + "\u0641\u064A\u0644\u0645"@ar . + "Film"@de . + . + . + . + . + . + "Concentration camp"@en . + "Konzentrationslager"@de . + "concentratiekamp"@nl . + . + . + . + "water polo Player"@en . + "Wasserpolo Spieler"@de . + "waterpolo\u00EBr"@nl . + "giocatore di pallanuoto"@it . + . + . + . + "skigebied"@nl . + "\u03A0\u03B5\u03C1\u03B9\u03BF\u03C7\u03AE \u03A7\u03B9\u03BF\u03BD\u03BF\u03B4\u03C1\u03BF\u03BC\u03AF\u03B1\u03C2"@el . + "domaine skiable"@fr . + "ski area"@en . + "\u30B9\u30AD\u30FC\u5834"@ja . + "Skigebiet"@de . + . + . + . + . + "gitaar"@nl . + "\u03BA\u03B9\u03B8\u03AC\u03C1\u03B1"@el . + "Guitare"@fr . + "Guitarra"@es . + "Guitar"@en . + "Gitarre"@de . + "beschrijving van de gitaar"@nl . + "\u03A0\u03B5\u03C1\u03B9\u03B3\u03C1\u03AC\u03C6\u03B5\u03B9 \u03C4\u03B7\u03BD \u03BA\u03B9\u03B8\u03AC\u03C1\u03B1"@el . + "D\u00E9crit la guitare"@fr . + "Describe la guitarra"@es . + "Describes the guitar"@en . + . + . + . + . + "predikant"@nl . + "\u03B9\u03B5\u03C1\u03BF\u03BA\u03AE\u03C1\u03C5\u03BA\u03B1\u03C2"@el . + "pasteur"@fr . + "vicar"@en . + "Pfarrer"@de . + . + . + . + "Nordic Combined"@en . + "Nordischer Kombinierer"@de . + . + . + . + "zwemmer"@nl . + "K\u03BF\u03BB\u03C5\u03BC\u03B2\u03B7\u03C4\u03AE\u03C2"@el . + "nageur"@fr . + "nadador"@pt . + "nuotatore"@it . + "nadador"@es . + "swimmer"@en . + "\uC218\uC601 \uC120\uC218"@ko . + "\u7AF6\u6CF3\u9078\u624B"@ja . + "Schwimmer"@de . + "a trained athlete who participates in swimming meets"@en . + "\u03AD\u03BD\u03B1\u03C2 \u03B5\u03BA\u03C0\u03B1\u03B9\u03B4\u03B5\u03C5\u03BC\u03AD\u03BD\u03BF\u03C2 \u03B1\u03B8\u03BB\u03B7\u03C4\u03AE\u03C2 \u03C0\u03BF\u03C5 \u03C3\u03C5\u03BC\u03BC\u03B5\u03C4\u03AD\u03C7\u03B5\u03B9 \u03C3\u03B5 \u03C3\u03C5\u03BD\u03B1\u03BD\u03C4\u03AE\u03C3\u03B5\u03B9\u03C2 \u03BA\u03BF\u03BB\u03CD\u03BC\u03B2\u03B7\u03C3\u03B7\u03C2"@el . + . + . + . + . + "eerste minister"@nl . + "\u03C0\u03C1\u03C9\u03B8\u03C5\u03C0\u03BF\u03C5\u03C1\u03B3\u03CC\u03C2"@el . + "premier ministre"@fr . + "prime minister"@en . + "\uCD1D\uB9AC"@ko . + "Premierminister"@de . + . + . + . + "atleet"@nl . + "\u03B1\u03B8\u03BB\u03B7\u03C4\u03AE\u03C2"@el . + "athl\u00E8te"@fr . + "atleta"@it . + "athlete"@en . + "\uC6B4\uB3D9 \uC120\uC218"@ko . + "\u30A2\u30B9\u30EA\u30FC\u30C8"@ja . + "Athlet"@de . + . + . + . + "kleur"@nl . + "\u03C7\u03C1\u03CE\u03BC\u03B1"@el . + "couleur"@fr . + "colour"@en . + "\uC0C9"@ko . + "\u8272"@ja . + "Farbe"@de . + "Color or colour is the visual perceptual property corresponding in humans to the categories called red, yellow, blue and others. Color derives from the spectrum of light (distribution of light energy versus wavelength) interacting in the eye with the spectral sensitivities of the light receptors."@en . + . + . + . + "escalator"@en . + "roltrap"@nl . + "Rolltreppe"@de . + . + . + . + . + "fabriek"@nl . + "\u03B5\u03C1\u03B3\u03BF\u03C3\u03C4\u03AC\u03C3\u03B9\u03BF"@el . + "usine"@fr . + "fabbrica"@it . + "factory"@en . + "\uACF5\uC7A5"@ko . + "\u5DE5\u5834"@ja . + "Fabrik"@de . + "A factory (previously manufactory) or manufacturing plant is an industrial site, usually consisting of buildings and machinery, or more commonly a complex having several buildings, where workers manufacture goods or operate machines processing one product into another."@en . + "\u03A4\u03BF \u03B5\u03C1\u03B3\u03BF\u03C3\u03C4\u03AC\u03C3\u03B9\u03BF \u03B5\u03AF\u03BD\u03B1\u03B9 \u03AD\u03BD\u03B1 \u03BA\u03C4\u03AF\u03C1\u03B9\u03BF \u03BC\u03AD\u03C3\u03B1 \u03C3\u03C4\u03BF \u03BF\u03C0\u03BF\u03AF\u03BF, \u03BC\u03B5 \u03C4\u03B7 \u03B2\u03BF\u03AE\u03B8\u03B5\u03B9\u03B1 \u03C4\u03C9\u03BD \u03BC\u03B7\u03C7\u03B1\u03BD\u03B7\u03BC\u03AC\u03C4\u03C9\u03BD \u03BA\u03B1\u03B9 \u03C4\u03B7 \u03C3\u03B7\u03BC\u03B1\u03BD\u03C4\u03B9\u03BA\u03CC\u03C4\u03B1\u03C4\u03B7 \u03C3\u03C5\u03BD\u03B5\u03B9\u03C3\u03C6\u03BF\u03C1\u03AC \u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1\u03C2 \u03B1\u03C0\u03CC \u03C4\u03BF\u03C5\u03C2 \u03B5\u03C1\u03B3\u03AC\u03C4\u03B5\u03C2, \u03C0\u03B1\u03C1\u03AC\u03B3\u03BF\u03BD\u03C4\u03B1\u03B9 \u03C3\u03AE\u03BC\u03B5\u03C1\u03B1 \u03CC\u03BB\u03B1 \u03C3\u03C7\u03B5\u03B4\u03CC\u03BD \u03C4\u03B1 \u03B2\u03B9\u03BF\u03BC\u03B7\u03C7\u03B1\u03BD\u03B9\u03BA\u03AC \u03B5\u03AF\u03B4\u03B7, \u03B5\u03AF\u03C4\u03B5 \u03B1\u03C5\u03C4\u03AC \u03C7\u03C1\u03B5\u03B9\u03AC\u03B6\u03BF\u03BD\u03C4\u03B1\u03B9 \u03C0\u03AC\u03BB\u03B9 \u03B3\u03B9\u03B1 \u03C4\u03B7\u03BD \u03C0\u03B1\u03C1\u03B1\u03B3\u03C9\u03B3\u03AE (\u03CC\u03C0\u03C9\u03C2 \u03BC\u03B7\u03C7\u03B1\u03BD\u03AD\u03C2 \u03BA\u03BB\u03C0.) \u03B5\u03AF\u03C4\u03B5 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03BA\u03B1\u03C4\u03B1\u03BD\u03B1\u03BB\u03C9\u03C4\u03B9\u03BA\u03AC \u03B1\u03B3\u03B1\u03B8\u03AC."@el . + "Une usine est un b\u00E2timent ou un ensemble de b\u00E2timents destin\u00E9s \u00E0 la production industrielle."@fr . + . + . + . + . + "conveyor system"@en . + "F\u00F6rdersystem"@de . + "transportsysteem"@nl . + . + . + . + . + "geschreven werk"@nl . + "\u0153uvre \u00E9crite"@fr . + "obra escrita"@es . + "written work"@en . + "geschriebenes Erzeugnis"@de . + "Written work is any text written to read it (e.g.: books, newspaper, articles)"@en . + "Ein geschriebenes Erzeugnis ist jede Art von Text der geschrieben wurde um ihn zu lesen (z.B. B\u00FCcher, Zeitungen, Artikel)."@de . + . + . + . + "snooker world champion"@en . + "Snookerweltmeister"@de . + "An athlete that plays snooker and won the world championship at least once"@en . + "Ein Sportler der Snooker spielt und mindestens einmal die Weltmeisterschaft gewonnen hat"@de . + . + . + . + "ambassadeur"@nl . + "\u03C0\u03C1\u03B5\u03C3\u03B2\u03B5\u03C5\u03C4\u03AE\u03C2"@el . + "ambassadeur"@fr . + "ambasciatore"@it . + "embajador"@es . + "ambassador"@en . + "\uB300\uC0AC (\uC678\uAD50\uAD00)"@ko . + "\u5927\u4F7F"@ja . + "Botschafter"@de . + "An ambassador is the highest ranking diplomat that represents a nation and is usually accredited to a foreign sovereign or government, or to an international organization."@en . + . + . + . + . + "parlement"@nl . + "\u03BA\u03BF\u03B9\u03BD\u03BF\u03B2\u03BF\u03CD\u03BB\u03B9\u03BF"@el . + "parlamento"@es . + "parliament"@en . + "Parlament"@de . + . + . + . + . + "travellator"@en . + "Rollsteig"@de . + "rolpad"@nl . + . + . + . + . + "snooker world ranking"@en . + "Snookerweltrangliste"@de . + "wereldranglijst snooker"@nl . + "The official world ranking in snooker for a certain year/season"@en . + "Die offizielle Weltrangliste im Snooker eines Jahres / einer Saison"@de . + . + . + . + "venue"@en . + "Veranstaltungsort"@de . + "\u03C4\u03CC\u03C0\u03BF\u03C2 \u03C3\u03C5\u03BD\u03AC\u03BD\u03C4\u03B7\u03C3\u03B7\u03C2"@el . + "\uACBD\uAE30\uC7A5"@ko . + . + . + . + "radioprogramma"@nl . + "\u03C1\u03B1\u03B4\u03B9\u03BF\u03C6\u03C9\u03BD\u03B9\u03BA\u03CC \u03C0\u03C1\u03CC\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1"@el . + "programma radiofonico"@it . + "radio program"@en . + "\u30E9\u30B8\u30AA\u756A\u7D44"@ja . + "radio programm"@de . + . + . + . + . + "lid koningshuis"@nl . + "\u03B3\u03B1\u03BB\u03B1\u03B6\u03BF\u03B1\u03AF\u03BC\u03B1\u03C4\u03BF\u03C2"@el . + "royaut\u00E9"@fr . + "realeza"@es . + "royalty"@en . + "\uC655\uC871"@ko . + "kraljevska oseba"@sl . + "\u738B\u5BA4"@ja . + "K\u00F6nigtum"@de . + . + . + . + "biologist"@en . + "Biologe"@de . + "bioloog"@nl . + . + . + . + "woestijn"@nl . + "\u0388\u03C1\u03B7\u03BC\u03BF\u03C2"@el . + "D\u00E9sert"@fr . + "Desierto"@es . + "Desert"@en . + "W\u00FCste"@de . + "A barren area of land where little precipitation occurs."@en . + "\u039C\u03AF\u03B1 \u03AC\u03B3\u03BF\u03BD\u03B7 \u03C0\u03B5\u03C1\u03B9\u03BF\u03C7\u03AE \u03CC\u03C0\u03BF\u03C5 \u03C5\u03C0\u03AC\u03C1\u03C7\u03B5\u03B9 \u03C0\u03BF\u03BB\u03CD \u03BC\u03B9\u03BA\u03C1\u03AE \u03B2\u03C1\u03BF\u03C7\u03CC\u03C0\u03C4\u03C9\u03C3\u03B7."@el . + . + . + . + "basketbalteam"@nl . + "\u039A\u03BF\u03C5\u03C4\u03AF \u03C0\u03BB\u03B7\u03C1\u03BF\u03C6\u03BF\u03C1\u03B9\u03CE\u03BD \u03C3\u03C5\u03BB\u03BB\u03CC\u03B3\u03BF\u03C5 \u03BA\u03B1\u03BB\u03B1\u03B8\u03BF\u03C3\u03C6\u03B1\u03AF\u03C1\u03B9\u03C3\u03B7\u03C2"@el . + "\u00E9quipe de basket-ball"@fr . + "time de basquete"@pt . + "squadra di pallacanestro"@it . + "basketball team"@en . + "\uB18D\uAD6C \uD300"@ko . + "\u30D0\u30B9\u30B1\u30C3\u30C8\u30DC\u30FC\u30EB\u30C1\u30FC\u30E0"@ja . + "Basketballmannschaft"@de . + . + . + . + "scenarioschrijver"@nl . + "\u03C3\u03B5\u03BD\u03B1\u03C1\u03B9\u03BF\u03B3\u03C1\u03AC\u03C6\u03BF\u03C2"@el . + "sc\u00E9nariste"@fr . + "sceneggiatore"@it . + "screenwriter"@en . + "Drehbuchautor"@de . + "\u039F \u03C3\u03B5\u03BD\u03B1\u03C1\u03B9\u03BF\u03B3\u03C1\u03AC\u03C6\u03BF\u03C2 \u03CC\u03C7\u03B9 \u03BC\u03CC\u03BD\u03BF \u03B3\u03C1\u03AC\u03C6\u03B5\u03B9 \u03C4\u03B7\u03BD \u03C5\u03C0\u03CC\u03B8\u03B5\u03C3\u03B7 \u03BC\u03B9\u03B1\u03C2 \u03C3\u03B5\u03B9\u03C1\u03AC\u03C2 \u03AC\u03BB\u03BB\u03B1 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B1\u03C5\u03C4\u03CC\u03C2 \u03C0\u03BF\u03C5 \u03B5\u03C0\u03B9\u03BD\u03BF\u03B5\u03AF \u03BA\u03B1\u03B9 \u03C4\u03BF\u03C5\u03C2 \u03C0\u03C1\u03C9\u03C4\u03B1\u03B3\u03C9\u03BD\u03B9\u03C3\u03C4\u03AD\u03C2 \u03C4\u03BF\u03C5 \u03AD\u03C1\u03B3\u03BF\u03C5."@el . + . + . + . + . + "Lawyer"@en . + "Avocat"@fr . + "advocaat"@nl . + "Anwalt"@de . + "a person who is practicing law."@en . + . + . + . + . + "planeta"@pl . + "planeet"@nl . + "\u03A0\u03BB\u03B1\u03BD\u03AE\u03C4\u03B7\u03C2"@el . + "plan\u00E8te"@fr . + "Planeta"@pt . + "planeta"@es . + "planet"@en . + "pl\u00E1in\u00E9ad"@ga . + "planet"@sl . + "\u60D1\u661F"@ja . + "planeta"@ca . + "Planet"@de . + . + . + . + . + "speed skater"@en . + "Eisschnelll\u00E4ufer"@de . + "langebaanschaatser"@nl . + . + . + . + "gedeputeerde"@nl . + "\u03B1\u03BD\u03B1\u03C0\u03BB\u03B7\u03C1\u03C9\u03C4\u03AE\u03C2"@el . + "d\u00E9put\u00E9"@fr . + "diputado"@es . + "deputy"@en . + "Stellvertreter"@de . + . + . + . + "Movie director"@en . + "regisseur"@nl . + "Filmregisseur"@de . + "r\u00E9alisateur de film"@fr . + "a person who oversees making of film."@en . + . + . + . + . + "familie"@nl . + "\u03BF\u03B9\u03BA\u03BF\u03B3\u03AD\u03BD\u03B5\u03B9\u03B1"@el . + "famille"@fr . + "familia"@es . + "family"@en . + "\u5BB6\u65CF"@ja . + "Familie"@de . + "A group of people related by common descent, a lineage."@en . + "\u039C\u03B9\u03B1 \u03BF\u03BC\u03AC\u03B4\u03B1 \u03B1\u03BD\u03B8\u03C1\u03CE\u03C0\u03C9\u03BD \u03C0\u03BF\u03C5 \u03C3\u03C5\u03BD\u03B4\u03AD\u03BF\u03BD\u03C4\u03B1\u03B9 \u03BC\u03B5 \u03BA\u03BF\u03B9\u03BD\u03AE \u03BA\u03B1\u03C4\u03B1\u03B3\u03C9\u03B3\u03AE, \u03BC\u03B9\u03B1 \u03B3\u03B5\u03BD\u03B5\u03B1\u03BB\u03BF\u03B3\u03AF\u03B1."@el . + . + . + . + . + "gate"@en . + "\u03C0\u03CD\u03BB\u03B7"@el . + "Tor"@de . + "poort(gebouw)"@nl . + "Gate is defined as a built structure marking the entrance to a building or an estate."@en . + "Een bouwsel dat de toegang tot een gebouw of stuk grond verleent dan wel afsluit."@nl . + . + . + . + . + . + "vliegjaren"@nl . + "ann\u00E9e de vols spatiaux"@fr . + "a\u00F1o del vuelo espacial"@es . + "year in spaceflight"@en . + "Zeitraum Raumflug"@de . + . + . + . + "heiligdom"@nl . + "\u03B2\u03C9\u03BC\u03CC\u03C2"@el . + "sanctuaire"@fr . + "santuario"@it . + "shrine"@en . + "\u795E\u793E"@ja . + "schrein"@de . + . + . + . + . + "vodka"@en . + "Wodka"@de . + "wodka"@nl . + . + . + . + "population"@en . + "Bev\u00F6lkerung"@de . + "\u03C0\u03BB\u03B7\u03B8\u03C5\u03C3\u03BC\u03CC\u03C2"@el . + "bevolking"@nl . + . + . + . + . + "wie\u015B"@pl . + "dorp"@nl . + "\u03C7\u03C9\u03C1\u03B9\u03CC"@el . + "village"@fr . + "village"@en . + "\u6751"@ja . + "desa"@id . + "dorf"@de . + "a clustered human settlement or community, usually smaller a town"@en . + . + . + . + . + "schouwburg"@nl . + "\u03B8\u03AD\u03B1\u03C4\u03C1\u03BF"@el . + "th\u00E9\u00E2tre"@fr . + "theatre"@en . + "\u5287\u5834"@ja . + "Theater"@de . + "A theater or theatre (also a playhouse) is a structure where theatrical works or plays are performed or other performances such as musical concerts may be produced."@en . + . + . + . + . + "drama"@nl . + "\u03B4\u03C1\u03AC\u03BC\u03B1"@el . + "drame"@fr . + "Drama"@en . + "\uB4DC\uB77C\uB9C8"@ko . + "Drama"@de . + . + . + . + . + "winter sport Player"@en . + "Wintersportspieler"@de . + "wintersporter"@nl . + . + . + . + "beschermd gebied"@nl . + "\u03C0\u03C1\u03BF\u03C3\u03C4\u03B1\u03C4\u03B5\u03C5\u03BC\u03AD\u03BD\u03B7 \u03C0\u03B5\u03C1\u03B9\u03BF\u03C7\u03AE"@el . + "aire prot\u00E9g\u00E9e"@fr . + "protected area"@en . + "\u4FDD\u8B77\u5730\u533A"@ja . + "Schutzgebiet"@de . + "This class should be used for protected nature. For enclosed neighbourhoods there is now class GatedCommunity"@en . + "Deze klasse duidt gebieden aan met de status 'beschermd'. Is dus eigenlijk ook geen klasse, maar zou een attribuut moeten zijn"@nl . + . + . + . + . + "penalty shoot-out"@en . + "Elfmeterschie\u00DFen"@de . + . + . + . + . + "rocket engine"@en . + "raketmotor"@nl . + "Raketmotor"@de . + . + . + . + "kanaal"@nl . + "\u03BA\u03B1\u03BD\u03AC\u03BB\u03B9"@el . + "canal"@fr . + "canale"@it . + "canal"@en . + "\uC6B4\uD558"@ko . + "\u904B\u6CB3"@ja . + "kanal"@de . + "a man-made channel for water"@en . + "\u03AD\u03BD\u03B1 \u03BA\u03B1\u03BD\u03AC\u03BB\u03B9 \u03B3\u03B9\u03B1 \u03BD\u03B5\u03C1\u03CC \u03C6\u03C4\u03B9\u03B1\u03B3\u03BC\u03AD\u03BD\u03BF \u03B1\u03C0\u03CC \u03AC\u03BD\u03B8\u03C1\u03C9\u03C0\u03BF"@el . + . + . + . + . + "werkgever"@nl . + "\u0395\u03C1\u03B3\u03BF\u03B4\u03CC\u03C4\u03B7\u03C2"@el . + "Employeur"@fr . + "Empleador"@es . + "Employer"@en . + "Arbeitgeber"@de . + "a person, business, firm, etc, that employs workers."@en . + "Arbeitgeber ist, wer die Arbeitsleistung des Arbeitnehmers kraft Arbeitsvertrages fordern kann und das Arbeitsentgelt schuldet."@de . + "\u03AC\u03C4\u03BF\u03BC\u03BF, \u03B5\u03C0\u03B9\u03C7\u03B5\u03AF\u03C1\u03B7\u03C3\u03B7, \u03BF\u03C1\u03B3\u03B1\u03BD\u03B9\u03C3\u03BC\u03CC\u03C2, \u03BA\u03BB\u03C0 \u03C0\u03BF\u03C5 \u03C0\u03C1\u03BF\u03C3\u03BB\u03B1\u03BC\u03B2\u03AC\u03BD\u03B5\u03B9 \u03B5\u03C1\u03B3\u03B1\u03B6\u03CC\u03BC\u03B5\u03BD\u03BF\u03C5\u03C2."@el . + . + . + . + . + "genre (muziek)"@nl . + "\u03BC\u03BF\u03C5\u03C3\u03B9\u03BA\u03CC \u03B5\u03AF\u03B4\u03BF\u03C2"@el . + "genre musical"@fr . + "g\u00E9nero musical"@pt . + "genere musicale"@it . + "music genre"@en . + "\uC74C\uC545 \uC7A5\uB974"@ko . + "musik genre"@de . + . + . + . + . + . + "pretparkattractie"@nl . + "\u03B4\u03C1\u03B1\u03C3\u03C4\u03B7\u03C1\u03B9\u03CC\u03C4\u03B7\u03C4\u03B1 \u03BB\u03BF\u03CD\u03BD\u03B1 \u03C0\u03AC\u03C1\u03BA"@el . + "atracci\u00F3n de parque de atracciones"@es . + "amusement park attraction"@en . + "Vergn\u00FCgungsparkattraktion"@de . + . + . + . + "rok"@pl . + "jaar"@nl . + "\u03AD\u03C4\u03BF\u03C2"@el . + "ann\u00E9e"@fr . + "ano"@pt . + "a\u00F1o"@es . + "year"@en . + "bliain"@ga . + "\u5E74"@ja . + "Jahr"@de . + . + . + . + . + . + "priester"@nl . + "\u03C0\u03B1\u03C0\u03AC\u03C2"@el . + "pr\u00EAtre"@fr . + "prete"@it . + "priest"@en . + "\u53F8\u796D"@ja . + "priester"@de . + . + . + . + . + "congressist"@nl . + "\u03B2\u03BF\u03C5\u03BB\u03B5\u03C5\u03C4\u03AE\u03C2"@el . + "membre du Congr\u00E8s"@fr . + "congressman"@en . + "\uD558\uC6D0 \uC758\uC6D0"@ko . + "Abgeordneter"@de . + . + . + . + "music composer"@en . + "compositeur"@fr . + "componist"@nl . + "Komponist"@de . + "a person who creates music."@en . + . + . + . + "sport"@nl . + "\u0391\u03B8\u03BB\u03AE\u03BC\u03B1\u03C4\u03B1"@el . + "sport"@fr . + "esporte"@pt . + "Deporte"@es . + "sport"@en . + "\uC2A4\uD3EC\uCE20"@ko . + "\u30B9\u30DD\u30FC\u30C4"@ja . + "Sport"@de . + "A sport is commonly defined as an organized, competitive, and skillful physical activity."@en . + . + . + . + . + "back scene"@en . + "Backround-Chor"@de . + "achtergrond koor"@nl . + . + . + . + "zenuw"@nl . + "\u03BD\u03B5\u03CD\u03C1\u03BF"@el . + "nerf"@fr . + "nerve"@en . + "Nerv"@de . + . + . + . + . + "comic strip"@en . + "Comicstrip"@de . + . + . + . + "samba school"@nl . + "\u03C3\u03C7\u03BF\u03BB\u03AE \u03C3\u03AC\u03BC\u03C0\u03B1"@el . + "escola de samba"@pt . + "escuela de samba"@es . + "samba school"@en . + "Sambaschule"@de . + . + . + . + "hotel"@nl . + "\u03BE\u03B5\u03BD\u03BF\u03B4\u03BF\u03C7\u03B5\u03AF\u03BF"@el . + "h\u00F4tel"@fr . + "albergo"@it . + "hotel"@en . + "\uD638\uD154"@ko . + "\u30DB\u30C6\u30EB"@ja . + "Hotel"@de . + . + . + . + . + . + "fashion designer"@en . + "Modedesigner"@de . + "\u03C3\u03C7\u03B5\u03B4\u03B9\u03B1\u03C3\u03C4\u03AE\u03C2 \u03BC\u03CC\u03B4\u03B1\u03C2"@el . + "modeontwerper"@nl . + . + . + . + . + "biblioteka"@pl . + "bibliotheek"@nl . + "\u03B2\u03B9\u03B2\u03BB\u03B9\u03BF\u03B8\u03AE\u03BA\u03B7"@el . + "biblioth\u00E8que"@fr . + "Biblioteca"@es . + "library"@en . + "leabharlann"@ga . + "\uB3C4\uC11C\uAD00"@ko . + "\u56F3\u66F8\u9928"@ja . + "Bibliothek"@de . + . + . + . + . + . + . + "orgel"@nl . + "\u03CC\u03C1\u03B3\u03B1\u03BD\u03BF"@el . + "Orgue"@fr . + "organ"@en . + "Orgel"@de . + "All types and sizes of organs"@en . + "\u038C\u03BB\u03B1 \u03C4\u03B1 \u03B5\u03AF\u03B4\u03B7 \u03BA\u03B1\u03B9 \u03C4\u03B1 \u03BC\u03B5\u03B3\u03AD\u03B8\u03B7 \u03C4\u03C9\u03BD \u03BF\u03C1\u03B3\u03AC\u03BD\u03C9\u03BD"@el . + . + . + . + . + "beroep"@nl . + "\u03B5\u03C0\u03AC\u03B3\u03B3\u03B5\u03BB\u03BC\u03B1"@el . + "m\u00E9tier"@fr . + "profession"@en . + "Beruf"@de . + . + . + . + . + "(foto)model"@nl . + "\u03BC\u03BF\u03BD\u03C4\u03AD\u03BB\u03BF"@el . + "mannequin"@fr . + "Model"@en . + "\uBAA8\uB378"@ko . + "\u30E2\u30C7\u30EB_(\u8077\u696D)"@ja . + "model"@de . + . + . + . + . + "bindweefsel"@nl . + "\u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF\u03C2"@el . + "ligamento"@pt . + "ligament"@en . + "Band (Anatomie)"@de . + . + . + . + . + "BobsleighAthlete"@en . + "Bobsportler"@de . + . + . + . + "aktywno\u015B\u0107"@pl . + "activiteit"@nl . + "\u0394\u03C1\u03B1\u03C3\u03C4\u03B7\u03C1\u03B9\u03CC\u03C4\u03B7\u03C4\u03B1"@el . + "activit\u00E9"@fr . + "atividade"@pt . + "attivit\u00E0"@it . + "actividad"@es . + "activity"@en . + "\uD65C\uB3D9"@ko . + "\u6D3B\u52D5"@zh . + "\u6D3B\u52D5"@ja . + "Aktivit\u00E4t"@de . + . + . + . + . + . + . + "Stadtviertel"@de . + "city district"@en . + "quartier"@fr . + "stadswijk"@nl . + "District, borough, area or neighbourhood in a city or town"@en . + . + . + . + "wijnmakerij"@nl . + "\u03BF\u03B9\u03BD\u03BF\u03C0\u03BF\u03B9\u03B5\u03AF\u03BF"@el . + "casa vinicola"@it . + "winery"@en . + "Weinkellerei"@de . + . + . + . + . + "national football league event"@en . + "NFL Game day"@de . + . + . + . + "platenlabel"@nl . + "\u03B4\u03B9\u03C3\u03BA\u03BF\u03B3\u03C1\u03B1\u03C6\u03B9\u03BA\u03AE"@el . + "label discographique"@fr . + "record label"@en . + "Plattenlabel"@de . + . + . + . + . + "metrostation"@nl . + "\u03C3\u03C4\u03AC\u03C3\u03B7 \u03BC\u03B5\u03C4\u03C1\u03CC"@el . + "station de m\u00E9tro"@fr . + "subway station"@en . + "U-Bahn Station"@de . + "\u0397 \u03C3\u03C4\u03AC\u03C3\u03B7 \u03BC\u03B5\u03C4\u03C1\u03CC \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03B5\u03AF\u03C4\u03B1\u03B9 \u03C3\u03C5\u03BD\u03AE\u03B8\u03C9\u03C2 \u03B3\u03B9\u03B1 \u03BC\u03B9\u03B1 \u03C4\u03BF\u03C0\u03BF\u03B8\u03B5\u03C3\u03AF\u03B1 \u03AE \u03C3\u03B7\u03BC\u03B5\u03AF\u03BF \u03CC\u03C0\u03BF\u03C5 \u03C3\u03C4\u03B1\u03BC\u03B1\u03C4\u03AC\u03B5\u03B9 \u03C4\u03BF \u03BC\u03B5\u03C4\u03B1\u03C6\u03BF\u03C1\u03B9\u03BA\u03CC \u03BC\u03AD\u03C3\u03BF \u03BC\u03B5\u03C4\u03C1\u03CC"@el . + . + . + . + . + "stemacteur"@nl . + "acteur de doublage"@fr . + "voice actor"@en . + "\uC131\uC6B0"@ko . + "\u58F0\u512A"@ja . + "Synchronsprecher"@de . + . + . + . + "Olympische Spelen"@nl . + "\u03BF\u03BB\u03C5\u03BC\u03C0\u03B9\u03B1\u03BA\u03BF\u03AF \u03B1\u03B3\u03CE\u03BD\u03B5\u03C2"@el . + "Jeux Olympiques"@fr . + "Juegos Ol\u00EDmpicos"@es . + "olympics"@en . + "\uC62C\uB9BC\uD53D"@ko . + "\u8FD1\u4EE3\u30AA\u30EA\u30F3\u30D4\u30C3\u30AF"@ja . + "Olympiade"@de . + . + . + . + "attack"@en . + "Angriff, Anschlag"@de . + "attaque, attentat"@fr . + "aanval, aanslag"@nl . + "An Attack is not necessarily part of a Military Conflict"@en . + . + . + . + "canadian football competitie"@nl . + "\u03BA\u03B1\u03BD\u03B1\u03B4\u03B9\u03BA\u03AE \u03AD\u03BD\u03C9\u03C3\u03B7 \u03C0\u03BF\u03B4\u03BF\u03C3\u03C6\u03B1\u03AF\u03C1\u03BF\u03C5"@el . + "canadian football league"@fr . + "lega di football canadese"@it . + "liga de f\u00FAtbol canadiense"@en . + "\uCE90\uB098\uB2E4 \uD48B\uBCFC \uB9AC\uADF8"@ko . + "\u30AB\u30CA\u30C7\u30A3\u30A2\u30F3\u30FB\u30D5\u30C3\u30C8\u30DC\u30FC\u30EB\u30FB\u30EA\u30FC\u30B0"@ja . + "Kanadische Footballliga"@de . + "A group of sports teams that compete against each other in canadian football league."@en . + "\u03AD\u03BD\u03B1 \u03C3\u03CD\u03BD\u03BF\u03BB\u03BF \u03B1\u03B8\u03BB\u03B7\u03C4\u03B9\u03BA\u03CE\u03BD \u03BF\u03BC\u03AC\u03B4\u03C9\u03BD \u03C0\u03BF\u03C5 \u03B1\u03BD\u03C4\u03B1\u03B3\u03C9\u03BD\u03AF\u03B6\u03BF\u03BD\u03C4\u03B1\u03B9 \u03BC\u03B5\u03C4\u03B1\u03BE\u03CD \u03C4\u03BF\u03C5\u03C2 \u03C3\u03C4\u03B7\u03BD \u039A\u03B1\u03BD\u03B1\u03B4\u03B9\u03BA\u03AE \u03AD\u03BD\u03C9\u03C3\u03B7 \u03C0\u03BF\u03B4\u03BF\u03C3\u03C6\u03B1\u03AF\u03C1\u03BF\u03C5"@el . + . + . + . + "prehistorical period"@en . + "pr\u00E4historisch Zeitalter"@de . + "\u03C0\u03C1\u03BF\u03CA\u03C3\u03C4\u03BF\u03C1\u03B9\u03BA\u03AE \u03C0\u03B5\u03C1\u03AF\u03BF\u03B4\u03BF"@el . + "periode in de prehistorie"@nl . + . + . + . + . + "brouwerij"@nl . + "\u03B6\u03C5\u03B8\u03BF\u03C0\u03BF\u03B9\u03AF\u03B1"@el . + "brasserie"@fr . + "birrificio"@it . + "cervecer\u00EDa"@es . + "brewery"@en . + "Brauerei"@de . + "\u0396\u03C5\u03B8\u03BF\u03C0\u03BF\u03B9\u03AF\u03B1 \u03BF\u03BD\u03BF\u03BC\u03AC\u03B6\u03B5\u03C4\u03B1\u03B9 \u03B7 \u03B2\u03B9\u03BF\u03BC\u03B7\u03C7\u03B1\u03BD\u03AF\u03B1 \u03C0\u03B1\u03C1\u03B1\u03C3\u03BA\u03B5\u03C5\u03AE\u03C2 \u03BC\u03C0\u03CD\u03C1\u03B1\u03C2."@el . + . + . + . + "jedzenie"@pl . + "voedsel"@nl . + "\u03C6\u03B1\u03B3\u03B7\u03C4\u03CC"@el . + "nourriture"@fr . + "comida"@pt . + "alimento"@es . + "Food"@en . + "bia"@ga . + "\uC74C\uC2DD"@ko . + "\u98DF\u54C1"@ja . + "Lebensmittel"@de . + "Food is any eatable or drinkable substance that is normally consumed by humans."@en . + "\u03A6\u03B1\u03B3\u03B7\u03C4\u03CC \u03B5\u03AF\u03BD\u03B1\u03B9 \u03BF\u03C0\u03BF\u03B9\u03B1\u03B4\u03AE\u03C0\u03BF\u03C4\u03B5 \u03C6\u03B1\u03B3\u03CE\u03C3\u03B9\u03BC\u03B7 \u03AE \u03C0\u03CC\u03C3\u03B9\u03BC\u03B7 \u03BF\u03C5\u03C3\u03AF\u03B1 \u03C0\u03BF\u03C5 \u03BA\u03B1\u03C4\u03B1\u03BD\u03B1\u03BB\u03CE\u03BD\u03B5\u03C4\u03B1\u03B9 \u03BA\u03B1\u03BD\u03BF\u03BD\u03B9\u03BA\u03AC \u03B1\u03C0\u03CC \u03B1\u03BD\u03B8\u03C1\u03CE\u03C0\u03BF\u03C5\u03C2."@el . + "Lebensmittel umfasst als Oberbegriff sowohl Getr\u00E4nke als auch die Nahrungsmittel und Genussmittel."@de . + . + . + . + . + . + "lied"@nl . + "\u03C4\u03C1\u03B1\u03B3\u03BF\u03CD\u03B4\u03B9"@el . + "chanson"@fr . + "canzone"@it . + "song"@en . + "\uB178\uB798"@ko . + "\u6B4C"@ja . + "lied"@de . + . + . + . + . + "Mathematical concept"@en . + "mathematisches Konzept"@de . + "Mathematical concepts, e.g. Fibonacci numbers, Imaginary numbers, Symmetry"@en . + . + . + . + "toneelstuk"@nl . + "\u03C0\u03B1\u03B9\u03C7\u03BD\u03AF\u03B4\u03B9"@el . + "pi\u00E8ce de th\u00E9\u00E2tre"@fr . + "obra de teatro"@es . + "play"@en . + "\u622F\u66F2"@ja . + "Theaterst\u00FCck"@de . + "A play is a form of literature written by a playwright, usually consisting of scripted dialogue between characters, intended for theatrical performance rather than just reading."@en . + "\u0388\u03BD\u03B1 \u03C0\u03B1\u03B9\u03C7\u03BD\u03AF\u03B4\u03B9 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03BC\u03B9\u03B1 \u03BC\u03BF\u03C1\u03C6\u03AE \u03C4\u03B7\u03C2 \u03BB\u03BF\u03B3\u03BF\u03C4\u03B5\u03C7\u03BD\u03AF\u03B1\u03C2, \u03B3\u03C1\u03B1\u03BC\u03BC\u03AD\u03BD\u03BF \u03B1\u03C0\u03CC \u03AD\u03BD\u03B1\u03BD \u03C3\u03C5\u03B3\u03B3\u03C1\u03B1\u03C6\u03AD\u03B1, \u03C0\u03BF\u03C5 \u03C3\u03C5\u03BD\u03AE\u03B8\u03C9\u03C2 \u03B1\u03C0\u03BF\u03C4\u03B5\u03BB\u03B5\u03AF\u03C4\u03B1\u03B9 \u03B1\u03C0\u03CC \u03C3\u03B5\u03BD\u03AC\u03C1\u03B9\u03BF \u03C4\u03BF\u03C5 \u03B4\u03B9\u03B1\u03BB\u03CC\u03B3\u03BF\u03C5 \u03BC\u03B5\u03C4\u03B1\u03BE\u03CD \u03C4\u03C9\u03BD \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03AE\u03C1\u03C9\u03BD, \u03C0\u03BF\u03C5 \u03C0\u03C1\u03BF\u03BF\u03C1\u03AF\u03B6\u03B5\u03C4\u03B1\u03B9 \u03B3\u03B9\u03B1 \u03C4\u03B7\u03BD \u03B8\u03B5\u03B1\u03C4\u03C1\u03B9\u03BA\u03AE \u03C0\u03B1\u03C1\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03BA\u03B1\u03B9 \u03CC\u03C7\u03B9 \u03BC\u03CC\u03BD\u03BF \u03B1\u03BD\u03AC\u03B3\u03BD\u03C9\u03C3\u03B7."@el . + . + . + . + . + "Capital of region"@en . + "Capitale r\u00E9gionale"@fr . + "Hauptstadt der Region"@de . + "seat of a first order administration division."@en . + . + . + . + "album"@nl . + "album"@el . + "album"@fr . + "\u00E1lbum"@pt . + "album"@it . + "album"@es . + "album"@en . + "\uC568\uBC94"@ko . + "\u7167\u7247\u96C6"@zh . + "\u30A2\u30EB\u30D0\u30E0"@ja . + "Album"@de . + . + . + . + . + . + "Comedy Group"@en . + "cabaretgroep"@nl . + "\uCF54\uBBF8\uB514 \uADF8\uB8F9"@ko . + "Komikergruppe"@de . + . + . + . + "athletics Player"@en . + "atleet"@nl . + "Athlet"@de . + "giocatore di atletica leggera"@it . + . + . + . + "bestand"@nl . + "\u0391\u03C1\u03C7\u03B5\u03AF\u03BF"@el . + "fichier"@fr . + "file"@en . + "Datei"@de . + "A document with a filename"@en . + "\u0388\u03BD\u03B1 \u03C3\u03CD\u03BD\u03BF\u03BB\u03BF \u03B1\u03C0\u03CC \u03C3\u03C4\u03BF\u03B9\u03C7\u03B5\u03AF\u03B1 \u03AE \u03C0\u03CC\u03C1\u03BF\u03C5\u03C2 \u03C0\u03BF\u03C5 \u03BC\u03C0\u03BF\u03C1\u03BF\u03CD\u03BD \u03BD\u03B1 \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03B7\u03B8\u03BF\u03CD\u03BD \u03B3\u03B9\u03B1 \u03B5\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 \u03BA\u03B1\u03B9 \u03C0\u03B1\u03C1\u03B1\u03B3\u03C9\u03B3\u03AE \u03C0\u03BB\u03B7\u03C1\u03BF\u03C6\u03BF\u03C1\u03AF\u03B1\u03C2"@el . + . + . + . + "vergadering"@nl . + "\u03C3\u03C5\u03BD\u03AC\u03BD\u03C4\u03B7\u03C3\u03B7"@el . + "r\u00E9union"@fr . + "meeting"@en . + "Treffen"@de . + "A regular or irregular meeting of people as an event to keep record of"@en . + . + . + . + . + "beeldhouwwerk"@nl . + "\u0393\u03BB\u03C5\u03C0\u03C4\u03B9\u03BA\u03AE"@el . + "sculpture"@fr . + "scultura"@it . + "Sculpture"@en . + "Skulptur"@de . + "Sculpture is three-dimensional artwork created by shaping or combining hard materials, typically stone such as marble, metal, glass, or wood, or plastic materials such as clay, textiles, polymers and softer metals."@en . + "\u0393\u03BB\u03C5\u03C0\u03C4\u03B9\u03BA\u03AE \u03B5\u03AF\u03BD\u03B1\u03B9 \u03C4\u03C1\u03B9\u03C3\u03B4\u03B9\u03AC\u03C3\u03C4\u03B1\u03C4\u03BF \u03AD\u03C1\u03B3\u03BF \u03C4\u03AD\u03C7\u03BD\u03B7\u03C2 \u03C4\u03BF \u03BF\u03C0\u03BF\u03AF\u03BF \u03B4\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03AE\u03B8\u03B7\u03BA\u03B5 \u03B1\u03C0\u03CC \u03C4\u03B7 \u03B4\u03B9\u03B1\u03BC\u03CC\u03C1\u03C6\u03C9\u03C3\u03B7 \u03AE \u03C3\u03C5\u03BD\u03B4\u03C5\u03AC\u03B6\u03BF\u03BD\u03C4\u03B1\u03C2 \u03C3\u03BA\u03BB\u03B7\u03C1\u03AC \u03C5\u03BB\u03B9\u03BA\u03AC, \u03C4\u03C5\u03C0\u03B9\u03BA\u03CE\u03C2 \u03C0\u03AD\u03C4\u03C1\u03B1 \u03CC\u03C0\u03C9\u03C2 \u03BC\u03AC\u03C1\u03BC\u03B1\u03C1\u03BF, \u03BC\u03AD\u03C4\u03B1\u03BB\u03BB\u03BF, \u03B3\u03C5\u03B1\u03BB\u03AF, \u03AE \u03BE\u03CD\u03BB\u03BF, \u03AE \u03C0\u03BB\u03B1\u03C3\u03C4\u03B9\u03BA\u03AC \u03C5\u03BB\u03B9\u03BA\u03AC \u03CC\u03C0\u03C9\u03C2 \u03AC\u03C1\u03B3\u03B9\u03BB\u03BF\u03C2, \u03C5\u03C6\u03AC\u03C3\u03BC\u03B1\u03C4\u03B1, \u03C0\u03BF\u03BB\u03C5\u03BC\u03B5\u03C1\u03AE \u03BA\u03B1\u03B9 \u03BC\u03B1\u03BB\u03B1\u03BA\u03CC\u03C4\u03B5\u03C1\u03B1 \u03BC\u03AD\u03C4\u03B1\u03BB\u03BB\u03B1."@el . + "Een beeldhouwwerk is een drie-dimensionaal kunstvoorwerp of plastiek, gemaakt van harde materialen zoals steen of metaal. Ook kunnen textiel of kunststoffen erin verwerkt zijn of het hoofdbestanddeel ervan uitmaken."@nl . + . + . + . + . + "kernenergiecentrale"@nl . + "\u03A0\u03C5\u03C1\u03B7\u03BD\u03B9\u03BA\u03CC\u03C2 \u03A3\u03C4\u03B1\u03B8\u03BC\u03CC\u03C2 \u03A0\u03B1\u03C1\u03B1\u03B3\u03C9\u03B3\u03AE\u03C2 \u0395\u03BD\u03AD\u03C1\u03B3\u03B5\u03B9\u03B1\u03C2"@el . + "centrale nucl\u00E9aire"@fr . + "Nuclear Power plant"@en . + "Kernkraftwerk"@de . + . + . + . + . + "borough"@en . + "Teilgemeinde"@de . + "deelgemeente"@nl . + "An administrative body governing a territorial unity on the lowest level, administering part of a municipality"@en . + . + . + . + "deanery"@en . + "Dekanat"@de . + "\u03BA\u03BF\u03C3\u03BC\u03B7\u03C4\u03B5\u03AF\u03B1"@el . + "proosdij"@nl . + "The intermediate level of a clerical administrative body between parish and diocese"@en . + . + . + . + "luchtvaartmaatschappij"@nl . + "\u03B1\u03B5\u03C1\u03BF\u03C0\u03BF\u03C1\u03B9\u03BA\u03AE \u03B5\u03C4\u03B1\u03B9\u03C1\u03B5\u03AF\u03B1"@el . + "compagnie a\u00E9rienne"@fr . + "compagnia aerea"@it . + "compa\u00F1\u00EDa aerea"@es . + "airline"@en . + "\uD56D\uACF5\uC0AC"@ko . + "\u822A\u7A7A\u516C\u53F8"@zh . + "\u822A\u7A7A\u4F1A\u793E"@ja . + "Fluggesellschaft"@de . + . + . + . + . + "volleybal competitie"@nl . + "\u039F\u03BC\u03BF\u03C3\u03C0\u03BF\u03BD\u03B4\u03AF\u03B1 \u03A0\u03B5\u03C4\u03BF\u03C3\u03C6\u03B1\u03AF\u03C1\u03B9\u03C3\u03B7\u03C2"@el . + "ligue de volleyball"@fr . + "volleyball league"@en . + "Volleyball-Liga"@de . + "A group of sports teams that compete against each other in volleyball."@en . + . + . + . + "media"@en . + "media"@nl . + "\u03BC\u03AD\u03C3\u03B1 \u03B5\u03BD\u03B7\u03BC\u03AD\u03C1\u03C9\u03C3\u03B7\u03C2"@el . + "Medien"@de . + . + . + . + . + "grand prix"@nl . + "\u03B3\u03BA\u03C1\u03B1\u03BD \u03C0\u03C1\u03B9"@el . + "grand prix"@fr . + "gran premio"@it . + "Grand Prix"@en . + "\u30B0\u30E9\u30F3\u30D7\u30EA"@ja . + "grosser Preis"@de . + . + . + . + "bergpas"@nl . + "\u03A0\u03AD\u03C1\u03B1\u03C3\u03BC\u03B1 \u03B2\u03BF\u03C5\u03BD\u03BF\u03CD"@el . + "col de montagne"@fr . + "mountain pass"@en . + "\u5CE0"@ja . + "Bergpass"@de . + "a path that allows the crossing of a mountain chain. It is usually a saddle point in between two areas of higher elevation"@en . + . + . + . + . + "werk"@nl . + "\u03B4\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1"@el . + "\u0153uvre"@fr . + "obra"@pt . + "work"@en . + "\u4ED5\u4E8B"@ja . + "Werk"@de . + . + . + . + . + . + . + "gletsjer"@nl . + "\u03C0\u03B1\u03B3\u03B5\u03C4\u03CE\u03BD\u03B1\u03C2"@el . + "glacier"@fr . + "ghiacciaio"@it . + "glacier"@en . + "Gletscher"@de . + "\u03A0\u03B1\u03B3\u03B5\u03C4\u03CE\u03BD\u03B5\u03C2 \u03BF\u03BD\u03BF\u03BC\u03AC\u03B6\u03BF\u03BD\u03C4\u03B1\u03B9 \u03BC\u03B5\u03B3\u03AC\u03BB\u03B5\u03C2 \u03BC\u03AC\u03B6\u03B5\u03C2 \u03C0\u03AC\u03B3\u03BF\u03C5 \u03C3\u03C5\u03BD\u03AE\u03B8\u03C9\u03C2 \u03BA\u03B9\u03BD\u03BF\u03CD\u03BC\u03B5\u03BD\u03B5\u03C2 \u03BB\u03CC\u03B3\u03C9 \u03C3\u03C5\u03BC\u03C0\u03AF\u03B5\u03C3\u03B7\u03C2 \u03C4\u03BF\u03C5 \u03C7\u03B9\u03BF\u03BD\u03B9\u03BF\u03CD."@el . + . + . + . + . + "raket"@nl . + "\u03C0\u03CD\u03C1\u03B1\u03C5\u03BB\u03BF\u03C2"@el . + "fus\u00E9e"@fr . + "rocket"@en . + "\uB85C\uCF13"@ko . + "\u30ED\u30B1\u30C3\u30C8"@ja . + "Rakete"@de . + . + . + . + . + "Blazon"@en . + "blazoen (wapenschild)"@nl . + "\u03BF\u03B9\u03BA\u03CC\u03C3\u03B7\u03BC\u03BF"@el . + "Wappen"@de . + . + . + . + "aristocrat"@en . + "Aristokrat"@de . + "aristocraat"@nl . + "arist\u00F3crata"@es . + . + . + . + "vogel"@nl . + "\u03C0\u03C4\u03B7\u03BD\u03CC"@el . + "oiseau"@fr . + "uccello"@it . + "p\u00E1jaro"@es . + "bird"@en . + "\uC0C8"@ko . + "\u9CE5\u985E"@ja . + "Vogel"@de . + . + . + . + "societal event"@en . + "\u00E9v\u00E8nement collectif"@fr . + "gesellschatliches Ereignis"@de . + "maatschappelijke gebeurtenis"@nl . + "an event that is clearly different from strictly personal events"@en . + . + . + . + "golfspeler"@nl . + "\u03C0\u03B1\u03AF\u03BA\u03C4\u03B7\u03C2 \u03B3\u03BA\u03BF\u03BB\u03C6"@el . + "golfeur"@fr . + "golf player"@en . + "Golfspieler"@de . + . + . + . + . + "bowling competitie"@nl . + "\u03C0\u03C1\u03C9\u03C4\u03AC\u03B8\u03BB\u03B7\u03BC\u03B1 \u03BC\u03C0\u03CC\u03BF\u03C5\u03BB\u03B9\u03BD\u03B3\u03BA"@el . + "ligue de bowling"@fr . + "lega di bowling"@it . + "liga de bolos"@es . + "bowling league"@en . + "\uBCFC\uB9C1 \uB9AC\uADF8"@ko . + "\u30DC\u30FC\u30EA\u30F3\u30B0\u30EA\u30FC\u30B0"@ja . + "Bowling-Liga"@de . + "a group of sports teams or players that compete against each other in Bowling"@en . + "\u039C\u03AF\u03B1 \u03B4\u03B9\u03BF\u03C1\u03B3\u03AC\u03BD\u03C9\u03C3\u03B7 \u03BF\u03BC\u03AC\u03B4\u03B5\u03C2 \u03B1\u03BD\u03B8\u03C1\u03CE\u03C0\u03C9\u03BD \u03AE \u03BC\u03B5\u03BC\u03BF\u03BD\u03BF\u03BC\u03AD\u03BD\u03B1 \u03AC\u03C4\u03BF\u03BC\u03B1 \u03C3\u03C5\u03BD\u03B1\u03B3\u03C9\u03BD\u03AF\u03B6\u03BF\u03BD\u03C4\u03B1\u03B9 \u03C3\u03C4\u03BF \u03AC\u03B8\u03BB\u03B7\u03BC\u03B1 \u03C4\u03BF\u03C5 \u03BC\u03C0\u03CC\u03BF\u03C5\u03BB\u03B9\u03BD\u03B3\u03BA, \u03C3\u03C5\u03BD\u03AE\u03B8\u03C9\u03C2 \u03BC\u03B5 \u03AD\u03BD\u03B1 \u03AD\u03C0\u03B1\u03B8\u03BB\u03BF \u03C3\u03C4\u03BF\u03C5\u03C2 \u03C0\u03C1\u03C9\u03C4\u03B1\u03B8\u03BB\u03B7\u03C4\u03AD\u03C2."@el . + . + . + . + "heilige"@nl . + "\u03A0\u03BB\u03B7\u03C1\u03BF\u03C6\u03BF\u03C1\u03AF\u03B5\u03C2 \u0391\u03B3\u03AF\u03BF\u03C5"@el . + "saint"@fr . + "saint"@en . + "\uC131\uC778"@ko . + "\u8056\u4EBA"@ja . + "Heilige"@de . + . + . + . + . + "historical period"@en . + "\u03B9\u03C3\u03C4\u03BF\u03C1\u03B9\u03BA\u03AE \u03C0\u03B5\u03C1\u03AF\u03BF\u03B4\u03BF\u03C2"@el . + "historische periode"@nl . + "historische Periode"@de . + "A historical Period should be linked to a Place by way of the property dct:spatial (already defined)"@en . + . + . + . + . + . + "squasher"@nl . + "giocatore di squash"@it . + "squash player"@en . + "\uC2A4\uCFFC\uC2DC \uC120\uC218"@ko . + "Squashspieler"@de . + . + . + . + . + "pokerspeler"@nl . + "\u03C0\u03B1\u03AF\u03C7\u03C4\u03B7\u03C2 \u03C4\u03BF\u03C5 \u03C0\u03CC\u03BA\u03B5\u03C1"@el . + "joueur de poker"@fr . + "poker player"@en . + "Pokerspieler"@de . + . + . + . + "hoogte"@nl . + "\u03C5\u03C8\u03CC\u03BC\u03B5\u03C4\u03C1\u03BF"@el . + "altitude"@fr . + "altitude"@en . + "H\u00F6he"@de . + "\u03A4\u03BF \u03C5\u03C8\u03CC\u03BC\u03B5\u03C4\u03C1\u03BF \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B7 \u03BA\u03AC\u03B8\u03B5\u03C4\u03B7 \u03B1\u03C0\u03CC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03B5\u03BD\u03CC\u03C2 \u03B1\u03BD\u03C4\u03B9\u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5 \u03C3\u03B5 \u03C3\u03C7\u03AD\u03C3\u03B7 \u03BC\u03B5 \u03AD\u03BD\u03B1 \u03BA\u03B1\u03B8\u03BF\u03C1\u03B9\u03C3\u03BC\u03AD\u03BD\u03BF \u03B5\u03C0\u03AF\u03C0\u03B5\u03B4\u03BF \u03B1\u03BD\u03B1\u03C6\u03BF\u03C1\u03AC\u03C2. \u03A3\u03C5\u03BD\u03AE\u03B8\u03C9\u03C2 \u03C4\u03BF \u03C5\u03C8\u03CC\u03BC\u03B5\u03C4\u03C1\u03BF \u03BC\u03B5\u03C4\u03C1\u03B9\u03AD\u03C4\u03B1\u03B9 \u03C9\u03C2 \u03B7 \u03BA\u03AC\u03B8\u03B5\u03C4\u03B7 \u03B1\u03C0\u03CC\u03C3\u03C4\u03B1\u03C3\u03B7 (\u03C5\u03C8\u03BF\u03BC\u03B5\u03C4\u03C1\u03B9\u03BA\u03AE \u03B4\u03B9\u03B1\u03C6\u03BF\u03C1\u03AC) \u03B5\u03BD\u03CC\u03C2 \u03C4\u03CC\u03C0\u03BF\u03C5 \u03B1\u03C0\u03CC \u03C4\u03BF \u03B5\u03C0\u03AF\u03C0\u03B5\u03B4\u03BF \u03C4\u03B7\u03C2 \u03B8\u03AC\u03BB\u03B1\u03C3\u03C3\u03B1\u03C2 (\u039C\u03AD\u03C3\u03B7 \u03A3\u03C4\u03AC\u03B8\u03BC\u03B7 \u0398\u03AC\u03BB\u03B1\u03C3\u03C3\u03B1\u03C2), \u03B5\u03BD\u03CE \u03B3\u03B9\u03B1 \u03C0\u03B9\u03BF \u03B1\u03BA\u03C1\u03B9\u03B2\u03B5\u03AF\u03C2 \u03BC\u03B5\u03C4\u03C1\u03AE\u03C3\u03B5\u03B9\u03C2 \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03B5\u03AF\u03C4\u03B1\u03B9 \u03C4\u03BF \u03B3\u03B5\u03C9\u03B5\u03B9\u03B4\u03AD\u03C2."@el . + . + . + . + . + "article"@en . + "Artikle"@de . + "artikel"@nl . + "article"@fr . + . + . + . + . + "anime"@nl . + "\u03AC\u03BD\u03B9\u03BC\u03B5"@el . + "anime"@it . + "Anime"@en . + "\uC77C\uBCF8\uC758 \uC560\uB2C8\uBA54\uC774\uC158"@ko . + "\u30A2\u30CB\u30E1"@ja . + "anime"@de . + "A style of animation originating in Japan"@en . + "Geanimeerd Japans stripverhaal"@nl . + "\u03A3\u03C4\u03C5\u03BB \u03BA\u03B9\u03BD\u03BF\u03C5\u03BC\u03AD\u03BD\u03C9\u03BD \u03C3\u03C7\u03B5\u03B4\u03AF\u03C9\u03BD \u03BC\u03B5 \u03BA\u03B1\u03C4\u03B1\u03B3\u03C9\u03B3\u03AE \u03C4\u03B7\u03BD \u0399\u03B1\u03C0\u03C9\u03BD\u03AF\u03B1"@el . + . + . + . + . + "ksi\u0105\u017Cka"@pl . + "boek"@nl . + "\u03B2\u03B9\u03B2\u03BB\u03AF\u03BF"@el . + "livre"@fr . + "libro"@it . + "book"@en . + "\u09AC\u0987"@bn . + "leabhar"@ga . + "\uCC45"@ko . + "\u672C"@ja . + "llibre"@ca . + "Buch"@de . + . + . + . + . + . + . + "taal"@nl . + "\u03B3\u03BB\u03CE\u03C3\u03C3\u03B1"@el . + "langage"@fr . + "idioma"@es . + "language"@en . + "\uC5B8\uC5B4"@ko . + "\u8A00\u8A9E"@ja . + "Sprache"@de . + . + . + . + . + . + . + "restauracja"@pl . + "restaurant"@nl . + "\u03B5\u03C3\u03C4\u03B9\u03B1\u03C4\u03CC\u03C1\u03B9\u03BF"@el . + "restaurant"@fr . + "restaurant"@en . + "bialann"@ga . + "\u30EC\u30B9\u30C8\u30E9\u30F3"@ja . + "Restaurant"@de . + . + . + . + . + . + "geological period"@en . + "geologische periode"@nl . + "geologische Periode"@de . + "\u03B3\u03B5\u03C9\u03BB\u03BF\u03B3\u03B9\u03BA\u03AE \u03C0\u03B5\u03C1\u03AF\u03BF\u03B4\u03BF\u03C2"@el . + . + . + . + . + . + "old territory"@en . + "alten L\u00E4nder"@de . + . + . + . + "verzameling van kostbaarheden"@nl . + "collection d'objets"@fr . + "collection of valuables"@en . + "\uADC0\uC911\uD488\uC758 \uCEEC\uB809\uC158"@ko . + "Kunst- und Wertsachenversammlung"@de . + "Collection of valuables is a collection considered to be a work in itself)"@en . + "Een verzameling van kostbaarheden, die als een werk beschouwd wordt )."@nl . + . + . + . + "bisdom"@nl . + "\u03B5\u03C0\u03B9\u03C3\u03BA\u03BF\u03C0\u03AE"@el . + "dioc\u00E8se"@fr . + "diocese"@en . + "\uAD50\uAD6C"@ko . + "Di\u00F6zese"@de . + "District or see under the supervision of a bishop."@en . + . + . + . + "spel"@nl . + "\u03A0\u03BB\u03B7\u03C1\u03BF\u03C6\u03BF\u03C1\u03AF\u03B5\u03C2 \u03C0\u03B1\u03B9\u03C7\u03BD\u03B9\u03B4\u03B9\u03BF\u03CD"@el . + "jeu"@fr . + "jogo"@pt . + "juego"@es . + "game"@en . + "\u30B2\u30FC\u30E0"@ja . + "Spiel"@de . + "a structured activity, usually undertaken for enjoyment and sometimes used as an educational tool"@en . + . + . + . + . + "wetgevend orgaan"@nl . + "\u03BD\u03BF\u03BC\u03BF\u03B8\u03B5\u03C4\u03B9\u03BA\u03CC \u03C3\u03CE\u03BC\u03B1"@el . + "pouvoir l\u00E9gislatif"@fr . + "legislatura"@es . + "legislature"@en . + "Legislative"@de . + . + . + . + . + "movie genre"@en . + "Filmgenre"@de . + "\u03B5\u03AF\u03B4\u03BF\u03C2 \u03C4\u03B1\u03B9\u03BD\u03AF\u03B1\u03C2"@el . + "filmgenre"@nl . + . + . + . + "aktor"@pl . + "acteur"@nl . + "\u03B7\u03B8\u03BF\u03C0\u03BF\u03B9\u03CC\u03C2"@el . + "acteur"@fr . + "ator"@pt . + "attore"@it . + "actor"@es . + "actor"@en . + "\uC601\uD654\uC778"@ko . + "aktore"@eu . + "\u6F14\u54E1"@zh . + "\u4FF3\u512A"@ja . + "Schauspieler"@de . + "An actor or actress is a person who acts in a dramatic production and who works in film, television, theatre, or radio in that capacity."@en . + "\u039C\u03B9\u03B1 \u03B7\u03B8\u03BF\u03C0\u03BF\u03B9\u03CC\u03C2 \u03AE \u03AD\u03BD\u03B1\u03C2 \u03B7\u03B8\u03BF\u03C0\u03BF\u03B9\u03CC\u03C2 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03AD\u03BD\u03B1 \u03AC\u03C4\u03BF\u03BC\u03BF \u03C0\u03BF\u03C5 \u03C0\u03B1\u03AF\u03B6\u03B5\u03B9 \u03C3\u03B5 \u03BC\u03B9\u03B1 \u03B4\u03C1\u03B1\u03BC\u03B1\u03C4\u03B9\u03BA\u03AE \u03C0\u03B1\u03C1\u03B1\u03B3\u03C9\u03B3\u03AE \u03BA\u03B1\u03B9 \u03C0\u03BF\u03C5 \u03B5\u03C1\u03B3\u03AC\u03B6\u03B5\u03C4\u03B1\u03B9 \u03C3\u03C4\u03BF \u03C7\u03CE\u03C1\u03BF \u03C4\u03BF\u03C5 \u03BA\u03B9\u03BD\u03B7\u03BC\u03B1\u03C4\u03BF\u03B3\u03C1\u03AC\u03C6\u03BF\u03C5, \u03C4\u03B7\u03C2 \u03C4\u03B7\u03BB\u03B5\u03CC\u03C1\u03B1\u03C3\u03B7\u03C2, \u03C4\u03BF\u03C5 \u03B8\u03B5\u03AC\u03C4\u03C1\u03BF\u03C5, \u03AE \u03C4\u03BF \u03C1\u03B1\u03B4\u03B9\u03CC\u03C6\u03C9\u03BD\u03BF."@el . + "Un attore o un attrice \u00E8 una persona che recita in una produzione teatrale, televisiva, cinematografica o radiofonica."@it . + . + . + . + . + "egyptologist"@en . + "egyptoloog"@nl . + "\u00C4gyptologe"@de . + "\u03B1\u03B9\u03B3\u03C5\u03C0\u03C4\u03B9\u03BF\u03BB\u03CC\u03B3\u03BF\u03C2"@el . + . + . + . + . + "amfibie"@nl . + "\u03B1\u03BC\u03C6\u03AF\u03B2\u03B9\u03BF"@el . + "amphibien"@fr . + "anf\u00EDbio"@pt . + "anfibio"@it . + "amphibian"@en . + "\uC591\uC11C\uB958"@ko . + "\u4E21\u751F\u985E"@ja . + "Amphibie"@de . + . + . + . + "golf competitie"@nl . + "\u03AD\u03BD\u03C9\u03C3\u03B7 \u03B3\u03BA\u03BF\u03BB\u03C6"@el . + "ligue de golf"@fr . + "liga de golfe"@pt . + "golf league"@en . + "Golfliga"@de . + "Golfplayer that compete against each other in Golf"@en . + . + . + . + "Pyramid"@en . + "Pyramide"@de . + "Pyramide"@fr . + "pyramide"@nl . + "a structure whose shape is roughly that of a pyramid in the geometric sense."@en . + . + . + . + . + "career station"@en . + "Karrierestation"@de . + "this class marks a career step in the life of a person, e.g. a soccer player, holding information on the time span, matches and goals he or she achieved at a certain club"@en . + . + . + . + "wolkenkrabber"@nl . + "\u03BF\u03C5\u03C1\u03B1\u03BD\u03BF\u03BE\u03CD\u03C3\u03C4\u03B7\u03C2"@el . + "gratte-ciel"@fr . + "skyscraper"@en . + "\uCD08\uACE0\uCE35 \uAC74\uBB3C"@ko . + "\u8D85\u9AD8\u5C64\u5EFA\u7BC9\u7269"@ja . + "Hochhaus"@de . + . + . + . + . + "groep"@nl . + "\u03BF\u03BC\u03AC\u03B4\u03B1"@el . + "groupe"@fr . + "gruppo"@it . + "grupo"@es . + "group"@en . + "\u96C6\u56E3"@ja . + "Gruppe"@de . + "An (informal) group of people."@en . + "un groupe (informel) de personnes."@fr . + "\u039C\u03B9\u03B1 \u03C3\u03C5\u03BD\u03AE\u03B8\u03C9\u03C2 \u03AC\u03C4\u03C5\u03C0\u03B7 \u03BF\u03BC\u03AC\u03B4\u03B1 \u03B1\u03BD\u03B8\u03C1\u03CE\u03C0\u03C9\u03BD."@el . + . + . + . + . + "kloosterorde"@nl . + "\u03BA\u03BB\u03B7\u03C1\u03B9\u03BA\u03AE \u03C4\u03AC\u03BE\u03B7"@el . + "ordre religieux"@fr . + "ordine clericale"@it . + "orden clerical"@es . + "clerical order"@en . + "klerikaler Orden"@de . + "Een kloosterorde is een orde van religieuzen, mannen of vrouwen, die zich verenigd hebben omtrent een gemeenschappelijke geloofsopvatting en kloosterregel waaraan zij gebonden zijn, en op een permanente wijze samenleven binnen \u00E9\u00E9n en dezelfde plaatselijke gemeenschap, een klooster of een tempel. Meerdere kloosters van gelijkgezinde religieuzen vormen samen een kloosterorde."@nl . + . + . + . + "Wind motor"@en . + "Windkraft"@de . + "Roosmolen"@nl . + "A wind-driven turbine that adapts itself to wind direction and to wind-force. Is considered to be a class in its own, despite the wind as common factor with Windmill."@en . + . + . + . + . + "life cycle event"@en . + "Lebenszyklus Ereignis"@de . + "wordingsgebeurtenis"@nl . + . + . + . + "geneesmiddel"@nl . + "\u03C6\u03AC\u03C1\u03BC\u03B1\u03BA\u03BF"@el . + "m\u00E9dicament"@fr . + "drug"@en . + "\uC57D"@ko . + "\u85AC\u7269"@ja . + "Droge"@de . + . + . + . + . + "Noteworthy part of a building (facade, chimney, etc.)"@en . + "Bemerkenswert Bauteile der Geb\u00E4ude"@de . + "Opmerkelijk onderdeel van een bouwsel"@nl . + "A smaller detail about a building with a particular interest"@en . + . + . + . + "toernooi"@nl . + "\u03C4\u03BF\u03C5\u03C1\u03BD\u03BF\u03C5\u03AC"@el . + "tournoi"@fr . + "torneo"@it . + "tournament"@en . + "Turnier"@de . + . + . + . + . + "trein"@nl . + "\u03C4\u03C1\u03AD\u03BD\u03BF"@el . + "train"@fr . + "treno"@it . + "tren"@es . + "train"@en . + "\u5217\u8ECA"@ja . + "Zug"@de . + . + . + . + . + "Reference"@en . + "\u03B1\u03BD\u03B1\u03C6\u03BF\u03C1\u03AC"@el . + "Referenz"@de . + "Verwijzing"@nl . + "Reference to the book or movie the subject is referred to"@en . + "Verwijzing naar een plaats in een boek of film"@nl . + . + . + . + "Windmolen"@nl . + "\u0391\u03BD\u03B5\u03BC\u03CC\u03BC\u03C5\u03BB\u03BF\u03C2"@el . + "moulin \u00E0 vent"@fr . + "mulino a vento"@it . + "Molinos de viento"@es . + "Windmill"@en . + "Windm\u00FChle"@de . + "A windmill is a machine that converts the energy of wind into rotational energy by means of vanes called sails"@en . + "Le moulin \u00E0 vent est un dispositif qui transforme l\u2019\u00E9nergie \u00E9olienne (\u00E9nergie cin\u00E9tique du vent) en mouvement rotatif au moyen d\u2019ailes ajustables."@fr . + . + . + . + . + "sport competitie"@nl . + "\u0391\u03B8\u03BB\u03B7\u03C4\u03B9\u03BA\u03AE \u039F\u03BC\u03BF\u03C3\u03C0\u03BF\u03BD\u03B4\u03AF\u03B1"@el . + "ligue sportive"@fr . + "liga deportiva"@es . + "sports league"@en . + "\uC2A4\uD3EC\uCE20 \uB9AC\uADF8"@ko . + "Sportliga"@de . + "A group of sports teams or individual athletes that compete against each other in a specific sport."@en . + . + . + . + . + "bordspel"@nl . + "\u03B5\u03C0\u03B9\u03C4\u03C1\u03B1\u03C0\u03AD\u03B6\u03B9\u03BF \u03C0\u03B1\u03B9\u03C7\u03BD\u03AF\u03B4\u03B9"@el . + "jeu de soci\u00E9t\u00E9"@fr . + "gioco da tavolo"@it . + "juego de mesa"@es . + "board game"@en . + "\uBCF4\uB4DC \uAC8C\uC784"@ko . + "\u30DC\u30FC\u30C9\u30B2\u30FC\u30E0"@ja . + "Brettspiel"@de . + "come from http://en.wikipedia.org/wiki/Category:Board_games"@en . + "Un gioco da tavolo \u00E8 un gioco che richiede una ben definita superficie di gioco, che viene detta di solito tabellone o plancia."@it . + . + . + . + "badmintonspeler"@nl . + "\u03C0\u03B1\u03AF\u03C7\u03C4\u03B7\u03C2 \u03C4\u03BF\u03C5 \u03BC\u03C0\u03AC\u03BD\u03C4\u03BC\u03B9\u03BD\u03C4\u03BF\u03BD"@el . + "joueur de badminton"@fr . + "jogador de badminton"@pt . + "giocatore di badminton"@it . + "badminton player"@en . + "\uBC30\uB4DC\uBBFC\uD134 \uC120\uC218"@ko . + "\u30D0\u30C9\u30DF\u30F3\u30C8\u30F3\u9078\u624B"@ja . + "Badmintonspieler"@de . + . + . + . + "muntsoort"@nl . + "\u03BD\u03CC\u03BC\u03B9\u03C3\u03BC\u03B1"@el . + "devise"@fr . + "\u0412\u0430\u043B\u044E\u0442\u0430"@ru . + "currency"@en . + "\uD1B5\uD654"@ko . + "\u0412\u0430\u043B\u044E\u0442\u0430"@be . + "W\u00E4hrung"@de . + . + . + . + "programmeertaal"@nl . + "\u03B3\u03BB\u03CE\u03C3\u03C3\u03B1 \u03C0\u03C1\u03BF\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03B9\u03C3\u03BC\u03BF\u03CD"@el . + "langage de programmation"@fr . + "linguagem de programa\u00E7\u00E3o"@pt . + "programming language"@en . + "\uD504\uB85C\uADF8\uB798\uBC0D \uC5B8\uC5B4"@ko . + "Programmiersprache"@de . + . + . + . + . + "szachista"@pl . + "schaker"@nl . + "\u03C0\u03B1\u03AF\u03BA\u03C4\u03B7\u03C2 \u03C3\u03BA\u03AC\u03BA\u03B9"@el . + "giocatore di scacchi"@it . + "chess player"@en . + "\uCCB4\uC2A4 \uC120\uC218"@ko . + "Schachspieler"@de . + . + . + . + "rugbyspeler"@nl . + "\u03C0\u03B1\u03AF\u03BA\u03C4\u03B7\u03C2 rugby"@el . + "joueur de rugby"@fr . + "rugby player"@en . + "Rugbyspieler"@de . + . + . + . + . + "darter"@nl . + "\u03C0\u03B1\u03AF\u03BA\u03C4\u03B7\u03C2 \u03B2\u03B5\u03BB\u03AC\u03BA\u03B9\u03C9\u03BD"@el . + "darts player"@en . + "\uB2E4\uD2B8 \uC120\uC218"@ko . + "Dartspieler"@de . + . + . + . + "osoba"@pl . + "persoon"@nl . + "\u03A0\u03BB\u03B7\u03C1\u03BF\u03C6\u03BF\u03C1\u03AF\u03B5\u03C2 \u03C0\u03C1\u03BF\u03C3\u03CE\u03C0\u03BF\u03C5"@el . + "personne"@fr . + "pessoa"@pt . + "\u0561\u0576\u0571"@hy . + "persona"@it . + "persona"@es . + "person"@en . + "duine"@ga . + "pertsona"@eu . + "Oseba"@sl . + "\u4EBA_(\u6CD5\u5F8B)"@ja . + "\u0634\u062E\u0635"@ar . + "Person"@de . + . + . + . + . + . + . + . + . + "architect"@nl . + "\u03B1\u03C1\u03C7\u03B9\u03C4\u03AD\u03BA\u03C4\u03BF\u03BD\u03B1\u03C2"@el . + "architecte"@fr . + "architetto"@it . + "arquitecto"@es . + "architect"@en . + "\uAC74\uCD95\uAC00"@ko . + "\u5EFA\u7BC9\u58EB"@ja . + "Architekt"@de . + . + . + . + "Globular Swarm"@en . + "Kugelschwarm"@de . + "\u03A3\u03C6\u03B1\u03B9\u03C1\u03C9\u03C4\u03CC \u03C3\u03BC\u03AE\u03BD\u03BF\u03C2"@el . + . + . + . + "handbal competitie"@nl . + "\u039F\u03BC\u03BF\u03C3\u03C0\u03BF\u03BD\u03B4\u03AF\u03B1 \u03A7\u03B5\u03B9\u03C1\u03BF\u03C3\u03C6\u03B1\u03AF\u03C1\u03B9\u03C3\u03B7\u03C2"@el . + "ligue de handball"@fr . + "handball league"@en . + "Handball-Liga"@de . + "a group of sports teams that compete against each other in Handball"@en . + . + . + . + "hond"@nl . + "\u03C3\u03BA\u03CD\u03BB\u03BF\u03C2"@el . + "chien"@fr . + "dog"@en . + "\uAC1C"@ko . + "\u30A4\u30CC"@ja . + "Hund"@de . + . + . + . + . + "political function"@en . + "politische Funktion"@de . + "politieke functie"@nl . + . + . + . + "infrastructure"@nl . + "\u03A5\u03C0\u03BF\u03B4\u03BF\u03BC\u03AE"@el . + "infrastructure"@fr . + "infrastructure"@en . + "Infrastruktur"@de . + . + . + . + "atol"@nl . + "\u03B1\u03C4\u03CC\u03BB\u03B7"@el . + "atoll"@fr . + "atollo"@it . + "atoll"@en . + "\uD658\uCD08"@ko . + "\u74B0\u7901"@ja . + "Atoll"@de . + . + . + . + "levensloopgebeurtenis"@nl . + "\u03C0\u03C1\u03BF\u03C3\u03C9\u03C0\u03B9\u03BA\u03CC \u03C3\u03C5\u03BC\u03B2\u03AC\u03BD"@el . + "\u00E9v\u00E8nement dans la vie priv\u00E9e"@fr . + "personal event"@en . + "Ereignis im pers\u00F6nlichen Leben"@de . + "an event that occurs in someone's personal life"@en . + "\u03AD\u03BD\u03B1 \u03C3\u03C5\u03BC\u03B2\u03AC\u03BD \u03C0\u03BF\u03C5 \u03B1\u03C6\u03BF\u03C1\u03AC \u03C4\u03B7\u03BD \u03C0\u03C1\u03BF\u03C3\u03C9\u03C0\u03B9\u03BA\u03AE \u03B6\u03C9\u03AE \u03BA\u03AC\u03C0\u03BF\u03B9\u03BF\u03C5"@el . + . + . + . + "motorfiets"@nl . + "\u03BC\u03BF\u03C4\u03BF\u03C3\u03C5\u03BA\u03BB\u03AD\u03C4\u03B1"@el . + "moto"@fr . + "motocicletta"@it . + "motorcycle"@en . + "Motorrad"@de . + . + . + . + . + "scheiding"@nl . + "\u03B4\u03B9\u03B1\u03B6\u03CD\u03B3\u03B9\u03BF"@el . + "divorce"@fr . + "divorce"@en . + "Trennung"@de . + "two people's divorce as a type of personal event"@en . + . + . + . + "Port"@en . + "Port"@fr . + "Hafen"@de . + "haven"@nl . + "a location on a coast or shore containing one or more harbors where ships can dock and transfer people or cargo to or from land."@en . + . + . + . + . + "giocatore di netball"@it . + "netball player"@en . + "Korbballspieler"@de . + . + . + . + "statistic"@en . + "statistisch"@de . + "statistisch"@nl . + "\u03C3\u03C4\u03B1\u03C4\u03B9\u03C3\u03C4\u03B9\u03BA\u03AE"@el . + . + . + . + . + "religious organisation"@en . + "Religionsorganisation"@de . + "kerkelijke organisatie"@nl . + "organizaci\u00F3n religiosa"@es . + . + . + . + . + "prefectuur"@nl . + "\u03BD\u03BF\u03BC\u03B1\u03C1\u03C7\u03AF\u03B1"@el . + "pr\u00E9fecture"@fr . + "prefecture"@en . + "Pr\u00E4fektur"@de . + . + . + . + . + "ruimtemissie"@nl . + "\u03B4\u03B9\u03B1\u03C3\u03C4\u03B7\u03BC\u03B9\u03BA\u03AE \u03B1\u03C0\u03BF\u03C3\u03C4\u03BF\u03BB\u03AE"@el . + "mission spatiale"@fr . + "misi\u00F3n espacial"@es . + "space mission"@en . + "\uC6B0\uC8FC \uC784\uBB34"@ko . + "Weltraummission"@de . + . + . + . + . + "\u03C3\u03B9\u03B4\u03B7\u03C1\u03CC\u03B4\u03C1\u03BF\u03BC\u03BF\u03C2"@en . + "Eisenbahnlinie"@de . + "spoorlijn"@nl . + "O \u03C3\u03B9\u03B4\u03B7\u03C1\u03CC\u03B4\u03C1\u03BF\u03BC\u03BF\u03C2 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03BC\u03B9\u03B1 \u03C5\u03C0\u03B7\u03C1\u03B5\u03C3\u03AF\u03B1 \u03BC\u03B5\u03C4\u03B1\u03C6\u03BF\u03C1\u03AC\u03C2 \u03B5\u03C0\u03B9\u03B2\u03B1\u03C4\u03CE\u03BD \u03AE \u03B5\u03BC\u03C0\u03BF\u03C1\u03B5\u03C5\u03BC\u03AC\u03C4\u03C9\u03BD \u03BC\u03B5 \u03C4\u03C1\u03AD\u03BD\u03B1 \u03C0\u03BF\u03C5 \u03C0\u03B1\u03C1\u03AD\u03C7\u03BF\u03BD\u03C4\u03B1\u03B9 \u03B1\u03C0\u03CC \u03AD\u03BD\u03B1\u03BD \u03BF\u03C1\u03B3\u03B1\u03BD\u03B9\u03C3\u03BC\u03CC. \u0394\u03B5\u03BD \u03C0\u03C1\u03AD\u03C0\u03B5\u03B9 \u03BD\u03B1 \u03C3\u03C5\u03B3\u03C7\u03AD\u03B5\u03C4\u03B1\u03B9 \u03BC\u03B5 \u03C4\u03B7 \u03C3\u03B9\u03B4\u03B7\u03C1\u03BF\u03B4\u03C1\u03BF\u03BC\u03B9\u03BA\u03AE \u03B3\u03C1\u03B1\u03BC\u03BC\u03AE, \u03C4\u03B7 \u03B4\u03BF\u03BC\u03AE \u03C0\u03BF\u03C5 \u03B1\u03C0\u03BF\u03C4\u03B5\u03BB\u03B5\u03AF\u03C4\u03B1\u03B9 \u03B1\u03C0\u03CC \u03C4\u03B9\u03C2 \u03C1\u03AC\u03B3\u03B5\u03C2. \u03A3\u03C4\u03B7 \u0392\u03B9\u03BA\u03B9\u03C0\u03B1\u03AF\u03B4\u03B5\u03B9\u03B1 \u03B4\u03B5 \u03B3\u03AF\u03BD\u03B5\u03C4\u03B1\u03B9 \u03C3\u03B1\u03C6\u03AE\u03C2 \u03B4\u03B9\u03B1\u03C6\u03BF\u03C1\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03BC\u03B5\u03C4\u03B1\u03BE\u03CD \u03C4\u03C9\u03BD \u03B4\u03CD\u03BF, \u03AD\u03C4\u03C3\u03B9 \u03C5\u03C0\u03AC\u03C1\u03C7\u03B5\u03B9 \u03AD\u03BD\u03B1 \u03BA\u03BF\u03C5\u03C4\u03AF \u03C0\u03BB\u03B7\u03C1\u03BF\u03C6\u03BF\u03C1\u03B9\u03CE\u03BD \u03C0\u03BF\u03C5 \u03C0\u03B5\u03C1\u03B9\u03B3\u03C1\u03AC\u03C6\u03B5\u03B9 \u03C1\u03AC\u03B3\u03B5\u03C2 \u03BA\u03B1\u03B9 \u03B3\u03C1\u03B1\u03BC\u03BC\u03AD\u03C2"@el . + "A railway line is a transport service by trains that pull passengers or freight provided by an organization. Not to be mistaken for railway track, which is the structure consisting of the rails. Wikipedia do not clearly differentiate between both, so there is one infobox describing tracks and lines."@en . + "Eine Eisenbahnlinie im Verkehrswesen ist die regelm\u00E4\u00DFige Bedienung einer bestimmten Eisenbahnstrecke durch \u00F6ffentliche Verkehrsmittel."@de . + . + . + . + . + "sound"@en . + "Lied"@de . + "geluid"@nl . + "\u03AE\u03C7\u03BF\u03C2"@el . + "An audio document intended to be listened to; equivalent to http://purl.org/dc/dcmitype/Sound"@en . + "\u039C\u03B5\u03C4\u03B1\u03B2\u03BF\u03BB\u03AE \u03C3\u03C4\u03B7\u03BD \u03C0\u03AF\u03B5\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03B1\u03C4\u03BC\u03BF\u03C3\u03C6\u03B1\u03B9\u03C1\u03B9\u03BA\u03BF\u03CD \u03B1\u03AD\u03C1\u03B1 \u03C0\u03BF\u03C5 \u03B4\u03B9\u03B5\u03B3\u03B5\u03AF\u03C1\u03B5\u03B9 \u03C4\u03BF \u03B1\u03B9\u03C3\u03B8\u03B7\u03C4\u03AE\u03C1\u03B9\u03BF \u03CC\u03C1\u03B3\u03B1\u03BD\u03BF \u03C4\u03B7\u03C2 \u03B1\u03BA\u03BF\u03AE\u03C2 \u03BC\u03AD\u03C3\u03C9 \u03B7\u03C7\u03B7\u03C4\u03B9\u03BA\u03CE\u03BD \u03BA\u03C5\u03BC\u03AC\u03C4\u03C9\u03BD"@el . + . + . + . + "wielercompetitie"@nl . + "\u03B4\u03B9\u03B1\u03B3\u03C9\u03BD\u03B9\u03C3\u03BC\u03CC\u03C2 \u03C0\u03BF\u03B4\u03B7\u03BB\u03B1\u03C3\u03AF\u03B1\u03C2"@el . + "gara ciclistica"@it . + "Prueba ciclista"@es . + "cycling competition"@en . + "\uC0AC\uC774\uD074 \uB300\uD68C"@ko . + "Radrennen"@de . + . + . + . + "rue"@nl . + "\u039F\u03B4\u03CC\u03C2"@el . + "straat"@fr . + "street"@en . + "Stra\u00DFe"@de . + "A Street is different from a Road in as far as the infrastructure aspect is much less important here. A Street is a social and architectural ensemble much more than the connection between two geographic points."@en . + . + . + . + . + "klasztor"@pl . + "klooster"@nl . + "\u03BC\u03BF\u03BD\u03B1\u03C3\u03C4\u03AE\u03C1\u03B9"@el . + "monast\u00E8re"@fr . + "monastery"@en . + "mainistir"@ga . + "monestir"@ca . + "Kloster"@de . + "Klasztor \u2013 budynek lub zesp\u00F3\u0142 budynk\u00F3w, w kt\u00F3rym mieszkaj\u0105 wsp\u00F3lnoty religijne zakonnik\u00F3w albo zakonnic."@pl . + "Een klooster (van het Latijnse claustrum, afgesloten ruimte) is een gebouw of een samenstel van gebouwen dat dient tot huisvesting van een groep of gemeenschap van mannen of vrouwen, vaak monniken of monialen genoemd, die zich uit de wereld heeft teruggetrokken om een godsdienstig leven te leiden."@nl . + "\u039C\u03BF\u03BD\u03AE \u03C5\u03C0\u03BF\u03B4\u03B7\u03BB\u03CE\u03BD\u03B5\u03B9 \u03C4\u03BF \u03BA\u03C4\u03AF\u03C1\u03B9\u03BF \u03AE \u03C3\u03C5\u03B3\u03BA\u03C1\u03CC\u03C4\u03B7\u03BC\u03B1 \u03BA\u03C4\u03B9\u03C1\u03AF\u03C9\u03BD, \u03C0\u03BF\u03C5 \u03B1\u03C0\u03BF\u03C4\u03B5\u03BB\u03B5\u03AF\u03C4\u03B1\u03B9 \u03B1\u03C0\u03CC \u03C4\u03B9\u03C2 \u03B5\u03B3\u03C7\u03CE\u03C1\u03B9\u03B1 \u03C4\u03C1\u03AF\u03BC\u03B7\u03BD\u03B1 \u03BA\u03B1\u03B9 \u03C3\u03C4\u03BF \u03C7\u03CE\u03C1\u03BF \u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1\u03C2 (\u03B5\u03C2) \u03C4\u03C9\u03BD \u03BC\u03BF\u03BD\u03B1\u03C7\u03CE\u03BD, \u03B1\u03BD \u03BF\u03B9 \u03BC\u03BF\u03BD\u03B1\u03C7\u03BF\u03AF \u03AE \u03BC\u03BF\u03BD\u03B1\u03C7\u03AD\u03C2, \u03BA\u03B1\u03B9 \u03B1\u03BD \u03B6\u03BF\u03C5\u03BD \u03C3\u03C4\u03B7\u03BD \u03BA\u03BF\u03B9\u03BD\u03CC\u03C4\u03B7\u03C4\u03B1 \u03AE \u03BC\u03B5\u03BC\u03BF\u03BD\u03C9\u03BC\u03AD\u03BD\u03B1 (\u03B5\u03C1\u03B7\u03BC\u03AF\u03C4\u03B5\u03C2). \u0397 \u03BC\u03BF\u03BD\u03AE \u03C0\u03B5\u03C1\u03B9\u03BB\u03B1\u03BC\u03B2\u03AC\u03BD\u03B5\u03B9 \u03B3\u03B5\u03BD\u03B9\u03BA\u03AC \u03AD\u03BD\u03B1 \u03C7\u03CE\u03C1\u03BF \u03C0\u03BF\u03C5 \u03C0\u03C1\u03BF\u03BF\u03C1\u03AF\u03B6\u03B5\u03C4\u03B1\u03B9 \u03B3\u03B9\u03B1 \u03C4\u03B7\u03BD \u03C0\u03C1\u03BF\u03C3\u03B5\u03C5\u03C7\u03AE \u03C0\u03BF\u03C5 \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF \u03BD\u03B1 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03AD\u03BD\u03B1 \u03C0\u03B1\u03C1\u03B5\u03BA\u03BA\u03BB\u03AE\u03C3\u03B9, \u03B5\u03BA\u03BA\u03BB\u03B7\u03C3\u03AF\u03B1 \u03AE \u03BD\u03B1\u03CC, \u03BA\u03B1\u03B9 \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF \u03B5\u03C0\u03AF\u03C3\u03B7\u03C2 \u03BD\u03B1 \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03B5\u03CD\u03C3\u03B5\u03B9 \u03C9\u03C2 \u03BC\u03B9\u03B1 \u03C1\u03B7\u03C4\u03BF\u03C1\u03B9\u03BA\u03AE."@el . + "Le monast\u00E8re est un ensemble de b\u00E2timents o\u00F9 habite une communaut\u00E9 religieuse de moines ou de moniales.."@fr . + "Monastery denotes the building, or complex of buildings, comprising the domestic quarters and workplace(s) of monastics, whether monks or nuns, and whether living in community or alone (hermits). The monastery generally includes a place reserved for prayer which may be a chapel, church or temple, and may also serve as an oratory."@en . + "Is pobal manaigh ina gc\u00F3na\u00ED faoi m\u00F3ideanna reiligi\u00FAnach \u00ED mainistir."@ga . + "Un monestir \u00E9s un tipus d'edificaci\u00F3 per a la reclusi\u00F3 dels religiosos, que hi viuen en com\u00FA. Origin\u00E0riament un monestir era la cel\u00B7la d'un sol monjo, dit en aquest cas ermit\u00E0 o anacoreta."@ca . + . + . + . + . + . + "\u03C3\u03B9\u03B4\u03B7\u03C1\u03BF\u03B4\u03C1\u03BF\u03BC\u03B9\u03BA\u03AE \u03C3\u03AE\u03C1\u03B1\u03B3\u03B3\u03B1"@en . + "Eisenbahntunnel"@de . + "spoorwegtunnel"@nl . + . + . + . + . + "card game"@en . + "kaartspel"@nl . + "Kartenspiel"@de . + "juego de cartas"@es . + "come from http://en.wikipedia.org/wiki/Category:Card_games"@en . + . + . + . + "senator"@nl . + "\u03B3\u03B5\u03C1\u03BF\u03C5\u03C3\u03B9\u03B1\u03C3\u03C4\u03AE\u03C2"@el . + "s\u00E9nateur"@fr . + "senador"@es . + "senator"@en . + "Senator"@de . + . + . + . + "chemisch element"@nl . + "\u03C7\u03B7\u03BC\u03B9\u03BA\u03CC \u03C3\u03C4\u03BF\u03B9\u03C7\u03B5\u03AF\u03BF"@el . + "\u00E9l\u00E9ment chimique"@fr . + "elemento chimico"@it . + "chemical element"@en . + "\uC6D0\uC18C"@ko . + "\u5143\u7D20"@ja . + "chemisches Element"@de . + . + . + . + "diploma"@en . + "Diplom"@de . + "diploma"@nl . + "\u03B4\u03AF\u03C0\u03BB\u03C9\u03BC\u03B1"@el . + . + . + . + "imi\u0119"@pl . + "voornaam"@nl . + "\u03CC\u03BD\u03BF\u03BC\u03B1"@el . + "pr\u00E9nom"@fr . + "given name"@en . + "c\u00E9adainm"@ga . + "\u540D"@ja . + "Vorname"@de . + . + . + . + . + "slagader"@nl . + "\u03B1\u03C1\u03C4\u03B7\u03C1\u03AF\u03B1"@el . + "art\u00E8re"@fr . + "arteria"@it . + "artery"@en . + "\uB3D9\uB9E5"@ko . + "\u52D5\u8108"@ja . + "Arterie"@de . + . + . + . + "hockeybond"@nl . + "\u03C0\u03C1\u03C9\u03C4\u03AC\u03B8\u03BB\u03B7\u03BC\u03B1 \u03C7\u03CC\u03BA\u03B5\u03CA \u03B5\u03C0\u03AF \u03C7\u03CC\u03C1\u03C4\u03BF\u03C5"@el . + "ligue d'hockey sur gazon"@fr . + "field hockey league"@en . + "Feldhockey-Liga"@de . + "a group of sports teams that compete against each other in Field Hockey"@en . + "\u03AD\u03BD\u03B1 \u03B3\u03BA\u03C1\u03BF\u03C5\u03C0 \u03B1\u03B8\u03BB\u03B7\u03C4\u03B9\u03BA\u03CE\u03BD \u03BF\u03BC\u03AC\u03B4\u03C9\u03BD \u03C0\u03BF\u03C5 \u03B4\u03B9\u03B1\u03B3\u03C9\u03BD\u03AF\u03B6\u03BF\u03BD\u03C4\u03B1\u03B9 \u03B7 \u03BC\u03B9\u03B1 \u03B5\u03BD\u03B1\u03BD\u03C4\u03AF\u03BF\u03BD \u03C4\u03B7\u03C2 \u03AC\u03BB\u03BB\u03B7\u03C2 \u03C3\u03C4\u03BF \u03C7\u03CC\u03BA\u03B5\u03CA \u03B5\u03C0\u03AF \u03C7\u03CC\u03C1\u03C4\u03BF\u03C5"@el . + . + . + . + "archipel"@nl . + "\u03B1\u03C1\u03C7\u03B9\u03C0\u03AD\u03BB\u03B1\u03B3\u03BF\u03C2"@el . + "archipel"@fr . + "archipi\u00E9lago"@es . + "archipelago"@en . + "Archipel"@de . + . + . + . + . + "competition"@en . + "Wettbewerb"@de . + "\u03B4\u03B9\u03B1\u03B3\u03C9\u03BD\u03B9\u03C3\u03BC\u03CC\u03C2"@el . + "competitie"@nl . + . + . + . + "tennis toernooi"@nl . + "\u03A4\u03BF\u03C5\u03C1\u03BD\u03BF\u03C5\u03AC \u03A4\u03AD\u03BD\u03B9\u03C2"@el . + "torneo di tennis"@it . + "tennis tournament"@en . + "Tennisturnier"@de . + . + . + . + . + "synagoge"@nl . + "\u03C3\u03C5\u03BD\u03B1\u03B3\u03C9\u03B3\u03AE"@el . + "synagogue"@fr . + "sinagoga"@es . + "synagog"@en . + "Synagoge"@de . + "A synagogue, sometimes spelt synagog, is a Jewish or Samaritan house of prayer."@en . + "Une synagogue est un lieu de culte juif."@fr . + . + . + . + . + "project"@nl . + "\u03C3\u03C7\u03AD\u03B4\u03B9\u03BF"@el . + "projet"@fr . + "proyecto"@es . + "project"@en . + "\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8"@ja . + "Projekt"@de . + "A project is a temporary endeavor undertaken to achieve defined objectives."@en . + "Ein Projekt ist ein zeitlich begrenztes Unternehmen, das unternommen wird, um definierte Ziele zu erreichen."@de . + . + . + . + . + "football league season"@en . + "Football Liga Saison"@de . + "\u03B1\u03B3\u03C9\u03BD\u03B9\u03C3\u03C4\u03B9\u03BA\u03AE \u03C0\u03B5\u03C1\u03AF\u03BF\u03B4\u03BF\u03C2 \u03C0\u03C1\u03C9\u03C4\u03B1\u03B8\u03BB\u03AE\u03BC\u03B1\u03C4\u03BF\u03C2 \u03C0\u03BF\u03B4\u03BF\u03C3\u03C6\u03B1\u03AF\u03C1\u03BF\u03C5"@el . + "\uCD95\uAD6C \uB300\uD68C \uC2DC\uC98C"@ko . + . + . + . + "camera"@nl . + "\u03C6\u03C9\u03C4\u03BF\u03B3\u03C1\u03B1\u03C6\u03B9\u03BA\u03AE \u03BC\u03B7\u03C7\u03B1\u03BD\u03AE"@el . + "appareil photographique"@fr . + "fotocamera"@it . + "camera"@en . + "\uCE74\uBA54\uB77C"@ko . + "\u30AB\u30E1\u30E9"@ja . + "Kamera"@de . + "Una fotocamera (in lingua italiana nota tradizionalmente come macchina fotografica) \u00E8 uno strumento utilizzato per la ripresa fotografica e per ottenere immagini di oggetti reali stampabili su supporti materiali cartacei o archiviabili su supporti elettronici."@it . + "\u03A6\u03C9\u03C4\u03BF\u03B3\u03C1\u03B1\u03C6\u03B9\u03BA\u03AE \u03BC\u03B7\u03C7\u03B1\u03BD\u03AE \u03BF\u03BD\u03BF\u03BC\u03AC\u03B6\u03B5\u03C4\u03B1\u03B9 \u03B7 \u03C3\u03C5\u03C3\u03BA\u03B5\u03C5\u03AE \u03C0\u03BF\u03C5 \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03B5\u03AF\u03C4\u03B1\u03B9 \u03B3\u03B9\u03B1 \u03C4\u03B7 \u03BB\u03AE\u03C8\u03B7 \u03C6\u03C9\u03C4\u03BF\u03B3\u03C1\u03B1\u03C6\u03B9\u03CE\u03BD.\u039F\u03B9 \u03B5\u03C5\u03C1\u03CD\u03C4\u03B5\u03C1\u03B1 \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03BF\u03CD\u03BC\u03B5\u03BD\u03B5\u03C2 \u03C3\u03AE\u03BC\u03B5\u03C1\u03B1 \u03C6\u03C9\u03C4\u03BF\u03B3\u03C1\u03B1\u03C6\u03B9\u03BA\u03AD\u03C2 \u03BC\u03B7\u03C7\u03B1\u03BD\u03AD\u03C2, \u03B5\u03C1\u03B1\u03C3\u03B9\u03C4\u03B5\u03C7\u03BD\u03B9\u03BA\u03AE\u03C2 \u03AE \u03B5\u03C0\u03B1\u03B3\u03B3\u03B5\u03BB\u03BC\u03B1\u03C4\u03B9\u03BA\u03AE\u03C2 \u03C7\u03C1\u03AE\u03C3\u03B7\u03C2, \u03B4\u03B9\u03B1\u03BA\u03C1\u03AF\u03BD\u03BF\u03BD\u03C4\u03B1\u03B9 \u03C3\u03B5 \u03B4\u03CD\u03BF \u03B2\u03B1\u03C3\u03B9\u03BA\u03AD\u03C2 \u03BA\u03B1\u03C4\u03B7\u03B3\u03BF\u03C1\u03AF\u03B5\u03C2: \u03C4\u03B9\u03C2 \u03C3\u03C5\u03BC\u03C0\u03B1\u03B3\u03B5\u03AF\u03C2 \u03BA\u03B1\u03B9 \u03C3\u03C4\u03B9\u03C2 \u03BC\u03BF\u03BD\u03BF\u03BF\u03C0\u03C4\u03B9\u03BA\u03AD\u03C2 \u03C1\u03B5\u03C6\u03BB\u03AD\u03BE. \u0394\u03B9\u03B1\u03BA\u03C1\u03B9\u03BD\u03CC\u03BC\u03B5\u03BD\u03B5\u03C2, \u03B1\u03BD\u03AC\u03BB\u03BF\u03B3\u03B1 \u03BC\u03B5 \u03C4\u03B7\u03BD \u03C4\u03B5\u03C7\u03BD\u03BF\u03BB\u03BF\u03B3\u03AF\u03B1 \u03C4\u03BF\u03C5\u03C2,\u03B5\u03AF\u03BD\u03B1\u03B9 \u03BF\u03B9 \u03BA\u03BB\u03B1\u03C3\u03B9\u03BA\u03AD\u03C2 \u03C6\u03C9\u03C4\u03BF\u03B3\u03C1\u03B1\u03C6\u03B9\u03BA\u03AD\u03C2 \u03BC\u03B7\u03C7\u03B1\u03BD\u03AD\u03C2 \u03BC\u03B5 \u03C6\u03B9\u03BB\u03BC \u03BA\u03B1\u03B9 \u03BF\u03B9 \u03C8\u03B7\u03C6\u03B9\u03B1\u03BA\u03AD\u03C2 \u03C6\u03C9\u03C4\u03BF\u03B3\u03C1\u03B1\u03C6\u03B9\u03BA\u03AD\u03C2 \u03BC\u03B7\u03C7\u03B1\u03BD\u03AD\u03C2."@el . + . + . + . + "rechter"@nl . + "\u03B4\u03B9\u03BA\u03B1\u03C3\u03C4\u03AE\u03C2"@el . + "juge"@fr . + "giudice"@it . + "juez"@es . + "judge"@en . + "\u88C1\u5224\u5B98"@ja . + "richter"@de . + . + . + . + . + "statek"@pl . + "schip"@nl . + "\u03C0\u03BB\u03BF\u03AF\u03BF"@el . + "navire"@fr . + "barco"@es . + "ship"@en . + "\uBC30"@ko . + "\u8229"@ja . + "Schiff"@de . + . + . + . + . + . + "nagroda"@pl . + "prijs"@nl . + "\u03B2\u03C1\u03B1\u03B2\u03B5\u03AF\u03BF"@el . + "r\u00E9compense"@fr . + "premio"@it . + "award"@en . + "\uC0C1"@ko . + "nagrada"@sl . + "\u8CDE"@ja . + "Auszeichnung"@de . + . + . + . + . + "hemellichaam"@nl . + "\u03BF\u03C5\u03C1\u03AC\u03BD\u03B9\u03BF \u03C3\u03CE\u03BC\u03B1"@el . + "corps celeste"@fr . + "corpo celeste"@it . + "cuerpo celeste"@es . + "celestial body"@en . + "\uCC9C\uCCB4"@ko . + "\u5929\u4F53"@ja . + "Himmelsk\u00F6rper"@de . + . + . + . + "begraafplaats"@nl . + "\u03BD\u03B5\u03BA\u03C1\u03BF\u03C4\u03B1\u03C6\u03B5\u03AF\u03BF"@el . + "cimeti\u00E8re"@fr . + "cementerio"@es . + "cemetery"@en . + "Friedhof"@de . + "A burial place"@en . + "\u039D\u03B5\u03BA\u03C1\u03BF\u03C4\u03B1\u03C6\u03B5\u03AF\u03BF (\u03AE \u039A\u03BF\u03B9\u03BC\u03B7\u03C4\u03AE\u03C1\u03B9\u03BF) \u03BF\u03BD\u03BF\u03BC\u03AC\u03B6\u03B5\u03C4\u03B1\u03B9 \u03BF \u03C7\u03CE\u03C1\u03BF\u03C2 \u03BF \u03C0\u03C1\u03BF\u03BF\u03C1\u03B9\u03C3\u03BC\u03AD\u03BD\u03BF\u03C2 \u03B3\u03B9\u03B1 \u03C4\u03B7\u03BD \u03C4\u03B1\u03C6\u03AE \u03C4\u03C9\u03BD \u03BD\u03B5\u03BA\u03C1\u03CE\u03BD."@el . + "Un cimeti\u00E8re est un groupement de s\u00E9pultures monumentales."@fr . + . + . + . + . + "one-time municipality"@en . + "commune historique"@fr . + "ehemalige Gemeinde"@de . + "voormalige gemeente"@nl . + "A municipality that has ceased to exist, and most of the time got incorporated (wholesale or partly) into another municipality"@en . + . + . + . + . + "martial artist"@en . + "Kampfk\u00FCnstler"@de . + "\u03A0\u03BF\u03BB\u03B5\u03BC\u03B9\u03BA\u03CC\u03C2 \u039A\u03B1\u03BB\u03BB\u03B9\u03C4\u03AD\u03C7\u03BD\u03B7\u03C2"@el . + . + . + . + "hollywood cartoon"@en . + "\u03BA\u03B9\u03BD\u03BF\u03CD\u03BC\u03B5\u03BD\u03B1 \u03C3\u03C7\u03AD\u03B4\u03B9\u03B1 \u03C4\u03BF\u03C5 Hollywood"@el . + "Hollywood Cartoon"@de . + . + . + . + "musical"@nl . + "\u03BC\u03BF\u03C5\u03C3\u03B9\u03BA\u03CC\u03C2"@el . + "musique"@fr . + "musical"@en . + "\uBBA4\uC9C0\uCEEC"@ko . + "\u30DF\u30E5\u30FC\u30B8\u30AB\u30EB"@ja . + "Musical"@de . + . + . + . + . + "beachvolleybal speler"@nl . + "\u03C0\u03B1\u03AF\u03BA\u03C4\u03B7\u03C2 \u03C4\u03BF\u03C5 beach volley"@el . + "giocatore di beach volley"@it . + "beach volleyball player"@en . + "\uBE44\uCE58\uBC1C\uB9AC\uBCFC \uC120\uC218"@ko . + "\u30D3\u30FC\u30C1\u30D0\u30EC\u30FC\u9078\u624B"@ja . + "Beachvolleyballspieler"@de . + "\u0388\u03BD\u03B1 \u03AC\u03C4\u03BF\u03BC\u03BF (\u03AC\u03BD\u03B4\u03C1\u03B1\u03C2 \u03AE \u03B3\u03C5\u03BD\u03B1\u03AF\u03BA\u03B1) \u03C0\u03BF\u03C5 \u03B1\u03C3\u03C7\u03BF\u03BB\u03B5\u03AF\u03C4\u03B1\u03B9 \u03BC\u03B5 \u03C4\u03BF \u03AC\u03B8\u03BB\u03B7\u03BC\u03B1 \u03C4\u03BF\u03C5 \u03BC\u03C0\u03AF\u03C4\u03C2 \u03B2\u03CC\u03BB\u03BB\u03B5\u03CB."@el . + . + . + . + "national collegiate athletic association team season"@en . + "NCAA Team Saison"@de . + "NCAA team seizoen"@nl . + . + . + . + "ster"@nl . + "\u03B1\u03C3\u03C4\u03AD\u03C1\u03B9"@el . + "\u00E9toile"@fr . + "stella"@it . + "star"@en . + "\uD56D\uC131"@ko . + "\u6052\u661F"@ja . + "Stern"@de . + . + . + . + "inline hockey league"@en . + "\u03C0\u03C1\u03C9\u03C4\u03AC\u03B8\u03BB\u03B7\u03BC\u03B1 \u03C7\u03CC\u03BA\u03B5\u03CB inline"@el . + "inlinehockey competitie"@nl . + "Inlinehockey Liga"@de . + "group of sports teams that compete against each other in Inline Hockey."@en . + . + . + . + "Eurovisie Songfestival act"@nl . + "\u0394\u03B9\u03B1\u03B3\u03C9\u03BD\u03B9\u03C3\u03BC\u03CC\u03C2 \u03C4\u03C1\u03B1\u03B3\u03BF\u03C5\u03B4\u03B9\u03BF\u03CD \u03C4\u03B7\u03C2 Eurovision"@el . + "concours Eurovision de la chanson"@fr . + "Eurovision song contest entry"@en . + "Vorentscheid Eurovision song contest"@de . + . + . + . + "parochie"@nl . + "\u03B5\u03BD\u03BF\u03C1\u03AF\u03B1"@el . + "paroisse"@fr . + "parish"@en . + "Gemeinde"@de . + "The smallest unit of a clerical administrative body"@en . + "\u0395\u03AF\u03BD\u03B1\u03B9 \u03B7 \u03BC\u03B9\u03BA\u03C1\u03CC\u03C4\u03B5\u03C1\u03B7 \u03BC\u03BF\u03BD\u03AC\u03B4\u03B1 \u03C3\u03C4\u03B7\u03BD \u03B4\u03B9\u03BF\u03B9\u03BA\u03B7\u03C4\u03B9\u03BA\u03AE \u03B9\u03B5\u03C1\u03B1\u03C4\u03B9\u03BA\u03AE \u03B4\u03BF\u03BC\u03AE."@el . + . + . + . + "amateur boxer"@nl . + "\u03B5\u03C1\u03B1\u03C3\u03B9\u03C4\u03AD\u03C7\u03BD\u03B7\u03C2 \u03BC\u03C0\u03BF\u03BE\u03AD\u03C1"@el . + "boxeur amateur"@fr . + "pugile amatoriale"@it . + "amateur boxer"@en . + "\uC544\uB9C8\uCD94\uC5B4 \uAD8C\uD22C \uC120\uC218"@ko . + "\u30A2\u30DE\u30C1\u30E5\u30A2\u30DC\u30AF\u30B5\u30FC"@ja . + "Amateurboxer"@de . + . + . + . + "Brauner Zwerg"@de . + "brown dwarf"@en . + "bruine dwerg"@nl . + . + . + . + . + "bot"@nl . + "\u03BF\u03C3\u03C4\u03CC"@el . + "os"@fr . + "osso"@pt . + "osso"@it . + "hueso"@es . + "bone"@en . + "\uBF08"@ko . + "\u9AA8"@ja . + "Knochen"@de . + "\u0397 \u03B2\u03B1\u03C3\u03B9\u03BA\u03AE \u03BC\u03BF\u03BD\u03AC\u03B4\u03B1 \u03C4\u03BF\u03C5 \u03C3\u03C5\u03C3\u03C4\u03AE\u03BC\u03B1\u03C4\u03BF\u03C2 \u03C3\u03C4\u03AE\u03C1\u03B9\u03BE\u03B7\u03C2 \u03C4\u03C9\u03BD \u03C3\u03C0\u03BF\u03BD\u03B4\u03C5\u03BB\u03C9\u03C4\u03CE\u03BD \u03BF\u03C1\u03B3\u03B1\u03BD\u03B9\u03C3\u03BC\u03CE\u03BD."@el . + . + . + . + . + "boxing style"@en . + "estilo de boxeo"@es . + "boksstijl"@nl . + "Boxstil"@de . + . + . + . + "polysaccharide"@en . + "Polysaccharide"@de . + "polysacharide"@nl . + "Zijn koolhydraten die zijn opgebouwd uit tien of meer monosacharide-eenheden"@nl . + . + . + . + "miasto"@pl . + "stad"@nl . + "\u03C0\u03CC\u03BB\u03B7"@el . + "ville"@fr . + "cidade"@pt . + "citt\u00E0"@it . + "ciudad"@es . + "city"@en . + "cathair"@ga . + "\uB3C4\uC2DC"@ko . + "\u5E02"@ja . + "Stadt"@de . + "a relatively large and permanent settlement, particularly a large urban settlement"@en . + "un asentamiento permanente y relativamente grande, especialmente un gran asentamiento urbano"@es . + . + . + . + . + . + "econoom"@nl . + "\u03BF\u03B9\u03BA\u03BF\u03BD\u03BF\u03BC\u03BF\u03BB\u03CC\u03B3\u03BF\u03C2"@el . + "\u00E9conomiste"@fr . + "economista"@es . + "economist"@en . + "\uACBD\uC81C\uD559\uC790"@ko . + "\u00D6konom"@de . + "An economist is a professional in the social science discipline of economics."@en . + "Le terme d\u2019\u00E9conomiste d\u00E9signe une personne experte en science \u00E9conomique."@fr . + "Un economista es un profesional de las ciencias sociales experto en econom\u00EDa te\u00F3rica o aplicada."@es . + . + . + . + . + "HorseRiding"@en . + "Reiten"@de . + "paardrijsport"@nl . + "\u03B9\u03C0\u03C0\u03B1\u03C3\u03AF\u03B1"@el . + . + . + . + "congres"@nl . + "\u03C3\u03C5\u03BD\u03AD\u03B4\u03C1\u03B9\u03BF"@el . + "congr\u00E8s"@fr . + "convention"@en . + "\uCEE8\uBCA4\uC158"@ko . + "Konvention"@de . + . + . + . + "Document Type"@en . + "Dokumentenart"@de . + "\u03C4\u03CD\u03C0\u03BF\u03C2 \u03B5\u03B3\u03B3\u03C1\u03AC\u03C6\u03BF\u03C5"@el . + "documenttype"@nl . + "type of document (official, informal etc.)"@en . + "documenttype"@nl . + . + . + . + "speedway rider"@en . + "Speedway Fahrer"@de . + "speedway rijder"@nl . + . + . + . + "gymnast"@en . + "turner"@nl . + "Turner"@de . + "\u03B3\u03C5\u03BC\u03BD\u03B1\u03C3\u03C4\u03AE\u03C2"@el . + "A gymnast is one who performs gymnastics"@en . + "\u0388\u03BD\u03B1\u03C2 \u03B3\u03C5\u03BC\u03BD\u03B1\u03C3\u03C4\u03AE\u03C2 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03AD\u03BD\u03B1\u03C2 \u03C0\u03BF\u03C5 \u03B5\u03BA\u03C4\u03B5\u03BB\u03B5\u03AF \u03B3\u03C5\u03BC\u03BD\u03B1\u03C3\u03C4\u03B9\u03BA\u03AD\u03C2 \u03B1\u03C3\u03BA\u03AE\u03C3\u03B5\u03B9\u03C2"@el . + . + . + . + "winkelcentrum"@nl . + "\u03B5\u03BC\u03C0\u03BF\u03C1\u03B9\u03BA\u03CC \u03BA\u03AD\u03BD\u03C4\u03C1\u03BF"@el . + "centre commercial"@fr . + "shopping"@pt . + "shopping mall"@en . + "\uC1FC\uD551\uBAB0"@ko . + "\u30B7\u30E7\u30C3\u30D4\u30F3\u30B0\u30E2\u30FC\u30EB"@ja . + "Einkaufszentrum"@de . + . + . + . + . + . + "journalist"@nl . + "\u03B4\u03B7\u03BC\u03BF\u03C3\u03B9\u03BF\u03B3\u03C1\u03AC\u03C6\u03BF\u03C2"@el . + "journaliste"@fr . + "giornalista"@it . + "periodista"@es . + "journalist"@en . + "\u30B8\u30E3\u30FC\u30CA\u30EA\u30B9\u30C8"@ja . + "Journalist"@de . + . + . + . + . + "sportfaciliteit"@nl . + "\u03B1\u03B8\u03BB\u03B7\u03C4\u03B9\u03BA\u03AD\u03C2 \u03B5\u03B3\u03BA\u03B1\u03C4\u03B1\u03C3\u03C4\u03AC\u03C3\u03B5\u03B9\u03C2"@el . + "installation sportive"@fr . + "sport facility"@en . + "Sportanlage"@de . + . + . + . + "agent"@nl . + "\u03C0\u03C1\u03AC\u03BA\u03C4\u03BF\u03C1\u03B1\u03C2"@el . + "agent"@fr . + "agente"@it . + "agente"@es . + "agent"@en . + "\uC5D0\uC774\uC804\uD2B8"@ko . + "\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8"@ja . + "Agent"@de . + "Analogous to a foaf:Agent, an agent is an entity that acts. This is intended to be the super class of Person and Organisation."@en . + "\u0391\u03BD\u03AC\u03BB\u03BF\u03B3\u03B1 \u03BC\u03B5 \u03C4\u03B7\u03BD \u03BA\u03BB\u03AC\u03C3\u03B7 foaf:Agent, \u03AD\u03BD\u03B1\u03C2 \u03C0\u03C1\u03AC\u03BA\u03C4\u03BF\u03C1\u03B1\u03C2 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03BC\u03B9\u03B1 \u03BF\u03BD\u03C4\u03CC\u03C4\u03B7\u03C4\u03B1 \u03C0\u03BF\u03C5 \u03B5\u03BD\u03B5\u03C1\u03B3\u03B5\u03AF. \u0391\u03C5\u03C4\u03CC \u03C0\u03C1\u03BF\u03BF\u03C1\u03AF\u03B6\u03B5\u03C4\u03B1\u03B9 \u03BD\u03B1 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03BC\u03B9\u03B1 \u03C5\u03C0\u03B5\u03C1\u03BA\u03BB\u03AC\u03C3\u03B7 \u03C4\u03B7\u03C2 \u03BA\u03BB\u03AC\u03C3\u03B7\u03C2 \u0386\u03C4\u03CC\u03BC\u03BF \u03BA\u03B1\u03B9 \u039F\u03C1\u03B3\u03B1\u03BD\u03B9\u03C3\u03BC\u03CC\u03C2."@el . + . + . + . + . + . + "Molen"@nl . + "\u039C\u03CD\u03BB\u03BF\u03C2"@el . + "Moulin"@fr . + "mulino"@it . + "Mill"@en . + "M\u00FChle"@de . + "a unit operation designed to break a solid material into smaller pieces"@en . + . + . + . + . + "obraz"@pl . + "schilderij"@nl . + "\u0388\u03C1\u03B3\u03BF \u0396\u03C9\u03B3\u03C1\u03B1\u03C6\u03B9\u03BA\u03AE\u03C2"@el . + "peinture"@fr . + "Painting"@en . + "\u7D75\u753B"@ja . + "Gem\u00E4lde"@de . + "Describes a painting to assign picture entries in wikipedia to artists."@en . + . + . + . + . + "resultaat op de Olympische Spelen"@nl . + "\u03B1\u03C0\u03BF\u03C4\u03B5\u03BB\u03AD\u03C3\u03BC\u03B1\u03C4\u03B1 \u039F\u03BB\u03C5\u03BC\u03C0\u03B9\u03B1\u03BA\u03CE\u03BD \u03B1\u03B3\u03CE\u03BD\u03C9\u03BD"@el . + "r\u00E9sultat de Jeux Olympiques"@fr . + "resultados de Juegos Ol\u00EDmpicos"@es . + "olympic result"@en . + "olympisches Ergebnis"@de . + . + . + . + "Sports team member"@en . + "\u03BC\u03AD\u03BB\u03BF\u03C2 \u03B1\u03B8\u03BB\u03B7\u03C4\u03B9\u03BA\u03AE\u03C2 \u03BF\u03BC\u03AC\u03B4\u03B1\u03C2"@el . + "sport teamlid"@nl . + "Sport Team Mitglied"@de . + "lid van een athletisch team"@nl . + "A member of an athletic team."@en . + "\u039C\u03AD\u03BB\u03BF\u03C2 \u03B1\u03B8\u03BB\u03B7\u03C4\u03B9\u03BA\u03AE\u03C2 \u03BF\u03BC\u03AC\u03B4\u03B1\u03C2."@el . + . + . + . + "militaire eenheid"@nl . + "\u03A3\u03C4\u03C1\u03B1\u03C4\u03B9\u03C9\u03C4\u03B9\u03BA\u03AE \u039C\u03BF\u03BD\u03AC\u03B4\u03B1"@el . + "unit\u00E9 militaire"@fr . + "unidade militar"@pt . + "unidad militar"@es . + "military unit"@en . + "\uAD70\uB300"@ko . + "Milit\u00E4reinheit"@de . + . + . + . + . + "public service"@en . + "\u00F6ffentlicher Dienst"@de . + "\u03B4\u03B7\u03BC\u03CC\u03C3\u03B9\u03B5\u03C2 \u03C5\u03C0\u03B7\u03C1\u03B5\u03C3\u03AF\u03B5\u03C2"@el . + "\u0395\u03AF\u03BD\u03B1\u03B9 \u03BF\u03B9 \u03C5\u03C0\u03B7\u03C1\u03B5\u03C3\u03AF\u03B5\u03C2 \u03C0\u03BF\u03C5 \u03C0\u03C1\u03BF\u03C3\u03C6\u03AD\u03C1\u03BF\u03BD\u03C4\u03B1\u03B9 \u03B1\u03C0\u03CC \u03B4\u03BF\u03BC\u03AD\u03C2 \u03C4\u03BF\u03C5 \u03BA\u03C1\u03AC\u03C4\u03BF\u03C5\u03C2"@el . + . + . + . + . + "ani-manga figuur"@nl . + "\u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03AE\u03C1\u03B1\u03C2 \u03B1\u03BD\u03B9\u03BC\u03AC\u03BD\u03B3\u03BA\u03B1"@el . + "personaggio animanga"@it . + "animanga character"@en . + "\uB9CC\uD654\uC560\uB2C8 \uB4F1\uC7A5\uC778\uBB3C"@ko . + "\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC"@ja . + "Manga-Charakter"@de . + "Anime/Manga character"@en . + "\u03A7\u03B1\u03C1\u03B1\u03BA\u03C4\u03AE\u03C1\u03B1\u03C2 \u03B1\u03C0\u03CC \u0386\u03BD\u03B9\u03BC\u03B5/\u039C\u03AC\u03BD\u03B3\u03BA\u03B1"@el . + . + . + . + "futbol turnuvas\u0131"@tr . + "voetbal toernooi"@nl . + "\u03C4\u03BF\u03C5\u03C1\u03BD\u03BF\u03C5\u03AC \u03C0\u03BF\u03B4\u03BF\u03C3\u03C6\u03B1\u03AF\u03C1\u03BF\u03C5"@el . + "campeonato de futebol"@pt . + "soccer tournoment"@en . + "Fu\u00DFballturnier"@de . + . + . + . + "ziekte"@nl . + "\u03B1\u03C3\u03B8\u03AD\u03BD\u03B5\u03B9\u03B1"@el . + "maladie"@fr . + "malattia"@it . + "disease"@en . + "\uC9C8\uBCD1"@ko . + "\u75C5\u6C17"@ja . + "Krankheit"@de . + . + . + . + . + "stierenvechter"@nl . + "\u03C4\u03B1\u03C5\u03C1\u03BF\u03BC\u03AC\u03C7\u03BF\u03C2"@el . + "torreo"@es . + "bullfighter"@en . + "Stierk\u00E4mpfer"@de . + . + . + . + "literary genre"@en . + "Literaturgattung"@de . + "Genres of literature, e.g. Satire, Gothic"@en . + . + . + . + "druif"@nl . + "\u03C3\u03C4\u03B1\u03C6\u03CD\u03BB\u03B9"@el . + "raisin"@fr . + "uva"@it . + "uva"@es . + "grape"@en . + "\u30D6\u30C9\u30A6"@ja . + "Weintraube"@de . + . + . + . + . + "watervlakte"@nl . + "\u03CD\u03B4\u03B1\u03C4\u03B1"@el . + "\u00E9tendue d'eau"@fr . + "distesa d'acqua"@it . + "Cuerpo de agua"@es . + "body of water"@en . + "\uC218\uC5ED"@ko . + "\u6C34\u57DF"@ja . + "Gew\u00E4sser"@de . + "\u03A3\u03C5\u03B3\u03BA\u03B5\u03BD\u03C4\u03C1\u03C9\u03BC\u03AD\u03BD\u03B5\u03C2, \u03C3\u03C5\u03BD\u03AE\u03B8\u03C9\u03C2 \u03BC\u03B5\u03B3\u03AC\u03BB\u03B5\u03C2 \u03C0\u03BF\u03C3\u03CC\u03C4\u03B7\u03C4\u03B5\u03C2 \u03BD\u03B5\u03C1\u03BF\u03CD (\u03C0.\u03C7. \u03C9\u03BA\u03B5\u03B1\u03BD\u03BF\u03AF) \u03C0\u03BF\u03C5 \u03B2\u03C1\u03AF\u03C3\u03BA\u03BF\u03BD\u03C4\u03B1\u03B9 \u03C3\u03C4\u03B7 \u0393\u03B7 \u03AE \u03C3\u03B5 \u03BF\u03C0\u03BF\u03B9\u03BF\u03BD\u03B4\u03AE\u03C0\u03BF\u03C4\u03B5 \u03AC\u03BB\u03BB\u03BF \u03C0\u03BB\u03B1\u03BD\u03AE\u03C4\u03B7. \u039F \u03CC\u03C1\u03BF\u03C2 \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03B5\u03AF\u03C4\u03B1\u03B9 \u03BA\u03B1\u03B9 \u03B3\u03B9\u03B1 \u03C5\u03B4\u03AC\u03C4\u03B9\u03BD\u03BF\u03C5\u03C2 \u03C3\u03C7\u03B7\u03BC\u03B1\u03C4\u03B9\u03C3\u03BC\u03BF\u03CD\u03C2 \u03CC\u03C0\u03BF\u03C5 \u03C5\u03C0\u03AC\u03C1\u03C7\u03B5\u03B9 \u03BA\u03AF\u03BD\u03B7\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03BD\u03B5\u03C1\u03BF\u03CD, \u03CC\u03C0\u03C9\u03C2 \u03C0\u03BF\u03C4\u03B1\u03BC\u03BF\u03AF, \u03C1\u03B5\u03CD\u03BC\u03B1\u03C4\u03B1 \u03AE \u03BA\u03B1\u03BD\u03AC\u03BB\u03B9\u03B1."@el . + . + . + . + . + "racecircuit"@nl . + "\u03C0\u03AF\u03C3\u03C4\u03B1 \u03B1\u03B3\u03CE\u03BD\u03C9\u03BD"@el . + "circuit de course"@fr . + "race track"@en . + "Rennstrecke"@de . + . + . + . + . + "historisch gebouw"@nl . + "\u03B9\u03C3\u03C4\u03BF\u03C1\u03B9\u03BA\u03CC \u03BA\u03C4\u03AF\u03C1\u03B9\u03BF"@el . + "b\u00E2timent historique"@fr . + "historic building"@en . + "\u6B74\u53F2\u7684\u5EFA\u9020\u7269"@ja . + "historisches Geb\u00E4ude"@de . + . + . + . + . + "monument"@nl . + "\u03BC\u03BD\u03B7\u03BC\u03B5\u03AF\u03BF"@el . + "monument"@fr . + "monument"@en . + "Denkmal"@de . + "A type of structure (a statue or an art object) created to commemorate a person or important event, not necessarily of a catastrophic nature."@en . + . + . + . + . + "artysta"@pl . + "kunstenaar"@nl . + "\u03BA\u03B1\u03BB\u03BB\u03B9\u03C4\u03AD\u03C7\u03BD\u03B7\u03C2"@el . + "artiste"@fr . + "artista"@it . + "\u0445\u0443\u0434\u043E\u0436\u043D\u0438\u043A"@ru . + "artist"@en . + "\uC608\uC220\uAC00"@ko . + "\u82B8\u8853\u5BB6"@ja . + "\u043C\u0430\u0441\u0442\u0430\u043A"@be . + "K\u00FCnstler"@de . + . + . + . + . + "paardentrainer"@nl . + "\u03B5\u03BA\u03C0\u03B1\u03B9\u03B4\u03B5\u03C5\u03C4\u03AE\u03C2 \u03B1\u03BB\u03CC\u03B3\u03C9\u03BD"@el . + "horse trainer"@en . + "\u8ABF\u6559\u5E2B"@ja . + "Pferdetrainer"@de . + . + . + . + "canoeist"@en . + "Kanute"@de . + "canoista"@it . + "kanovaarder"@nl . + . + . + . + "Imdb"@nl . + "Imdb"@el . + "Imdb"@fr . + "Imdb"@en . + "Imdb"@de . + . + . + . + "geopolitieke organisatie"@nl . + "\u03B3\u03B5\u03C9\u03C0\u03BF\u03BB\u03B9\u03C4\u03B9\u03BA\u03AE \u03BF\u03C1\u03B3\u03AC\u03BD\u03C9\u03C3\u03B7"@el . + "organisation g\u00E9opolitique"@fr . + "organizaci\u00F3n geopol\u00EDtica"@es . + "geopolitical organisation"@en . + "\uC9C0\uC815\uD559\uC801 \uC870\uC9C1"@ko . + "geopolitische Organisation"@de . + . + . + . + "muisgenoom"@nl . + "\u03B3\u03BF\u03BD\u03AF\u03B4\u03B9\u03BF \u03C0\u03BF\u03BD\u03C4\u03B9\u03BA\u03B9\u03BF\u03CD"@el . + "MouseGene"@en . + "\u30DE\u30A6\u30B9\u907A\u4F1D\u5B50"@ja . + "Mausgenom"@de . + . + . + . + "gross domestic product per capita"@en . + "Bruttoinlandsprodukt pro Kopf"@de . + "\u03B1\u03BA\u03B1\u03B8\u03AC\u03C1\u03B9\u03C3\u03C4\u03BF \u03B5\u03B3\u03C7\u03CE\u03C1\u03B9\u03BF \u03C0\u03C1\u03BF\u03CA\u03CC\u03BD \u03BA\u03B1\u03C4\u03AC \u03BA\u03B5\u03C6\u03B1\u03BB\u03AE\u03BD"@el . + . + . + . + "Wahldiagram"@de . + "Election Diagram"@en . + "\u03B5\u03BA\u03BB\u03BF\u03B3\u03B9\u03BA\u03CC \u03B4\u03B9\u03AC\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1"@el . + "verkiezingen diagram"@nl . + . + . + . + "Quote"@en . + "Zitat"@de . + . + . + . + "orphan"@en . + "verwaist"@de . + "orphelin"@fr . + "wees"@nl . + . + . + . + "Amerikaans football team"@nl . + "\u03BF\u03BC\u03AC\u03B4\u03B1 \u03B1\u03BC\u03B5\u03C1\u03B9\u03BA\u03B1\u03BD\u03B9\u03BA\u03BF\u03CD \u03C0\u03BF\u03B4\u03BF\u03C3\u03C6\u03B1\u03AF\u03C1\u03BF\u03C5"@el . + "\u00E9quipe am\u00E9ricaine de football am\u00E9ricain"@fr . + "squadra di football americano"@it . + "american football Team"@en . + "\uBBF8\uC2DD \uCD95\uAD6C \uD300"@ko . + "\u30A2\u30E1\u30EA\u30AB\u30F3\u30FB\u30D5\u30C3\u30C8\u30DC\u30FC\u30EB\u30FB\u30C1\u30FC\u30E0"@ja . + "American-Football-Team"@de . + . + . + . + "still image"@en . + "Standbild"@de . + "stilstaand beeld"@nl . + "A visual document that is not intended to be animated; equivalent to http://purl.org/dc/dcmitype/StillImage"@en . + . + . + . + "Gaelic games player"@en . + "g\u00E4lischen Sportspieler"@de . + "\u0393\u03B1\u03B5\u03BB\u03B9\u03BA\u03CC\u03C2 \u03C0\u03B1\u03AF\u03BA\u03C4\u03B7\u03C2 \u03C0\u03B1\u03B9\u03C7\u03BD\u03B9\u03B4\u03B9\u03CE\u03BD"@el . + "joueur de sports ga\u00E9liques"@fr . + . + . + . + "roman"@nl . + "\u03BD\u03BF\u03C5\u03B2\u03AD\u03BB\u03B1"@el . + "roman"@fr . + "novella"@it . + "novel"@en . + "\u5C0F\u8AAC"@ja . + "Roman"@de . + "A book of long narrative in literary prose"@en . + "\u0388\u03BD\u03B1 \u03B2\u03B9\u03B2\u03BB\u03AF\u03BF \u03BC\u03B5 \u03BC\u03B5\u03B3\u03AC\u03BB\u03B7 \u03B1\u03C6\u03AE\u03B3\u03B7\u03C3\u03B7 \u03C3\u03B5 \u03BB\u03BF\u03B3\u03BF\u03C4\u03B5\u03C7\u03BD\u03B9\u03BA\u03AE \u03C0\u03C1\u03CC\u03B6\u03B1"@el . + "Le roman est un genre litt\u00E9raire, caract\u00E9ris\u00E9 pour l'essentiel par une narration fictionnelle plus ou moins longue."@fr . + . + . + . + . + "schaatser"@nl . + "\u03C0\u03B1\u03B3\u03BF\u03B4\u03C1\u03CC\u03BC\u03BF\u03C2"@el . + "pattinatore"@it . + "skater"@en . + "Schlittschuhl\u00E4ufer"@de . + . + . + . + . + "curlingspeler"@nl . + "\u03BC\u03C0\u03B9\u03BA\u03BF\u03C5\u03C4\u03AF"@el . + "curler"@en . + "\uCEEC\uB9C1 \uC120\uC218"@ko . + "Curlingspieler"@de . + . + . + . + "governmental administrative region"@en . + "staatliche Verwaltungsregion"@de . + "r\u00E9gion administrative d'\u00E9tat"@fr . + "gebied onder overheidsbestuur"@nl . + "An administrative body governing some territorial unity, in this case a governmental administrative body"@en . + . + . + . + "tuin"@nl . + "\u03BA\u03AE\u03C0\u03BF\u03C2"@el . + "jardin"@fr . + "giardino"@it . + "garden"@en . + "Garten"@de . + "A garden is a planned space, usually outdoors, set aside for the display, cultivation, and enjoyment of plants and other forms of nature. (http://en.wikipedia.org/wiki/Garden)"@en . + . + . + . + . + "classical music artist"@en . + "K\u00FCnstler der klassischen Musik"@de . + "\u03BA\u03B1\u03BB\u03BB\u03B9\u03C4\u03AD\u03C7\u03BD\u03B7\u03C2 \u03BA\u03BB\u03B1\u03C3\u03B9\u03BA\u03AE\u03C2 \u03BC\u03BF\u03C5\u03C3\u03B9\u03BA\u03AE\u03C2"@el . + "artiest klassieke muziek"@nl . + "\u039F \u039B\u03BF\u03CD\u03BD\u03C4\u03B2\u03B9\u03C7 \u03B2\u03B1\u03BD \u039C\u03C0\u03B5\u03C4\u03CC\u03B2\u03B5\u03BD,\u0393\u03B5\u03C1\u03BC\u03B1\u03BD\u03CC\u03C2 \u03C3\u03C5\u03BD\u03B8\u03AD\u03C4\u03B7\u03C2 \u03BA\u03B1\u03B9 \u03C0\u03B9\u03B1\u03BD\u03AF\u03C3\u03C4\u03B1\u03C2,\u03AE\u03C4\u03B1\u03BD \u03AD\u03BD\u03B1\u03C2 \u03C3\u03C0\u03BF\u03C5\u03B4\u03B1\u03AF\u03BF\u03C2 \u03BA\u03B1\u03BB\u03BB\u03B9\u03C4\u03AD\u03C7\u03BD\u03B7\u03C2 \u03C4\u03B7\u03C2 \u03BA\u03BB\u03B1\u03C3\u03B9\u03BA\u03AE\u03C2 \u03BC\u03BF\u03C5\u03C3\u03B9\u03BA\u03AE\u03C2."@el . + . + . + . + "eukaryoot"@nl . + "\u03B5\u03C5\u03BA\u03B1\u03C1\u03C5\u03C9\u03C4\u03B9\u03BA\u03CC"@el . + "eucaryote"@fr . + "eucarionte"@es . + "eukaryote"@en . + "\uC9C4\uD575\uC0DD\uBB3C"@ko . + "\u771F\u6838\u751F\u7269"@ja . + "Eukaryoten"@de . + . + . + . + . + "profesor"@pl . + "professor"@nl . + "\u03BA\u03B1\u03B8\u03B7\u03B3\u03B7\u03C4\u03AE\u03C2"@el . + "professeur"@fr . + "professor"@en . + "ollamh"@ga . + "Professor"@de . + . + . + . + "vice president"@nl . + "\u03B1\u03BD\u03C4\u03B9\u03C0\u03C1\u03CC\u03B5\u03B4\u03C1\u03BF\u03C2"@el . + "vice pr\u00E9sident"@fr . + "vice president"@en . + "Vizepr\u00E4sident"@de . + . + . + . + . + "honkbal competitie"@nl . + "\u03C0\u03C1\u03C9\u03C4\u03AC\u03B8\u03BB\u03B7\u03BC\u03B1 \u03BC\u03C0\u03AD\u03B9\u03B6\u03BC\u03C0\u03BF\u03BB"@el . + "ligue de baseball"@fr . + "lega di baseball"@it . + "liga de b\u00E9isbol"@es . + "baseball league"@en . + "\uC57C\uAD6C \uB9AC\uADF8"@ko . + "\u91CE\u7403\u30EA\u30FC\u30B0"@ja . + "Baseball-Liga"@de . + "a group of sports teams that compete against each other in Baseball."@en . + "\u03AD\u03BD\u03B1 \u03C3\u03CD\u03BD\u03BF\u03BB\u03BF \u03B1\u03C0\u03CC \u03BF\u03BC\u03AC\u03B4\u03B5\u03C2 \u03BC\u03C0\u03AD\u03B9\u03B6\u03BC\u03C0\u03BF\u03BB \u03BF\u03B9 \u03BF\u03C0\u03BF\u03AF\u03B5\u03C2 \u03C3\u03C5\u03BD\u03B1\u03B3\u03C9\u03BD\u03AF\u03B6\u03BF\u03BD\u03C4\u03B1\u03B9 \u03BC\u03B5\u03C4\u03B1\u03BE\u03CD \u03C4\u03BF\u03C5\u03C2."@el . + . + . + . + . + "Historical province"@en . + "Ancienne province"@fr . + "historischer Provinz"@de . + "A place which used to be a province."@en . + . + . + . + "onderwijsinstelling"@nl . + "\u03B5\u03BA\u03C0\u03B1\u03B9\u03B4\u03B5\u03C5\u03C4\u03B9\u03BA\u03CC \u03AF\u03B4\u03C1\u03C5\u03BC\u03B1"@el . + "\u00E9tablissement d'enseignement"@fr . + "instituci\u00F3n educativa"@es . + "educational institution"@en . + "\uAD50\uC721 \uAE30\uAD00"@ko . + "Bildungseinrichtung"@de . + . + . + . + . + "ruimtestation"@nl . + "\u03B4\u03B9\u03B1\u03C3\u03C4\u03B7\u03BC\u03B9\u03BA\u03CC\u03C2 \u03C3\u03C4\u03B1\u03B8\u03BC\u03CC\u03C2"@el . + "station spatiale"@fr . + "estaci\u00F3n espacial"@es . + "space station"@en . + "\uC6B0\uC8FC \uC815\uAC70\uC7A5"@ko . + "Raumstation"@de . + . + . + . + . + "tak\u0131my\u0131ld\u0131z\u0131"@tr . + "samenstel"@nl . + "\u03B1\u03C3\u03C4\u03B5\u03C1\u03B9\u03C3\u03BC\u03CC\u03C2"@el . + "costellazione"@it . + "constelaci\u00F3n"@es . + "constellation"@en . + "\uBCC4\uC790\uB9AC"@ko . + "\u661F\u5EA7"@ja . + "Sternbild"@de . + "Una costellazione \u00E8 ognuna delle 88 parti in cui la sfera celeste \u00E8 convenzionalmente suddivisa allo scopo di mappare le stelle."@it . + . + . + . + . + "ski\u00EBr"@nl . + "\u03C3\u03BA\u03B9\u03AD\u03C1"@el . + "skieur"@fr . + "sciatore"@it . + "skier"@en . + "\u30B9\u30AD\u30FC\u30E4\u30FC"@ja . + "skifahrer"@de . + . + . + . + . + "politician spouse"@en . + "Ehepartner eines Politiker"@de . + "\u03C3\u03CD\u03B6\u03C5\u03B3\u03BF\u03C2 \u03C0\u03BF\u03BB\u03B9\u03C4\u03B9\u03BA\u03BF\u03CD"@el . + . + . + . + "underground journal"@en . + "Underground Zeitschrift"@de . + "verzetsblad"@nl . + "An underground journal is, although over time there have always been publications forbidden by law, a phenomenon typical of countries occupied by the Germans during the Second World War. The writing in the underground press aims at stiffening a spirit of resistance against Nazi occupation. The distribution of underground journals had to be very secretive and was, therefore, very much dependant on illegal distribution circuits and the hazards of persecution by the occupant."@en . + "Ondergrondse bladen zijn, hoewel een verschijnsel van alle tijden, een verschijnsel dat sterk wordt geassocieerd met het verzet tegen de Duitse bezetter in de Tweede Wereldoorlog. De artikelen in deze bladen waren erop gericht de verzetsgeest levend te houden of aan te wakkeren. De verspreiding van illegale tijdschriften was sterk afhankelijk van illegale distributiekanalen en van het falen of succes van de Duitse pogingen om deze kanalen op te rollen."@nl . + . + . + . + "paintball competitie"@nl . + "\u03BA\u03CD\u03C0\u03B5\u03BB\u03BB\u03BF paintball"@el . + "ligue de paintball"@fr . + "paintball league"@en . + "Paintball-Liga"@de . + "a group of sports teams that compete against each other in Paintball"@en . + "\u03AD\u03BD\u03B1 \u03B3\u03BA\u03C1\u03BF\u03C5\u03C0 \u03B1\u03B8\u03BB\u03B7\u03C4\u03B9\u03BA\u03CE\u03BD \u03BF\u03BC\u03AC\u03B4\u03C9\u03BD \u03C0\u03BF\u03C5 \u03B1\u03BD\u03C4\u03B1\u03B3\u03C9\u03BD\u03AF\u03B6\u03BF\u03BD\u03C4\u03B1\u03B9 \u03C3\u03C4\u03BF paintball"@el . + . + . + . + "wolfsklauw"@nl . + "\u039C\u03BF\u03CD\u03C3\u03BA\u03BB\u03B9\u03B1"@el . + "lycopodiopsida"@fr . + "club moss"@en . + "\uC11D\uC1A1\uAC15"@ko . + "\u30D2\u30AB\u30B2\u30CE\u30AB\u30BA\u30E9\u7DB1"@ja . + "B\u00E4rlapp"@de . + . + . + . + "compositie klassieke muziek"@nl . + "\u03C3\u03CD\u03BD\u03B8\u03B5\u03C3\u03B7 \u03BA\u03BB\u03B1\u03C3\u03B9\u03BA\u03AE\u03C2 \u03BC\u03BF\u03C5\u03C3\u03B9\u03BA\u03AE\u03C2"@el . + "composizione di musica classica"@it . + "classical music composition"@en . + "Komposition klassischer Musik"@de . + "\u0397 \u03C3\u03CD\u03BD\u03B8\u03B5\u03C3\u03B7 \u03BA\u03BB\u03B1\u03C3\u03B9\u03BA\u03AE\u03C2 \u03BC\u03BF\u03C5\u03C3\u03B9\u03BA\u03AE\u03C2 \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF \u03BD\u03B1 \u03C0\u03C1\u03B1\u03B3\u03BC\u03B1\u03C4\u03BF\u03C0\u03BF\u03B9\u03B7\u03B8\u03B5\u03AF \u03BA\u03B1\u03B9 \u03BC\u03B5 \u03C4\u03B7 \u03B2\u03BF\u03AE\u03B8\u03B5\u03B9\u03B1 \u03B5\u03B9\u03B4\u03B9\u03BA\u03CE\u03BD \u03C0\u03C1\u03BF\u03B3\u03C1\u03B1\u03BC\u03BC\u03AC\u03C4\u03C9\u03BD \u03C3\u03C4\u03BF\u03BD \u03C5\u03C0\u03BF\u03BB\u03BF\u03B3\u03B9\u03C3\u03C4\u03AE \u03C0\u03BF\u03C5 \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03BF\u03CD\u03BD \u03C3\u03C5\u03B3\u03BA\u03B5\u03BA\u03C1\u03B9\u03BC\u03AD\u03BD\u03BF \u03B1\u03BB\u03B3\u03CC\u03C1\u03B9\u03B8\u03BC\u03BF."@el . + . + . + . + "strand"@nl . + "plage"@fr . + "playa"@es . + "beach"@en . + "platja"@ca . + "Strand"@de . + "The shore of a body of water, especially when sandy or pebbly."@en . + "Ribera del mar o de un r\u00EDo grande, formada de arenales en superficie casi plana."@es . + . + . + . + "lacrosse league"@en . + "Lacrosse-Liga"@de . + "\u03C0\u03C1\u03C9\u03C4\u03AC\u03B8\u03BB\u03B7\u03BC\u03B1 \u03C7\u03CC\u03BA\u03B5\u03CB \u03C3\u03B5 \u03C7\u03CC\u03C1\u03C4\u03BF"@el . + "ligue de crosse"@fr . + "a group of sports teams that compete against each other in Lacrosse."@en . + . + . + . + "serial killer"@en . + "Serienm\u00F6rder"@de . + "\u03BA\u03B1\u03C4\u03AC \u03C3\u03C5\u03C1\u03C1\u03BF\u03AE\u03BD \u03B4\u03BF\u03BB\u03BF\u03C6\u03CC\u03BD\u03BF\u03C2"@el . + "seriemoordenaar"@nl . + . + . + . + . + "olympic event"@en . + "olympische Veranstaltung"@de . + "\u03BF\u03BB\u03C5\u03BC\u03C0\u03B9\u03BA\u03B1\u03BA\u03CC \u03B3\u03B5\u03B3\u03BF\u03BD\u03CC\u03C2"@el . + "Olympisch evenement"@nl . + . + . + . + "artiest discografie"@nl . + "\u03B4\u03B9\u03C3\u03BA\u03BF\u03B3\u03C1\u03B1\u03C6\u03AF\u03B1 \u03BA\u03B1\u03BB\u03BB\u03B9\u03C4\u03AD\u03C7\u03BD\u03B7"@el . + "discogaf\u00EDa de artista"@fr . + "discografia dell'artista"@it . + "artist discography"@en . + "\uC74C\uBC18"@ko . + "\u30C7\u30A3\u30B9\u30B3\u30B0\u30E9\u30D5\u30A3"@ja . + "K\u00FCnstler Diskografie"@de . + . + . + . + "opactwo"@pl . + "abdij"@nl . + "\u03B1\u03B2\u03B1\u03B5\u03AF\u03BF"@el . + "abbaye"@fr . + "abadia"@pt . + "abbazia"@it . + "abad\u00EDa"@es . + "abbey"@en . + "\uC218\uB3C4\uC6D0"@ko . + "\u4FEE\u9053\u9662"@zh . + "\u4FEE\u9053\u9662"@ja . + "abadia"@ca . + "Abtei"@de . + "klasztor katolicki, na kt\u00F3rego czele stoi opat, wraz z nale\u017C\u0105cymi do niego posiad\u0142o\u015Bciami ziemskimi."@pl . + "\u0391\u03B2\u03B1\u03B5\u03AF\u03BF \u03B5\u03AF\u03BD\u03B1\u03B9 \u03AD\u03BD\u03B1 \u03BA\u03B1\u03B8\u03BF\u03BB\u03B9\u03BA\u03CC \u03B1\u03BD\u03B4\u03C1\u03B9\u03BA\u03CC \u03AE \u03B3\u03C5\u03BD\u03B1\u03B9\u03BA\u03B5\u03AF\u03BF \u03BC\u03BF\u03BD\u03B1\u03C3\u03C4\u03AE\u03C1\u03B9\u03BF, \u03C0\u03BF\u03C5 \u03B4\u03B9\u03BF\u03B9\u03BA\u03B5\u03AF\u03C4\u03B1\u03B9 \u03B1\u03C0\u03CC \u03AD\u03BD\u03B1\u03BD \u03B7\u03B3\u03BF\u03CD\u03BC\u03B5\u03BD\u03BF \u03AE \u03B7\u03B3\u03BF\u03C5\u03BC\u03AD\u03BD\u03B7 \u03BA\u03B1\u03B9 \u03B1\u03C0\u03BF\u03C4\u03B5\u03BB\u03B5\u03AF \u03C4\u03BF\u03BD \u03C0\u03BD\u03B5\u03C5\u03BC\u03B1\u03C4\u03B9\u03BA\u03CC \u03C0\u03B1\u03C4\u03AD\u03C1\u03B1 \u03AE \u03BC\u03B7\u03C4\u03AD\u03C1\u03B1 \u03C4\u03B7\u03C2 \u03BA\u03BF\u03B9\u03BD\u03CC\u03C4\u03B7\u03C4\u03B1\u03C2."@el . + "Une abbaye est un monast\u00E8re ou un couvent catholique plac\u00E9 sous la direction d'un abb\u00E9, lequel sert de p\u00E8re spirituel \u00E0 la communaut\u00E9 religieuse"@fr . + "Un'abbazia (detta anche abazia o badia a seconda se diretta da un abate o una badessa), \u00E8 un particolare tipo di monastero, che per il diritto canonico \u00E8 un ente autonomo."@it . + "An abbey is a Catholic monastery or convent, under the authority of an Abbot or an Abbess, who serves as the spiritual father or mother of the community."@en . + "Una abadia \u00E9s un monestir cristi\u00E0 governat per un abat o abadessa, que \u00E9s el pare o mare espiritual de la comunitat, i que s'elegeix per un determinat nombre d'anys o per tota la vida."@ca . + . + . + . + . + . + "demografie"@nl . + "\u03B4\u03B7\u03BC\u03BF\u03B3\u03C1\u03B1\u03C6\u03AF\u03B1"@el . + "d\u00E9mographie"@fr . + "demographics"@en . + "Demografie"@de . + "Population of a place. Uses these properties: populationTotal, year (when measured, populationYear), rank (sortOrder of this place amongst its siblings at the same level), name (areal measured by the population, eg: \"locality\", \"municipality\" or \"comitat\")"@en . + . + . + . + "formula one racing"@en . + "Formel-1 Rennen"@de . + "\u03C6\u03CC\u03C1\u03BC\u03BF\u03C5\u03BB\u03B1 \u03AD\u03BD\u03B1\u03C2 \u03B1\u03B3\u03CE\u03BD\u03B1\u03C2"@el . + "Formule 1-r\u200Eace"@nl . + . + . + . + "sportevenement"@nl . + "\u00E9v\u00E8nement sportif"@fr . + "evento esportivo"@pt . + "sports event"@en . + "Sportereignis"@de . + "a event of competitive physical activity"@en . + . + . + . + . + "lingwista"@pl . + "lingu\u00EFst"@nl . + "\u03B3\u03BB\u03C9\u03C3\u03C3\u03BF\u03BB\u03CC\u03B3\u03BF\u03C2"@el . + "linguiste"@fr . + "linguist"@en . + "teangeola\u00ED"@ga . + "ling\u00FCista"@ca . + "Sprachwissenschaftler"@de . + . + . + . + . + "beeldhouwer"@nl . + "\u03B3\u03BB\u03CD\u03C0\u03C4\u03B7\u03C2"@el . + "sculpteur"@fr . + "sculptor"@en . + "Bildhauer"@de . + . + . + . + "papie\u017C"@pl . + "paus"@nl . + "\u03C0\u03AC\u03C0\u03B1\u03C2"@el . + "pape"@fr . + "pope"@en . + "\uAD50\uD669"@ko . + "\u6559\u7687"@ja . + "Papst"@de . + . + . + . + . + "chemisch component"@nl . + "\u03C7\u03B7\u03BC\u03B9\u03BA\u03AE \u03AD\u03BD\u03C9\u03C3\u03B7"@el . + "produit chimique"@fr . + "composto qu\u00EDmico"@pt . + "composto chimico"@it . + "chemical compound"@en . + "\uD654\uD569\uBB3C"@ko . + "\u5316\u5408\u7269"@ja . + "chemische Verbindung"@de . + . + . + . + . + "bier"@nl . + "\u03BC\u03C0\u03CD\u03C1\u03B1"@el . + "bi\u00E8re"@fr . + "birra"@it . + "cerveza"@es . + "beer"@en . + "\uB9E5\uC8FC"@ko . + "\u30D3\u30FC\u30EB"@ja . + "Bier"@de . + . + . + . + . + "period of artistic style"@en . + "stijlperiode"@nl . + "Kunst Zeitstil"@de . + . + . + . + . + "overseas department"@en . + "\u00DCbersee-Departement"@de . + "d\u00E9partement outre mer"@fr . + "overzees departement"@nl . + . + . + . + . + "Australian football team"@nl . + "\u03C0\u03BF\u03B4\u03BF\u03C3\u03C6\u03B1\u03B9\u03C1\u03B9\u03BA\u03AE \u03BF\u03BC\u03AC\u03B4\u03B1 \u03B1\u03C5\u03C3\u03C4\u03C1\u03B1\u03BB\u03AF\u03B1\u03C2"@el . + "squadra di football australiano"@it . + "australian football Team"@en . + "Australian Football Team"@de . + . + . + . + "Intercommunality"@en . + "Interkommunalit\u00E4t"@de . + . + . + . + . + "Noble family"@en . + "Adelsfamilie"@de . + "adelijk geslacht"@nl . + "Family deemed to be of noble descent"@en . + . + . + . + . + "\u039C\u03BD\u03B7\u03BC\u03B5\u03AF\u03BF \u03A0\u03B1\u03B3\u03BA\u03CC\u03C3\u03BC\u03B9\u03B1\u03C2 \u03A0\u03BF\u03BB\u03B9\u03C4\u03B9\u03C3\u03C4\u03B9\u03BA\u03AE\u03C2 \u039A\u03BB\u03B7\u03C1\u03BF\u03BD\u03BF\u03BC\u03B9\u03AC\u03C2 (\u03A0\u03BB\u03B7\u03C1\u03BF\u03C6\u03BF\u03C1\u03AF\u03B5\u03C2 \u03A0\u03A0\u039A)"@el . + "site du patrimoine mondial"@fr . + "World Heritage Site"@en . + "\uC138\uACC4\uC720\uC0B0"@ko . + "\u4E16\u754C\u907A\u7523"@ja . + "Weltkulturerbe"@de . + "A UNESCO World Heritage Site is a site (such as a forest, mountain, lake, desert, monument, building, complex, or city) that is on the list that is maintained by the international World Heritage Programme administered by the UNESCO World Heritage Committee, composed of 21 state parties which are elected by their General Assembly for a four-year term. A World Heritage Site is a place of either cultural or physical significance."@en . + . + . + . + . + "stripverhaal"@nl . + "\u03BA\u03B9\u03BD\u03BF\u03CD\u03BC\u03B5\u03BD\u03B1 \u03C3\u03C7\u03AD\u03B4\u03B9\u03B1"@el . + "bande dessin\u00E9e"@fr . + "fumetto"@it . + "historieta"@es . + "comic"@en . + "\uB9CC\uD654"@ko . + "\u6F2B\u753B"@ja . + "Comic"@de . + . + . + . + . + "ski jumper"@en . + "Skispringer"@de . + . + . + . + "arrondissement"@en . + "arrondissement"@de . + "arrondissement"@fr . + "arrondissement"@nl . + "An administrative (France) or lawcourts (Netherlands) body governing a territorial unity on the intermediate level, between local and national level"@en . + "Das Wort Arrondissement dient zur Bezeichnung verschiedener Verwaltungsbezirke in Frankreich, Belgien, Kanada und anderen L\u00E4ndern"@de . + . + . + . + "Amerikaanse voetbal competitie"@nl . + "a\u03BC\u03B5\u03C1\u03B9\u03BA\u03B1\u03BD\u03B9\u03BA\u03CC \u03C0\u03C1\u03C9\u03C4\u03AC\u03B8\u03BB\u03B7\u03BC\u03B1 \u03C0\u03BF\u03B4\u03BF\u03C3\u03C6\u03B1\u03AF\u03C1\u03BF\u03C5"@el . + "american football league"@fr . + "liga de futebol americano"@pt . + "lega di football americano"@it . + "liga de f\u00FAtbol americano"@es . + "american football league"@en . + "\uBBF8\uC2DD \uCD95\uAD6C \uB300\uD68C"@ko . + "\u30A2\u30E1\u30EA\u30AB\u30F3\u30FB\u30D5\u30C3\u30C8\u30DC\u30FC\u30EB\u30FB\u30EA\u30FC\u30B0"@ja . + "American-Football-Liga"@de . + "A group of sports teams that compete against each other in american football."@en . + "\u0388\u03BD\u03B1 \u03C3\u03CD\u03BD\u03BF\u03BB\u03BF \u03B1\u03B8\u03BB\u03B7\u03C4\u03B9\u03BA\u03CE\u03BD \u03BF\u03BC\u03AC\u03B4\u03C9\u03BD \u03C0\u03BF\u03C5 \u03B1\u03BD\u03C4\u03B1\u03B3\u03C9\u03BD\u03AF\u03B6\u03BF\u03BD\u03C4\u03B1\u03B9 \u03BC\u03B5\u03C4\u03B1\u03BE\u03CD \u03C4\u03BF\u03C5\u03C2 \u03C3\u03C4\u03BF \u03B1\u03BC\u03B5\u03C1\u03B9\u03BA\u03AC\u03BD\u03B9\u03BA\u03BF \u03C0\u03BF\u03B4\u03CC\u03C3\u03C6\u03B1\u03B9\u03C1\u03BF."@el . + . + . + . + "sportteam"@nl . + "\u03BF\u03BC\u03B1\u03B4\u03B9\u03BA\u03AC \u03B1\u03B8\u03BB\u03AE\u03BC\u03B1\u03C4\u03B1"@el . + "\u00E9quipe sportive"@fr . + "sports team"@en . + "Sportmannschaft"@de . + . + . + . + . + "australian football competitie"@nl . + "\u03B1\u03C5\u03C3\u03C4\u03C1\u03B1\u03BB\u03B9\u03B1\u03BD\u03CC \u03C0\u03C1\u03C9\u03C4\u03AC\u03B8\u03BB\u03B7\u03BC\u03B1 \u03C0\u03BF\u03B4\u03BF\u03C3\u03C6\u03B1\u03AF\u03C1\u03BF\u03C5"@el . + "australian football league"@fr . + "liga de futebol australiano"@pt . + "lega di football australiano"@it . + "liga de f\u00FAtbol australiana"@es . + "australian football league"@en . + "\uC624\uC2A4\uD2B8\uB808\uC77C\uB9AC\uC548 \uD48B\uBCFC \uB9AC\uADF8"@ko . + "\u30AA\u30FC\u30B9\u30C8\u30E9\u30EA\u30A2\u30F3\u30FB\u30D5\u30C3\u30C8\u30DC\u30FC\u30EB\u30FB\u30EA\u30FC\u30B0"@ja . + "Australian Football League"@de . + "A group of sports teams that compete against each other in australian football."@en . + "\u039C\u03B9\u03B1 \u03BF\u03BC\u03AC\u03B4\u03B1 \u03B1\u03B8\u03BB\u03B7\u03C4\u03B9\u03BA\u03CE\u03BD \u03BF\u03BC\u03AC\u03B4\u03C9\u03BD \u03C0\u03BF\u03C5 \u03B1\u03BD\u03C4\u03B1\u03B3\u03C9\u03BD\u03AF\u03B6\u03BF\u03BD\u03C4\u03B1\u03B9 \u03BC\u03B5\u03C4\u03B1\u03BE\u03CD \u03C4\u03BF\u03C5\u03C2 \u03C3\u03B5 \u03B1\u03C5\u03C3\u03C4\u03C1\u03B1\u03BB\u03B9\u03B1\u03BD\u03CC \u03C0\u03BF\u03B4\u03CC\u03C3\u03C6\u03B1\u03B9\u03C1\u03BF."@el . + . + . + . + "sie\u0107 emisyjna"@pl . + "omroeporganisatie"@nl . + "\u03B4\u03AF\u03BA\u03C4\u03C5\u03BF \u03C1\u03B1\u03B4\u03B9\u03BF\u03C6\u03C9\u03BD\u03B9\u03BA\u03AE\u03C2 \u03BC\u03B5\u03C4\u03AC\u03B4\u03BF\u03C3\u03B7\u03C2"@el . + "cha\u00EEne de t\u00E9l\u00E9vision g\u00E9n\u00E9raliste"@fr . + "emittente"@it . + "broadcast network"@en . + "l\u00EDonra craolach\u00E1in"@ga . + "\uBE0C\uB85C\uB4DC\uCE90\uC2A4\uD2B8 \uB124\uD2B8\uC6CC\uD06C"@ko . + "\u30CD\u30C3\u30C8\u30EF\u30FC\u30AF_(\u653E\u9001)"@ja . + "Sendergruppe"@de . + "A broadcast network is an organization, such as a corporation or other association, that provides live or recorded content, such as movies, newscasts, sports, and public affairs programs for broadcast over a group of radio or television stations. (http://en.wikipedia.org/wiki/Broadcast_network - 28/03/2011)"@en . + "\u0388\u03BD\u03B1 \u03B4\u03AF\u03BA\u03C4\u03C5\u03BF \u03BC\u03B5\u03C4\u03AC\u03B4\u03BF\u03C3\u03B7\u03C2 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03BC\u03B9\u03B1 \u03BF\u03C1\u03B3\u03AC\u03BD\u03C9\u03C3\u03B7, \u03CC\u03C0\u03C9\u03C2 \u03BC\u03B9\u03B1 \u03B5\u03C4\u03B1\u03B9\u03C1\u03B5\u03AF\u03B1 \u03AE \u03AC\u03BB\u03BB\u03B7 \u03AD\u03BD\u03C9\u03C3\u03B7, \u03C0\u03BF\u03C5 \u03C0\u03B1\u03C1\u03AD\u03C7\u03B5\u03B9 \u03B6\u03C9\u03BD\u03C4\u03B1\u03BD\u03CC \u03AE \u03BC\u03B1\u03B3\u03BD\u03B7\u03C4\u03BF\u03C3\u03BA\u03BF\u03C0\u03B7\u03BC\u03AD\u03BD\u03BF \u03C0\u03B5\u03C1\u03B9\u03B5\u03C7\u03CC\u03BC\u03B5\u03BD\u03BF, \u03CC\u03C0\u03C9\u03C2 \u03C4\u03B1\u03B9\u03BD\u03AF\u03B5\u03C2, \u03B4\u03B5\u03BB\u03C4\u03AF\u03B1 \u03B5\u03B9\u03B4\u03AE\u03C3\u03B5\u03C9\u03BD, \u03B1\u03B8\u03BB\u03B7\u03C4\u03B9\u03BA\u03AC, \u03BA\u03B1\u03B9 \u03C4\u03B1 \u03C0\u03C1\u03BF\u03B3\u03C1\u03AC\u03BC\u03BC\u03B1\u03C4\u03B1 \u03B4\u03B7\u03BC\u03BF\u03C3\u03AF\u03C9\u03BD \u03C5\u03C0\u03BF\u03B8\u03AD\u03C3\u03B5\u03C9\u03BD \u03B3\u03B9\u03B1 \u03C4\u03B7\u03BD \u03B5\u03BA\u03C0\u03BF\u03BC\u03C0\u03AE \u03C0\u03AC\u03BD\u03C9 \u03B1\u03C0\u03CC \u03BC\u03B9\u03B1 \u03BF\u03BC\u03AC\u03B4\u03B1 \u03C1\u03B1\u03B4\u03B9\u03BF\u03C6\u03C9\u03BD\u03B9\u03BA\u03CE\u03BD \u03AE \u03C4\u03B7\u03BB\u03B5\u03BF\u03C0\u03C4\u03B9\u03BA\u03CE\u03BD \u03C3\u03C4\u03B1\u03B8\u03BC\u03CE\u03BD"@el . + . + . + . + . + "Nobelprijs"@nl . + "\u0392\u03C1\u03B1\u03B2\u03B5\u03AF\u03BF \u039D\u03CC\u03BC\u03C0\u03B5\u03BB"@el . + "Prix Nobel"@fr . + "Premio Nobel"@it . + "Premio Nobel"@es . + "Nobel Prize"@en . + "\u30CE\u30FC\u30D9\u30EB\u8CDE"@ja . + "Nobelpreis"@de . + . + . + . + . + "huwelijk"@nl . + "\u03B3\u03AC\u03BC\u03BF\u03C2"@el . + "mariage"@fr . + "marriage"@en . + "Heirat"@de . + "someone's marriage as a type of personal event"@en . + "O \u03B3\u03AC\u03BC\u03BF\u03C2 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03BC\u03B9\u03B1 \u03BA\u03BF\u03B9\u03BD\u03C9\u03BD\u03B9\u03BA\u03AE, \u03B8\u03C1\u03B7\u03C3\u03BA\u03B5\u03C5\u03C4\u03B9\u03BA\u03AE \u03BA\u03B1\u03B9 \u03BD\u03BF\u03BC\u03B9\u03BA\u03AE \u03C3\u03CD\u03B6\u03B5\u03C5\u03BE\u03B7 \u03AE \u03AD\u03BD\u03C9\u03C3\u03B7 \u03B4\u03CD\u03BF \u03B1\u03C4\u03CC\u03BC\u03C9\u03BD, \u03B4\u03B9\u03B1\u03C6\u03BF\u03C1\u03B5\u03C4\u03B9\u03BA\u03BF\u03CD \u03AE \u03C3\u03B5 \u03BF\u03C1\u03B9\u03C3\u03BC\u03AD\u03BD\u03B5\u03C2 \u03C7\u03CE\u03C1\u03B5\u03C2 \u03BA\u03B1\u03C4\u03AC \u03C4\u03B1 \u03C4\u03B5\u03BB\u03B5\u03C5\u03C4\u03B1\u03AF\u03B1 \u03C7\u03C1\u03CC\u03BD\u03B9\u03B1 \u03BA\u03B1\u03B9 \u03AF\u03B4\u03B9\u03BF\u03C5 \u03C6\u03CD\u03BB\u03BF\u03C5."@el . + . + . + . + . + "hockeyploeg"@nl . + "\u03BF\u03BC\u03AC\u03B4\u03B1 \u03C7\u03CC\u03BA\u03B5\u03CA"@el . + "\u00E9quipe de hockey"@fr . + "hockey team"@en . + "Hokejska ekipa"@sl . + "Hockeymannschaft"@de . + . + . + . + . + "moordenaar"@nl . + "\u03B4\u03BF\u03BB\u03BF\u03C6\u03CC\u03BD\u03BF\u03C2"@el . + "assassin"@fr . + "assasino"@it . + "murderer"@en . + "\uC5F0\uC1C4 \uC0B4\uC778\uC790"@ko . + "M\u00F6rder"@de . + . + . + . + . + "onderscheiding"@nl . + "\u03B4\u03B9\u03B1\u03BA\u03CC\u03C3\u03BC\u03B7\u03C3\u03B7"@el . + "d\u00E9coration"@fr . + "onorificenza"@it . + "condecoraci\u00F3n"@es . + "decoration"@en . + "\uC7A5\uC2DD"@ko . + "\u52F2\u7AE0"@ja . + "Auszeichnung"@de . + "An object, such as a medal or an order, that is awarded to honor the recipient ostentatiously."@en . + "Per onorificenza si intende un segno di onore che viene concesso da un'autorit\u00E0 in riconoscimento di particolari atti benemeriti."@it . + "Une distinction honorifique en reconnaissance d'un service civil ou militaire ."@fr . + . + . + . + "worstelevenement"@nl . + "\u03B1\u03B3\u03CE\u03BD\u03B1\u03C2 \u03C0\u03AC\u03BB\u03B7\u03C2"@el . + "match de catch"@fr . + "wrestling event"@en . + "Wrestling-Veranstaltung"@de . + . + . + . + "gemeente"@nl . + "\u03B4\u03AE\u03BC\u03BF\u03C2"@el . + "commune"@fr . + "municipio"@es . + "municipality"@en . + "Gemeinde"@de . + "An administrative body governing a territorial unity on the lower level, administering one or a few more settlements"@en . + "\u0394\u03AE\u03BC\u03BF\u03C2 \u03BF\u03BD\u03BF\u03BC\u03AC\u03B6\u03B5\u03C4\u03B1\u03B9 \u03BC\u03AF\u03B1 \u03BF\u03BD\u03C4\u03CC\u03C4\u03B7\u03C4\u03B1 \u03C4\u03B7\u03C2 \u03B4\u03B7\u03BC\u03CC\u03C3\u03B9\u03B1\u03C2 \u03B4\u03B9\u03BF\u03AF\u03BA\u03B7\u03C3\u03B7\u03C2, \u03B7 \u03BF\u03C0\u03BF\u03AF\u03B1 \u03C3\u03C4\u03B1 \u03C0\u03B5\u03C1\u03B9\u03C3\u03C3\u03CC\u03C4\u03B5\u03C1\u03B1 \u03BA\u03C1\u03AC\u03C4\u03B7 \u03B1\u03C0\u03BF\u03C4\u03B5\u03BB\u03B5\u03AF \u03C4\u03B7 \u03B2\u03B1\u03C3\u03B9\u03BA\u03AE \u03B1\u03C5\u03C4\u03BF\u03B4\u03B9\u03BF\u03B9\u03BA\u03B7\u03C4\u03B9\u03BA\u03AE \u03BC\u03BF\u03BD\u03AC\u03B4\u03B1 \u03BA\u03B1\u03B9 \u03BA\u03B1\u03C4\u03AC \u03BA\u03B1\u03BD\u03CC\u03BD\u03B1 \u03C0\u03B5\u03C1\u03B9\u03BB\u03B1\u03BC\u03B2\u03AC\u03BD\u03B5\u03B9 \u03BC\u03B9\u03B1 \u03C0\u03CC\u03BB\u03B7 \u03AE \u03BA\u03C9\u03BC\u03CC\u03C0\u03BF\u03BB\u03B7 \u03BA\u03B1\u03B9 \u03C4\u03B1 \u03B3\u03CD\u03C1\u03C9 \u03C7\u03C9\u03C1\u03B9\u03AC \u03C4\u03B7\u03C2."@el . + "Un Municipio es el ente local definido en el art\u00EDculo 140 de la Constituci\u00F3n espa\u00F1ola y la entidad b\u00E1sica de la organizaci\u00F3n territorial del Estado seg\u00FAn el art\u00EDculo 1 de la Ley 7/1985, de 2 de abril, Reguladora de las Bases del R\u00E9gimen Local. Tiene personalidad jur\u00EDdica y plena capacidad para el cumplimiento de sus fines. La delimitaci\u00F3n territorial de Municipio est\u00E1 recogida del REgistro Central de Cartograf\u00EDa del IGN"@es . + . + . + . + "brug"@nl . + "\u03B3\u03AD\u03C6\u03C5\u03C1\u03B1"@el . + "pont"@fr . + "ponte"@pt . + "ponte"@it . + "bridge"@en . + "\u09B8\u09C7\u09A4\u09C1"@bn . + "\uB2E4\uB9AC"@ko . + "most"@sl . + "\u6A4B"@ja . + "Br\u00FCcke"@de . + "A bridge is a structure built to span physical obstacles such as a body of water, valley, or road, for the purpose of providing passage over the obstacle (http://en.wikipedia.org/wiki/Bridge)."@en . + . + . + . + . + "district"@nl . + "\u03C0\u03B5\u03C1\u03B9\u03BF\u03C7\u03AE"@el . + "arrondissement"@fr . + "district"@en . + "\uAD6C"@ko . + "kecamatan"@id . + "Bezirk"@de . + "bagian wilayah administratif dibawah kabupaten"@id . + . + . + . + "berg"@nl . + "\u0392\u03BF\u03C5\u03BD\u03CC"@el . + "montagne"@fr . + "montanha"@pt . + "mountain"@en . + "\uC0B0"@ko . + "\u5C71"@zh . + "\u5C71"@ja . + "Berg"@de . + . + . + . + . + . + . + "achtbaan"@nl . + "\u03C4\u03C1\u03B5\u03BD\u03AC\u03BA\u03B9 \u03C3\u03B5 \u03BB\u03BF\u03CD\u03BD\u03B1 \u03C0\u03B1\u03C1\u03BA"@el . + "montagne russe"@it . + "roller coaster"@en . + "Achterbahn"@de . + . + . + . + "wielerwedstrijd"@nl . + "\u03B1\u03B3\u03CE\u03BD\u03B1\u03C2 \u03C0\u03BF\u03B4\u03B7\u03BB\u03B1\u03C3\u03AF\u03B1\u03C2"@el . + "corsa ciclistica"@it . + "cycling race"@en . + "Radrennen"@de . + . + . + . + . + "track list"@en . + "Titelliste"@de . + "\u03BB\u03AF\u03C3\u03C4\u03B1 \u03BA\u03BF\u03BC\u03BC\u03B1\u03C4\u03B9\u03CE\u03BD"@el . + "lijst van nummers"@nl . + "A list of music tracks, like on a CD"@en . + "Een lijst van nummers als op een CD album"@nl . + . + . + . + "Archief"@nl . + "\u03B1\u03C1\u03C7\u03B5\u03AF\u03BF"@el . + "archivo"@es . + "Archive"@en . + "Archiv"@de . + "Collection of documents pertaining to a person or organisation."@en . + "\u0397 \u03C3\u03C5\u03BB\u03BB\u03BF\u03B3\u03AE \u03C4\u03C9\u03BD \u03B5\u03B3\u03B3\u03C1\u03AC\u03C6\u03C9\u03BD \u03C0\u03BF\u03C5 \u03C3\u03C7\u03B5\u03C4\u03AF\u03B6\u03BF\u03BD\u03C4\u03B1\u03B9 \u03BC\u03B5 \u03AD\u03BD\u03B1 \u03C0\u03C1\u03CC\u03C3\u03C9\u03C0\u03BF \u03AE \u03BF\u03C1\u03B3\u03B1\u03BD\u03B9\u03C3\u03BC\u03CC."@el . + "Verzameling van documenten rondom een persoon of organisatie."@nl . + . + . + . + . + "sluis"@nl . + "\u03BA\u03BB\u03B5\u03B9\u03B4\u03B1\u03C1\u03B9\u03AC"@el . + "\u00E9cluse"@fr . + "lock"@en . + "Schleuse"@de . + . + . + . + "grot"@nl . + "\u03C3\u03C0\u03B7\u03BB\u03B9\u03AC"@el . + "grotte"@fr . + "grotta"@it . + "cave"@en . + "\uB3D9\uAD74"@ko . + "\u6D1E\u7A9F"@ja . + "H\u00F6hle"@de . + . + . + . + . + "handbal team"@nl . + "\u03BF\u03BC\u03AC\u03B4\u03B1 \u03C7\u03B5\u03B9\u03C1\u03BF\u03C3\u03C6\u03B1\u03AF\u03C1\u03B9\u03C3\u03B7\u03C2"@el . + "\u00E9quipe de handball"@fr . + "squadra di pallamano"@it . + "handball team"@en . + "Handballmannschaft"@de . + . + . + . + . + "wetenschapper"@nl . + "\u0395\u03C0\u03B9\u03C3\u03C4\u03AE\u03BC\u03BF\u03BD\u03B1\u03C2"@el . + "scientifique"@fr . + "scientist"@en . + "\u09AC\u09BF\u099C\u09CD\u099E\u09BE\u09A8\u09C0"@bn . + "\uACFC\uD559\uC790"@ko . + "\u79D1\u5B66\u8005"@ja . + "Wissenschaftler"@de . + . + . + . + . + "humorist"@en . + "\u03C7\u03B9\u03BF\u03C5\u03BC\u03BF\u03C1\u03AF\u03C3\u03C4\u03B1\u03C2"@el . + "Humorist"@de . + . + . + . + "website"@nl . + "\u0399\u03C3\u03C4\u03CC\u03C4\u03BF\u03C0\u03BF\u03C2"@el . + "site web"@fr . + "website"@en . + "\uC6F9\uC0AC\uC774\uD2B8"@ko . + "\u30A6\u30A7\u30D6\u30B5\u30A4\u30C8"@ja . + "Webseite"@de . + . + . + . + . + "lymfe"@nl . + "\u03BB\u03AD\u03BC\u03C6\u03BF\u03C2"@el . + "lymphe"@fr . + "lymph"@en . + "\u30EA\u30F3\u30D1"@ja . + "Lymphe"@de . + . + . + . + "Television director"@en . + "r\u00E9alisateur de t\u00E9l\u00E9vision"@fr . + "tv-regisseur"@nl . + "TV-Regisseur"@de . + "a person who directs the activities involved in making a television program."@en . + . + . + . + "onderzoeksproject"@nl . + "\u03B5\u03C1\u03B5\u03C5\u03BD\u03B7\u03C4\u03B9\u03BA\u03CC \u03AD\u03C1\u03B3\u03BF"@el . + "projet de recherche"@fr . + "proyecto de investigaci\u00F3n"@es . + "research project"@en . + "Forschungsprojekt"@de . + "A research project is a scientific investigation, usually using scientific methods, to achieve defined objectives."@en . + "\u0388\u03BD\u03B1 \u03B5\u03C1\u03B5\u03C5\u03BD\u03B7\u03C4\u03B9\u03BA\u03CC \u03AD\u03C1\u03B3\u03BF \u03B5\u03AF\u03BD\u03B1\u03B9 \u03BC\u03B9\u03B1 \u03B5\u03C0\u03B9\u03C3\u03C4\u03B7\u03BC\u03BF\u03BD\u03B9\u03BA\u03AE \u03AD\u03C1\u03B5\u03C5\u03BD\u03B1, \u03C3\u03C5\u03BD\u03AE\u03B8\u03C9\u03C2 \u03BC\u03B5 \u03C4\u03B7 \u03C7\u03C1\u03AE\u03C3\u03B7 \u03B5\u03C0\u03B9\u03C3\u03C4\u03B7\u03BC\u03BF\u03BD\u03B9\u03BA\u03CE\u03BD \u03BC\u03B5\u03B8\u03CC\u03B4\u03C9\u03BD, \u03B3\u03B9\u03B1 \u03C4\u03B7\u03BD \u03B5\u03C0\u03AF\u03C4\u03B5\u03C5\u03BE\u03B7 \u03C4\u03C9\u03BD \u03BA\u03B1\u03B8\u03BF\u03C1\u03B9\u03C3\u03BC\u03AD\u03BD\u03C9\u03BD \u03C3\u03C4\u03CC\u03C7\u03C9\u03BD."@el . + . + . + . + . + "locality"@en . + "localit\u00E9"@fr . + "Gegend"@de . + "\u03C4\u03CC\u03C0\u03BF\u03C2"@el . + . + . + . + . + "dier"@nl . + "\u03B6\u03CE\u03BF"@el . + "animal"@fr . + "animal"@pt . + "animale"@it . + "animal"@es . + "animal"@en . + "\uB3D9\uBB3C"@ko . + "\u017Eival"@sl . + "\u52D5\u7269"@ja . + "Tier"@de . + . + . + . + . + "continent"@nl . + "\u03AE\u03C0\u03B5\u03B9\u03C1\u03BF\u03C2"@el . + "continent"@fr . + "continente"@it . + "continente"@es . + "continent"@en . + "\uB300\uB959"@ko . + "\u5927\u9678"@ja . + "Kontinent"@de . + "Un continente \u00E8 una grande area di terra emersa della crosta terrestre, \u00E8 anzi la pi\u00F9 vasta delle ripartizioni con le quali si suddividono le terre emerse."@it . + "Un continente es una gran \u00E1rea de tierra emergida de la costra terrestre."@es . + . + . + . + . + "zanger"@nl . + "\u03A4\u03C1\u03B1\u03B3\u03BF\u03C5\u03B4\u03B9\u03C3\u03C4\u03AE\u03C2"@el . + "chanteur"@fr . + "Singer"@en . + "S\u00E4nger"@de . + "a person who sings."@en . + "\u03AD\u03BD\u03B1 \u03AC\u03C4\u03BF\u03BC\u03BF \u03C0\u03BF\u03C5 \u03C4\u03C1\u03B1\u03B3\u03BF\u03C5\u03B4\u03AC."@el . + . + . + . + . + "baseball season"@en . + "honkbalseizoen"@nl . + "Baseballsaison"@de . + "\u03C3\u03B5\u03B6\u03CC\u03BD \u03C4\u03BF\u03C5 \u03BC\u03C0\u03AD\u03B9\u03B6\u03BC\u03C0\u03BF\u03BB"@el . + . + . + . + "cricketteam"@nl . + "\u03BF\u03BC\u03AC\u03B4\u03B1 \u03BA\u03C1\u03AF\u03BA\u03B5\u03C4"@el . + "squadra di cricket"@it . + "cricket team"@en . + "Cricketmannschaft"@de . + . + . + . + "Member of a Resistance Movement"@en . + "Mitglied einer Widerstandorganisation"@de . + "Lid van een verzetsorganisatie"@nl . + . + . + . + "military aircraft"@en . + "avion militaire"@fr . + "legervliegtuig"@nl . + "Milit\u00E4rmaschine"@de . + . + . + . + "stadion"@nl . + "\u03C0\u03B1\u03BB\u03B1\u03AF\u03C3\u03C4\u03C1\u03B1"@el . + "arena"@pt . + "stadio"@it . + "arena"@en . + "\uC544\uB808\uB098"@ko . + "\u30A2\u30EA\u30FC\u30CA"@ja . + "stadion"@de . + "An arena is an enclosed area, often circular or oval-shaped, designed to showcase theater, musical performances, or sporting events. (http://en.wikipedia.org/wiki/Arena)"@en . + . + . + . + . + "soccer league season"@en . + "Fu\u00DFball-Liga Saison"@de . + "\u03C0\u03B5\u03C1\u03AF\u03BF\u03B4\u03BF\u03C2 \u03BA\u03C5\u03C0\u03AD\u03BB\u03BB\u03BF\u03C5 \u03C0\u03BF\u03B4\u03BF\u03C3\u03C6\u03B1\u03AF\u03C1\u03BF\u03C5"@el . + "futbol ligi sezonu"@tr . + . + . + . + "crimineel"@nl . + "\u03B5\u03B3\u03BA\u03BB\u03B7\u03BC\u03B1\u03C4\u03AF\u03B1\u03C2"@el . + "criminel"@fr . + "criminoso"@pt . + "delinquente"@it . + "criminal"@es . + "criminal"@en . + "\uBC94\uC8C4\uC778"@ko . + "Verbrecher"@de . + . + . + . + . + "disney character"@en . + "Disneyfiguur"@nl . + "Disneyfigur"@de . + "\u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03AE\u03C1\u03B5\u03C2 \u03C4\u03B7\u03C2 \u03BD\u03C4\u03AF\u03C3\u03BD\u03B5\u03C5"@el . + . + . + . + "nazwisko"@pl . + "achternaam"@nl . + "\u03B5\u03C0\u03CE\u03BD\u03C5\u03BC\u03BF"@el . + "nom de famille"@fr . + "surname"@en . + "\uC131\uC528"@ko . + "\u5BB6"@ja . + "Nachname"@de . + . + . + . + "zoogdier"@nl . + "\u03B8\u03B7\u03BB\u03B1\u03C3\u03C4\u03B9\u03BA\u03CC \u03B6\u03CE\u03BF"@el . + "mammif\u00E8re"@fr . + "mam\u00EDfero"@pt . + "mammifero"@it . + "mam\u00EDfero"@es . + "mammal"@en . + "\u54FA\u4E73\u985E"@ja . + "s\u00E4ugetier"@de . + . + . + . + . + . + "Medicine"@en . + "Medizin"@de . + "geneeskunde"@nl . + "The science and art of healing the human body and identifying the causes of disease"@en . + . + . + . + "verkiezing"@nl . + "\u03B5\u03BA\u03BB\u03BF\u03B3\u03AE"@el . + "\u00E9lection"@fr . + "elecci\u00F3n"@es . + "Election"@en . + "\uC120\uAC70"@ko . + "Wahl"@de . + . + . + . + . + "telefon kom\u00F3rkowy"@pl . + "mobiele telefoon"@nl . + "\u0441\u043E\u0442\u043E\u0432\u044B\u0439 \u0442\u0435\u043B\u0435\u0444\u043E\u043D"@ru . + "mobile phone"@en . + "\u0441\u043E\u0442\u0430\u0432\u044B \u0442\u044D\u043B\u0435\u0444\u043E\u043D"@be . + "Mobiltelefon (Handy)"@de . + . + . + . + "krater"@nl . + "\u03BA\u03C1\u03B1\u03C4\u03AE\u03C1\u03B1\u03C2"@el . + "cratere"@it . + "crater"@en . + "Krater"@de . + . + . + . + "box competitie"@nl . + "\u03C0\u03C1\u03C9\u03C4\u03AC\u03B8\u03BB\u03B7\u03BC\u03B1 \u03C0\u03C5\u03B3\u03BC\u03B1\u03C7\u03AF\u03B1\u03C2"@el . + "ligue de boxe"@fr . + "lega di pugilato"@it . + "liga de boxeo"@es . + "boxing league"@en . + "\uAD8C\uD22C \uB9AC\uADF8"@ko . + "\u30DC\u30AF\u30B7\u30F3\u30B0\u30EA\u30FC\u30B0"@ja . + "Box-Liga"@de . + "A group of sports teams or fighters that compete against each other in Boxing"@en . + "\u039C\u03AF\u03B1 \u03B4\u03B9\u03BF\u03C1\u03B3\u03AC\u03BD\u03C9\u03C3\u03B7 \u03C3\u03C4\u03B7\u03BD \u03BF\u03C0\u03BF\u03AF\u03B1 \u03BC\u03B5\u03BC\u03BF\u03BD\u03C9\u03BC\u03AD\u03BD\u03BF\u03B9 \u03C0\u03C5\u03B3\u03BC\u03AC\u03C7\u03BF\u03B9 \u03B5\u03AF\u03C4\u03B5 \u03BF\u03BC\u03AC\u03B4\u03B5\u03C2 \u03C0\u03C5\u03B3\u03BC\u03AC\u03C7\u03C9\u03BD \u03C3\u03C5\u03BD\u03B1\u03B3\u03C9\u03BD\u03AF\u03B6\u03BF\u03BD\u03C4\u03B1\u03B9 \u03BC\u03B5\u03C4\u03B1\u03BE\u03CD \u03C4\u03BF\u03C5\u03C2 \u03BC\u03B5 \u03C3\u03BA\u03BF\u03C0\u03CC \u03C4\u03B7\u03BD \u03BD\u03AF\u03BA\u03B7."@el . + . + . + . + "district water board"@en . + "waterschap"@nl . + "Bezirkwasserwirtschaftsamt"@de . + "Conservancy, governmental agency dedicated to surface water management"@en . + . + . + . + "radio-controlled racing league"@en . + "RC-Renn Liga"@de . + "ligue de courses radio-t\u00E9l\u00E9command\u00E9"@fr . + "A group of sports teams or person that compete against each other in radio-controlled racing."@en . + . + . + . + "schimmel"@nl . + "\u03BC\u03CD\u03BA\u03B7\u03C4\u03B1\u03C2"@el . + "fungi"@fr . + "hongos"@es . + "fungus"@en . + "\u83CC\u985E"@ja . + "Pilz"@de . + . + . + . + "Historical country"@en . + "ancien pays"@fr . + "historischer Land"@de . + "A place which used to be a country."@en . + . + . + . + "vliegtuig"@nl . + "\u03B1\u03B5\u03C1\u03BF\u03C3\u03BA\u03AC\u03C6\u03BF\u03C2"@el . + "avion"@fr . + "aereo"@it . + "avi\u00F3n"@es . + "aircraft"@en . + "\uBE44\uD589\uAE30"@ko . + "\u98DB\u6A5F"@zh . + "\u822A\u7A7A\u6A5F"@ja . + "Flugzeug"@de . + . + . + . + . + . + "lijst"@nl . + "\u03BB\u03AF\u03C3\u03C4\u03B1"@el . + "liste"@fr . + "list"@en . + "\u4E00\u89A7"@ja . + "Liste"@de . + "A general list of items."@en . + "une liste d'\u00E9l\u00E9ments."@fr . + "Een geordende verzameling objecten."@nl . + "\u039C\u03B9\u03B1 \u03B3\u03B5\u03BD\u03B9\u03BA\u03AE \u03BB\u03AF\u03C3\u03C4\u03B1 \u03B1\u03C0\u03CC \u03B1\u03BD\u03C4\u03B9\u03BA\u03B5\u03AF\u03BC\u03B5\u03BD\u03B1."@el . + . + . + . + . + . + "state"@en . + "\u03C0\u03BF\u03BB\u03B9\u03C4\u03B5\u03AF\u03B1"@el . + "Staat"@de . + "staat"@nl . + . + . + . + "personage (fictie)"@nl . + "\u03C0\u03BB\u03B1\u03C3\u03BC\u03B1\u03C4\u03B9\u03BA\u03CC\u03C2 \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03AE\u03C1\u03B1\u03C2"@el . + "personnage de fiction"@fr . + "fictional character"@en . + "\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC"@ja . + "fiktiver Charakter"@de . + . + . + . + . + "mossen"@nl . + "\u03B2\u03C1\u03CD\u03BF"@el . + "mousses"@fr . + "muschio"@it . + "moss"@en . + "\u861A\u985E"@ja . + "Laubmoss"@de . + . + . + . + "tennis competitie"@nl . + "\u039F\u03BC\u03BF\u03C3\u03C0\u03BF\u03BD\u03B4\u03AF\u03B1 \u0391\u03BD\u03C4\u03B9\u03C3\u03C6\u03B1\u03AF\u03C1\u03B9\u03C3\u03B7\u03C2"@el . + "ligue de tennis"@fr . + "tennis league"@en . + "Tennisliga"@de . + "A group of sports teams or person that compete against each other in tennis."@en . + . + . + . + "Biomolecuul"@nl . + "\u03B2\u03B9\u03BF\u03BC\u03CC\u03C1\u03B9\u03BF"@el . + "biomolecola"@it . + "Biomolecule"@en . + "\uC0DD\uCCB4 \uBD84\uC790"@ko . + "\u751F\u4F53\u7269\u8CEA"@ja . + "Biomolek\u00FCl"@de . + "equivalent to http://ccdb.ucsd.edu/NIF/BIRNLex-OBO-UBO.owl#birnlex_22."@en . + "Een molecuul wat van nature voorkomt in een organisme en gevormd kan worden door organismen."@nl . + "\u039A\u03AC\u03B8\u03B5 \u03BC\u03CC\u03C1\u03B9\u03BF \u03C0\u03BF\u03C5 \u03C0\u03B1\u03C1\u03AC\u03B3\u03B5\u03C4\u03B1\u03B9 \u03C3\u03B5 \u03AD\u03BD\u03B1\u03BD \u03B6\u03C9\u03BD\u03C4\u03B1\u03BD\u03CC \u03BF\u03C1\u03B3\u03B1\u03BD\u03B9\u03C3\u03BC\u03CC. \u03A3\u03C5\u03BD\u03AE\u03B8\u03C9\u03C2 \u03BC\u03B5\u03B3\u03B1\u03BB\u03BF\u03BC\u03BF\u03C1\u03B9\u03B1\u03BA\u03AD\u03C2 \u03B5\u03BD\u03CE\u03C3\u03B5\u03B9\u03C2 \u03C0\u03BF\u03C5 \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03B5\u03CD\u03BF\u03C5\u03BD \u03C3\u03C4\u03B7\u03BD \u03B4\u03BF\u03BC\u03AE \u03BA\u03B1\u03B9 \u03C3\u03C4\u03BF \u03BC\u03B5\u03C4\u03B1\u03B2\u03BF\u03BB\u03B9\u03C3\u03BC\u03CC \u03C4\u03BF\u03C5 \u03BA\u03C5\u03C4\u03C4\u03AC\u03C1\u03BF\u03C5. \u03A0\u03C1\u03C9\u03C4\u03B5\u0390\u03BD\u03B5\u03C2, \u03BD\u03BF\u03C5\u03BA\u03BB\u03B5\u03CA\u03BD\u03B9\u03BA\u03AC \u03BF\u03BE\u03AD\u03B1, \u03C5\u03B4\u03B1\u03C4\u03AC\u03BD\u03B8\u03C1\u03B1\u03BA\u03B5\u03C2 \u03BA\u03B1\u03B9 \u03BB\u03B9\u03C0\u03AF\u03B4\u03B9\u03B1."@el . + . + . + . + . + "station"@nl . + "\u03A3\u03C4\u03B1\u03B8\u03BC\u03CC\u03C2"@el . + "gare"@fr . + "esta\u00E7\u00E3o"@pt . + "estaci\u00F3n"@es . + "\u0441\u0442\u0430\u043D\u0446\u0438\u044F"@ru . + "station"@en . + "\u99C5"@ja . + "Bahnhof"@de . + "Public transport station (eg. railway station, metro station, bus station)."@en . + "\u041E\u0441\u0442\u0430\u043D\u043E\u0432\u043A\u0430 \u043E\u0431\u0449\u0435\u0441\u0442\u0432\u0435\u043D\u043D\u043E\u0433\u043E \u0442\u0440\u0430\u043D\u0441\u043F\u043E\u0440\u0442\u0430 (\u043D\u0430\u043F\u0440\u0438\u043C\u0435\u0440: \u0436\u0435\u043B\u0435\u0437\u043D\u043E\u0434\u043E\u0440\u043E\u0436\u043D\u0430\u044F \u0441\u0442\u0430\u043D\u0446\u0438\u044F, \u0441\u0442\u0430\u043D\u0446\u0438\u044F \u043C\u0435\u0442\u0440\u043E, \u0430\u0432\u0442\u043E\u0441\u0442\u0430\u043D\u0446\u0438\u044F)."@ru . + . + . + . + . + "rivier"@nl . + "\u03C0\u03BF\u03C4\u03AC\u03BC\u03B9"@el . + "rivi\u00E8re"@fr . + "river"@en . + "\uAC15"@ko . + "\u5DDD"@ja . + "Fluss"@de . + "a large natural stream"@en . + . + . + . + . + . + "organisatie"@nl . + "\u03BF\u03C1\u03B3\u03AC\u03BD\u03C9\u03C3\u03B7"@el . + "organisation"@fr . + "organiza\u00E7\u00E3o"@pt . + "organizaci\u00F3n"@es . + "organisation"@en . + "\uC870\uC9C1"@ko . + "organizacija"@sl . + "\u7D44\u7E54"@ja . + "Organisation"@de . + . + . + . + . + . + . + . + "image"@en . + "afbeelding"@nl . + "Bild"@de . + "A document that contains a visual image"@en . + . + . + . + . + "\u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03AE\u03C1\u03B1\u03C2 \u03BA\u03B9\u03BD\u03BF\u03CD\u03BC\u03B5\u03BD\u03C9\u03BD \u03C3\u03C7\u03B5\u03B4\u03AF\u03C9\u03BD"@el . + "personnage de bandes dessin\u00E9es"@fr . + "personagem de quadrinhos"@pt . + "comics character"@en . + "\uB9CC\uD654\uC560\uB2C8 \uB4F1\uC7A5\uC778\uBB3C"@ko . + "\u30B3\u30DF\u30C3\u30AF\u30B9\u306E\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC"@ja . + "Comic Charakter"@de . + . + . + . + "tempel"@nl . + "\u03BD\u03B1\u03CC\u03C2"@el . + "temple"@fr . + "tempio"@it . + "temple"@en . + "\u5BFA"@ja . + "tempel"@de . + . + . + . + "kaas"@nl . + "\u03C4\u03C5\u03C1\u03AF"@el . + "fromage"@fr . + "formaggio"@it . + "queso"@es . + "cheese"@en . + "\uCE58\uC988"@ko . + "K\u00E4se"@de . + "A milk product prepared for human consumption"@en . + "Producto l\u00E1cteo preparado para el consumo humano"@es . + . + . + . + "horse rider"@en . + "Reiter"@de . + "paardrijder"@nl . + "\u03B9\u03C0\u03C0\u03AD\u03B1\u03C2"@el . + . + . + . + "miejsce"@pl . + "plaats"@nl . + "\u03C0\u03B5\u03C1\u03B9\u03BF\u03C7\u03AE"@el . + "lieu"@fr . + "lugar"@pt . + "lugar"@es . + "place"@en . + "\u00E1it"@ga . + "lekua"@eu . + "\u7ACB\u5730"@ja . + "lloc"@ca . + "\u0645\u0643\u0627\u0646"@ar . + "Ort"@de . + "Immobile things or locations."@en . + "uma localiza\u00E7\u00E3o"@pt . + . + . + . + . + . + "rest area"@en . + "rustplaats"@nl . + "Rasthof"@de . + "A rest area is part of a Road, meant to stop and rest. More often than not, there is a filling station"@en . + . + . + . + "embryologie"@nl . + "\u03B5\u03BC\u03B2\u03C1\u03C5\u03BF\u03BB\u03BF\u03B3\u03AF\u03B1"@el . + "embryologie"@fr . + "embryology"@en . + "\uBC1C\uC0DD\uD559"@ko . + "Embryologie"@de . + . + . + . + "Bilinmeyen"@tr . + "Onbekend"@nl . + "\u03AC\u03B3\u03BD\u03C9\u03C3\u03C4\u03BF\u03C2"@el . + "Inconnu"@fr . + "Unknown"@en . + "\u7121\u77E5"@ja . + "unbekannt"@de . + . + . + . + . + "uitgever"@nl . + "\u03B5\u03BA\u03B4\u03CC\u03C4\u03B7\u03C2"@el . + "\u00E9diteur"@fr . + "editor"@es . + "publisher"@en . + "\uCD9C\uD310\uC0AC"@ko . + "\u51FA\u7248\u793E"@ja . + "Herausgeber"@de . + "Publishing company"@en . + . + . + . + "cross-country skier"@en . + "Skilangl\u00E4ufer"@de . + . + . + . + "storm surge"@en . + "Sturmflut"@de . + "stormvloed"@nl . + "Een stormvloed is de grootschalige overstroming van een kustgebied onder invloed van de op elkaar inwerkende krachten van wind, getij en water"@nl . + . + . + . + "filling station"@en . + "tankstation"@nl . + "Tankstation"@de . + . + . + . + "multi volume publication"@en . + "mehrb\u00E4ndige Publikation"@de . + "meerdelige publicatie"@nl . + . + . + . + "Playwright"@en . + "Dramatiker"@de . + "Dramaturge"@fr . + "toneelschrijver"@nl . + "A person who writes dramatic literature or drama."@en . + . + . + . + . + "boxing category"@en . + "Box Gewichtsklasse"@de . + "categor\u00EDa de boxeo"@es . + "box gewichtsklasse"@nl . + . + . + . + "route of transportation"@en . + "Transportweg"@de . + "V\u00EDa de transporte"@es . + "A route of transportation (thoroughfare) may refer to a public road, highway, path or trail or a route on water from one place to another for use by a variety of general traffic (http://en.wikipedia.org/wiki/Thoroughfare)."@en . + "Unter Transportwegen (Verkehrswegen) versteht man Verkehrswege, auf denen G\u00FCter oder Personen transportiert werden. Dabei unterscheidet man zwischen Transportwegen zu Luft, zu Wasser und zu Lande, die dann f\u00FCr die unterschiedliche Verkehrsarten genutzt werden (http://de.wikipedia.org/wiki/Transportweg)."@de . + . + . + . + "sports team season"@en . + "Sport Team Saison"@de . + "\u03C0\u03B5\u03C1\u03AF\u03BF\u03B4\u03BF\u03C2 \u03B1\u03B8\u03BB\u03B7\u03C4\u03B9\u03BA\u03AE\u03C2 \u03BF\u03BC\u03AC\u03B4\u03B1\u03C2"@el . + "A season for a particular sports team (as opposed to the season for the entire league that the team is in)"@en . + "\u03BC\u03AF\u03B1 \u03C0\u03B5\u03C1\u03AF\u03BF\u03B4\u03BF\u03C2 \u03B3\u03B9\u03B1 \u03BC\u03AF\u03B1 \u03B1\u03B8\u03BB\u03B7\u03C4\u03B9\u03BA\u03AE \u03BF\u03BC\u03AC\u03B4\u03B1"@el . + . + . + . + "formule 1-team"@nl . + "\u03BF\u03BC\u03AC\u03B4\u03B1 \u03C6\u03CC\u03C1\u03BC\u03BF\u03C5\u03BB\u03B1 1"@el . + "scuderia formula 1"@it . + "formula 1 team"@en . + "Formel-1 Team"@de . + . + . + . + "on-site mean of transportation"@en . + "Vorortbef\u00F6rderungsmittel"@de . + "stationair vervoermiddel"@nl . + . + . + . + . + "Resume"@en . + "Lebenslauf"@de . + "\u0392\u03B9\u03BF\u03B3\u03C1\u03B1\u03C6\u03B9\u03BA\u03CC \u03C3\u03B7\u03BC\u03B5\u03AF\u03C9\u03BC\u03B1"@el . + "CV"@nl . + "A Resume describes a persons work experience and skill set."@en . + "Een CV (curriculum vitae) beschrijft iemands werkervaring en vaardigheden."@nl . + . + . + . + "ArtificialSatellite"@en . + "kunstmatige satelliet"@nl . + "k\u00FCnstlicher Satellit"@de . + "\u03C4\u03B5\u03C7\u03BD\u03B7\u03C4\u03CC\u03C2 \u03B4\u03BF\u03C1\u03C5\u03C6\u03CC\u03C1\u03BF\u03C2"@el . + "In the context of spaceflight, an artificial satellite is an artificial object which has been intentionally placed into orbit."@en . + "Satellit (Raumfahrt), ein k\u00FCnstlicher Raumflugk\u00F6rper, der einen Himmelsk\u00F6rper auf einer festen Umlaufbahn umrundet"@de . + "\u03A3\u03C4\u03BF \u03C0\u03BB\u03B1\u03AF\u03C3\u03B9\u03BF \u03C4\u03C9\u03BD \u03B4\u03B9\u03B1\u03C3\u03C4\u03B7\u03BC\u03B9\u03BA\u03CE\u03BD \u03C0\u03C4\u03AE\u03C3\u03B5\u03C9\u03BD, \u03AD\u03BD\u03B1\u03C2 \u03C4\u03B5\u03C7\u03BD\u03B7\u03C4\u03CC\u03C2 \u03B4\u03BF\u03C1\u03C5\u03C6\u03CC\u03C1\u03BF\u03C2 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03AD\u03BD\u03B1 \u03C4\u03B5\u03C7\u03BD\u03B7\u03C4\u03CC \u03B1\u03BD\u03C4\u03B9\u03BA\u03B5\u03AF\u03BC\u03B5\u03BD\u03BF \u03C4\u03BF \u03BF\u03C0\u03BF\u03AF\u03BF \u03B5\u03BA \u03C0\u03C1\u03BF\u03B8\u03AD\u03C3\u03B5\u03C9\u03C2 \u03AD\u03C7\u03B5\u03B9 \u03C4\u03BF\u03C0\u03BF\u03B8\u03B5\u03C4\u03B7\u03B8\u03B5\u03AF \u03C3\u03B5 \u03C4\u03C1\u03BF\u03C7\u03B9\u03AC."@el . + . + . + . + "groenwieren"@nl . + "\u03C0\u03C1\u03AC\u03C3\u03B9\u03BD\u03BF \u03C6\u03CD\u03BA\u03BF\u03C2"@el . + "algue verte"@fr . + "alga verde"@es . + "green alga"@en . + "\u7DD1\u85FB"@ja . + "Gr\u00FCnalge"@de . + . + . + . + "skioord"@nl . + "\u03B8\u03AD\u03C1\u03B5\u03C4\u03C1\u03BF \u03C3\u03BA\u03B9"@el . + "station de ski"@fr . + "ski resort"@en . + "Skigebiet"@de . + "\u03A4\u03BF \u03B8\u03AD\u03C1\u03B5\u03C4\u03C1\u03BF \u03C3\u03BA\u03B9 \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03B5\u03AF\u03C4\u03B1\u03B9 \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03C0\u03B5\u03C1\u03B9\u03B3\u03C1\u03AC\u03C8\u03B5\u03B9 \u03AD\u03BD\u03B1\u03BD \u03C4\u03CC\u03C0\u03BF \u03B4\u03B9\u03B1\u03BA\u03BF\u03C0\u03CE\u03BD \u03BC\u03B5 \u03C4\u03B9\u03C2 \u03B1\u03C0\u03B1\u03C1\u03B1\u03AF\u03C4\u03B7\u03C4\u03B5\u03C2 \u03B5\u03B3\u03BA\u03B1\u03C4\u03B1\u03C3\u03C4\u03AC\u03C3\u03B5\u03B9\u03C2 \u03B4\u03B9\u03B1\u03BC\u03BF\u03BD\u03AE\u03C2 \u03BA\u03B1\u03B9 \u03B5\u03BE\u03AC\u03C3\u03BA\u03B7\u03C3\u03B7\u03C2 \u03C4\u03BF\u03C5 \u03C7\u03B5\u03B9\u03BC\u03B5\u03C1\u03B9\u03BD\u03BF\u03CD \u03B1\u03B8\u03BB\u03AE\u03BC\u03B1\u03C4\u03BF\u03C2 \u03C4\u03B7\u03C2 \u03C7\u03B9\u03BF\u03BD\u03BF\u03B4\u03C1\u03BF\u03BC\u03AF\u03B1\u03C2"@el . + . + . + . + . + "genre"@nl . + "\u03CD\u03C6\u03BF\u03C2"@el . + "g\u00E9nero"@es . + "genre"@en . + "Genre"@de . + . + . + . + "chemische substantie"@nl . + "\u03C7\u03B7\u03BC\u03B9\u03BA\u03AE \u03BF\u03C5\u03C3\u03AF\u03B1"@el . + "substance chimique"@fr . + "subst\u00E2ncia qu\u00EDmica"@pt . + "sostanza chimica"@it . + "chemical substance"@en . + "\uD654\uD559 \uBB3C\uC9C8"@ko . + "\u5316\u5B66\u7269\u8CEA"@ja . + "chemische Substanz"@de . + . + . + . + . + "atletiek"@nl . + "\u03B1\u03B8\u03BB\u03B7\u03C4\u03B9\u03BA\u03AC"@el . + "athl\u00E9tisme"@fr . + "atletismo"@es . + "athletics"@en . + "Leichtathletik"@de . + . + . + . + "memorial"@en . + "\u03BC\u03BD\u03B7\u03BC\u03B5\u03AF\u03BF"@el . + "gedenkteken"@nl . + "Denkmal"@de . + "A monument erected to commemorate a person, an event and/or group. In the case of a person, this might be a grave or tomb."@en . + . + . + . + "honkballer"@nl . + "\u03C0\u03B1\u03AF\u03BA\u03C4\u03B7\u03C2 \u03BC\u03C0\u03AD\u03B9\u03B6\u03BC\u03C0\u03BF\u03BB"@el . + "joueur de baseball"@fr . + "jogador de basebol"@pt . + "giocatore di baseball"@it . + "baseball player"@en . + "\uC57C\uAD6C \uC120\uC218"@ko . + "\u91CE\u7403\u9078\u624B"@ja . + "Baseballspieler"@de . + "\u039F \u03B1\u03B8\u03BB\u03B7\u03C4\u03AE\u03C2 (\u03AC\u03BD\u03B4\u03C1\u03B1\u03C2 \u03AE \u03B3\u03C5\u03BD\u03B1\u03AF\u03BA\u03B1) \u03C0\u03BF\u03C5 \u03C3\u03C5\u03BC\u03BC\u03B5\u03C4\u03AD\u03C7\u03B5\u03B9 \u03C3\u03B5 \u03BC\u03AF\u03B1 \u03BF\u03BC\u03AC\u03B4\u03B1 \u03BC\u03C0\u03AD\u03B9\u03B6\u03BC\u03C0\u03BF\u03BB."@el . + . + . + . + . + "medicus"@nl . + "\u03B3\u03B9\u03B1\u03C4\u03C1\u03CC\u03C2"@el . + "medico"@it . + "medician"@en . + "Mediziner"@de . + . + . + . + "road tunnel"@en . + "\u039F\u03B4\u03B9\u03BA\u03AE \u03C3\u03AE\u03C1\u03B1\u03B3\u03B3\u03B1"@el . + "Stra\u00DFentunnel"@de . + "wegtunnel"@nl . + . + . + . + . + "natuurlijke regio"@nl . + "\u03C6\u03C5\u03C3\u03B9\u03BA\u03AE \u03C0\u03B5\u03C1\u03B9\u03BF\u03C7\u03AE"@el . + "r\u00E9gion naturelle"@fr . + "natural region"@en . + "Naturraum"@de . + "H \u03C6\u03C5\u03C3\u03B9\u03BA\u03AE \u03C0\u03B5\u03C1\u03B9\u03BF\u03C7\u03AE \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03B5\u03AF\u03C4\u03B1\u03B9 \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03C0\u03B5\u03C1\u03B9\u03B3\u03C1\u03AC\u03C8\u03B5\u03B9 \u03C4\u03B7\u03BD \u03AD\u03BA\u03C4\u03B1\u03C3\u03B7 \u03BC\u03B9\u03B1\u03C2 \u03B3\u03B5\u03C9\u03B3\u03C1\u03B1\u03C6\u03B9\u03BA\u03AE\u03C2 \u03C0\u03B5\u03C1\u03B9\u03BF\u03C7\u03AE\u03C2 \u03C3\u03C4\u03B7\u03BD \u03BF\u03C0\u03BF\u03AF\u03B1 \u03B7 \u03B1\u03BD\u03B8\u03C1\u03C9\u03C0\u03BF\u03B3\u03B5\u03BD\u03AE\u03C2 \u03C0\u03B1\u03C1\u03AD\u03BC\u03B2\u03B1\u03C3\u03B7 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B1\u03BD\u03CD\u03C0\u03B1\u03C1\u03BA\u03C4\u03B7 \u03BC\u03AD\u03C7\u03C1\u03B9 \u03B5\u03BB\u03AC\u03C7\u03B9\u03C3\u03C4\u03B7"@el . + . + . + . + . + "national football league season"@en . + "NFL Saison"@de . + . + . + . + "zoo"@en . + "Zoo"@de . + "\u03B6\u03C9\u03BF\u03BB\u03BF\u03B3\u03B9\u03BA\u03CC\u03C2 \u03BA\u03AE\u03C0\u03BF\u03C2"@el . + "dierentuin"@nl . + . + . + . + . + "cultivar (cultivated variety)"@en . + "Sorte ( kultivierte Sorte )"@de . + "\u03BA\u03B1\u03BB\u03BB\u03B9\u03B5\u03C1\u03B3\u03BF\u03CD\u03BC\u03B5\u03BD\u03B7 \u03C0\u03BF\u03B9\u03BA\u03B9\u03BB\u03AF\u03B1"@el . + "\uC7AC\uBC30 \uD488\uC885"@ko . + "A cultivar is a plant or grouping of plants selected for desirable characteristics that can be maintained by propagation. A plant whose origin or selection is primarily due to intentional human activity."@en . + . + . + . + . + "kasteel"@nl . + "\u03BA\u03AC\u03C3\u03C4\u03C1\u03BF"@el . + "ch\u00E2teau"@fr . + "castello"@it . + "castle"@en . + "\uC131 (\uAC74\uCD95)"@ko . + "burg"@de . + "Castles often are, but need not be a military structure. They can serve for status, pleasure and hunt as well."@en . + . + . + . + . + "vicepremier"@nl . + "\u03B1\u03BD\u03C4\u03B9\u03C0\u03C1\u03C9\u03B8\u03C5\u03C0\u03BF\u03C5\u03C1\u03B3\u03CC\u03C2"@el . + "vice premier ministre"@fr . + "vice prime minister"@en . + "Vizeministerpr\u00E4sident"@de . + . + . + . + "muziekinstrument"@nl . + "\u039C\u03BF\u03C5\u03C3\u03B9\u03BA\u03CC \u038C\u03C1\u03B3\u03B1\u03BD\u03BF"@el . + "instrument de musique"@fr . + "strumento musicale"@it . + "Instrumento"@es . + "Instrument"@en . + "\uC545\uAE30"@ko . + "Glasbilo"@sl . + "musikinstrument"@de . + "Describes all musical instrument"@en . + . + . + . + . + . + "burgemeester"@nl . + "\u03B4\u03AE\u03BC\u03B1\u03C1\u03C7\u03BF\u03C2"@el . + "maire"@fr . + "mayor"@en . + "\u9996\u9577"@ja . + "B\u00FCrgermeister"@de . + . + . + . + . + "fotograaf"@nl . + "\u03C6\u03C9\u03C4\u03BF\u03B3\u03C1\u03AC\u03C6\u03BF\u03C2"@el . + "photographe"@fr . + "fotografo"@it . + "photographer"@en . + "Fotograf"@de . + . + . + . + . + "soort"@nl . + "\u03B5\u03AF\u03B4\u03BF\u03C2"@el . + "esp\u00E8ce"@fr . + "especies"@es . + "species"@en . + "\u7A2E_(\u5206\u985E\u5B66)"@ja . + "Spezie"@de . + . + . + . + "bank"@nl . + "\u03A4\u03C1\u03AC\u03C0\u03B5\u03B6\u03B1"@el . + "banque"@fr . + "banco"@pt . + "banca"@it . + "banco"@es . + "bank"@en . + "Bank"@de . + "a company which main services are banking or financial services."@en . + . + . + . + . + "golfbaan"@nl . + "\u03B3\u03AE\u03C0\u03B5\u03B4\u03BF \u03B3\u03BA\u03BF\u03BB\u03C6"@el . + "campo da golf"@it . + "golf course"@en . + "Golfplatz"@de . + "\u03A3\u03B5 \u03AD\u03BD\u03B1 \u03B3\u03AE\u03C0\u03B5\u03B4\u03BF \u03B3\u03BA\u03BF\u03BB\u03C6 \u03BF\u03B9 \u03C4\u03C1\u03CD\u03C0\u03B5\u03C2 \u03C3\u03C5\u03C7\u03BD\u03AC \u03BA\u03C1\u03CD\u03B2\u03BF\u03C5\u03BD \u03BA\u03B9\u03BD\u03B4\u03CD\u03BD\u03BF\u03C5\u03C2, \u03C0\u03BF\u03C5 \u03BF\u03C1\u03AF\u03B6\u03BF\u03BD\u03C4\u03B1\u03B9 \u03C9\u03C2 \u03B5\u03B9\u03B4\u03B9\u03BA\u03AD\u03C2 \u03C0\u03B5\u03C1\u03B9\u03BF\u03C7\u03AD\u03C2 \u03B3\u03B9\u03B1 \u03C4\u03B9\u03C2 \u03BF\u03C0\u03BF\u03AF\u03B5\u03C2 \u03B9\u03C3\u03C7\u03CD\u03BF\u03C5\u03BD \u03B5\u03C0\u03B9\u03C0\u03C1\u03CC\u03C3\u03B8\u03B5\u03C4\u03BF\u03B9 \u03BA\u03B1\u03BD\u03CC\u03BD\u03B5\u03C2 \u03B4\u03B9\u03B5\u03BE\u03B1\u03B3\u03C9\u03B3\u03AE\u03C2 \u03C4\u03BF\u03C5 \u03C0\u03B1\u03B9\u03C7\u03BD\u03B9\u03B4\u03B9\u03BF\u03CD."@el . + . + . + . + . + "barrage"@nl . + "\u03C6\u03C1\u03AC\u03B3\u03BC\u03B1"@el . + "diga"@it . + "dam"@en . + "Damm"@de . + "\u0388\u03BD\u03B1 \u03C6\u03C1\u03AC\u03B3\u03BC\u03B1 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03BC\u03B9\u03B1 \u03BA\u03B1\u03C4\u03B1\u03C3\u03BA\u03B5\u03C5\u03AE \u03C0\u03BF\u03C5 \u03B5\u03BC\u03C0\u03BF\u03B4\u03AF\u03B6\u03B5\u03B9, \u03B1\u03BD\u03B1\u03BA\u03B1\u03C4\u03B5\u03C5\u03B8\u03CD\u03BD\u03B5\u03B9 \u03AE \u03B5\u03C0\u03B9\u03B2\u03C1\u03B1\u03B4\u03CD\u03BD\u03B5\u03B9 \u03C4\u03B7\u03BD \u03C6\u03C5\u03C3\u03B9\u03BA\u03AE \u03C1\u03BF\u03AE \u03C5\u03B4\u03AC\u03C4\u03C9\u03BD."@el . + "A dam is part of a landscape infrastructure, like waterworks (canals) or roads, much more than a building, though, of course, it has been built, too."@en . + . + . + . + . + "televisie zender"@nl . + "\u03C4\u03B7\u03BB\u03B5\u03BF\u03C0\u03C4\u03B9\u03BA\u03CC\u03C2 \u03C3\u03C4\u03B1\u03B8\u03BC\u03CC\u03C2"@el . + "cha\u00EEnes de t\u00E9l\u00E9vision"@fr . + "canale televisivo"@it . + "canal de televisi\u00F3n"@es . + "television station"@en . + "\u30C6\u30EC\u30D3\u30B8\u30E7\u30F3\u653E\u9001\u5C40"@ja . + "Fernsehsender"@de . + "A television station has usually one line up. For instance the television station WABC-TV (or ABC 7, Channel 7). Not to be confused with the broadcasting network ABC, which has many television stations."@en . + "\u0388\u03BD\u03B1\u03C2 \u03C4\u03B7\u03BB\u03B5\u03BF\u03C0\u03C4\u03B9\u03BA\u03CC\u03C2 \u03C3\u03C4\u03B1\u03B8\u03BC\u03CC\u03C2 \u03AD\u03C7\u03B5\u03B9 \u03BC\u03B9\u03B1 \u03C0\u03B1\u03C1\u03AC\u03C4\u03B1\u03BE\u03B7.\u0393\u03B9\u03B1 \u03C0\u03B1\u03C1\u03AC\u03B4\u03B5\u03B9\u03B3\u03BC\u03B1 \u03BF \u03C4\u03B7\u03BB\u03B5\u03BF\u03C0\u03C4\u03B9\u03BA\u03CC\u03C2 \u03C3\u03C4\u03B1\u03B8\u03BC\u03CC\u03C2 WABC-TV (or ABC 7, Channel 7).\u0394\u03B5\u03BD \u03C0\u03C1\u03AD\u03C0\u03B5\u03B9 \u03BD\u03B1 \u03C3\u03C5\u03B3\u03C7\u03AD\u03B5\u03C4\u03B1\u03B9 \u03BC\u03B5 \u03C4\u03BF \u03C4\u03B7\u03BB\u03B5\u03BF\u03C0\u03C4\u03B9\u03BA\u03CC \u03B4\u03AF\u03BA\u03C4\u03C5\u03BF ABC,\u03C0\u03BF\u03C5 \u03AD\u03C7\u03B5\u03B9 \u03C0\u03BF\u03BB\u03BB\u03BF\u03CD\u03C2 \u03C4\u03B7\u03BB\u03B5\u03BF\u03C0\u03C4\u03B9\u03BA\u03BF\u03CD\u03C2 \u03C3\u03C4\u03B1\u03B8\u03BC\u03BF\u03CD\u03C2."@el . + "Ein Fernsehsender hat normalerweise ein Programm, zum Beispiel der Sender Erstes Deutsches Fernsehen (Das Erste). Nicht zu verwechseln mit der Rundfunkanstalt ARD, welche mehrere Fernsehsender hat."@de . + . + . + . + . + "country estate"@en . + "Landgut"@de . + "buitenplaats"@nl . + "A country seat is a rural patch of land owned by a land owner."@en . + "Een buitenplaats is een landgoed."@nl . + . + . + . + "\u03B1\u03B3\u03CE\u03BD\u03B1\u03C2"@el . + "course"@fr . + "race"@en . + "\u30EC\u30FC\u30B9"@ja . + "Rennen"@de . + . + . + . + "Caterer"@en . + "party service bedrijf"@nl . + "Partyservice"@de . + . + . + . + "bebouwde omgeving"@nl . + "\u03C0\u03C5\u03BA\u03BD\u03BF\u03BA\u03B1\u03C4\u03BF\u03B9\u03BA\u03B7\u03BC\u03AD\u03BD\u03B7 \u03C0\u03B5\u03C1\u03B9\u03BF\u03C7\u03AE"@el . + "lieu habit\u00E9"@fr . + "populated place"@en . + "bewohnter Ort"@de . + "As defined by the United States Geological Survey, a populated place is a place or area with clustered or scattered buildings and a permanent human population (city, settlement, town, or village) referenced with geographic coordinates (http://en.wikipedia.org/wiki/Populated_place)."@en . + "\u03A0\u03C5\u03BA\u03BD\u03BF\u03BA\u03B1\u03C4\u03BF\u03B9\u03BA\u03B7\u03BC\u03AD\u03BD\u03B7 \u03C0\u03B5\u03C1\u03B9\u03BF\u03C7\u03AE, \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B7 \u03C0\u03B5\u03C1\u03B9\u03BF\u03C7\u03AE \u03AE \u03C4\u03BF \u03BC\u03AD\u03C1\u03BF\u03C2 \u03BC\u03B5 \u03BC\u03B5\u03B3\u03AC\u03BB\u03BF \u03B1\u03C1\u03B9\u03B8\u03BC\u03CC \u03BA\u03C4\u03B9\u03C1\u03AF\u03C9\u03BD \u03BA\u03B1\u03B9 \u03BC\u03B5\u03B3\u03AC\u03BB\u03BF \u03BC\u03CC\u03BD\u03B9\u03BC\u03BF \u03C0\u03BB\u03B7\u03B8\u03C5\u03C3\u03BC\u03CC, \u03C3\u03B5 \u03C3\u03CD\u03B3\u03BA\u03C1\u03B9\u03C3\u03B7 \u03BC\u03B5 \u03C4\u03B7\u03BD \u03B3\u03B5\u03C9\u03B3\u03C1\u03B1\u03C6\u03B9\u03BA\u03AE \u03C0\u03B5\u03C1\u03B9\u03BF\u03C7\u03AE \u03C0\u03BF\u03C5 \u03BA\u03B1\u03C4\u03B1\u03BB\u03B1\u03BC\u03B2\u03AC\u03BD\u03B5\u03B9 (\u03BC\u03B5\u03B3\u03B1\u03BB\u03BF\u03CD\u03C0\u03BF\u03BB\u03B7, \u03C0\u03CC\u03BB\u03B7 \u03AE \u03C7\u03C9\u03C1\u03B9\u03CC)."@el . + . + . + . + . + "wielrenner"@nl . + "\u03C0\u03BF\u03B4\u03B7\u03BB\u03AC\u03C4\u03B7\u03C2"@el . + "cycliste"@fr . + "ciclista"@pt . + "ciclista"@es . + "cyclist"@en . + "\uC0AC\uC774\uD074 \uC120\uC218"@ko . + "Radfahrer"@de . + . + . + . + "rugby competitie"@nl . + "\u03C0\u03C1\u03C9\u03C4\u03AC\u03B8\u03BB\u03B7\u03BC\u03B1 rugby"@el . + "ligue de rugby"@fr . + "rugby league"@en . + "Rugby-Liga"@de . + "A group of sports teams that compete against each other in rugby."@en . + . + . + . + . + "Amerikaanse football coach"@nl . + "\u03C0\u03C1\u03BF\u03C0\u03BF\u03BD\u03B7\u03C4\u03AE\u03C2 \u03C1\u03AC\u03B3\u03BA\u03BC\u03C0\u03C5"@el . + "allenatore di football americano"@it . + "american football coach"@en . + "American-Football-Trainer"@de . + . + . + . + "voetbalclub"@nl . + "\u03BF\u03BC\u03AC\u03B4\u03B1 \u03C0\u03BF\u03B4\u03BF\u03C3\u03C6\u03B1\u03AF\u03C1\u03BF\u03C5"@el . + "club de football"@fr . + "soccer club"@en . + "Fu\u00DFballverein"@de . + . + . + . + "historicus"@nl . + "\u03B9\u03C3\u03C4\u03BF\u03C1\u03B9\u03BA\u03CC\u03C2"@el . + "storico"@it . + "historian"@en . + "Historiker"@de . + . + . + . + "astero\u00EFde"@nl . + "\u03B1\u03C3\u03C4\u03B5\u03C1\u03BF\u03B5\u03B9\u03B4\u03AE\u03C2"@el . + "ast\u00E9ro\u00EFde"@fr . + "aster\u00F3ide"@pt . + "asteroide"@it . + "asteroide"@es . + "asteroid"@en . + "\uC18C\uD589\uC131"@ko . + "\u5C0F\u60D1\u661F"@ja . + "Asteroid"@de . + . + . + . + . + "gitarist"@nl . + "\u03BA\u03B9\u03B8\u03B1\u03C1\u03AF\u03C3\u03C4\u03B1\u03C2"@el . + "guitariste"@fr . + "chitarrista"@it . + "guitarist"@en . + "Gitarrist"@de . + . + . + . + . + "wapen"@nl . + "\u03CC\u03C0\u03BB\u03BF"@el . + "arme"@fr . + "weapon"@en . + "\uBB34\uAE30"@ko . + "\u6B66\u5668"@ja . + "Waffe"@de . + . + . + . + . + . + "polyhedron"@nl . + "\u03C0\u03BF\u03BB\u03CD\u03B5\u03B4\u03C1\u03BF"@el . + "poliedro"@it . + "Polyhedron"@en . + "\uB2E4\uBA74\uCCB4"@ko . + "Polyeder"@de . + . + . + . + . + . + "jezioro"@pl . + "meer"@nl . + "\u03BB\u03AF\u03BC\u03BD\u03B7"@el . + "lac"@fr . + "lake"@en . + "loch"@ga . + "\uD638\uC218"@ko . + "\uD638\uC218"@ja . + "See"@de . + . + . + . + . + . + "luitenant"@nl . + "\u03C5\u03C0\u03BF\u03BB\u03BF\u03C7\u03B1\u03B3\u03CC\u03C2"@el . + "lieutenant"@fr . + "tenente"@pt . + "lieutenant"@en . + "Leutnant"@de . + . + . + . + "host"@en . + "gastheer"@nl . + "Gastgeber"@de . + "\u03BF\u03B9\u03BA\u03BF\u03B4\u03B5\u03C3\u03C0\u03CC\u03C4\u03B7\u03C2"@el . + "\u039F \u03BF\u03B9\u03BA\u03BF\u03B4\u03B5\u03C3\u03C0\u03CC\u03C4\u03B7\u03C2 \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03B5\u03AF\u03C4\u03B1\u03B9 \u03C3\u03C5\u03BD\u03AE\u03B8\u03C9\u03C2 \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03C0\u03B5\u03C1\u03B9\u03B3\u03C1\u03AC\u03C8\u03B5\u03B9 \u03AC\u03BD\u03B4\u03C1\u03B1 \u03C0\u03B1\u03C1\u03BF\u03C5\u03C3\u03B9\u03B1\u03C3\u03C4\u03AE \u03B3\u03B5\u03B3\u03BF\u03BD\u03CC\u03C4\u03BF\u03C2."@el . + . + . + . + "beroemdheid"@nl . + "\u03B4\u03B9\u03B1\u03C3\u03B7\u03BC\u03CC\u03C4\u03B7\u03C4\u03B1"@el . + "c\u00E9l\u00E9brit\u00E9"@fr . + "celebrit\u00E0"@it . + "celebrity"@en . + "\uC720\uBA85\uC778"@ko . + "Ber\u00FChmtheit"@de . + . + . + . + . + "mine"@en . + "Mine (Bergwerk)"@de . + "mijn (delfstoffen))"@nl . + "A mine is a place where mineral resources are or were extracted"@en . + "Een mijn is een plaats waar delfstoffen worden of werden gewonnen"@nl . + . + . + . + . + "letter"@nl . + "\u03B3\u03C1\u03AC\u03BC\u03BC\u03B1"@el . + "lettre"@fr . + "letter"@en . + "\u6587\u5B57"@ja . + "Buchstabe"@de . + "Ein Buchstabe des Alphabets."@de . + "A letter from the alphabet."@en . + "Ene lettre de l'alphabet."@fr . + . + . + . + . + . + "topical concept"@en . + "thematisches Konzept"@de . + . + . + . + . + "academic subject"@en . + "akademisches Fach"@de . + "academische hoofdstudierichting"@nl . + "Genres of art, e.g. Mathematics, History, Philosophy, Medicine"@en . + . + . + . + "noble"@en . + "Adliger"@de . + "\u03B5\u03C5\u03B3\u03B5\u03BD\u03AE\u03C2"@el . + "edele"@nl . + . + . + . + "vuurtoren"@nl . + "\u03A6\u03AC\u03C1\u03BF\u03C2"@el . + "phare"@fr . + "lighthouse"@en . + "\u706F\u53F0"@ja . + "Leuchtturm"@de . + . + . + . + . + "microregio"@nl . + "\u03BC\u03B9\u03BA\u03C1\u03BF-\u03C0\u03B5\u03C1\u03B9\u03C6\u03AD\u03C1\u03B5\u03B9\u03B1"@el . + "microrregiao"@pt . + "micro-region"@en . + "Mikroregion"@de . + "A microregion is a - mainy statistical - region in Brazil, at an administrative level between a meso-region and a community"@en . + "\u0397 \u03BC\u03B9\u03BA\u03C1\u03BF-\u03C0\u03B5\u03C1\u03B9\u03C6\u03AD\u03C1\u03B5\u03B9\u03B1 \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03B5\u03AF\u03C4\u03B1\u03B9 \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03C0\u03B5\u03C1\u03B9\u03B3\u03C1\u03AC\u03C8\u03B5\u03B9, \u03BA\u03C5\u03C1\u03AF\u03C9\u03C2 \u03C3\u03C4\u03B1\u03C4\u03B9\u03C3\u03C4\u03B9\u03BA\u03AC, \u03BC\u03B9\u03B1 \u03C0\u03B5\u03C1\u03B9\u03BF\u03C7\u03AE \u03C3\u03C4\u03B7 \u0392\u03C1\u03B1\u03B6\u03B9\u03BB\u03AF\u03B1 \u03C3\u03B5 \u03B4\u03B9\u03BF\u03B9\u03BA\u03B7\u03C4\u03B9\u03BA\u03CC \u03B5\u03C0\u03AF\u03C0\u03B5\u03B4\u03BF \u03BC\u03B5\u03C4\u03B1\u03BE\u03CD \u03BC\u03AF\u03B1\u03C2 \u03BC\u03B5\u03C3\u03BF-\u03C0\u03B5\u03C1\u03B9\u03C6\u03AD\u03C1\u03B5\u03B9\u03B1\u03C2 \u03BA\u03B1\u03B9 \u03BC\u03AF\u03B1\u03C2 \u03BA\u03BF\u03B9\u03BD\u03CC\u03C4\u03B7\u03C4\u03B1"@el . + . + . + . + "parlementslid"@nl . + "\u039C\u03AD\u03BB\u03BF\u03C2 \u03BA\u03BF\u03B9\u03BD\u03BF\u03B2\u03BF\u03C5\u03BB\u03AF\u03BF\u03C5"@el . + "membre du Parlement"@fr . + "membro do parlamento"@pt . + "member of parliament"@en . + "Parlamentsmitglied"@de . + . + . + . + . + "route stage"@en . + "Pause"@de . + "\u00E9tape"@fr . + "one stage or stop on a road."@en . + "une \u00E9tape ou un arr\u00EAt sur une route."@fr . + . + . + . + "wijnstreek"@nl . + "r\u00E9gion viticole"@fr . + "wine region"@en . + "\u30EF\u30A4\u30F3\u7523\u5730"@ja . + "Weinregion"@de . + . + . + . + "zonsverduistering"@nl . + "\u03AD\u03BA\u03BB\u03B5\u03B9\u03C8\u03B7 \u03B7\u03BB\u03AF\u03BF\u03C5"@el . + "\u00E9clipse de soleil"@fr . + "eclissi solare"@it . + "solar eclipse"@en . + "Sonnenfinsternis"@de . + "\u0388\u03BA\u03BB\u03B5\u03B9\u03C8\u03B7 \u03B7\u03BB\u03AF\u03BF\u03C5 \u03BF\u03BD\u03BF\u03BC\u03AC\u03B6\u03B5\u03C4\u03B1\u03B9 \u03C4\u03BF \u03C6\u03B1\u03B9\u03BD\u03CC\u03BC\u03B5\u03BD\u03BF \u03BA\u03B1\u03C4\u03AC \u03C4\u03BF \u03BF\u03C0\u03BF\u03AF\u03BF \u03B7 \u03A3\u03B5\u03BB\u03AE\u03BD\u03B7 \u03C0\u03B1\u03C1\u03B5\u03BC\u03B2\u03AC\u03BB\u03BB\u03B5\u03C4\u03B1\u03B9 \u03B1\u03BD\u03AC\u03BC\u03B5\u03C3\u03B1 \u03C3\u03C4\u03BF\u03BD \u0389\u03BB\u03B9\u03BF \u03BA\u03B1\u03B9 \u03C4\u03B7 \u0393\u03B7, \u03BC\u03B5 \u03B1\u03C0\u03BF\u03C4\u03AD\u03BB\u03B5\u03C3\u03BC\u03B1 \u03BF\u03C1\u03B9\u03C3\u03BC\u03AD\u03BD\u03B5\u03C2 \u03C0\u03B5\u03C1\u03B9\u03BF\u03C7\u03AD\u03C2 \u03C4\u03B7\u03C2 \u0393\u03B7\u03C2 \u03BD\u03B1 \u03B4\u03AD\u03C7\u03BF\u03BD\u03C4\u03B1\u03B9 \u03BB\u03B9\u03B3\u03CC\u03C4\u03B5\u03C1\u03BF \u03C6\u03C9\u03C2 \u03B1\u03C0\u03CC \u03CC,\u03C4\u03B9 \u03C3\u03C5\u03BD\u03AE\u03B8\u03C9\u03C2."@el . + . + . + . + . + "b\u00F3stwo"@pl . + "godheid"@nl . + "\u03B8\u03B5\u03CC\u03C4\u03B7\u03C4\u03B1"@el . + "deity"@en . + "dia"@ga . + "\uC774\uC9D1\uD2B8 \uC2E0"@ko . + "\u795E"@ja . + "Gottheit"@de . + . + . + . + . + "treinstation"@nl . + "\u03C3\u03B9\u03B4\u03B7\u03C1\u03BF\u03B4\u03C1\u03BF\u03BC\u03B9\u03BA\u03CC\u03C2 \u03C3\u03C4\u03B1\u03B8\u03BC\u03CC\u03C2"@el . + "gare"@fr . + "stazione ferroviaria"@it . + "train station"@en . + "\u9244\u9053\u99C5"@ja . + "Bahnhof"@de . + . + . + . + . + "dichter"@nl . + "\u03C0\u03BF\u03B9\u03B7\u03C4\u03AE\u03C2"@el . + "po\u00E8te"@fr . + "poet"@en . + "Dichter"@de . + . + . + . + . + "biskup chrze\u015Bcija\u0144ski"@pl . + "Christelijk bisschop"@nl . + "\u03A0\u03BB\u03B7\u03C1\u03BF\u03C6\u03BF\u03C1\u03AF\u03B5\u03C2 \u0395\u03C0\u03B9\u03C3\u03BA\u03CC\u03C0\u03BF\u03C5"@el . + "\u00E9v\u00EAque chr\u00E9tien"@fr . + "vescovo cristiano"@it . + "Christian Bishop"@en . + "\uAE30\uB3C5\uAD50 \uC8FC\uAD50"@ko . + "christlicher Bischof"@de . + . + . + . + "polo competitie"@nl . + "\u039F\u03BC\u03BF\u03C3\u03C0\u03BF\u03BD\u03B4\u03AF\u03B1 \u03A5\u03B4\u03B1\u03C4\u03BF\u03C3\u03C6\u03B1\u03AF\u03C1\u03B9\u03C3\u03B7\u03C2"@el . + "ligue de polo"@fr . + "polo league"@en . + "Polo-Liga"@de . + "A group of sports teams that compete against each other in Polo."@en . + . + . + . + "auto race competitie"@nl . + "\u03C0\u03C1\u03C9\u03C4\u03AC\u03B8\u03BB\u03B7\u03BC\u03B1 \u03B1\u03B3\u03CE\u03BD\u03C9\u03BD \u03B1\u03C5\u03C4\u03BF\u03BA\u03B9\u03BD\u03AE\u03C4\u03C9\u03BD"@el . + "la ligue de course automobile"@fr . + "lega automobilistica"@it . + "auto racing league"@en . + "\uC790\uB3D9\uCC28 \uACBD\uC8FC \uB300\uD68C"@ko . + "\u81EA\u52D5\u8ECA\u7AF6\u6280\u30EA\u30FC\u30B0"@ja . + "Auto Racing League"@de . + "a group of sports teams or individual athletes that compete against each other in auto racing"@en . + "\u03BC\u03B9\u03B1 \u03BF\u03BC\u03AC\u03B4\u03B1 \u03B1\u03B8\u03BB\u03B7\u03C4\u03B9\u03BA\u03CE\u03BD \u03BF\u03BC\u03AC\u03B4\u03C9\u03BD \u03AE \u03BC\u03B5\u03BC\u03BF\u03BD\u03C9\u03BC\u03AD\u03BD\u03C9\u03BD \u03B1\u03B8\u03BB\u03B7\u03C4\u03CE\u03BD \u03C0\u03BF\u03C5 \u03B1\u03BD\u03C4\u03B1\u03B3\u03C9\u03BD\u03AF\u03B6\u03BF\u03BD\u03C4\u03B1\u03B9 \u03BC\u03B5\u03C4\u03B1\u03BE\u03CD \u03C4\u03BF\u03C5\u03C2 \u03C3\u03B5 \u03B1\u03B3\u03CE\u03BD\u03B5\u03C2 \u03B1\u03C5\u03C4\u03BF\u03BA\u03B9\u03BD\u03AE\u03C4\u03C9\u03BD"@el . + . + . + . + "plaats van geschiedkundig belang"@nl . + "\u03B9\u03C3\u03C4\u03BF\u03C1\u03B9\u03BA\u03CC\u03C2 \u03C7\u03CE\u03C1\u03BF\u03C2"@el . + "site historique"@fr . + "historic place"@en . + "historischer Ort"@de . + . + . + . + . + "depth"@en . + "Tiefe"@de . + "\u03B2\u03AC\u03B8\u03BF\u03C2"@el . + "diepte"@nl . + . + . + . + "Britse royalty"@nl . + "\u0392\u03C1\u03B5\u03C4\u03B1\u03BD\u03B9\u03BA\u03AE \u03BC\u03BF\u03BD\u03B1\u03C1\u03C7\u03AF\u03B1"@el . + "royaut\u00E9 Britannique"@fr . + "reali britannici"@it . + "British royalty"@en . + "\uC601\uAD6D \uC655\uC871"@ko . + "Britanska kraljevska oseba"@sl . + "\u30A4\u30AE\u30EA\u30B9\u738B\u5BA4"@ja . + "Britisches K\u00F6nigshaus"@de . + . + . + . + "boksen"@nl . + "\u03C0\u03C5\u03B3\u03BC\u03B1\u03C7\u03AF\u03B1"@el . + "boxeo"@es . + "boxing"@en . + "Boxen"@de . + "\u0397 \u03C0\u03C5\u03B3\u03BC\u03B1\u03C7\u03AF\u03B1 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03AD\u03BD\u03B1 \u03B1\u03B3\u03CE\u03BD\u03B9\u03C3\u03BC\u03B1 \u03C0\u03BF\u03C5 \u03C3\u03C4\u03B7\u03C1\u03AF\u03B6\u03B5\u03C4\u03B1\u03B9 \u03C3\u03C4\u03B7\u03BD \u03B9\u03BA\u03B1\u03BD\u03CC\u03C4\u03B7\u03C4\u03B1 \u03C4\u03C9\u03BD \u03B1\u03BD\u03C4\u03B9\u03C0\u03AC\u03BB\u03C9\u03BD \u03BD\u03B1 \u03B1\u03BD\u03C4\u03B9\u03BA\u03C1\u03BF\u03CD\u03C3\u03BF\u03C5\u03BD \u03BC\u03CC\u03BD\u03BF \u03BC\u03B5 \u03C4\u03B9\u03C2 \u03B3\u03C1\u03BF\u03B8\u03B9\u03AD\u03C2 \u03C4\u03BF\u03C5\u03C2 \u03BF \u03AD\u03BD\u03B1\u03C2 \u03C4\u03BF\u03BD \u03AC\u03BB\u03BB\u03BF \u03BA\u03B1\u03B9 \u03BD\u03B1 \u03BA\u03B1\u03C4\u03B1\u03C6\u03AD\u03C1\u03BF\u03C5\u03BD, \u03BC\u03B5 \u03B5\u03CD\u03C3\u03C4\u03BF\u03C7\u03B1 \u03BA\u03B1\u03B9 \u03B3\u03B5\u03C1\u03AC \u03BA\u03C4\u03C5\u03C0\u03AE\u03BC\u03B1\u03C4\u03B1, \u03BD\u03B1 \u03B2\u03B3\u03AC\u03BB\u03BF\u03C5\u03BD \u03B5\u03BA\u03C4\u03CC\u03C2 \u03BC\u03AC\u03C7\u03B7\u03C2 \u03BF \u03BA\u03B1\u03B8\u03AD\u03BD\u03B1\u03C2 \u03C4\u03BF\u03BD \u03B1\u03BD\u03C4\u03AF\u03C0\u03B1\u03BB\u03CC \u03C4\u03BF\u03C5."@el . + . + . + . + . + "televisie presentator"@nl . + "\u03C0\u03B1\u03C1\u03BF\u03C5\u03C3\u03B9\u03B1\u03C3\u03C4\u03AE\u03C2 \u03C4\u03B7\u03BB\u03B5\u03BF\u03C0\u03C4\u03B9\u03BA\u03AE\u03C2 \u03B5\u03BA\u03C0\u03BF\u03BC\u03C0\u03AE\u03C2"@el . + "animateur de t\u00E9l\u00E9vision"@fr . + "presentatore televisivo"@it . + "television host"@en . + "Fernsehmoderator"@de . + . + . + . + . + "manhua"@en . + "manhua"@de . + "manhua"@nl . + "manhua"@el . + "Comics originally produced in China"@en . + "Au\u00DFerhalb Chinas wird der Begriff f\u00FCr Comics aus China verwendet."@de . + "Manhua is het Chinese equivalent van het stripverhaal"@nl . + "\u039A\u03CC\u03BC\u03B9\u03BA\u03C2 \u03C0\u03BF\u03C5 \u03C0\u03B1\u03C1\u03AC\u03B3\u03BF\u03BD\u03C4\u03B1\u03B9 \u03B1\u03C1\u03C7\u03B9\u03BA\u03AC \u03C3\u03C4\u03B7\u03BD \u039A\u03AF\u03BD\u03B1"@el . + . + . + . + . + "Watertoren"@nl . + "\u03C0\u03CD\u03C1\u03B3\u03BF\u03C2 \u03BD\u03B5\u03C1\u03BF\u03CD"@el . + "Ch\u00E2teau d'eau"@fr . + "Serbatoio idrico a torre"@it . + "Water tower"@en . + "Wasserturm"@de . + "\u03BC\u03B9\u03B1 \u03BA\u03B1\u03C4\u03B1\u03C3\u03BA\u03B5\u03C5\u03AE \u03C3\u03C7\u03B5\u03B4\u03B9\u03B1\u03C3\u03BC\u03AD\u03BD\u03B7 \u03B3\u03B9\u03B1 \u03B1\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7 \u03BC\u03B5\u03B3\u03AC\u03BB\u03C9\u03BD \u03C0\u03BF\u03C3\u03BF\u03C4\u03AE\u03C4\u03C9\u03BD \u03BD\u03B5\u03C1\u03BF\u03CD \u03C3\u03B5 \u03BC\u03AD\u03C1\u03BF\u03C2 \u03BC\u03B5 \u03BA\u03AC\u03C0\u03BF\u03B9\u03B1 \u03B1\u03BD\u03CD\u03C8\u03C9\u03C3\u03B7, \u03CE\u03C3\u03C4\u03B5 \u03BD\u03B1 \u03B4\u03B9\u03B1\u03C4\u03B7\u03C1\u03AE\u03C3\u03B5\u03B9 \u03C0\u03AF\u03B5\u03C3\u03B7 \u03C3\u03C4\u03BF \u03C3\u03CD\u03C3\u03C4\u03B7\u03BC\u03B1 \u03C0\u03B1\u03C1\u03BF\u03C7\u03AE\u03C2 \u03BD\u03B5\u03C1\u03BF\u03CD"@el . + "a construction designed to store larger quantities of water at a place of some elevation in order to keep pressure on the water provision system"@en . + "une construction destin\u00E9e \u00E0 entreposer l'eau, et plac\u00E9e en g\u00E9n\u00E9ral sur un sommet g\u00E9ographique pour permettre de la distribuer sous pression"@fr . + . + . + . + . + "mythologisch figuur"@nl . + "\u03BC\u03C5\u03B8\u03B9\u03BA\u03CC \u03C0\u03BB\u03AC\u03C3\u03BC\u03B1"@el . + "figura mitologica"@it . + "mythological figure"@en . + "mythologische Gestalt"@de . + . + . + . + . + "Historical region"@en . + "Ancienne r\u00E9gion"@fr . + "historischer Region"@de . + "a place which used to be a region."@en . + . + . + . + . + "gebouw"@nl . + "\u03BA\u03C4\u03AF\u03C1\u03B9\u03BF"@el . + "b\u00E2timent"@fr . + "edificio"@it . + "edificio"@es . + "building"@en . + "\uAC74\uCD95\uBB3C"@ko . + "stavba"@sl . + "\u5EFA\u7BC9\u90E8"@ja . + "Geb\u00E4ude"@de . + "Building is defined as a Civil Engineering structure such as a house, worship center, factory etc. that has a foundation, wall, roof etc. that protect human being and their properties from direct harsh effect of weather like rain, wind, sun etc. (http://en.wikipedia.org/wiki/Building)."@en . + "Ein Geb\u00E4ude, umgangssprachlich auch oft als Haus bezeichnet, ist ein Bauwerk, das R\u00E4ume umschlie\u00DFt, betreten werden kann und zum Schutz von Menschen, Tieren oder Sachen dient (http://de.wikipedia.org/wiki/Geb%C3%A4ude)."@de . + . + . + . + . + . + "ruimtevaarder"@nl . + "\u03B1\u03C3\u03C4\u03C1\u03BF\u03BD\u03B1\u03CD\u03C4\u03B7\u03C2"@el . + "astronaute"@fr . + "astronauta"@pt . + "astronauta"@it . + "astronauta"@es . + "astronaut"@en . + "\uC6B0\uC8FC\uC778"@ko . + "\u5B87\u5B99\u98DB\u884C\u58EB"@ja . + "Astronaut"@de . + . + . + . + . + "mixed martial arts league"@en . + "Mixed Kampfkunst Liga"@de . + "ligue d'arts martiaux mixtes"@fr . + "a group of sports teams that compete against each other in Mixed Martial Arts"@en . + . + . + . + "moving image"@en . + "Bewegtbilder"@de . + "bewegend beeld"@nl . + "A visual document that is intended to be animated; equivalent to http://purl.org/dc/dcmitype/MovingImage"@en . + . + . + . + "term of office"@en . + "Amtsdauer"@de . + . + . + . + . + "bestuurlijk gebied"@nl . + "\u03B4\u03B9\u03BF\u03B9\u03BA\u03B7\u03C4\u03B9\u03BA\u03AE \u03C0\u03B5\u03C1\u03B9\u03C6\u03AD\u03C1\u03B5\u03B9\u03B1"@el . + "r\u00E9gion administrative"@fr . + "regione amministrativa"@it . + "administrative region"@en . + "\uAD00\uB9AC \uC9C0\uC5ED"@ko . + "\u884C\u653F\u5340"@zh . + "\u884C\u653F\u533A\u753B"@ja . + "Verwaltungsregion"@de . + "A PopulatedPlace under the jurisdiction of an administrative body. This body may administer either a whole region or one or more adjacent Settlements (town administration)"@en . + . + . + . + . + . + "human development index"@en . + "Index f\u00FCr menschliche Entwicklung"@de . + . + . + . + "bodybuilder"@nl . + "culturista"@it . + "bodybuilder"@en . + "\uBCF4\uB514\uBE4C\uB354"@ko . + "Bodybuilder"@de . + . + . + . + . + "single"@nl . + "single"@el . + "single"@fr . + "single"@en . + "\uC2F1\uAE00"@ko . + "\u30B7\u30F3\u30B0\u30EB"@ja . + "Single"@de . + "In music, a single or record single is a type of release, typically a recording of fewer tracks than an LP or a CD."@en . + . + . + . + . + "softball competitie"@nl . + "\u03C0\u03C1\u03C9\u03C4\u03AC\u03B8\u03BB\u03B7\u03BC\u03B1 \u03C3\u03CC\u03C6\u03C4\u03BC\u03C0\u03BF\u03BB"@el . + "ligue de softball"@fr . + "softball league"@en . + "Softball Liga"@de . + "A group of sports teams that compete against each other in softball."@en . + "\u039F\u03BC\u03AC\u03B4\u03B5\u03C2 \u03C0\u03BF\u03C5 \u03B1\u03BD\u03C4\u03B1\u03B3\u03C9\u03BD\u03AF\u03B6\u03BF\u03BD\u03C4\u03B1\u03B9 \u03C3\u03C4\u03BF \u03B1\u03B3\u03CE\u03BD\u03B9\u03C3\u03BC\u03B1 \u03C4\u03BF\u03C5 \u03C3\u03CC\u03C6\u03C4\u03BC\u03C0\u03BF\u03BB."@el . + . + . + . + "casino"@nl . + "\u03BA\u03B1\u03B6\u03AF\u03BD\u03BF"@el . + "casino"@fr . + "casin\u00F2"@it . + "casino"@es . + "casino"@en . + "\uCE74\uC9C0\uB178"@ko . + "Kasino"@de . + "In modern English, a casino is a facility which houses and accommodates certain types of gambling activities."@en . + "To \u03BA\u03B1\u03B6\u03AF\u03BD\u03BF \u03B5\u03AF\u03BD\u03B1\u03B9 \u03AD\u03BD\u03B1\u03C2 \u03C7\u03CE\u03C1\u03BF\u03C2 \u03C3\u03C4\u03BF\u03BD \u03BF\u03C0\u03BF\u03AF\u03BF \u03BC\u03C0\u03BF\u03C1\u03BF\u03CD\u03BC\u03B5 \u03BD\u03B1 \u03C0\u03B1\u03AF\u03BE\u03BF\u03C5\u03BC\u03B5 \u03C4\u03C5\u03C7\u03B5\u03C1\u03AC \u03C0\u03B1\u03B9\u03C7\u03BD\u03AF\u03B4\u03B9\u03B1 \u03C0\u03BF\u03BD\u03C4\u03AC\u03C1\u03BF\u03BD\u03C4\u03B1\u03C2 \u03C7\u03C1\u03AE\u03BC\u03B1\u03C4\u03B1."@el . + "Un casino est un lieu proposant des jeux d'argent et de hasard ou jeux de casino."@fr . + . + . + . + . + "renpaard"@nl . + "\u03B9\u03C0\u03C0\u03BF\u03B4\u03C1\u03BF\u03BC\u03AF\u03B1"@el . + "race horse"@en . + "\u7AF6\u8D70\u99AC"@ja . + "Rennpferd"@de . + . + . + . + "spotprent"@nl . + "\u03C3\u03B1\u03C4\u03C5\u03C1\u03B9\u03BA\u03CC \u03C3\u03BA\u03AF\u03C4\u03C3\u03BF"@el . + "dessin anim\u00E9"@fr . + "cartone animato"@it . + "cartoon"@en . + "\uCE74\uD230 (\uB9CC\uD654)"@ko . + "\u30AB\u30FC\u30C8\u30A5\u30FC\u30F3"@ja . + "Karikatur"@de . + . + . + . + . + "contest"@en . + "wedstrijd"@nl . + "Wettbewerb"@de . + "\u03B4\u03B9\u03B1\u03B3\u03C9\u03BD\u03B9\u03C3\u03BC\u03CC\u03C2"@el . + . + . + . + . + "ruimtevaartuig"@nl . + "\u03B4\u03B9\u03B1\u03C3\u03C4\u03B7\u03BC\u03CC\u03C0\u03BB\u03BF\u03B9\u03BF"@el . + "vaisseau spatial"@fr . + "spacecraft"@en . + "\uC6B0\uC8FC\uC120"@ko . + "Raumfahrzeug"@de . + . + . + . + . + "radio host"@en . + "Radiomoderator"@de . + "\u03BF\u03B9\u03BA\u03BF\u03B4\u03B5\u03C3\u03C0\u03CC\u03C4\u03B7\u03C2 \u03C1\u03B1\u03B4\u03B9\u03BF\u03C6\u03CE\u03BD\u03BF\u03C5"@el . + "radiopresentator"@nl . + . + . + . + . + "mixed martial arts event"@en . + "Mixed Kampfkunst Veranstaltung"@de . + "\u00E9v\u00E8nement d'arts martiaux mixtes"@fr . + . + . + . + "videospel"@nl . + "\u03B2\u03B9\u03BD\u03C4\u03B5\u03BF\u03C0\u03B1\u03B9\u03C7\u03BD\u03AF\u03B4\u03B9"@el . + "jeux vid\u00E9o"@fr . + "video game / jogo"@pt . + "videojuego"@es . + "video game"@en . + "\uBE44\uB514\uC624 \uAC8C\uC784"@ko . + "\u30C6\u30EC\u30D3\u30B2\u30FC\u30E0"@ja . + "Videospiel"@de . + "A video game is an electronic game that involves interaction with a user interface to generate visual feedback on a video device."@en . + . + . + . + . + "gouverneur"@nl . + "\u03BA\u03C5\u03B2\u03B5\u03C1\u03BD\u03AE\u03C4\u03B7\u03C2"@el . + "gouverneur"@fr . + "governor"@en . + "\u77E5\u4E8B"@ja . + "Gouverneur"@de . + . + . + . + . + "vakbond"@nl . + "\u039A\u03BF\u03C5\u03C4\u03AF \u03C0\u03BB\u03B7\u03C1\u03BF\u03C6\u03BF\u03C1\u03B9\u03CE\u03BD \u03AD\u03BD\u03C9\u03C3\u03B7\u03C2"@el . + "syndicat professionnel"@fr . + "trade union"@en . + "Gewerkschaft"@de . + "A trade union or labor union is an organization of workers who have banded together to achieve common goals such as better working conditions."@en . + . + . + . + . + "ambtsdrager"@nl . + "\u03BA\u03AC\u03C4\u03BF\u03C7\u03BF\u03C2 \u03B4\u03B7\u03BC\u03CC\u03C3\u03B9\u03BF\u03C5 \u03B1\u03BE\u03B9\u03CE\u03BC\u03B1\u03C4\u03BF\u03C2"@el . + "titulaire"@fr . + "cargo p\u00FAblico"@es . + "office holder"@en . + "\uACF5\uC9C1\uC790"@ko . + "Amtsinhaber"@de . + . + . + . + "type"@nl . + "\u03C4\u03CD\u03C0\u03BF\u03C2"@el . + "r\u00E9gime de classification"@fr . + "type"@en . + "Typ"@de . + "a category within a classification system"@en . + "categorie binnen een classificatiesysteem"@nl . + . + . + . + "militair bouwwerk"@nl . + "\u03A3\u03C4\u03C1\u03B1\u03C4\u03B9\u03C9\u03C4\u03B9\u03BA\u03AE \u0394\u03BF\u03BC\u03AE"@el . + "military structure"@en . + "\uAD70\uC0AC \uAC74\uCD95\uBB3C"@ko . + "milit\u00E4risches Bauwerk"@de . + "A military structure such as a Castle, Fortress, Wall, etc."@en . + . + . + . + "document"@nl . + "\u03AD\u03B3\u03B3\u03C1\u03B1\u03C6\u03BF"@el . + "document"@fr . + "documento"@it . + "document"@en . + "\u30C9\u30AD\u30E5\u30E1\u30F3\u30C8"@ja . + "Dokument"@de . + "Any document"@en . + . + . + . + . + "cricket competitie"@nl . + "\u03BA\u03CD\u03C0\u03B5\u03BB\u03BB\u03BF \u03BA\u03C1\u03B9\u03BA\u03B5\u03C4"@el . + "ligue de cricket"@fr . + "liga de cricket"@es . + "cricket league"@en . + "\uD06C\uB9AC\uCF13 \uB300\uD68C"@ko . + "Cricket-Liga"@de . + "a group of sports teams that compete against each other in Cricket"@en . + . + . + . + "rugby club"@nl . + "\u03BF\u03BC\u03AC\u03B4\u03B1 \u03C1\u03AC\u03B3\u03BA\u03BC\u03C0\u03B9"@el . + "club de rugby"@fr . + "rugby club"@en . + "Rugby-Club"@de . + . + . + . + "bergketen"@nl . + "\u039F\u03C1\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC"@el . + "cha\u00EEne de montagne"@fr . + "mountain range"@en . + "\uC0B0\uB9E5"@ko . + "Bergkette"@de . + "a chain of mountains bordered by highlands or separated from other mountains by passes or valleys."@en . + . + . + . + . + "\u03B1\u03C5\u03C3\u03C4\u03C1\u03B1\u03BB\u03B9\u03B1\u03BD\u03BF\u03AF \u03BA\u03B1\u03BD\u03CC\u03BD\u03B5\u03C2 \u03C0\u03BF\u03B4\u03BF\u03C3\u03C6\u03B1\u03B9\u03C1\u03B9\u03C3\u03C4\u03AE"@el . + "giocatore di football australiano"@it . + "Australian rules football player"@en . + "\uC624\uC2A4\uD2B8\uB808\uC77C\uB9AC\uC544\uC2DD \uD48B\uBCFC \uC120\uC218"@ko . + "\u30AA\u30FC\u30B8\u30FC\u30D5\u30C3\u30C8\u30DC\u30FC\u30EB\u9078\u624B"@ja . + "Australian Rules Football-Spieler"@de . + . + . + . + . + "basketbal speler"@nl . + "\u03C0\u03B1\u03AF\u03BA\u03C4\u03B7\u03C2 \u03BA\u03B1\u03BB\u03B1\u03B8\u03BF\u03C3\u03C6\u03B1\u03AF\u03C1\u03B9\u03C3\u03B7\u03C2"@el . + "joueur de basketball"@fr . + "giocatore di pallacanestro"@it . + "Basquetbolista"@es . + "basketball player"@en . + "\uB18D\uAD6C \uC120\uC218"@ko . + "\u30D0\u30B9\u30B1\u30C3\u30C8\u30DC\u30FC\u30EB\u9078\u624B"@ja . + "Basketballspieler"@de . + "\u0388\u03BD\u03B1\u03C2 \u03B1\u03B8\u03BB\u03B7\u03C4\u03AE\u03C2 (\u03AC\u03BD\u03B4\u03C1\u03B1\u03C2 \u03AE \u03B3\u03C5\u03BD\u03B1\u03AF\u03BA\u03B1) \u03C0\u03BF\u03C5 \u03B1\u03C3\u03C7\u03BF\u03BB\u03B5\u03AF\u03C4\u03B1\u03B9 \u03BC\u03B5 \u03C4\u03BF \u03AC\u03B8\u03BB\u03B7\u03BC\u03B1 \u03C4\u03B7\u03C2 \u03BA\u03B1\u03BB\u03B1\u03B8\u03BF\u03C3\u03C6\u03B1\u03AF\u03C1\u03B9\u03C3\u03B7\u03C2."@el . + . + . + . + . + "kanselier"@nl . + "\u03BA\u03B1\u03B3\u03BA\u03B5\u03BB\u03AC\u03C1\u03B9\u03BF\u03C2"@el . + "chancelier"@fr . + "chanceler"@pt . + "cancelliere"@it . + "canciller"@es . + "chancellor"@en . + "\uC7AC\uC0C1"@ko . + "Kanzler"@de . + . + . + . + . + "\u03BD\u03BF\u03BC\u03B9\u03BA\u03AE \u03C5\u03C0\u03CC\u03B8\u03B5\u03C3\u03B7"@el . + "cas juridique"@fr . + "caso jur\u00EDdico"@pt . + "Legal Case"@en . + "Rechtsfall"@de . + . + . + . + . + . + "schaaldier"@nl . + "\u03B1\u03C3\u03C4\u03C1\u03B1\u03BA\u03CC\u03B4\u03B5\u03C1\u03BC\u03BF"@el . + "crustac\u00E9s"@fr . + "crustacean"@en . + "\uAC11\uAC01\uB958"@ko . + "\u7532\u6BBB\u985E"@ja . + "Krebstier"@de . + . + . + . + "omroep"@nl . + "\u03B5\u03BA\u03C6\u03C9\u03BD\u03B7\u03C4\u03AE\u03C2"@el . + "diffuseur"@fr . + "emittente"@it . + "broadcaster"@en . + "\uBC29\uC1A1"@ko . + "\u653E\u9001\u4E8B\u696D\u8005"@ja . + "Rundfunkveranstalter"@de . + "A broadcaster is an organisation responsible for the production of radio or television programs and/or their transmission. (http://en.wikipedia.org/wiki/Broadcaster - 28/03/2011)"@en . + "\u039F \u03C1\u03B1\u03B4\u03B9\u03BF\u03C4\u03B7\u03BB\u03B5\u03BF\u03C0\u03C4\u03B9\u03BA\u03CC\u03C2 \u03C6\u03BF\u03C1\u03AD\u03B1\u03C2 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03AD\u03BD\u03B1\u03C2 \u03BF\u03C1\u03B3\u03B1\u03BD\u03B9\u03C3\u03BC\u03CC\u03C2 \u03C0\u03BF\u03C5 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03C5\u03C0\u03B5\u03CD\u03B8\u03C5\u03BD\u03BF\u03C2 \u03B3\u03B9\u03B1 \u03C4\u03B7\u03BD \u03C0\u03B1\u03C1\u03B1\u03B3\u03C9\u03B3\u03AE \u03C1\u03B1\u03B4\u03B9\u03BF\u03C6\u03C9\u03BD\u03B9\u03BA\u03CE\u03BD \u03AE \u03C4\u03B7\u03BB\u03B5\u03BF\u03C0\u03C4\u03B9\u03BA\u03CE\u03BD \u03C0\u03C1\u03BF\u03B3\u03C1\u03B1\u03BC\u03BC\u03AC\u03C4\u03C9\u03BD \u03BA\u03B1\u03B9 / \u03AE \u03C4\u03B7 \u03B4\u03B9\u03B1\u03B2\u03AF\u03B2\u03B1\u03C3\u03AE \u03C4\u03BF\u03C5\u03C2"@el . + "Ein Rundfunkveranstalter (oder auch Sendeunternehmen) betreibt H\u00F6rfunk- oder Fernsehprogramme. (http://de.wikipedia.org/wiki/Rundfunkveranstalter - 28/03/2011)"@de . + . + . + . + . + "music director"@en . + "dirigent"@nl . + "Dirigent"@de . + "chef d'orchestre"@fr . + "A person who is the director of an orchestra or concert band."@en . + . + . + . + . + "cycadee\u00EBn"@nl . + "\u03C6\u03BF\u03B9\u03BD\u03B9\u03BA\u03CC\u03B8\u03B1\u03BC\u03BD\u03BF\u03C2"@el . + "cycadophytes"@fr . + "\uC18C\uCCA0\uB958"@pt . + "cycad"@en . + "Palmfarn"@de . + . + . + . + . + "political party of leader"@en . + "politische Partei des Vorsitzenden"@de . + "The Political party of leader."@en . + . + . + . + . + . + . + "distance laps"@en . + . + . + . + . + . + "speaker"@en . + "number of office holder"@en . + . + . + . + . + "britishOpen"@en . + . + . + . + . + . + "other occupation"@en . + . + . + . + . + . + "ons"@en . + . + . + . + . + . + "city type"@en . + "type stad"@nl . + "\u03C4\u03CD\u03C0\u03BF\u03C2"@el . + . + . + . + . + . + "shuttle"@en . + . + . + . + . + . + . + "eye colour"@en . + "Augenfarbe"@de . + . + . + . + . + . + "ranking"@en . + "Rangliste"@de . + . + . + . + . + . + "sub-classis"@en . + "onderklasse"@nl . + "a subdivision within a Species classis"@en . + . + . + . + . + . + "long distance piste number"@en . + . + . + . + . + . + "year of electrification"@en . + "\u0433\u043E\u0434\u0438\u043D\u0430 \u0435\u043B\u0435\u043A\u0442\u0440\u0438\u0444\u0438\u043A\u0430\u0446\u0438\u0458\u0435"@sr . + "Jahr der Elektrifizierung"@de . + "Year station was electrified, if not previously at date of opening."@en . + "\u0413\u043E\u0434\u0438\u043D\u0430 \u043A\u0430\u0434\u0430 \u0458\u0435 \u0441\u0442\u0430\u043D\u0438\u0446\u0430 \u0435\u043B\u0435\u043A\u0442\u0440\u0438\u0444\u0438\u0446\u0438\u0440\u0430\u043D\u0430, \u0443\u043A\u043E\u043B\u0438\u043A\u043E \u043D\u0438\u0458\u0435 \u0431\u0438\u043B\u0430 \u043F\u0440\u0438 \u043E\u0442\u0432\u0430\u0440\u0430\u045A\u0443."@sr . + . + . + . + . + . + "last season"@en . + "\u03A0\u03C1\u03BF\u03B7\u03B3\u03BF\u03CD\u03BC\u03B5\u03BD\u03B7 \u03A0\u03B5\u03C1\u03AF\u03BF\u03B4\u03BF\u03C2"@el . + . + . + . + . + . + "minimum temperature (K)"@en . + "geringste Temperatur (K)"@de . + "\u03B5\u03BB\u03AC\u03C7\u03B9\u03C3\u03C4\u03B7 \u03B8\u03B5\u03C1\u03BC\u03BF\u03BA\u03C1\u03B1\u03C3\u03AF\u03B1 (K)"@el . + . + . + . + . + . + "wpt itm"@en . + "WPT ITM"@sr . + . + . + . + . + . + "illustrator"@en . + "Illustrator"@de . + "illustrator"@nl . + "illustrateur"@fr . + "Illustrator (where used throughout and a major feature)"@en . + . + . + . + . + . + . + . + . + "Parents Wedding Date"@en . + "\u0434\u0430\u0442\u0443\u043C \u0432\u0435\u043D\u0447\u0430\u045A\u0430 \u0440\u043E\u0434\u0438\u0442\u0435\u0459\u0430"@sr . + "Hochzeitstag der Eltern"@de . + "data do casamento dos pais"@pt . + . + . + . + . + . + "other media"@en . + "andere Medien"@de . + . + . + . + . + . + "number of district"@en . + . + . + . + . + . + "fastest driver"@en . + "schnellster Fahrer"@de . + "\u03C4\u03B1\u03C7\u03CD\u03C4\u03B5\u03C1\u03BF\u03C2 \u03BF\u03B4\u03B7\u03B3\u03CC\u03C2"@el . + . + . + . + . + . + . + "date act"@en . + "\u03B1\u03C0\u03CC\u03C6\u03B1\u03C3\u03B7_\u03B4\u03B9\u03AC\u03BD\u03BF\u03B9\u03BE\u03B7\u03C2"@el . + . + . + . + . + . + "MedlinePlus"@en . + "MedlinePlus"@nl . + . + . + . + . + . + "external ornament"@en . + . + . + . + . + . + "minority"@en . + "Minderheit"@de . + . + . + . + . + . + "reference"@en . + "Referenz"@de . + . + . + . + . + . + "massif"@en . + "Massiv"@de . + . + . + . + . + . + . + "British Comedy Awards"@en . + "British Comedy Awards"@de . + "\u0392\u03C1\u03B5\u03C4\u03B1\u03BD\u03B9\u03BA\u03AC \u0392\u03C1\u03B1\u03B2\u03B5\u03AF\u03B1 \u039A\u03C9\u03BC\u03C9\u03B4\u03AF\u03B1\u03C2"@el . + . + . + . + . + . + . + "hoogte"@nl . + "\u03C5\u03C8\u03CC\u03BC\u03B5\u03C4\u03C1\u03BF"@el . + "altitude"@fr . + "\u0430\u043F\u0441\u043E\u043B\u0443\u0442\u043D\u0430 \u0432\u0438\u0441\u0438\u043D\u0430"@sr . + "altitud"@es . + "altitude"@en . + "H\u00F6he"@de . + . + . + . + . + . + "first launch rocket"@en . + . + . + . + . + . + . + "source confluence country"@en . + . + . + . + . + . + . + "state of origin point"@en . + . + . + . + . + . + "MBA Id"@en . + "MusicBrainz is an open music encyclopedia that collects music metadata and makes it available to the public."@en . + . + . + . + . + . + "title language"@en . + . + . + . + . + . + "launch"@en . + . + . + . + . + . + "other serving lines"@en . + "andere verbindingen"@nl . + "andere Verbindungen"@de . + "Connecting services that serve the station such as bus, etc."@en . + . + . + . + . + . + "largest metro"@en . + . + . + . + . + . + . + "first owner"@en . + "erster Besitzer"@de . + "premier propri\u00E9taire"@fr . + "primer due\u00F1o"@es . + . + . + . + . + . + "species"@en . + "Spezies"@de . + "soort"@nl . + "\u7A2E_(\u5206\u985E\u5B66)"@ja . + . + . + . + . + . + "management region"@en . + . + . + . + . + . + . + "local phone prefix"@en . + "lokale Vorwahl"@de . + . + . + . + . + . + "bicycle information"@en . + "Fahrradinformationen"@de . + "Information on station's bicycle facilities."@en . + . + . + . + . + . + "grid reference"@en . + "co\u00F6rdinaten"@nl . + . + . + . + . + . + "wins at Senior Euro"@en . + . + . + . + . + . + "Dutch COROP code"@en . + . + . + . + . + . + "historical region"@en . + "historische Region"@de . + . + . + . + . + . + "number of staff"@en . + "Personalbestand"@de . + "\u03B1\u03C1\u03B9\u03B8\u03BC\u03CC\u03C2 \u03C0\u03C1\u03BF\u03C3\u03C9\u03C0\u03B9\u03BA\u03BF\u03CD"@el . + "aantal medewerkers"@nl . + . + . + . + . + . + "gym apparatus"@en . + "Fitnessger\u00E4t"@de . + . + . + . + . + "national tournament bronze"@en . + . + . + . + . + . + "original name"@en . + "urspr\u00FCnglicher Namen"@de . + "oorspronkelijke naam"@nl . + "The original name of the entity, e.g. film, settlement, etc."@en . + . + . + . + . + "senator"@en . + "Senator"@de . + "senador"@pt . + . + . + . + . + . + . + "former call sign"@en . + . + . + . + . + . + "ept final table"@en . + . + . + . + . + . + "mission"@en . + "Mission"@de . + "\u03B1\u03C0\u03BF\u03C3\u03C4\u03BF\u03BB\u03AE"@el . + . + . + . + . + . + . + "The URL at which this file can be downloaded"@en . + . + . + . + . + . + "cca state"@en . + . + . + . + . + . + "surface gravity (g)"@en . + . + . + . + . + . + "attorney general"@en . + "Generalstaatsanwalt"@de . + "procureur-generaal"@nl . + "Public attorney"@en . + "de procureur-generaal"@nl . + . + . + . + . + . + . + "gnis code"@en . + . + . + . + . + . + "maiden flight rocket"@en . + . + . + . + . + . + . + "geographic coordinates"@en . + "geographische Koordinaten"@de . + "\u03B3\u03B5\u03C9\u03B3\u03C1\u03B1\u03C6\u03B9\u03BA\u03AD\u03C2 \u03C3\u03C5\u03BD\u03C4\u03B5\u03C4\u03B1\u03B3\u03BC\u03AD\u03BD\u03B5\u03C2"@el . + "\u03AD\u03BD\u03B1 \u03C3\u03CD\u03C3\u03C4\u03B7\u03BC\u03B1 \u03C3\u03C5\u03BD\u03C4\u03B5\u03C4\u03B1\u03B3\u03BC\u03AD\u03BD\u03C9\u03BD \u03BC\u03B5 \u03B4\u03CD\u03BF \u03BC\u03B5\u03B3\u03AD\u03B8\u03B7."@el . + . + . + . + . + . + . + "race track"@en . + "Rennstrecke"@de . + "circuit"@fr . + . + . + . + . + . + . + "load limit (g)"@en . + "Belastungsgrenze (g)"@de . + "Load limit of the bridge."@en . + . + . + . + . + . + "school code"@en . + . + . + . + . + . + "number of bombs"@en . + "Anzahl der Bomben"@de . + "\u03B1\u03C1\u03B9\u03B8\u03BC\u03CC\u03C2 \u03C4\u03C9\u03BD \u03B2\u03BF\u03BC\u03B2\u03CE\u03BD"@el . + . + . + . + . + . + "Theology"@en . + "Theologie"@de . + "\u0398\u03B5\u03BF\u03BB\u03BF\u03B3\u03AF\u03B1"@el . + . + . + . + . + . + "jurisdiction"@en . + "Zust\u00E4ndigkeit"@de . + "Jurisdiction is the practical authority granted to a formally constituted legal body or to a political leader to deal with and make pronouncements on legal matters and, by implication, to administer justice within a defined area of responsibility."@en . + "Die Zust\u00E4ndigkeit oder Kompetenz legt im \u00F6ffentlichen Recht fest, welche Beh\u00F6rde bzw. welches Gericht im Einzelfall rechtlich zu hoheitlichem Handeln erm\u00E4chtigt und verpflichtet ist."@de . + . + . + . + . + "number of locations"@en . + "Anzahl der Standorte"@de . + "nombre de sites"@fr . + . + . + . + . + . + "gross domestic product nominal per capita"@en . + . + . + . + . + . + "service end date"@en . + . + . + . + . + . + "population percentage male"@en . + . + . + . + . + . + "digital sub channel"@en . + . + . + . + . + . + "percentage"@en . + "Prozent"@de . + "percentage"@nl . + . + . + . + "first air date"@en . + "Sendebeginn"@de . + "The date on which regular broadcasts began."@en . + . + . + . + . + . + "non professional career"@en . + . + . + . + . + . + "maximum boat length (\u03BC)"@en . + "\u03BC\u03AD\u03B3\u03B9\u03C3\u03C4\u03BF_\u03BC\u03AE\u03BA\u03BF\u03C2_\u03C0\u03BB\u03BF\u03AF\u03BF\u03C5 (\u03BC)"@el . + . + . + . + . + . + "guest"@en . + "Gast"@de . + "\u03B5\u03C0\u03B9\u03C3\u03BA\u03AD\u03C0\u03C4\u03B7\u03C2"@el . + . + . + . + . + . + . + "number"@en . + "Anzahl"@de . + "nummer"@nl . + "\u03B1\u03C1\u03B9\u03B8\u03BC\u03CC\u03C2"@el . + . + . + . + . + "mass (g)"@en . + "Masse (g)"@de . + "\u03BC\u03AC\u03B6\u03B1 (g)"@el . + . + . + . + . + "broadcast repeater"@en . + "\u03B5\u03C0\u03B1\u03BD\u03B1\u03BB\u03B7\u03C0\u03C4\u03B9\u03BA\u03AE \u03B1\u03BD\u03B1\u03BC\u03B5\u03C4\u03AC\u03B4\u03BF\u03C3\u03B7"@el . + . + . + . + . + . + "participant"@en . + "deelnemer"@nl . + "Teilnehmer"@de . + . + . + . + . + . + "Fackeltr\u00E4ger"@de . + "torch bearer"@en . + . + . + . + . + . + . + "copilote"@en . + "Copilot"@de . + . + . + . + . + . + "formaat"@nl . + "format"@el . + "format"@fr . + "format"@en . + "Format"@de . + . + . + . + . + "mother"@en . + "Mutter"@de . + . + . + . + . + . + . + . + "second commander"@en . + "zweiter Kommandant"@de . + . + . + . + . + . + . + "number of districts"@en . + "Anzahl der Bezirke"@de . + "jumlah kecamatan"@id . + . + . + . + . + . + "amateur title"@en . + "Amateurtitel"@de . + "\u0430\u043C\u0430\u0442\u0435\u0440\u0441\u043A\u0430 \u0442\u0438\u0442\u0443\u043B\u0430"@sr . + . + . + . + . + . + "localization of the island"@en . + . + . + . + . + . + "spokesperson"@en . + "Sprecher"@de . + "porta-voz"@pt . + . + . + . + . + . + . + "royal anthem"@en . + . + . + . + . + "subject of play"@en . + "The overall subject matter dealt with by the play."@en . + . + . + . + . + . + "observatory"@en . + "Observatorium"@de . + "\u03B1\u03C3\u03C4\u03B5\u03C1\u03BF\u03C3\u03BA\u03BF\u03C0\u03B5\u03AF\u03BF"@el . + "\u03B5\u03C0\u03B9\u03C3\u03C4\u03B7\u03BC\u03BF\u03BD\u03B9\u03BA\u03AC \u03B9\u03B4\u03C1\u03CD\u03BC\u03B1\u03C4\u03B1 \u03C0\u03BF\u03C5 \u03C0\u03B1\u03C1\u03B1\u03C4\u03B7\u03C1\u03BF\u03CD\u03BD \u03BA\u03B1\u03B9 \u03BC\u03B5\u03BB\u03B5\u03C4\u03AC\u03BD\u03B5 \u03BF\u03C5\u03C1\u03AC\u03BD\u03B9\u03B1 \u03C3\u03CE\u03BC\u03B1\u03C4\u03B1 \u03BA\u03B1\u03B9 \u03C6\u03B1\u03B9\u03BD\u03CC\u03BC\u03B5\u03BD\u03B1."@el . + . + . + . + . + . + "historical name"@en . + "historischer Name"@de . + . + . + . + . + . + "target airport"@en . + . + . + . + . + . + . + "duration (s)"@en . + "Dauer (s)"@de . + "duur (s)"@nl . + "The duration of the item (movie, audio recording, event, etc.) in ISO 8601 date format"@en . + . + . + . + . + . + . + "sport country"@en . + "Sportnation"@de . + "The country, for which the athlete is participating in championships"@en . + "Das Land, f\u00FCr das der Sportler an Wettk\u00E4mpfen teilnimmt"@de . + . + . + . + . + . + . + "Temporary Placement in the Music Charts"@en . + "vorl\u00E4ufige Chartplatzierung"@de . + . + . + . + . + . + "aircraft patrol"@en . + "\u03C0\u03B5\u03C1\u03B9\u03C0\u03BF\u03BB\u03AF\u03B1 \u03B1\u03B5\u03C1\u03BF\u03C3\u03BA\u03AC\u03C6\u03BF\u03C5\u03C2"@el . + . + . + . + . + . + . + "music fusion genre"@en . + . + . + . + . + . + . + "network"@en . + "Sendergruppe"@de . + "\u03B4\u03AF\u03BA\u03C4\u03C5\u03BF"@el . + . + . + . + . + . + . + "ICD9"@en . + "ICD9"@de . + "ICD9"@nl . + . + . + . + . + . + . + "shoot"@en . + . + . + . + . + . + "geneReviewsName"@en . + . + . + . + . + . + "bronzen medaille drager"@nl . + "\u03C7\u03AC\u03BB\u03BA\u03B9\u03BD\u03BF \u03BC\u03B5\u03C4\u03AC\u03BB\u03BB\u03B9\u03BF"@el . + "medalha de bronze"@pt . + "bronze medalist"@en . + "Bronzemedaillengewinner"@de . + . + . + . + . + . + . + . + "derived word"@en . + "abgeleitetes Wort"@de . + . + . + . + . + . + "link title"@en . + "Surface form and count used to refer to the subject from other pages"@en . + . + . + . + . + "\u0434\u0438\u043C\u0435\u043D\u0437\u0438\u0458\u0435 \u0441\u0442\u0440\u0443\u043A\u0430 (\u03BC)"@sr . + "waist size (\u03BC)"@en . + "\u30A6\u30A8\u30B9\u30C8 (\u03BC)"@ja . + "\u0440\u0430\u0437\u043C\u0435\u0440 \u0442\u0430\u043B\u0438\u044F (\u03BC)"@bg . + "Taillenumfang (\u03BC)"@de . + . + . + . + . + . + "code book"@en . + "Gesetzbuch"@de . + "wetboek"@nl . + "code book or statute book referred to in this legal case"@en . + . + . + . + . + . + "followed by"@en . + "gefolgt von"@de . + "suivi par"@fr . + "siguido de"@es . + . + . + . + . + "onderschrift"@nl . + "\u03C5\u03C0\u03CC\u03C4\u03B9\u03C4\u03BB\u03BF\u03C2"@el . + "legenda"@pt . + "subtitle"@en . + "Untertitel"@de . + . + . + . + . + "Dorlands suffix"@en . + . + . + . + . + . + "school"@nl . + "\u03C3\u03C7\u03BF\u03BB\u03B5\u03AF\u03BF"@el . + "\u00E9cole"@fr . + "scuola"@it . + "school"@en . + "schule"@de . + "school a person goes or went to"@en . + "\u03C3\u03C7\u03BF\u03BB\u03B5\u03AF\u03BF \u03C3\u03C4\u03BF \u03BF\u03C0\u03BF\u03AF\u03BF \u03C0\u03B7\u03B3\u03B1\u03AF\u03BD\u03B5\u03B9 \u03AE \u03C0\u03AE\u03B3\u03B5 \u03BA\u03AC\u03C0\u03BF\u03B9\u03BF\u03C2"@el . + . + . + . + . + . + . + "child organisation"@en . + "dochterorganisatie"@nl . + . + . + . + . + . + . + . + "gewicht (g)"@nl . + "\u03B2\u03AC\u03C1\u03BF\u03C2 (g)"@el . + "poids (g)"@fr . + "peso (g)"@pt . + "\u0442\u0435\u0436\u0438\u043D\u0430 (g)"@sr . + "weight (g)"@en . + "\u4F53\u91CD (g)"@ja . + "Gewicht (g)"@de . + . + . + . + . + "membership"@en . + "Mitgliedschaft"@de . + "lidmaatschap"@nl . + . + . + . + . + . + "last launch date"@en . + "letzter Starttermin"@de . + . + . + . + . + . + "australia open mixed"@en . + . + . + . + . + . + "flag Link"@en . + . + . + . + . + "monarch"@en . + "Monarch"@de . + "monarch"@nl . + . + . + . + . + . + "FAA Location Identifier"@en . + . + . + . + . + . + "area quote"@en . + . + . + . + . + . + "ouder"@nl . + "parent"@fr . + "parent"@en . + "\u89AA"@ja . + "Elternteil"@de . + . + . + . + . + . + . + "actieve jaren eind jaar"@nl . + "\u03B5\u03BD\u03B5\u03C1\u03B3\u03AC \u03C7\u03C1\u03CC\u03BD\u03B9\u03B1 \u03C4\u03AD\u03BB\u03BF\u03C2 \u03C4\u03BF\u03C5 \u03C7\u03C1\u03CC\u03BD\u03BF\u03C5"@el . + "\u043F\u043E\u0441\u043B\u0435\u0434\u045A\u0430 \u0433\u043E\u0434\u0438\u043D\u0430 \u0430\u043A\u0442\u0438\u0432\u043D\u0438\u0445 \u0433\u043E\u0434\u0438\u043D\u0430"@sr . + "active years end year"@en . + "\u5F15\u9000\u5E74"@ja . + . + . + . + . + "bioclimate"@en . + "Bioklima"@de . + . + . + . + . + . + "is handicapped accessible"@en . + "ist rollstuhlgerecht"@de . + "True if the station is handicapped accessible."@en . + . + . + . + . + . + "Alps subgroup"@en . + "\u03C5\u03C0\u03BF\u03BF\u03BC\u03AC\u03B4\u03B1 \u03C4\u03C9\u03BD \u03AC\u03BB\u03C0\u03B5\u03C9\u03BD"@el . + "sottogruppo alpino"@it . + "\u0410\u043B\u043F\u0441\u043A\u0430 \u043F\u043E\u0434\u0433\u0440\u0443\u043F\u0430"@sr . + "the Alps subgroup to which the mountain belongs, according to the SOIUSA classification"@en . + . + . + . + . + . + . + "construction"@en . + "\u03BA\u03B1\u03C4\u03B1\u03C3\u03BA\u03B5\u03C5\u03AE"@el . + "Konstruktion"@de . + . + . + . + . + . + "notable work"@en . + "oeuvre majeure"@fr . + "\u4EE3\u8868\u4F5C"@ja . + "bekende werken"@nl . + "Notable work of a person (eg Artist, Engineer, etc)"@en . + . + . + . + . + . + . + "supplemental draft year"@en . + . + . + . + . + . + "spur of"@en . + . + . + . + . + . + . + "volcanic activity"@en . + "vulkanische Aktivit\u00E4t"@de . + "\u0432\u0443\u043B\u043A\u0430\u043D\u0441\u043A\u0430 \u0430\u043A\u0442\u0438\u0432\u043D\u043E\u0441\u0442"@sr . + . + . + . + . + . + "administratieve gemeenschap"@nl . + "\u03B4\u03B9\u03BF\u03B9\u03BA\u03B7\u03C4\u03B9\u03BA\u03AE \u03C3\u03C5\u03BB\u03BB\u03BF\u03B3\u03B9\u03BA\u03CC\u03C4\u03B7\u03C4\u03B1"@el . + "\u0430\u0434\u043C\u0438\u043D\u0438\u0441\u0442\u0440\u0430\u0442\u0438\u0432\u043D\u0430 \u0437\u0430\u0458\u0435\u0434\u043D\u0438\u0446\u0430"@sr . + "administrative collectivity"@en . + "Verwaltungsgemeinschaft"@de . + . + . + . + . + . + . + "chief editor"@en . + "Chefredakteur"@de . + "hoofdredacteur"@nl . + . + . + . + . + . + . + "collectivity minority"@en . + . + . + . + . + "education place"@en . + "Bildungsst\u00E4tte"@de . + . + . + . + . + . + "vein"@en . + "Vene"@de . + "\u0432\u0435\u043D\u0430"@sr . + . + . + . + . + . + . + "SUDOC id"@en . + "Syst\u00E8me universitaire de documentation id (French collaborative library catalog).\nhttp://www.idref.fr/$1"@en . + . + . + . + . + "relative"@en . + "\u03C3\u03C5\u03B3\u03B3\u03B5\u03BD\u03AE\u03C2"@el . + "Verwandter"@de . + "\u89AA\u621A"@ja . + . + . + . + . + . + . + . + "failed launches"@en . + . + . + . + . + "power type"@en . + . + . + . + . + . + "release date"@en . + "release datum"@nl . + "\u03B7\u03BC\u03B5\u03C1\u03BF\u03BC\u03B7\u03BD\u03AF\u03B1 \u03BA\u03C5\u03BA\u03BB\u03BF\u03C6\u03BF\u03C1\u03AF\u03B1\u03C2"@el . + "data wydania"@pl . + . + . + . + . + . + . + "military unit size"@en . + "the size of the military unit"@en . + . + . + . + . + "autor"@pl . + "auteur"@nl . + "\u03C3\u03C5\u03B3\u03B3\u03C1\u03B1\u03C6\u03AD\u03B1\u03C2"@el . + "auteur"@fr . + "\u0430\u0432\u0442\u043E\u0440"@ru . + "author"@en . + "\u00FAdar"@ga . + "autor"@ca . + "autor"@de . + . + . + . + . + . + . + . + . + "mood"@en . + "Stimmung"@de . + . + . + . + . + . + "ncaa season"@en . + . + . + . + . + . + "fate"@en . + "Schicksal"@de . + . + . + . + . + . + "organisation"@en . + "Organisation"@de . + . + . + . + . + . + "IOBDB ID"@en . + "Lortel Archives Internet Off-Broadway database \"show id\" from lortel.org."@en . + . + . + . + . + . + "memorial ID number"@en . + "code gedenkteken"@nl . + "Identifier for monuments of the Memorial type"@en . + "Code oorlogsmonument of ander gedenkteken"@nl . + . + . + . + . + . + . + "museumType"@en . + "soort museum"@nl . + "This property has been added because 'buildingType' is much more about the place, whereas 'museumType' is about the way the place is being (or:was) used"@en . + "Nieuw type is nodig omdat Museum eigenlijk geen subklasse van Building is, maar meer te maken heeft met de functie van het gebouw. 'Museumtype' is dan ook meer thema- en collectiegerelateerd"@nl . + . + . + . + . + . + "US sales"@en . + "US-Verk\u00E4ufe"@de . + "\u043F\u0440\u043E\u0434\u0430\u0458\u0430 \u0443 \u0421\u0410\u0414"@sr . + . + . + . + . + . + "subdivisions"@en . + . + . + . + . + . + "has junction with"@en . + "\u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7"@el . + . + . + . + . + . + . + "order in office"@en . + . + . + . + . + "word before the country"@en . + "\u0440\u0435\u0447 \u043F\u0440\u0435 \u0434\u0440\u0436\u0430\u0432\u0435"@sr . + . + . + . + . + . + "subtribus"@en . + "onderstam"@nl . + . + . + . + . + . + . + "junior team"@en . + . + . + . + . + . + "opponents"@en . + "Gegner"@de . + "\"opponent in a military conflict, an organisation, country, or group of countries. \""@en . + . + . + . + . + . + "series"@en . + "Serie"@de . + "reeks"@nl . + "\u03C3\u03B5\u03B9\u03C1\u03AC"@el . + . + . + . + . + "newspaper"@en . + "Zeitung"@de . + . + . + . + . + . + "list item"@en . + "lijst items"@nl . + "\u03B1\u03BD\u03C4\u03B9\u03BA\u03B5\u03AF\u03BC\u03B5\u03BD\u03BF \u03BB\u03AF\u03C3\u03C4\u03B1\u03C2"@el . + . + . + . + . + "spacewalk end"@en . + "Ende Weltraumspaziergang"@de . + . + . + . + . + . + "mentor"@en . + "Mentor"@de . + "mentor"@fr . + "A wise and trusted counselor or teacher"@en . + "Celui qui sert de guide, de conseiller \u00E0 quelqu\u2019un."@fr . + . + . + . + . + . + . + "approximate calories (J)"@en . + "ungef\u00E4hre Kalorien (J)"@de . + "\u03BA\u03B1\u03C4\u03AC \u03C0\u03C1\u03BF\u03C3\u03AD\u03B3\u03B3\u03B9\u03C3\u03B7 \u03B8\u03B5\u03C1\u03BC\u03AF\u03B4\u03B5\u03C2 (J)"@el . + "\u043F\u0440\u0438\u0431\u043B\u0438\u0436\u043D\u043E \u043A\u0430\u043B\u043E\u0440\u0438\u0458\u0430 (J)"@sr . + "Approximate calories per serving."@en . + "K\u03B1\u03C4\u03AC \u03C0\u03C1\u03BF\u03C3\u03AD\u03B3\u03B3\u03B9\u03C3\u03B7 \u03B8\u03B5\u03C1\u03BC\u03AF\u03B4\u03B5\u03C2 \u03B1\u03BD\u03AC \u03BC\u03B5\u03C1\u03AF\u03B4\u03B1."@el . + . + . + . + . + . + "number built"@en . + "Anzahl gebaut"@de . + . + . + . + . + . + "opening date"@en . + "\u03B7\u03BC\u03B5\u03C1\u03BF\u03BC\u03B7\u03BD\u03AF\u03B1 \u03B1\u03BD\u03BF\u03AF\u03B3\u03BC\u03B1\u03C4\u03BF\u03C2"@el . + "date d'ouverture"@fr . + "Er\u00F6ffnungsdatum"@de . + . + . + . + . + "draft position"@en . + . + . + . + . + . + "date use"@en . + "\u03AD\u03BD\u03B1\u03C1\u03BE\u03B7_\u03C7\u03C1\u03AE\u03C3\u03B7\u03C2"@el . + . + . + . + . + . + "miasto"@pl . + "stad"@nl . + "\u03C0\u03CC\u03BB\u03B7"@el . + "ville"@fr . + "city"@en . + "cathair"@ga . + "Stadt"@de . + . + . + . + . + . + . + "rural municipality"@en . + "Landgemeinde"@de . + . + . + . + . + . + . + "review"@en . + "Rezension"@de . + . + . + . + . + . + "circulation"@en . + "oplage"@nl . + "\u03BA\u03C5\u03BA\u03BB\u03BF\u03C6\u03BF\u03C1\u03AF\u03B1"@el . + . + . + . + . + . + "total population reference"@en . + "referencia do total da populacao"@pt . + . + . + . + . + "venerated in"@en . + "\u043F\u043E\u0448\u0442\u043E\u0432\u0430\u043D \u0443"@sr . + "vereerd in"@nl . + . + . + . + . + . + . + "production"@en . + "Produktion"@de . + . + . + . + . + . + "Human Development Index (HDI)"@en . + "Index f\u00FCr menschliche Entwicklung (HDI)"@de . + "\u00CDndice de Desenvolvimento Humano (IDH)"@pt . + "a composite statistic used to rank countries by level of \"human development\""@en . + . + . + . + . + . + . + "Beschleunigung (s)"@de . + "acceleration (s)"@en . + "\u03B5\u03C0\u03B9\u03C4\u03AC\u03C7\u03C5\u03BD\u03C3\u03B7 (s)"@el . + "\u0443\u0431\u0440\u0437\u0430\u045A\u0435 (s)"@sr . + . + . + . + . + . + . + "inwonersaantal"@nl . + "\u03C3\u03C5\u03BD\u03BF\u03BB\u03B9\u03BA\u03CC\u03C2_\u03C0\u03BB\u03B7\u03B8\u03C5\u03C3\u03BC\u03CC\u03C2"@el . + "population totale"@fr . + "popula\u00E7\u00E3o total"@pt . + "population total"@en . + "Einwohnerzahl"@de . + . + . + . + . + "number of platform levels"@en . + "Number of levels of platforms at the station."@en . + . + . + . + . + . + "media type"@en . + "Medientyp"@de . + "mediatype"@nl . + "Print / On-line (then binding types etc. if relevant)"@en . + . + . + . + . + . + . + "generation units"@en . + . + . + . + . + . + "Gemini Award"@en . + . + . + . + . + . + . + "engine power"@en . + "motorvermogen"@nl . + "Power to be expressed in Watts (kiloWatt, megaWatt)"@en . + . + . + . + . + . + "former broadcast network"@en . + "ehemalige Sendergruppe"@de . + "ancienne cha\u00EEne de t\u00E9l\u00E9vision g\u00E9n\u00E9raliste"@fr . + "A former parent broadcast network to which the broadcaster once belonged."@en . + "Eine ehemalige Sendergruppe zu dem der Rundfunkveranstalter geh\u00F6rt hat."@de . + . + . + . + . + . + . + "Gray subject"@en . + "Refers to the famous 1918 edition of Gray's Anatomy."@en . + . + . + . + . + . + "plant"@en . + "Pflanze"@de . + "\u03C6\u03C5\u03C4\u03CC"@el . + "\u690D\u7269"@ja . + . + . + . + . + . + . + "sister station"@en . + . + . + . + . + . + . + "seizoen"@nl . + "\u03C7\u03C1\u03CC\u03BD\u03B9\u03B1"@el . + "\u0441\u0435\u0437\u043E\u043D\u0430"@sr . + "years"@en . + "Jahre"@de . + . + . + . + . + . + "number of stations"@en . + "Anzahl der Stationen"@de . + "Number of stations or stops."@en . + . + . + . + . + . + "MeSH ID"@en . + "MeSH ID"@nl . + . + . + . + . + . + . + "Link from a Wikipage to a Wikipage in a different language about the same or a related subject."@en . + "Reserved for DBpedia."@en . + . + . + . + "mandate of a prefect of a romanian settlement"@en . + . + . + . + . + . + "boxing style"@en . + "Boxstil"@de . + . + . + . + . + . + "oppervlakte (m2)"@nl . + "\u03AD\u03BA\u03C4\u03B1\u03C3\u03B7 (m2)"@el . + "superficie (m2)"@fr . + "\u00E1rea (m2)"@pt . + "\u043E\u0431\u043B\u0430\u0441\u0442 (m2)"@sr . + "area (m2)"@en . + "Fl\u00E4che (m2)"@de . + "The area of a owl:Thing in square metre."@en . + . + . + . + . + "type of tennis surface"@en . + "type de surface (tennis)"@fr . + "tipo de surperficie(tennis"@es . + "type speelgrond"@nl . + "There are five types of court surface used in professional play. Each surface is different in the speed and height of the bounce of the ball."@en . + . + . + . + . + "wsop wristband"@en . + "WSOP \u043D\u0430\u0440\u0443\u043A\u0432\u0438\u0446\u0430"@sr . + "\u041D\u0430\u0440\u0443\u043A\u0432\u0438\u0446\u0430 \u043A\u043E\u0458\u0443 \u043E\u0441\u0432\u0430\u0458\u0430 \u0448\u0430\u043C\u043F\u0438\u043E\u043D WSOP-a."@sr . + . + . + . + . + . + "international phone prefix"@en . + "internationale Vorwahl"@de . + . + . + . + . + . + "name"@en . + "Name"@de . + . + . + . + . + "human development index rank"@en . + . + . + . + . + . + "share of audience"@en . + "Anteil der Zuschauer/Zuh\u00F6rer"@de . + . + . + . + . + . + "wine region"@en . + "Weinregion"@de . + "\u0440\u0435\u0433\u0438\u043E\u043D \u0432\u0438\u043D\u0430"@sr . + . + . + . + . + . + . + "broadcast station class"@en . + "\u03B1\u03BD\u03B1\u03BC\u03B5\u03C4\u03AC\u03B4\u03BF\u03C3\u03B7 \u03C1\u03B1\u03B4\u03B9\u03BF\u03C6\u03C9\u03BD\u03B9\u03BA\u03BF\u03CD \u03C3\u03C4\u03B1\u03B8\u03BC\u03BF\u03CD"@el . + . + . + . + . + . + "honours"@en . + "Ehrungen"@de . + "\u03B4\u03B9\u03B1\u03BA\u03C1\u03AF\u03C3\u03B5\u03B9\u03C2"@el . + "eerbewijzen"@nl . + . + . + . + . + . + "za\u0142o\u017Cony przez"@pl . + "gesticht door"@nl . + "fond\u00E9 par"@fr . + "founded by"@en . + "a bhunaigh"@ga . + "gegr\u00FCndet von"@de . + "Identifies the founder of the described entity. This can be a person or a organisation for instance."@en . + . + . + . + . + . + . + "kindOfLanguage"@en . + . + . + . + . + "Contains a WikiText representation of this thing"@en . + . + . + . + . + "previous name"@en . + "fr\u00FCheren Namen"@de . + "vorige naam"@nl . + . + . + . + . + . + "first mention"@en . + "erste Erw\u00E4hnung"@de . + . + . + . + . + . + "\u03AD\u03C4\u03BF\u03C2 \u03B1\u03C0\u03BF\u03B3\u03C1\u03B1\u03C6\u03AE\u03C2"@el . + "ann\u00E9e de recensement"@fr . + "a\u00F1o de censo"@es . + "census year"@en . + "Zensusjahr"@de . + . + . + . + . + . + "nfl season"@en . + . + . + . + . + . + "fibahof"@en . + . + . + . + . + . + "identification symbol"@en . + . + . + . + . + . + "opening year"@en . + "openingsjaar"@nl . + "Er\u00F6ffnungsjahr"@de . + . + . + . + . + "cemetery"@en . + "kerkhof"@nl . + "cimeti\u00E8re"@fr . + "Friedhof"@de . + . + . + . + . + . + "main island"@en . + "Hauptinsel"@de . + . + . + . + . + . + "cash price"@en . + . + . + . + . + . + "millsCodeNLWindmotoren"@en . + "millsCodeNLWindmotoren"@nl . + . + . + . + . + . + "depiction description (caption)"@en . + "This property can be used to map image captions from Infoboxes"@en . + . + . + . + . + "number of seats in the land parlement"@en . + . + . + . + . + . + "collaboration"@en . + "\u03C3\u03C5\u03BD\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1"@el . + "Zusammenarbeit"@de . + . + . + . + . + . + "iso code of a community"@en . + . + . + . + . + . + . + "election date leader"@en . + "Wahldatum des Vorsitzenden"@de . + "The date that leader was elected."@en . + . + . + . + . + . + "population metro"@en . + . + . + . + . + . + "causalties"@en . + . + . + . + . + . + "designer"@en . + "\u03C3\u03C7\u03B5\u03B4\u03B9\u03B1\u03C3\u03C4\u03AE\u03C2"@el . + . + . + . + . + . + . + "taste or flavour"@en . + "Geschmack oder Aroma"@de . + "smaak"@nl . + . + . + . + . + . + "minority floor leader"@en . + "number of office holder"@en . + . + . + . + . + "start xct"@en . + . + . + . + . + . + "conservation status"@en . + "\u4FDD\u5168\u72B6\u6CC1"@ja . + . + . + . + . + . + "blood group"@en . + "\u03BF\u03BC\u03AC\u03B4\u03B1 \u03B1\u03AF\u03BC\u03B1\u03C4\u03BF\u03C2"@el . + "Blutgruppe"@de . + . + . + . + . + . + "current record"@en . + . + . + . + . + . + "project keyword"@en . + "A key word of the project."@en . + . + . + . + . + . + "lowest place"@en . + . + . + . + . + . + "analog channel"@en . + "Analogkanal"@de . + "\u03B1\u03BD\u03B1\u03BB\u03BF\u03B3\u03B9\u03BA\u03CC \u03BA\u03B1\u03BD\u03AC\u03BB\u03B9"@el . + "\u0430\u043D\u0430\u043B\u043E\u0433\u043D\u0438 \u043A\u0430\u043D\u0430\u043B"@sr . + . + . + . + . + . + "gold medal double"@en . + . + . + . + . + . + "regeringspartij"@nl . + "\u03BA\u03CC\u03BC\u03BC\u03B1_\u03B1\u03C1\u03C7\u03B7\u03B3\u03BF\u03CD"@el . + "partido do lider"@pt . + "leader party"@en . + "Regierungspartei"@de . + . + . + . + . + . + "number of houses present)"@en . + "Anzahl der vorhandenen H\u00E4user"@de . + "aantal huizen aanwezig"@nl . + "Count of the houses in the Protected Area"@en . + "Aantal huizen in afgegrensd gebied"@nl . + . + . + . + . + . + "WoRMS"@en . + "WoRMS"@nl . + "World Register of Marine Species"@en . + . + . + . + . + "\u03C6\u03B1\u03B9\u03BD\u03CC\u03BC\u03B5\u03BD\u03BF \u03BC\u03AD\u03B3\u03B5\u03B8\u03BF\u03C2"@el . + "\u043F\u0440\u0438\u0432\u0438\u0434\u043D\u0430 \u0437\u0432\u0435\u0437\u0434\u0430\u043D\u0430 \u0432\u0435\u043B\u0438\u0447\u0438\u043D\u0430"@sr . + "\u0432\u0438\u0434\u0438\u043C\u0430\u044F \u0437\u0432\u0451\u0437\u0434\u043D\u0430\u044F \u0432\u0435\u043B\u0438\u0447\u0438\u043D\u0430"@ru . + "apparent magnitude"@en . + "scheinbare Helligkeit"@de . + . + . + . + . + . + . + "single rankings"@en . + "Einzelrangliste"@de . + . + . + . + . + . + "trainer club"@en . + . + . + . + . + . + . + "literary genre"@en . + "literair genre"@nl . + "literarische Gattung"@de . + "A literary genre is a category of literary composition. Genres may be determined by literary technique, tone, content, or even (as in the case of fiction) length."@en . + . + . + . + . + . + . + "cloth size"@en . + . + . + . + . + . + "lymph"@en . + . + . + . + . + . + . + "complexion"@en . + "cor da pele"@pt . + . + . + . + . + . + "eMedicine topic"@en . + "eMedicine topic"@nl . + "Different from eMedicineSubject, which see"@en . + . + . + . + . + . + "information name"@en . + . + . + . + . + . + "mouth region"@en . + . + . + . + . + . + . + "world tournament bronze"@en . + "\u0431\u0440\u043E\u0458 \u0431\u0440\u043E\u043D\u0437\u0430\u043D\u0438\u0445 \u043C\u0435\u0434\u0430\u0459\u0430 \u0441\u0430 \u0441\u0432\u0435\u0442\u0441\u043A\u0438\u0445 \u0442\u0443\u0440\u043D\u0438\u0440\u0430"@sr . + . + . + . + . + . + "start career"@en . + . + . + . + . + . + "primogenitor, first forebear"@en . + "stamvader"@nl . + . + . + . + . + . + "size_v"@en . + "\u03BC\u03AD\u03B3\u03B5\u03B8\u03BF\u03C2"@el . + . + . + . + . + . + "free prog score"@en . + . + . + . + . + . + "population density (/sqkm)"@en . + "bevolkingsdichtheid (/sqkm)"@nl . + "Bev\u00F6lkerungsdichte (/sqkm)"@de . + "\u03C0\u03C5\u03BA\u03BD\u03CC\u03C4\u03B7\u03C4\u03B1_\u03C0\u03BB\u03B7\u03B8\u03C5\u03C3\u03BC\u03BF\u03CD (/sqkm)"@el . + . + . + . + . + . + "channel"@en . + "Kanal"@de . + "\u03BA\u03B1\u03BD\u03AC\u03BB\u03B9"@el . + "kanaal"@nl . + . + . + . + . + . + "OCLC"@en . + "Online Computer Library Center number"@en . + . + . + . + . + . + "first driver country"@en . + . + . + . + . + . + . + "infant mortality"@en . + "S\u00E4uglingssterblichkeit"@de . + "mortalidade infantil"@pt . + . + . + . + . + . + "parking information"@en . + "Parkplatzinformationen"@de . + "Information on station's parking facilities."@en . + . + . + . + . + . + "siler medalist"@en . + "Silbermedaillengewinner"@de . + "medalha de prata"@pt . + "zilveren medaille drager"@nl . + . + . + . + . + . + . + . + "free danse score"@en . + . + . + . + . + . + "Messier name"@en . + "Name for Messier objects"@en . + . + . + . + . + . + . + "lchf draft year"@en . + . + . + . + . + . + "block alloy"@en . + "\u03BA\u03C1\u03AC\u03BC\u03B1 \u03BC\u03B5\u03C4\u03AC\u03BB\u03BB\u03BF\u03C5"@el . + . + . + . + . + . + "general council"@en . + . + . + . + . + . + "home stadium"@en . + "Heimstadion"@de . + . + . + . + . + . + "world team cup"@en . + "\u0441\u0432\u0435\u0442\u0441\u043A\u043E \u043A\u043B\u0443\u043F\u0441\u043A\u043E \u043F\u0440\u0432\u0435\u043D\u0441\u0442\u0432\u043E"@sr . + . + . + . + . + . + "lower age"@en . + . + . + . + . + . + "caused by"@en . + "\u03C0\u03C1\u03BF\u03BA\u03B1\u03BB\u03B5\u03AF\u03C4\u03B1\u03B9 \u03B1\u03C0\u03CC"@el . + "casus"@fr . + . + . + . + . + . + "sixth form students"@en . + "Sch\u00FCler der Oberstufe"@de . + . + . + . + . + . + "source"@en . + "Quelle"@de . + "\u03C0\u03B7\u03B3\u03AE"@el . + . + . + . + . + "assets ($)"@en . + "Aktiva ($)"@de . + "\u03C0\u03B5\u03C1\u03B9\u03BF\u03C5\u03C3\u03B9\u03B1\u03BA\u03AC \u03C3\u03C4\u03BF\u03B9\u03C7\u03B5\u03AF\u03B1 ($)"@el . + "Assets and liabilities are part of a companis balance sheet. In financial accounting, assets are economic resources. Anything tangible or intangible that is capable of being owned or controlled to produce value and that is held to have positive economic value is considered an asset."@en . + "\u03A0\u03B5\u03C1\u03B9\u03BF\u03C5\u03C3\u03B9\u03B1\u03BA\u03AC \u03C3\u03C4\u03BF\u03B9\u03C7\u03B5\u03AF\u03B1 \u03BA\u03B1\u03B9 \u03C5\u03C0\u03BF\u03C7\u03C1\u03B5\u03CE\u03C3\u03B5\u03B9\u03C2 \u03B1\u03C0\u03BF\u03C4\u03B5\u03BB\u03BF\u03CD\u03BD \u03BC\u03AD\u03C1\u03BF\u03C2 \u03C4\u03BF\u03C5 \u03B9\u03C3\u03BF\u03BB\u03BF\u03B3\u03B9\u03C3\u03BC\u03BF\u03CD \u03BC\u03B9\u03B1\u03C2 \u03B5\u03C4\u03B1\u03B9\u03C1\u03B5\u03AF\u03B1\u03C2.\u03A3\u03B5 \u03C7\u03C1\u03B7\u03BC\u03B1\u03C4\u03BF\u03BF\u03B9\u03BA\u03BF\u03BD\u03BF\u03BC\u03B9\u03BA\u03AE \u03BB\u03BF\u03B3\u03B9\u03C3\u03C4\u03B9\u03BA\u03AE,\u03C4\u03B1 \u03C0\u03B5\u03C1\u03B9\u03BF\u03C5\u03C3\u03B9\u03B1\u03BA\u03AC \u03C3\u03C4\u03BF\u03B9\u03C7\u03B5\u03AF\u03B1 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03BF\u03B9 \u03BF\u03B9\u03BA\u03BF\u03BD\u03BF\u03BC\u03B9\u03BA\u03BF\u03AF \u03C0\u03CC\u03C1\u03BF\u03B9. \u039F\u03C4\u03B9\u03B4\u03AE\u03C0\u03BF\u03C4\u03B5 \u03B5\u03BD\u03C3\u03CE\u03BC\u03B1\u03C4\u03BF \u03AE \u03AC\u03C5\u03BB\u03BF, \u03C0\u03BF\u03C5 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B9\u03BA\u03B1\u03BD\u03CC \u03BD\u03B1 \u03B1\u03BD\u03AE\u03BA\u03B5\u03B9 \u03AE \u03BD\u03B1 \u03B5\u03BB\u03AD\u03B3\u03C7\u03B5\u03C4\u03B1\u03B9 \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03C0\u03B1\u03C1\u03AC\u03B3\u03B5\u03B9 \u03B1\u03BE\u03AF\u03B1 \u03BA\u03B1\u03B9 \u03C0\u03BF\u03C5 \u03BA\u03B1\u03C4\u03AD\u03C7\u03B5\u03C4\u03B1\u03B9 \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03AD\u03C7\u03B5\u03B9 \u03B8\u03B5\u03C4\u03B9\u03BA\u03AE \u03BF\u03B9\u03BA\u03BF\u03BD\u03BF\u03BC\u03B9\u03BA\u03AE \u03B1\u03BE\u03AF\u03B1 \u03B8\u03B5\u03C9\u03C1\u03B5\u03AF\u03C4\u03B1\u03B9 \u03AD\u03BD\u03B1 \u03C0\u03B5\u03C1\u03B9\u03BF\u03C5\u03C3\u03B9\u03B1\u03BA\u03CC \u03C3\u03C4\u03BF\u03B9\u03C7\u03B5\u03AF\u03BF."@el . + . + . + . + . + . + "type of electrification"@en . + "Art der Elektrifizierung"@de . + "Electrification system (e.g. Third rail, Overhead catenary)."@en . + . + . + . + . + . + "service number"@en . + "The service number held by the individual during military service."@en . + . + . + . + . + . + "statistic"@en . + "statistisch"@de . + . + . + . + . + "a municipality's present name"@en . + "heutiger Name einer Gemeinde"@de . + "huidige gemeentenaam"@nl . + . + . + . + . + . + "fourth commander"@en . + . + . + . + . + . + . + "project objective"@en . + "Projektziel"@de . + "A defined objective of the project."@en . + . + . + . + . + . + "code of the department"@en . + "departementcode"@nl . + . + . + . + . + . + "bouwstijl"@nl . + "\u03B1\u03C1\u03C7\u03B9\u03C4\u03B5\u03BA\u03C4\u03BF\u03BD\u03B9\u03BA\u03CC \u03C3\u03C4\u03C5\u03BB"@el . + "style architectural"@fr . + "\u0430\u0440\u0445\u0438\u0442\u0435\u043A\u0442\u043E\u043D\u0441\u043A\u0438 \u0441\u0442\u0438\u043B"@sr . + "\u0430\u0440\u0445\u0438\u0442\u0435\u043A\u0442\u0443\u0440\u043D\u044B\u0439 \u0441\u0442\u0438\u043B\u044C"@ru . + "architectural style"@en . + . + . + . + . + . + . + "number of seats"@en . + "Anzahl der Sitze"@de . + "aantal plaatsen"@nl . + . + . + . + . + . + "protestant percentage"@en . + . + . + . + . + . + "dissolution date"@en . + "ontbindingsdatum"@nl . + . + . + . + . + . + "original start point"@en . + "urspr\u00FCnglicher Ausgangspunkt"@de . + "\u03C0\u03C1\u03C9\u03C4\u03B1\u03C1\u03C7\u03B9\u03BA\u03AE_\u03B1\u03C1\u03C7\u03AE"@el . + . + . + . + . + . + . + "target space station station"@en . + . + . + . + . + . + . + "poles"@en . + "Pole"@de . + "p\u00F4le"@fr . + . + . + . + . + . + "Founder"@en . + "Gr\u00FCnder"@de . + "\u0399\u03B4\u03C1\u03C5\u03C4\u03AE\u03C2"@el . + . + . + . + . + . + "kolor w\u0142os\u00F3w"@pl . + "cor do cabelo"@pt . + "hair color"@en . + "dath na gruaige"@ga . + "Haarfarbe"@de . + . + . + . + . + . + . + "region link"@en . + . + . + . + . + . + "ending theme"@en . + . + . + . + . + . + . + "number of restaurants"@en . + "Anzahl der Restaurants"@de . + "\u03B1\u03C1\u03B9\u03B8\u03BC\u03CC\u03C2 \u03B5\u03C3\u03C4\u03B9\u03B1\u03C4\u03BF\u03C1\u03AF\u03C9\u03BD"@el . + . + . + . + . + . + "emblem"@en . + . + . + . + . + . + . + "tie"@en . + "Unentschieden"@de . + . + . + . + . + . + "available smart card"@en . + "benutzbare Chipkarte"@de . + "\u03B4\u03B9\u03B1\u03B8\u03AD\u03C3\u03B9\u03BC\u03B7 \u03AD\u03BE\u03C5\u03C0\u03BD\u03B7 \u03BA\u03AC\u03C1\u03C4\u03B1"@el . + "Smartcard for fare payment system for public transit systems that are or will be available at the station."@en . + "Chipkarte f\u00FCr automatische Bezahlsysteme im Personenverkehr die an diesem Bahnhof benutzt werden kann."@de . + "\u0388\u03BE\u03C5\u03C0\u03BD\u03B7 \u03BA\u03AC\u03C1\u03C4\u03B1 \u03B3\u03B9\u03B1 \u03C4\u03BF \u03C3\u03CD\u03C3\u03C4\u03B7\u03BC\u03B1 \u03C0\u03BB\u03B7\u03C1\u03C9\u03BC\u03AE\u03C2 \u03C4\u03C9\u03BD \u03BD\u03B1\u03CD\u03BB\u03C9\u03BD \u03B3\u03B9\u03B1 \u03C4\u03B1 \u03B4\u03B7\u03BC\u03CC\u03C3\u03B9\u03B1 \u03C3\u03C5\u03C3\u03C4\u03AE\u03BC\u03B1\u03C4\u03B1 \u03BC\u03B5\u03C4\u03B1\u03C6\u03BF\u03C1\u03CE\u03BD \u03C0\u03BF\u03C5 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03AE \u03B8\u03B1 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B4\u03B9\u03B1\u03B8\u03AD\u03C3\u03B9\u03BC\u03B1 \u03C3\u03C4\u03BF \u03C3\u03C4\u03B1\u03B8\u03BC\u03CC."@el . + . + . + . + . + . + "vice principal"@en . + "\u0437\u0430\u043C\u0435\u043D\u0438\u043A \u0434\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0430"@sr . + . + . + . + . + . + . + "feature"@en . + . + . + . + . + . + "colour hex code"@en . + "Farben Hex Code"@de . + "A colour represented by its hex code (e.g.: #FF0000 or #40E0D0)."@en . + . + . + . + . + "prefecture"@en . + "Pr\u00E4fektur"@de . + . + . + . + . + . + . + "gatunek"@pl . + "genre"@nl . + "\u03B5\u03AF\u03B4\u03BF\u03C2"@el . + "genre"@fr . + "g\u00E9nero"@es . + "genre"@en . + "\u30B8\u30E3\u30F3\u30EB"@ja . + "Genre"@de . + "The genre of the thing (music group, film, etc.)"@en . + . + . + . + . + . + . + . + "source confluence"@en . + "lugar de nacimiento"@es . + "\u03C0\u03B7\u03B3\u03AD\u03C2"@el . + . + . + . + . + . + . + "wheelbase (\u03BC)"@en . + "Radstand (\u03BC)"@de . + "\u043C\u0435\u0452\u0443\u043E\u0441\u043E\u0432\u0438\u043D\u0441\u043A\u043E \u0440\u0430\u0441\u0442\u043E\u0458\u0430\u045A\u0435 (\u03BC)"@sr . + . + . + . + . + . + "formation date"@en . + "formatie datum"@nl . + "\u0399\u03B4\u03C1\u03CD\u03B8\u03B7\u03BA\u03B5"@el . + . + . + . + . + . + . + "course (\u03BC)"@en . + . + . + . + . + . + "year of creation"@en . + "\u03AD\u03C4\u03BF\u03C2 \u03B4\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1\u03C2"@el . + "Entstehungsjahr"@de . + "jaar van creatie"@nl . + . + . + . + . + "cites"@en . + "A document cited by this work. Like OntologyProperty:dct:references, but as a datatype property."@en . + . + . + . + . + . + "named by language"@en . + . + . + . + . + . + "norwegian landskap"@en . + . + . + . + . + . + "notable student"@en . + "\u03C3\u03B7\u03BC\u03B1\u03BD\u03C4\u03B9\u03BA\u03BF\u03AF_\u03C6\u03BF\u03B9\u03C4\u03B7\u03C4\u03AD\u03C2"@el . + . + . + . + . + . + . + "mouth elevation (\u03BC)"@en . + "\u03CD\u03C8\u03BF\u03C2_\u03B5\u03BA\u03B2\u03BF\u03BB\u03CE\u03BD (\u03BC)"@el . + . + . + . + . + "president"@nl . + "\u03C0\u03C1\u03CC\u03B5\u03B4\u03C1\u03BF\u03C2"@el . + "presidente"@pt . + "president"@en . + "Pr\u00E4sident"@de . + . + . + . + . + . + . + "story editor"@en . + . + . + . + . + . + . + "code land registry"@en . + "kadastercode"@nl . + "Land Registry code designating a parcel of land"@en . + "Kadastercode voor een perceel"@nl . + . + . + . + . + . + . + "former choreographer"@en . + "ehemaliger Choreograph"@de . + . + . + . + . + . + . + "related functions"@en . + "soortgelijke functies"@nl . + "This property is to accommodate the list field that contains a list of related personFunctions a person holds or has held"@en . + "Deze property is voor de lijst van persoonfuncties die een persoon (bv. een politicus) bekleedt of heeft bekleed"@nl . + . + . + . + . + . + . + "pcc secretary"@en . + . + . + . + . + "sports function"@en . + . + . + . + . + . + "model start date"@en . + . + . + . + . + . + "particular sign"@en . + . + . + . + . + . + "MeSH name"@en . + . + . + . + . + . + "coaching record"@en . + . + . + . + . + . + "daylight saving time zone"@en . + "Sommerzeitzone"@de . + . + . + . + . + . + "dam"@en . + "Hirschkalb"@de . + . + . + . + . + . + . + "subsequent infrastructure"@en . + "sp\u00E4tere Infrastruktur"@de . + "volgende infrastructuur"@nl . + . + . + . + . + . + . + "number of graves"@en . + "Anzahl der Gr\u00E4ber"@de . + "aantal graven"@nl . + . + . + . + . + . + "photographer"@en . + "Fotograf"@de . + . + . + . + . + . + . + "population percentage under 12 years"@en . + . + . + . + . + . + "commissioner date"@en . + . + . + . + . + . + "programme format"@en . + "The programming format describes the overall content broadcast on a radio or television station."@en . + . + . + . + . + . + "UN/LOCODE"@en . + "UN/LOCODE"@sr . + "UN/LOCODE, the United Nations Code for Trade and Transport Locations, is a geographic coding scheme developed and maintained by United Nations Economic Commission for Europe (UNECE), a unit of the United Nations. UN/LOCODE assigns codes to locations used in trade and transport with functions such as seaports, rail and road terminals, airports, post offices and border crossing points."@en . + "UN/LOCODE \u0458\u0435 \u043A\u043E\u0434 \u0423\u0458\u0435\u0434\u0438\u045A\u0435\u043D\u0438\u0445 \u043D\u0430\u0446\u0438\u0458\u0430 \u0437\u0430 \u0442\u0440\u0433\u043E\u0432\u0438\u043D\u0441\u043A\u0435 \u0438 \u0442\u0440\u0430\u043D\u0441\u043F\u043E\u0440\u0442\u043D\u0435 \u043B\u043E\u043A\u0430\u0446\u0438\u0458\u0435. \u041A\u0430\u043E \u0448\u0442\u043E \u0441\u0443 \u043B\u0443\u043A\u0435, \u0436\u0435\u043B\u0435\u0437\u043D\u0438\u0447\u043A\u0438 \u0438 \u043F\u0443\u0442\u043D\u0438 \u0442\u0435\u0440\u043C\u0438\u043D\u0430\u043B\u0438, \u0430\u0435\u0440\u043E\u0434\u0440\u043E\u043C\u0438, \u043F\u043E\u0448\u0442\u0435 \u0438 \u0433\u0440\u0430\u043D\u0438\u0447\u043D\u0438 \u043F\u0440\u0435\u043B\u0430\u0437\u0438."@sr . + . + . + . + . + . + "volume quote"@en . + . + . + . + . + . + "Different usage of an airport"@en . + "Unterschiedliche Nutzung eines Flughafens"@de . + "\u03BF\u03B9 \u03C7\u03C1\u03AE\u03C3\u03B5\u03B9\u03C2 \u03B5\u03BD\u03CC\u03C2 \u03B1\u03B5\u03C1\u03BF\u03B4\u03C1\u03BF\u03BC\u03AF\u03BF\u03C5"@el . + . + . + . + . + . + "starring"@en . + "met in de hoofdrol"@nl . + "\u03B7\u03B8\u03BF\u03C0\u03BF\u03B9\u03BF\u03AF"@el . + "acteur"@fr . + . + . + . + . + . + . + . + . + "NRHP Reference Number"@en . + . + . + . + . + . + "century breaks"@en . + "Century Breaks"@de . + "number of breaks with 100 points and more"@en . + "Anzahl Breaks mit 100 Punkten oder mehr, wird nicht \u00FCbersetzt"@de . + . + . + . + . + . + "subsidiary"@en . + "treinador"@pt . + "filiale"@fr . + . + . + . + . + . + . + "free prog competition"@en . + . + . + . + . + . + "influenced"@en . + "beeinflusst"@de . + "a influenc\u00E9"@fr . + "\u03B5\u03C0\u03B7\u03C1\u03AD\u03B1\u03C3\u03B5"@el . + "The subject influenced the object. inverseOf influencedBy."@en . + . + . + . + . + . + . + "picture format"@en . + "Bildformat"@de . + . + . + . + . + . + "show"@en . + "Sendung"@de . + "spectacle"@fr . + . + . + . + . + . + "plays"@en . + "slaghand"@nl . + . + . + . + . + . + "area land (m2)"@en . + "oppervlakte land (m2)"@nl . + "\u03AD\u03BA\u03C4\u03B1\u03C3\u03B7_\u03C3\u03C4\u03B5\u03C1\u03B9\u03AC\u03C2_\u03C0\u03B5\u03C1\u03B9\u03BF\u03C7\u03AE\u03C2 (m2)"@el . + "\u043F\u043E\u0432\u0440\u0448\u0438\u043D\u0430 \u0437\u0435\u043C\u0459\u0438\u0448\u0442\u0430 (m2)"@sr . + . + . + . + . + . + "most wins"@en . + "die meisten Siege"@de . + . + . + . + . + . + "active years end year manager"@en . + . + . + . + . + . + "main interest"@en . + . + . + . + . + "pro year"@en . + . + . + . + . + . + "portfolio"@en . + "Portfolio"@de . + . + . + . + . + "musicians"@en . + "Musiker"@de . + "\u03BC\u03BF\u03C5\u03C3\u03B9\u03BA\u03BF\u03AF"@el . + . + . + . + . + . + . + "diploma"@en . + . + . + . + . + . + . + "number of speakers"@en . + "aantal sprekers"@nl . + "Anzahl Sprecher"@de . + . + . + . + . + . + "lokalizacja"@pl . + "locatie"@nl . + "\u03C4\u03BF\u03C0\u03BF\u03B8\u03B5\u03C3\u03AF\u03B1"@el . + "emplacement"@fr . + "localiza\u00E7\u00E3o"@pt . + "location"@en . + "Standort"@de . + "The location of the thing."@en . + . + . + . + . + . + "explorer"@en . + "Erforscher"@de . + "ka\u015Fif"@tr . + . + . + . + . + . + "blazon"@en . + "Wappen"@de . + "\u0435\u043C\u0431\u043B\u0435\u043C\u0430"@bg . + "Coat of arms (heraldic image) or emblem"@en . + . + . + . + . + "snow park number"@en . + . + . + . + . + . + "dist_ly"@en . + . + . + . + . + . + "number of stars"@en . + "Anzahl der Sterne"@de . + . + . + . + . + . + "setup time (s)"@en . + . + . + . + . + "match point"@en . + . + . + . + . + . + "vice leader party"@en . + "stellvertretender Parteivorsitzende"@de . + "partido do vicelider"@pt . + . + . + . + . + . + . + "parliament"@en . + "Parlament"@de . + . + . + . + . + . + "league champion"@en . + "Liga-Meister"@de . + "\u015Fampiyon"@tr . + . + . + . + . + . + . + "throwing side"@en . + . + . + . + . + . + "last launch"@en . + "letzter Start"@de . + . + . + . + . + . + "Character size of wiki page"@en . + "Needs to be removed, left at the moment to not break DBpedia Live"@en . + . + . + . + . + "hip size (\u03BC)"@en . + "H\u00FCftumfang (\u03BC)"@de . + "heupomvang (\u03BC)"@nl . + "\u30D2\u30C3\u30D7 (\u03BC)"@ja . + . + . + . + . + . + "authority title of a romanian settlement"@en . + . + . + . + . + . + "collection"@en . + "Sammlung"@de . + "\u03C3\u03C5\u03BB\u03BB\u03BF\u03B3\u03AE"@el . + . + . + . + . + . + "water percentage of a place"@en . + "Wasseranteil von einem Ort"@de . + "\u043F\u0440\u043E\u0446\u0435\u043D\u0430\u0442 \u0432\u043E\u0434\u0435 \u043D\u0435\u043A\u043E\u0433 \u043C\u0435\u0441\u0442\u0430"@sr . + . + . + . + . + . + "last race"@en . + "letztes Rennen"@de . + "\u03C4\u03B5\u03BB\u03B5\u03C5\u03C4\u03B1\u03AF\u03BF\u03C2 \u03B1\u03B3\u03CE\u03BD\u03B1\u03C2"@el . + . + . + . + . + . + . + "serving temperature"@en . + "Serving temperature for the food (e.g.: hot, cold, warm or room temperature)."@en . + . + . + . + . + . + "oorspronkelijke taal"@nl . + "langue originale"@fr . + "idioma original"@es . + "original language"@en . + "Originalsprache"@de . + "The original language of the work."@en . + . + . + . + . + . + . + . + . + "recommissioning date"@en . + . + . + . + . + . + "libretto"@en . + "libretto"@nl . + . + . + . + . + . + "unicode"@en . + "Unicode"@de . + "unicode"@el . + "\u03C4\u03BF \u03B4\u03B9\u03B5\u03B8\u03BD\u03AD\u03C2 \u03C0\u03C1\u03CC\u03C4\u03C5\u03C0\u03BF Unicode \u03C3\u03C4\u03BF\u03C7\u03B5\u03CD\u03B5\u03B9 \u03C3\u03C4\u03B7\u03BD \u03BA\u03C9\u03B4\u03B9\u03BA\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03CC\u03BB\u03C9\u03BD \u03C4\u03C9\u03BD \u03C3\u03C5\u03C3\u03C4\u03B7\u03BC\u03AC\u03C4\u03C9\u03BD \u03B3\u03C1\u03B1\u03C6\u03AE\u03C2 \u03C0\u03BF\u03C5 \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03BF\u03CD\u03BD\u03C4\u03B1\u03B9 \u03C3\u03C4\u03BF\u03BD \u03C0\u03BB\u03B1\u03BD\u03AE\u03C4\u03B7."@el . + . + . + . + . + . + "world open"@en . + "\u0441\u0432\u0435\u0442\u0441\u043A\u043E \u043E\u0442\u0432\u043E\u0440\u0435\u043D\u043E \u043F\u0440\u0432\u0435\u043D\u0441\u0442\u0432\u043E"@sr . + . + . + . + . + . + "amateur tie"@en . + . + . + . + . + . + "makeup artist"@en . + "truccatore"@it . + "the person who is responsible for the actors makeup"@en . + . + . + . + . + . + . + "pole driver team"@en . + . + . + . + . + . + . + "agglomeration"@en . + "\u0430\u0433\u043B\u043E\u043C\u0435\u0440\u0430\u0446\u0438\u0458\u0430"@sr . + . + . + . + . + . + "visitors per year"@en . + "\u0433\u043E\u0434\u0438\u0448\u045A\u0438 \u0431\u0440\u043E\u0458 \u043F\u043E\u0441\u0435\u0442\u0438\u043B\u0430\u0446\u0430"@sr . + "bezoekers per jaar"@nl . + "Besucher pro Jahr"@de . + . + . + . + . + . + "branch to"@en . + "\u03C5\u03C0\u03BF\u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B7\u03BC\u03B1"@el . + . + . + . + . + . + . + "ofs code of a settlement"@en . + . + . + . + . + . + . + "brain info number"@en . + "\u03B1\u03C1\u03B9\u03B8\u03BC\u03CC\u03C2 \u03BD\u03BF\u03B7\u03C4\u03B9\u03BA\u03AE\u03C2 \u03C0\u03BB\u03B7\u03C1\u03BF\u03C6\u03CC\u03C1\u03B7\u03C3\u03B7\u03C2"@el . + . + . + . + . + . + "organ"@en . + "orgel"@nl . + "Name and/or description of the organ"@en . + "Naam en/of beschrijving van het orgel"@nl . + . + . + . + . + . + "blok uk\u0142adu okresowego"@pl . + "\u0431\u043B\u043E\u043A \u043F\u0435\u0440\u0438\u043E\u0434\u0438\u0447\u0435\u0441\u043A\u043E\u0439 \u0442\u0430\u0431\u043B\u0438\u0446\u044B"@ru . + "element block"@en . + "bloc de la taula peri\u00F2dica"@ca . + "Block des Periodensystems"@de . + "A block of the periodic table of elements is a set of adjacent groups."@en . + "La taula peri\u00F2dica dels elements es pot dividir en blocs d'elements segons l'orbital que estiguen ocupant els electrons m\u00E9s externs"@ca . + "Als Block im Periodensystem werden chemische Elemente nach den energiereichsten Atomorbitalen ihrer Elektronenh\u00FClle zusammengefasst."@de . + "\u0441\u043E\u0432\u043E\u043A\u0443\u043F\u043D\u043E\u0441\u0442\u044C \u0445\u0438\u043C\u0438\u0447\u0435\u0441\u043A\u0438\u0445 \u044D\u043B\u0435\u043C\u0435\u043D\u0442\u043E\u0432 \u0441\u043E \u0441\u0445\u043E\u0434\u043D\u044B\u043C \u0440\u0430\u0441\u043F\u043E\u043B\u043E\u0436\u0435\u043D\u0438\u0435\u043C \u0432\u0430\u043B\u0435\u043D\u0442\u043D\u044B\u0445 \u044D\u043B\u0435\u043A\u0442\u0440\u043E\u043D\u043E\u0432 \u0432 \u0430\u0442\u043E\u043C\u0435."@ru . + . + . + . + . + . + "Alps section"@en . + "\u03C4\u03BC\u03AE\u03BC\u03B1 \u03C4\u03C9\u03BD \u03AC\u03BB\u03C0\u03B5\u03C9\u03BD"@el . + "\u0410\u043B\u043F\u0441\u043A\u0430 \u0441\u0435\u043A\u0446\u0438\u0458\u0430"@sr . + "sezione alpina"@it . + "the Alps section to which the mountain belongs, according to the SOIUSA classification"@en . + . + . + . + . + . + . + "relation"@en . + "Beziehung"@de . + "\u03C3\u03C7\u03AD\u03C3\u03B7"@el . + "relatie"@nl . + . + . + . + . + . + . + "Aantal onthoudingen"@nl . + "\u0391\u03C1\u03B9\u03B8\u03BC\u03CC\u03C2 \u03B1\u03C0\u03BF\u03C7\u03CE\u03BD \u03BC\u03B5\u03C4\u03AC \u03B1\u03C0\u03CC \u03C8\u03B7\u03C6\u03BF\u03C6\u03BF\u03C1\u03AF\u03B1"@el . + "abstentions"@en . + "staonadh"@ga . + "Anzahl der Enthaltungen nach der Abstimmung"@de . + "Number of abstentions from the vote"@en . + "an l\u00EDon daoine a staon \u00F3 v\u00F3t\u00E1il"@ga . + . + . + . + . + . + "city since"@en . + . + . + . + . + . + "Laurence Olivier Award"@en . + . + . + . + . + . + . + "cargo gas (g)"@en . + . + . + . + . + . + "CMP EVA duration (s)"@en . + . + . + . + . + . + "cargo water (g)"@en . + . + . + . + . + . + "function end date"@en . + . + . + . + . + . + "foundation place"@en . + "Gr\u00FCndungsort"@de . + . + . + . + . + . + . + "supertribus"@en . + "bovenstam"@nl . + . + . + . + . + . + . + "einddatum"@nl . + "date de fin"@fr . + "fecha de fin"@es . + "end date"@en . + "Enddatum"@de . + "The end date of the event."@en . + . + . + . + . + . + . + . + "march"@en . + "Marsch"@de . + "marcha"@pt . + . + . + . + . + . + . + "used in war"@en . + "im Krieg eingesetzt"@de . + "\u043A\u043E\u0440\u0438\u0448\u045B\u0435\u043D\u043E \u0443 \u0440\u0430\u0442\u0443"@sr . + "wars that were typical for the usage of a weapon"@en . + . + . + . + . + . + . + "wins at JLPGA"@en . + "\u043F\u043E\u0431\u0435\u0434\u0435 \u043D\u0430 JLPGA"@sr . + . + . + . + . + . + "Link to the Wikipage edit URL"@en . + "Reserved for DBpedia."@en . + . + . + . + "number of deaths"@en . + "Totenzahl"@de . + "Aantal doden"@nl . + . + . + . + . + . + "ICAO Location Identifier"@en . + "\u0399\u039A\u0391\u039F"@el . + . + . + . + . + . + . + "last publication date"@en . + "letztes Ver\u00F6ffentlichungsdatum"@de . + "Date of the last publication."@en . + . + . + . + . + . + "automobile model"@en . + "Automobilmodell"@de . + "\u03BC\u03BF\u03BD\u03C4\u03AD\u03BB\u03BF \u03B1\u03C5\u03C4\u03BF\u03BA\u03B9\u03BD\u03AE\u03C4\u03BF\u03C5"@el . + . + . + . + . + . + "Dutch PPN code"@en . + "Dutch PPN code is a library cataloguing code for collection items (books, journals and the like)."@en . + "Dutch PPN code is in de Nederlandse bibliotheekwereld een cataloguscode (PICA) voor items in de collectie."@nl . + . + . + . + . + . + . + "distributing label"@en . + . + . + . + . + . + . + "third place"@en . + "dritter Platz"@de . + . + . + . + . + "number of participating nations"@en . + "Anzahl der teilnehmenden Nationen"@de . + . + . + . + . + . + "car number"@en . + . + . + . + . + . + "champion in single"@en . + "kampioen enkelspel"@nl . + "champion en simple"@fr . + "Campe\u00F3n en simple"@es . + "winner of a competition in the single session, to distinguish from the double session (as in tennis)"@en . + . + . + . + . + . + . + . + "lowest"@en . + "\u03C7\u03B1\u03BC\u03B7\u03BB\u03CC\u03C4\u03B5\u03C1\u03BF"@el . + . + . + . + . + . + "aircraft user"@en . + "Flugzeugnutzer"@de . + "\u03C7\u03C1\u03AE\u03C3\u03C4\u03B7\u03C2 \u03B1\u03B5\u03C1\u03BF\u03C3\u03BA\u03AC\u03C6\u03BF\u03C5\u03C2"@el . + "usuario del avi\u00F3n"@es . + . + . + . + . + . + . + "active years start year manager"@en . + . + . + . + . + . + "number of lanes"@en . + "Anzahl der Fahrstreifen"@de . + "nombre de voies"@fr . + . + . + . + . + . + "animator"@en . + "\u03B1\u03BD\u03B9\u03BC\u03AD\u03B9\u03C4\u03BF\u03C1"@el . + "\u0430\u043D\u0438\u043C\u0430\u0442\u043E\u0440"@sr . + . + . + . + . + . + . + "ideologie"@nl . + "\u03B9\u03B4\u03B5\u03BF\u03BB\u03BF\u03B3\u03AF\u03B1"@el . + "ideologia"@pt . + "ideology"@en . + "Ideologie"@de . + . + . + . + . + . + . + . + "epoch"@en . + "moment in time used as a referrence point for some time-vaying astronomical quantity"@en . + . + . + . + . + . + "The extension of this file"@en . + . + . + . + . + . + "virtual channel"@en . + "\u0432\u0438\u0440\u0442\u0443\u0435\u043B\u043D\u0438 \u043A\u0430\u043D\u0430\u043B"@sr . + "\u03B5\u03B9\u03BA\u03BF\u03BD\u03B9\u03BA\u03CC \u03BA\u03B1\u03BD\u03AC\u03BB\u03B9"@el . + . + . + . + . + . + "aircraft bomber"@en . + "\u0430\u0432\u0438\u043E\u043D \u0431\u043E\u043C\u0431\u0430\u0440\u0434\u0435\u0440"@sr . + "\u03B2\u03BF\u03BC\u03B2\u03B1\u03C1\u03B4\u03B9\u03C3\u03C4\u03B9\u03BA\u03CC \u03B1\u03B5\u03C1\u03BF\u03C3\u03BA\u03AC\u03C6\u03BF\u03C2"@el . + . + . + . + . + . + . + "election majority"@en . + "number of votes the office holder attained"@en . + . + . + . + . + "national ranking"@en . + . + . + . + . + . + "NNDB id"@en . + . + . + . + . + . + "chair label"@en . + . + . + . + . + "order date"@en . + . + . + . + . + . + "tu"@en . + . + . + . + . + . + "voice type"@en . + "Stimmlage"@de . + "\u0442\u0438\u043F \u0433\u043B\u0430\u0441\u0430"@sr . + "stemtype"@nl . + "voice type of a singer or an actor"@en . + . + . + . + . + . + "varietals"@en . + "Rebsorten"@de . + . + . + . + . + . + "former partner"@en . + "ehemaliger Partner"@de . + . + . + . + . + . + . + "locus supplementary data"@en . + . + . + . + . + . + "escalafon"@en . + . + . + . + . + . + "end point"@en . + "Endpunkt"@de . + "\u03C3\u03B7\u03BC\u03B5\u03AF\u03BF_\u03C4\u03AD\u03BB\u03BF\u03C5\u03C2"@el . + . + . + . + . + . + . + "field"@en . + "Feld"@de . + . + . + . + . + . + "region"@en . + "Region"@de . + . + . + . + . + . + "fastest lap"@en . + "\u03C4\u03B1\u03C7\u03CD\u03C4\u03B5\u03C1\u03BF\u03C2 \u03B3\u03CD\u03C1\u03BF\u03C2"@el . + "schnellste Runde"@de . + . + . + . + . + . + "enshrined deity"@en . + "\u796D\u795E"@ja . + . + . + . + . + . + . + "related mean of transportation"@en . + . + . + . + . + . + . + "pole driver"@en . + . + . + . + . + . + . + "land percentage of a place"@en . + . + . + . + . + . + "lowest region"@en . + . + . + . + . + . + . + "sheading"@en . + . + . + . + . + . + . + "model"@en . + "Modell"@de . + "mod\u00E8le"@fr . + . + . + . + . + . + "originally used for"@en . + "urspr\u00FCnglich verwendet f\u00FCr"@de . + "oorspronkelijk gebruik"@nl . + "Original use of the architectural structure, if it is currently being used as anything other than its original purpose."@en . + . + . + . + . + . + "Wikipage redirect"@en . + "Reserved for DBpedia."@en . + . + . + . + "Dutch PPN code"@en . + "Dutch Winkel ID is a code for an underground publication, as attributed by Lydia Winkel's work on the underground WW II press in the Netherlands."@en . + "Dutch Winkel ID is een code toegekend door Lydia Winkel in haar boek over De Ondergrondse Pers 1940-1945."@nl . + . + . + . + . + . + . + "Has KML data associated with it (usually because of KML overlays)"@en . + . + . + . + . + . + "last flight start date"@en . + . + . + . + . + . + "aircraft interceptor"@en . + "\u03B1\u03BD\u03B1\u03C7\u03B1\u03AF\u03C4\u03B9\u03C3\u03B7 \u03B1\u03B5\u03C1\u03BF\u03C3\u03BA\u03AC\u03C6\u03BF\u03C5\u03C2"@el . + "\u0430\u0432\u0438\u043E\u043D \u043F\u0440\u0435\u0441\u0440\u0435\u0442\u0430\u0447"@sr . + . + . + . + . + . + . + "border"@en . + "Grenze"@de . + "\u03C3\u03CD\u03BD\u03BF\u03C1\u03B1"@el . + . + . + . + . + . + . + "bed count"@en . + "aantal bedden"@nl . + "Anzahl Betten"@de . + "\u03B1\u03C1\u03B9\u03B8\u03BC\u03CC\u03C2 \u03BA\u03C1\u03B5\u03B2\u03B1\u03C4\u03B9\u03CE\u03BD"@el . + . + . + . + . + . + "service module"@en . + . + . + . + . + . + "speed limit (kmh)"@en . + "Tempolimit (kmh)"@de . + . + . + . + . + . + "best wsop rank"@en . + . + . + . + . + . + "restore date"@en . + "\u03B7\u03BC\u03B5\u03C1\u03BF\u03BC\u03B7\u03BD\u03AF\u03B1 \u03B1\u03BD\u03B1\u03BA\u03B1\u03AF\u03BD\u03B9\u03C3\u03B7\u03C2"@el . + . + . + . + . + "unesco"@en . + . + . + . + . + . + . + "batting side"@en . + "Schlagmannschaft"@de . + . + . + . + . + . + "vastest lake"@en . + "\u03BB\u03AF\u03BC\u03BD\u03B7"@el . + . + . + . + . + . + . + "team name"@en . + "Teamname"@de . + "\u03CC\u03BD\u03BF\u03BC\u03B1 \u03BF\u03BC\u03AC\u03B4\u03B1\u03C2"@el . + . + . + . + . + . + "red ski piste number"@en . + . + . + . + . + . + "classes"@en . + "Klasse"@de . + "\u03C4\u03AC\u03BE\u03B5\u03B9\u03C2"@el . + . + . + . + . + . + "schrijver"@nl . + "\u03C3\u03B5\u03BD\u03B1\u03C1\u03B9\u03BF\u03B3\u03C1\u03AC\u03C6\u03BF\u03C2"@el . + "\u043F\u0438\u0441\u0430\u0446"@sr . + "scrittore"@it . + "writer"@en . + "schriftsteller"@de . + . + . + . + . + . + . + "big pool record"@en . + . + . + . + . + . + "mean radius (\u03BC)"@en . + "durchschnittlicher Radius (\u03BC)"@de . + "\u03BC\u03AD\u03C3\u03B7 \u03B1\u03BA\u03C4\u03AF\u03BD\u03B1 (\u03BC)"@el . + . + . + . + . + . + "country top level (tld)"@en . + "dom\u00EDnio de topo (tld)"@pt . + "domaine de premier niveau (tld)"@fr . + . + . + . + . + . + "size logo"@en . + . + . + . + . + "number of doctoral students"@en . + "Anzahl der Doktoranden"@de . + . + . + . + . + . + "best ranking finish"@en . + "beste Platzierung im Ranglistenturnier"@de . + . + . + . + . + . + "stan"@pl . + "staat"@nl . + "\u03BD\u03BF\u03BC\u03CC\u03C2"@el . + "state"@en . + "Staat"@de . + . + . + . + . + . + "volkslied"@nl . + "\u03CD\u03BC\u03BD\u03BF\u03C2"@el . + "hino"@pt . + "\u0445\u0438\u043C\u043D\u0430"@sr . + "\u0433\u0438\u043C\u043D"@ru . + "anthem"@en . + "Hymne"@de . + . + . + . + . + . + . + . + "nation"@en . + "Nation"@de . + . + . + . + . + . + "ICAO code"@en . + "ICAO designation for airline companies"@en . + . + . + . + . + . + . + "doctoral advisor"@en . + "Doktorvater"@de . + "\u03B4\u03B9\u03B4\u03B1\u03BA\u03C4\u03BF\u03C1\u03B9\u03BA\u03CC\u03C2_\u03C3\u03CD\u03BC\u03B2\u03BF\u03C5\u03BB\u03BF\u03C2"@el . + . + . + . + . + . + . + . + "third driver country"@en . + . + . + . + . + . + . + "building end date"@en . + "\u0397\u03BC\u03B5\u03C1\u03BF\u03BC\u03B7\u03BD\u03AF\u03B1 \u03BB\u03AE\u03BE\u03B7\u03C2 \u03BA\u03B1\u03C4\u03B1\u03C3\u03BA\u03B5\u03C5\u03AE\u03C2"@el . + . + . + . + . + . + "number of postgraduate students"@en . + . + . + . + . + . + "impact factor"@en . + "Impact Factor"@de . + "The impact factor, often abbreviated IF, is a measure reflecting the average number of citations to articles published in science and social science journals."@en . + "Der Impact Factor oder genauer Journal Impact Factor (JIF) einer Fachzeitschrift soll messen, wie oft andere Zeitschriften einen Artikel aus ihr in Relation zur Gesamtzahl der dort ver\u00F6ffentlichten Artikel zitieren. Je h\u00F6her der Impact Factor, desto angesehener ist eine Fachzeitschrift."@de . + . + . + . + . + . + "licensee"@en . + "Lizenzinhaber"@de . + "Identify which company or entity holds the licence (mostly string are used in Wikipedia, therefore range is xsd:sting)."@en . + . + . + . + . + "discontinued"@en . + . + . + . + . + . + "kaart"@nl . + "\u03C7\u03AC\u03C1\u03C4\u03B7\u03C2"@el . + "carte"@fr . + "mapa"@pt . + "map"@en . + "Landkarte"@de . + "A map of the place."@en . + "\u03A7\u03AC\u03C1\u03C4\u03B7\u03C2 \u03BC\u03B9\u03B1\u03C2 \u03C0\u03B5\u03C1\u03B9\u03BF\u03C7\u03AE\u03C2."@el . + "Eine Landkarte des Ortes."@de . + . + . + . + . + . + . + "land"@en . + . + . + . + . + . + "major island"@en . + "gro\u00DFe Insel"@de . + "maior ilha"@pt . + . + . + . + . + . + . + "green long distance piste number"@en . + . + . + . + . + . + "tessitura"@en . + . + . + . + . + . + "champion in double female"@en . + "champion en double femmes"@fr . + "Campe\u00F3n en doble mujeres"@es . + "winner of a competition in the female double session (as in tennis)"@en . + . + . + . + . + . + . + . + "undrafted year"@en . + . + . + . + . + . + "region served"@en . + "werkgebied"@nl . + . + . + . + . + . + . + "monument code (municipal)"@en . + "monumentcode gemeentelijke monumenten"@nl . + "Code assigned to (Dutch) monuments at the municipal level, deemed to be of local value"@en . + "Code toegewezen aan monumenten die op gemeenteniveau onder bescherming geplaatst zijn"@nl . + . + . + . + . + . + . + "Link to the Wikipage revision URL"@en . + "Reserved for DBpedia."@en . + . + . + . + "previous event"@en . + "Vorveranstaltung"@de . + "vorige evenement"@nl . + "evento anterior"@pt . + . + . + . + . + . + . + "capital country"@en . + "Hauptstadt Land"@de . + . + . + . + . + . + . + "athletics"@en . + "Leichtathletik"@de . + "\u03B1\u03B8\u03BB\u03B7\u03C4\u03B9\u03C3\u03BC\u03CC\u03C2"@el . + . + . + . + . + . + "races"@en . + "Rennen"@de . + "\u03B1\u03B3\u03CE\u03BD\u03B1\u03C2"@el . + . + . + . + . + . + "administrative status"@en . + "administrativer Status"@de . + "\u0430\u0434\u043C\u0438\u043D\u0438\u0441\u0442\u0440\u0430\u0442\u0438\u0432\u043D\u0438 \u0441\u0442\u0430\u0442\u0443\u0441"@sr . + . + . + . + . + "roland garros mixed"@en . + . + . + . + . + . + "affiliation"@en . + "\u03B9\u03C3\u03C4\u03BF\u03BB\u03CC\u03B3\u03B9\u03BF"@el . + "Europees lidmaatschap"@nl . + "\u043F\u0440\u0438\u043F\u0430\u0434\u043D\u043E\u0441\u0442"@sr . + . + . + . + . + . + . + "college hof"@en . + . + . + . + . + . + "national years"@en . + . + . + . + . + . + "picture description"@en . + "Bildbeschreibung"@de . + . + . + . + "team point"@en . + . + . + . + . + . + "ascent"@en . + "Aufstieg"@de . + "\u03B1\u03BD\u03AC\u03B2\u03B1\u03C3\u03B7"@el . + "Ascent of a celestial body, aircraft, etc. For person who ascended a mountain, use firstAscent"@en . + . + . + . + . + "security"@en . + "Sicherheit"@de . + "\u03B1\u03C3\u03C6\u03AC\u03BB\u03B5\u03B9\u03B1"@el . + "Safety precautions that are used in the building."@en . + "Sicherheitsma\u00DFnahmen, die f\u00FCr das Geb\u00E4ude getroffen wurden."@de . + "\u039C\u03AD\u03C4\u03C1\u03B1 \u03B1\u03C3\u03C6\u03B1\u03BB\u03B5\u03AF\u03B1\u03C2 \u03B3\u03B9\u03B1 \u03C4\u03B7\u03BD \u03C0\u03C1\u03BF\u03C3\u03C4\u03B1\u03C3\u03AF\u03B1 \u03B5\u03BD\u03CC\u03C2 \u03BA\u03C4\u03B9\u03C1\u03AF\u03BF\u03C5."@el . + . + . + . + . + . + "winter temperature (K)"@en . + "Wintertemperatur (K)"@de . + "\u0437\u0438\u043C\u0441\u043A\u0430 \u0442\u0435\u043C\u043F\u0435\u0440\u0430\u0442\u0443\u0440\u0430 (K)"@sr . + . + . + . + . + . + "opening theme"@en . + . + . + . + . + . + . + "diocese"@en . + "Di\u00F6zese"@de . + "bisdom"@nl . + "A religious administrative body above the parish level"@en . + . + . + . + . + . + . + . + "amateur ko"@en . + "\u0431\u0440\u043E\u0458 \u0430\u043C\u0430\u0442\u0435\u0440\u0441\u043A\u0438\u0445 \u043D\u043E\u043A\u0430\u0443\u0442\u0430"@sr . + . + . + . + . + . + "vice chancellor"@en . + "\u043F\u043E\u0442\u043A\u0430\u043D\u0446\u0435\u043B\u0430\u0440"@sr . + "Vizekanzler"@de . + . + . + . + . + . + "wins at NWIDE"@en . + "\u043F\u043E\u0431\u0435\u0434\u0435 \u043D\u0430 NWIDE"@sr . + . + . + . + . + . + "principal engineer"@en . + "\u03C0\u03C1\u03CE\u03C4\u03BF\u03C2_\u03BC\u03B7\u03C7\u03B1\u03BD\u03B9\u03BA\u03CC\u03C2"@el . + . + . + . + . + . + . + "role"@en . + "Rolle"@de . + "\u03C1\u03CC\u03BB\u03BF\u03C2"@el . + "r\u00F4le"@fr . + . + . + . + . + "player season"@en . + . + . + . + . + "damsire"@en . + . + . + . + . + . + . + "docked time (s)"@en . + . + . + . + . + . + "mvp"@en . + . + . + . + . + . + "Link to the Wikipage history URL"@en . + "Reserved for DBpedia."@en . + . + . + . + "element above"@en . + "\u044D\u043B\u0435\u043C\u0435\u043D\u0442 \u0441\u043D\u0438\u0437\u0443"@ru . + "hoger element"@nl . + "element placed above current element in D.I.Mendeleev's table"@en . + "\u042D\u043B\u0435\u043C\u0435\u043D\u0442 \u0441\u043D\u0438\u0437\u0443 \u043F\u043E\u0434 \u0442\u0435\u043A\u0443\u0449\u0438\u043C \u044D\u043B\u0435\u043C\u0435\u043D\u0442\u043E\u043C \u0432 \u0442\u0430\u0431\u043B\u0438\u0446\u0435 \u0414.\u0418.\u041C\u0435\u043D\u0434\u0435\u043B\u0435\u0435\u0432\u0430"@ru . + . + . + . + . + . + "building start year"@en . + "bouw start jaar"@nl . + "\u03AD\u03C4\u03BF\u03C2 \u03AD\u03BD\u03B1\u03C1\u03BE\u03B7\u03C2 \u03BA\u03B1\u03C4\u03B1\u03C3\u03BA\u03B5\u03C5\u03AE\u03C2"@el . + . + . + . + . + . + "handisport"@en . + . + . + . + . + . + "similar"@en . + "\u00E4hnlich"@de . + "\u03C0\u03B1\u03C1\u03CC\u03BC\u03BF\u03B9\u03BF\u03C2"@el . + "podobny"@pl . + . + . + . + . + "size thumbnail"@en . + . + . + . + . + "population year"@en . + . + . + . + . + . + "owning organisation"@en . + "\u03BF\u03C1\u03B3\u03B1\u03BD\u03B9\u03C3\u03BC\u03CC\u03C2"@el . + . + . + . + . + . + "capital region"@en . + "Hauptstadtregion"@de . + . + . + . + . + . + . + "stationscode"@nl . + "\u03BA\u03C9\u03B4\u03B9\u03BA\u03CC\u03C2 \u03C0\u03C1\u03B1\u03BA\u03C4\u03BF\u03C1\u03B5\u03AF\u03BF\u03C5"@el . + "\u043A\u043E\u0434 \u0441\u0442\u0430\u043D\u0438\u0446\u0435"@sr . + "agency station code"@en . + "Stationsabk\u00FCrzung"@de . + "Agency station code (used on tickets/reservations, etc.)."@en . + "\u039A\u03C9\u03B4\u03B9\u03BA\u03CC\u03C2 \u03C0\u03C1\u03B1\u03BA\u03C4\u03BF\u03C1\u03B5\u03AF\u03BF\u03C5 (\u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03B5\u03AF\u03C4\u03B1\u03B9 \u03C3\u03B5 \u03B5\u03B9\u03C3\u03B9\u03C4\u03AE\u03C1\u03B9\u03B1/\u03BA\u03C1\u03B1\u03C4\u03AE\u03C3\u03B5\u03B9\u03C2,\u03BA\u03C4\u03BB.)."@el . + . + . + . + . + . + "different"@en . + . + . + . + . + . + "amateur fight"@en . + "\u0430\u043C\u0430\u0442\u0435\u0440\u0441\u043A\u0438\u0445 \u0431\u043E\u0440\u0431\u0438"@sr . + . + . + . + . + . + "participates/participated in"@en . + "nimmt Teil an"@de . + "neemt deel aan"@nl . + . + . + . + . + . + . + "Dewey Decimal Classification"@en . + "The Dewey Decimal Classification is a proprietary system of library classification developed by Melvil Dewey in 1876."@en . + . + . + . + . + . + . + "can baggage checked"@en . + "Gep\u00E4ckkontrolle m\u00F6glich"@de . + "Whether bags can be checked."@en . + . + . + . + . + . + "disciple"@en . + "\u00E9l\u00E8ve"@fr . + "A person who learns from another, especially one who then teaches others.."@en . + "Celui qui apprend d\u2019un ma\u00EEtre quelque science ou quelque art lib\u00E9ral."@fr . + . + . + . + . + . + . + "iconographic attributes"@en . + "Standard iconographic elements used when depicting a Saint: pontifical, episcopal, insignia, martyrdom instruments"@en . + . + . + . + . + . + "beatified date"@en . + "zalig verklaard datum"@nl . + . + . + . + . + . + "area rank"@en . + "\u043F\u043E\u0432\u0440\u0448\u0438\u043D\u0430 \u0440\u0430\u043D\u0433"@sr . + . + . + . + . + . + "third team"@en . + "dritte Mannschaft"@de . + "\u03C4\u03C1\u03AF\u03C4\u03B7 \u03BF\u03BC\u03AC\u03B4\u03B1"@el . + . + . + . + . + . + . + "internationally"@en . + "international"@de . + . + . + . + . + . + "Olivier Award"@en . + . + . + . + . + . + . + "Alps group"@en . + "\u03BF\u03BC\u03AC\u03B4\u03B1 \u03C4\u03C9\u03BD \u03AC\u03BB\u03C0\u03B5\u03C9\u03BD"@el . + "gruppo alpino"@it . + "\u0430\u043B\u043F\u0441\u043A\u0430 \u0433\u0440\u0443\u043F\u0430"@sr . + "the Alps group to which the mountain belongs, according to the SOIUSA classification"@en . + . + . + . + . + . + . + "event"@en . + "Veranstaltung"@de . + "evento"@pt . + . + . + . + . + . + "vehicles per day"@en . + "\u0431\u0440\u043E\u0458 \u0432\u043E\u0437\u0438\u043B\u0430 \u043F\u043E \u0434\u0430\u043D\u0443"@sr . + "Fahrzeuge pro Tag"@de . + . + . + . + . + . + "huurder"@nl . + "\u03B5\u03BD\u03BF\u03B9\u03BA\u03B9\u03B1\u03C3\u03C4\u03AE\u03C2"@el . + "locataire"@fr . + "tenant"@en . + "Mieter"@de . + . + . + . + . + . + . + "regime"@en . + . + . + . + . + . + "Tony Award"@en . + . + . + . + . + . + . + "historical map"@en . + "historische Karte"@de . + "\u03B9\u03C3\u03C4\u03BF\u03C1\u03B9\u03BA\u03CC\u03C2 \u03C7\u03AC\u03C1\u03C4\u03B7\u03C2"@el . + . + . + . + . + . + "sea"@en . + "Meer"@de . + . + . + . + . + . + . + "current member"@en . + "aktuelles Mitglied"@de . + . + . + . + . + . + . + "lunar orbit time (s)"@en . + "Mondumlaufzeit (s)"@de . + . + . + . + . + . + "pictures Commons category"@en . + "Wikimedia CommonsCategory for pictures of this resource"@en . + . + . + . + . + "language regulator or academy"@en . + "taal instituut"@nl . + . + . + . + . + . + "gross domestic product (GDP) ($)"@en . + "Bruttoinlandsprodukt ($)"@de . + . + . + . + . + . + "blazon link"@en . + . + . + . + . + "project coordinator"@en . + "Projektkoordinator"@de . + "The coordinating organisation of the project."@en . + . + . + . + . + . + . + "radio"@en . + "Radio"@de . + "\u03C1\u03B1\u03B4\u03B9\u03CC\u03C6\u03C9\u03BD\u03BF"@el . + "To \u03C1\u03B1\u03B4\u03B9\u03CC\u03C6\u03C9\u03BD\u03BF \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B7 \u03C3\u03C5\u03C3\u03BA\u03B5\u03C5\u03AE \u03C0\u03BF\u03C5 \u03BB\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03B5\u03AF \u03C9\u03C2 \"\u03C1\u03B1\u03B4\u03B9\u03BF\u03B4\u03AD\u03BA\u03C4\u03B7\u03C2 - \u03BC\u03B5\u03C4\u03B1\u03C4\u03C1\u03BF\u03C0\u03AD\u03B1\u03C2\" \u03CC\u03C0\u03BF\u03C5 \u03BB\u03B1\u03BC\u03B2\u03AC\u03BD\u03BF\u03BD\u03C4\u03B1\u03C2 \u03C4\u03B9\u03C2 \u03C1\u03B1\u03B4\u03B9\u03BF\u03C6\u03C9\u03BD\u03B9\u03BA\u03AD\u03C2 \u03B5\u03BA\u03C0\u03BF\u03BC\u03C0\u03AD\u03C2 \u03C4\u03C9\u03BD \u03C1\u03B1\u03B4\u03B9\u03BF\u03C6\u03C9\u03BD\u03B9\u03BA\u03CE\u03BD \u03C3\u03C4\u03B1\u03B8\u03BC\u03CE\u03BD \u03C4\u03B9\u03C2 \u03BC\u03B5\u03C4\u03B1\u03C4\u03C1\u03AD\u03C0\u03B5\u03B9 \u03C3\u03B5 \u03AE\u03C7\u03BF."@el . + . + . + . + . + . + "first publication date"@en . + "eerste publicatiedatum"@nl . + "Datum der Erstausgabe"@de . + "data pierwszego wydania"@pl . + "Date of the first publication."@en . + "Datum der ersten Ver\u00F6ffentlichung des Periodikums."@de . + . + . + . + . + . + "length of a coast"@en . + "L\u00E4nge einer K\u00FCste"@de . + . + . + . + . + . + "population urban"@en . + "Stadtbev\u00F6lkerung"@de . + . + . + . + . + . + "production end date"@en . + . + . + . + . + "original end point"@en . + "\u03C0\u03C1\u03C9\u03C4\u03B1\u03C1\u03C7\u03B9\u03BA\u03CC_\u03C3\u03B7\u03BC\u03B5\u03AF\u03BF_\u03C4\u03AD\u03BB\u03BF\u03C5\u03C2"@el . + . + . + . + . + . + . + "zodiacSign"@en . + "Zodiac Sign. Applies to persons, planets, etc"@en . + . + . + . + "first flight start date"@en . + . + . + . + . + . + "dead in fight date"@en . + . + . + . + . + . + "kind of coordinate"@en . + . + . + . + . + . + "military branch"@en . + "The service branch (Army, Navy, etc.) a person is part of."@en . + . + . + . + . + . + . + "significant building"@en . + "bedeutendes Geb\u00E4ude"@de . + . + . + . + . + . + . + "olympic games bronze"@en . + "brons op de Olympische Spelen"@nl . + . + . + . + . + . + "using country"@en . + . + . + . + . + . + . + "LCCN"@en . + "The Library of Congress Control Number or LCCN is a serially based system of numbering cataloging records in the Library of Congress in the United States. It has nothing to do with the contents of any book, and should not be confused with Library of Congress Classification."@en . + . + . + . + . + . + "style"@en . + "stil"@de . + "stile"@it . + "estilo"@es . + . + . + . + . + "number of intercommunality"@en . + . + . + . + . + . + "aantal gewonnen gouden medailles"@nl . + "nomber de m\u00E9dailles d'or gagn\u00E9es"@fr . + "cantidad de medallas de oro ganadas"@es . + "number of gold medals won"@en . + "Anzahl der Goldmedaillen"@de . + . + . + . + . + . + "running mate"@en . + "compa\u00F1ero de candidatura"@es . + . + . + . + . + . + "population percentage female"@en . + . + . + . + . + . + . + "CO2 emission (g/km)"@en . + . + . + . + . + . + "grave"@en . + "graf"@nl . + "Grab"@de . + . + . + . + . + . + "closed"@en . + "geschlossen"@de . + "gesloten"@nl . + . + . + . + . + . + "ist"@en . + . + . + . + . + . + "colonial name"@en . + "Kolonialname"@de . + . + . + . + . + . + "wha draft year"@en . + "WHA \u0433\u043E\u0434\u0438\u043D\u0430 \u0434\u0440\u0430\u0444\u0442\u0430"@sr . + . + . + . + . + . + "quebecer title"@en . + . + . + . + . + . + "Blazon caption"@en . + . + . + . + . + . + "route junction"@en . + "Wegabzweigung"@de . + "A junction or cross to another route."@en . + "Eine Abzweigung oder Kreuzung zu einem anderen Verkehrsweg."@de . + . + . + . + . + . + . + "provost"@en . + . + . + . + . + . + . + "Number Of Municipalities"@en . + "Anzahl der Gemeinden"@de . + "Aantal gemeenten"@nl . + "numero de municipios"@pt . + . + . + . + . + . + "manager years end year"@en . + . + . + . + . + "start date and time"@en . + "datum en tijd van begin"@nl . + "The start date and time of the event."@en . + . + . + . + . + . + "project"@en . + "Projekt"@de . + . + . + . + . + . + "total tracks"@en . + "the total number of tracks contained in the album"@en . + . + . + . + . + . + "superbowl win"@en . + . + . + . + . + . + "conservation status system"@en . + . + . + . + . + . + "family member"@en . + "Familienmitglied"@de . + "familielid"@nl . + . + . + . + . + . + "number of participating male athletes"@en . + "Anzahl der teilnehmenden m\u00E4nnlichen Athleten"@de . + "nombre d'athl\u00E8tes masculins participant"@fr . + . + . + . + . + . + "vehicle"@en . + "\u0432\u043E\u0437\u0438\u043B\u043E"@sr . + "\u03CC\u03C7\u03B7\u03BC\u03B1"@el . + "Vehikel"@de . + "vehicle that uses a specific automobile platform"@en . + "\u03CC\u03C7\u03B7\u03BC\u03B1 \u03C0\u03BF\u03C5 \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03B5\u03AF \u03BC\u03B9\u03B1 \u03C3\u03C5\u03B3\u03BA\u03B5\u03BA\u03C1\u03B9\u03BC\u03AD\u03BD\u03B7 \u03C0\u03BB\u03B1\u03C4\u03C6\u03CC\u03C1\u03BC\u03B1 \u03B1\u03C5\u03C4\u03BF\u03BA\u03B9\u03BD\u03AE\u03C4\u03C9\u03BD"@el . + . + . + . + . + . + "philosophicalSchool"@en . + . + . + . + . + . + "background"@en . + "Hintergrund"@de . + "\u03C6\u03CC\u03BD\u03C4\u03BF"@el . + . + . + . + . + "norwegian center"@en . + . + . + . + . + . + "formation year"@en . + "formatie jaar"@nl . + . + . + . + . + . + "demolition year"@en . + "sloop jaar"@nl . + "The year the building was demolished."@en . + . + . + . + . + . + "Seitenverh\u00E4ltnis"@de . + "Aspect Ratio"@en . + "\u03BB\u03CC\u03B3\u03BF\u03C2"@el . + . + . + . + . + . + "zdb"@en . + "zdb"@sr . + "Identifier for serial titles. More precise than issn"@en . + "zdb \u0458\u0435 \u0441\u0435\u0440\u0438\u0458\u0441\u043A\u0438 \u0431\u0440\u043E\u0458 \u043A\u043E\u0458\u0438 \u0441\u0435 \u043A\u043E\u0440\u0438\u0441\u0442\u0438 \u0437\u0430 \u0438\u043D\u0434\u0435\u0442\u0438\u0444\u0438\u043A\u0430\u0446\u0438\u0458\u0443. \u041F\u0440\u0435\u0446\u0438\u0437\u043D\u0438\u0458\u0438 \u0458\u0435 \u043E\u0434 issn."@sr . + . + . + . + . + . + "percentage of alcohol"@en . + "Anteil von Alkohol"@de . + "alcoholpercentage"@nl . + "percentage of alcohol present in a beverage"@en . + . + . + . + . + . + "purchasing power parity rank"@en . + . + . + . + . + . + "world"@en . + "Welt"@de . + "\u0441\u0432\u0435\u0442"@sr . + . + . + . + . + . + "red long distance piste number"@en . + . + . + . + . + . + "government mountain"@en . + . + . + . + . + . + . + "subregion"@en . + . + . + . + . + . + . + "national tournament gold"@en . + . + . + . + . + . + "unitary authority"@en . + "\u0443\u043D\u0438\u0442\u0430\u0440\u043D\u0430 \u0432\u043B\u0430\u0441\u0442"@sr . + . + . + . + . + . + . + "imi\u0119 i nazwisko przy urodzeniu"@pl . + "geboortenaam"@nl . + "\u03CC\u03BD\u03BF\u03BC\u03B1_\u03B3\u03AD\u03BD\u03BD\u03B7\u03C3\u03B7\u03C2"@el . + "birth name"@en . + "nom de naixement"@ca . + "Geburtsname"@de . + . + . + . + . + . + . + "Cesar Award"@en . + . + . + . + . + . + . + "bloedgroep"@nl . + "\u03BF\u03BC\u03AC\u03B4\u03B1 \u03B1\u03AF\u03BC\u03B1\u03C4\u03BF\u03C2"@el . + "tipo sangu\u00EDneo"@pt . + "blood type"@en . + "\u8840\u6DB2\u578B"@ja . + "Blutgruppe"@de . + . + . + . + . + . + "follows"@en . + "folgt"@de . + "vient apr\u00E8s"@fr . + "sigue"@es . + . + . + . + . + "term period"@en . + "\u03C7\u03C1\u03BF\u03BD\u03B9\u03BA\u03AE \u03C0\u03B5\u03C1\u03AF\u03BF\u03B4\u03BF\u03C2"@el . + . + . + . + . + . + "description"@en . + "\u03C0\u03B5\u03C1\u03B9\u03B3\u03C1\u03B1\u03C6\u03AE"@el . + "Beschreibung"@de . + "omschrijving"@nl . + "Short description of a person"@en . + . + . + . + . + "EINECS number"@en . + . + . + . + . + . + "mouth place"@en . + . + . + . + . + . + . + "reporting mark"@en . + "A reporting mark is a two-, three-, or four-letter alphabetic code used to identify owners or lessees of rolling stock and other equipment used on the North American railroad network."@en . + . + . + . + . + . + "first pro match"@en . + "erstes Profispiel"@de . + . + . + . + . + . + "leader name"@en . + "naam leider"@nl . + "pr\u00E9sident"@fr . + "\u03CC\u03BD\u03BF\u03BC\u03B1_\u03B1\u03C1\u03C7\u03B7\u03B3\u03BF\u03CD"@el . + . + . + . + . + . + . + "share date"@en . + . + . + . + . + . + "conflict"@en . + "Konflikt"@de . + . + . + . + . + "mill dissapeared code NL"@en . + "verdwenen molen code NL"@nl . + . + . + . + . + . + "tag"@en . + . + . + . + . + "subdivision link"@en . + . + . + . + . + . + "music composer"@en . + "komponist"@de . + "componist"@nl . + "\u03BC\u03BF\u03C5\u03C3\u03B9\u03BA\u03AE"@el . + . + . + . + . + . + . + . + "number of lawyers"@en . + "Anzahl Rechtsanw\u00E4lte"@de . + "Number of lawyers or attorneys in the company."@en . + . + . + . + . + . + "prospect team"@en . + . + . + . + . + . + . + "criteria"@en . + "\u03BA\u03C1\u03B9\u03C4\u03AE\u03C1\u03B9\u03BF"@el . + "Kriterien"@de . + "crit\u00E9rio"@pt . + . + . + . + . + "home town"@en . + "Heimatort"@de . + . + . + . + . + . + . + "season number"@en . + "The season number to which the TelevisionEpisode belongs."@en . + . + . + . + . + . + "is route stop"@en . + "est un arr\u00EAt"@fr . + "indicate a place is a stop on a road."@en . + "indique qu'un lieu est un arr\u00EAt sur une route."@fr . + . + . + . + . + . + "scale"@en . + "Ma\u00DFstab"@de . + . + . + . + . + . + "capture date"@en . + . + . + . + . + . + "width quote"@en . + . + . + . + . + . + "provincie"@nl . + "\u03B4\u03AE\u03BC\u03BF\u03C2"@el . + "\u0443\u043F\u0440\u0430\u0432\u043D\u0438 \u043E\u043A\u0440\u0443\u0433"@sr . + "administrative district"@en . + "Verwaltungsbezirk"@de . + . + . + . + . + . + "national affiliation"@en . + "afiliacao nacional"@pt . + . + . + . + . + . + "demographics"@en . + "Demografie"@de . + . + . + . + . + . + "geology"@en . + "Geologie"@de . + "\u03B3\u03B5\u03C9\u03BB\u03BF\u03B3\u03AF\u03B1"@el . + "g\u00E9ologie"@fr . + . + . + . + . + "maximum temperature (K)"@en . + "Maximaltemperatur (K)"@de . + "\u03BC\u03AD\u03B3\u03B9\u03C3\u03C4\u03B7 \u03B8\u03B5\u03C1\u03BC\u03BF\u03BA\u03C1\u03B1\u03C3\u03AF\u03B1 (K)"@el . + . + . + . + . + . + "best lap"@en . + "beste Runde"@de . + . + . + . + . + . + "promoted"@en . + "y\u00FCkselenler"@tr . + . + . + . + . + . + . + "names"@en . + "Namen"@de . + . + . + . + . + . + "final flight"@en . + "letzter Flug"@de . + "date of final flight"@en . + . + . + . + . + . + "active year"@en . + "aktives Jahr"@de . + "\u0430\u043A\u0442\u0438\u0432\u043D\u0435 \u0433\u043E\u0434\u0438\u043D\u0435"@sr . + . + . + . + . + . + "other wins"@en . + "Sonstige Siege"@de . + . + . + . + . + . + . + "lethal when given to mice"@en . + "dodelijk voor muizen"@nl . + . + . + . + . + . + "subprefecture"@en . + . + . + . + . + . + "is close to"@en . + "\u00E0 c\u00F4t\u00E9 de"@fr . + "lieu proche d'un autre."@fr . + "place close to another place"@en . + . + . + . + . + . + "uses"@en . + "\u043A\u043E\u0440\u0438\u0441\u0442\u0438"@sr . + . + . + . + . + "tattoo"@en . + "\u03C4\u03B1\u03C4\u03BF\u03C5\u03AC\u03B6"@el . + "T\u00E4towierung"@de . + "tatuagem"@pt . + . + . + . + . + . + "Gr\u00FCnder"@de . + "founding person"@en . + "stichter"@nl . + "\u0399\u03B4\u03C1\u03C5\u03C4\u03AE\u03C2"@el . + . + . + . + . + . + . + "launches"@en . + . + . + . + . + . + "fansgroup"@en . + . + . + . + . + . + "population"@en . + . + . + . + . + . + "wars"@en . + "Kriege"@de . + "\u0440\u0430\u0442\u043E\u0432\u0438"@sr . + "\u03C0\u03BF\u03BB\u03AD\u03BC\u03BF\u03C5\u03C2"@el . + . + . + . + . + . + "end date and time"@en . + "datum en tijd van einde"@nl . + "The end date and time of the event."@en . + . + . + . + . + . + "successor"@en . + "opvolger"@nl . + "Nachfolger"@de . + "\u5F8C\u4EFB\u8005"@ja . + . + . + . + . + "previous demographics"@en . + "fr\u00FChere Demografie"@de . + . + . + . + . + . + "start occupation"@en . + . + . + . + . + "Votes against the resolution"@en . + "Stimmen gegen die Resolution"@de . + "Aantal stemmen tegen"@nl . + . + . + . + . + . + "number of seasons"@en . + "Anzahl der Staffeln"@de . + . + . + . + . + . + "neighbour constellations"@en . + "Nachbarsternbilder"@de . + . + . + . + . + . + "right tributary"@en . + "rechter Nebenfluss"@de . + "\u03B4\u03B5\u03BE\u03B9\u03BF\u03AF_\u03C0\u03B1\u03C1\u03B1\u03C0\u03CC\u03C4\u03B1\u03BC\u03BF\u03B9"@el . + . + . + . + . + . + . + "prefix"@en . + "Pr\u00E4fix"@de . + . + . + . + . + "country with first spaceflight"@en . + . + . + . + . + . + . + "region type"@en . + "regio-type"@nl . + . + . + . + . + . + "specialist"@en . + "Spezialist"@de . + . + . + . + . + . + "date foundation of a populated place"@en . + "Gr\u00FCndungsdatum eines besiedelten Ortes"@de . + . + . + . + . + . + "gold medal mixed"@en . + . + . + . + . + . + "delivery date"@en . + "leverdatum"@nl . + . + . + . + . + "purchasing power parity year"@en . + . + . + . + . + . + "championships"@en . + "Meisterschaft"@de . + . + . + . + . + . + "distance to Cardiff (\u03BC)"@en . + "\u03B1\u03C0\u03CC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03B1\u03C0\u03CC \u03C4\u03BF Cardiff (\u03BC)"@el . + . + . + . + . + . + "first broadcast"@en . + . + . + . + . + . + "referent bourgmestre"@en . + . + . + . + . + . + "\u03B1\u03C1\u03B9\u03B8\u03BC\u03CC\u03C2 \u03C0\u03B1\u03B9\u03C7\u03C4\u03CE\u03BD"@el . + "nombre de joueurs"@fr . + "numero de jugadores"@es . + "number of players"@en . + "Anzahl der Spieler"@de . + . + . + . + . + . + "league"@en . + "Liga"@de . + "\u03C0\u03C1\u03C9\u03C4\u03AC\u03B8\u03BB\u03B7\u03BC\u03B1"@el . + . + . + . + . + . + . + "okato code"@en . + . + . + . + . + . + "produced by"@en . + "hergestellt durch"@de . + . + . + . + . + . + "touristic site"@en . + . + . + . + . + . + . + "frazioni"@en . + . + . + . + . + . + . + "VIAF Id"@en . + "VIAF Id"@sr . + "Virtual International Authority File id (operated by Online Computer Library Center, OCLC).\nhttps://viaf.org/viaf/$1"@en . + . + . + . + . + "monument code (national)"@en . + "monumentcode rijksmonumenten"@nl . + "Code assigned to (Dutch) monuments at the national level, deemed to be of national value"@en . + "Code toegewezen aan (Nederlandse) monumenten, vallend onder bescherming op rijksniveau"@nl . + . + . + . + . + . + . + "crew"@en . + "Crew"@de . + . + . + . + . + . + . + "band"@en . + "\u03BC\u03C0\u03AC\u03BD\u03C4\u03B1"@el . + . + . + . + . + . + "blue long distance piste number"@en . + . + . + . + . + . + "total discs"@en . + "the total number of discs contained in the album"@en . + . + . + . + . + . + "friend"@en . + "Freund"@de . + "\u03C6\u03AF\u03BB\u03BF\u03C2"@el . + . + . + . + . + . + "head"@en . + . + . + . + . + . + . + "mission duration (s)"@en . + "Missionsdauer (s)"@de . + . + . + . + . + . + "european championship"@en . + "Europameisterschaft"@de . + . + . + . + . + . + "NDL id"@en . + "National Diet Library of Japan identificator. http://id.ndl.go.jp/auth/ndlna/$1"@en . + . + . + . + . + "model end year"@en . + . + . + . + . + . + "command structure"@en . + "Kommandostruktur"@de . + . + . + . + . + . + . + "main character"@en . + "personnage principal"@fr . + . + . + . + . + . + "coach season"@en . + . + . + . + . + . + "masters wins"@en . + . + . + . + . + . + "grupa uk\u0142adu okresowego"@pl . + "\u0433\u0440\u0443\u043F\u043F\u0430 \u043F\u0435\u0440\u0438\u043E\u0434\u0438\u0447\u0435\u0441\u043A\u043E\u0439 \u0441\u0438\u0441\u0442\u0435\u043C\u044B"@ru . + "element group"@en . + "gr\u00FApa an t\u00E1bla pheiriadaigh"@ga . + "grup de la taula peri\u00F2dica"@ca . + "Gruppe des Periodensystems"@de . + "grupa jest pionow\u0105 kolumn\u0105 w uk\u0142adzie okresowym pierwiastk\u00F3w chemicznych."@pl . + "\u043F\u043E\u0441\u043B\u0435\u0434\u043E\u0432\u0430\u0442\u0435\u043B\u044C\u043D\u043E\u0441\u0442\u044C \u0430\u0442\u043E\u043C\u043E\u0432 \u043F\u043E \u0432\u043E\u0437\u0440\u0430\u0441\u0442\u0430\u043D\u0438\u044E \u0437\u0430\u0440\u044F\u0434\u0430 \u044F\u0434\u0440\u0430, \u043E\u0431\u043B\u0430\u0434\u0430\u044E\u0449\u0438\u0445 \u043E\u0434\u043D\u043E\u0442\u0438\u043F\u043D\u044B\u043C \u044D\u043B\u0435\u043A\u0442\u0440\u043E\u043D\u043D\u044B\u043C \u0441\u0442\u0440\u043E\u0435\u043D\u0438\u0435\u043C."@ru . + "In chemistry, a group (also known as a family) is a column of elements in the periodic table of the chemical elements."@en . + "S\u00E9ard at\u00E1 i gceist le gr\u00FApa sa choimhth\u00E9acs seo n\u00E1 col\u00FAn ceartingearach i dt\u00E1bla peiriadach na nd\u00FAl ceimiceach."@ga . + "Un grup d'elements equival a una columna de la taula peri\u00F2dica."@ca . + "Unter einer Gruppe des Periodensystems versteht man in der Chemie jede Spalte des Periodensystems."@de . + . + . + . + . + . + "wing area (m2)"@en . + "Fl\u00FCgelfl\u00E4che (m2)"@de . + "\u043F\u043E\u0432\u0440\u0448\u0438\u043D\u0430 \u043A\u0440\u0438\u043B\u0430 (m2)"@sr . + . + . + . + . + . + "linked space"@en . + . + . + . + . + . + "citizenship"@en . + "burgerschap"@nl . + "Staatsangeh\u00F6rigkeit"@de . + "\u03C5\u03C0\u03B7\u03BA\u03BF\u03CC\u03C4\u03B7\u03C4\u03B1"@el . + . + . + . + . + . + . + "route start location"@en . + "Ort des Weganfangs"@de . + "The start location of the route."@en . + "Der Startort des Verkehrswegs."@de . + . + . + . + . + . + . + "olympic oath sworn by athlete"@en . + . + . + . + . + . + . + . + "depth quote"@en . + . + . + . + . + . + "final lost double"@en . + . + . + . + . + . + "wins at japan"@en . + . + . + . + . + . + "hand"@en . + "Hand"@de . + . + . + . + . + "EC number"@en . + "EC\u756A\u53F7"@ja . + . + . + . + . + . + . + "\u03BC\u03AD\u03B3\u03B5\u03B8\u03BF\u03C2 \u03B5\u03B9\u03BA\u03CC\u03BD\u03B1\u03C2 (px1)"@el . + "taille de l'image (px)"@fr . + "tama\u00F1o de la imagen (px)"@es . + "image size (px)"@en . + "\u30A4\u30E1\u30FC\u30B8\u30B5\u30A4\u30BA\u3000(px2)"@ja . + "Bildgr\u00F6\u00DFe (px)"@de . + "the image size expressed in pixels"@en . + . + . + . + . + "jockey"@en . + "Jockey"@de . + . + . + . + . + . + . + "Link from a Wikipage to an external page"@en . + "Reserved for DBpedia."@en . + . + . + . + "whole area"@en . + "gesamter Bereich"@de . + . + . + . + . + . + "next mission"@en . + "n\u00E4chste Mission"@de . + "mision siguiente"@fr . + . + . + . + . + . + . + . + "compiler"@en . + "For compilation albums: the person or entity responsible for selecting the album's track listing."@en . + . + . + . + . + . + . + "domain"@en . + "domein"@nl . + "\u30C9\u30E1\u30A4\u30F3_(\u5206\u985E\u5B66)"@ja . + . + . + . + . + . + "kind of rock"@en . + "Art von Gestein"@de . + . + . + . + . + . + "IATA code"@en . + "IATA designation for airline companies"@en . + . + . + . + . + . + . + "number of classrooms"@en . + "\u03B1\u03C1\u03B9\u03B8\u03BC\u03CC\u03C2 \u03B1\u03B9\u03B8\u03BF\u03C5\u03C3\u03CE\u03BD"@el . + . + . + . + . + . + "strona A"@pl . + "\u03B5\u03BE\u03CE\u03C6\u03C5\u03BB\u03BB\u03BF"@el . + "\u0441\u0442\u0440\u0430\u043D\u0430"@sr . + "a side"@en . + "taobh a"@ga . + "cara A"@ca . + "Single"@de . + . + . + . + . + . + "active years"@en . + "aktive Jahre"@de . + "\u0430\u043A\u0442\u0438\u0432\u043D\u0435 \u0433\u043E\u0434\u0438\u043D\u0435"@sr . + "Also called \"floruit\". Use this if the active years are in one field that can't be split. Else use activeYearsStartYear and activeYearsEndYear"@en . + . + . + . + . + . + "echtgenoot"@nl . + "\u03C3\u03CD\u03B6\u03C5\u03B3\u03BF\u03C2"@el . + "spouse"@en . + "\u914D\u5076\u8005"@ja . + "Ehepartner"@de . + "the person they are married to"@en . + "\u03A4\u03BF \u03AC\u03C4\u03BF\u03BC\u03BF \u03BC\u03B5 \u03C4\u03BF \u03BF\u03C0\u03BF\u03AF\u03BF \u03BA\u03AC\u03C0\u03BF\u03B9\u03BF\u03C2 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03C0\u03B1\u03BD\u03C4\u03C1\u03B5\u03BC\u03AD\u03BD\u03BF\u03C2"@el . + . + . + . + . + . + . + . + . + "track number"@en . + "Titelnummer"@de . + "\u03BD\u03BF\u03CD\u03BC\u03B5\u03C1\u03BF \u03C4\u03C1\u03B1\u03B3\u03BF\u03C5\u03B4\u03B9\u03BF\u03CD"@el . + . + . + . + . + . + "disbanded"@en . + . + . + . + . + . + "crew size"@en . + "Besatzungsst\u00E4rke"@de . + . + . + . + . + . + "LCC"@en . + "The Library of Congress Classification (LCC) is a system of library classification developed by the Library of Congress."@en . + . + . + . + . + . + "battle"@en . + "veldslag"@nl . + "Schlacht"@de . + . + . + . + . + . + . + "number of lines"@en . + "Anzahl der Linien"@de . + "Number of lines in the transit system."@en . + . + . + . + . + . + "right ascension"@en . + . + . + . + . + . + "body discovered"@en . + "Leiche entdeckt"@de . + "\u03B1\u03BD\u03B1\u03BA\u03AC\u03BB\u03C5\u03C8\u03B7 \u03C3\u03CE\u03BC\u03B1\u03C4\u03BF\u03C2"@el . + "\u907A\u4F53\u767A\u898B"@ja . + . + . + . + . + . + "elevator count"@en . + "Aufz\u00FCge"@de . + . + . + . + . + . + "agency"@en . + "Agentur"@de . + "\u0434\u0435\u043B\u0430\u0442\u043D\u043E\u0441\u0442"@sr . + . + . + . + . + "fuel system"@en . + "Kraftstoffsystem"@de . + . + . + . + . + . + . + "lah hof"@en . + . + . + . + . + . + "north-west place"@en . + "lieu au nord-ouest"@fr . + "indique un autre lieu situ\u00E9 au nord-ouest."@fr . + "indicates another place situated north-west."@en . + . + . + . + . + . + . + "Digital Library code NL"@en . + "DBNL code NL"@nl . + "identifier in Dutch digital library (dbnl)"@en . + "ID in Digitale Bibliotheek voor de Nederlandse Letteren (dbnl)"@nl . + . + . + . + . + . + "launch vehicle"@en . + . + . + . + . + . + . + "aircraft attack"@en . + "Flugzeugangriff"@de . + "\u043D\u0430\u043F\u0430\u0434 \u0438\u0437 \u0432\u0430\u0437\u0434\u0443\u0445\u0430"@sr . + "\u03B5\u03C0\u03AF\u03B8\u03B5\u03C3\u03B7 \u03B1\u03B5\u03C1\u03BF\u03C3\u03BA\u03AC\u03C6\u03BF\u03C5\u03C2"@el . + . + . + . + . + . + . + "page length (characters) of wiki page"@en . + "Reserved for DBpedia."@en . + . + . + . + . + "institution"@en . + "Institution"@de . + "institutie"@nl . + . + . + . + . + . + "club"@en . + "Verein"@de . + "club"@nl . + "\u03BF\u03BC\u03AC\u03B4\u03B1"@el . + . + . + . + . + . + . + . + "service end year"@en . + . + . + . + . + . + "prime minister"@en . + "minister-president"@nl . + "Premierminister"@de . + . + . + . + . + . + . + "albedo"@en . + "albedo"@el . + "\u0430\u043B\u0431\u0435\u0434\u043E"@sr . + "reflection coefficient"@en . + "\u03C3\u03C5\u03BD\u03C4\u03B5\u03BB\u03B5\u03C3\u03C4\u03AE\u03C2 \u03B1\u03BD\u03AC\u03BA\u03BB\u03B1\u03C3\u03B7\u03C2"@el . + . + . + . + . + . + . + "retirement date"@en . + "pensioendatum"@nl . + . + . + . + . + . + "ISO 3166-1 code"@en . + "defines codes for the names of countries, dependent territories, and special areas of geographical interest"@en . + . + . + . + . + . + . + . + . + "bust-waist-hip Size"@en . + "\u0440\u0430\u0437\u043C\u0435\u0440 \u0431\u044E\u0441\u0442-\u0442\u0430\u043B\u0438\u044F-\u0445\u0430\u043D\u0448"@bg . + "Use this property if all 3 sizes are given together (DBpedia cannot currently extract 3 Lengths out of a field). Otherwise use separate fields bustSize, waistSize, hipSize"@en . + . + . + . + . + . + "previous entity"@en . + . + . + . + . + . + . + "features"@en . + "\u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03CC"@el . + "kenmerk"@nl . + . + . + . + . + . + . + "fuel type"@en . + "\u03C4\u03CD\u03C0\u03BF\u03C2 \u03BA\u03B1\u03C5\u03C3\u03AF\u03BC\u03BF\u03C5"@el . + "Kraftstofftyp"@de . + . + . + . + . + . + . + "old name"@en . + "\u03C0\u03B1\u03BB\u03B9\u03CC \u03CC\u03BD\u03BF\u03BC\u03B1"@el . + "alter Name"@de . + . + . + . + . + . + "painter"@en . + "Maler"@de . + "\u03B6\u03C9\u03B3\u03C1\u03AC\u03C6\u03BF\u03C2"@el . + . + . + . + . + . + . + "number of graduate students"@en . + "Zahl der Studenten"@de . + . + . + . + . + . + "military unit"@en . + "Milit\u00E4reinheit"@de . + "For persons who are not notable as commanding officers, the unit (company, battalion, regiment, etc.) in which they served."@en . + . + . + . + . + . + . + "commander"@en . + "Befehlshaber"@de . + "commandant"@nl . + . + . + . + . + . + "sound recording"@en . + "Sound recording somehow related to the subject"@en . + . + . + . + . + "youth club"@en . + "Jugendclub"@de . + "\u043E\u043C\u043B\u0430\u0434\u0438\u043D\u0441\u043A\u0438 \u043A\u043B\u0443\u0431"@sr . + "jeugdclub"@nl . + . + . + . + . + . + . + "flooding date"@en . + . + . + . + . + "musical artist"@en . + . + . + . + . + . + . + . + "per capita income ($)"@en . + "Pro-Kopf-Einkommen ($)"@de . + "renda per capita ($)"@pt . + . + . + . + . + . + "jaartemperatuur (K)"@nl . + "\u03B5\u03C4\u03AE\u03C3\u03B9\u03B1 \u03B8\u03B5\u03C1\u03BC\u03BF\u03BA\u03C1\u03B1\u03C3\u03AF\u03B1 (K)"@el . + "\u0433\u043E\u0434\u0438\u0448\u045A\u0430 \u0442\u0435\u043C\u043F\u0435\u0440\u0430\u0442\u0443\u0440\u0430 (K)"@sr . + "annual temperature (K)"@en . + "Jahrestemperatur (K)"@de . + . + . + . + . + . + "capacity factor"@en . + . + . + . + . + . + "miejsce zamieszkania"@pl . + "verblijfplaats"@nl . + "\u03BA\u03B1\u03C4\u03BF\u03B9\u03BA\u03AF\u03B1"@el . + "residence"@en . + "\u5C45\u4F4F\u5730"@ja . + "Residenz"@de . + "Place of residence of a person."@en . + . + . + . + . + . + . + . + "principal area"@en . + "Hauptbereich"@de . + . + . + . + . + . + . + "elevation quote"@en . + . + . + . + . + . + "maximum ELO rating"@en . + . + . + . + . + . + "measurements"@en . + "Messungen"@de . + "medidas"@pt . + . + . + . + . + . + "military function"@en . + "milit\u00E4rische Funktion"@de . + . + . + . + . + . + "sister college"@en . + . + . + . + . + . + . + "first game"@en . + "erstes Spiel"@de . + . + . + . + . + . + "building start date"@en . + "\u0397\u03BC\u03B5\u03C1\u03BF\u03BC\u03B7\u03BD\u03AF\u03B1 \u03AD\u03BD\u03B1\u03C1\u03BE\u03B7\u03C2 \u03BA\u03B1\u03C4\u03B1\u03C3\u03BA\u03B5\u03C5\u03AE\u03C2"@el . + . + . + . + . + . + "assembly"@en . + "Montage"@de . + "\u03C3\u03C5\u03BD\u03AD\u03BB\u03B5\u03C5\u03C3\u03B7"@el . + . + . + . + . + "result"@en . + "Folge"@de . + "\u03B1\u03C0\u03BF\u03C4\u03AD\u03BB\u03B5\u03C3\u03BC\u03B1"@el . + . + . + . + . + . + "length of a frontier"@en . + . + . + . + . + . + "dean"@en . + "Dekan"@de . + "\u03C0\u03C1\u03CD\u03C4\u03B1\u03BD\u03B7\u03C2"@el . + "decaan"@nl . + . + . + . + . + . + . + "original maximum boat beam (\u03BC)"@en . + . + . + . + . + . + "tribus"@en . + "St\u00E4mme"@de . + "stam"@nl . + . + . + . + . + . + "phone prefix label of a settlement"@en . + . + . + . + . + . + "old province"@en . + "alte Provinz"@de . + . + . + . + . + . + . + "DrugBank"@en . + "DrugBank"@ja . + . + . + . + . + "atomic weight"@en . + "Mais adamhach choibhneasta"@ga . + "the ratio of the average mass of atoms of an element (from a single given sample or source) to 1\u204412 of the mass of an atom of carbon-12"@en . + "Maiseanna adamh, a chuirtear s\u00EDos i dt\u00E9arma\u00ED aonaid maise adamha\u00ED u."@ga . + . + . + . + . + . + "pro bowl pick"@en . + . + . + . + . + . + "other language of a settlement"@en . + "anderen Sprache einer Siedlung"@de . + . + . + . + . + . + "Radius_ly"@en . + . + . + . + . + . + "number of visitors"@en . + "Besucherzahl"@de . + "\u03B1\u03C1\u03B9\u03B8\u03BC\u03CC\u03C2 \u03B5\u03C0\u03B9\u03C3\u03BA\u03B5\u03C0\u03C4\u03CE\u03BD"@el . + "bezoekersaantal"@nl . + . + . + . + . + "displacement (g)"@en . + "Deplacement (g)"@de . + "A ship's displacement is its mass at any given time."@en . + . + . + . + . + . + "designation of runway"@en . + . + . + . + . + . + "mouth country"@en . + "\u03C7\u03CE\u03C1\u03B5\u03C2_\u03BB\u03B5\u03BA\u03AC\u03BD\u03B7\u03C2"@el . + . + . + . + . + . + . + "orbital period (s)"@en . + "Umlaufzeit (s)"@de . + "\u03A0\u03B5\u03C1\u03AF\u03BF\u03B4\u03BF\u03C2 \u03C0\u03B5\u03C1\u03B9\u03C6\u03BF\u03C1\u03AC\u03C2 (s)"@el . + . + . + . + . + . + "FC"@en . + "FC"@fr . + . + . + . + . + . + "wingspan (\u03BC)"@en . + "Spannweite (\u03BC)"@de . + "\u0440\u0430\u0441\u043F\u043E\u043D \u043A\u0440\u0438\u043B\u0430 (\u03BC)"@sr . + . + . + . + . + . + "Alps major sector"@en . + "\u0433\u043B\u0430\u0432\u043D\u0438 \u0410\u043B\u043F\u0441\u043A\u0438 \u0441\u0435\u043A\u0442\u043E\u0440"@sr . + "\u03C3\u03B7\u03BC\u03B1\u03BD\u03C4\u03B9\u03BA\u03CC\u03C4\u03B5\u03C1\u03BF\u03C2 \u03C4\u03BF\u03BC\u03AD\u03B1\u03C2 \u03C4\u03C9\u03BD \u03AC\u03BB\u03C0\u03B5\u03C9\u03BD"@el . + "grande settore alpino"@it . + "the Alps major sector to which the mountain belongs, according to the SOIUSA classification"@en . + . + . + . + . + . + . + "law country"@en . + . + . + . + . + . + "number of officials"@en . + "Zahl der Beamten"@de . + . + . + . + . + . + "call sign"@en . + "indicativo de chamada"@pt . + "A call sign is not the name of a broadcaster! In broadcasting and radio communications, a call sign (also known as a call name or call letters, or abbreviated as a call) is a unique designation for a transmitting station."@en . + "Indicativo de chamada (tamb\u00E9m chamado de call-sign, call letters ou simplesmente call) \u00E9 uma designa\u00E7\u00E3o \u00FAnica de uma esta\u00E7\u00E3o de transmiss\u00E3o de r\u00E1dio. Tamb\u00E9m \u00E9 conhecido, de forma err\u00F4nea, como prefixo."@pt . + . + . + . + . + "colleague"@en . + "Colleague of a Person or OfficeHolder (not PersonFunction nor CareerStation). Sub-properties include: president, vicePresident, chancellor, viceChancellor, governor, lieutenant. Points to a Person who may have a general \"position\" (resource) or \"title\" (literal)."@en . + . + . + . + . + . + . + "service start year"@en . + . + . + . + . + . + "international phone prefix label"@en . + . + . + . + . + . + "approved rating of the Entertainment Software Self-Regulation Body in Germany"@en . + "zugelassene Bewertung der Unterhaltungssoftware Selbstkontrolle in Deutschland"@de . + "\u043E\u0434\u043E\u0431\u0440\u0435\u043D\u0438 \u0440\u0435\u0458\u0442\u0438\u043D\u0433 \u043E\u0434 \u0441\u0442\u0440\u0430\u043D\u0435 \u0440\u0435\u0433\u0443\u043B\u0430\u0442\u043E\u0440\u043D\u043E\u0433 \u0442\u0435\u043B\u0430 \u0437\u0430 \u0437\u0430\u0431\u0430\u0432\u043D\u0438 \u0441\u043E\u0444\u0442\u0432\u0435\u0440 \u0443 \u041D\u0435\u043C\u0430\u0447\u043A\u043E\u0458"@sr . + . + . + . + . + "last flight end date"@en . + . + . + . + . + . + "left child"@en . + . + . + . + . + . + . + "manager club"@en . + "Clubmanager"@de . + . + . + . + . + . + . + "last family member"@en . + "letztes Familienmitglied"@de . + "laatste drager familienaam"@nl . + . + . + . + . + . + "aircraft electronic"@en . + "\u03B7\u03BB\u03B5\u03BA\u03C4\u03C1\u03BF\u03BD\u03B9\u03BA\u03CC \u03B1\u03B5\u03C1\u03BF\u03C3\u03BA\u03AC\u03C6\u03BF\u03C2"@el . + . + . + . + . + . + . + "number of neighbourhood"@en . + . + . + . + . + . + "us open single"@en . + "US Open \u043F\u043E\u0458\u0435\u0434\u0438\u043D\u0430\u0447\u043D\u043E"@sr . + . + . + . + . + . + "overall record"@en . + "Gesamtbilanz"@de . + . + . + . + . + . + "ptak"@pl . + "\u03C0\u03C4\u03B7\u03BD\u03AC"@el . + "bird"@en . + "\u00E9an"@ga . + "Vogel"@de . + "\u03A4\u03B1 \u03C0\u03C4\u03B7\u03BD\u03AC \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B6\u03CE\u03B1 \u03BF\u03BC\u03BF\u03B9\u03CC\u03B8\u03B5\u03C1\u03BC\u03B1 \u03C3\u03C0\u03BF\u03BD\u03B4\u03C5\u03BB\u03C9\u03C4\u03AC, \u03C0\u03BF\u03C5 \u03C3\u03C4\u03B7 \u03C3\u03C5\u03BD\u03C4\u03C1\u03B9\u03C0\u03C4\u03B9\u03BA\u03AE \u03C0\u03BB\u03B5\u03B9\u03BF\u03BD\u03CC\u03C4\u03B7\u03C4\u03B1 \u03C4\u03BF\u03C5\u03C2 \u03BC\u03C0\u03BF\u03C1\u03BF\u03CD\u03BD \u03BD\u03B1 \u03C0\u03B5\u03C4\u03BF\u03CD\u03BD \u03BC\u03B5 \u03C4\u03B9\u03C2 \u03C0\u03C4\u03AD\u03C1\u03C5\u03B3\u03B5\u03C2 \u03AE \u03C6\u03C4\u03B5\u03C1\u03BF\u03CD\u03B3\u03B5\u03C2 \u03C4\u03BF\u03C5\u03C2."@el . + . + . + . + . + . + "rebuilder"@en . + . + . + . + . + . + "resting place"@en . + "Ruhest\u00E4tte"@de . + "\u57CB\u846C\u5730"@ja . + . + . + . + . + . + . + "geologic period"@en . + . + . + . + . + . + "largest city"@en . + "gr\u00F6\u00DFte Stadt"@de . + . + . + . + . + . + . + "secondLeader"@en . + "vice-voorzitter"@nl . + . + . + . + . + . + "twin city"@en . + "Partnerstadt"@de . + "tweeling stad"@nl . + . + . + . + . + . + . + "document number"@en . + "Dokumentnummer"@de . + "documentnummer"@nl . + "Identification a document within a particular registry"@en . + . + . + . + . + . + "filling station"@en . + . + . + . + . + . + "hairs"@en . + . + . + . + . + . + "flower"@en . + "Blume"@de . + "\u03BB\u03BF\u03C5\u03BB\u03BF\u03CD\u03B4\u03B9"@el . + . + . + . + . + . + "production start date"@en . + "Produktionsbeginn"@de . + . + . + . + . + "rank"@en . + "Platzierung"@de . + . + . + . + . + "number of counties"@en . + "Anzahl der Landkreise"@de . + "n\u00FAmero de condados"@pt . + . + . + . + . + . + "band member"@en . + "Bandmitglied"@de . + "bandlid"@nl . + "\u03BC\u03AD\u03BB\u03BF\u03C2 \u03BC\u03C0\u03AC\u03BD\u03C4\u03B1\u03C2"@el . + "A member of the band."@en . + "\u0388\u03BD\u03B1 \u03BC\u03AD\u03BB\u03BF\u03C2 \u03C4\u03B7\u03C2 \u03BC\u03C0\u03AC\u03BD\u03C4\u03B1\u03C2."@el . + . + . + . + . + . + . + "common name"@en . + "gew\u00F6hnlicher Name"@de . + "The common name of an entity. Frequently, foaf:name is used for all of the different names of a person; this property just defines the most commonly used name."@en . + . + . + . + . + "pro since"@en . + . + . + . + . + . + "merger date"@en . + . + . + . + . + . + "be\u00EFnvloed door"@nl . + "\u03B5\u03C0\u03B9\u03C1\u03C1\u03BF\u03AD\u03C2"@el . + "influenc\u00E9 par"@fr . + "influenced by"@en . + "beeinflusst durch"@de . + "The subject was influenced by the object. inverseOf influenced."@en . + . + . + . + . + . + . + "wins in Europe"@en . + "\u043F\u043E\u0431\u0435\u0434\u0435 \u0443 \u0415\u0432\u0440\u043E\u043F\u0438"@sr . + "Siege in Europa"@de . + . + . + . + . + . + "pga wins"@en . + . + . + . + . + . + "fare zone"@en . + "Tarifzone"@de . + "The fare zone in which station is located."@en . + "Die Tarifzone zu der die Station geh\u00F6rt."@de . + . + . + . + . + . + "municipality code"@en . + "Gemeindecode"@de . + "gemeente-code"@nl . + . + . + . + . + . + "artery"@en . + "Arterie"@de . + "\u03B1\u03C1\u03C4\u03B7\u03C1\u03AF\u03B1"@el . + "ader"@nl . + . + . + . + . + . + . + "solubility"@en . + "L\u00F6slichkeit"@de . + "oplosbaarheid"@nl . + . + . + . + . + . + "suppredded date"@en . + "oppressie datum"@nl . + "\u0434\u0430\u0442\u0430 \u043D\u0430 \u0437\u0430\u0431\u0440\u0430\u043D\u0430\u0442\u0430"@bg . + "Date when the Church forbade the veneration of this saint. \n(I hope that's what it means, I don't know why the original author didn't document it)"@en . + . + . + . + . + . + "railway rolling stock"@en . + "Operierende Schienenfahrzeuge"@de . + . + . + . + . + . + "code istat"@en . + . + . + . + . + . + "extinction year"@en . + . + . + . + . + . + "Staatsform"@de . + "government type"@en . + "staatsvorm"@nl . + "tipo de governo"@pt . + "broadly, the type of structure of its government"@en . + . + . + . + . + . + "date of abandonment"@en . + . + . + . + . + "score"@en . + . + . + . + "amateur year"@en . + . + . + . + . + . + "most steady"@en . + "en istikrarl\u0131"@tr . + . + . + . + . + . + . + "launch date"@en . + "Starttermin"@de . + . + . + . + . + . + . + "country with first astronaut"@en . + . + . + . + . + . + . + "feast day, holiday"@en . + "Festtag"@de . + "feestdag"@nl . + "A day of celebration associated with the entity. Applies to Saint, School etc"@en . + . + . + . + . + "function start date"@en . + . + . + . + . + . + "previous editor"@en . + "\u03C0\u03C1\u03CE\u03B7\u03BD \u03C3\u03C5\u03BD\u03C4\u03AC\u03BA\u03C4\u03B7\u03C2"@el . + . + . + . + . + . + . + "hra state"@en . + . + . + . + . + . + "government elevation (\u03BC)"@en . + . + . + . + . + . + "visitors total"@en . + "Gesamtbesucher"@de . + "\u0443\u043A\u0443\u043F\u0430\u043D \u0431\u0440\u043E\u0458 \u043F\u043E\u0441\u0435\u0442\u0438\u043B\u0430\u0446\u0430"@sr . + "\u03B5\u03C0\u03B9\u03B2\u03B1\u03C4\u03B9\u03BA\u03AE \u03BA\u03AF\u03BD\u03B7\u03C3\u03B7"@el . + . + . + . + . + . + "country origin"@en . + "Land Herkunft"@de . + . + . + . + . + . + . + "current season"@en . + "aktuelle Spielzeit"@de . + "\u03A4\u03C1\u03AD\u03C7\u03BF\u03BD \u03A0\u03B5\u03C1\u03AF\u03BF\u03B4\u03BF\u03C2"@el . + . + . + . + . + . + "other channel"@en . + . + . + . + . + . + "is part of route"@en . + "ist Teil der Route"@de . + "Name of another route from which the route is part of. Infobox property values are mostly given as plain text, therefore range is xsd:string."@en . + . + . + . + . + . + . + "wsop itm"@en . + "WSOP ITM"@sr . + . + . + . + . + . + "beltway city"@en . + . + . + . + . + . + . + "management mountain"@en . + . + . + . + . + . + "vice principal label"@en . + . + . + . + . + . + "number of islands"@en . + "Anzahl der Inseln"@de . + "\u03B1\u03C1\u03B9\u03B8\u03BC\u03CC\u03C2 \u03BD\u03B7\u03C3\u03B9\u03CE\u03BD"@el . + "aantal eilanden"@nl . + . + . + . + . + . + "reference for geographic data"@en . + "Referenz f\u00FCr geographische Daten"@de . + . + . + . + . + . + "has abstract"@en . + "abstract"@de . + "\u03AD\u03C7\u03B5\u03B9 \u03C0\u03B5\u03C1\u03AF\u03BB\u03B7\u03C8\u03B7"@el . + "\u0430\u043F\u0441\u0442\u0440\u0430\u043A\u0442"@sr . + "Reserved for DBpedia."@en . + "\u03A0\u03C1\u03BF\u03BF\u03C1\u03AF\u03B6\u03B5\u03C4\u03B1\u03B9 \u03B3\u03B9\u03B1 \u03C4\u03B7\u03BD DBpedia."@el . + . + . + . + . + "solvent with bad solubility"@en . + "L\u00F6sungsmittel mit schlechter L\u00F6slichkeit"@de . + "slecht oplosbaar in"@nl . + . + . + . + . + . + "floor area (m2)"@en . + "vloeroppervlak (m2)"@nl . + "\u03C0\u03B5\u03C1\u03B9\u03BF\u03C7\u03AE \u03BF\u03C1\u03CC\u03C6\u03C9\u03BD (m2)"@el . + . + . + . + . + . + "service start date"@en . + . + . + . + . + . + "apskritis"@en . + "\u043B\u0438\u0442\u0432\u0430\u043D\u0441\u043A\u0438 \u043E\u043A\u0440\u0443\u0433"@sr . + . + . + . + . + . + "nobel laureates"@en . + "Nobelpreistr\u00E4ger"@de . + . + . + . + . + . + . + "naam bevolkingsgroep"@nl . + "\u03C4\u03BF\u03C0\u03BF\u03BD\u03CD\u03BC\u03B9\u03BF_\u03C0\u03BB\u03B7\u03B8\u03C5\u03C3\u03BC\u03BF\u03CD"@el . + "d\u00E9monyme"@fr . + "demonym"@en . + "Volksbezeichnung"@de . + . + . + . + . + "commandant"@en . + "Kommandant"@de . + . + . + . + . + . + . + "ncbhof"@en . + . + . + . + . + . + "short prog score"@en . + . + . + . + . + . + "kind of criminal"@en . + . + . + . + . + . + "map caption"@en . + . + . + . + . + . + "first launch"@en . + "erster Start"@de . + . + . + . + . + . + "merged into party"@en . + "Aufgegangen in Partei"@de . + . + . + . + . + . + . + . + "average annual gross power generation (J)"@en . + . + . + . + . + . + "maximum inclination"@en . + . + . + . + . + . + "lyrics"@en . + "\u03C3\u03C4\u03AF\u03C7\u03BF\u03B9"@el . + "parolier"@fr . + "\u6B4C\u8A5E"@ja . + . + . + . + . + . + . + "maximum discharge (m\u00B3/s)"@en . + . + . + . + . + "allegiance"@en . + "\u03C5\u03C0\u03BF\u03C4\u03B1\u03B3\u03AE"@el . + "\u0432\u0435\u0440\u043D\u043E\u0441\u0442"@sr . + "The country or other power the person served. Multiple countries may be indicated together with the corresponding dates. This field should not be used to indicate a particular service branch, which is better indicated by the branch field."@en . + . + . + . + . + . + "term of office"@en . + "Amtszeit"@de . + . + . + . + . + . + "ISO region code"@en . + "ISO-L\u00E4ndercode"@de . + "ISO regiocode"@nl . + . + . + . + . + . + . + "von Klitzing electromagnetic constant (RK)"@en . + "von Klitzing elektromagnetisch Konstant (RK)"@de . + . + . + . + . + . + "county seat"@en . + "provincie zetel"@nl . + . + . + . + . + . + "number of vineyards"@en . + "Anzahl von Weinbergen"@de . + . + . + . + . + . + "rotation period (s)"@en . + . + . + . + . + . + "active years end date"@en . + "\u03B5\u03BD\u03B5\u03C1\u03B3\u03AE \u03B7\u03BC\u03B5\u03C1\u03BF\u03BC\u03B7\u03BD\u03AF\u03B1 \u03BB\u03AE\u03BE\u03B7\u03C2 \u03C7\u03C1\u03CC\u03BD\u03BF\u03C5"@el . + "actieve jaren einddatum"@nl . + "\u0434\u0430\u0442\u0443\u043C \u0437\u0430\u0432\u0440\u0448\u0435\u0442\u043A\u0430 \u0430\u043A\u0442\u0438\u0432\u043D\u0438\u0445 \u0433\u043E\u0434\u0438\u043D\u0430"@sr . + . + . + . + . + "career prize money ($)"@en . + "prijzengeld loopbaan ($)"@nl . + . + . + . + . + . + "number of items in collection"@en . + "Anzahl der Elemente in der Sammlung"@de . + "aantal titels/items"@nl . + "Indication as to the size of the collection of this library"@en . + "Aanduiding van omvang van de collectie van deze bibliotheek"@nl . + . + . + . + . + . + "sign name of a hungarian settlement"@en . + . + . + . + . + . + "unlc code"@en . + "UNLC \u043A\u043E\u0434"@sr . + . + . + . + . + . + "musical key"@en . + "Tonart"@de . + "\u03BC\u03BF\u03C5\u03C3\u03B9\u03BA\u03CC \u03BA\u03BB\u03B5\u03B9\u03B4\u03AF"@el . + "toonsoort"@nl . + . + . + . + . + . + "onderscheiding"@nl . + "\u03B4\u03B9\u03B1\u03BA\u03C1\u03AF\u03C3\u03B5\u03B9\u03C2"@el . + "r\u00E9compense"@fr . + "award"@en . + "\u53D7\u8CDE"@ja . + "Auszeichnung"@de . + . + . + . + . + . + . + . + . + "ethnic group"@en . + "ethnie"@de . + "etnia"@it . + . + . + . + . + . + . + "production company"@en . + "Produktionsfirma"@de . + "productiebedrijf"@nl . + "the company that produced the work e.g. Film, MusicalWork, Software"@en . + . + . + . + . + . + . + "movie"@en . + "Film"@de . + . + . + . + . + . + . + "continental tournament silver"@en . + . + . + . + . + . + "airdate"@en . + "\u03B7\u03BC\u03B5\u03C1\u03BF\u03BC\u03B7\u03BD\u03AF\u03B1 \u03B1\u03AD\u03C1\u03B1"@el . + "\u0434\u0430\u0442\u0443\u043C \u0435\u043C\u0438\u0442\u043E\u0432\u0430\u045A\u0430"@sr . + . + . + . + . + . + "current team member"@en . + "A current member of an athletic team."@en . + . + . + . + . + . + . + "wins at LET"@en . + "\u043F\u043E\u0431\u0435\u0434\u0435 \u043D\u0430 LET"@sr . + . + . + . + . + . + "Crew"@de . + "\u03C0\u03BB\u03AE\u03C1\u03C9\u03BC\u03B1"@el . + "crew"@en . + . + . + . + . + . + . + "rector"@en . + "Rektor"@de . + . + . + . + . + . + . + "active years start year"@en . + "\u03B5\u03BD\u03B5\u03C1\u03B3\u03CC\u03C2 \u03C7\u03C1\u03CC\u03BD\u03BF\u03C2 \u03AD\u03C4\u03BF\u03C2 \u03BB\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1\u03C2"@el . + "actieve jaren start jaar"@nl . + "\u043F\u043E\u0447\u0435\u0442\u043D\u0430 \u0433\u043E\u0434\u0438\u043D\u0430 \u0430\u043A\u0442\u0438\u0432\u043D\u0438\u0445 \u0433\u043E\u0434\u0438\u043D\u0430"@sr . + . + . + . + . + "office"@en . + "\u03C5\u03C0\u03B7\u03C1\u03B5\u03C3\u03AF\u03B1"@el . + "B\u00FCro"@de . + . + . + . + . + "thumbnail localization"@en . + . + . + . + . + . + "number of suites"@en . + . + . + . + . + . + "drains from"@en . + . + . + . + . + . + . + "temperature (K)"@en . + "Temperatur (K)"@de . + "\u03B8\u03B5\u03C1\u03BC\u03BF\u03BA\u03C1\u03B1\u03C3\u03AF\u03B1 (K)"@el . + "temp\u00E9rature (K)"@fr . + . + . + . + . + "information"@en . + "Informationen"@de . + . + . + . + . + . + "number of newly introduced sports"@en . + "numbre de sports nouvellement ajout\u00E9s"@fr . + "numero de deportes nuevamente a\u00F1adidos"@es . + . + . + . + . + . + "government country"@en . + . + . + . + . + . + . + "original title"@en . + "Originaltitel"@de . + "oorspronkelijke titel"@nl . + "The original title of the work, most of the time in the original language as well"@en . + . + . + . + . + . + "mute character in play"@en . + "Name of a mute character in play."@en . + . + . + . + . + . + . + "FilmPolski.pl id"@en . + . + . + . + . + "campus type"@en . + . + . + . + . + . + "developer"@en . + "ontwikkelaar"@nl . + "Entwickler"@de . + "d\u00E9veloppeur"@fr . + . + . + . + . + . + . + . + "blue ski piste number"@en . + . + . + . + . + . + "gene location start"@en . + "locus startpunt"@nl . + "\u907A\u4F1D\u5B50\u5EA7\u306E\u30B9\u30BF\u30FC\u30C8\u5EA7\u6A19"@ja . + "the start of the gene coordinates"@en . + . + . + . + . + . + "capital coordinates"@en . + "Hauptstadt Koordinaten"@de . + . + . + . + . + . + "circumcised"@en . + . + . + . + . + . + "CAS supplemental"@en . + . + . + . + . + "canonized date"@en . + "heiligverklaring datum"@nl . + . + . + . + . + . + "licence letter of a german settlement"@en . + . + . + . + . + . + "wins at pro tournaments"@en . + "\u043F\u043E\u0431\u0435\u0434\u0435 \u043D\u0430 \u043F\u0440\u043E\u0444\u0435\u0441\u0438\u043E\u043D\u0430\u043B\u043D\u0438\u043C \u0442\u0443\u0440\u043D\u0438\u0440\u0438\u043C\u0430"@sr . + . + . + . + . + . + "canonized by"@en . + "heilig verklaard door"@nl . + . + . + . + . + . + . + "provides"@en . + "bietet"@de . + . + . + . + . + "highest state"@en . + . + . + . + . + . + . + "latest release version"@en . + . + . + . + . + . + "lowest position"@en . + . + . + . + . + . + "aircraft trainer"@en . + . + . + . + . + . + . + "river"@en . + "Fluss"@de . + "\u03C0\u03BF\u03C4\u03AC\u03BC\u03B9"@el . + "rivi\u00E8re"@fr . + . + . + . + . + . + . + "fuel type"@en . + . + . + . + . + . + "consecration"@en . + "Weihe"@de . + . + . + . + . + . + "ESPN id"@en . + . + . + . + . + . + "notable wine"@en . + . + . + . + . + . + "retired"@en . + "\u03C3\u03C5\u03BD\u03C4\u03B1\u03BE\u03B9\u03BF\u03CD\u03C7\u03BF\u03C2"@el . + . + . + . + . + "political majority"@en . + "politische Mehrheit"@de . + . + . + . + . + . + "administrator"@en . + "Schulverwalter"@de . + "\u0443\u043F\u0440\u0430\u0432\u043D\u0438\u043A"@sr . + "\u03B4\u03B9\u03B1\u03C7\u03B5\u03B9\u03C1\u03B9\u03C3\u03C4\u03AE\u03C2"@el . + . + . + . + . + . + "location city"@en . + "locatie stad"@nl . + "ville"@fr . + "City the thing is located."@en . + . + . + . + . + . + . + . + "Number Of Capital Deputies"@en . + "numero de deputados distritais"@pt . + . + . + . + . + . + "area of catchment quote"@en . + . + . + . + . + . + "south-east place"@en . + "lieu au sud-est"@fr . + "indique un autre lieu situ\u00E9 au sud-est."@fr . + "indicates another place situated south-east."@en . + . + . + . + . + . + . + "premiere year"@en . + "Year the play was first performed."@en . + . + . + . + . + . + . + "employer"@en . + "Arbeitgeber"@de . + "\u96C7\u7528\u8005"@ja . + "\u03B8\u03AD\u03C3\u03B5\u03B9\u03C2_\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1\u03C2"@el . + . + . + . + . + . + . + . + "main building"@en . + "Hauptgeb\u00E4ude"@de . + "\u672C\u6BBF"@ja . + . + . + . + . + . + "has inside place"@en . + "a un lieu int\u00E9rieur"@fr . + "indique un autre lieu situ\u00E9 \u00E0 l'int\u00E9rieur."@fr . + "indicates another place situated inside."@en . + . + . + . + . + . + "bowl record"@en . + "\u03C1\u03B5\u03BA\u03CC\u03C1 \u03BC\u03C0\u03CC\u03BF\u03C5\u03BB\u03B9\u03BD\u03B3\u03BA"@el . + . + . + . + . + . + "album duration (s)"@en . + "Album L\u00E4nge (s)"@de . + "\u0442\u0440\u0430\u0458\u0430\u045A\u0435 \u0430\u043B\u0431\u0443\u043C\u0430 (s)"@sr . + . + . + . + . + . + . + . + "hoogte (\u03BC)"@nl . + "\u03CD\u03C8\u03BF\u03C2 (\u03BC)"@el . + "hauteur (\u03BC)"@fr . + "altura (\u03BC)"@pt . + "height (\u03BC)"@en . + "vi\u0161ina (\u03BC)"@sl . + "\u8EAB\u9577 (\u03BC)"@ja . + "H\u00F6he (\u03BC)"@de . + . + . + . + . + "flag border"@en . + . + . + . + . + "president general council"@en . + . + . + . + . + . + . + "ingredient"@en . + "Zutat"@de . + "An ingredient is a substance that forms part of a mixture (in a general sense). Here it is used in the context of recipes that specify which ingredients are used to prepare a specific dish or drink."@en . + . + . + . + . + . + "aircraft helicopter cargo"@en . + "\u03C6\u03BF\u03C1\u03C4\u03AF\u03BF \u03B5\u03BB\u03B9\u03BA\u03BF\u03C6\u03CC\u03C1\u03BF\u03C5 \u03B1\u03B5\u03C1\u03BF\u03C3\u03BA\u03AC\u03C6\u03BF\u03C5\u03C2"@el . + "\u0442\u0435\u0440\u0435\u0442\u043D\u0438 \u0445\u0435\u043B\u0438\u043A\u043E\u043F\u0442\u0435\u0440"@sr . + . + . + . + . + . + . + "spacecraft"@en . + "Raumfahrzeug"@de . + "\u03B4\u03B9\u03B1\u03C3\u03C4\u03B7\u03BC\u03CC\u03C0\u03BB\u03BF\u03B9\u03BF"@el . + "v\u00E9hicule spatial"@fr . + . + . + . + . + . + . + "absorbed by"@en . + "opgegaan in"@nl . + . + . + . + . + . + "refseq mRNA"@en . + "refseq mRNA"@ja . + . + . + . + . + . + "\u03B1\u03C0\u03CC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03B1\u03C0\u03CC \u03C4\u03B7\u03BD \u03C0\u03C1\u03C9\u03C4\u03B5\u03CD\u03BF\u03C5\u03C3\u03B1 (\u03BC)"@el . + "dist\u00E2ncia at\u00E9 a capital (\u03BC)"@pt . + "distanza alla capitale (\u03BC)"@it . + "distance to capital (\u03BC)"@en . + "entfernung zur hauptstadt (\u03BC)"@de . + . + . + . + . + . + . + "original maximum boat length (\u03BC)"@en . + . + . + . + . + . + "previous mission"@en . + "fr\u00FChrere Mission"@de . + . + . + . + . + . + . + "management position"@en . + . + . + . + . + . + "governing body"@en . + "bestuursorgaan"@nl . + "Verwaltungsgremium"@de . + "Body that owns/operates the Place."@en . + . + . + . + . + . + . + "Polish Film Award"@en . + "Polnischer Filmpreis"@de . + "Polska Nagroda Filmowa (Orze\u0142)"@pl . + . + . + . + . + . + . + "MeSH number"@en . + . + . + . + . + . + "entourage"@en . + "Gefolge"@de . + . + . + . + . + . + . + "key person"@en . + "Schl\u00FCsselperson"@de . + . + . + . + . + . + "declination"@en . + . + . + . + . + . + "ithf date"@en . + . + . + . + . + . + "Lieutenancy area"@en . + . + . + . + . + . + . + "forces"@fr . + "forces"@en . + "Streitkr\u00E4fte"@de . + . + . + . + . + "voice"@en . + "Stimme"@de . + "\u0433\u043B\u0430\u0441"@sr . + . + . + . + . + . + . + "government region"@en . + . + . + . + . + . + . + "previous population"@en . + . + . + . + . + . + "authority mandate"@en . + . + . + . + . + . + "Number of votes in favour of the resolution"@en . + "Anzahl der Stimmen f\u00FCr die Resolution"@de . + "Aantal stemmen voor"@nl . + . + . + . + . + . + "connotation"@en . + "Konnotation"@de . + "A meaning of a word or phrase that is suggested or implied, as opposed to a denotation, or literal meaning."@en . + . + . + . + . + "ruling"@en . + "Entscheidung"@de . + "relevante regelgeving"@nl . + "Ruling referred to in this legal case"@en . + . + . + . + . + . + "contract award"@en . + . + . + . + . + . + "budget year"@en . + "Haushaltsjahr"@de . + . + . + . + . + . + "red coordinate in the RGB space"@en . + . + . + . + . + . + "min"@en . + . + . + . + . + "legal arrondissement"@en . + . + . + . + . + . + "hall of fame"@en . + "Ruhmeshalle"@de . + . + . + . + . + . + "language code"@en . + "Sprachcode"@de . + "kod j\u0119zykowy"@pl . + . + . + . + . + . + . + "eurobabe index id"@en . + "eurobabeindex id"@el . + "c\u00F3digo no eurobabeindex"@pt . + . + . + . + . + . + "lowest point"@en . + . + . + . + . + . + "lchf draft year"@en . + . + . + . + . + . + "mill code BE"@en . + "molen code BE"@nl . + "mills code from the Belgian database on mills"@en . + "unieke code voor molens in database www.molenechos.org"@nl . + . + . + . + . + . + "amateur no contest"@en . + . + . + . + . + . + "height attack"@en . + . + . + . + . + . + "number of run"@en . + . + . + . + . + . + "endowment ($)"@en . + . + . + . + . + . + "current league"@en . + "aktuelle Liga"@de . + . + . + . + . + . + "code on List of Honour"@en . + "Code Ehrenliste"@de . + "Code Erelijst van Gevallenen"@nl . + . + . + . + . + . + . + "total cargo (g)"@en . + . + . + . + . + . + "manager years start year"@en . + . + . + . + . + "tv.com id"@en . + . + . + . + . + . + "green ski piste number"@en . + . + . + . + . + . + "youth wing"@en . + "\u043E\u043C\u043B\u0430\u0434\u0438\u043D\u0441\u043A\u043E \u043A\u0440\u0438\u043B\u043E"@sr . + "ala jovem"@pt . + . + . + . + . + . + "statistic value"@en . + "Statistikwert"@de . + . + . + . + . + . + "huidig wereldkampioen"@nl . + "champion du monde actuel"@fr . + "actual Campe\u00F3n del mundo"@es . + "current world champion"@en . + "aktueller Weltmeister"@de . + . + . + . + . + . + . + "waterscheiding (m2)"@nl . + "\u03BB\u03B5\u03BA\u03AC\u03BD\u03B7_\u03B1\u03C0\u03BF\u03C1\u03C1\u03BF\u03AE\u03C2 (m2)"@el . + "cuenca hidrogr\u00E1fica (m2)"@es . + "watershed (m2)"@en . + "Wasserscheide (m2)"@de . + . + . + . + . + . + "career station"@en . + "Karrierestation"@de . + "carri\u00E8restap"@nl . + "this property links to a step in the career of a person, e.g. a soccer player, holding information on the time span, matches and goals he or she achieved at a club."@en . + . + . + . + . + . + . + "government position"@en . + . + . + . + . + . + . + "credit"@en . + . + . + . + . + . + "kompozytor"@pl . + "componist"@nl . + "\u03C3\u03C5\u03BD\u03B8\u03AD\u03C4\u03B7\u03C2"@el . + "compositeur"@fr . + "composer"@en . + "Komponist"@de . + . + . + . + . + . + . + . + "opening film"@en . + "Er\u00F6ffnungsfilm"@de . + . + . + . + . + . + . + "training"@en . + "Ausbildung"@de . + "\u03C0\u03C1\u03BF\u03C0\u03CC\u03BD\u03B7\u03C3\u03B7"@el . + . + . + . + . + . + . + "date of christening"@en . + "doopdatum"@nl . + . + . + . + . + . + "innervates"@en . + . + . + . + . + . + . + "aantal gewonnen zilveren medailles"@nl . + "nomber de m\u00E9dailles d'argent gagn\u00E9es"@fr . + "cantidad de medallas de plata ganadas"@es . + "number of silver medals won"@en . + "Anzahl der Silbermedaillen"@de . + . + . + . + . + . + "draft"@en . + "Entwurf"@de . + . + . + . + . + "closing season"@en . + "kapan\u0131\u015F sezonu"@tr . + . + . + . + . + . + . + "builder"@en . + "Baumeister"@de . + "bouwer"@nl . + "\u03BF\u03B9\u03BA\u03BF\u03B4\u03CC\u03BC\u03BF\u03C2"@el . + . + . + . + . + . + . + "top speed (kmh)"@en . + "H\u00F6chstgeschwindigkeit (kmh)"@de . + . + . + . + . + "olympic games"@en . + "olympische Spiele"@de . + "Olympische Spelen"@nl . + . + . + . + . + . + "assistant principal"@en . + "\u03BA\u03CD\u03C1\u03B9\u03BF\u03C2 \u03B2\u03BF\u03B7\u03B8\u03CC\u03C2"@el . + . + . + . + . + . + "previous work"@en . + "fr\u00FCheren Arbeiten"@de . + "vorig werk"@nl . + "\u03C0\u03C1\u03BF\u03B7\u03B3\u03BF\u03CD\u03BC\u03B5\u03BD\u03B7 \u03B4\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1"@el . + . + . + . + . + . + . + "jaar"@nl . + "\u03AD\u03C4\u03BF\u03C2"@el . + "ann\u00E9e"@fr . + "\u0433\u043E\u0434\u0438\u043D\u0430"@sr . + "anno"@it . + "a\u00F1o"@es . + "year"@en . + "Jahr"@de . + . + . + . + . + "start year of insertion"@en . + . + . + . + . + . + "procedure"@en . + "Verfahren"@de . + "procedure"@nl . + "The name designating a formal collection of steps to be taken to complete the case"@en . + "De naam die verwijst naar de formele definitie van een verzameling stappen die in de juiste volgorde leiden tot de afronding van de zaak"@nl . + . + . + . + . + . + "portrayer"@en . + . + . + . + . + . + "human development index (HDI) category"@en . + "categoria do indice de desenvolvimento humano (IDH)"@pt . + . + . + . + . + . + "regency"@en . + "Regentschaft"@de . + "kabupaten"@id . + . + . + . + . + . + . + "so named since"@en . + "so genannt seit"@de . + "zo genoemd sinds"@nl . + . + . + . + . + "main islands"@en . + "Hauptinseln"@de . + . + . + . + . + . + "periapsis (\u03BC)"@en . + "Periapsisdistanz (\u03BC)"@de . + . + . + . + . + . + "european union entrance date"@en . + "data de entrada na uniao europeia"@pt . + . + . + . + . + . + "price money ($)"@en . + "Preisgeld ($)"@de . + . + . + . + . + . + "amateur team"@en . + "\u0430\u043C\u0430\u0442\u0435\u0440\u0441\u043A\u0438 \u0442\u0438\u043C"@sr . + . + . + . + . + . + "industry"@en . + "Industrie"@de . + "industrie"@fr . + . + . + . + . + . + . + "distance to Douglas (\u03BC)"@en . + "\u03B1\u03C0\u03CC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03B1\u03C0\u03CC \u03C4\u03BF Douglas (\u03BC)"@el . + . + . + . + . + . + "Penalties Team A"@en . + . + . + . + . + . + "diploma"@en . + "Diplom"@de . + . + . + . + . + . + "final lost single"@en . + . + . + . + . + . + "flora"@en . + "Flora"@de . + . + . + . + . + . + "signature"@en . + "Unterschrift"@de . + . + . + . + . + . + . + "judge"@en . + "Richter"@de . + "rechter"@nl . + "leading judge"@en . + . + . + . + . + . + . + "owns"@en . + "in bezit van"@nl . + "Used as if meaning: has property rights over"@en . + . + . + . + . + . + . + "killed by"@en . + "get\u00F6tet von"@de . + . + . + . + . + . + . + "pole driver country"@en . + . + . + . + . + . + . + "coronation date"@en . + "kroningsdatum"@nl . + . + . + . + . + . + "COSPAR id"@en . + "Described at http://en.wikipedia.org/wiki/International_Designator"@en . + . + . + . + . + . + "visitors per day"@en . + "\u0431\u0440\u043E\u0458 \u043F\u043E\u0441\u0435\u0442\u0438\u043B\u0430\u0446\u0430 \u043F\u043E \u0434\u0430\u043D\u0443"@sr . + "Besucher pro Tag"@de . + . + . + . + . + . + "alternative title"@en . + "alternativer Titel"@de . + "alternatieve titel"@nl . + "\u0430\u043B\u0442\u0435\u0440\u043D\u0430\u0442\u0438\u0432\u043D\u0438 \u043D\u0430\u0441\u043B\u043E\u0432"@sr . + "The alternative title attributed to a work"@en . + . + . + . + . + . + "legend thumbnail localization"@en . + . + . + . + . + . + "mandate of the president of the general council"@en . + . + . + . + . + . + "gross ($)"@en . + "\u03B1\u03BA\u03B1\u03B8\u03AC\u03C1\u03B9\u03C3\u03C4\u03B1 ($)"@el . + . + . + . + . + . + "broadcast translator"@en . + "\u03B1\u03BD\u03B1\u03BC\u03B5\u03C4\u03AC\u03B4\u03BF\u03C3\u03B7 \u03BC\u03B5\u03C4\u03B1\u03C6\u03C1\u03B1\u03C3\u03C4\u03AE"@el . + . + . + . + . + . + "main branch"@en . + "voornaamste tak"@nl . + . + . + . + . + . + "Date Last Updated"@en . + "Datum der letzten Aktualisierung"@de . + "datum laatste bewerking"@nl . + . + . + . + . + . + "the previous municipality from which this one has been created or enlarged"@en . + "samengevoegde gemeente"@nl . + . + . + . + . + . + "world tournament silver"@en . + "\u0431\u0440\u043E\u0458 \u0441\u0440\u0435\u0431\u0440\u043D\u0438\u0445 \u043C\u0435\u0434\u0430\u0459\u0430 \u0441\u0430 \u0441\u0432\u0435\u0442\u0441\u043A\u0438\u0445 \u0442\u0443\u0440\u043D\u0438\u0440\u0430"@sr . + . + . + . + . + . + "associate"@en . + "\u03C3\u03C5\u03BD\u03B5\u03C1\u03B3\u03AC\u03C4\u03B7\u03C2"@el . + . + . + . + . + . + "DfE"@en . + "Department for Education (UK) number of a school in England or Wales"@en . + . + . + . + . + "surface of runway"@en . + . + . + . + . + . + "inscription"@en . + "Text of an inscription on the object"@en . + . + . + . + . + . + "geboortejaar"@nl . + "\u03AD\u03C4\u03BF\u03C2 \u03B3\u03AD\u03BD\u03BD\u03B7\u03C3\u03B7\u03C2"@el . + "birth year"@en . + "\u751F\u5E74"@ja . + "Geburtsjahr"@de . + . + . + . + . + . + . + "maximum apparent magnitude"@en . + "maximale scheinbare Helligkeit"@de . + "maximale schijnbare magnitude"@nl . + . + . + . + . + . + . + "resting date"@en . + "\u57CB\u846C\u5E74\u6708\u65E5"@ja . + . + . + . + . + . + . + "junior years end year"@en . + . + . + . + . + . + "council of a liechtenstein settlement"@en . + . + . + . + . + . + "debut team"@en . + "\u03C0\u03C1\u03CE\u03C4\u03B7 \u03BF\u03BC\u03AC\u03B4\u03B1"@el . + . + . + . + . + . + . + "head label"@en . + . + . + . + . + . + "number of canton"@en . + . + . + . + . + . + "continent rank"@en . + "Rang Kontinent"@de . + "Place of the building in the list of the highest buildings in the continent"@en . + "Der Platz des Geb\u00E4udes in der Liste der h\u00F6chsten Geb\u00E4ude des Kontinents"@de . + . + . + . + . + . + "musical band"@en . + . + . + . + . + . + . + "politic government department"@en . + "ministerio do politico"@pt . + . + . + . + . + . + . + "HGNCid"@en . + "HGNCid"@ja . + . + . + . + . + . + "mouth mountain"@en . + . + . + . + . + . + . + "linked to"@en . + "verkn\u00FCpft"@de . + . + . + . + . + . + . + "highest region"@en . + "hoogste regio"@nl . + . + . + . + . + . + . + "length quote"@en . + . + . + . + . + . + "hopman cup"@en . + . + . + . + . + . + "tuition ($)"@en . + "Schulgeld ($)"@de . + . + . + . + . + . + "number of pages"@en . + "aantal pagina's"@nl . + "Anzahl der Seiten"@de . + "The books number of pages."@en . + . + . + . + . + . + . + "has outside place"@en . + "a un lieu ext\u00E9rieur"@fr . + "indique un autre lieu situ\u00E9 autour \u00E0 l'ext\u00E9rieur."@fr . + "indicates another place situated around outside."@en . + . + . + . + . + . + "south place"@en . + "lieu au sud"@fr . + "indique un autre lieu situ\u00E9 au sud."@fr . + "indicates another place situated south."@en . + . + . + . + . + . + . + . + "postcode"@nl . + "\u03C4\u03B1\u03C7\u03C5\u03B4\u03C1\u03BF\u03BC\u03B9\u03BA\u03CC\u03C2 \u03BA\u03CE\u03B4\u03B9\u03BA\u03B1\u03C2"@el . + "\u041F\u043E\u0448\u0442\u0430\u043D\u0441\u043A\u0438 \u043A\u043E\u0434"@sr . + "zip code"@en . + "Postleitzahl"@de . + . + . + . + . + . + . + "individualised PND number"@en . + "Personennamendatei"@de . + "PND (Personennamendatei) data about a person. PND is published by the German National Library. For each person there is a record with her/his name, birth and occupation connected with a unique identifier, the PND number."@en . + . + . + . + . + . + "asia championship"@en . + . + . + . + . + . + "opening season"@en . + "a\u00E7\u0131l\u0131\u015F sezonu"@tr . + . + . + . + . + . + . + "notable features"@en . + "notlar"@tr . + . + . + . + . + . + "military government"@en . + "Milit\u00E4rregierung"@de . + . + . + . + . + "iso code of a province"@en . + . + . + . + . + . + . + "discharge (m\u00B3/s)"@en . + "\u03B5\u03BA\u03C1\u03BF\u03AE (m\u00B3/s)"@el . + "uitstoot (m\u00B3/s)"@nl . + . + . + . + . + . + "spoken in"@en . + "gesprochen in"@de . + "gesproken in"@nl . + . + . + . + . + . + . + "suborbital flights"@en . + . + . + . + . + . + "stat name"@en . + . + . + . + . + "junior years start year"@en . + . + . + . + . + . + "variant or variation"@en . + "Variante oder Variation"@de . + "\u0432\u0430\u0440\u0438\u0458\u0430\u043D\u0442\u0430"@sr . + "variant"@nl . + "variant or variation of something, for example the variant of a car"@en . + . + . + . + . + "networth ($)"@en . + . + . + . + . + . + "fossil"@en . + "fossiel"@nl . + . + . + . + . + . + . + "state of origin"@en . + . + . + . + . + . + . + "number of orbits"@en . + "Anzahl der Bahnen"@de . + . + . + . + . + . + . + "sterfdatum"@nl . + "\u03B7\u03BC\u03B5\u03C1\u03BF\u03BC\u03B7\u03BD\u03AF\u03B1_\u03B8\u03B1\u03BD\u03AC\u03C4\u03BF\u03C5"@el . + "date de d\u00E9c\u00E8s"@fr . + "death date"@en . + "\u6CA1\u5E74\u6708\u65E5"@ja . + "Sterbedatum"@de . + . + . + . + . + . + . + . + "extraction datetime"@en . + "Date a page was extracted ''''''"@en . + . + . + . + . + "aircraft recon"@en . + . + . + . + . + . + . + "province link"@en . + . + . + . + . + . + . + "bar pass rate"@en . + "\u03C0\u03BF\u03C3\u03BF\u03C3\u03C4\u03CC \u03B5\u03C0\u03B9\u03C4\u03C5\u03C7\u03AF\u03B1\u03C2"@el . + . + . + . + . + . + "ko"@en . + . + . + . + . + . + "associate editor"@en . + "\u03C3\u03C5\u03BD\u03B5\u03C1\u03B3\u03B1\u03B6\u03CC\u03BC\u03B5\u03BD\u03BF\u03C2 \u03C3\u03C5\u03BD\u03C4\u03AC\u03BA\u03C4\u03B7\u03C2"@el . + . + . + . + . + . + . + "managing editor"@en . + . + . + . + . + . + . + "number of undergraduate students"@en . + "Zahl der Studenten"@de . + . + . + . + . + . + "strength"@en . + "St\u00E4rke"@de . + "\u03B4\u03CD\u03BD\u03B1\u03BC\u03B7"@el . + . + . + . + . + . + "otherSportsExperience"@en . + "\u30B9\u30DD\u30FC\u30C4\u6B74"@ja . + . + . + . + . + . + "circuit name"@en . + . + . + . + . + . + "rank of an agreement"@en . + . + . + . + . + . + "official school colour"@en . + "offizielle Schulfarbe"@de . + "The official colour of the EducationalInstitution represented by the colour name (e.g.: red or green)."@en . + . + . + . + . + . + . + "RKDartists id"@en . + "Rijksbureau voor Kunsthistorische Documentatie (RKD) artists database id.\nhttp://rkd.nl/explore/artists/$1"@en . + . + . + . + . + "current partner"@en . + "aktueller Partner"@de . + . + . + . + . + . + . + "official name"@en . + "offizieller Name"@de . + . + . + . + . + . + "kraj"@pl . + "land"@nl . + "\u03C7\u03CE\u03C1\u03B1"@el . + "pays"@fr . + "pa\u00EDs"@pt . + "pa\u00EDs"@es . + "country"@en . + "t\u00EDr"@ga . + "estat"@ca . + "Land"@de . + "The country where the thing is located."@en . + . + . + . + . + . + . + "west place"@en . + "lieu \u00E0 l'ouest"@fr . + "indique un autre lieu situ\u00E9 \u00E0 l'ouest."@fr . + "indicates another place situated west."@en . + . + . + . + . + . + . + "solvent with mediocre solubility"@en . + "L\u00F6sungsmittel mit mittelm\u00E4\u00DFiger L\u00F6slichkeit"@de . + "matig oplosbaar in"@nl . + . + . + . + . + . + "usopen wins"@en . + "\u043F\u043E\u0431\u0435\u0434\u0435 \u043D\u0430 US Open-\u0443"@sr . + . + . + . + . + . + "subprefecture"@en . + . + . + . + . + . + . + "fastest driver country"@en . + "schnellster Fahrer Land"@de . + . + . + . + . + . + . + "executive headteacher"@en . + . + . + . + . + . + . + "KFZ-Kennzeichen"@de . + "vehicle code"@en . + "\u043A\u043E\u0434 \u0432\u043E\u0437\u0438\u043B\u0430"@sr . + "voertuig code"@nl . + "Region related vehicle code on the vehicle plates."@en . + . + . + . + . + . + "age range"@en . + "Altersgruppe"@de . + "\u03B5\u03CD\u03C1\u03BF\u03C2 \u03B7\u03BB\u03B9\u03BA\u03AF\u03B1\u03C2"@el . + "\u043E\u043F\u0441\u0435\u0433 \u0433\u043E\u0434\u0438\u043D\u0430"@sr . + . + . + . + . + . + "relation time"@en . + . + . + . + . + . + "dubber"@en . + "the person who dubs another person e.g. an actor or a fictional character in movies"@en . + . + . + . + . + . + . + "nfl team"@en . + . + . + . + . + . + "fauna"@en . + "Fauna"@de . + "fauna"@nl . + . + . + . + . + . + "FC runs"@en . + . + . + . + . + . + "person function"@en . + "persoon functie"@nl . + . + . + . + . + . + . + . + "fuel capacity (\u03BC\u00B3)"@en . + "\u03C7\u03C9\u03C1\u03B7\u03C4\u03B9\u03BA\u03CC\u03C4\u03B7\u03C4\u03B1 \u03BA\u03B1\u03C5\u03C3\u03AF\u03BC\u03BF\u03C5 (\u03BC\u00B3)"@el . + "Kraftstoffkapazit\u00E4t (\u03BC\u00B3)"@de . + . + . + . + . + . + "plaats van overlijden"@nl . + "\u03C4\u03CC\u03C0\u03BF\u03C2_\u03B8\u03B1\u03BD\u03AC\u03C4\u03BF\u03C5"@el . + "lieu de d\u00E9c\u00E8s"@fr . + "death place"@en . + "\u6B7B\u6CA1\u5730"@ja . + "Sterbeort"@de . + "the place where they died"@en . + . + . + . + . + . + . + . + "laying down"@en . + . + . + . + . + . + "Number Of State Deputies"@en . + "numero de deputados estaduais"@pt . + . + . + . + . + . + "Location Identifier"@en . + . + . + . + . + . + "nearest city"@en . + "n\u00E4chstgelegene Stadt"@de . + "dichtstbijzijnde stad"@nl . + "\u03C0\u03CC\u03BB\u03B7"@el . + . + . + . + . + . + . + "summer temperature (K)"@en . + . + . + . + . + . + "mouth position"@en . + "foce (di un fiume)"@it . + "lugar de desembocadura"@es . + . + . + . + . + . + . + "automobile platform"@en . + "Automobilplattform"@de . + "\u03C0\u03BB\u03B1\u03C4\u03C6\u03CC\u03C1\u03BC\u03B1 \u03B1\u03C5\u03C4\u03BF\u03BA\u03B9\u03BD\u03AE\u03C4\u03C9\u03BD"@el . + . + . + . + . + . + . + "brandstof"@nl . + "\u03BA\u03B1\u03CD\u03C3\u03B9\u03BC\u03B1"@el . + "carburant"@fr . + "fuel"@en . + "Treibstoff"@de . + . + . + . + . + "leider"@nl . + "\u03B7\u03B3\u03AD\u03C4\u03B7\u03C2"@el . + "lider"@pt . + "leader"@en . + "F\u00FChrer"@de . + . + . + . + . + . + "active years start date manager"@en . + . + . + . + . + . + "number of rocket stages"@en . + "Anzahl von Raketenstufen"@de . + "number of stages, not including boosters"@en . + . + . + . + . + . + "testaverage"@en . + . + . + . + . + . + "aircraft helicopter transport"@en . + "\u03BC\u03B5\u03C4\u03B1\u03C6\u03BF\u03C1\u03AD\u03C2 \u03C0\u03BF\u03C5 \u03C0\u03C1\u03B1\u03B3\u03BC\u03B1\u03C4\u03BF\u03C0\u03BF\u03B9\u03BF\u03CD\u03BD\u03C4\u03B1\u03B9 \u03BC\u03B5 \u03B5\u03BB\u03B9\u03BA\u03BF\u03C6\u03CC\u03C1\u03BF \u03B1\u03B5\u03C1\u03BF\u03C3\u03BA\u03AC\u03C6\u03BF\u03C2"@el . + "\u0442\u0440\u0430\u043D\u0441\u043F\u043E\u0440\u0442\u043D\u0438 \u0445\u0435\u043B\u0438\u043A\u043E\u043F\u0442\u0435\u0440"@sr . + . + . + . + . + . + . + "sovereign country"@en . + "souver\u00E4ner Staat"@de . + . + . + . + . + . + . + "damage amount"@en . + "schadebedrag"@nl . + . + . + . + . + . + "\u0391\u03BD\u03B1\u03BA\u03B1\u03BB\u03CD\u03C6\u03B8\u03B7\u03BA\u03B5 \u03B1\u03C0\u03CC"@el . + "d\u00E9couvreur"@fr . + "descubridor"@es . + "discoverer"@en . + "Entdecker"@de . + . + . + . + . + . + . + "magazine"@en . + "Magazin"@de . + "\u03C0\u03B5\u03C1\u03B9\u03BF\u03B4\u03B9\u03BA\u03CC"@el . + . + . + . + . + . + . + "bad guy"@en . + "B\u00F6sewicht"@de . + . + . + . + . + . + "first flight"@en . + "erster Flug"@de . + . + . + . + . + . + . + "awardName"@en . + "Award a person has received (literal). Compare to award (ObjectProperty)"@en . + . + . + . + . + . + "teaching staff"@en . + . + . + . + . + . + "supplemental draft round"@en . + . + . + . + . + . + "beatified by"@en . + "zalig verklaard door"@nl . + . + . + . + . + . + . + "date of acquirement"@en . + "Anschaffungszeitpunkt"@de . + "\u03B7\u03BC\u03B5\u03C1\u03BF\u03BC\u03B7\u03BD\u03AF\u03B1 \u03B1\u03C0\u03CC\u03BA\u03C4\u03B7\u03C3\u03B7\u03C2"@el . + . + . + . + . + . + "monument code for the Monuments Inventory Project"@en . + "monumentcode voor het Monumenten Inventarisatie Project"@nl . + "The Dutch MIP project was meant to take stock of all kinds of monuments"@en . + "Code voor alle soorten monumenten gebezigd door het MI-project"@nl . + . + . + . + . + . + . + "gini coefficient"@en . + "Gini-Koeffizient"@de . + "coeficiente de Gini"@pt . + "is a measure of the inequality of a distribution. It is commonly used as a measure of inequality of income or wealth."@en . + . + . + . + . + . + . + "spacewalk begin"@en . + "Beginn Weltraumspaziergang"@de . + . + . + . + . + . + "first driver"@en . + "erster Fahrer"@de . + . + . + . + . + . + . + "command"@en . + "Befehl"@de . + . + . + . + . + . + "cinematography"@en . + "Kinematografie"@de . + "cineamatagrafa\u00EDocht"@ga . + "cinematografie"@nl . + . + . + . + . + . + . + . + "local authority"@en . + . + . + . + . + "geolocDepartment"@en . + . + . + . + . + . + . + "oil system"@en . + "\u00D6lsystem"@de . + . + . + . + . + . + "partner"@en . + "partner"@nl . + "\u03C3\u03C5\u03BD\u03AD\u03C4\u03B1\u03B9\u03C1\u03BF\u03C2"@el . + "Partner"@de . + . + . + . + . + . + . + "National Topographic System map number"@en . + . + . + . + . + . + "freeLabel"@en . + . + . + . + . + . + "percentage of area water"@en . + "\u03C0\u03BF\u03C3\u03BF\u03C3\u03C4\u03CC_\u03C5\u03B4\u03AC\u03C4\u03C9\u03BD"@el . + "percentage wateroppervlak"@nl . + . + . + . + . + "Golden Raspberry Award"@en . + . + . + . + . + . + . + "source confluence state"@en . + . + . + . + . + . + . + "total population"@en . + "Gesamtbev\u00F6lkerung"@de . + . + . + . + . + . + "latest preview version"@en . + . + . + . + . + . + "Text used to link from a Wikipage to another Wikipage"@en . + "Reserved for DBpedia."@en . + . + . + . + "National Olympic Committee"@en . + "Nationales Olympisches Komitee"@de . + "nationaal Olympisch commit\u00E9"@nl . + . + . + . + . + . + "number of licensed"@en . + "nombre de licenci\u00E9s"@fr . + "nombre de personnes ayant une license pour pratiquer cette activit\u00E9"@en . + . + . + . + . + . + "SAT score"@en . + "most recent average SAT scores"@en . + . + . + . + . + . + "Wiki page out degree"@en . + "Reserved for DBpedia."@en . + . + . + . + . + "fips code"@en . + . + . + . + . + . + "season"@en . + "Saison"@de . + "\u03C3\u03B1\u03B9\u03B6\u03CC\u03BD"@el . + . + . + . + . + . + "magenta coordinate in the CMYK space"@en . + . + . + . + . + . + "film runtime (s)"@en . + "Filmlaufzeit (s)"@de . + . + . + . + . + . + . + "head alloy"@en . + . + . + . + . + . + "north-east place"@en . + "lieu au nord-est"@fr . + "indique un autre lieu situ\u00E9 au nord-est."@fr . + "indicates another place situated north-east."@en . + . + . + . + . + . + . + "Computing Media"@en . + . + . + . + . + . + "capital district"@en . + . + . + . + . + . + . + "following event"@en . + "\u00E9v\u00E8nement suivant"@fr . + . + . + . + . + . + . + "congressional district"@en . + . + . + . + . + . + "spouse name"@en . + "Name des Ehepartners"@de . + "\u03CC\u03BD\u03BF\u03BC\u03B1 \u03C3\u03C5\u03B6\u03CD\u03B3\u03BF\u03C5"@el . + . + . + . + . + . + "detractor"@en . + "Kritiker"@de . + . + . + . + . + . + "seiyu"@en . + . + . + . + . + . + "distance traveled (\u03BC)"@en . + "Zur\u00FCckgelegte Entfernung (\u03BC)"@de . + "afgelegde afstand (\u03BC)"@nl . + . + . + . + . + . + "RID Id"@en . + "An identifying system for scientific authors. The system was introduced in January 2008 by Thomson Reuters. The combined use of the Digital Object Identifier with the ResearcherID allows for a unique association of authors and scientific articles."@en . + . + . + . + . + . + "wins at challenges"@en . + . + . + . + . + . + "boxer category"@en . + "\u03BA\u03B1\u03C4\u03B7\u03B3\u03BF\u03C1\u03AF\u03B1 \u03BC\u03C0\u03BF\u03BE\u03AD\u03C1"@el . + "Boxer Kategorie"@de . + . + . + . + . + . + "total travellers"@en . + . + . + . + . + . + "foot"@en . + . + . + . + . + . + "podiums"@en . + "Podestpl\u00E4tze"@de . + . + . + . + . + . + "seating capacity"@en . + "Sitzplatzkapazit\u00E4t"@de . + "zitplaatsen"@nl . + . + . + . + . + . + "distance to London (\u03BC)"@en . + "\u03B1\u03C0\u03CC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03B1\u03C0\u03CC \u03C4\u03BF \u039B\u03BF\u03BD\u03B4\u03AF\u03BD\u03BF (\u03BC)"@el . + . + . + . + . + . + "creator"@en . + "Urheber"@de . + "\u03B4\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03CC\u03C2"@el . + "maker"@nl . + . + . + . + . + . + . + "age"@en . + "Alter"@de . + "\u03B7\u03BB\u03B9\u03BA\u03AF\u03B1"@el . + "\u0441\u0442\u0430\u0440\u043E\u0441\u0442"@sr . + . + . + . + . + . + "amgId"@en . + "AMG ID"@sr . + . + . + . + . + . + . + "number of vehicles"@en . + "Anzahl der Fahrzeuge"@de . + "Number of vehicles used in the transit system."@en . + . + . + . + . + . + "data za\u0142o\u017Cenia"@pl . + "\u03B7\u03BC\u03B5\u03C1\u03BF\u03BC\u03B7\u03BD\u03AF\u03B1 \u03AF\u03B4\u03C1\u03C5\u03C3\u03B7\u03C2"@el . + "founding date"@en . + "\u5275\u7ACB\u65E5"@ja . + "Gr\u00FCndungsdatum"@de . + . + . + . + . + . + "effectiveRadiatedPower (W)"@en . + . + . + . + . + . + "owning company"@en . + "Besitzerfirma"@de . + . + . + . + . + . + "\u03BA\u03B1\u03C4\u03CC\u03C1\u03B8\u03C9\u03BC\u03B1"@el . + "haut fait, accomplissement"@fr . + "\u0434\u043E\u0441\u0442\u0438\u0433\u043D\u0443\u045B\u0435"@sr . + "logro"@es . + "achievement"@en . + "Leistung"@de . + . + . + . + . + "player status"@en . + "Spielerstatus"@de . + . + . + . + . + . + "group commemorated"@en . + "groep mensen herdacht"@nl . + "Designates the category of people commemorated by a monument"@en . + "Aanduiding van de categorie mensen die door dit monument worden herdacht"@nl . + . + . + . + . + . + "building"@en . + "Geb\u00E4ude"@de . + "gebouw"@nl . + "\u03BA\u03C4\u03AF\u03C1\u03B9\u03BF"@el . + . + . + . + . + . + . + "ATC supplemental"@en . + "ATC \u03C3\u03C5\u03BC\u03C0\u03BB\u03B7\u03C1\u03C9\u03BC\u03B1\u03C4\u03B9\u03BA\u03CC"@el . + . + . + . + . + "service"@en . + "Dienst"@de . + . + . + . + . + . + "phylum"@en . + "filo"@es . + "Embranchement phylog\u00E9n\u00E9tique"@fr . + "\u9580_(\u5206\u985E\u5B66)"@ja . + "A rank in the classification of organisms, below kingdom and above class; also called a division, especially in describing plants; a taxon at that rank."@en . + "En syst\u00E9matique, l'embranchement (ou phylum) est le deuxi\u00E8me niveau de classification classique des esp\u00E8ces vivantes."@fr . + . + . + . + . + . + "brand"@en . + "\u03BC\u03AC\u03C1\u03BA\u03B1"@el . + . + . + . + . + . + . + "comic"@en . + . + . + . + . + . + . + "political mandate"@en . + "politisches Mandat"@de . + . + . + . + . + . + "latest release date"@en . + "date de derni\u00E8re version"@fr . + . + . + . + . + . + "crews"@en . + "Besatzungen"@de . + . + . + . + . + . + "Registered at Stock Exchange"@en . + "beurs waaraan genoteerd"@nl . + . + . + . + . + . + "crest"@en . + "Wappen"@de . + "herb"@pl . + . + . + . + "total mass (g)"@en . + "Gesamtmasse (g)"@de . + . + . + . + . + . + "government place"@en . + . + . + . + . + . + . + "notify date"@en . + "Benachrichtigungsdatum"@de . + . + . + . + . + . + "keuken"@nl . + "\u03BA\u03BF\u03C5\u03B6\u03AF\u03BD\u03B1"@el . + "cuisine"@fr . + "cuisine"@en . + "K\u00FCche"@de . + . + . + . + . + . + "demographics as of"@en . + "indicadores demograficos em"@pt . + . + . + . + . + . + "coached team"@en . + . + . + . + . + . + . + "editor title"@en . + "\u03C4\u03AF\u03C4\u03BB\u03BF\u03C2 \u03C3\u03C5\u03BD\u03C4\u03AC\u03BA\u03C4\u03B7"@el . + . + . + . + . + . + "rijk"@nl . + "\u03B2\u03B1\u03C3\u03AF\u03BB\u03B5\u03B9\u03BF"@el . + "r\u00E8gne (biologie)"@fr . + "regno"@it . + "kingdom"@en . + "\u754C_(\u5206\u985E\u5B66)"@ja . + "reich"@de . + "In biology, kingdom (Latin: regnum, pl. regna) is a taxonomic rank, which is either the highest rank or in the more recent three-domain system, the rank below domain."@en . + "Le r\u00E8gne (du latin \u00AB regnum \u00BB) est, dans les taxinomies classiques, le plus haut niveau de classification des \u00EAtres vivants, en raison de leurs caract\u00E8res communs."@fr . + . + . + . + . + . + . + "committee"@en . + "Ausschuss"@de . + . + . + . + . + "unit cost ($)"@en . + "St\u00FCckkosten ($)"@de . + . + . + . + . + . + "ATC suffix"@en . + "ATC \u03BA\u03B1\u03C4\u03AC\u03BB\u03B7\u03BE\u03B7"@el . + "suffix ATC"@fr . + . + . + . + . + "leaderFunction"@en . + . + . + . + . + . + . + "management elevation (\u03BC)"@en . + . + . + . + . + "biust (\u03BC)"@pl . + "\u039C\u03AD\u03B3\u03B5\u03B8\u03BF\u03C2 \u03C0\u03C1\u03BF\u03C4\u03BF\u03BC\u03AE\u03C2 (\u03BC)"@el . + "bust size (\u03BC)"@en . + "\u30D0\u30B9\u30C8 (\u03BC)"@ja . + "\u0440\u0430\u0437\u043C\u0435\u0440 \u0431\u044E\u0441\u0442 (\u03BC)"@bg . + . + . + . + . + . + "work"@en . + "Arbeit"@de . + . + . + . + . + . + "league manager"@en . + . + . + . + . + . + "musicType"@en . + "soort muziekwerk"@nl . + "Type is too general. We should be able to distinguish types of music from types of architecture"@en . + "Type is te algemeen. We moeten soorten muziek van soorten gebouwen kunnen onderscheiden"@nl . + . + . + . + . + . + "Link from a Wikipage to another Wikipage"@en . + "Reserved for DBpedia."@en . + . + . + . + . + "carcinogen"@en . + "Karzinogen"@de . + "kankerverwekkend"@nl . + . + . + . + . + . + "average class size"@en . + "durchschnittliche Klassengr\u00F6\u00DFe"@de . + "\u03BC\u03AD\u03C3\u03BF \u03BC\u03AD\u03B3\u03B5\u03B8\u03BF\u03C2 \u03C4\u03AC\u03BE\u03B7\u03C2"@el . + . + . + . + . + . + "height against"@en . + . + . + . + . + . + "affair"@en . + "\u0430\u0444\u0435\u0440\u0430"@sr . + . + . + . + . + . + "passengers per year"@en . + "passagiers per jaar"@nl . + "Passagiere pro Jahr"@de . + "Number of passengers per year."@en . + . + . + . + . + . + "set designer"@en . + "B\u00FChnenbildner"@de . + "scenografo"@it . + "the person who is responsible for the film set design"@en . + . + . + . + . + . + . + "road end direction"@en . + "Himmelsrichtung des Wegendes"@de . + "End of the route. The opposite of OntologyProperty:routeStartDirection."@en . + "Himmelsrichtung des Endes des Verkehrsweges. Der Gegensatz zur OntologyProperty:routeStartDirection."@de . + . + . + . + . + . + "average depth"@en . + "\u03BC\u03AD\u03C3\u03BF \u03B2\u03AC\u03B8\u03BF\u03C2"@el . + "durchschnittliche Tiefe"@de . + . + . + . + . + . + "lounge"@en . + . + . + . + . + . + "Alps SOIUSA code"@en . + "\u03BA\u03CE\u03B4\u03B9\u03BA\u03B1\u03C2 SOIUSA \u03C4\u03C9\u03BD \u03AC\u03BB\u03C0\u03B5\u03C9\u03BD"@el . + "codice SOIUSA"@it . + "\u0430\u043B\u043F\u0441\u043A\u0438 SOIUSA \u043A\u043E\u0434"@sr . + "the Alps SOIUSA code corresponding to the mountain, according to the SOIUSA classification"@en . + . + . + . + . + . + "yellow coordinate in the CMYK space"@en . + . + . + . + . + . + "volumes"@en . + "\u0442\u043E\u043C\u043E\u0432\u0438"@sr . + "delen"@nl . + . + . + . + . + . + . + "monument code (provinciall)"@en . + "monumentcode provinciale monumenten"@nl . + "Code assigned to (Dutch) monuments at the provincial level, mostly for monuments in the countryside, or for waterworks"@en . + "Code voor monumentenbescherming, in Nederland op provinciaal niveau. Meestal gebruikt voor agrarische monumenten of waterwerken"@nl . + . + . + . + . + . + . + "branch of"@en . + "\u03B4\u03B9\u03B1\u03BA\u03BB\u03AC\u03B4\u03C9\u03C3\u03B7_\u03C4\u03BF\u03C5"@el . + . + . + . + . + . + . + "synonym"@en . + "Synonym"@de . + "\u03C3\u03C5\u03BD\u03CE\u03BD\u03C5\u03BC\u03BF"@el . + "\u30B7\u30CE\u30CB\u30E0"@ja . + . + . + . + . + "piercing"@en . + "Piercing"@de . + "piercing"@pt . + . + . + . + . + . + "contest"@en . + "Wettbewerb"@de . + . + . + . + . + . + "handedness"@en . + "habilidade com a mao"@pt . + "an attribute of humans defined by their unequal distribution of fine motor skill between the left and right hands."@en . + . + . + . + . + . + . + "roland garros double"@en . + . + . + . + . + . + "dry cargo (g)"@en . + "Trockenfracht (g)"@de . + "droge last (g)"@nl . + . + . + . + . + . + "state of origin year"@en . + . + . + . + . + . + "division"@en . + "verdeling"@nl . + . + . + . + . + "visitor percentage change"@en . + "\u043F\u0440\u043E\u043C\u0435\u043D\u0430 \u043F\u0440\u043E\u0446\u0435\u043D\u0442\u0430 \u043F\u043E\u0441\u0435\u0442\u0438\u043B\u0430\u0446\u0430"@sr . + "prozentuale Ver\u00E4nderung der Besucherzahl"@de . + "Percentage increase or decrease."@en . + . + . + . + . + . + "mythology"@en . + "Mythologie"@de . + "mitologia"@it . + "\u03BC\u03C5\u03B8\u03BF\u03BB\u03BF\u03B3\u03AF\u03B1"@el . + . + . + . + . + "past member"@en . + . + . + . + . + . + "IFTA Award"@en . + . + . + . + . + . + . + "associated musical artist"@en . + "\u03C3\u03C5\u03BD\u03B5\u03C1\u03B3\u03AC\u03C4\u03B7\u03C2-\u03BC\u03BF\u03C5\u03C3\u03B9\u03BA\u03CC\u03C2 \u03BA\u03B1\u03BB\u03BB\u03B9\u03C4\u03AD\u03C7\u03BD\u03B7\u03C2"@el . + . + . + . + . + . + "army"@en . + "Armee"@de . + "\u03C3\u03C4\u03C1\u03B1\u03C4\u03CC\u03C2"@el . + "\u0388\u03BD\u03B1\u03C2 \u03C3\u03C4\u03C1\u03B1\u03C4\u03CC\u03C2 \u03B1\u03C0\u03BF\u03C4\u03B5\u03BB\u03B5\u03AF \u03C4\u03B9\u03C2 \u03B5\u03C0\u03AF\u03B3\u03B5\u03B9\u03B5\u03C2 \u03AD\u03BD\u03BF\u03C0\u03BB\u03B5\u03C2 \u03B4\u03C5\u03BD\u03AC\u03BC\u03B5\u03B9\u03C2 \u03B5\u03BD\u03CC\u03C2 \u03AD\u03B8\u03BD\u03BF\u03C5\u03C2"@el . + . + . + . + . + . + "relegated teams"@en . + "Absteiger"@de . + "d\u00FC\u015Fenler"@tr . + . + . + . + . + . + . + "khl draft year"@en . + . + . + . + . + . + "Gaud\u00ED Award"@en . + "Premis Gaud\u00ED"@ca . + "Awards of the Catalan Academy of Cinema"@en . + . + . + . + . + . + . + "meeting building"@en . + "Tagungsgeb\u00E4ude"@de . + . + . + . + . + . + . + "last appearance"@en . + . + . + . + . + . + "number of laps"@en . + "Anzahl der Runden"@de . + . + . + . + . + . + "patron"@en . + "Patron"@de . + "patrono"@pt . + . + . + . + . + . + . + "race length (\u03BC)"@en . + "Rennl\u00E4nge (\u03BC)"@de . + . + . + . + . + . + "continent"@en . + "Kontinent"@de . + "\u03AE\u03C0\u03B5\u03B9\u03C1\u03BF\u03C2"@el . + "continente"@it . + "links a country to the continent it belongs"@en . + "\u03BC\u03B5\u03B3\u03AC\u03BB\u03B5\u03C2 \u03C0\u03B5\u03C1\u03B9\u03BF\u03C7\u03AD\u03C2 \u03BE\u03B7\u03C1\u03AC\u03C2 \u03C0\u03BF\u03C5 \u03C0\u03B5\u03C1\u03B9\u03C3\u03C4\u03BF\u03B9\u03C7\u03AF\u03B6\u03BF\u03BD\u03C4\u03B1\u03B9 \u03B1\u03C0\u03CC \u03C9\u03BA\u03B5\u03B1\u03BD\u03BF\u03CD\u03C2"@el . + . + . + . + . + . + . + . + "geolocdual"@en . + . + . + . + . + . + "victory percentage as manager"@en . + "\u043F\u0440\u043E\u0446\u0435\u043D\u0430\u0442 \u043F\u043E\u0431\u0435\u0434\u0430 \u043D\u0430 \u043C\u0435\u0441\u0442\u0443 \u043C\u0435\u043D\u0430\u045F\u0435\u0440\u0430"@sr . + . + . + . + . + . + "beest"@nl . + "\u03B6\u03CE\u03BF"@el . + "animal"@fr . + "\u0436\u0438\u0432\u043E\u0442\u0438\u045A\u0430"@sr . + "animal"@en . + "\u52D5\u7269"@ja . + "Tier"@de . + . + . + . + . + . + "continental tournament"@en . + . + . + . + . + . + "date budget"@en . + . + . + . + . + "area of a land (m2)"@en . + . + . + . + . + . + . + "start year"@en . + "Startjahr"@de . + . + . + . + . + "race horse"@en . + "Rennpferd"@de . + . + . + . + . + . + "highest position"@en . + "H\u00F6chststand"@de . + . + . + . + . + . + "flagSize"@en . + . + . + . + . + . + "current rank"@en . + "aktueller Ranglistenplatz"@de . + . + . + . + . + . + "arm"@en . + "\u03CE\u03BC\u03BF\u03C2"@el . + . + . + . + . + . + "type of municipality"@en . + "Gemeindetyp"@de . + "type gemeente"@nl . + . + . + . + . + . + "this season"@en . + "bu sezon"@tr . + . + . + . + . + . + . + "austrian land tag"@en . + . + . + . + . + . + "penis length"@en . + . + . + . + . + . + "world tournament gold"@en . + "\u0431\u0440\u043E\u0458 \u0437\u043B\u0430\u0442\u043D\u0438\u0445 \u043C\u0435\u0434\u0430\u0459\u0430 \u0441\u0430 \u0441\u0432\u0435\u0442\u0441\u043A\u0438\u0445 \u0442\u0443\u0440\u043D\u0438\u0440\u0430"@sr . + . + . + . + . + . + "neighbour region"@en . + "Nachbarregion"@de . + . + . + . + . + . + "individualised GND number"@en . + "Gemeinsame Normdatei"@de . + "GND (Gemeinsame Normdatei) is an international authority file for the organisation of personal names, subject headings and corporate bodies from catalogues. It is used mainly for documentation in libraries and archives. The GND is managed by the German National Library in cooperation with various library networks. The GND falls under the Creative Commons Zero(CC0) license."@en . + . + . + . + . + . + "sex"@en . + "\u03C6\u03CD\u03BB\u03BF"@el . + "Geschlecht"@de . + "sexe"@fr . + . + . + . + . + . + . + "legal form"@en . + "rechtsvorm"@nl . + "Rechtsform"@de . + "There are many types of business entity defined in the legal systems of various countries. These include corporations, cooperatives, partnerships, sole traders, limited liability company and other specialized types of organization."@en . + "Die Rechtsform definiert die juristischen Rahmenbedingungen einer Organisation bzw. Unternehmens."@de . + . + . + . + . + . + "ISO 639-1 code"@en . + "ISO 639-1 code"@nl . + "kod ISO 639-1"@pl . + . + . + . + . + . + . + . + . + "per capital income rank"@en . + . + . + . + . + . + "scientific name"@en . + "wissenschaftlicher Name"@de . + "wetenschappelijke naam"@nl . + . + . + . + . + . + "secretary"@en . + "Sekret\u00E4rin"@de . + "secretaris"@nl . + "secretario"@pt . + . + . + . + . + . + . + "satellite"@en . + "Satellit"@de . + "\u03B4\u03BF\u03C1\u03C5\u03C6\u03CC\u03C1\u03BF\u03C2"@el . + . + . + . + . + . + "line"@en . + "ligne"@fr . + "ligne d'un arr\u00EAt sur une route."@fr . + "line of a stop on a route."@en . + . + . + . + . + "route previous stop"@en . + "arr\u00EAt pr\u00E9c\u00E9dent"@fr . + "previous stop on a route."@en . + "arr\u00EAt pr\u00E9c\u00E9dent sur une route."@fr . + . + . + . + . + . + "quote"@en . + . + . + . + . + . + "type of grain (wheat etc.)"@en . + "Getreideart (Weizen usw.)"@de . + "graansoort"@nl . + . + . + . + . + . + "purpose"@en . + "Zweck"@de . + "doel"@nl . + "objectif"@fr . + . + . + . + . + "lihf hof"@en . + . + . + . + . + . + "lieutenant"@en . + "Leutnant"@de . + "lieutenant"@fr . + . + . + . + . + . + "mayor article"@en . + . + . + . + . + . + "lowest state"@en . + . + . + . + . + . + . + "access date"@en . + "Zugriffsdatum"@de . + "\u03B7\u03BC\u03B5\u03C1\u03BF\u03BC\u03B7\u03BD\u03AF\u03B1 \u03C0\u03C1\u03CC\u03C3\u03B2\u03B1\u03C3\u03B7\u03C2"@el . + "\u0434\u0430\u0442\u0443\u043C \u043F\u0440\u0438\u0441\u0442\u0443\u043F\u0430"@sr . + . + . + . + . + "head teacher"@en . + "Schulleiter"@de . + . + . + . + . + . + . + "pluviometry"@en . + "Regenmessung"@de . + . + . + . + . + . + "super-order"@en . + "bovenorde"@nl . + . + . + . + . + "end year of sales"@en . + . + . + . + . + . + "frequency of publication"@en . + "frequentie van publicatie"@nl . + "Erscheinungsweise"@de . + "The frequency of periodical publication (eg. Weekly, Bimonthly)."@en . + "Die H\u00E4ufigkeit der Erscheinungen des Periodikums (z.B. w\u00F6chentlich, monatlich)."@de . + . + . + . + . + . + "toll ($)"@en . + "Maut ($)"@de . + . + . + . + . + . + "tower height"@en . + "Turmh\u00F6he"@de . + "hoogte van de toren"@nl . + . + . + . + . + . + "current team"@en . + "aktuelle Mannschaft"@de . + "\u6240\u5C5E\u30C1\u30FC\u30E0"@ja . + . + . + . + . + . + "source position"@en . + . + . + . + . + . + "thumbnail"@en . + "Reserved for DBpedia."@en . + . + . + . + . + . + "meeting city"@en . + . + . + . + . + . + . + "production start year"@en . + "productie beginjaar"@nl . + . + . + . + . + "debutWork"@en . + "First work of a person (may be notableWork or not)"@en . + . + . + . + . + . + "pronunciation"@en . + "Aussprache"@de . + . + . + . + . + "first place"@en . + "erster Platz"@de . + . + . + . + . + "unknown outcomes"@en . + "\u043D\u0435\u043F\u043E\u0437\u043D\u0430\u0442\u0438 \u0438\u0441\u0445\u043E\u0434\u0438"@sr . + "number of launches with unknown outcomes (or in progress)"@en . + "\u0431\u0440\u043E\u0458 \u043B\u0430\u043D\u0441\u0438\u0440\u0430\u045A\u0430 \u0441\u0430 \u043D\u0435\u043F\u043E\u0437\u043D\u0430\u0442\u0438\u043C \u0438\u0441\u0445\u043E\u0434\u043E\u043C \u0438\u043B\u0438 \u0431\u0440\u043E\u0458 \u043B\u0430\u043D\u0441\u0438\u0440\u0430\u045A\u0430 \u043A\u043E\u0458\u0438 \u0441\u0443 \u0443 \u0442\u043E\u043A\u0443"@sr . + . + . + . + . + . + "expedition"@en . + "Expedition"@de . + . + . + . + . + . + "number of islands"@en . + "Anzahl der Inseln"@de . + . + . + . + . + . + "aircraft helicopter utility"@en . + . + . + . + . + . + . + "number of tracks"@en . + "Anzahl der Gleise"@de . + "Number of tracks of a railway or railway station."@en . + . + . + . + . + . + "postcode"@nl . + "\u03C4\u03B1\u03C7\u03C5\u03B4\u03C1\u03BF\u03BC\u03B9\u03BA\u03CC\u03C2 \u03BA\u03CE\u03B4\u03B9\u03BA\u03B1\u03C2"@el . + "code postal"@fr . + "c\u00F3digo postal"@pt . + "postal code"@en . + "Postleitzahl"@de . + "A postal code (known in various countries as a post code, postcode, or ZIP code) is a series of letters and/or digits appended to a postal address for the purpose of sorting mail."@en . + . + . + . + . + . + "reservations"@en . + "Reservierungen"@de . + "Are reservations required for the establishment or event?"@en . + . + . + . + . + . + "BPN Id"@en . + "Dutch project with material for 40,000 digitized biographies, including former colonies of the Netherlands."@en . + . + . + . + . + . + "coat of arms image"@en . + "bild wappen"@de . + "image of the coat of arms (heraldic symbol)"@en . + . + . + . + . + "family head"@en . + "Familienoberhaupt"@de . + "hoofd van de familie"@nl . + . + . + . + . + . + "code"@en . + "\u03BA\u03C9\u03B4\u03B9\u03BA\u03CC\u03C2"@el . + "Code"@de . + "code"@nl . + . + . + . + . + "selection point"@en . + . + . + . + . + . + "slogan"@en . + "slogan"@nl . + "Slogan"@de . + "\u0414\u0435\u0432\u0438\u0437"@bg . + . + . + . + . + "museum"@en . + "\u03BC\u03BF\u03C5\u03C3\u03B5\u03AF\u03BF"@el . + "museum"@de . + "\u535A\u7269\u9928"@ja . + . + . + . + . + . + . + "Emmy Award"@en . + "Emmy Award"@de . + . + . + . + . + . + . + "inflow"@en . + "Zufluss"@de . + "\u03B5\u03B9\u03C3\u03C1\u03BF\u03AE"@el . + . + . + . + . + . + . + . + "second team"@en . + "zweites Team"@de . + "\u03B4\u03B5\u03CD\u03C4\u03B5\u03C1\u03B7 \u03BF\u03BC\u03AC\u03B4\u03B1"@el . + . + . + . + . + . + . + "maiden flight"@en . + "Jungfernflug"@de . + "date of maiden flight"@en . + . + . + . + . + . + "CODEN"@en . + "CODEN is a six character, alphanumeric bibliographic code, that provides concise, unique and unambiguous identification of the titles of serials and non-serial publications from all subject areas."@en . + . + . + . + . + . + . + "hrabstwo"@pl . + "provincie"@nl . + "\u0395\u03C0\u03B1\u03C1\u03C7\u03AF\u03B1"@el . + "county"@en . + "contae"@ga . + "Bezirk"@de . + "The county where the thing is located."@en . + . + . + . + . + . + . + "start point"@en . + "Startpunkt"@de . + "\u03C3\u03B7\u03BC\u03B5\u03AF\u03BF_\u03B1\u03C1\u03C7\u03AE\u03C2"@el . + . + . + . + . + . + . + "start year"@en . + "Startjahr"@de . + . + . + . + . + "wimbledon single"@en . + "\u0432\u0438\u043C\u0431\u043B\u0434\u043E\u043D \u043F\u043E\u0458\u0435\u0434\u0438\u043D\u0430\u0447\u043D\u043E"@sr . + . + . + . + . + . + "first olympic event"@en . + "premi\u00E8re \u00E9preuve olympique"@fr . + . + . + . + . + . + . + "lchf draft year"@en . + . + . + . + . + . + "depths"@en . + . + . + . + . + . + "INSEE code"@en . + "INSEE-code"@nl . + "numerical indexing code used by the French National Institute for Statistics and Economic Studies (INSEE) to identify various entities"@en . + . + . + . + . + . + . + "champion in single female"@en . + "champion en simple femmes"@fr . + "Campe\u00F3n en simple mujeres"@es . + "winner of a competition in the single female session, to distinguish from the double session (as in tennis)"@en . + . + . + . + . + . + . + . + "last air date"@en . + "Sendeschluss"@de . + "The date on which the broadcaster made its last broadcast."@en . + . + . + . + . + . + "pa\u0144stwo"@en . + "\u03A7\u03CE\u03C1\u03B1"@el . + "pa\u00EDs de localiza\u00E7\u00E3o"@pt . + "Country the thing is located."@en . + . + . + . + . + . + . + "temple"@en . + "Tempel"@de . + . + . + . + . + . + "diseasesDb"@en . + "diseasesDb"@nl . + "diseasesDb"@ja . + . + . + . + . + . + . + "creator of dish"@en . + "The person that creates (invents) the food (eg. Caesar Cardini is the creator of the Caesar salad)."@en . + . + . + . + . + . + . + "significant project"@en . + "bedeutendes Projekt"@de . + "istotne osi\u0105gni\u0119cie"@pl . + "A siginificant artifact constructed by the person."@en . + . + . + . + . + . + "licentie"@nl . + "\u03AC\u03B4\u03B5\u03B9\u03B1"@el . + "licence"@fr . + "license"@en . + "Lizenz"@de . + . + . + . + . + . + . + "aircraft helicopter observation"@en . + "\u03C0\u03B1\u03C1\u03B1\u03C4\u03AE\u03C1\u03B7\u03C3\u03B7 \u03B5\u03BB\u03B9\u03BA\u03BF\u03C6\u03CC\u03C1\u03BF\u03C5 \u03B1\u03B5\u03C1\u03BF\u03C3\u03BA\u03AC\u03C6\u03BF\u03C5\u03C2"@el . + "\u043E\u0441\u043C\u0430\u0442\u0440\u0430\u045A\u0435 \u0445\u0435\u043B\u0438\u043A\u043E\u043F\u0442\u0435\u0440\u043E\u043C"@sr . + . + . + . + . + . + . + "requirement"@en . + "Anforderung"@de . + . + . + . + . + "delegation"@en . + . + . + . + . + . + "skin color"@en . + . + . + . + . + . + . + "BNF Id"@en . + "Authority data of people listed in the general catalogue of the National Library of France"@en . + . + . + . + . + . + "type of municipality"@en . + "Art der Gemeinde"@de . + "type gemeente"@nl . + . + . + . + . + . + "kind"@nl . + "\u03C0\u03B1\u03B9\u03B4\u03AF"@el . + "child"@en . + "\u5B50\u4F9B"@ja . + "\u0637\u0641\u0644"@ar . + "Kind"@de . + . + . + . + . + . + . + . + "is peer reviewed"@en . + "In academia peer review is often used to determine an academic papers suitability for publication."@en . + . + . + . + . + . + . + "net income ($)"@en . + "Nettoergebnis ($)"@de . + . + . + . + . + . + "imposed danse score"@en . + . + . + . + . + . + "organisatie"@nl . + "\u03B5\u03C4\u03B1\u03B9\u03C1\u03B5\u03AF\u03B1"@el . + "company"@en . + "\u4F1A\u793E"@ja . + "Firma"@de . + . + . + . + . + . + "volcanic type"@en . + "Vulkantyp"@de . + "\u0442\u0438\u043F \u0432\u0443\u043B\u043A\u0430\u043D\u0430"@sr . + . + . + . + . + . + "roland garros single"@en . + . + . + . + . + . + "intercommunality"@en . + . + . + . + . + . + "route direction"@en . + "Himmelsrichtung des Verkehrsweges"@de . + "The general direction of the route (eg. North-South)."@en . + "Himmelsrichtung des Verkehrsweges (z.B. North-South)."@de . + . + . + . + . + . + "third commander"@en . + . + . + . + . + . + . + "architectual bureau"@en . + "Architekturb\u00FCro"@de . + "\u03B1\u03C1\u03C7\u03B9\u03C4\u03B5\u03BA\u03C4\u03BF\u03BD\u03B9\u03BA\u03AE \u03BA\u03B1\u03C4\u03B1\u03C3\u03BA\u03B5\u03C5\u03AE"@el . + . + . + . + . + . + . + "wine year"@en . + "Weinjahr"@de . + "\u0433\u043E\u0434\u0438\u043D\u0430 \u0444\u043B\u0430\u0448\u0438\u0440\u0430\u045A\u0430 \u0432\u0438\u043D\u0430"@sr . + . + . + . + . + . + "alma mater"@en . + "\u03C3\u03C0\u03BF\u03C5\u03B4\u03AD\u03C2"@el . + "\u0441\u0442\u0443\u0434\u0438\u0458\u0435"@sr . + "\u0430\u043B\u044C\u043C\u0430-\u043C\u0430\u0442\u0435\u0440"@ru . + "schools that they attended"@en . + . + . + . + . + . + . + . + "vice leader"@en . + "vicelider"@pt . + . + . + . + . + . + . + "delegate mayor"@en . + . + . + . + . + . + . + "shoe number"@en . + "schoenmaat"@nl . + "n\u00FAmero do sapato"@pt . + . + . + . + . + . + "state of origin team"@en . + . + . + . + . + . + "water"@en . + "Wasser"@de . + "\u0432\u043E\u0434\u0430"@sr . + . + . + . + . + . + "life expectancy"@en . + "Lebenserwartung"@de . + "expectativa de vida"@pt . + . + . + . + . + . + "draft team"@en . + . + . + . + . + . + . + "film colour type"@en . + "specifies the colour type of the film i.e. 'colour' or 'b/w'"@en . + . + . + . + . + . + "pseudonym"@en . + "pseudoniem"@nl . + "Pseudonym"@de . + . + . + . + . + . + "afdeling"@nl . + "d\u00E9partement"@fr . + "department"@en . + "eskualdea"@eu . + "Abteilung"@de . + . + . + . + . + . + . + "jest cz\u0119\u015Bci\u0105"@pl . + "fait partie de"@fr . + "es parte de"@es . + "is part of"@en . + "ist ein Teil von"@de . + . + . + . + . + . + "operated by"@en . + "betrieben von"@de . + "Organisation or city who is the operator of the ArchitecturalStructure. Not to confuse with maintainer or the owner."@en . + . + . + . + . + . + "old district"@en . + "Altstadt"@de . + . + . + . + . + . + . + "cluster"@en . + "birlik"@tr . + . + . + . + . + . + "salary ($)"@en . + "\u03BC\u03B9\u03C3\u03B8\u03CC\u03C2 ($)"@el . + "Gehalt ($)"@de . + "\u7D66\u6599 ($)"@ja . + . + . + . + . + . + "address in road"@en . + "Adresse in Stra\u00DFe"@de . + "\u03B4\u03B9\u03B5\u03CD\u03B8\u03C5\u03BD\u03C3\u03B7 \u03C3\u03C4\u03BF\u03BD \u03B4\u03C1\u03CC\u03BC\u03BF"@el . + "\u0410\u0434\u0440\u0435\u0441\u0430 \u043D\u0430 \u043F\u0443\u0442\u0443"@sr . + "A building, organisation or other thing that is located in the road."@en . + "\u0388\u03BD\u03B1 \u03BA\u03C4\u03AE\u03C1\u03B9\u03BF, \u03BF\u03C1\u03B3\u03B1\u03BD\u03B9\u03C3\u03BC\u03CC\u03C2 \u03AE \u03BA\u03AC\u03C4\u03B9 \u03AC\u03BB\u03BB\u03BF \u03C0\u03BF\u03C5 \u03B2\u03C1\u03AF\u03C3\u03BA\u03B5\u03C4\u03B1\u03B9 \u03C3\u03C4\u03BF\u03BD \u03B4\u03C1\u03CC\u03BC\u03BF."@el . + . + . + . + . + . + "rebuild date"@en . + "herbouw datum"@nl . + . + . + . + . + "rocket"@en . + "Rakete"@de . + "fus\u00E9e"@fr . + "\u03C1\u03BF\u03C5\u03BA\u03AD\u03C4\u03B1"@el . + . + . + . + . + . + . + "reference for general data"@en . + "Referenz f\u00FCr allgemeine Daten"@de . + . + . + . + . + . + "lunar rover"@en . + "Mondfahrzeug"@de . + . + . + . + . + . + . + "Bioavailability"@en . + "\"The rate and extent to which the active ingredient or active moiety is absorbed from a drug product and becomes available at the site of action. For drug products that are not intended to be absorbed into the bloodstream, bioavailability may be assessed by measurements intended to reflect the rate and extent to which the active ingredient or active moiety becomes available at the site of action (21CFR320.1).\""@en . + . + . + . + . + . + "home arena"@en . + "Heimarena"@de . + . + . + . + . + . + . + "jaar van overlijden"@nl . + "\u03AD\u03C4\u03BF\u03C2 \u03B8\u03B1\u03BD\u03AC\u03C4\u03BF\u03C5"@el . + "death year"@en . + "\u6CA1\u5E74"@ja . + "Sterbejahr"@de . + . + . + . + . + . + "date unveiled"@en . + "datum onthulling"@nl . + "Designates the unveiling date"@en . + "Duidt de datum van onthulling aan"@nl . + . + . + . + . + . + "geneReviewsId"@en . + . + . + . + . + . + "alias"@nl . + "\u03C8\u03B5\u03C5\u03B4\u03CE\u03BD\u03C5\u03BC\u03BF"@el . + "alias"@fr . + "\u0430\u043B\u0438\u0458\u0430\u0441"@sr . + "\u043F\u0441\u0435\u0432\u0434\u043E\u043D\u0438\u043C"@ru . + "alias"@en . + "\u5225\u540D"@ja . + . + . + . + . + . + . + "former coach"@en . + "Ex-Trainer"@de . + . + . + . + . + . + . + "gross domestic product rank"@en . + . + . + . + . + . + "\u03B1\u03C1\u03B9\u03B8\u03BC\u03CC\u03C2 \u03BC\u03B5\u03BB\u03CE\u03BD"@el . + "nombre de membres"@fr . + "n\u00FAmero de membros"@pt . + "numero de miembros"@es . + "number of members"@en . + "Anzahl der Mitglieder"@de . + . + . + . + . + . + "Alps supergroup"@en . + "Alps \u03C5\u03C0\u03B5\u03C1\u03BF\u03BC\u03AC\u03B4\u03B1"@el . + "supergruppo alpino"@it . + "\u0410\u043B\u043F\u0441\u043A\u0430 \u0441\u0443\u043F\u0435\u0440\u0433\u0440\u0443\u043F\u0430"@sr . + "the Alps supergroup to which the mountain belongs, according to the SOIUSA classification"@en . + . + . + . + . + . + . + "red list ID NL"@en . + "rode lijst ID NL"@nl . + "red list code for treatened species NL (different from IUCN)"@en . + "rode lijst ID van bedreigde soorten in Nederland"@nl . + . + . + . + . + . + "number of turns"@en . + "nombre de virages"@fr . + . + . + . + . + . + "european affiliation"@en . + "afiliacao europeia"@pt . + . + . + . + . + . + "last flight"@en . + "letzter Flug"@de . + . + . + . + . + . + . + "rocket function"@en . + "purpose of the rocket"@en . + . + . + . + . + . + "artistic function"@en . + . + . + . + . + . + "dissolved"@en . + . + . + . + . + . + "latest preview date"@en . + . + . + . + . + . + "present municipality"@en . + "aktuelle Gemeinde"@de . + "ligt nu in gemeente"@nl . + . + . + . + . + . + "boiler"@en . + "Kessel"@de . + "\u03B4\u03BF\u03C7\u03B5\u03AF\u03BF \u03B2\u03C1\u03AC\u03C3\u03B7\u03C2"@el . + . + . + . + . + . + "heilige"@nl . + "\u03AC\u03B3\u03B9\u03BF\u03C2"@el . + "santo"@pt . + "saint"@en . + "Heiliger"@de . + . + . + . + . + . + . + "operating system"@en . + "\u03BB\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03B9\u03BA\u03CC \u03C3\u03CD\u03C3\u03C4\u03B7\u03BC\u03B1"@el . + "Betriebssystem"@de . + "besturingssysteem"@nl . + . + . + . + . + . + "olympic games silver"@en . + "zilver op de Olympische Spelen"@nl . + . + . + . + . + . + "narrator"@en . + "Erz\u00E4hler"@de . + . + . + . + . + . + . + "lower earth orbit payload (g)"@en . + "Payload mass in a typical Low Earth orbit"@en . + . + . + . + . + . + "programming language"@en . + "Programmiersprache"@de . + . + . + . + . + . + "bronze medal mixed"@en . + "Bronzemedaille gemischt"@de . + . + . + . + . + . + "number of matches or caps"@en . + . + . + . + . + . + "maximum area"@en . + "maximale Fl\u00E4che"@de . + . + . + . + . + . + "faculty size"@en . + "number of faculty members"@en . + . + . + . + . + . + "second driver"@en . + "zweiter Fahrer"@de . + "\u03B4\u03B5\u03CD\u03C4\u03B5\u03C1\u03BF\u03C2 \u03BF\u03B4\u03B7\u03B3\u03CC\u03C2"@el . + "secondo pilota"@it . + . + . + . + . + . + . + "arrest date"@en . + . + . + . + . + . + "miejsce poch\u00F3wku"@pl . + "begraafplaats"@nl . + "\u03C4\u03CC\u03C0\u03BF\u03C2 \u03B8\u03B1\u03C8\u03AF\u03BC\u03B1\u03C4\u03BF\u03C2"@el . + "place of burial"@en . + "lloc d'enterrament"@ca . + "Ort der Bestattung"@de . + "The place where the person has been buried."@en . + "\u039F \u03C4\u03CC\u03C0\u03BF\u03C2 \u03CC\u03C0\u03BF\u03C5 \u03C4\u03BF \u03C0\u03C1\u03CC\u03C3\u03C9\u03C0\u03BF \u03AD\u03C7\u03B5\u03B9 \u03B8\u03B1\u03C6\u03C4\u03B5\u03AF."@el . + "De plaats waar een persoon is begraven."@nl . + . + . + . + . + . + . + . + "current production"@en . + "The current production running in the theatre."@en . + . + . + . + . + . + "flying hours (s)"@en . + "Flugstunden (s)"@de . + . + . + . + . + . + "chromosom"@pl . + "\u03C7\u03C1\u03C9\u03BC\u03CC\u03C3\u03C9\u03BC\u03B1"@el . + "chromosome"@en . + "cr\u00F3mas\u00F3m"@ga . + "\u67D3\u8272\u4F53"@ja . + "Chromosom"@de . + . + . + . + . + . + . + "map description"@en . + "kaart omschrijving"@nl . + . + . + . + . + . + "Primite"@en . + . + . + . + . + . + "redaktor"@pl . + "redacteur"@nl . + "\u03C3\u03C5\u03BD\u03C4\u03AC\u03BA\u03C4\u03B7\u03C2"@el . + "editor"@en . + "eagarth\u00F3ir"@ga . + "Herausgeber"@de . + . + . + . + . + . + . + "Symbol"@en . + "symbool"@nl . + "Symbol"@de . + "HUGO Gene Symbol"@en . + . + . + . + . + . + "headquarter"@en . + "\u03B1\u03C1\u03C7\u03B7\u03B3\u03B5\u03AF\u03BF"@el . + "Hauptsitz"@de . + "si\u00E8ge"@fr . + . + . + . + . + . + . + "non-fiction subject"@en . + "non-fictie onderwerp"@nl . + "The subject of a non-fiction book (e.g.: History, Biography, Cookbook, Climate change, ...)."@en . + . + . + . + . + . + "number of spans"@en . + "Anzahl der B\u00F6gen"@de . + "Number of spans or arches."@en . + . + . + . + . + . + "iso code of a place"@en . + "ISO-Code eines Ortes"@de . + . + . + . + . + . + "version"@en . + "Version"@de . + "versie"@nl . + . + . + . + . + "ship draft (\u03BC)"@en . + "Schiffsentwurf (\u03BC)"@de . + "The draft (or draught) of a ship's hull is the vertical distance between the waterline and the bottom of the hull (keel), with the thickness of the hull included; in the case of not being included the draft outline would be obtained."@en . + . + . + . + . + . + "world tournament"@en . + "Weltturnier"@de . + "\u0441\u0432\u0435\u0442\u0441\u043A\u0438 \u0442\u0443\u0440\u043D\u0438\u0440"@sr . + . + . + . + . + . + "A Person's role in an event"@en . + "Rol van een persoon in een gebeurtenis"@nl . + "r\u00F4le d'une personne dans un \u00E9v\u00E9nement"@fr . + . + . + . + . + . + "foundation"@en . + "Gr\u00FCndung"@de . + . + . + . + . + . + "piston stroke (\u03BC)"@en . + . + . + . + . + . + "end year of insertion"@en . + . + . + . + . + . + "PDB"@en . + "PDB"@ja . + . + . + . + . + . + . + "gross domestic product per people"@en . + . + . + . + . + . + "gross domestic product purchasing power parity per capita"@en . + . + . + . + . + . + "surface area (m2)"@en . + "Oberfl\u00E4che (m2)"@de . + "\u03AD\u03BA\u03C4\u03B1\u03C3\u03B7 (m2)"@el . + . + . + . + . + . + "connects referenced to"@en . + "verbindt referentieobject met"@nl . + "connects a referenced resource to another resource"@en . + "creeert een verwijzing van het gerefereerde objct naar een ander object"@nl . + . + . + . + . + "original danse competititon"@en . + . + . + . + . + . + "significant design"@en . + "bedeutendes Design"@de . + . + . + . + . + . + "governorate"@en . + . + . + . + . + . + "status manager"@en . + . + . + . + . + . + "sourceText"@en . + "Source of something (eg an image) as text. Use dct:source if the source is described using a resource"@en . + . + . + . + . + "religious order"@en . + "religieuze orde"@nl . + . + . + . + . + . + . + "Genome DB"@en . + "Genome DB"@ja . + "the edition of the database used (i.e. hg19)"@en . + . + . + . + . + . + "cultivar"@en . + "Name of the cultivar (cultivated variety)"@en . + . + . + . + . + . + . + "pertes"@fr . + "casualties"@en . + "Verluste"@de . + . + . + . + . + . + "branch from"@en . + "\u03C0\u03B1\u03C1\u03AC\u03C1\u03C4\u03B7\u03BC\u03B1 \u03B1\u03C0\u03CC"@el . + . + . + . + . + . + . + "commissioner"@en . + "Kommissar"@de . + . + . + . + . + . + "kookpunt (K)"@nl . + "\u03C3\u03B7\u03BC\u03B5\u03AF\u03BF \u03B2\u03C1\u03B1\u03C3\u03BC\u03BF\u03CD (K)"@el . + "point d'\u00E9bullition (K)"@fr . + "boiling point (K)"@en . + "\u6CB8\u70B9 (K)"@ja . + "Siedepunkt (K)"@de . + . + . + . + . + . + "victory as manager"@en . + . + . + . + . + . + "drama"@en . + "Drama"@de . + . + . + . + . + . + . + "block"@en . + "Block"@de . + "blok"@tr . + . + . + . + . + . + "ceeb"@en . + . + . + . + . + . + "wpt title"@en . + "WPT \u0442\u0438\u0442\u0443\u043B\u0430"@sr . + . + . + . + . + . + "agglomeration population total"@en . + "\u0443\u043A\u0443\u043F\u043D\u0430 \u043F\u043E\u043F\u0443\u043B\u0430\u0446\u0438\u0458\u0430 \u0430\u0433\u043B\u043E\u043C\u0435\u0440\u0430\u0446\u0438\u0458\u0435"@sr . + . + . + . + . + "number of rockets"@en . + "Anzahl der Raketen"@de . + . + . + . + . + . + "bronze medal single"@en . + "Bronzemedaille Einzel"@de . + . + . + . + . + . + "settlement attached"@en . + . + . + . + . + . + "little pool record"@en . + . + . + . + . + . + "military rank"@en . + "milit\u00E4rischer Rang"@de . + "The highest rank achieved by a person."@en . + . + . + . + . + . + "purchasing power parity"@en . + . + . + . + . + . + "racket catching"@en . + . + . + . + . + . + "width of runway (\u03BC)"@en . + "\u6ED1\u8D70\u8DEF\u306E\u5168\u5E45 (\u03BC)"@ja . + . + . + . + . + . + "player in team"@en . + "Spieler im Team"@de . + "\u03C0\u03B1\u03AF\u03C7\u03C4\u03B7\u03C2 \u03C3\u03B5 \u03BF\u03BC\u03AC\u03B4\u03B1"@el . + "A person playing for the sports team."@en . + "\u0386\u03C4\u03BF\u03BC\u03BF \u03C0\u03BF\u03C5 \u03C0\u03B1\u03AF\u03B6\u03B5\u03B9 \u03B3\u03B9\u03B1 \u03B1\u03B8\u03BB\u03B7\u03C4\u03B9\u03BA\u03AE \u03BF\u03BC\u03AC\u03B4\u03B1."@el . + . + . + . + . + . + . + "second"@en . + . + . + . + . + . + "number of films"@en . + "Anzahl der Filme"@de . + "\u03B1\u03C1\u03B9\u03B8\u03BC\u03CC\u03C2 \u03C4\u03B1\u03B9\u03BD\u03B9\u03CE\u03BD"@el . + . + . + . + . + . + "youth years"@en . + "Jugendjahre"@de . + "\u043E\u043C\u043B\u0430\u0434\u0438\u043D\u0441\u043A\u0435 \u0433\u043E\u0434\u0438\u043D\u0435"@sr . + . + . + . + . + . + "backhand"@en . + "R\u00FCckhand"@de . + . + . + . + . + . + "voltage of electrification (V)"@en . + "Voltzahl der Elektrifizierung (V)"@de . + "Voltage of the electrification system."@en . + . + . + . + . + . + "abbey church blessing"@en . + "Abteikirche weihe"@de . + "\u043E\u043F\u0430\u0442\u0438\u0458\u0441\u043A\u0438 \u0446\u0440\u043A\u0432\u0435\u043D\u0438 \u0431\u043B\u0430\u0433\u043E\u0441\u043B\u043E\u0432"@sr . + . + . + . + . + . + "logo"@en . + "\u03BB\u03BF\u03B3\u03CC\u03C4\u03C5\u03C0\u03BF"@el . + "logo"@nl . + . + . + . + . + "garrison"@en . + "Garnison"@de . + . + . + . + . + . + . + "population as of"@en . + "bevolking vanaf"@nl . + "population en date de"@fr . + "\u03C7\u03C1\u03BF\u03BD\u03B9\u03AC_\u03B1\u03C0\u03BF\u03B3\u03C1\u03B1\u03C6\u03AE\u03C2"@el . + . + . + . + . + . + "winning team"@en . + "Siegerteam"@de . + . + . + . + . + . + . + "NUTS code"@en . + "NUTS-code:"@nl . + "Nomenclature of Territorial Units for Statistics (NUTS) is a geocode standard for referencing the subdivisions of countries for statistical purposes. The standard is developed and regulated by the European Union, and thus only covers the member states of the EU in detail."@en . + . + . + . + . + . + "trainer"@nl . + "\u03B5\u03BA\u03C0\u03B1\u03B9\u03B4\u03B5\u03C5\u03C4\u03AE\u03C2"@el . + "entra\u00EEneur"@fr . + "trainer"@en . + "Trainer"@de . + . + . + . + . + . + . + "landing date"@en . + "Landedatum"@de . + . + . + . + . + . + . + "coach"@en . + "Trainer"@de . + "\u03C0\u03C1\u03BF\u03C0\u03BF\u03BD\u03B7\u03C4\u03AE\u03C2"@el . + . + . + . + . + . + "derivative"@en . + . + . + . + . + . + . + "reopening date"@en . + "Wiederer\u00F6ffnungdatum"@de . + "Date of reopening the architectural structure."@en . + . + . + . + . + . + "\u0397\u03BC\u03B5\u03C1\u03BF\u03BC\u03B7\u03BD\u03AF\u03B1 \u03B1\u03BD\u03B1\u03BA\u03AC\u03BB\u03C5\u03C8\u03B7\u03C2"@el . + "date de d\u00E9couverte"@fr . + "descobridor"@pt . + "fecha de descubrimiento"@es . + "discovery date"@en . + "entdeckt"@de . + . + . + . + . + . + . + "metropolitan borough"@en . + "stadswijk"@nl . + . + . + . + . + . + . + "date membership established"@en . + "datum vaststellen ledental"@nl . + . + . + . + . + . + "no contest"@en . + . + . + . + . + . + "number of goals scored"@en . + "Anzahl der erzielten Tore"@de . + . + . + . + . + . + "coast line (\u03BC)"@en . + "K\u00FCste (\u03BC)"@de . + . + . + . + . + . + "track length (\u03BC)"@en . + "Streckenl\u00E4nge (\u03BC)"@de . + "Length of the track. Wikipedians usually do not differentiate between track length and line lenght."@en . + . + . + . + . + . + "number of visitors as of"@en . + "The year in which number of visitors occurred."@en . + . + . + . + . + . + "premiere place"@en . + "The theatre and/or city the play was first performed in."@en . + . + . + . + . + . + "completion date"@en . + "\u03B7\u03BC\u03B5\u03C1\u03BF\u03BC\u03B7\u03BD\u03AF\u03B1 \u03BF\u03BB\u03BF\u03BA\u03BB\u03AE\u03C1\u03C9\u03C3\u03B7\u03C2"@el . + "Fertigstellungstermin"@de . + "datum van oplevering"@nl . + . + . + . + . + . + "cable car"@en . + "Drahtseilbahn"@de . + . + . + . + . + . + "arrondissement"@en . + "arrondissement"@nl . + "arrondissement"@fr . + "\u03B4\u03B9\u03B1\u03BC\u03AD\u03C1\u03B9\u03C3\u03BC\u03B1"@el . + . + . + . + . + . + . + "academic advisor"@en . + "promotor"@nl . + "\u03B1\u03BA\u03B1\u03B4\u03B7\u03BC\u03B1\u03CA\u03BA\u03BF\u03AF_\u03C3\u03CD\u03BC\u03B2\u03BF\u03C5\u03BB\u03BF\u03B9"@el . + "\u0430\u043A\u0430\u0434\u0435\u043C\u0441\u043A\u0438 \u0441\u0430\u0432\u0435\u0442\u043D\u0438\u043A"@sr . + . + . + . + . + . + . + "added"@en . + "\u03C0\u03C1\u03BF\u03C3\u03C4\u03B9\u03B8\u03AD\u03BC\u03B5\u03BD\u03B7"@el . + "\u0434\u043E\u0434\u0430\u0442\u043E"@sr . + . + . + . + . + . + "Dorlands prefix"@en . + . + . + . + . + . + "route type abbreviation"@en . + "The route type abbreviation (eg.: I for Interstate, M for Motorway or NJ for New Jersey Route)."@en . + . + . + . + . + . + "ward of a liechtenstein settlement"@en . + . + . + . + . + . + "summer appearances"@en . + . + . + . + . + . + . + "minority leader"@en . + "number of office holder"@en . + . + . + . + . + "free flight time (s)"@en . + . + . + . + . + . + . + "data urodzenia"@pl . + "geboortedatum"@nl . + "\u03B7\u03BC\u03B5\u03C1\u03BF\u03BC\u03B7\u03BD\u03AF\u03B1_\u03B3\u03AD\u03BD\u03BD\u03B7\u03C3\u03B7\u03C2"@el . + "date de naissance"@fr . + "birth date"@en . + "\u099C\u09A8\u09CD\u09AE\u09A6\u09BF\u09A8"@bn . + "d\u00E1ta breithe"@ga . + "\u751F\u5E74\u6708\u65E5"@ja . + "data de naixement"@ca . + "Geburtsdatum"@de . + . + . + . + . + . + . + . + "eruption"@en . + "Ausbruch"@de . + . + . + . + . + . + "per capita income as of"@en . + "renda per capita em"@pt . + . + . + . + . + . + "has natural bust"@en . + "tem busto natural"@pt . + . + . + . + . + . + "circuit length (\u03BC)"@en . + . + . + . + . + . + "aantal gewonnen bronzen medailles"@nl . + "nomber de m\u00E9dailles de bronze gagn\u00E9es"@fr . + "cantidad de medallas de bronce ganadas"@es . + "number of bronze medals won"@en . + "Anzahl der gewonnenen Bronzemedaillen"@de . + . + . + . + . + . + "United States National Bridge ID"@en . + "ID \u043D\u0430\u0446\u0438\u043E\u043D\u0430\u043B\u043D\u043E\u0433 \u043C\u043E\u0441\u0442\u0430 \u0443 \u0421\u0458\u0435\u0434\u0438\u045A\u0435\u043D\u0438\u043C \u0410\u043C\u0435\u0440\u0438\u0447\u043A\u0438\u043C \u0414\u0440\u0436\u0430\u0432\u0430\u043C\u0430"@sr . + . + . + . + . + . + "draft year"@en . + . + . + . + . + "end career"@en . + . + . + . + . + . + "sport"@en . + "Sport"@de . + "\u03AC\u03B8\u03BB\u03B7\u03BC\u03B1"@el . + "sport"@fr . + . + . + . + . + . + "id"@en . + . + . + . + . + . + "average depth quote"@en . + . + . + . + . + . + "other activity"@en . + "andere Aktivit\u00E4t"@de . + . + . + . + . + . + "landing site"@en . + "Landeplatz"@de . + . + . + . + . + . + "capital elevation (\u03BC)"@en . + . + . + . + . + . + "Identifier for Duch National Archive"@en . + "Code Nationaal Archief"@nl . + . + . + . + . + . + . + "crown dependency"@en . + . + . + . + . + . + "end occupation"@en . + . + . + . + . + "prominence (\u03BC)"@en . + . + . + . + . + "geslacht"@nl . + "genre (biologie)"@fr . + "g\u00E9nero (biolog\u00EDa)"@es . + "genus"@en . + "\u5C5E_(\u5206\u985E\u5B66)"@ja . + "Gattung"@de . + "A rank in the classification of organisms, below family and above species; a taxon at that rank"@en . + "Rang taxinomique (ou taxonomique) qui regroupe un ensemble d'esp\u00E8ces ayant en commun plusieurs caract\u00E8res similaires."@fr . + . + . + . + . + . + . + "state delegate"@en . + . + . + . + . + . + "chairman title"@en . + . + . + . + . + . + "split from party"@en . + "Abspaltung von Partei"@de . + . + . + . + . + . + . + "engineer"@en . + "ingenieur"@nl . + "Ingenieur"@de . + "\u03BC\u03B7\u03C7\u03B1\u03BD\u03B9\u03BA\u03CC\u03C2"@el . + . + . + . + . + . + "officer in charge"@en . + . + . + . + . + . + . + "cylinder count"@en . + . + . + . + . + . + "debut"@en . + "\u03BD\u03C4\u03B5\u03BC\u03C0\u03BF\u03CD\u03C4\u03BF"@el . + "Deb\u00FCt"@de . + "\u30C7\u30D3\u30E5\u30FC"@ja . + . + . + . + . + . + "national tournament silver"@en . + . + . + . + . + . + "call sign meaning"@en . + "The out written call sign."@en . + . + . + . + . + . + "EntrezGene"@en . + "EntrezGene"@ja . + . + . + . + . + . + "peopleName"@en . + "Name for the people inhabiting a place, eg Ankara->Ankariotes, Bulgaria->Bulgarians"@en . + . + . + . + . + . + "aircraft gun"@en . + "Flugabwehrkanone"@de . + "\u03A0\u03BF\u03BB\u03C5\u03B2\u03CC\u03BB\u03BF"@el . + . + . + . + . + . + "date extended"@en . + "\u03B5\u03C0\u03AD\u03BA\u03C4\u03B1\u03C3\u03B7"@el . + . + . + . + . + . + "ratio"@en . + . + . + . + . + . + "wins at ALPG"@en . + "\u043F\u043E\u0431\u0435\u0434\u0435 \u043D\u0430 ALPG"@sr . + . + . + . + . + . + "play role"@en . + . + . + . + . + . + "active years end date manager"@en . + . + . + . + . + . + "enemy"@en . + "Feind"@de . + . + . + . + . + . + . + "ra"@en . + . + . + . + . + . + "minimum elevation (\u03BC)"@en . + "\u03B2\u03AC\u03C3\u03B7 (\u03BC)"@el . + "minimum elevation above the sea level"@en . + . + . + . + . + . + "inclination"@en . + . + . + . + . + . + "sharing out population"@en . + . + . + . + . + . + "other function"@en . + "andere Funktion"@de . + . + . + . + . + "max"@en . + . + . + . + . + "black ski piste number"@en . + . + . + . + . + . + "khl draft year"@en . + . + . + . + . + . + "translated motto"@en . + . + . + . + . + "subsequent work"@en . + "nachfolgende Arbeiten"@de . + "vervolg werk"@nl . + "\u03B5\u03C0\u03CC\u03BC\u03B5\u03BD\u03B7 \u03B4\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1"@el . + . + . + . + . + . + . + "merged settlement"@en . + . + . + . + . + . + "associated rocket"@en . + "\u03C3\u03C5\u03BD\u03B4\u03B5\u03CC\u03BC\u03B5\u03BD\u03BF\u03C2 \u03C0\u03CD\u03C1\u03B1\u03C5\u03BB\u03BF\u03C2"@el . + . + . + . + . + . + . + "shore length (\u03BC)"@en . + "Uferl\u00E4nge (\u03BC)"@de . + "\u03BC\u03AE\u03BA\u03BF\u03C2_\u03CC\u03C7\u03B8\u03B7\u03C2 (\u03BC)"@el . + . + . + . + . + . + "hoogte (\u03BC)"@nl . + "\u03C5\u03C8\u03CC\u03BC\u03B5\u03C4\u03C1\u03BF (\u03BC)"@el . + "altitude (\u03BC)"@fr . + "altitude (\u03BC)"@pt . + "altitud (\u03BC)"@es . + "elevation (\u03BC)"@en . + "H\u00F6he (\u03BC)"@de . + "average elevation above the sea level"@en . + "altitude m\u00E9dia acima do n\u00EDvel do mar"@pt . + . + . + . + . + . + "source country"@en . + . + . + . + . + . + . + "agglomeration demographics"@en . + "\u0434\u0435\u043C\u043E\u0433\u0440\u0430\u0444\u0438\u0458\u0430 \u0430\u0433\u043B\u043E\u043C\u0435\u0440\u0430\u0446\u0438\u0458\u0435"@sr . + . + . + . + . + . + "work area (m2)"@en . + "\u0440\u0430\u0434\u043D\u0438 \u043F\u0440\u043E\u0441\u0442\u043E\u0440 (m2)"@sr . + "Arbeitspl\u00E4tze (m2)"@de . + . + . + . + . + . + "number of arrondissement"@en . + . + . + . + . + . + "gnl"@en . + . + . + . + . + . + "wimbledon mixed"@en . + "\u0432\u0438\u043C\u0431\u043B\u0434\u043E\u043D \u043C\u0438\u043A\u0441 \u0434\u0443\u0431\u043B"@sr . + . + . + . + . + . + "source region"@en . + . + . + . + . + . + "secondary/other fuel type"@en . + . + . + . + . + "number of academic staff"@en . + "Anzahl der wissenschaftlichen Mitarbeiter"@de . + "\u03B1\u03C1\u03B9\u03B8\u03BC\u03CC\u03C2 \u03B1\u03BA\u03B1\u03B4\u03B7\u03BC\u03B1\u03CA\u03BA\u03BF\u03CD \u03C0\u03C1\u03BF\u03C3\u03C9\u03C0\u03B9\u03BA\u03BF\u03CD"@el . + . + . + . + . + . + "colorChart"@en . + . + . + . + . + . + "climate"@en . + "clima"@pt . + "klima"@de . + "klimaat"@nl . + . + . + . + . + . + "wins at majors"@en . + . + . + . + . + . + "\u03B1\u03C1\u03B9\u03B8\u03BC\u03CC\u03C2 \u03B1\u03B8\u03BB\u03B7\u03C4\u03B9\u03BA\u03CE\u03BD \u03B3\u03B5\u03B3\u03BF\u03BD\u03CC\u03C4\u03C9\u03BD"@el . + "numbre d'\u00E9preuves sportives"@fr . + "numero de dpruebas deportivas"@es . + "number of sports events"@en . + "Anzahl der Sportveranstaltungen"@de . + . + . + . + . + "related"@en . + "verbunden"@de . + "gerelateerd"@nl . + . + . + . + . + "chief executive officer"@en . + "Gesch\u00E4ftsf\u00FChrer"@de . + . + . + . + . + . + . + . + "other appearances"@en . + . + . + . + . + . + . + "president regional council"@en . + . + . + . + . + . + . + "distance to Dublin (\u03BC)"@en . + "\u03B1\u03C0\u03CC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03B1\u03C0\u03CC \u03C4\u03BF \u0394\u03BF\u03C5\u03B2\u03BB\u03AF\u03BD\u03BF (\u03BC)"@el . + . + . + . + . + . + "speciality"@en . + "Spezialit\u00E4t"@de . + . + . + . + . + . + "lethal when given to chickens"@en . + "dodelijk voor kippen"@nl . + . + . + . + . + . + "population urban density (/sqkm)"@en . + . + . + . + . + . + "sub-order"@en . + "onderorde"@nl . + . + . + . + . + "title date"@en . + "titel datum"@nl . + "data do titulo"@pt . + . + . + . + . + . + "closing year"@en . + "Sluitingsjaar"@nl . + "Schlie\u00DFungsjahr"@de . + . + . + . + . + "opleiding"@nl . + "\u00E9ducation"@fr . + "education"@en . + "\u6559\u80B2"@ja . + "Bildung"@de . + . + . + . + . + . + . + "publication date"@en . + "Ver\u00F6ffentlichungsdatum"@de . + "publicatiedatum"@nl . + . + . + . + . + "closing film"@en . + . + . + . + . + . + . + "champion in mixed double"@en . + "kampioen gemengd dubbelspel"@nl . + "champion en double mixte"@fr . + "Campe\u00F3n en doble mixto"@es . + "winner of a competition in the mixed double session (as in tennis)"@en . + . + . + . + . + . + . + . + "length of runway (\u03BC)"@en . + "Start- und Landebahnl\u00E4nge (\u03BC)"@de . + . + . + . + . + . + "north place"@en . + "lieu au nord"@fr . + "indique un autre lieu situ\u00E9 au nord."@fr . + "indicates another place situated north."@en . + . + . + . + . + . + . + "phone prefix"@en . + "Telefonvorwahl"@de . + "Don't use this, use areaCode"@en . + . + . + . + . + . + "government"@en . + "Regierung"@de . + "gouvernement"@fr . + . + . + . + . + . + "updated"@en . + "\u0430\u0436\u0443\u0440\u0438\u0440\u0430\u043D"@sr . + "The last update date of a resource"@en . + "\u0434\u0430\u0442\u0443\u043C \u043F\u043E\u0441\u043B\u0435\u0434\u045A\u0435 \u0438\u0437\u043C\u0435\u043D\u0435"@sr . + . + . + . + . + "largest settlement"@en . + "gr\u00F6\u00DFte Siedlung"@de . + "grootste plaats"@nl . + . + . + . + . + . + . + "space"@en . + "Raum"@de . + . + . + . + . + . + "associated act"@en . + "\u03C3\u03C5\u03BD\u03B4\u03B5\u03B4\u03B5\u03BC\u03AD\u03BD\u03B7 \u03C0\u03C1\u03AC\u03BE\u03B7"@el . + . + . + . + . + . + . + "Alps main part"@en . + "\u03BA\u03CD\u03C1\u03B9\u03BF \u03BC\u03AD\u03C1\u03BF\u03C2 \u03C4\u03C9\u03BD \u03AC\u03BB\u03C0\u03B5\u03C9\u03BD"@el . + "grande parte alpina"@it . + "\u0433\u043B\u0430\u0432\u043D\u0438 \u0434\u0435\u043E \u0410\u043B\u043F\u0430"@sr . + "the Alps main part to which the mountain belongs, according to the SOIUSA classification"@en . + . + . + . + . + . + . + "taal"@nl . + "\u03B3\u03BB\u03CE\u03C3\u03C3\u03B1"@el . + "langue"@fr . + "l\u00EDngua"@pt . + "language"@en . + "Sprache"@de . + . + . + . + . + . + . + "board"@en . + "\u03B5\u03C0\u03B9\u03B2\u03B9\u03B2\u03AC\u03B6\u03BF\u03BC\u03B1\u03B9"@el . + "bestuur"@nl . + "\u53D6\u7DE0\u5F79\u4F1A"@ja . + . + . + . + . + . + "source confluence elevation (\u03BC)"@en . + . + . + . + . + "interest"@en . + "Interesse"@de . + "\u03B5\u03BD\u03B4\u03B9\u03B1\u03C6\u03AD\u03C1\u03BF\u03BD"@el . + . + . + . + . + . + "south-west place"@en . + "lieu au sud-ouest"@fr . + "indique un autre lieu situ\u00E9 au sud-ouest."@fr . + "indicates another place situated south-west."@en . + . + . + . + . + . + . + "chorus character in play"@en . + "The name of the (Greek) chorus character in play."@en . + . + . + . + . + . + . + "ship launched"@en . + . + . + . + . + . + "ground"@en . + . + . + . + . + . + . + "heisman"@en . + . + . + . + . + . + "gold medal single"@en . + . + . + . + . + . + "Model line vehicle"@en . + "Baureihe"@de . + . + . + . + . + . + "source confluence position"@en . + . + . + . + . + . + . + "production years"@en . + "Produktionsjahre"@de . + . + . + . + . + . + . + "installed capacity (W)"@en . + . + . + . + . + . + "last launch rocket"@en . + . + . + . + . + . + . + "city rank"@en . + "Rang Stadt"@de . + "Place of the building in the list of the highest buildings in the city"@en . + "Der Platz des Geb\u00E4udes in der Liste der h\u00F6chsten Geb\u00E4ude der Stadt"@de . + . + . + . + . + . + "lunar module"@en . + "Mondf\u00E4hre"@de . + . + . + . + . + . + "cost ($)"@en . + "Kosten ($)"@de . + "kosten ($)"@nl . + "\u03BA\u03CC\u03C3\u03C4\u03BF\u03C2 ($)"@el . + . + . + . + . + . + "fastest driver team"@en . + "\u03BF\u03BC\u03AC\u03B4\u03B1 \u03C4\u03B1\u03C7\u03CD\u03C4\u03B5\u03C1\u03BF\u03C5 \u03BF\u03B4\u03B7\u03B3\u03BF\u03CD"@el . + "schnellster Fahrer Team"@de . + . + . + . + . + . + . + "episode number"@en . + "The episode number of the TelevisionEpisode."@en . + . + . + . + . + . + . + "custodian"@en . + "Aufsichtsperson"@de . + . + . + . + . + . + . + "parliamentary group"@en . + "Fraktion"@de . + . + . + . + . + . + "foresterDistrict"@en . + . + . + . + . + . + "partij"@nl . + "\u03C0\u03AC\u03C1\u03C4\u03C5"@el . + "party"@en . + "\u653F\u515A"@ja . + "Partei"@de . + . + . + . + . + . + . + "party number"@en . + "n\u00FAmero do partido"@pt . + . + . + . + . + "date"@en . + "Datum"@de . + "datum"@nl . + "\u03B7\u03BC\u03B5\u03C1\u03BF\u03BC\u03B7\u03BD\u03AF\u03B1"@el . + . + . + . + . + . + "special trial"@en . + . + . + . + . + . + "other party"@en . + "andere Partei"@de . + . + . + . + . + . + . + "afdb id"@el . + "c\u00F3digo no afdb"@pt . + "AFDB ID"@sr . + "afdb id"@en . + "AFDB ID"@de . + . + . + . + . + . + "escape velocity (kmh)"@en . + . + . + . + . + . + "other information of a settlement"@en . + "andere Informationen einer Siedlung"@de . + . + . + . + . + . + "member"@en . + "Mitglied"@de . + "lid van"@nl . + . + . + . + . + . + "imposed danse competition"@en . + . + . + . + . + . + "choreographer"@en . + "Choreograph"@de . + "choreograaf"@nl . + "\u03C7\u03BF\u03C1\u03BF\u03B3\u03C1\u03AC\u03C6\u03BF\u03C2"@el . + . + . + . + . + . + . + "maximum depth quote"@en . + . + . + . + . + . + "appearances in league"@en . + "\u03B5\u03BC\u03C6\u03B1\u03BD\u03AF\u03C3\u03B5\u03B9\u03C2 \u03C3\u03C4\u03BF \u03C0\u03C1\u03C9\u03C4\u03AC\u03B8\u03BB\u03B7\u03BC\u03B1"@el . + "\u0431\u0440\u043E\u0458 \u043D\u0430\u0441\u0442\u0443\u043F\u0430 \u0443 \u043B\u0438\u0433\u0438"@sr . + . + . + . + . + . + "cause of death"@en . + "causa de mort"@ca . + "Todesursache"@de . + "przyczyna \u015Bmierci"@pl . + . + . + . + . + . + . + "licence number"@en . + . + . + . + . + . + "crew member"@en . + "Besatzungsmitglied"@de . + . + . + . + . + . + . + . + "joint community"@en . + . + . + . + . + . + . + "hoofdstad"@nl . + "\u03C0\u03C1\u03C9\u03C4\u03B5\u03CD\u03BF\u03C5\u03C3\u03B1"@el . + "capitale"@fr . + "capital"@pt . + "capital"@es . + "capital"@en . + "Hauptstadt"@de . + . + . + . + . + . + . + . + . + "eyes"@en . + "Augen"@de . + "\u03BC\u03AC\u03C4\u03B9\u03B1"@el . + "ogen"@nl . + "\u039C\u03AC\u03C4\u03B9 \u03BF\u03BD\u03BF\u03BC\u03AC\u03B6\u03B5\u03C4\u03B1\u03B9 \u03C4\u03BF \u03B1\u03B9\u03C3\u03B8\u03B7\u03C4\u03AE\u03C1\u03B9\u03BF \u03CC\u03C1\u03B3\u03B1\u03BD\u03BF \u03C4\u03B7\u03C2 \u03CC\u03C1\u03B1\u03C3\u03B7\u03C2 \u03C4\u03C9\u03BD \u03B6\u03C9\u03BD\u03C4\u03B1\u03BD\u03CE\u03BD \u03BF\u03C1\u03B3\u03B1\u03BD\u03B9\u03C3\u03BC\u03CE\u03BD."@el . + . + . + . + . + . + "is part of anatomical structure"@en . + "es parte de una estructura anat\u00F3mica"@es . + "ist ein Teil von anatomischer Struktur"@de . + . + . + . + . + . + . + . + "deanery"@en . + "Dekanat"@de . + "proosdij"@nl . + "Dioceses and parishes should know which deaneries there are"@en . + . + . + . + . + . + . + "e-teatr.pl id"@en . + . + . + . + . + . + "source district"@en . + . + . + . + . + . + "presenter"@en . + "Moderator"@de . + "\u03C0\u03B1\u03C1\u03BF\u03C5\u03C3\u03B9\u03B1\u03C3\u03C4\u03AE\u03C2"@el . + . + . + . + . + . + . + "national team year"@en . + . + . + . + . + . + "area date"@en . + . + . + . + . + . + "number of representatives"@en . + "Zahl der Vertreter"@de . + . + . + . + . + . + "note on resting place"@en . + . + . + . + . + . + "frozen"@en . + "gefroren"@de . + "\u03C0\u03B1\u03B3\u03C9\u03BC\u03AD\u03BD\u03B7"@el . + . + . + . + . + . + "successful launches"@en . + "erfolgreiche Starts"@de . + . + . + . + . + "grades"@en . + "\u03B2\u03B1\u03B8\u03BC\u03BF\u03AF"@el . + . + . + . + . + . + "BIBSYS Id"@en . + "BIBSYS is a supplier of library and information systems for all Norwegian university Libraries, the National Library of Norway, college libraries, and a number of research libraries and institutions."@en . + . + . + . + . + . + "platenlabel"@nl . + "\u03B4\u03B9\u03C3\u03BA\u03BF\u03B3\u03C1\u03B1\u03C6\u03B9\u03BA\u03AE"@el . + "label discographique"@fr . + "compa\u00F1\u00EDa discogr\u00E1fica"@es . + "record label"@en . + . + . + . + . + . + . + "project end date"@en . + "Projektende"@de . + "The end date of the project."@en . + . + . + . + . + . + "registry number"@en . + "Registrierungsnummer"@de . + "registernummer"@nl . + "Identification of the registry a document is in"@en . + . + . + . + . + . + "JSTOR"@en . + "JSTOR number (short for Journal Storage) is a United States-based online system number for archiving academic journals."@en . + . + . + . + . + . + "homeport"@en . + "port macierzysty"@pl . + . + . + . + . + . + . + . + "nfl code"@en . + . + . + . + . + . + "number of wineries"@en . + . + . + . + . + . + "austrian land tag mandate"@en . + . + . + . + . + . + "fed cup"@en . + . + . + . + . + . + "stat value"@en . + . + . + . + . + "not soluble in"@en . + "niet oplosbaar in"@nl . + . + . + . + . + . + "land registry code"@en . + . + . + . + . + . + "coemperor"@en . + . + . + . + . + . + "passengers used system"@en . + "benutztes System der Passagiere"@de . + "System the passengers are using (from which the passenger statistics are)."@en . + . + . + . + . + . + "is a city state"@en . + "ist ein Stadtstaat"@de . + . + . + . + . + . + "satellites deployed"@en . + . + . + . + . + . + "homage"@en . + "Huldigung"@de . + "eerbetoon"@nl . + . + . + . + . + . + "date of an agreement"@en . + . + . + . + . + . + "income"@en . + "Einkommen"@de . + . + . + . + . + . + "route activity"@en . + "activit\u00E9 de route"@fr . + "details of the activity for a road."@en . + "d\u00E9tail de l'activit\u00E9 sur une route."@fr . + . + . + . + . + "number of parking lots for trucks"@en . + "aantal parkeerplaatsen vrachtwagens"@nl . + . + . + . + . + . + "rating"@en . + "Wertung"@de . + "cijfer"@nl . + . + . + . + . + "territory"@en . + "Gebiet"@de . + "territorio"@es . + . + . + . + . + . + . + "bronze medal double"@en . + "Bronzemedaille Doppel"@de . + . + . + . + . + . + "TERYT code"@en . + "kod TERYT"@pl . + "indexing code used by the Polish National Official Register of the Territorial Division of the Country (TERYT) to identify various entities"@en . + . + . + . + . + . + "ensemble"@en . + "ensemble"@ja . + . + . + . + . + . + "The IUPAC International Chemical Identifier"@en . + "Internationale chemische Bezeichnung der IUPAC"@de . + "IUPAC internationale chemische identifier"@nl . + . + . + . + . + . + "dissolution year"@en . + . + . + . + . + . + "education system"@en . + . + . + . + . + . + "distance to Belfast (\u03BC)"@en . + . + . + . + . + . + "star rating"@en . + . + . + . + . + . + "formula"@en . + "Formel"@de . + "formule"@fr . + "formule"@nl . + . + . + . + . + . + "year of world champion title"@en . + "\u0433\u043E\u0434\u0438\u043D\u0430 \u043E\u0441\u0432\u0430\u0458\u0430\u045A\u0430 \u0441\u0432\u0435\u0442\u0441\u043A\u043E\u0433 \u0448\u0430\u043C\u043F\u0438\u043E\u043D\u0430\u0442\u0430"@sr . + "jaar van wereldkampioen titel"@nl . + "ann\u00E9e d'obtention du titre de champion du monde"@fr . + "can be one or several years"@en . + "\u043C\u043E\u0436\u0435 \u0431\u0438\u0442\u0438 \u0458\u0435\u0434\u043D\u0430 \u0438\u043B\u0438 \u0432\u0438\u0448\u0435 \u0433\u043E\u0434\u0438\u043D\u0430"@sr . + "il peut s'agir d'une ou de plusieurs ann\u00E9es"@fr . + . + . + . + . + . + "model start year"@en . + . + . + . + . + . + "recent winner"@en . + "letzter Gewinner"@de . + . + . + . + . + . + . + "number of live albums"@en . + "Anzahl von Live-Alben"@de . + "the number of live albums released by the musical artist"@en . + . + . + . + . + . + "major shrine"@en . + "bedeutender Schrein"@de . + "schrijn"@nl . + . + . + . + . + . + "main organ"@en . + . + . + . + . + . + "timeshift channel"@en . + . + . + . + . + . + "sales"@en . + "Vertrieb"@de . + "\u03C0\u03CE\u03BB\u03B7\u03C3\u03B7"@el . + "vente"@fr . + "This property holds an intermediate node of the type Sales."@en . + . + . + . + . + . + "Establishment"@en . + "\u03AF\u03B4\u03C1\u03C5\u03C3\u03B7"@el . + . + . + . + . + . + "meaning"@en . + "Bedeutung"@de . + . + . + . + . + "note"@en . + "Anmerkung"@de . + . + . + . + . + . + "third"@en . + . + . + . + . + . + "strona b"@pl . + "b side"@en . + "taobh b"@ga . + "cara b"@ca . + "B-Seite"@de . + . + . + . + . + . + . + "subdivision name of the island"@en . + . + . + . + . + . + . + "project start date"@en . + "Projektstart"@de . + "The start date of the project."@en . + . + . + . + . + . + "recorded in"@en . + "opgenomen in"@nl . + "\u03B7\u03C7\u03BF\u03B3\u03C1\u03AC\u03C6\u03B7\u03C3\u03B7"@el . + "enregistr\u00E9 \u00E0"@fr . + . + . + . + . + . + . + "aantal medewerkers"@nl . + "\u03B1\u03C1\u03B9\u03B8\u03BC\u03CC\u03C2 \u03B5\u03C1\u03B3\u03B1\u03B6\u03BF\u03BC\u03AD\u03BD\u03C9\u03BD"@el . + "nombre d'employ\u00E9s"@fr . + "n\u00FAmero de empleados"@es . + "number of employees"@en . + "Anzahl der Mitarbeiter"@de . + . + . + . + . + . + "area of search"@en . + "Suchgebiet"@de . + "\u03A0\u03B5\u03C1\u03B9\u03BF\u03C7\u03AE \u0391\u03BD\u03B1\u03B6\u03AE\u03C4\u03B7\u03C3\u03B7\u03C2"@el . + . + . + . + . + . + . + "national selection"@en . + "nationale Auswahl"@de . + . + . + . + . + "majority leader"@en . + "number of office holder"@en . + . + . + . + . + "record date"@en . + "Stichtag"@de . + "opname datum"@nl . + "\u03B7\u03C7\u03BF\u03B3\u03C1\u03AC\u03C6\u03B7\u03C3\u03B7"@el . + . + . + . + . + . + "number of parking lots for cars"@en . + "aantal parkeerplaatsen personenauto's"@nl . + . + . + . + . + . + "political seats"@en . + . + . + . + . + . + "special effects"@en . + "Spezialeffekte"@de . + "the person who is responsible for the film special effects"@en . + . + . + . + . + . + . + "\u03C0\u03C5\u03BA\u03BD\u03CC\u03C4\u03B7\u03C4\u03B1 (\u03BC3)"@el . + "densit\u00E9 (\u03BC3)"@fr . + "densidade (\u03BC3)"@pt . + "densit\u00E0 (\u03BC3)"@it . + "density (\u03BC3)"@en . + "\u5BC6\u5EA6 (\u03BC3)"@ja . + "Dichte (\u03BC3)"@de . + . + . + . + . + "IATA Location Identifier"@en . + "\u0399\u0391\u03A4\u0391"@el . + . + . + . + . + . + . + "grinding capability"@en . + "maal capaciteit"@nl . + "grinding capability for Mills"@en . + . + . + . + . + . + "wins at LAGT"@en . + "\u043F\u043E\u0431\u0435\u0434\u0435 \u043D\u0430 LAGT"@sr . + . + . + . + . + . + "compression ratio"@en . + "Kompressionsverh\u00E4ltnis"@de . + . + . + . + . + . + . + "egafd id"@en . + "egafd id"@el . + "c\u00F3digo no egafd"@pt . + . + . + . + . + . + "minimum inclination"@en . + . + . + . + . + . + "river mouth"@en . + "Flussm\u00FCndung"@de . + "riviermonding"@nl . + "\u03B5\u03BA\u03B2\u03BF\u03BB\u03AD\u03C2"@el . + . + . + . + . + . + . + "parent organisation"@en . + "moederorganisatie"@nl . + . + . + . + . + . + . + . + "patron saint"@en . + . + . + . + . + . + . + "size (B)"@en . + "\u03BC\u03AD\u03B3\u03B5\u03B8\u03BF\u03C2 \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF\u03C5 (B)"@el . + "Dateigr\u00F6\u00DFe (B)"@de . + "size of a file or software"@en . + "\u03BC\u03AD\u03B3\u03B5\u03B8\u03BF\u03C2 \u03B5\u03BD\u03CC\u03C2 \u03B7\u03BB\u03B5\u03BA\u03C4\u03C1\u03BF\u03BD\u03B9\u03BA\u03BF\u03CD \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF\u03C5"@el . + . + . + . + . + "best rank double"@en . + . + . + . + . + . + "maximum elevation (\u03BC)"@en . + "\u03BA\u03BF\u03C1\u03C5\u03C6\u03AE (\u03BC)"@el . + "maximum elevation above the sea level"@en . + . + . + . + . + . + "tournament record"@en . + "Turnierrekord"@de . + . + . + . + . + . + "resolution"@en . + "Aufl\u00F6sung"@de . + "\u03B1\u03BD\u03AC\u03BB\u03C5\u03C3\u03B7"@el . + "r\u00E9solution"@fr . + "Native Resolution"@en . + . + . + . + . + . + "hof"@en . + . + . + . + . + . + "official language"@en . + "Amtssprache"@de . + . + . + . + . + . + . + "saturation coordinate in the HSV colour space"@en . + . + . + . + . + . + "supply"@en . + . + . + . + . + . + "orde"@nl . + "\u03B4\u03B9\u03B1\u03C4\u03B1\u03B3\u03AE"@el . + "ordre (taxonomie)"@fr . + "order"@en . + "\u76EE_(\u5206\u985E\u5B66)"@ja . + "Ordnung"@de . + . + . + . + . + . + . + "mill span (\u03BC)"@en . + "vlucht (\u03BC)"@nl . + "\u0395\u03BA\u03C0\u03AD\u03C4\u03B1\u03C3\u03BC\u03B1 (\u03BC)"@el . + . + . + . + . + . + "third driver"@en . + "dritter Fahrer"@de . + . + . + . + . + . + . + "orogeny"@en . + "orogen\u00E8se"@fr . + . + . + . + . + "house"@en . + "\u03C3\u03C0\u03AF\u03C4\u03B9"@el . + . + . + . + . + . + . + "event date"@en . + "Veranstaltungstermin"@de . + . + . + . + . + . + "last win"@en . + "letzter Sieg"@de . + "\u03C4\u03B5\u03BB\u03B5\u03C5\u03C4\u03B1\u03AF\u03B1 \u03BD\u03AF\u03BA\u03B7"@el . + . + . + . + . + . + . + "rival"@en . + "Rivale"@de . + . + . + . + . + . + . + "wykonawca"@pl . + "artiest"@nl . + "\u03BA\u03B1\u03BB\u03BB\u03B9\u03C4\u03AD\u03C7\u03BD\u03B7\u03C2"@el . + "interpr\u00E8te"@fr . + "int\u00E9rprete"@es . + "performer"@en . + "Interpret"@de . + "The performer or creator of the musical work."@en . + . + . + . + . + . + . + . + . + "denomination"@en . + . + . + . + . + . + "grandsire"@en . + . + . + . + . + . + . + "gini coefficient ranking"@en . + "posi\u00E7\u00E3o no ranking do coeficiente de Gini"@pt . + . + . + . + . + . + "range"@en . + "bereik"@nl . + . + . + . + . + "promotion"@en . + "F\u00F6rderung"@de . + . + . + . + . + . + "last champion"@en . + "letzter Sieger"@de . + "son \u015Fampiyon"@tr . + . + . + . + . + . + . + "pole position"@en . + . + . + . + . + . + "cylinder bore (\u03BC)"@en . + . + . + . + . + . + "laterality"@en . + . + . + . + . + . + "scene"@en . + "Szene"@de . + . + . + . + . + . + "wilaya"@en . + "\u0432\u0438\u043B\u0430\u0458\u0435\u0442"@sr . + . + . + . + . + . + . + "right child"@en . + . + . + . + . + . + . + "illiteracy"@en . + "Analphabetismus"@de . + "analfabetismo"@pt . + . + . + . + . + . + "manager"@en . + "Manager"@de . + "\u03C0\u03C1\u03BF\u03C0\u03BF\u03BD\u03B7\u03C4\u03AE\u03C2"@el . + . + . + . + . + . + . + . + "adjacent settlement of a switzerland settlement"@en . + "\u0421\u0443\u0441\u0435\u0434\u043D\u043E \u043D\u0430\u0441\u0435\u0459\u0435 \u0443 \u0428\u0432\u0430\u0458\u0446\u0430\u0440\u0441\u043A\u043E\u0458"@sr . + . + . + . + . + . + . + "asset under management ($)"@en . + "\u03BA\u03B5\u03C6\u03AC\u03BB\u03B1\u03B9\u03BF \u03C5\u03C0\u03CC \u03B4\u03B9\u03B1\u03C7\u03B5\u03AF\u03C1\u03B9\u03C3\u03B7 ($)"@el . + . + . + . + . + . + "selection"@en . + "Auswahl"@de . + "when (or in which project) the person was selected to train as an astronaut"@en . + . + . + . + . + . + "operator"@en . + "Betreiber"@de . + "exploitant"@nl . + . + . + . + . + . + . + "father"@en . + "Vater"@de . + . + . + . + . + . + . + . + "clubs record goalscorer"@en . + . + . + . + . + . + . + "junior season"@en . + . + . + . + . + "oorsprong"@nl . + "\u03C0\u03C1\u03BF\u03AD\u03BB\u03B5\u03C5\u03C3\u03B7"@el . + "origine"@fr . + "origem"@pt . + "origin"@en . + "Herkunft"@de . + . + . + . + . + . + "Aggregation"@en . + "Aggregatie"@nl . + . + . + . + . + . + "actieve jaren startdatum"@nl . + "\u03B5\u03BD\u03B5\u03C1\u03B3\u03AC \u03C7\u03C1\u03CC\u03BD\u03B9\u03B1 \u03B7\u03BC\u03B5\u03C1\u03BF\u03BC\u03B7\u03BD\u03AF\u03B1 \u03AD\u03BD\u03B1\u03C1\u03BE\u03B7\u03C2"@el . + "date de d\u00E9but d'activit\u00E9"@fr . + "\u0434\u0430\u0442\u0443\u043C \u043F\u043E\u0447\u0435\u0442\u043A\u0430 \u0430\u043A\u0442\u0438\u0432\u043D\u0438\u0445 \u0433\u043E\u0434\u0438\u043D\u0430"@sr . + "active years start date"@en . + . + . + . + . + "percentage of fat"@en . + "Fettgehalt"@de . + "vetgehalte"@nl . + "how much fat (in relative terms) does this unity of food contain"@en . + . + . + . + . + . + "number of parking spaces"@en . + "Anzahl der Parkpl\u00E4tze"@de . + . + . + . + . + . + "branch"@en . + "riviertak"@nl . + "\u03B4\u03B9\u03B1\u03BA\u03BB\u03B1\u03B4\u03CE\u03C3\u03B5\u03B9\u03C2"@el . + . + . + . + . + . + . + "NLA Id"@en . + "NLA Trove\u2019s People and Organisation view allows the discovery of biographical and other contextual information about people and organisations. Search also available via VIAF."@en . + . + . + . + . + . + "last election date"@en . + "The last election date for the house."@en . + . + . + . + . + . + "draft round"@en . + . + . + . + . + . + "associateStar"@en . + "\u03C3\u03C5\u03B3\u03B3\u03B5\u03BD\u03B9\u03BA\u03CC\u03C2 \u03B1\u03C3\u03C4\u03AD\u03C1\u03B1\u03C2"@el . + "\u00E7evreleyen"@tr . + . + . + . + . + . + "previous population total"@en . + . + . + . + . + . + "dist_pc"@en . + . + . + . + . + . + "filename"@en . + "bestandsnaam"@nl . + "dateiname"@de . + "\u03CC\u03BD\u03BF\u03BC\u03B1 \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF\u03C5"@el . + . + . + . + . + "id number"@en . + . + . + . + . + . + "danse score"@en . + . + . + . + . + . + "former team"@en . + "voormalig team"@nl . + . + . + . + . + . + . + "ISNI Id"@en . + "ISNI is a method for uniquely identifying the public identities of contributors to media content such as books, TV programmes, and newspaper articles."@en . + . + . + . + . + . + "wins at other tournaments"@en . + "\u043F\u043E\u0431\u0435\u0434\u0435 \u043D\u0430 \u043E\u0441\u0442\u0430\u043B\u0438\u043C \u0442\u0443\u0440\u043D\u0438\u0440\u0438\u043C\u0430"@sr . + . + . + . + . + . + "number of volumes"@en . + . + . + . + . + . + "race"@en . + "Rennen"@de . + . + . + . + . + . + "date construction"@en . + "Bauzeit"@de . + "\u03AD\u03BD\u03B1\u03C1\u03BE\u03B7_\u03BA\u03B1\u03C4\u03B1\u03C3\u03BA\u03B5\u03C5\u03AE\u03C2"@el . + . + . + . + . + . + "draft pick"@en . + . + . + . + . + . + "status"@nl . + "statut"@fr . + "estatus"@es . + "status"@en . + "Status"@de . + . + . + . + . + "dress code"@en . + "The recommended dress code for an establishment or event."@en . + . + . + . + . + . + "precursor"@en . + "Vorl\u00E4ufer"@de . + . + . + . + . + . + . + "national championship"@en . + "nationale Meisterschaft"@de . + . + . + . + . + . + "regional language"@en . + "Regionalsprache"@de . + . + . + . + . + . + . + "free score competition"@en . + . + . + . + . + . + "SIL code"@en . + "SIL-code"@nl . + "kod SIL"@pl . + . + . + . + . + . + . + "Council area"@en . + . + . + . + . + . + . + "wielko\u015B\u0107 absolutna"@pl . + "\u03B1\u03C0\u03CC\u03BB\u03C5\u03C4\u03BF \u03BC\u03AD\u03B3\u03B5\u03B8\u03BF\u03C2"@el . + "\u0430\u043F\u0441\u043E\u043B\u0443\u0442\u043D\u0430 \u043C\u0430\u0433\u043D\u0438\u0442\u0443\u0434\u0430"@sr . + "absolute magnitude"@en . + "dearbhmh\u00E9id"@ga . + "absolute Helligkeit"@de . + . + . + . + . + . + . + "publisher"@en . + "uitgever"@nl . + "Herausgeber"@de . + "\u03B5\u03BA\u03B4\u03CC\u03C4\u03B7\u03C2"@el . + . + . + . + . + . + . + "population metro density (/sqkm)"@en . + "bevolkingsdichtheid (/sqkm)"@nl . + . + . + . + . + . + "number of sports"@en . + "numbre de sports"@fr . + "numero de deportes"@es . + . + . + . + . + "area metro (m2)"@en . + "\u03C0\u03B5\u03C1\u03B9\u03BF\u03C7\u03AE \u03BC\u03B5\u03C4\u03C1\u03CC (m2)"@el . + "\u043C\u0435\u0442\u0440\u043E\u043F\u043E\u043B\u0441\u043A\u0430 \u043E\u0431\u043B\u0430\u0441\u0442 (m2)"@sr . + . + . + . + . + "wins at LPGA"@en . + "\u043F\u043E\u0431\u0435\u0434\u0435 \u043D\u0430 LPGA"@sr . + . + . + . + . + . + "kleur"@nl . + "\u03C7\u03C1\u03CE\u03BC\u03B1"@el . + "couleur"@fr . + "colour"@en . + "\u8272"@ja . + "Farbe"@de . + "A colour represented by its entity."@en . + . + . + . + . + . + . + "daira"@en . + . + . + . + . + . + . + "alongside"@en . + "\u03B4\u03AF\u03C0\u03BB\u03B1"@el . + "\u0443\u0437"@sr . + . + . + . + . + . + "country with first satellite launched"@en . + . + . + . + . + . + . + "comment"@en . + "Kommentar"@de . + "\u03C3\u03C7\u03CC\u03BB\u03B9\u03BF"@el . + . + . + . + . + "agglomerationPopulationYear"@en . + "\u0433\u043E\u0434\u0438\u043D\u0430 \u043F\u043E\u043F\u0443\u043B\u0430\u0446\u0438\u0458\u0435 \u0430\u0433\u043B\u043E\u043C\u0435\u0440\u0430\u0446\u0438\u0458\u0435"@sr . + . + . + . + . + . + "type coordinate"@en . + "Scale parameters that can be understood by Geohack, eg \"type:\", \"scale:\", \"region:\" \"altitude:\". Use \"_\" for several (eg \"type:landmark_scale:50000\"). See https://fr.wikipedia.org/wiki/Mod\u00E8le:Infobox_Subdivision_administrative for examples, and https://fr.wikipedia.org/wiki/Mod\u00E8le:GeoTemplate/Utilisation#La_mention_Type:... for a complete list"@en . + . + . + . + . + . + "project reference ID"@en . + "The reference identification of the project."@en . + . + . + . + . + . + "highway system"@en . + "the highway system that a route is part of"@en . + . + . + . + . + . + . + "ISBN"@en . + "ISBN"@nl . + "The International Standard Book Number (ISBN) is a unique numeric commercial book identifier based upon the 9-digit Standard Book Numbering (SBN) code."@en . + . + . + . + . + . + . + . + . + "management place"@en . + . + . + . + . + . + "visitor statistics as of"@en . + "\u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043A\u0430 \u043F\u043E\u0441\u0435\u0442\u0438\u043B\u0430\u0446\u0430 \u043E\u0434"@sr . + "Year visitor information was gathered."@en . + . + . + . + . + . + "school number"@en . + . + . + . + . + . + "mean temperature (K)"@en . + "Durchschnittstemperatur (K)"@de . + "\u03BC\u03AD\u03C3\u03B7 \u03B8\u03B5\u03C1\u03BC\u03BF\u03BA\u03C1\u03B1\u03C3\u03AF\u03B1 (K)"@el . + . + . + . + . + . + "ICD1"@en . + "ICD1"@de . + "ICD1"@nl . + . + . + . + . + . + "anniversary"@en . + "Jubil\u00E4um"@de . + "\u03B5\u03C0\u03AD\u03C4\u03B5\u03B9\u03BF\u03C2"@el . + "\u0433\u043E\u0434\u0438\u0448\u045A\u0438\u0446\u0430"@sr . + . + . + . + . + . + "regisseur"@nl . + "\u03C3\u03BA\u03B7\u03BD\u03BF\u03B8\u03AD\u03C4\u03B7\u03C2"@el . + "r\u00E9alisateur"@fr . + "director de cine"@es . + "film director"@en . + "Regisseur"@de . + "A film director is a person who directs the making of a film."@en . + "Un r\u00E9alisateur (au f\u00E9minin, r\u00E9alisatrice) est une personne qui dirige la fabrication d'une \u0153uvre audiovisuelle, g\u00E9n\u00E9ralement pour le cin\u00E9ma ou la t\u00E9l\u00E9vision."@fr . + . + . + . + . + . + . + . + . + "revenue ($)"@en . + "Einnahmen ($)"@de . + "\u03AD\u03C3\u03BF\u03B4\u03B1 ($)"@el . + "chiffre d'affaire ($)"@fr . + . + . + . + . + . + "television series"@en . + "Fernsehserie"@de . + "\u03C4\u03B7\u03BB\u03B5\u03BF\u03C0\u03C4\u03B9\u03BA\u03AD\u03C2 \u03C3\u03B5\u03B9\u03C1\u03AD\u03C2"@el . + . + . + . + . + . + "creative director"@en . + . + . + . + . + . + . + "sublimation point (K)"@en . + . + . + . + . + "wins at pga"@en . + "\u043F\u043E\u0431\u0435\u0434\u0435 \u043D\u0430 PGA"@sr . + . + . + . + . + . + "passengers per day"@en . + "Passagiere pro Tag"@de . + "Number of passengers per day."@en . + . + . + . + . + . + "UniProt"@en . + "UniProt"@ja . + . + . + . + . + . + "superintendent"@en . + "Leiter"@de . + "opzichter"@nl . + . + . + . + . + . + . + "wine produced"@en . + "\u043F\u0440\u043E\u0438\u0437\u0432\u043E\u0434\u0438 \u0432\u0438\u043D\u043E"@sr . + . + . + . + . + . + "de facto language"@en . + . + . + . + . + . + "computing platform"@en . + "some sort of hardware architecture or software framework, that allows this software to run"@en . + . + . + . + . + . + . + "date of liberation"@en . + "datum bevrijding"@nl . + . + . + . + . + . + "ATC prefix"@en . + "ATC \u03C0\u03C1\u03CC\u03B8\u03B5\u03BC\u03B1"@el . + "pr\u00E9fix ATC"@fr . + . + . + . + . + "clothing size"@en . + "Konfektionsgr\u00F6\u00DFe"@de . + . + . + . + . + . + "last position"@en . + "\u03C4\u03B5\u03BB\u03B5\u03C5\u03C4\u03B1\u03AF\u03B1 \u03B8\u03AD\u03C3\u03B7"@el . + . + . + . + . + . + "number of contries inside en continent"@en . + . + . + . + . + . + "area of catchment (m2)"@en . + "Einzugsgebiet (m2)"@de . + "\u03BB\u03AF\u03BC\u03BD\u03B7 (m2)"@el . + "\u043F\u043E\u0434\u0440\u0443\u0447\u0458\u0435 \u0441\u043B\u0438\u0432\u0430 (m2)"@sr . + . + . + . + . + . + "chancellor"@en . + "Kanzler"@de . + . + . + . + . + . + "has taxon"@en . + "taxon"@nl . + . + . + . + . + . + "oprichtingsjaar"@nl . + "\u03AD\u03C4\u03BF\u03C2 \u03AF\u03B4\u03C1\u03C5\u03C3\u03B7\u03C2"@el . + "a\u00F1o de fundaci\u00F3n"@es . + "founding year"@en . + "Gr\u00FCndungsjahr"@de . + . + . + . + . + "Number Of Cantons"@en . + "Aantal kantons"@nl . + . + . + . + . + . + "number of people attending"@en . + "Zahl der Teilnehmer"@de . + "n\u00FAmero de participantes"@pt . + "nombre de participants"@fr . + . + . + . + . + . + "european parliament group"@en . + "grupo parlamentar europeu"@pt . + . + . + . + . + . + "eruption date"@en . + "Jahr des letzten Ausbruchs"@de . + "jaar uitbarsting"@nl . + . + . + . + . + . + "NRHP type"@en . + "Type of historic place as defined by the US National Park Service. For instance National Historic Landmark, National Monument or National Battlefield."@en . + . + . + . + . + . + "wsop win year"@en . + "\u0433\u043E\u0434\u0438\u043D\u0430 \u043E\u0441\u0432\u0430\u0458\u0430\u045A\u0430 WSOP-\u0430"@sr . + . + . + . + . + . + "title double"@en . + "Doppeltitel"@de . + . + . + . + . + . + "title single"@en . + "Einzeltitel"@de . + . + . + . + . + . + "goals in league"@en . + "Tore in der Liga"@de . + "doelpunten in de competitie"@nl . + . + . + . + . + . + "subdivision"@en . + . + . + . + . + . + "abbey church blessing charge"@en . + . + . + . + . + . + "management"@en . + "Management"@de . + "management"@fr . + . + . + . + . + "mayor function of a switzerland settlement"@en . + . + . + . + . + . + "produces"@en . + "produziert"@de . + . + . + . + . + "route next stop"@en . + "arr\u00EAt suivant"@fr . + "next stop on a route."@en . + "arr\u00EAt suivant sur une route."@fr . + . + . + . + . + . + "hybrid"@en . + "Plants from which another plant (or cultivar) has been developed from"@en . + . + . + . + . + . + . + "Swimming style"@en . + "Schwimmstil"@de . + "Zwemslag"@nl . + . + . + . + . + . + "CPU"@en . + "CPU"@de . + "processor (CPU)"@nl . + "procesor (CPU)"@pl . + . + . + . + . + . + . + "bourgmestre"@en . + . + . + . + . + . + . + "NIS code"@en . + "Indexing code used by the Belgium National Statistical Institute to identify populated places."@en . + . + . + . + . + . + . + "music subgenre"@en . + "Musik Subgenre"@de . + . + . + . + . + . + . + "\u03C0\u03B1\u03BD\u03B5\u03C0\u03B9\u03C3\u03C4\u03AE\u03BC\u03B9\u03BF"@el . + "\u0443\u043D\u0438\u0432\u0435\u0440\u0437\u0438\u0442\u0435\u0442"@sr . + "university"@en . + "\u5927\u5B66"@ja . + "Universit\u00E4t"@de . + "university a person goes or went to."@en . + "To \u03C0\u03B1\u03BD\u03B5\u03C0\u03B9\u03C3\u03C4\u03AE\u03BC\u03B9\u03BF \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B5\u03BA\u03C0\u03B1\u03B9\u03B4\u03B5\u03C5\u03C4\u03B9\u03BA\u03CC \u03AF\u03B4\u03C1\u03C5\u03BC\u03B1 \u03B1\u03BD\u03CE\u03C4\u03B1\u03C4\u03B7\u03C2 \u03B5\u03BA\u03C0\u03B1\u03AF\u03B4\u03B5\u03C5\u03C3\u03B7\u03C2 \u03BA\u03B1\u03B9 \u03B5\u03C0\u03B9\u03C3\u03C4\u03B7\u03BC\u03BF\u03BD\u03B9\u03BA\u03AE\u03C2 \u03AD\u03C1\u03B5\u03C5\u03BD\u03B1\u03C2 \u03C0\u03BF\u03C5 \u03C0\u03B1\u03C1\u03AD\u03C7\u03B5\u03B9 \u03C0\u03C4\u03C5\u03C7\u03AF\u03BF \u03C0\u03B9\u03C3\u03C4\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7\u03C2 \u03B1\u03BA\u03B1\u03B4\u03B7\u03BC\u03B1\u03CA\u03BA\u03AE\u03C2 \u03B5\u03BA\u03C0\u03B1\u03AF\u03B4\u03B5\u03C5\u03C3\u03B7\u03C2."@el . + . + . + . + . + . + . + "worst defeat"@en . + "h\u00F6chste Niederlage"@de . + "\u043D\u0430\u0458\u0442\u0435\u0436\u0438 \u043F\u043E\u0440\u0430\u0437"@sr . + . + . + . + . + . + "next event"@en . + "n\u00E4chste Veranstaltung"@de . + "volgende evenement"@nl . + "\u03B5\u03C0\u03CC\u03BC\u03B5\u03BD\u03BF \u03B3\u03B5\u03B3\u03BF\u03BD\u03CC\u03C2"@el . + . + . + . + . + . + . + . + "distributing company"@en . + . + . + . + . + . + . + "chaplain"@en . + "Kaplan"@de . + . + . + . + . + . + . + "lead team"@en . + . + . + . + . + . + "number of studio albums"@en . + "Zahl der Studio-Alben"@de . + "the number of studio albums released by the musical artist"@en . + . + . + . + . + . + "combattant"@fr . + "fighter"@en . + "K\u00E4mpfer"@de . + . + . + . + . + "Alps subsection"@en . + "Alps \u03C5\u03C0\u03BF\u03B4\u03B9\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7 \u03C4\u03C9\u03BD \u03AC\u03BB\u03C0\u03B5\u03C9\u03BD"@el . + "sottosezione alpina"@it . + "\u0410\u043B\u043F\u0441\u043A\u0430 \u043F\u043E\u0434\u0441\u0435\u043A\u0446\u0438\u0458\u0430"@sr . + "the Alps subsection to which the mountain belongs, according to the SOIUSA classification"@en . + . + . + . + . + . + . + "feat"@en . + . + . + . + . + . + "end reign"@en . + . + . + . + . + . + "police name"@en . + "The police detachment serving a UK place, eg Wakefield -> \"West Yorkshire Police\""@en . + . + . + . + . + . + "country"@en . + "Land"@de . + "\u8535\u66F8\u6570"@ja . + . + . + . + . + "career points"@en . + . + . + . + . + . + "boiler pressure"@en . + "Kesseldruck"@de . + "\u03C0\u03AF\u03B5\u03C3\u03B7 \u03B4\u03BF\u03C7\u03B5\u03AF\u03BF\u03C5 \u03B2\u03C1\u03AC\u03C3\u03B7\u03C2"@el . + . + . + . + . + . + "number of professionals"@en . + "Anzahl von Fachleuten"@de . + "nombre de professionnels"@fr . + "numero de profesionales"@es . + "number of people who earns his living from a specified activity."@en . + . + . + . + . + . + "alumni"@en . + "Alumni"@de . + "\u03B1\u03C0\u03CC\u03C6\u03BF\u03B9\u03C4\u03BF\u03B9 \u03C0\u03B1\u03BD\u03B5\u03C0\u03B9\u03C3\u03C4\u03B7\u03BC\u03AF\u03BF\u03C5"@el . + "\u0430\u043B\u0443\u043C\u043D\u0438"@sr . + . + . + . + . + . + . + "volcano id"@en . + "id \u0432\u0443\u043B\u043A\u0430\u043D\u0430"@sr . + . + . + . + . + . + "NGC name"@en . + "Name for NGC objects"@en . + . + . + . + . + . + . + "allcinema id"@ja . + "allcinema id"@en . + "allcinema id"@el . + "allcinema id"@sr . + . + . + . + . + . + "ORCID Id"@en . + "Authority data on researchers, academics, etc. The ID range has been defined as a subset of the forthcoming ISNI range."@en . + . + . + . + . + . + "religious head"@en . + . + . + . + . + . + "employer's celebration"@en . + . + . + . + . + . + "nationaliteit"@nl . + "\u03B5\u03B8\u03BD\u03B9\u03BA\u03CC\u03C4\u03B7\u03C4\u03B1"@el . + "nationalit\u00E9"@fr . + "nacionalidade"@pt . + "nationality"@en . + "\u56FD\u7C4D"@ja . + "Nationalit\u00E4t"@de . + . + . + . + . + . + . + . + "fees ($)"@en . + "Geb\u00FChren ($)"@de . + "\u03B4\u03AF\u03B4\u03B1\u03BA\u03C4\u03C1\u03B1 ($)"@el . + . + . + . + . + . + "number of albums"@en . + "Anzahl der Alben"@de . + "the total number of albums released by the musical artist"@en . + . + . + . + . + . + "certification"@en . + "certification"@fr . + . + . + . + . + . + "waterway through tunnel"@en . + "\u043F\u043B\u043E\u0432\u043D\u0438 \u043F\u0443\u0442 \u043A\u0440\u043E\u0437 \u0442\u0443\u043D\u0435\u043B"@sr . + "Wasserweg durch Tunnel"@de . + "Waterway that goes through the tunnel."@en . + . + . + . + . + . + "RefSeq"@en . + . + . + . + . + . + "statistic year"@en . + . + . + . + . + . + "project budget funding ($)"@en . + "The part of the project budget that is funded by the Organistaions given in the \"FundedBy\" property."@en . + . + . + . + . + . + "team"@nl . + "\u03BF\u03BC\u03AC\u03B4\u03B1"@el . + "\u00E9quipe"@fr . + "team"@en . + "Team"@de . + . + . + . + . + . + . + "highest point of the island"@en . + "h\u00F6chste Erhebung der Insel"@de . + . + . + . + . + . + "aircraft transport"@en . + "\u03B1\u03B5\u03C1\u03BF\u03BC\u03B5\u03C4\u03B1\u03C6\u03BF\u03C1\u03AD\u03C2"@el . + . + . + . + . + . + . + "number of rooms"@en . + "Anzahl der Zimmer"@de . + "\u03B1\u03C1\u03B9\u03B8\u03BC\u03CC\u03C2 \u03B4\u03C9\u03BC\u03B1\u03C4\u03AF\u03C9\u03BD"@el . + "aantal kamers"@nl . + . + . + . + . + . + "defeat"@en . + "\u03AE\u03C4\u03C4\u03B1"@el . + "Niederlage"@de . + . + . + . + . + . + "mayorMandate"@en . + . + . + . + . + . + "system of law"@en . + "Rechtssystem"@de . + "rechtssysteem"@nl . + "A referral to the relevant system of law"@en . + . + . + . + . + . + . + "station visit duration (s)"@en . + . + . + . + . + . + "ISO 639-3 code"@en . + "ISO 639-3 code"@nl . + "kod ISO 639-3"@pl . + . + . + . + . + . + . + . + . + "SMILES"@en . + "The Simplified Molecular-Input Line-Entry System or SMILES is a specification in form of a line notation for describing the structure of chemical molecules using short ASCII strings."@en . + . + . + . + . + . + "parent mountain peak"@en . + . + . + . + . + . + . + "Film Fare Award"@en . + . + . + . + . + . + . + "first launch date"@en . + "erster Starttermin"@de . + . + . + . + . + . + "green coordinate in the RGB space"@en . + . + . + . + . + . + "election date"@en . + "Wahltermin"@de . + . + . + . + . + . + "Ceremonial County"@en . + . + . + . + . + . + . + "Golden Globe Award"@en . + . + . + . + . + . + . + "usurper"@en . + "\u0443\u0437\u0443\u0440\u043F\u0430\u0442\u043E\u0440"@sr . + . + . + . + . + . + "lethal when given to rats"@en . + "dodelijk voor ratten"@nl . + . + . + . + . + . + "binomial"@en . + "Doppelbenennung"@de . + "\u03B4\u03B9\u03C9\u03BD\u03C5\u03BC\u03B9\u03BA\u03CC\u03C2"@el . + "\u5B66\u540D"@ja . + . + . + . + . + . + "principal"@en . + "\u0434\u0438\u0440\u0435\u043A\u0442\u043E\u0440 (\u043D\u0430 \u0443\u0447\u0438\u043B\u0438\u0449\u0435)"@bg . + "Principal of an educational institution (school)"@en . + "\u0414\u0438\u0440\u0435\u043A\u0442\u043E\u0440 \u043D\u0430 \u0443\u0447\u0438\u043B\u0438\u0449\u0435"@bg . + . + . + . + . + . + . + "death place"@en . + "Sterbeort"@de . + . + . + . + . + . + "rail gauge (\u03BC)"@en . + "Spurweite Eisenbahn (\u03BC)"@de . + . + . + . + . + . + "person"@en . + "Person"@de . + "\u03AC\u03C4\u03BF\u03BC\u03BF"@el . + . + . + . + . + . + . + . + "foal date"@en . + . + . + . + . + . + "us open double"@en . + "US Open \u0434\u0443\u0431\u043B"@sr . + . + . + . + . + . + "argue date"@en . + "\u03B4\u03B7\u03BC\u03BF\u03C6\u03B9\u03BB\u03AE\u03C2 \u03B7\u03BC\u03B5\u03C1\u03BF\u03BC\u03B7\u03BD\u03AF\u03B1"@el . + . + . + . + . + . + "page number"@en . + "Seitenzahl"@de . + "pagina van verwijzing"@nl . + "Page # where the referenced resource is to be found in the source document"@en . + . + . + . + . + . + "wins at championships"@en . + . + . + . + . + . + "defeat as manager"@en . + "Niederlage als Trainer"@de . + . + . + . + . + . + "vice president"@en . + "\u043F\u043E\u0442\u043F\u0440\u0435\u0434\u0441\u0435\u0434\u043D\u0438\u043A"@sr . + "Vizepr\u00E4sident"@de . + . + . + . + . + . + "licence number label"@en . + . + . + . + . + . + "project participant"@en . + "Projektteilnehmer"@de . + "A participating organisation of the project."@en . + . + . + . + . + . + . + "political leader"@en . + "politischer F\u00FChrer"@de . + . + . + . + . + . + "source confluence region"@en . + . + . + . + . + . + . + "date completed"@en . + "\u03BF\u03BB\u03BF\u03BA\u03BB\u03AE\u03C1\u03C9\u03C3\u03B7"@el . + . + . + . + . + . + "configuration"@en . + "Konfiguration"@de . + "configuration"@fr . + . + . + . + . + . + . + "sport governing body"@en . + . + . + . + . + "province"@en . + "Provinz"@de . + "\u03B5\u03C0\u03B1\u03C1\u03C7\u03AF\u03B1"@el . + "provincie"@nl . + . + . + . + . + . + . + . + "ICD10"@en . + "ICD10"@nl . + . + . + . + . + . + . + "oppervlakte (m2)"@nl . + "\u03AD\u03BA\u03C4\u03B1\u03C3\u03B7 \u03C0\u03B5\u03C1\u03B9\u03BF\u03C7\u03AE\u03C2 (m2)"@el . + "superficie (m2)"@fr . + "\u0443\u043A\u0443\u043F\u043D\u0430 \u043F\u043E\u0432\u0440\u0448\u0438\u043D\u0430 (m2)"@sr . + "area total (m2)"@en . + "Fl\u00E4che (m2)"@de . + . + . + . + . + . + "route end"@en . + "Wegende"@de . + "End of the route. This is where the route ends and, for U.S. roads, is either at the northern terminus or eastern terminus."@en . + "Ende des Verkehrswegs."@de . + . + . + . + . + . + . + "highest mountain"@en . + "h\u00F6chster Berg"@de . + . + . + . + . + . + "notable commander"@en . + . + . + . + . + . + . + "iss dockings"@en . + . + . + . + . + . + "International Standard Identifier for Libraries and Related Organizations (ISIL)"@en . + . + . + . + . + . + . + "official opened by"@en . + . + . + . + . + . + . + "profession"@en . + "Beruf"@de . + "\u03B5\u03C0\u03AC\u03B3\u03B3\u03B5\u03BB\u03BC\u03B1"@el . + "beroep"@nl . + . + . + . + . + . + . + "redline (kmh)"@en . + . + . + . + . + . + "OMIM id"@en . + "OMIM id"@nl . + "OMIM id"@ja . + . + . + . + . + . + "cargo fuel (g)"@en . + . + . + . + . + . + "regional council"@en . + "Gemeinderat"@de . + . + . + . + . + . + "orientation"@en . + "Orientierung"@de . + . + . + . + . + . + . + "number of countries"@en . + "\u03B1\u03C1\u03B9\u03B8\u03BC\u03CC\u03C2 \u03C7\u03C9\u03C1\u03CE\u03BD"@el . + "n\u00FAmero de pa\u00EDses"@pt . + . + . + . + . + . + "program cost ($)"@en . + . + . + . + . + . + "currency code"@en . + "W\u00E4hrungscode"@de . + "c\u00F3d airgeadra"@ga . + "ISO 4217 currency designators."@en . + . + . + . + . + . + . + "alliance"@en . + "Allianz"@de . + "\u03C3\u03C5\u03BC\u03BC\u03B1\u03C7\u03AF\u03B1"@el . + "\u0441\u0430\u0432\u0435\u0437"@sr . + . + . + . + . + . + "general manager"@en . + "Hauptgesch\u00E4ftsf\u00FChrer"@de . + . + . + . + . + . + . + . + "length reference"@en . + . + . + . + . + . + "mandate of the president council of the regional council"@en . + . + . + . + . + . + "cyclist genre"@en . + . + . + . + . + "population date"@en . + . + . + . + . + . + "temple year"@en . + . + . + . + . + . + "Amsterdam Code"@en . + "\u0410\u043C\u0441\u0442\u0435\u0440\u0434\u0430\u043C \u043A\u043E\u0434"@sr . + "Amsterdamse code"@nl . + . + . + . + . + . + "episode"@en . + "Folge"@de . + . + . + . + . + . + "mgiid"@en . + "mgiid"@ja . + "Mouse Genomic Informatics ID"@en . + . + . + . + . + . + "amateur defeat"@en . + "\u0430\u043C\u0430\u0442\u0435\u0440\u0441\u043A\u0438\u0445 \u043F\u043E\u0440\u0430\u0437\u0430"@sr . + . + . + . + . + . + "cover artist"@en . + "cover artist"@nl . + "Cover artist"@en . + . + . + . + . + . + . + . + "broadcast area"@en . + "Empfangsgebiet"@de . + "\u03C0\u03B5\u03C1\u03B9\u03BF\u03C7\u03AE \u03B1\u03BD\u03B1\u03BC\u03B5\u03C4\u03AC\u03B4\u03BF\u03C3\u03B7\u03C2"@el . + . + . + . + . + . + . + "media"@en . + "Medien"@de . + . + . + . + . + "label of a website"@en . + . + . + . + . + "heritage register"@en . + "inventaire du patrimoine"@fr . + "registered in a heritage register : inventory of cultural properties, natural and man-made, tangible and intangible, movable and immovable, that are deemed to be of sufficient heritage value to be separately identified and recorded."@en . + "inscrit \u00E0 un inventaires d\u00E9di\u00E9s \u00E0 la conservation du patrimoine, naturel ou culturel, existants dans le monde."@fr . + . + . + . + . + . + "final publication date"@en . + "laatste publicatiedatum"@nl . + "Datum der finalen Ausgabe"@de . + "Date of the final publication."@en . + "Datum der allerletzten Ver\u00F6ffentlichung des Periodikums."@de . + . + . + . + . + . + "release location"@en . + "Usually used with releaseDate, particularly for Films. Often there can be several pairs so our modeling is not precise here..."@en . + . + . + . + . + . + "budget ($)"@en . + "Etat ($)"@de . + "budget ($)"@nl . + "\u03C0\u03C1\u03BF\u03CB\u03C0\u03BF\u03BB\u03BF\u03B3\u03B9\u03C3\u03BC\u03CC\u03C2 ($)"@el . + . + . + . + . + "region"@pl . + "regio"@nl . + "\u03C0\u03B5\u03C1\u03B9\u03BF\u03C7\u03AE"@el . + "region"@en . + "Region"@de . + "The regin where the thing is located or is connected to."@en . + . + . + . + . + . + "former band member"@en . + "ehemaliges Bandmitglied"@de . + "voormalig bandlid"@nl . + "A former member of the band."@en . + . + . + . + . + . + . + "Goya Award"@en . + . + . + . + . + . + . + "silver medal double"@en . + "Silbermedaille Doppel"@de . + . + . + . + . + . + "number of offices"@en . + "Anzahl B\u00FCros"@de . + "\u03B1\u03C1\u03B9\u03B8\u03BC\u03CC\u03C2 \u03B3\u03C1\u03B1\u03C6\u03B5\u03AF\u03C9\u03BD"@el . + "Number of the company's offices."@en . + "\u0391\u03C1\u03B9\u03B8\u03BC\u03CC\u03C2 \u03B3\u03C1\u03B1\u03C6\u03B5\u03AF\u03C9\u03BD \u03B5\u03C4\u03B1\u03B9\u03C1\u03B5\u03AF\u03B1\u03C2."@el . + . + . + . + . + . + "hue coordinate in the HSV colour space"@en . + . + . + . + . + . + "INN"@en . + "DCI"@fr . + "International Nonproprietary Name given to a pharmaceutical substance"@en . + . + . + . + . + . + "route start"@en . + "point de d\u00E9part"@fr . + "Weganfang"@de . + "Start of the route. This is where the route begins and, for U.S. roads, is either at the southern terminus or western terminus."@en . + "point de d\u00E9part d'une route."@fr . + "Anfang des Verkehrswegs."@de . + . + . + . + . + . + . + "musicFormat"@en . + "musikFormate"@de . + "The format of the album: EP, Single etc."@en . + . + . + . + . + . + "g\u00F6ndere \u00E7ekmek"@tr . + "vlag (afbeelding)"@nl . + "\u03C3\u03B7\u03BC\u03B1\u03AF\u03B1"@el . + "bandiera"@it . + "flag (image)"@en . + "Flagge"@de . + "Wikimedia Commons file name representing the subject's flag"@en . + . + . + . + . + . + "long distance piste kilometre (\u03BC)"@en . + . + . + . + . + . + "fight"@en . + "Kampf"@de . + . + . + . + . + . + "mukthar of a lebanon settlement"@en . + . + . + . + . + . + "lead year"@en . + . + . + . + . + . + "ethnicity"@en . + "\u03B5\u03B8\u03BD\u03CC\u03C4\u03B7\u03C4\u03B1"@el . + "ethnische zugeh\u00F6rigkeit"@de . + "etnia"@it . + "\u039C\u03AF\u03B1 \u03BF\u03C1\u03B9\u03C3\u03BC\u03AD\u03BD\u03B7 \u03BA\u03BF\u03B9\u03BD\u03C9\u03BD\u03B9\u03BA\u03AE \u03BA\u03B1\u03C4\u03B7\u03B3\u03BF\u03C1\u03AF\u03B1 \u03B1\u03BD\u03B8\u03C1\u03CE\u03C0\u03C9\u03BD \u03C0\u03BF\u03C5 \u03AD\u03C7\u03BF\u03C5\u03BD \u03BA\u03BF\u03B9\u03BD\u03AE \u03BA\u03B1\u03C4\u03B1\u03B3\u03C9\u03B3\u03AE \u03AE \u03B5\u03BC\u03C0\u03B5\u03B9\u03C1\u03AF\u03B5\u03C2."@el . + . + . + . + . + . + . + . + "podium"@en . + "Podest"@de . + . + . + . + . + . + "subject term"@en . + "onderwerpsaanduiding"@nl . + "The subject as a term, possibly a term from a formal classification"@en . + . + . + . + . + . + "d\u00E9finition"@fr . + "definition"@en . + "tan\u0131mlar"@tr . + . + . + . + . + . + "wins at AUS"@en . + . + . + . + . + . + "qatar classic"@en . + . + . + . + . + . + "bluecoordinate in the RGB space"@en . + . + . + . + . + . + "waluta"@pl . + "valuta"@nl . + "\u03BD\u03BF\u03BC\u03B9\u03C3\u03BC\u03B1\u03C4\u03B9\u03BA\u03AE \u03BC\u03BF\u03BD\u03AC\u03B4\u03B1"@el . + "devise"@fr . + "moeda"@pt . + "currency"@en . + "airgeadra"@ga . + "W\u00E4hrung"@de . + "\u03C5\u03C0\u03BF\u03BB\u03BF\u03B3\u03AF\u03B6\u03B5\u03B9 \u03AE \u03B5\u03BA\u03C6\u03C1\u03AC\u03B6\u03B5\u03B9 \u03BF\u03B9\u03BA\u03BF\u03BD\u03BF\u03BC\u03B9\u03BA\u03AD\u03C2 \u03B1\u03BE\u03AF\u03B5\u03C2"@el . + . + . + . + . + . + . + "doctoral student"@en . + "Doktorand"@de . + "\u03B4\u03B9\u03B4\u03B1\u03BA\u03C4\u03BF\u03C1\u03B9\u03BA\u03BF\u03AF_\u03C6\u03BF\u03B9\u03C4\u03B7\u03C4\u03AD\u03C2"@el . + "doctoraalstudent"@nl . + . + . + . + . + . + . + . + "population place"@en . + "a place were members of an ethnic group are living"@en . + . + . + . + . + . + . + "squad number"@en . + "The number that an athlete wears in a team sport."@en . + . + . + . + . + . + "command module"@en . + . + . + . + . + . + "number of ministries"@en . + "Zahl der Ministerien"@de . + "numero de ministerios"@pt . + . + . + . + . + . + "ELO rating"@en . + . + . + . + . + . + . + "association of local government"@en . + "vereniging van lokale overheden"@nl . + "\u03C3\u03C5\u03BD\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 \u03C4\u03B7\u03C2 \u03C4\u03BF\u03C0\u03B9\u03BA\u03AE\u03C2 \u03B1\u03C5\u03C4\u03BF\u03B4\u03B9\u03BF\u03AF\u03BA\u03B7\u03C3\u03B7\u03C2"@el . + . + . + . + . + . + . + "management country"@en . + . + . + . + . + . + . + "adres"@nl . + "\u03B4\u03B9\u03B5\u03CD\u03B8\u03C5\u03BD\u03C3\u03B7"@el . + "adresse"@fr . + "\u0430\u0434\u0440\u0435\u0441\u0430"@sr . + "\u0430\u0434\u0440\u0435\u0441"@ru . + "address"@en . + "Adresse"@de . + "Address of something as literal. Usually Building, but we also use it for the address of a Region's or Settlement's government"@en . + . + . + . + . + . + "seniunija"@en . + . + . + . + . + . + "medalist"@en . + "Medaillengewinner"@de . + "medalhista"@pt . + . + . + . + . + . + . + "distributor"@en . + "allumeur"@fr . + . + . + . + . + . + . + "offered classes"@en . + . + . + . + . + . + "highest building in year"@en . + . + . + . + . + . + "discipline"@en . + "Disziplin"@de . + . + . + . + . + . + . + "code Stock Exchange"@en . + "beurscode"@nl . + . + . + . + . + . + . + "afbeelding"@nl . + "\u03B5\u03B9\u03BA\u03CC\u03BD\u03B1"@el . + "image"@fr . + "figura"@pt . + "picture"@en . + "Bild"@de . + "A picture of a thing."@en . + "Une image de quelque chose."@fr . + . + . + . + . + . + "lunar EVA time (s)"@en . + . + . + . + . + . + "combatant"@en . + "Kombattant"@de . + . + . + . + . + . + "number of students"@en . + "Zahl der Studierenden"@de . + "\u03B1\u03C1\u03B9\u03B8\u03BC\u03CC\u03C2 \u03C6\u03BF\u03B9\u03C4\u03B7\u03C4\u03CE\u03BD"@el . + . + . + . + . + . + "number of reactors"@en . + "Anzahl der Reaktoren"@de . + "nombre de r\u00E9acteurs"@fr . + "aantal reactoren"@nl . + . + . + . + . + . + "contractor"@en . + "\u03B5\u03C1\u03B3\u03BF\u03BB\u03AC\u03B2\u03BF\u03C2"@el . + "Auftragnehmer"@de . + "aannemer"@nl . + . + . + . + . + . + . + "former channel"@en . + . + . + . + . + . + "capital position"@en . + . + . + . + . + . + . + "Tak\u0131my\u0131ld\u0131z"@tr . + "gwiazdozbi\u00F3r"@pl . + "sterrenbeeld"@nl . + "constellation"@en . + "Sternbild"@de . + . + . + . + . + . + . + "categorie"@nl . + "\u03BA\u03B1\u03C4\u03B7\u03B3\u03BF\u03C1\u03AF\u03B1"@el . + "cat\u00E9gorie"@fr . + "category"@en . + "Kategorie"@cs . + "Kategorie"@de . + . + . + . + . + "creation christian bishop"@en . + . + . + . + . + . + "molecular weight"@en . + "Molekulargewicht"@de . + "molgewicht"@nl . + . + . + . + . + . + "approach"@en . + . + . + . + . + "apc president"@en . + . + . + . + . + . + "total population ranking"@en . + "posi\u00E7\u00E3o no ranking do total da populacao"@pt . + . + . + . + . + . + "breeder"@en . + "Z\u00FCchter"@de . + "\u03BA\u03C4\u03B7\u03BD\u03BF\u03C4\u03C1\u03CC\u03C6\u03BF\u03C2"@el . + . + . + . + . + . + . + "victory"@en . + "Sieg"@de . + "\u043F\u043E\u0431\u0435\u0434\u0430"@sr . + . + . + . + . + . + "legislative period name"@en . + "Name in der Legislaturperiode"@de . + "The term of the on-going session (e.g.: \"40th Canadian Parliament\")."@en . + . + . + . + . + . + "billed"@en . + . + . + . + . + . + . + "patron (art)"@en . + "m\u00E9c\u00E8ne"@fr . + "An influential, wealthy person who supported an artist, craftsman, a scholar or a noble.. See also"@en . + "Celui qui encourage par ses lib\u00E9ralit\u00E9s les sciences, les lettres et les arts."@fr . + . + . + . + . + . + . + "model end date"@en . + . + . + . + . + . + "gross domestic product as of"@en . + "produto interno bruto em"@pt . + . + . + . + . + . + "number of villages"@en . + "Anzahl der D\u00F6rfer"@de . + "jumlah desa/kelurahan"@id . + . + . + . + . + . + "artificial snow area"@en . + . + . + . + . + . + "full score"@en . + . + . + . + . + . + "structural system"@en . + "Tragsystem"@de . + "bouwmethode"@nl . + "\u03BA\u03B1\u03C4\u03B1\u03C3\u03BA\u03B5\u03C5\u03B1\u03C3\u03C4\u03B9\u03BA\u03CC \u03C3\u03CD\u03C3\u03C4\u03B7\u03BC\u03B1"@el . + . + . + . + . + . + "reopened"@en . + "wieder er\u00F6ffnet"@de . + . + . + . + . + . + "na podstawie"@pl . + "op basis van"@nl . + "\u03B2\u03B1\u03C3\u03B9\u03C3\u03BC\u03AD\u03BD\u03BF \u03C3\u03B5"@el . + "based on"@en . + "bunaithe ar"@ga . + "basierend auf"@de . + . + . + . + . + . + . + . + "staff"@en . + "Personal"@de . + "\u03C0\u03C1\u03BF\u03C3\u03C9\u03C0\u03B9\u03BA\u03CC"@el . + . + . + . + . + . + "sister newspaper"@en . + . + . + . + . + . + . + "PubChem"@en . + "PubChem"@fr . + "PubChem"@ja . + . + . + . + . + . + "eMedicine subject"@en . + "eMedicine onderwerp"@nl . + . + . + . + . + . + "Wiki page in degree"@en . + "Reserved for DBpedia."@en . + . + . + . + . + "highest rank"@en . + "h\u00F6chster Ranglistenplatz"@de . + . + . + . + . + . + "ULAN id"@en . + "Union List of Artist Names id (Getty Research Institute). ULAN has 293,000 names and other information about artists. Names in ULAN may include given names, pseudonyms, variant spellings, names in multiple languages, and names that have changed over time (e.g., married names).\nhttp://vocab.getty.edu/ulan/$1"@en . + . + . + . + . + . + "source state"@en . + . + . + . + . + . + "author of preface"@en . + "Autor des Vorworts"@de . + "schrijver voorwoord"@nl . + . + . + . + . + . + "Number of votes given to candidate"@en . + "Anzahl der Stimmen f\u00FCr Kandidaten"@de . + . + . + . + . + . + "wins at ASIA"@en . + . + . + . + . + . + "equity ($)"@en . + "Gerechtigkeit ($)"@de . + . + . + . + . + . + "number of seats in parliament"@en . + "Anzahl der Sitze im Parlament"@de . + "aantal zetels in parlement"@nl . + "number of seats in House of Commons-like parliaments"@en . + "aantal zetels in Tweede-Kamer-achtig parlement"@nl . + . + . + . + . + . + "skills"@en . + "F\u00E4higkeiten"@de . + "comp\u00E9tences"@fr . + "bekwaamheden"@nl . + . + . + . + . + "comparable"@en . + "vergleichbar"@de . + "similar, unrelated rockets"@en . + . + . + . + . + . + . + . + "diameter (\u03BC)"@nl . + "\u03B4\u03B9\u03AC\u03BC\u03B5\u03C4\u03C1\u03BF\u03C2 (\u03BC)"@el . + "diam\u00E8tre (\u03BC)"@fr . + "diameter (\u03BC)"@en . + "Durchmesser (\u03BC)"@de . + . + . + . + . + "BAFTA Award"@en . + "BAFTA Award"@de . + "\u03B2\u03C1\u03B1\u03B2\u03B5\u03AF\u03BF BAFTA"@el . + . + . + . + . + . + . + "statistic label"@en . + . + . + . + . + "route end location"@en . + "Ort des Wegendes"@de . + "The end location of the route."@en . + "End-Ort des Verkehrswegs."@de . + . + . + . + . + . + . + "position"@en . + "Position"@de . + "\u0398\u03AD\u03C3\u03B7"@el . + "positie"@nl . + . + . + . + "maximum boat beam (\u03BC)"@en . + "\u03BC\u03AD\u03B3\u03B9\u03C3\u03C4\u03BF_\u03C0\u03BB\u03AC\u03C4\u03BF\u03C2_\u03C0\u03BB\u03BF\u03AF\u03BF\u03C5 (\u03BC)"@el . + . + . + . + . + . + "orbital flights"@en . + . + . + . + . + . + "team size"@en . + "Teamgr\u00F6\u00DFe"@de . + . + . + . + . + "Music Band"@en . + . + . + . + . + . + "family"@en . + "Familie"@de . + "taalfamilie"@nl . + "rodzina"@pl . + . + . + . + . + . + "code on index"@en . + "Indexcode"@nl . + . + . + . + . + . + . + "opponent"@en . + "\u6575\u5BFE\u8005"@ja . + "Gegner"@de . + . + . + . + . + . + . + "vice prime minister"@en . + "Vizeministerpr\u00E4sident"@de . + "\u0437\u0430\u043C\u0435\u043D\u0438\u043A \u043F\u0440\u0435\u043C\u0438\u0458\u0435\u0440\u0430"@sr . + "vice premier"@nl . + . + . + . + . + . + "solvent with good solubility"@en . + "L\u00F6sungsmittel mit guter L\u00F6slichkeit"@de . + "goed oplosbaar in"@nl . + . + . + . + . + . + "settlement code"@en . + . + . + . + . + . + "funded by"@en . + "\u03B9\u03B4\u03C1\u03CD\u03B8\u03B7\u03BA\u03B5 \u03B1\u03C0\u03CC"@el . + "gef\u00F6rdert durch"@de . + "A organisation financing the research project."@en . + . + . + . + . + . + . + "class"@en . + "Klasse"@de . + "\u03C4\u03AC\u03BE\u03B7"@el . + "klasse"@nl . + . + . + . + . + . + "avifauna population"@en . + . + . + . + . + . + "landing vehicle"@en . + . + . + . + . + . + . + "znany z powodu"@pl . + "bekend om"@nl . + "\u03B3\u03BD\u03C9\u03C3\u03C4\u03CC\u03C2_\u03B3\u03B9\u03B1"@el . + "connu pour"@fr . + "conocido por"@es . + "known for"@en . + "bekannt f\u00FCr"@de . + . + . + . + . + . + "hub airport"@en . + . + . + . + . + . + . + "grounds for termination of activities"@en . + "reden van opheffing"@nl . + . + . + . + . + . + "distance to Charing Cross (\u03BC)"@en . + . + . + . + . + . + "album"@nl . + "\u03B1\u03C0\u03CC \u03C4\u03BF \u03AC\u03BB\u03BC\u03C0\u03BF\u03C5\u03BC"@el . + "\u0430\u043B\u0431\u0443\u043C"@sr . + "album"@en . + "Album"@de . + . + . + . + . + . + "start wqs"@en . + . + . + . + . + . + "british wins"@en . + . + . + . + . + . + "ept itm"@en . + . + . + . + . + . + "reference for cultural data"@en . + . + . + . + . + . + "extinction date"@en . + "ontbindingsdatum"@nl . + . + . + . + . + . + "team coached"@en . + "Team gecoacht"@de . + . + . + . + . + . + "aircraft helicopter attack"@en . + "Hubschrauberangriff"@de . + "\u03B5\u03C0\u03AF\u03B8\u03B5\u03C3\u03B7 \u03B5\u03BB\u03B9\u03BA\u03BF\u03C6\u03CC\u03C1\u03C9\u03BD \u03B1\u03B5\u03C1\u03BF\u03C3\u03BA\u03B1\u03C6\u03CE\u03BD"@el . + "\u0432\u0430\u0437\u0434\u0443\u0448\u043D\u0438 \u043D\u0430\u043F\u0430\u0434 \u0445\u0435\u043B\u0438\u043A\u043E\u043F\u0442\u0435\u0440\u043E\u043C"@sr . + . + . + . + . + . + . + "tree"@en . + "Baum"@de . + "\u03B4\u03AD\u03BD\u03C4\u03C1\u03BF"@el . + . + . + . + . + . + "seniority"@en . + . + . + . + . + "second driver country"@en . + . + . + . + . + . + . + "material"@en . + "Material"@de . + "mat\u00E9riel"@fr . + . + . + . + . + . + "umbrella title"@en . + "overkoepelende titel"@nl . + . + . + . + . + . + "ISO 639-2 code"@en . + "ISO 639-2 code"@nl . + "kod ISO 639-2"@pl . + . + . + . + . + . + . + . + . + "twin country"@en . + "Partnerland"@de . + . + . + . + . + . + . + "diepte (\u03BC)"@nl . + "\u03B2\u03AC\u03B8\u03BF\u03C2 (\u03BC)"@el . + "profondeur (\u03BC)"@fr . + "depth (\u03BC)"@en . + "Tiefe (\u03BC)"@de . + . + . + . + . + . + "gini coefficient as of"@en . + "coeficiente de Gini em"@pt . + . + . + . + . + . + "Established"@en . + "etabliert"@de . + . + . + . + . + . + . + "lengte (\u03BC)"@nl . + "\u03BC\u03AE\u03BA\u03BF\u03C2 (\u03BC)"@el . + "longueur (\u03BC)"@fr . + "length (\u03BC)"@en . + "L\u00E4nge (\u03BC)"@de . + . + . + . + . + "has channel"@en . + . + . + . + "place of military conflict"@en . + "Ort eines milit\u00E4rischen Konflikts"@de . + . + . + . + . + . + . + "maximum area quote"@en . + . + . + . + . + . + "number of teams"@en . + "Anzahl der Teams"@de . + "numero di squadre"@it . + . + . + . + . + . + "maximum absolute magnitude"@en . + "maximale absolute Helligkeit"@de . + "maximale absolute magnitude"@nl . + . + . + . + . + . + "largest win"@en . + . + . + . + . + . + "second place"@en . + "zweiter Platz"@de . + . + . + . + . + "solicitor general"@en . + "Generalstaatsanwalt"@de . + "advocaat-generaal"@nl . + "high-ranking solicitor"@en . + "de advocaat-generaal"@nl . + . + . + . + . + . + . + "rank of an area"@en . + . + . + . + . + . + "sport specialty"@en . + "sport specialiteit"@nl . + "the sport specialty the athlete practices, e.g. 'Ring' for a men's artistic gymnastics athlete"@en . + . + . + . + . + . + . + "status year"@en . + . + . + . + . + . + "number of participating athletes"@en . + "Anzahl der teilnehmenden Athleten"@de . + "nombre d'athl\u00E8tes participant"@fr . + . + . + . + . + . + "number of volunteers"@en . + "Anzahl der Freiwilligen"@de . + "\u03B1\u03C1\u03B9\u03B8\u03BC\u03CC\u03C2 \u03B5\u03B8\u03B5\u03BB\u03BF\u03BD\u03C4\u03CE\u03BD"@el . + . + . + . + . + . + "era"@en . + "\u03B5\u03C0\u03BF\u03C7\u03AE"@el . + . + . + . + . + "game artist"@en . + "\u30B2\u30FC\u30E0\u30C7\u30B6\u30A4\u30CA\u30FC"@ja . + "A game artist is an artist who creates art for one or more types of games. Game artists are responsible for all of the aspects of game development that call for visual art."@en . + . + . + . + . + . + . + "deme"@en . + . + . + . + . + . + "setting of play"@en . + "The places and time where the play takes place."@en . + . + . + . + . + . + "railway platforms"@en . + "Bahnsteige"@de . + "perrons"@nl . + "\u03B1\u03C0\u03BF\u03B2\u03AC\u03B8\u03C1\u03B1"@el . + "Information on the type of platform(s) at the station."@en . + . + . + . + . + . + "legal article"@en . + "wetsartikel"@nl . + "article in code book or statute book referred to in this legal case"@en . + . + . + . + . + . + "equipment"@en . + "Ausr\u00FCstung"@de . + "\u03B5\u03BE\u03BF\u03C0\u03BB\u03B9\u03C3\u03BC\u03CC\u03C2"@el . + "uitrusting"@nl . + . + . + . + . + . + "position in which a surface occurs in a text"@en . + . + . + . + . + "notes"@en . + "Anmerkungen"@de . + "\u03C3\u03B7\u03BC\u03B5\u03B9\u03CE\u03C3\u03B5\u03B9\u03C2"@el . + "notes"@fr . + "additional notes that better describe the entity."@en . + "\u03C3\u03C5\u03BC\u03C0\u03BB\u03B7\u03C1\u03C9\u03BC\u03B1\u03C4\u03B9\u03BA\u03AD\u03C2 \u03C3\u03B7\u03BC\u03B5\u03B9\u03CE\u03C3\u03B5\u03B9\u03C2 \u03C0\u03BF\u03C5 \u03C0\u03B5\u03C1\u03B9\u03B3\u03C1\u03AC\u03C6\u03BF\u03C5\u03BD \u03BA\u03B1\u03BB\u03CD\u03C4\u03B5\u03C1\u03B1 \u03C4\u03B7\u03BD \u03BF\u03BD\u03C4\u03CC\u03C4\u03B7\u03C4\u03B1."@el . + . + . + . + . + "spur type"@en . + . + . + . + . + . + "national team match point"@en . + . + . + . + . + . + "catholic percentage"@en . + . + . + . + . + . + "size map"@en . + "Gr\u00F6\u00DFe der Karte"@de . + . + . + . + . + "Grammy Award"@en . + "Grammy Award"@de . + . + . + . + . + . + . + "academic discipline"@en . + "wissenschaftliche Disziplin"@de . + "\u0430\u043A\u0430\u0434\u0435\u043C\u0441\u043A\u0430 \u0434\u0438\u0441\u0446\u0438\u043F\u043B\u0438\u043D\u0430"@sr . + "An academic discipline, or field of study, is a branch of knowledge that is taught and researched at the college or university level. Disciplines are defined (in part), and recognized by the academic journals in which research is published, and the learned societies and academic departments or faculties to which their practitioners belong."@en . + . + . + . + . + . + "death age"@en . + "\u03B7\u03BB\u03B9\u03BA\u03AF\u03B1 \u03B8\u03B1\u03BD\u03AC\u03C4\u03BF\u03C5"@el . + "Sterbealter"@de . + . + . + . + . + . + "iucn category"@en . + "IUCN categorie"@nl . + . + . + . + . + . + "booster"@en . + "\u03C0\u03C1\u03BF\u03C9\u03B8\u03B7\u03C4\u03AE\u03C2"@el . + . + . + . + . + . + . + "first ascent"@en . + "Erstbesteigung"@de . + . + . + . + . + . + "FDA UNII code"@en . + "c\u00F3digo FDA UNII"@pt . + "FDA Unique Ingredient Identifier (UNII) code for a DBpedia Drug"@en . + . + . + . + . + "IUPAC name"@en . + "IUPAC\u540D"@ja . + . + . + . + . + . + "Wikipage revision ID"@en . + "Reserved for DBpedia."@en . + . + . + . + . + "next entity"@en . + . + . + . + . + . + . + "nerve"@en . + "Nerv"@de . + . + . + . + . + . + . + "first winner"@en . + "erster Gewinner"@de . + "\u03C0\u03C1\u03CE\u03C4\u03BF\u03C2 \u03BD\u03B9\u03BA\u03B7\u03C4\u03AE\u03C2"@el . + . + . + . + . + . + . + "technique"@en . + "technisch"@de . + "\u03C4\u03B5\u03C7\u03BD\u03B9\u03BA\u03AE"@el . + "t\u00E9cnica"@es . + . + . + . + . + . + "commune"@en . + "Kommune"@de . + "commune"@fr . + . + . + . + . + . + . + "intercommunality shape"@en . + . + . + . + . + . + . + "outflow"@en . + "Abfluss"@de . + "\u03B5\u03BA\u03C1\u03BF\u03AE"@el . + . + . + . + . + . + . + "weapon"@en . + "Waffe"@de . + "\u043E\u0440\u0443\u0436\u0458\u0435"@sr . + "wapen"@nl . + . + . + . + . + "cousurper"@en . + . + . + . + . + . + "current team manager"@en . + . + . + . + . + . + "classification"@en . + "Klassifikation"@de . + "categorie"@nl . + . + . + . + . + . + "movement"@en . + "Bewegung"@de . + "beweging"@nl . + "mouvement artistique"@fr . + "artistic movement or school with which artist is associated"@en . + . + . + . + . + . + . + "ship beam (\u03BC)"@en . + "The beam of a ship is its width at the widest point."@en . + . + . + . + . + . + "currently used for"@en . + "huidig gebruik"@nl . + "usage actuel"@fr . + "uso actual"@es . + "Current use of the architectural structure, if it is currently being used as anything other than its original purpose."@en . + . + . + . + . + . + "frequency (Hz)"@en . + "Frequenz (Hz)"@de . + "\u03C3\u03C5\u03C7\u03BD\u03CC\u03C4\u03B7\u03C4\u03B1 (Hz)"@el . + "fr\u00E9quence (Hz)"@fr . + . + . + . + . + "supplies"@en . + "\u03C0\u03B1\u03C1\u03BF\u03C7\u03AD\u03C2"@el . + . + . + . + . + . + . + "topic"@en . + "Thema"@de . + . + . + . + . + . + "start reign"@en . + . + . + . + . + . + "named after"@en . + "benannt nach"@de . + . + . + . + . + . + "Method of discovery"@en . + "Verfahren zur Entdeckung"@de . + . + . + . + . + . + "heir"@en . + "Erbe"@de . + . + . + . + . + . + . + "highest point"@en . + "\u03C5\u03C8\u03B7\u03BB\u03CC\u03C4\u03B5\u03C1\u03BF \u03C3\u03B7\u03BC\u03B5\u03AF\u03BF"@el . + "h\u00F6chste Erhebung"@de . + . + . + . + . + . + . + . + "ski piste kilometre (\u03BC)"@en . + "Skipiste km (\u03BC)"@de . + . + . + . + . + . + "\u03C0\u03C1\u03C9\u03C4\u03B1\u03B8\u03BB\u03B7\u03C4\u03AE\u03C2"@el . + "champion"@fr . + "Campe\u00F3n"@es . + "champion"@en . + "Meister"@de . + "winner of a competition"@en . + "\u03BD\u03B9\u03BA\u03B7\u03C4\u03AE\u03C2 \u03B5\u03BD\u03CC\u03C2 \u03B4\u03B9\u03B1\u03B3\u03C9\u03BD\u03B9\u03C3\u03BC\u03BF\u03CD"@el . + . + . + . + . + . + . + "launch pad"@en . + "Startrampe"@de . + . + . + . + . + . + . + "Game Engine"@en . + "\u30B2\u30FC\u30E0\u30A8\u30F3\u30B8\u30F3"@ja . + . + . + . + . + . + . + "body style"@en . + "\u03C4\u03CD\u03C0\u03BF\u03C2 \u03C3\u03CE\u03BC\u03B1\u03C4\u03BF\u03C2"@el . + . + . + . + . + . + "first publisher"@en . + "erster Herausgeber"@de . + "oorspronkelijke uitgever"@nl . + . + . + . + . + . + . + "total launches"@en . + . + . + . + . + "first flight end date"@en . + . + . + . + . + . + "highest break"@en . + "H\u00F6chstes Break"@de . + . + . + . + . + . + "Orthologous Gene"@en . + "\u30AA\u30FC\u30BD\u30ED\u30AC\u30B9\u907A\u4F1D\u5B50"@ja . + . + . + . + . + . + . + "season manager"@en . + . + . + . + . + . + "political function"@en . + "politische Funktion"@de . + . + . + . + . + . + "organisation member"@en . + "Organisationsmitglied"@de . + "Identify the members of an organisation."@en . + . + . + . + . + . + . + "broer of zus"@nl . + "fr\u00E8re ou soeur"@fr . + "sibling"@en . + "\u5144\u5F1F"@ja . + "Geschwister"@de . + . + . + . + . + . + . + "brain info type"@en . + "\u03C4\u03CD\u03C0\u03BF\u03C2 \u03BD\u03BF\u03B7\u03C4\u03B9\u03BA\u03AE\u03C2 \u03C0\u03BB\u03B7\u03C1\u03BF\u03C6\u03CC\u03C1\u03B7\u03C3\u03B7\u03C2"@el . + . + . + . + . + . + "route"@en . + "Route"@de . + . + . + . + . + . + "UTC offset"@en . + "UTC \u043E\u0444\u0441\u0435\u0442"@sr . + . + . + . + . + . + "eigenaar"@nl . + "\u03B9\u03B4\u03B9\u03BF\u03BA\u03C4\u03AE\u03C4\u03B7\u03C2"@el . + "propri\u00E9taire"@fr . + "due\u00F1o"@es . + "owner"@en . + "Eigent\u00FCmer"@de . + "Used as if meaning: owned by, has as its owner"@en . + . + . + . + . + . + "wavelength (\u03BC)"@en . + "Wellenl\u00E4nge (\u03BC)"@de . + "\u0442\u0430\u043B\u0430\u0441\u043D\u0430 \u0434\u0443\u0436\u0438\u043D\u0430 (\u03BC)"@sr . + "longueur d'onde (\u03BC)"@fr . + . + . + . + . + . + "best rank single"@en . + . + . + . + . + . + "Stadium"@en . + "Stadion"@de . + "\u03C3\u03C4\u03AC\u03B4\u03B9\u03BF"@el . + . + . + . + . + . + "exhibition"@en . + "Notes about an exhibition the object has been to"@en . + . + . + . + . + "on chromosome"@en . + "chromosoom nummer"@nl . + "the number corresponding to the chromosome on which the gene is located"@en . + . + . + . + . + . + "Bundesland"@de . + "federal state"@en . + "provincie"@nl . + . + . + . + . + . + . + "certification date"@en . + "datum certificatie"@nl . + . + . + . + . + . + "in cemetery"@en . + "op kerkhof"@nl . + . + . + . + . + . + "variant or variation"@en . + "Variante oder Variation"@de . + "variant of variatie"@nl . + "variant or variation, for example all variations of a color"@en . + . + . + . + . + "pro team"@en . + . + . + . + . + . + "function end year"@en . + "laatste jaar functie"@nl . + . + . + . + . + . + "minimum system requirements"@en . + "Mindestsystemanforderungen"@de . + . + . + . + . + "source elevation (\u03BC)"@en . + . + . + . + . + "firstPopularVote"@en . + . + . + . + . + . + "station structure"@en . + "station structuur"@nl . + "Type of station structure (underground, at-grade, or elevated)."@en . + . + . + . + . + . + "regional prefecture"@en . + "regionale Pr\u00E4fektur"@de . + . + . + . + . + . + "competition"@en . + "Wettbewerb"@de . + "competition"@fr . + "competici\u00F3n"@es . + . + . + . + . + . + . + "conviction date"@en . + . + . + . + . + . + "number of piers in water"@en . + "Anzahl der Pfeiler in Wasser"@de . + "Number of piers standing in a river or other water in normal conditions."@en . + . + . + . + . + . + "astrological sign"@en . + "\u03B1\u03C3\u03C4\u03C1\u03BF\u03BB\u03BF\u03B3\u03B9\u03BA\u03CC \u03B6\u03CE\u03B4\u03B9\u03BF"@el . + "Sternzeichen"@de . + "signo astrol\u00F3gico"@pt . + . + . + . + . + . + "resting place position"@en . + . + . + . + . + . + . + "geolocDepartment"@en . + . + . + . + . + . + "TradeMark"@en . + "Marca"@es . + . + . + . + . + "first race"@en . + "erstes Rennen"@de . + . + . + . + . + . + . + "binomial authority"@en . + "\uFF08\u5B66\u540D\u547D\u540D\u8005\uFF09"@ja . + . + . + . + . + . + "same name"@en . + "gleicher Name"@de . + . + . + . + . + . + "row number"@en . + "Zeilennummer"@de . + "regelnummer van verwijzing"@nl . + "Row # where the referenced resource is to be found in the source file"@en . + . + . + . + . + . + "EKATTE code"@en . + "Indexing code used by the Bulgarian National Statistical Institute to identify populated places"@en . + "\u0415\u0434\u0438\u043D\u0435\u043D \u043A\u043B\u0430\u0441\u0438\u0444\u0438\u043A\u0430\u0442\u043E\u0440 \u043D\u0430 \u0430\u0434\u043C\u0438\u043D\u0438\u0441\u0442\u0440\u0430\u0442\u0438\u0432\u043D\u043E-\u0442\u0435\u0440\u0438\u0442\u043E\u0440\u0438\u0430\u043B\u043D\u0438\u0442\u0435 \u0438 \u0442\u0435\u0440\u0438\u0442\u043E\u0440\u0438\u0430\u043B\u043D\u0438\u0442\u0435 \u0435\u0434\u0438\u043D\u0438\u0446\u0438"@bg . + . + . + . + . + . + . + "editing"@en . + "Bearbeitung"@de . + "eagarth\u00F3ireacht"@ga . + . + . + . + . + . + . + . + "existence"@en . + "Existenz"@de . + "\u03B5\u03AF\u03BD\u03B1\u03B9"@el . + "\u03A4\u03BF \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B1\u03BD\u03C4\u03B9\u03BA\u03B1\u03C4\u03BF\u03C0\u03C4\u03C1\u03AF\u03B6\u03B5\u03B9 \u03B1\u03C5\u03C4\u03CC \u03C0\u03BF\u03C5 \u03C5\u03C0\u03AC\u03C1\u03C7\u03B5\u03B9."@el . + . + . + . + "orbital eccentricity"@en . + . + . + . + . + . + "committee in legislature"@en . + "Ausschuss in der Legislative"@de . + "Committee in the legislature (eg.: Committee on Economic and Monetary Affairs of the European Parliament)."@en . + . + . + . + . + . + "reference for politic data"@en . + "Referenz f\u00FCr politische Daten"@de . + . + . + . + . + . + "siren number"@en . + . + . + . + . + "time"@en . + "Zeit"@de . + "\u03C7\u03C1\u03CC\u03BD\u03BF\u03C2"@el . + "\u03A7\u03C1\u03CC\u03BD\u03BF\u03C2 \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03AF\u03B6\u03B5\u03C4\u03B1\u03B9 \u03B7 \u03B1\u03BA\u03C1\u03B9\u03B2\u03AE\u03C2 \u03BC\u03AD\u03C4\u03C1\u03B7\u03C3\u03B7 \u03BC\u03B9\u03B1\u03C2 \u03B4\u03B9\u03B1\u03B4\u03B9\u03BA\u03B1\u03C3\u03AF\u03B1\u03C2 \u03B1\u03C0\u03CC \u03C4\u03BF \u03C0\u03B1\u03C1\u03B5\u03BB\u03B8\u03CC\u03BD \u03C3\u03C4\u03BF \u03BC\u03AD\u03BB\u03BB\u03BF\u03BD."@el . + . + . + . + . + "rebuilding year"@en . + "herbouw jaar"@nl . + . + . + . + . + . + "melting point (K)"@en . + "Schmelzpunkt (K)"@de . + "point de fusion (K)"@fr . + "\u878D\u70B9 (K)"@ja . + . + . + . + . + "minimum area quote"@en . + . + . + . + . + . + "champion in single male"@en . + "champion en simple homme"@fr . + "Campe\u00F3n en simple hombres"@es . + "winner of a competition in the single male session, to distinguish from the double session (as in tennis)"@en . + . + . + . + . + . + . + . + "roof height"@en . + "H\u00F6he Dach"@de . + . + . + . + . + . + "country rank"@en . + "Rang Land"@de . + "Place of the building in the list of the highest buildings in the country"@en . + "Der Platz des Geb\u00E4udes in der Liste der h\u00F6chsten Geb\u00E4ude des Landes"@de . + . + . + . + . + . + "registration"@en . + "Anmeldung"@de . + . + . + . + . + . + "number of competitors"@en . + "Anzahl der Wettbewerber"@de . + . + . + . + . + . + "part"@en . + "Teil"@de . + . + . + . + . + . + "layout"@en . + . + . + . + . + . + "average"@en . + "\u03BC\u03AD\u03C3\u03BF\u03C2 \u03CC\u03C1\u03BF\u03C2"@el . + "Durchschnitt"@de . + . + . + . + . + "road"@en . + "weg"@nl . + . + . + . + . + . + "coach club"@en . + . + . + . + . + . + "team title"@en . + . + . + . + . + . + "neighboring municipality"@en . + "Nachbargemeinde"@de . + "aangrenzende gemeente"@nl . + "municip\u00EDo adjacente"@pt . + . + . + . + . + . + . + "titel"@nl . + "\u03A4\u03AF\u03C4\u03BB\u03BF\u03C2"@el . + "denominazione"@it . + "t\u00EDtulo"@es . + "title"@en . + "\u30BF\u30A4\u30C8\u30EB"@ja . + "Titel"@de . + . + . + . + . + "orbits"@en . + "Bahnen"@de . + . + . + . + . + "Allocine ID"@en . + "ID Allocine"@fr . + "ID of a film on Allocine"@en . + "ID d'un film sur Allocine"@fr . + . + . + . + . + . + "taoiseach"@en . + "taoiseach"@ga . + "head of government of Ireland"@en . + . + . + . + . + . + "first win"@en . + "erster Sieg"@de . + . + . + . + . + . + . + "open access content"@en . + "frei zug\u00E4nglicher Inhalten"@de . + "Availability of open access content."@en . + "Verf\u00FCgbarkeit von frei zug\u00E4nglichem Inhalten."@de . + . + . + . + . + . + "parent company"@en . + "Muttergesellschaft"@de . + . + . + . + . + . + "chief place"@en . + . + . + . + . + . + "power"@en . + "Macht"@de . + . + . + . + . + . + "flash point"@en . + "vlampunt"@nl . + "lowest temperature at which a substance can vaporize and start burning"@en . + . + . + . + . + . + "australia open double"@en . + . + . + . + . + . + "distance to Edinburgh (\u03BC)"@en . + "\u03B1\u03C0\u03CC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03B1\u03C0\u03CC \u03C4\u03BF \u0395\u03B4\u03B9\u03BC\u03B2\u03BF\u03CD\u03C1\u03B3\u03BF (\u03BC)"@el . + . + . + . + . + . + "upper age"@en . + "\u0433\u043E\u0440\u045A\u0430 \u0441\u0442\u0430\u0440\u043E\u0441\u043D\u0430 \u0433\u0440\u0430\u043D\u0438\u0446\u0430"@sr . + . + . + . + . + . + "former name"@en . + "fr\u00FCherer Name"@de . + "\u03C0\u03C1\u03BF\u03B7\u03B3\u03BF\u03CD\u03BC\u03B5\u03BD\u03BF \u03CC\u03BD\u03BF\u03BC\u03B1"@el . + . + . + . + . + "National Film Award"@en . + "Nationaler Filmpreis"@de . + . + . + . + . + . + . + "subsystem"@en . + "Teilsystem"@de . + . + . + . + . + . + "output"@en . + . + . + . + . + . + "ACT score"@en . + "ACT \u03C3\u03BA\u03BF\u03C1"@el . + "ACT \u0440\u0435\u0437\u0443\u043B\u0442\u0430\u0442"@sr . + "most recent average ACT scores"@en . + "\u03C0\u03BF\u03B9\u03CC \u03C0\u03C1\u03CC\u03C3\u03C6\u03B1\u03C4\u03B5\u03C2 \u03BC\u03AD\u03C3\u03B5\u03C2 \u03B2\u03B1\u03B8\u03BC\u03BF\u03BB\u03BF\u03B3\u03AF\u03B5\u03C2 ACT"@el . + . + . + . + . + . + "case"@en . + "Fall"@de . + . + . + . + . + . + "coalition"@en . + "Koalition"@de . + "\u03C3\u03C5\u03BD\u03B1\u03C3\u03C0\u03B9\u03C3\u03BC\u03CC\u03C2"@el . + "\u03A0\u03B1\u03BB\u03B1\u03B9\u03CC\u03C4\u03B5\u03C1\u03B1 \u03BF \u03C3\u03C5\u03BD\u03B1\u03C3\u03C0\u03B9\u03C3\u03BC\u03CC\u03C2 \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03BF\u03CD\u03BD\u03C4\u03B1\u03BD \u03C9\u03C2 \u03C3\u03C4\u03C1\u03B1\u03C4\u03B9\u03C9\u03C4\u03B9\u03BA\u03CC\u03C2 \u03CC\u03C1\u03BF\u03C2 \u03C0\u03BF\u03C5 \u03C5\u03C0\u03BF\u03B4\u03AE\u03BB\u03C9\u03BD\u03B5 \u03C4\u03B7\u03BD \u03CC\u03BC\u03BF\u03C1\u03B7 \u03C0\u03B1\u03C1\u03AC\u03C4\u03B1\u03BE\u03B7 \u03C0\u03BF\u03BB\u03B5\u03BC\u03B9\u03C3\u03C4\u03CE\u03BD \u03BA\u03B1\u03C4\u03AC \u03C4\u03B7\u03BD \u03BF\u03C0\u03BF\u03AF\u03B1 \u03BF \u03BA\u03AC\u03B8\u03B5 \u03C3\u03C4\u03C1\u03B1\u03C4\u03B9\u03CE\u03C4\u03B7\u03C2 \u03C0\u03C1\u03BF\u03C6\u03CD\u03BB\u03B1\u03C3\u03C3\u03B5 \u03C4\u03BF\u03BD \u03B4\u03B9\u03C0\u03BB\u03B1\u03BD\u03CC \u03C4\u03BF\u03C5 \u03BC\u03B5 \u03C4\u03B7\u03BD \u03B1\u03C3\u03C0\u03AF\u03B4\u03B1 \u03C4\u03BF\u03C5."@el . + . + . + . + . + . + "spike"@en . + "schmettern"@de . + "\u03BA\u03B1\u03C1\u03C6\u03AF"@el . + "sma\u00E7"@tr . + . + . + . + . + . + "area water (m2)"@en . + "oppervlakte water (m2)"@nl . + "\u03AD\u03BA\u03C4\u03B1\u03C3\u03B7_\u03C5\u03B4\u03AC\u03C4\u03C9\u03BD_\u03C0\u03B5\u03C1\u03B9\u03BF\u03C7\u03AE\u03C2 (m2)"@el . + "\u0432\u043E\u0434\u0435\u043D\u0430 \u043F\u043E\u0432\u0440\u0448\u0438\u043D\u0430 (m2)"@sr . + . + . + . + . + . + "subsystem link"@en . + . + . + . + . + . + "ski tow"@en . + . + . + . + . + . + "old team coached"@en . + . + . + . + . + . + "burgemeester"@nl . + "\u03B4\u03AE\u03BC\u03B1\u03C1\u03C7\u03BF\u03C2"@el . + "maire"@fr . + "mayor"@en . + "B\u00FCrgermeister"@de . + . + . + . + . + . + "String designation of the WrittenWork describing the resource"@en . + "Aanduiding beschrijvend document"@nl . + . + . + . + . + "manufacturer"@en . + "Hersteller"@de . + "\u03BA\u03B1\u03C4\u03B1\u03C3\u03BA\u03B5\u03C5\u03B1\u03C3\u03C4\u03AE\u03C2"@el . + . + . + . + . + . + . + "Academy Award"@en . + "Academy Award"@de . + "\u0392\u03C1\u03B1\u03B2\u03B5\u03AF\u03BF \u03B1\u03BA\u03B1\u03B4\u03B7\u03BC\u03AF\u03B1\u03C2"@el . + "\u043E\u0441\u043A\u0430\u0440"@sr . + . + . + . + . + . + . + "launch site"@en . + "Startplatz"@de . + . + . + . + . + . + . + . + "Computing input"@en . + . + . + . + . + . + "manager season"@en . + . + . + . + . + "monument protection status"@en . + "monumentStatus"@nl . + "The sort of status that is granted to a protected Building or Monument. This is not about being protected or not, this is about the nature of the protection regime. E.g., in the Netherlands the protection status 'rijksmonument' points to more elaborate protection than other statuses."@en . + "Aanduiding van het soort beschermingsregime. Bijv. 'rijksmonument' in Nederland of 'Monument Historique' in Belgie of Frankrijk"@nl . + . + . + . + . + . + . + "associated band"@en . + "\u03C3\u03C5\u03BD\u03B5\u03C1\u03B3\u03B1\u03B6\u03CC\u03BC\u03B5\u03BD\u03BF \u03C3\u03C5\u03B3\u03BA\u03C1\u03CC\u03C4\u03B7\u03BC\u03B1"@el . + . + . + . + . + . + "floor count"@en . + "verdiepingen"@nl . + "\u03B1\u03C1\u03B9\u03B8\u03BC\u03CC\u03C2 \u03BF\u03C1\u03CC\u03C6\u03C9\u03BD"@el . + . + . + . + . + . + "colour hex code of away jersey or its parts"@en . + "Farben Hex Code des Ausw\u00E4rtstrikots oder Teile dieses"@de . + "A colour represented by its hex code (e.g.: #FF0000 or #40E0D0)."@en . + . + . + . + . + . + "us open mixed"@en . + "US Open \u043C\u0438\u043A\u0441 \u0434\u0443\u0431\u043B"@sr . + . + . + . + . + . + "UCI code"@en . + "codice UCI"@it . + "Official UCI code for cycling teams"@en . + . + . + . + . + . + "LCCN Id"@en . + "Library of Congress Control Number"@en . + . + . + . + . + . + "dynasty"@en . + "Dynastie"@de . + "dynastie"@nl . + . + . + . + "athletics discipline"@en . + "Leichtathletikdisziplin"@de . + . + . + . + . + . + "lieutenancy"@en . + . + . + . + . + . + "time in space (s)"@en . + "Zeit im Raum (s)"@de . + . + . + . + . + "valvetrain"@en . + "Ventiltrieb"@de . + . + . + . + . + . + . + "religie"@nl . + "\u03B8\u03C1\u03B7\u03C3\u03BA\u03B5\u03AF\u03B1"@el . + "religion"@fr . + "religi\u00E3o"@pt . + "religion"@en . + "\u5B97\u6559"@ja . + "Religion"@de . + . + . + . + . + . + "agglomeration population"@en . + "\u043F\u043E\u043F\u0443\u043B\u0430\u0446\u0438\u0458\u0430 \u0430\u0433\u043B\u043E\u043C\u0435\u0440\u0430\u0446\u0438\u0458\u0435"@sr . + . + . + . + . + . + "mount"@en . + . + . + . + . + . + "biome"@en . + "\u751F\u7269\u7FA4\u7CFB"@ja . + . + . + . + . + "NAACP Image Award"@en . + . + . + . + . + . + . + "aircraft fighter"@en . + "\u0431\u043E\u0440\u0431\u0435\u043D\u0438 \u0430\u0432\u0438\u043E\u043D"@sr . + "\u03BC\u03B1\u03C7\u03B7\u03C4\u03B9\u03BA\u03CC \u03B1\u03B5\u03C1\u03BF\u03C3\u03BA\u03AC\u03C6\u03BF\u03C2"@el . + . + . + . + . + . + . + "IBDB ID"@en . + "The Internet Broadway Database ID (IBDB ID) from ibdb.com."@en . + . + . + . + . + . + "Screen Actors Guild Award"@en . + . + . + . + . + . + . + "type"@nl . + "\u03C4\u03CD\u03C0\u03BF\u03C2"@el . + "type"@fr . + "tipo"@es . + "type"@en . + "Typ"@de . + . + . + . + . + . + "line length (\u03BC)"@en . + "Linienl\u00E4nge (\u03BC)"@de . + "Length of the line. Wikipedians usually do not differentiate between track length and line lenght."@en . + . + . + . + . + . + "birth sign"@en . + . + . + . + . + "goals in national team"@en . + "Tore in der Nationalmannschaft"@de . + "interland doelpunten"@nl . + . + . + . + . + . + "number of pads"@en . + . + . + . + . + . + "share source"@en . + . + . + . + . + . + "wha draft"@en . + "WHA \u0434\u0440\u0430\u0444\u0442"@sr . + . + . + . + . + . + "other branch"@en . + "zijtak"@nl . + . + . + . + . + . + "session number"@en . + "n\u00FAmero da sess\u00E3o"@pt . + . + . + . + . + "island"@en . + "Insel"@de . + "\u03BD\u03B7\u03C3\u03B9\u03AC"@el . + . + . + . + . + . + . + "has input"@en . + . + . + . + "final lost"@en . + "Finale verloren"@de . + . + . + . + . + . + "oversight"@en . + . + . + . + . + . + "country with first satellite"@en . + . + . + . + . + . + . + "number of dependency"@en . + . + . + . + . + . + "music by"@en . + "Musik von"@de . + . + . + . + . + . + . + . + "khl draft team"@en . + . + . + . + . + . + "Gray page"@en . + "Refers to the famous 1918 edition of Gray's Anatomy."@en . + . + . + . + . + . + "tournament of champions"@en . + "Turnier der Meister"@de . + . + . + . + . + . + "governor"@en . + "Gouverneur"@de . + "\u03BA\u03C5\u03B2\u03B5\u03C1\u03BD\u03AE\u03C4\u03B7\u03C2"@el . + "gouverneur"@fr . + . + . + . + . + . + "race wins"@en . + "Siege"@de . + . + . + . + . + . + "champion in double male"@en . + "champion en double hommes"@fr . + "Campe\u00F3n en doble hombres"@es . + "winner of a competition in the male double session (as in tennis)"@en . + . + . + . + . + . + . + . + "victim"@en . + "Opfer"@de . + "\u0436\u0440\u0442\u0432\u0430"@sr . + . + . + . + . + . + "gold medalist"@en . + "Goldmedaillengewinner"@de . + "medalha de ouro"@pt . + "gouden medaille drager"@nl . + . + . + . + . + . + . + . + "original danse score"@en . + . + . + . + . + . + "ski lift"@en . + "Skilift"@de . + . + . + . + . + . + "doubles rankings"@en . + "Doppelrangliste"@de . + . + . + . + . + . + "incumbent"@en . + "Amtsinhaber"@de . + "plaatsbekleder"@nl . + . + . + . + . + . + "Ordination"@en . + . + . + . + . + . + "mayor title of a hungarian settlement"@en . + . + . + . + . + . + "streek"@nl . + "\u03C0\u03B5\u03C1\u03B9\u03BF\u03C7\u03AE"@el . + "distrito"@pt . + "district"@en . + "Bezirk"@de . + . + . + . + . + . + . + . + "Olympischer Eid"@de . + "olympic oath sworn by"@en . + "lecteur du serment olympique"@fr . + . + . + . + . + . + . + "publicly accessible"@en . + "\u00F6ffentlich zug\u00E4nglich"@de . + "describes in what way this site is accessible for public"@en . + . + . + . + . + "manager title"@en . + . + . + . + . + . + "CAS number"@en . + "num\u00E9ro CAS"@fr . + "CAS\u756A\u53F7"@ja . + . + . + . + . + . + "crosses"@en . + "\u03B4\u03B9\u03B1\u03C3\u03C7\u03AF\u03B6\u03B5\u03B9"@el . + . + . + . + . + . + . + . + "orbital inclination"@en . + "Bahnneigung"@de . + . + . + . + . + . + "vertaler"@nl . + "\u03BC\u03B5\u03C4\u03B1\u03C6\u03C1\u03B1\u03C3\u03C4\u03AE\u03C2"@el . + "traducteur"@fr . + "translator"@en . + "\u00DCbersetzer"@de . + "Translator(s), if original not in English"@en . + . + . + . + . + . + . + "beroep"@nl . + "activit\u00E9"@fr . + "occupation"@en . + "\u8077\u696D"@ja . + "Besch\u00E4ftigung"@de . + . + . + . + . + . + . + "miejsce urodzenia"@pl . + "geboorteplaats"@nl . + "\u03C4\u03CC\u03C0\u03BF\u03C2_\u03B3\u03AD\u03BD\u03BD\u03B7\u03C3\u03B7\u03C2"@el . + "lieu de naissance"@fr . + "birth place"@en . + "\u00E1it bhreithe"@ga . + "\u751F\u5730"@ja . + "lloc de naixement"@ca . + "Geburtsort"@de . + "where the person was born"@en . + . + . + . + . + . + . + . + "flag caption"@en . + . + . + . + . + . + "municipality"@en . + "Gemeinde"@de . + "plaats"@nl . + "municipalit\u00E9"@fr . + . + . + . + . + . + "locality of a switzerland settlement"@en . + . + . + . + . + . + "appearances in national team"@en . + "\u03B5\u03BC\u03C6\u03B1\u03BD\u03AF\u03C3\u03B5\u03B9\u03C2 \u03C3\u03C4\u03B7\u03BD \u03B5\u03B8\u03BD\u03B9\u03BA\u03AE \u03BF\u03BC\u03AC\u03B4\u03B1"@el . + "\u0431\u0440\u043E\u0458 \u043D\u0430\u0441\u0442\u0443\u043F\u0430 \u0443 \u043D\u0430\u0446\u0438\u043E\u043D\u0430\u043B\u043D\u043E\u043C \u0442\u0438\u043C\u0443"@sr . + . + . + . + . + . + "webcast"@en . + "webcast"@de . + "webcast"@nl . + "The URL to the webcast of the Thing."@en . + . + . + . + . + "Wikipage disambiguates"@en . + "Reserved for DBpedia."@en . + . + . + . + "rank in final medal count"@en . + . + . + . + . + . + "start"@en . + "Start"@de . + . + . + . + . + . + "thumbnail caption"@en . + . + . + . + . + . + "operating income ($)"@en . + "Betriebsergebnis ($)"@de . + . + . + . + . + . + "IMDB id"@en . + "IMDB id"@nl . + "imdb id"@el . + "IMDb id"@ja . + "International Movie Database ID. Applies to Films, Actors, etc"@en . + . + . + . + . + . + "missions"@en . + "Missionen"@de . + "\u03B1\u03C0\u03BF\u03C3\u03C4\u03BF\u03BB\u03AD\u03C2"@el . + . + . + . + . + . + "sharing out year"@en . + . + . + . + . + . + "source confluence mountain"@en . + . + . + . + . + . + . + "head city"@en . + "ville dirigeante"@fr . + "ciudad a la cabeza"@es . + "\u0430\u0434\u043C\u0438\u043D\u0438\u0441\u0442\u0440\u0430\u0442\u0438\u0432\u043D\u0438 \u0446\u0435\u043D\u0442\u0430\u0440 (\u0433\u0440\u0430\u0434)"@sr . + "city where stand the administrative power"@en . + "ville o\u00F9 si\u00E8ge le pouvoir administratif"@fr . + . + . + . + . + . + "\u03B5\u03C0\u03B9\u03C6\u03AC\u03BD\u03B5\u03B9\u03B1 \u03B1\u03C0\u03CC"@el . + "Reserved for DBpedia."@en . + . + . + . + . + "sub-family"@en . + "Unterfamilie"@de . + "onderfamilie"@nl . + . + . + . + . + . + "aircraft helicopter multirole"@en . + "Mehrzweck-Hubschrauber"@de . + "\u03B5\u03BB\u03B9\u03BA\u03BF\u03C6\u03CC\u03C1\u03BF \u03B1\u03B5\u03C1\u03BF\u03C3\u03BA\u03AC\u03C6\u03BF\u03C2 \u03C0\u03BF\u03BB\u03BB\u03B1\u03C0\u03BB\u03CE\u03BD \u03C1\u03CC\u03BB\u03C9\u03BD"@el . + "\u0432\u0438\u0448\u0435\u043D\u0430\u043C\u0435\u043D\u0441\u043A\u0438 \u0445\u0435\u043B\u0438\u043A\u043E\u043F\u0442\u0435\u0440"@sr . + . + . + . + . + . + . + "facility id"@en . + "identificativo dell'impianto"@it . + . + . + . + . + . + "outskirts"@en . + . + . + . + . + . + "organ system"@en . + "the organ system that a anatomical structure belongs to"@en . + . + . + . + . + . + . + "dec"@en . + . + . + . + . + . + "lunar surface time (s)"@en . + . + . + . + . + . + "number of clubs"@en . + "Anzahl der Clubs"@de . + "nombre de clubs"@fr . + "numero de clubs"@es . + . + . + . + . + . + "majority floor leader"@en . + "number of office holder"@en . + . + . + . + . + "lowest mountain"@en . + "\u03C7\u03B1\u03BC\u03B7\u03BB\u03CE\u03C4\u03B5\u03C1\u03BF \u03B2\u03BF\u03C5\u03BD\u03CC"@el . + . + . + . + . + . + "activity"@en . + "\u03B4\u03C1\u03B1\u03C3\u03C4\u03B7\u03C1\u03B9\u03CC\u03C4\u03B7\u03C4\u03B1"@el . + "Aktivit\u00E4t"@de . + "\u0430\u043A\u0442\u0438\u0432\u043D\u043E\u0441\u0442"@sr . + . + . + . + . + "Number Of Federal Deputies"@en . + "Anzahl der Bundesabgeordneten"@de . + "numero de deputados federais"@pt . + . + . + . + . + . + "mouth state"@en . + . + . + . + . + . + . + "novel"@en . + "Roman"@de . + . + . + . + . + . + . + "Wikipage page ID"@en . + "Reserved for DBpedia."@en . + . + . + . + . + "Gene Location"@en . + "\u907A\u4F1D\u5B50\u5EA7"@ja . + . + . + . + . + . + . + "retired rocket"@en . + . + . + . + . + . + . + "alternative name"@en . + "alternativer Name"@de . + "naamsvariant"@nl . + "\u0430\u043B\u0442\u0435\u0440\u043D\u0430\u0442\u0438\u0432\u043D\u0438 \u043D\u0430\u0437\u0438\u0432"@sr . + "Alternative naming of anything not being a Person (for which case foaf:nick should be used)."@en . + . + . + . + . + "caterer"@en . + "horeca"@nl . + . + . + . + . + . + "aircraft helicopter"@en . + "Hubschrauber"@de . + "\u0445\u0435\u043B\u0438\u043A\u043E\u043F\u0442\u0435\u0440"@sr . + "\u03B5\u03BB\u03B9\u03BA\u03BF\u03C6\u03CC\u03C1\u03BF \u03B1\u03B5\u03C1\u03BF\u03C3\u03BA\u03AC\u03C6\u03BF\u03C2"@el . + . + . + . + . + . + . + "first appearance"@en . + . + . + . + . + . + . + "blazon ratio"@en . + . + . + . + . + "catch"@en . + . + . + . + . + . + "livingPlace"@en . + . + . + . + . + . + "colour hex code of home jersey or its parts"@en . + "Farben Hex Code des Heimtrikots oder Teile dieses"@de . + "A colour represented by its hex code (e.g.: #FF0000 or #40E0D0)."@en . + . + . + . + . + . + "sous-chef"@nl . + "chef"@el . + "chef cuisinier"@fr . + "chef"@en . + "Koch"@de . + . + . + . + . + . + . + "australia open single"@en . + . + . + . + . + . + "sequence number"@en . + . + . + . + . + . + "season"@en . + "Saison"@de . + "sezon"@tr . + . + . + . + . + . + . + "top scorer"@en . + "Torsch\u00FCtzenk\u00F6nig"@de . + "en golc\u00FC"@tr . + . + . + . + . + . + . + "reign name"@en . + . + . + . + . + . + "origo"@en . + . + . + . + . + . + "neighbourhood of a hungarian settlement"@en . + . + . + . + . + . + "federation"@en . + "Verband"@de . + . + . + . + . + . + "gini coefficient category"@en . + "categoria do coeficiente de Gini"@pt . + . + . + . + . + "maintained by"@en . + "gewartet von"@de . + . + . + . + . + . + . + "station EVA duration (s)"@en . + . + . + . + . + . + "source mountain"@en . + . + . + . + . + . + "parliament type"@en . + . + . + . + . + . + "mir dockings"@en . + . + . + . + . + . + "Believers"@en . + "Gl\u00E4ubige"@de . + . + . + . + . + . + "horse riding discipline"@en . + . + . + . + . + . + "Member of Parliament"@en . + "Abgeordnete"@de . + . + . + . + . + . + "human development index as of"@en . + "\u00CDndice de desenvolvimento humano em"@pt . + . + . + . + . + . + "publication"@en . + "Ver\u00F6ffentlichung"@de . + . + . + . + . + . + "winter appearances"@en . + "\u0437\u0438\u043C\u0441\u043A\u0438 \u043D\u0430\u0441\u0442\u0443\u043F\u0438"@sr . + . + . + . + . + . + . + "premiere date"@en . + "Date the play was first performed."@en . + . + . + . + . + . + . + "city link"@en . + . + . + . + . + . + "SELIBR Id"@en . + "Authority data from the National Library of Sweden"@en . + . + . + . + . + . + "administrative center"@en . + "Verwaltungszentrum"@de . + "\u0430\u0434\u043C\u0438\u043D\u0438\u0441\u0442\u0440\u0430\u0442\u0438\u0432\u043D\u0438 \u0446\u0435\u043D\u0442\u0430\u0440"@sr . + . + . + . + . + . + . + "bouwjaar"@nl . + "\u03AD\u03C4\u03BF\u03C2 \u03BA\u03B1\u03C4\u03B1\u03C3\u03BA\u03B5\u03C5\u03AE\u03C2"@el . + "\u0433\u043E\u0434\u0438\u043D\u0430 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0435"@sr . + "year of construction"@en . + "Baujahr"@de . + "The year in which construction of the Place was finished."@en . + "\u0413\u043E\u0434\u0438\u043D\u0430 \u043A\u0430\u0434\u0430 \u0458\u0435 \u0438\u0437\u0433\u0440\u0430\u0434\u045A\u0430 \u043D\u0435\u0447\u0435\u0433\u0430 \u0437\u0430\u0432\u0440\u0448\u0435\u043D\u0430."@sr . + "\u03A4\u03BF \u03AD\u03C4\u03BF\u03C2 \u03C3\u03C4\u03BF \u03BF\u03C0\u03BF\u03AF\u03BF \u03BF\u03BB\u03BF\u03BA\u03BB\u03B7\u03C1\u03CE\u03B8\u03B7\u03BA\u03B5 \u03B7 \u03BA\u03B1\u03C4\u03B1\u03C3\u03BA\u03B5\u03C5\u03AE \u03B5\u03BD\u03CC\u03C2 \u03BC\u03AD\u03C1\u03BF\u03C5\u03C2."@el . + . + . + . + . + . + "landeshauptmann"@en . + . + . + . + . + . + . + "area urban (m2)"@en . + "Stadtgebiet (m2)"@de . + "\u03B1\u03C3\u03C4\u03B9\u03BA\u03AE \u03C0\u03B5\u03C1\u03B9\u03BF\u03C7\u03AE (m2)"@el . + "\u0443\u0440\u0431\u0430\u043D\u0430 \u043F\u043E\u0432\u0440\u0448\u0438\u043D\u0430 (m2)"@sr . + . + . + . + . + . + "curator"@en . + "Kurator"@de . + "conservator"@nl . + . + . + . + . + . + . + "rodzina"@pl . + "familie"@nl . + "\u03BF\u03B9\u03BA\u03BF\u03B3\u03AD\u03BD\u03B5\u03B9\u03B1"@el . + "famille"@fr . + "family"@en . + "\u79D1_(\u5206\u985E\u5B66)"@ja . + "familie"@de . + . + . + . + . + . + . + . + "executive producer"@en . + "Ausf\u00FChrender Produzent"@de . + . + . + . + . + . + "transmission"@en . + "Getriebe"@de . + "\u03BC\u03B5\u03C4\u03AC\u03B4\u03BF\u03C3\u03B7"@el . + . + . + . + . + . + "personName"@en . + . + . + . + . + . + "number of participating female athletes"@en . + "Zahl der teilnehmenden Sportlerinnen"@de . + "\u03B1\u03C1\u03B9\u03B8\u03BC\u03CC\u03C2 \u03C3\u03C5\u03BC\u03BC\u03B5\u03C4\u03B5\u03C7\u03CC\u03BD\u03C4\u03C9\u03BD \u03B3\u03C5\u03BD\u03B1\u03B9\u03BA\u03CE\u03BD \u03B1\u03B8\u03BB\u03B7\u03C4\u03C1\u03B9\u03CE\u03BD"@el . + "nombre d'athl\u00E8tes participant f\u00E9minins"@fr . + . + . + . + . + . + "road start direction"@en . + "Himmelsrichtung des Wegstarts"@de . + "End of the route. For U.S. roads, this should be either \"South\" or \"West\" per the standards set by the U.S. Roads project."@en . + "Himmelsrichtung des Anfangs des Verkehrsweges."@de . + . + . + . + . + . + "final lost team"@en . + . + . + . + . + . + "meeting road"@en . + "zusammentreffende Stra\u00DFe"@de . + "A road that crosses another road at the junction."@en . + "Eine Stra\u00DFe die an der Kreuzung eine andere Stra\u00DFe kreuzt."@de . + . + . + . + . + . + . + "sport discipline"@en . + "Sportdisziplin"@de . + "discipline sportive"@fr . + "tak van sport"@nl . + "the sport discipline the athlete practices, e.g. Diving, or that a board member of a sporting club is focussing at"@en . + . + . + . + . + . + . + "wins at KLPGA"@en . + "\u043F\u043E\u0431\u0435\u0434\u0435 \u043D\u0430 KLPGA"@sr . + . + . + . + . + . + "film version"@en . + "verfilmd als"@nl . + . + . + . + . + . + "able to grind"@en . + "mahlenf\u00E4hig"@de . + "maalvaardig"@nl . + . + . + . + . + . + "highest place"@en . + "h\u00F6chster Platz"@de . + . + . + . + . + . + "canonized place"@en . + "heiligverklaring plaats"@nl . + . + . + . + . + . + . + "settlement"@en . + "Siedlung"@de . + "luogo abitato (insediamento)"@it . + . + . + . + . + . + . + . + "number of entrances"@en . + "Anzahl der Eing\u00E4nge"@de . + "\u03B1\u03C1\u03B9\u03B8\u03BC\u03CC\u03C2 \u03B5\u03B9\u03C3\u03CC\u03B4\u03C9\u03BD"@el . + "aantal ingangen"@nl . + . + . + . + . + . + "most successfull"@en . + "am erfolgreichsten"@de . + "en ba\u015Far\u0131l\u0131"@tr . + . + . + . + . + . + . + "sexual orientation"@en . + "sexuelle Orientierung"@de . + "orienta\u00E7\u00E3o sexual"@pt . + . + . + . + . + . + "senior"@en . + . + . + . + . + . + "value coordinate in the HSV colour space"@en . + . + . + . + . + . + "international affiliation"@en . + "afiliacao internacional"@pt . + . + . + . + . + . + "Penalties Team B"@en . + . + . + . + . + . + "character in play"@en . + "Name of a character in play."@en . + . + . + . + . + . + "size blazon"@en . + . + . + . + . + "area of water (m2)"@en . + "\u043F\u043E\u0432\u0440\u0448\u0438\u043D\u0430 \u0432\u043E\u0434\u0435 (m2)"@sr . + . + . + . + . + . + . + . + "torque output (Nm)"@en . + . + . + . + . + . + "number of episodes"@en . + "Anzahl der Episoden"@de . + "\u03B1\u03C1\u03B9\u03B8\u03BC\u03CC\u03C2 \u03B5\u03C0\u03B5\u03B9\u03B4\u03BF\u03B4\u03AF\u03C9\u03BD"@el . + . + . + . + . + . + . + "cannon number"@en . + . + . + . + . + . + "campus"@en . + "Campus"@de . + "\u03C0\u03B1\u03BD\u03B5\u03C0\u03B9\u03C3\u03C4\u03B7\u03BC\u03B9\u03BF\u03CD\u03C0\u03BF\u03BB\u03B7"@el . + "\u03A0\u03B1\u03BD\u03B5\u03C0\u03B9\u03C3\u03C4\u03B7\u03BC\u03B9\u03BF\u03CD\u03C0\u03BF\u03BB\u03B7 \u03B5\u03BD\u03BD\u03BF\u03B5\u03AF\u03C4\u03B1\u03B9 \u03BA\u03AC\u03B8\u03B5 \u03C0\u03BF\u03BB\u03B5\u03BF\u03B4\u03BF\u03BC\u03B9\u03BA\u03CC \u03C3\u03C5\u03B3\u03BA\u03C1\u03CC\u03C4\u03B7\u03BC\u03B1 \u03C0\u03BF\u03C5 \u03C0\u03C1\u03BF\u03C3\u03C6\u03AD\u03C1\u03B5\u03B9 \u03BF\u03B9\u03BA\u03B9\u03C3\u03C4\u03B9\u03BA\u03AD\u03C2, \u03B4\u03B9\u03B4\u03B1\u03BA\u03C4\u03B9\u03BA\u03AD\u03C2 \u03BA\u03B1\u03B9 \u03B5\u03C1\u03B5\u03C5\u03BD\u03B7\u03C4\u03B9\u03BA\u03AD\u03C2 \u03B4\u03B9\u03B5\u03C5\u03BA\u03BF\u03BB\u03CD\u03BD\u03C3\u03B5\u03B9\u03C2 \u03C3\u03C4\u03BF\u03C5\u03C2 \u03C6\u03BF\u03B9\u03C4\u03B7\u03C4\u03AD\u03C2 \u03B5\u03BD\u03CC\u03C2 \u03C0\u03B1\u03BD\u03B5\u03C0\u03B9\u03C3\u03C4\u03B7\u03BC\u03AF\u03BF\u03C5."@el . + . + . + . + . + . + "engine type"@en . + . + . + . + . + . + "mouth district"@en . + . + . + . + . + . + . + "prefect"@en . + "Pr\u00E4fekt"@de . + . + . + . + . + . + . + "source place"@en . + . + . + . + . + . + "bgafd id"@en . + "bgafd id"@el . + "c\u00F3digo no bgafd"@pt . + . + . + . + . + . + "limit"@en . + . + . + . + . + . + "silver medal single"@en . + "Silbermedaille Einzel"@de . + . + . + . + . + . + "wimbledon double"@en . + "\u0432\u0438\u043C\u0431\u043B\u0434\u043E\u043D \u0434\u0443\u0431\u043B"@sr . + . + . + . + . + . + "governor general"@en . + . + . + . + . + . + "population rural"@en . + . + . + . + . + . + "startdatum"@nl . + "date de d\u00E9but"@fr . + "fecha de inicio"@es . + "start date"@en . + "Startdatum"@de . + "The start date of the event."@en . + . + . + . + . + . + . + . + "former highschool"@en . + "ehemalige Highschool"@de . + . + . + . + . + . + . + "continental tournament"@en . + . + . + . + . + . + "silver medal mixed"@en . + "Silbermedaille gemischt"@de . + . + . + . + . + . + "canton"@en . + "Kanton"@de . + "kanton"@nl . + "canton"@fr . + . + . + . + . + . + . + "political party in legislature"@en . + "politische Partei in der Legislative"@de . + "Political party in the legislature (eg.: European People's Party in the European Parliament)."@en . + . + . + . + . + . + . + "Ariel Award"@en . + "Ariel Award"@el . + "ARIEL \u043D\u0430\u0433\u0440\u0430\u0434\u0430"@sr . + . + . + . + . + . + . + "amateur victory"@en . + "a\u043C\u0430\u0442\u0435\u0440\u0441\u043A\u0438\u0445 \u043F\u043E\u0431\u0435\u0434\u0430"@sr . + . + . + . + . + . + "refseq protein"@en . + "refseq protein"@ja . + . + . + . + . + . + "wha draft team"@en . + "WHA \u0442\u0438\u043C \u043A\u043E\u0458\u0438 \u0458\u0435 \u0434\u0440\u0430\u0444\u0442\u043E\u0432\u0430\u043E \u0438\u0433\u0440\u0430\u0447\u0430"@sr . + . + . + . + . + . + . + "person that first ascented a mountain"@en . + "Person , die zuerst einen Berg bestiegen hat"@de . + . + . + . + . + . + . + "total area ranking"@en . + "\u03C3\u03C5\u03BD\u03BF\u03BB\u03B9\u03BA\u03AE \u03C0\u03B5\u03C1\u03B9\u03BF\u03C7\u03AE"@el . + "\u0443\u043A\u0443\u043F\u043D\u0430 \u043F\u043E\u0432\u0440\u0448\u0438\u043D\u0430 \u0440\u0430\u043D\u0433"@sr . + . + . + . + . + . + "olympic games wins"@en . + "overwinningen op de Olympische Spelen"@nl . + . + . + . + . + . + "main domain"@en . + . + . + . + . + "skr\u00F3t"@pl . + "afkorting"@nl . + "\u03C3\u03C5\u03BD\u03C4\u03BF\u03BC\u03BF\u03B3\u03C1\u03B1\u03C6\u03AF\u03B1"@el . + "abr\u00E9viation"@fr . + "\u0441\u043A\u0440\u0430\u045B\u0435\u043D\u0438\u0446\u0430"@sr . + "abbreviation"@en . + "giorr\u00FAch\u00E1n"@ga . + "Abk\u00FCrzung"@de . + . + . + . + . + . + "year of first ascent"@en . + "Jahr der Erstbesteigung"@de . + "jaar van de eerste beklimming"@nl . + . + . + . + . + . + "route number"@en . + "Routennummer"@de . + "The number of the route."@en . + . + . + . + . + . + "secondPopularVote"@en . + . + . + . + . + . + "frequently updated"@en . + "h\u00E4ufig aktualisiert"@de . + . + . + . + . + . + "national team"@en . + "Nationalmannschaft"@de . + "nationaal team"@nl . + . + . + . + . + . + . + "film number"@en . + . + . + . + . + . + "co executive producer"@en . + . + . + . + . + . + . + "chain"@en . + "kette"@de . + "\u03B1\u03BB\u03C5\u03C3\u03AF\u03B4\u03B1"@el . + "The chain of Hotels this instance is associated with."@en . + . + . + . + . + . + . + "V_hb"@en . + . + . + . + . + . + "serving railway line"@en . + "spoorlijnen"@nl . + "angebundene Eisenbahnlinie"@de . + "Railway services that serve the station."@en . + . + . + . + . + . + "current city"@en . + "aktuelle Stadt"@de . + . + . + . + . + "continental tournament bronze"@en . + . + . + . + . + . + "architekt"@pl . + "architect"@nl . + "\u03B1\u03C1\u03C7\u03B9\u03C4\u03AD\u03BA\u03C4\u03BF\u03BD\u03B1\u03C2"@el . + "architecte"@fr . + "\u0430\u0440\u0445\u0438\u0442\u0435\u043A\u0442\u0430"@sr . + "architetto"@it . + "\u0430\u0440\u0445\u0438\u0442\u0435\u043A\u0442\u043E\u0440"@ru . + "architect"@en . + "ailtire"@ga . + "Architekt"@de . + . + . + . + . + . + . + . + "flag bearer"@en . + "Fahnentr\u00E4ger"@de . + . + . + . + . + . + . + "apoapsis (\u03BC)"@en . + "Apoapsisdistanz (\u03BC)"@de . + "\u03B1\u03C0\u03CC\u03B1\u03C8\u03B7\u03C2 (\u03BC)"@el . + "\u0430\u043F\u043E\u0430\u043F\u0441\u0438\u0441 (\u03BC)"@sr . + . + . + . + . + . + . + "breedte (\u03BC)"@nl . + "\u03C0\u03BB\u03AC\u03C4\u03BF\u03C2 (\u03BC)"@el . + "\u0448\u0438\u0440\u0438\u043D\u0430 (\u03BC)"@sr . + "ancho (\u03BC)"@es . + "width (\u03BC)"@en . + "Breite (\u03BC)"@de . + . + . + . + . + "minimum discharge (m\u00B3/s)"@en . + . + . + . + . + "capital place"@en . + . + . + . + . + . + . + "deputy"@en . + "Stellvertreter"@de . + . + . + . + . + . + "date when the island has been discovered"@en . + "Datum als die Insel entdeckt wurde"@de . + "datum waarop het eiland is ontdekt"@nl . + . + . + . + . + . + "lunar landing site"@en . + . + . + . + . + . + "is part of military conflict"@en . + "ist Teil des milit\u00E4rischen Konflikts"@de . + . + . + . + . + . + . + . + "school board"@en . + . + . + . + . + . + "component"@en . + "Komponente"@de . + . + . + . + . + . + . + "rebuilding date"@en . + . + . + . + . + . + "broadcast network"@en . + "Sendergruppe"@de . + "\u03C4\u03B7\u03BB\u03B5\u03BF\u03C0\u03C4\u03B9\u03BA\u03CC \u03BA\u03B1\u03BD\u03AC\u03BB\u03B9"@el . + "cha\u00EEne de t\u00E9l\u00E9vision g\u00E9n\u00E9raliste"@fr . + "The parent broadcast network to which the broadcaster belongs."@en . + "Die Sendergruppe zu dem der Rundfunkveranstalter geh\u00F6rt."@de . + . + . + . + . + . + . + "decommissioning date"@en . + "fecha de baja de servicio"@es . + . + . + . + . + . + "military command"@en . + "Milit\u00E4rkommando"@de . + "For persons who are notable as commanding officers, the units they commanded. Dates should be given if multiple notable commands were held."@en . + . + . + . + . + . + "number of settlement"@en . + "Zahl der Siedlungen"@de . + . + . + . + . + . + "full competition"@en . + . + . + . + . + . + "introduction date"@en . + "Einf\u00FChrungsdatum"@de . + . + . + . + . + . + "population density rural (/sqkm)"@en . + . + . + . + . + . + "longName"@en . + "volledige naam"@nl . + . + . + . + . + "destination"@en . + "Ziel"@de . + "\u03C0\u03C1\u03BF\u03BF\u03C1\u03B9\u03C3\u03BC\u03CC\u03C2"@el . + . + . + . + . + . + . + "team manager"@en . + "Team-Manager"@de . + . + . + . + . + . + . + "market capitalisation ($)"@en . + "Marktkapitalisierung ($)"@de . + . + . + . + . + . + "appointer"@en . + . + . + . + . + . + "tor floor height"@en . + "H\u00F6he der h\u00F6chsten Etage"@de . + . + . + . + . + . + "year of elevation into the nobility"@en . + "Jahr der Erhebung in den Adelsstand"@de . + "jaar van verheffing in de adelstand"@nl . + . + . + . + . + . + "ethnic groups in year"@en . + . + . + . + . + "firstLeader"@en . + "\u03C0\u03C1\u03CE\u03C4\u03BF\u03C2 \u03B7\u03B3\u03AD\u03C4\u03B7\u03C2"@el . + . + . + . + . + . + "battle honours"@en . + . + . + . + . + . + "clip up number"@en . + . + . + . + . + . + "chairperson"@en . + "Vorsitzender"@de . + "voorzitter"@nl . + . + . + . + . + . + . + "first publication year"@en . + "Jahr der Erstausgabe"@de . + "\u03C0\u03C1\u03CE\u03C4\u03BF \u03AD\u03C4\u03BF\u03C2 \u03B4\u03B7\u03BC\u03BF\u03C3\u03AF\u03B5\u03C5\u03C3\u03B7\u03C2"@el . + "Year of the first publication."@en . + "Jahr der ersten Ver\u00F6ffentlichung des Periodikums."@de . + "\u0388\u03C4\u03BF\u03C2 \u03C4\u03B7\u03C2 \u03C0\u03C1\u03CE\u03C4\u03B7\u03C2 \u03B4\u03B7\u03BC\u03BF\u03C3\u03AF\u03B5\u03C5\u03C3\u03B7\u03C2."@el . + . + . + . + . + . + "kolor oczu"@pl . + "\u03C7\u03C1\u03CE\u03BC\u03B1 \u03BC\u03B1\u03C4\u03B9\u03BF\u03CD"@el . + "cor dos olhos"@pt . + "eye color"@en . + "dath s\u00FAile"@ga . + "Augenfarbe"@de . + . + . + . + . + . + . + . + "partial failed launches"@en . + "total number of launches resulting in partial failure"@en . + . + . + . + . + "dead in fight place"@en . + . + . + . + . + . + "jutsu"@en . + . + . + . + . + . + "name day"@en . + "\u03BF\u03BD\u03BF\u03BC\u03B1\u03C3\u03C4\u03B9\u03BA\u03AE \u03B5\u03BF\u03C1\u03C4\u03AE"@el . + "imieniny"@pl . + . + . + . + . + . + "mill code NL"@en . + "molen code NL"@nl . + . + . + . + . + . + "shoe size"@en . + "Schuhgr\u00F6\u00DFe"@de . + "schoenmaat"@nl . + "n\u00FAmero do sapato"@pt . + . + . + . + . + . + "gene location end"@en . + "locus eindpunt"@nl . + "\u907A\u4F1D\u5B50\u5EA7\u306E\u30A8\u30F3\u30C9\u5EA7\u6A19"@ja . + "the end of the gene"@en . + . + . + . + . + . + "champion in double"@en . + "kampioen dubbel"@nl . + "champion en double"@fr . + "Campe\u00F3n en doble"@es . + "winner of a competition in the double session (as in tennis)"@en . + . + . + . + . + . + . + . + "biggest city"@en . + "gr\u00F6\u00DFte Stadt"@de . + . + . + . + . + . + "games"@en . + "Spiele"@de . + "\u03B1\u03B3\u03CE\u03BD\u03B5\u03C2"@el . + . + . + . + . + . + "continental tournament gold"@en . + . + . + . + . + . + "locationName"@en . + "Location of the thing as string. Use \"location\" if the location is a resource"@en . + . + . + . + . + "pro period"@en . + . + . + . + . + . + "sire"@en . + . + . + . + . + . + . + "value"@en . + "Wert"@de . + "\u0432\u0440\u0435\u0434\u043D\u043E\u0441\u0442"@sr . + . + . + . + . + "zeges"@nl . + "\u03BD\u03AF\u03BA\u03B5\u03C2"@el . + "\u043F\u043E\u0431\u0435\u0434\u0435"@sr . + "wins"@en . + "Siege"@de . + . + . + . + . + . + . + "fuel consumption"@en . + "\u03BA\u03B1\u03C4\u03B1\u03BD\u03AC\u03BB\u03C9\u03C3\u03B7 \u03BA\u03B1\u03C5\u03C3\u03AF\u03BC\u03BF\u03C5"@el . + "Kraftstoffverbrauch"@de . + "brandstofverbruik"@nl . + . + . + . + . + . + "long distance piste number"@en . + . + . + . + . + . + "mascot"@en . + "Maskottchen"@de . + "mascote"@pt . + "mascotte"@fr . + "something, especially a person or animal, used to symbolize a sports team, company, organization or other group."@en . + "Animal, poup\u00E9e, objets divers servant de porte-bonheur ou d\u2019embl\u00E8me."@fr . + . + . + . + . + "project budget total ($)"@en . + "Gesamtprojektbudget ($)"@de . + "The total budget of the research project."@en . + . + . + . + . + . + "okres uk\u0142adu okresowego"@pl . + "\u043F\u0435\u0440\u0438\u043E\u0434 \u043F\u0435\u0440\u0438\u043E\u0434\u0438\u0447\u0435\u0441\u043A\u043E\u0439 \u0442\u0430\u0431\u043B\u0438\u0446\u044B"@ru . + "element period"@en . + "peiriad an t\u00E1bla pheiriadaigh"@ga . + "per\u00EDode de la taula peri\u00F2dica"@ca . + "Periode des Periodensystems"@de . + "In the periodic table of the elements, elements are arranged in a series of rows (or periods) so that those with similar properties appear in a column."@en . + "En la taula peri\u00F2dica dels elements, un per\u00EDode \u00E9s una filera de la taula"@ca . + "Unter einer Periode des Periodensystems versteht man in der Chemie jede Zeile des Periodensystems der Elemente."@de . + "\u0441\u0442\u0440\u043E\u043A\u0430 \u043F\u0435\u0440\u0438\u043E\u0434\u0438\u0447\u0435\u0441\u043A\u043E\u0439 \u0441\u0438\u0441\u0442\u0435\u043C\u044B \u0445\u0438\u043C\u0438\u0447\u0435\u0441\u043A\u0438\u0445 \u044D\u043B\u0435\u043C\u0435\u043D\u0442\u043E\u0432, \u043F\u043E\u0441\u043B\u0435\u0434\u043E\u0432\u0430\u0442\u0435\u043B\u044C\u043D\u043E\u0441\u0442\u044C \u0430\u0442\u043E\u043C\u043E\u0432 \u043F\u043E \u0432\u043E\u0437\u0440\u0430\u0441\u0442\u0430\u043D\u0438\u044E \u0437\u0430\u0440\u044F\u0434\u0430 \u044F\u0434\u0440\u0430 \u0438 \u0437\u0430\u043F\u043E\u043B\u043D\u0435\u043D\u0438\u044E \u044D\u043B\u0435\u043A\u0442\u0440\u043E\u043D\u0430\u043C\u0438 \u0432\u043D\u0435\u0448\u043D\u0435\u0439 \u044D\u043B\u0435\u043A\u0442\u0440\u043E\u043D\u043D\u043E\u0439 \u043E\u0431\u043E\u043B\u043E\u0447\u043A\u0438."@ru . + . + . + . + . + . + "left tributary"@en . + "linker Nebenfluss"@de . + "\u03B1\u03C1\u03B9\u03C3\u03C4\u03B5\u03C1\u03BF\u03AF_\u03C0\u03B1\u03C1\u03B1\u03C0\u03CC\u03C4\u03B1\u03BC\u03BF\u03B9"@el . + . + . + . + . + . + . + "shoots"@en . + . + . + . + . + . + "\u03CC\u03BD\u03BF\u03BC\u03B1 \u03C7\u03C1\u03CE\u03BC\u03B1\u03C4\u03BF\u03C2"@el . + "nom de couleur"@fr . + "colour name"@en . + "\u8272\u540D"@ja . + "Farbenname"@de . + "A colour represented by a string holding its name (e.g.: red or green)."@en . + "\u0388\u03BD\u03B1 \u03C7\u03C1\u03CE\u03BC\u03B1 \u03C0\u03BF\u03C5 \u03B1\u03BD\u03B1\u03C0\u03B1\u03C1\u03AF\u03C3\u03C4\u03B1\u03C4\u03B1\u03B9 \u03B1\u03C0\u03CC \u03BC\u03B9\u03B1 \u03B1\u03BA\u03BF\u03BB\u03BF\u03C5\u03B8\u03AF\u03B1 \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03AE\u03C1\u03C9\u03BD \u03C0\u03BF\u03C5 \u03B1\u03BD\u03C4\u03B9\u03C0\u03C1\u03BF\u03C3\u03C9\u03C0\u03B5\u03CD\u03B5\u03B9 \u03C4\u03BF \u03CC\u03BD\u03BF\u03BC\u03AC \u03C4\u03BF\u03C5 (\u03C0.\u03C7.: \u03BA\u03CC\u03BA\u03BA\u03B9\u03BD\u03BF \u03AE \u03C0\u03C1\u03AC\u03C3\u03B9\u03BD\u03BF)."@el . + . + . + . + . + "start year of sales"@en . + . + . + . + . + . + "introduced"@en . + "eingef\u00FChrt"@de . + . + . + . + . + . + "autonomy"@en . + "Autonomie"@de . + "\u03B1\u03C5\u03C4\u03BF\u03BD\u03BF\u03BC\u03AF\u03B1"@el . + . + . + . + "Modus the game can be played in"@en . + . + . + . + . + "population quote"@en . + . + . + . + . + . + "initally used for"@en . + "anf\u00E4nglich verwendet"@de . + "usage initial"@fr . + "uso inicial"@es . + "Initial use of the architectural structure."@en . + . + . + . + . + . + "most down point of a norwegian settlement"@en . + . + . + . + . + . + . + "day"@en . + "Tag"@de . + "\u03B7\u03BC\u03AD\u03C1\u03B1"@el . + "jour"@fr . + . + . + . + . + . + "film"@nl . + "\u03C4\u03B1\u03B9\u03BD\u03AF\u03B1"@el . + "film"@fr . + "film"@en . + "film"@de . + . + . + . + . + . + . + "Golden Calf Award"@en . + . + . + . + . + . + . + "trustee"@en . + "Treuh\u00E4nder"@de . + . + . + . + . + . + . + "other name"@en . + "anderer Name"@de . + . + . + . + . + . + "selection year"@en . + "Auswahljahr"@de . + . + . + . + . + . + "olympic games gold"@en . + "goud op de Olympische Spelen"@nl . + . + . + . + . + . + "commissioning date"@en . + "fecha de entrada en servicio"@es . + . + . + . + . + . + "minimum area"@en . + "Mindestfl\u00E4che"@de . + . + . + . + . + . + "playing time (s)"@en . + "Spielzeit (s)"@de . + "speeltijd (s)"@nl . + . + . + . + . + "super-family"@en . + "superfamilie"@nl . + . + . + . + . + . + "function start year"@en . + . + . + . + . + . + "gallery item"@en . + "Galerieelement"@de . + "A file contained in a gallery"@en . + . + . + . + . + . + "capital mountain"@en . + . + . + . + . + . + . + "decoration"@en . + . + . + . + . + "volume (\u03BC\u00B3)"@nl . + "\u03CC\u03B3\u03BA\u03BF\u03C2 (\u03BC\u00B3)"@el . + "volume (\u03BC\u00B3)"@fr . + "\u0437\u0430\u043F\u0440\u0435\u043C\u0438\u043D\u0430 (\u03BC\u00B3)"@sr . + "volume (\u03BC\u00B3)"@en . + "Volumen (\u03BC\u00B3)"@de . + . + . + . + . + "stellar classification"@en . + "spectraalklasse"@nl . + . + . + . + . + . + "Wikipage modification datetime"@en . + "Reserved for DBpedia ''''''"@en . + . + . + . + . + "growing grape"@en . + . + . + . + . + . + . + "instrument"@en . + "Instrument"@de . + "\u03CC\u03C1\u03B3\u03B1\u03BD\u03BF"@el . + "instrument"@nl . + . + . + . + . + . + . + . + "place of worship"@en . + "Kultst\u00E4tte"@de . + "gebedsplaats"@nl . + "A religious administrative body needs to know which places of worship it"@en . + "Een kerkelijke organisatie houdt bij welke gebedshuizen ze heeft"@nl . + . + . + . + . + . + . + "trainer years"@en . + "trainersjaren"@nl . + . + . + . + . + . + "production end year"@en . + "productie eindjaar"@nl . + . + . + . + . + "acting headteacher"@en . + "\u03B4\u03B9\u03B5\u03C5\u03B8\u03C5\u03BD\u03C4\u03AE\u03C2 \u03C3\u03C7\u03BF\u03BB\u03B5\u03AF\u03BF\u03C5"@el . + "\u0432\u0434 \u0448\u0435\u0444\u0430 \u043D\u0430\u0441\u0442\u0430\u0432\u0435"@sr . + . + . + . + . + . + . + "\u03C4\u03CD\u03C0\u03BF\u03C2 \u03BC\u03CD\u03BB\u03BF\u03C5"@el . + "mill type"@en . + "molen-type"@nl . + . + . + . + . + . + "Peabody Award"@en . + . + . + . + . + . + . + "koled\u017C"@pl . + "\u03BA\u03BF\u03BB\u03BB\u03AD\u03B3\u03B9\u03BF"@el . + "haute \u00E9cole"@fr . + "college"@en . + "College"@de . + . + . + . + . + . + . + "bridge carries"@en . + "\u03B3\u03AD\u03C6\u03C5\u03C1\u03B1 \u03BC\u03B5\u03C4\u03B1\u03C6\u03BF\u03C1\u03AC\u03C2"@el . + "Type of vehicles the bridge carries."@en . + . + . + . + . + . + "archipel"@nl . + "\u03B1\u03C1\u03C7\u03B9\u03C0\u03AD\u03BB\u03B1\u03B3\u03BF\u03C2"@el . + "\u0430\u0440\u0445\u0438\u043F\u0435\u043B\u0430\u0433"@sr . + "archipelago"@en . + "Archipel"@de . + . + . + . + . + . + "kind of criminal action"@en . + . + . + . + . + . + "primary fuel type"@en . + . + . + . + . + "short prog competition"@en . + . + . + . + . + . + "other"@en . + . + . + . + . + . + "mayor councillor"@en . + . + . + . + . + "located in area"@en . + "landstreek"@nl . + . + . + . + . + . + . + . + . + "ski piste number"@en . + "Skipistennummer"@de . + . + . + . + . + . + "date of burial"@en . + "Datum der Beerdigung"@de . + "datum begrafenis"@nl . + . + . + . + . + . + "ICDO"@en . + "ICDO"@nl . + . + . + . + . + . + "number of launches"@en . + "Anzahl von Starts"@de . + . + . + . + . + . + "construction material"@en . + "\u03C5\u03BB\u03B9\u03BA\u03CC \u03BA\u03B1\u03C4\u03B1\u03C3\u03BA\u03B5\u03C5\u03AE\u03C2"@el . + "bouwmateriaal"@nl . + "Baumaterial"@de . + "Construction material (eg. concrete, steel, iron, stone, brick, wood)."@en . + . + . + . + . + . + . + . + "displacement (\u03BC\u00B3)"@en . + "cilindrada (\u03BC\u00B3)"@es . + . + . + . + . + . + "project type"@en . + "Projekttyp"@de . + "The type of the research project. Mostly used for the funding schemes of the European Union, for instance: Specific Targeted Research Projects (STREP), Network of Excellence (NoE) or Integrated Project."@en . + . + . + . + . + . + "buildingType"@en . + "\u03A4\u03CD\u03C0\u03BF\u03C2 \u03BA\u03C4\u03B9\u03C1\u03AF\u03BF\u03C5"@el . + "soort gebouw"@nl . + "Type is too general. We should be able to distinguish types of music from types of architecture"@en . + "Type is te algemeen. We moeten soorten muziek van soorten gebouwen kunnen onderscheiden"@nl . + "\u039F \u03C4\u03CD\u03C0\u03BF\u03C2 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03C0\u03BF\u03BB\u03CD \u03B3\u03B5\u03BD\u03B9\u03BA\u03CC.\u0398\u03B1 \u03C0\u03C1\u03AD\u03C0\u03B5\u03B9 \u03BD\u03B1 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03C3\u03B5 \u03B8\u03AD\u03C3\u03B7 \u03BD\u03B1 \u03B4\u03B9\u03B1\u03BA\u03C1\u03AF\u03BD\u03BF\u03C5\u03BD \u03C4\u03B1 \u03B5\u03AF\u03B4\u03B7 \u03C4\u03B7\u03C2 \u03BC\u03BF\u03C5\u03C3\u03B9\u03BA\u03AE\u03C2 \u03B1\u03C0\u03CC \u03C4\u03BF\u03C5\u03C2 \u03C4\u03CD\u03C0\u03BF\u03C5\u03C2 \u03C4\u03B7\u03C2 \u03B1\u03C1\u03C7\u03B9\u03C4\u03B5\u03BA\u03C4\u03BF\u03BD\u03B9\u03BA\u03AE\u03C2"@el . + . + . + . + . + . + "reign"@en . + . + . + . + . + . + "date disappearance of a populated place"@en . + . + . + . + . + . + "City district code"@en . + . + . + . + . + . + "mountain range"@en . + "Gebirge"@de . + "bergketen"@nl . + . + . + . + . + . + . + "final publication year"@en . + "Jahr der finalen Ausgabe"@de . + "Year of the final publication."@en . + "Jahr der allerletzten Ver\u00F6ffentlichung des Periodikums."@de . + . + . + . + . + . + "east place"@en . + "lieu \u00E0 l'est"@fr . + "indique un autre lieu situ\u00E9 \u00E0 l'est."@fr . + "indicates another place situated east."@en . + . + . + . + . + . + . + "costume designer"@en . + "costumista"@it . + "the person who is responsible for the film costume design"@en . + . + . + . + . + . + . + "religious head label"@en . + . + . + . + . + . + "distance (\u03BC)"@en . + "Entfernung (\u03BC)"@de . + . + . + . + . + "davis cup"@en . + . + . + . + . + . + "first pro match"@en . + "erstes Profispiel"@de . + . + . + . + . + . + "black coordinate in the CMYK space"@en . + . + . + . + . + . + "a municipality's new name"@en . + "neuer Name einer Gemeinde"@de . + "nieuwe gemeentenaam"@nl . + . + . + . + . + . + "motto"@nl . + "\u03C3\u03CD\u03BD\u03B8\u03B7\u03BC\u03B1"@el . + "devise"@fr . + "lema"@pt . + "motto"@en . + "Motto"@de . + . + . + . + . + "Footedness"@en . + "habilidade com o p\u00E9"@pt . + "a preference to put one's left or right foot forward in surfing, wakeboarding, skateboarding, wakeskating, snowboarding and mountainboarding. The term is sometimes applied to the foot a footballer uses to kick."@en . + . + . + . + . + . + "death cause"@en . + "doodsoorzaak"@nl . + "Todesursache"@de . + "\u03B1\u03B9\u03C4\u03AF\u03B1_\u03B8\u03B1\u03BD\u03AC\u03C4\u03BF\u03C5"@el . + . + . + . + . + . + . + "patent"@en . + "Patent"@de . + "patente"@pt . + . + . + . + . + . + "pole"@en . + "Pol"@de . + . + . + . + . + "oldcode"@en . + . + . + . + . + . + "decay"@en . + "\u03B1\u03C0\u03BF\u03C3\u03CD\u03BD\u03B8\u03B5\u03C3\u03B7"@el . + . + . + . + . + . + "predecessor"@en . + "voorganger"@nl . + "Vorg\u00E4nger"@de . + "\u524D\u4EFB\u8005"@ja . + . + . + . + . + "NSSDC ID"@en . + . + . + . + . + . + "iafd id"@en . + "iafd id"@el . + "c\u00F3digo no iafd"@pt . + . + . + . + . + . + "showJudge"@en . + . + . + . + . + . + . + "duur (s)"@nl . + "\u03B4\u03B9\u03AC\u03C1\u03BA\u03B5\u03B9\u03B1 (s)"@el . + "dur\u00E9e (s)"@fr . + "runtime (s)"@en . + "Laufzeit (s)"@de . + . + . + . + . + . + . + "strefa czasowa"@pl . + "tijdzone"@nl . + "\u03B6\u03CE\u03BD\u03B7_\u03CE\u03C1\u03B1\u03C21"@el . + "fuseau horaire"@fr . + "fuso horario"@pt . + "huso horario"@es . + "time zone"@en . + "zona hor\u00E0ria"@ca . + "Zeitzone"@de . + . + . + . + . + . + "ranking wins"@en . + "Siege in Ranglistenturnieren"@de . + . + . + . + . + . + . + "performer"@en . + "K\u00FCnstler"@de . + . + . + . + . + . + . + "closing date"@en . + "\u03B7\u03BC\u03B5\u03C1\u03BF\u03BC\u03B7\u03BD\u03AF\u03B1 \u03BA\u03BB\u03B5\u03B9\u03C3\u03AF\u03BC\u03B1\u03C4\u03BF\u03C2"@el . + "date de fermeture"@fr . + . + . + . + . + "borough"@en . + "Bezirk"@de . + "\u03B4\u03AE\u03BC\u03BF\u03C2"@el . + "stadsdeel"@nl . + . + . + . + . + . + . + "agglomeration area"@en . + "Ballungsraum"@de . + "\u043E\u0431\u043B\u0430\u0441\u0442 \u0430\u0433\u043B\u043E\u043C\u0435\u0440\u0430\u0446\u0438\u0458\u0435"@sr . + . + . + . + . + . + "highschool"@en . + "Gymnasium"@de . + . + . + . + . + . + "cyanic coordinate in the CMYK space"@en . + . + . + . + . + . + "wins at sun"@en . + "\u043F\u043E\u0431\u0435\u0434\u0435 \u043D\u0430 SUN"@sr . + . + . + . + . + . + . + "power output (W)"@en . + "Ausgangsleistung (W)"@de . + . + . + . + . + . + "building end year"@en . + "bouw eindjaar"@nl . + "\u03AD\u03C4\u03BF\u03C2 \u03BB\u03AE\u03BE\u03B7\u03C2 \u03BA\u03B1\u03C4\u03B1\u03C3\u03BA\u03B5\u03C5\u03AE\u03C2"@el . + . + . + . + . + . + "Indicates an annotation associated with this document"@en . + . + . + . + . + . + "maximum depth (\u03BC)"@en . + "maximale Tiefe (\u03BC)"@de . + "\u03BC\u03AD\u03B3\u03B9\u03C3\u03C4\u03BF_\u03B2\u03AC\u03B8\u03BF\u03C2 (\u03BC)"@el . + . + . + . + . + . + "rank of a population"@en . + . + . + . + . + . + "event period"@en . + "Veranstaltungsdauer"@de . + "periode"@nl . + "p\u00E9riode"@fr . + . + . + . + "notableIdea"@en . + . + . + . + . + . + "unique reference number (URN)"@en . + "DfE unique reference number of a school in England or Wales"@en . + . + . + . + . + . + "comitat of a settlement"@en . + . + . + . + . + . + "stylistic origin"@en . + "stilistische Herkunft"@de . + "origens estil\u00EDsticas"@pt . + . + . + . + . + . + . + "liczba atomowa"@pl . + "atoomnummer"@nl . + "atomic number"@en . + "uimhir adamhach"@ga . + "Ordnungszahl"@de . + "liczba okre\u015Blaj\u0105ca, ile proton\u00F3w znajduje si\u0119 w j\u0105drze danego atomu"@pl . + "het atoomnummer of atoomgetal (symbool: Z) geeft het aantal protonen in de kern van een atoom aan."@nl . + "the ratio of the average mass of atoms of an element (from a single given sample or source) to 1\u204412 of the mass of an atom of carbon-12"@en . + "Is eard is uimhir adamhach (Z) adaimh ann n\u00E1 l\u00EDon na bpr\u00F3t\u00F3n i n\u00FAicl\u00E9as an adaimh sin"@ga . + "die Anzahl der Protonen im Atomkern eines chemischen Elements, deshalb auch Protonenzahl."@de . + . + . + . + . + . + . + "leadership"@en . + "F\u00FChrung"@de . + . + . + . + . + . + "penalty score"@en . + . + . + . + . + . + "sentence"@en . + "Satz"@de . + . + . + . + . + . + "spacestation"@en . + "raumstation"@de . + "space station that has been visited during a space mission"@en . + "Raumstation, die w\u00E4hrend einer Raummission besucht wurde"@de . + . + . + . + . + . + "netnummer"@nl . + "\u03BA\u03C9\u03B4\u03B9\u03BA\u03CC\u03C2_\u03C0\u03B5\u03C1\u03B9\u03BF\u03C7\u03AE\u03C2"@el . + "\u043F\u043E\u0437\u0438\u0432\u043D\u0438 \u0431\u0440\u043E\u0458"@sr . + "\u043C\u0435\u0441\u0442\u043D\u044B\u0439 \u0442\u0435\u043B\u0435\u0444\u043E\u043D\u043D\u044B\u0439 \u043A\u043E\u0434"@ru . + "area code"@en . + "Vorwahl"@de . + "Area code for telephone numbers. Use this not phonePrefix"@en . + . + . + . + . + . + . + "cooling system"@en . + "K\u00FChlsystem"@de . + . + . + . + . + . + "free"@en . + . + . + . + . + . + "pastor"@en . + . + . + . + . + . + . + "SIMC code"@en . + "indexing code used by the Polish National Official Register of the Territorial Division of the Country (TERYT) to identify various entities"@en . + . + . + . + . + . + "designer company"@en . + . + . + . + . + . + . + "engine"@en . + "Motor"@de . + "\u03BC\u03B7\u03C7\u03B1\u03BD\u03AE"@el . + "motor"@pt . + . + . + . + . + . + . + "AFI Award"@en . + "\u03B2\u03C1\u03B1\u03B2\u03B5\u03AF\u03BF AFI"@el . + "AFI \u043D\u0430\u0433\u0440\u0430\u0434\u0430"@sr . + . + . + . + . + . + . + "endangered since"@en . + "gef\u00E4hrdet seit"@de . + "em perigo desde"@pt . + . + . + . + . + . + "prove code"@en . + . + . + . + . + . + "announcedFrom"@en . + . + . + . + . + . + "watercourse"@en . + "Wasserlauf"@de . + "\u0432\u043E\u0434\u043E\u0442\u043E\u043A"@sr . + . + . + . + . + . + "issn"@en . + "ISSN"@nl . + "issn"@el . + "ISSN"@de . + "International Standard Serial Number (ISSN)"@en . + . + . + . + . + . + "Dutch RKD code"@en . + "Code Rijksbureau voor Kunsthistorische Documentatie"@nl . + . + . + . + . + . + "lethal when given to rabbits"@en . + "dodelijk voor konijnen"@nl . + . + . + . + . + . + "height above average terrain (\u03BC)"@en . + . + . + . + . + . + "producent"@pl . + "producent"@nl . + "\u03C0\u03B1\u03C1\u03B1\u03B3\u03C9\u03B3\u03CC\u03C2"@el . + "producer"@en . + "Produzent"@de . + "The producer of the creative work."@en . + . + . + . + . + . + . + . + "railway line using tunnel"@en . + "Tunnel benutzende Eisenbahnlinie"@de . + "Railway line that is using the tunnel."@en . + . + . + . + . + . + "piscicultural population"@en . + . + . + . + . + . + "created"@en . + "erstellt"@de . + . + . + . + . + . + "ChEBI"@en . + "A unique identifier for the drug in the Chemical Entities of Biological Interest (ChEBI) ontology"@en . + . + . + . + . + . + "relief"@en . + . + . + . + . + . + "digital channel"@en . + "Digitalkanal"@de . + "\u03A8\u03B7\u03C6\u03B9\u03B1\u03BA\u03CC \u03BA\u03B1\u03BD\u03AC\u03BB\u03B9"@el . + "\u0388\u03BD\u03B1 \u03C8\u03B7\u03C6\u03B9\u03B1\u03BA\u03CC \u03BA\u03B1\u03BD\u03AC\u03BB\u03B9 \u03B5\u03C0\u03B9\u03C4\u03C1\u03AD\u03C0\u03B5\u03B9 \u03C4\u03B7\u03BD \u03BC\u03B5\u03C4\u03AC\u03B4\u03BF\u03C3\u03B7 \u03B4\u03B5\u03B4\u03BF\u03BC\u03AD\u03BD\u03C9\u03BD \u03C3\u03B5 \u03C8\u03B7\u03C6\u03B9\u03B1\u03BA\u03AE \u03BC\u03BF\u03C1\u03C6\u03AE."@el . + . + . + . + . + . + "\u03C4\u03CD\u03C0\u03BF\u03C2 \u03B1\u03B5\u03C1\u03BF\u03C3\u03BA\u03AC\u03C6\u03BF\u03C5\u03C2"@el . + "\u0442\u0438\u043F \u043B\u0435\u0442\u0435\u043B\u0438\u0446\u0435"@sr . + "tipo de avi\u00F3n"@es . + "aircraft type"@en . + "Flugzeugtyp"@de . + . + . + . + . + . + "leader title"@en . + "\u03C4\u03AF\u03C4\u03BB\u03BF\u03C2_\u03B1\u03C1\u03C7\u03B7\u03B3\u03BF\u03CD"@el . + . + . + . + . + . + "jure language"@en . + . + . + . + . + . + "urban area"@en . + "Stadtgebiet"@de . + "\u0443\u0440\u0431\u0430\u043D\u043E \u043F\u043E\u0434\u0440\u0443\u0447\u0458\u0435"@sr . + . + . + . + . + . + "prospect league"@en . + . + . + . + . + . + "beatified place"@en . + "zalig verklaard plaats"@nl . + . + . + . + . + . + . + "maiden voyage"@en . + . + . + . + . + . + "type of yeast"@en . + "Hefearte"@de . + "gistsoort"@nl . + . + . + . + . + . + "nominee"@en . + "Kandidat"@de . + . + . + . + . + . + "ept title"@en . + . + . + . + . + . + "month"@en . + "\u03BC\u03AE\u03BD\u03B1\u03C2"@el . + "Monat"@de . + . + . + . + . + "architectural movement"@en . + "Architekturbewegung"@de . + "\u0430\u0440\u0445\u0438\u0442\u0435\u043A\u0442\u043E\u043D\u0441\u043A\u0438 \u043F\u043E\u043A\u0440\u0435\u0442"@sr . + . + . + . + . + . + "destruction date"@en . + "sloopdatum"@nl . + "\u03B7\u03BC\u03B5\u03C1\u03BF\u03BC\u03B7\u03BD\u03AF\u03B1 \u03BA\u03B1\u03C4\u03B1\u03C3\u03C4\u03C1\u03BF\u03C6\u03AE\u03C2"@el . + . + . + . + . + "olympic oath sworn by judge"@en . + . + . + . + . + . + . + . + "reopening year"@en . + "heropening jaar"@nl . + "Year of reopening the architectural structure."@en . + . + . + . + . + . + "impact factor as of"@en . + "Impact Factor ist von"@de . + "Census year of the imapct factor."@en . + "Erhebungsjahr des Impact Factors."@de . + . + . + . + . + . + "number of members as of"@en . + "numero de membros em"@pt . + . + . + . + . + . + "chairman"@en . + "Vorsitzender"@de . + "\u03C0\u03C1\u03CC\u03B5\u03B4\u03C1\u03BF\u03C2"@el . + . + . + . + . + . + "ncaa season"@en . + . + . + . + . + . + "danse competition"@en . + . + . + . + . + . + "linguistics tradition"@en . + . + . + . + . + "note on place of burial"@en . + . + . + . + . + . + "product"@en . + "Produkt"@de . + "\u03C0\u03C1\u03BF\u03CA\u03CC\u03BD"@el . + . + . + . + . + . + "access"@en . + "Zugriff"@de . + "\u03C0\u03C1\u03CC\u03C3\u03B2\u03B1\u03C3\u03B7"@el . + "\u043F\u0440\u0438\u0441\u0442\u0443\u043F"@sr . + . + . + . + . + "American Comedy Award"@en . + "\u03B1\u03BC\u03B5\u03C1\u03B9\u03BA\u03AC\u03BD\u03B9\u03BA\u03BF \u03B2\u03C1\u03B1\u03B2\u03B5\u03AF\u03BF \u03BA\u03C9\u03BC\u03C9\u03B4\u03AF\u03B1\u03C2"@el . + "\u0430\u043C\u0435\u0440\u0438\u0447\u043A\u0430 \u043D\u0430\u0433\u0440\u0430\u0434\u0430 \u0437\u0430 \u043A\u043E\u043C\u0435\u0434\u0438\u0458\u0443"@sr . + . + . + . + . + . + . + "demolition date"@en . + "\u03B7\u03BC\u03B5\u03C1\u03BF\u03BC\u03B7\u03BD\u03AF\u03B1 \u03BA\u03B1\u03C4\u03B5\u03B4\u03AC\u03C6\u03B9\u03C3\u03B7\u03C2"@el . + "The date the building was demolished."@en . + . + . + . + . + . + "lunar sample mass (g)"@en . + . + . + . + . + . + "affiliate"@en . + . + . + . + . + . + "authority"@en . + "Beh\u00F6rde"@de . + "autoriteit"@nl . + "\u03B1\u03C1\u03C7\u03AE"@el . + . + . + . + . + "drains to"@en . + . + . + . + . + . + . + "film audio type"@en . + "specifies the audio type of the film i.e. 'sound' or 'silent'"@en . + . + . + . + . + . + "longtype"@en . + "can be used to include more informations e.g. the name of the artist that a tribute album is in honor of"@en . + . + . + . + . + . + "source confluence place"@en . + . + . + . + . + . + . + "parish"@en . + "Gemeinde"@de . + . + . + . + . + . + . + "campus size (m2)"@en . + . + . + . + . + . + "gender"@en . + "\u03C6\u03CD\u03BB\u03BF"@el . + "Geschlecht"@de . + "geslacht"@nl . + . + . + . + . + "head chef"@en . + "K\u00FCchenchef"@de . + "chef-kok"@nl . + . + . + . + . + . + . + "area rural (m2)"@en . + "\u03B1\u03B3\u03C1\u03BF\u03C4\u03B9\u03BA\u03AE \u03C0\u03B5\u03C1\u03B9\u03BF\u03C7\u03AE (m2)"@el . + "\u0440\u0443\u0440\u0430\u043B\u043D\u0430 \u043E\u0431\u043B\u0430\u0441\u0442 (m2)"@sr . + . + . + . + . + . + "related places"@en . + "soortgelijke plaatsen"@nl . + "This property is to accommodate the list field that contains a list of, e.g., monuments in the same town"@en . + "Deze property is voor de lijst van monumenten die horen bij het monument van de infobox"@nl . + . + . + . + . + . + . + "best year wsop"@en . + . + . + . + . + . + "wpt final table"@en . + "WPT \u0444\u0438\u043D\u0430\u043B\u0435"@sr . + . + . + . + . + . + "klasse"@nl . + "classe (biologie)"@fr . + "clase (biolog\u00EDa)"@es . + "classis"@en . + "\u7DB1_(\u5206\u985E\u5B66)"@ja . + "the living thing class (from the Latin \"classis\"), according to the biological taxonomy"@en . + "Troisi\u00E8me niveau de la classification classique (c\u2019est-\u00E0-dire n\u2019utilisant pas la notion de distance g\u00E9n\u00E9tique) des esp\u00E8ces vivantes (voir syst\u00E9matique)."@fr . + . + . + . + . + . + "decide date"@en . + . + . + . + . + . + "quotation"@en . + "Zitat"@de . + "citation"@fr . + "cita"@es . + "A quotation is the repetition of one expression as part of another one, particularly when the quoted expression is well-known or explicitly attributed by citation to its original source."@en . + "Une citation est la reproduction d'un court extrait d'un propos ou d'un \u00E9crit ant\u00E9rieur dans la r\u00E9daction d'un texte ou dans une forme d'expression orale."@fr . + "En su acepci\u00F3n m\u00E1s amplia, una cita es un recurso ret\u00F3rico que consiste en reproducir un fragmento de una expresi\u00F3n humana respetando su formulaci\u00F3n original."@es . + . + . + . + . + "previous infrastructure"@en . + "vorherige Infrastruktur"@de . + "vorige infrastructuur"@nl . + . + . + . + . + . + . + "draft league"@en . + . + . + . + . + . + "hair colour"@en . + "Haarfarbe"@de . + . + . + . + . + . + "school patron"@en . + . + . + . + . + . + "co producer"@en . + "Co-Produzent"@de . + . + . + . + . + . + . + "type of storage"@en . + "Art der Lagerung"@de . + "lagering"@nl . + . + . + . + . + . + "tvShow"@en . + "Fernsehsendung"@de . + . + . + . + . + . + . + "barangays"@en . + . + . + . + . + . + "manager years"@en . + . + . + . + . + . + "mainspan (\u03BC)"@en . + "port\u00E9e principale (\u03BC)"@fr . + "\u03BA\u03CD\u03C1\u03B9\u03B1 \u03BA\u03B1\u03BC\u03AC\u03C1\u03B1 (\u03BC)"@el . + . + . + . + . + . + "number of crew"@en . + "\u03B1\u03C1\u03B9\u03B8\u03BC\u03CC\u03C2 \u03C0\u03BB\u03B7\u03C1\u03CE\u03BC\u03B1\u03C4\u03BF\u03C2"@el . + "aantal bemanningsleden"@nl . + . + . + . + . + . + "average speed (kmh)"@en . + "Durchschnittsgeschwindigkeit (kmh)"@de . + "\u03BC\u03AD\u03C3\u03B7 \u03C4\u03B1\u03C7\u03CD\u03C4\u03B7\u03C4\u03B1 (kmh)"@el . + "The average speed of a thing."@en . + "\u0397 \u03BC\u03AD\u03C3\u03B7 \u03C4\u03B1\u03C7\u03CD\u03C4\u03B7\u03C4\u03B1 \u03B5\u03BD\u03CC\u03C2 \u03C0\u03C1\u03AC\u03B3\u03BC\u03B1\u03C4\u03BF\u03C2."@el . + . + . + . + . + "current status"@en . + "aktueller Status"@de . + "huidige status"@nl . + . + . + . + . + "is part of wine region"@en . + "ist ein Teil der Weinregion"@de . + . + . + . + . + . + . + . + "subgenus"@en . + "Untergattung"@de . + "ondergeslacht"@nl . + "A rank in the classification of organisms, below genus ; a taxon at that rank"@en . + . + . + . + . + . + "discharge average (m\u00B3/s)"@en . + . + . + . + . + . + "capacity"@en . + "Kapazit\u00E4t"@de . + "capacit\u00E9"@fr . + . + . + . + . + . + "aita code"@en . + "AITA \u043A\u043E\u0434"@sr . + . + . + . + . + "date closed"@en . + "\u03C4\u03B5\u03C1\u03BC\u03B1\u03C4\u03B9\u03C3\u03BC\u03CC\u03C2_\u03BB\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1\u03C2"@el . + . + . + . + . + . + "number of holes"@en . + . + . + . + . + . + "mill code NL"@en . + "molen code NL"@nl . + "mills code from the central Dutch database on mills"@en . + "unieke code voor molens in www.molendatabase.nl"@nl . + . + . + . + . + "lengte (mm)"@nl . + "\u03BC\u03AE\u03BA\u03BF\u03C2 (mm)"@el . + "longueur (mm)"@fr . + "length (mm)"@en . + "L\u00E4nge (mm)"@de . + . + . + . + "wheelbase (mm)"@en . + "Radstand (mm)"@de . + "\u043C\u0435\u0452\u0443\u043E\u0441\u043E\u0432\u0438\u043D\u0441\u043A\u043E \u0440\u0430\u0441\u0442\u043E\u0458\u0430\u045A\u0435 (mm)"@sr . + . + . + . + "total mass (kg)"@en . + "Gesamtmasse (kg)"@de . + . + . + . + "area urban (km2)"@en . + "Stadtgebiet (km2)"@de . + "\u03B1\u03C3\u03C4\u03B9\u03BA\u03AE \u03C0\u03B5\u03C1\u03B9\u03BF\u03C7\u03AE (km2)"@el . + "\u0443\u0440\u0431\u0430\u043D\u0430 \u043F\u043E\u0432\u0440\u0448\u0438\u043D\u0430 (km2)"@sr . + . + . + . + "lunar sample mass (kg)"@en . + . + . + . + "volume (km3)"@nl . + "\u03CC\u03B3\u03BA\u03BF\u03C2 (km3)"@el . + "volume (km3)"@fr . + "\u0437\u0430\u043F\u0440\u0435\u043C\u0438\u043D\u0430 (km3)"@sr . + "volume (km3)"@en . + "Volumen (km3)"@de . + . + . + . + "volume (\u03BC\u00B3)"@nl . + "\u03CC\u03B3\u03BA\u03BF\u03C2 (\u03BC\u00B3)"@el . + "volume (\u03BC\u00B3)"@fr . + "\u0437\u0430\u043F\u0440\u0435\u043C\u0438\u043D\u0430 (\u03BC\u00B3)"@sr . + "volume (\u03BC\u00B3)"@en . + "Volumen (\u03BC\u00B3)"@de . + . + . + . + "cargo water (kg)"@en . + . + . + . + "breedte (mm)"@nl . + "\u03C0\u03BB\u03AC\u03C4\u03BF\u03C2 (mm)"@el . + "\u0448\u0438\u0440\u0438\u043D\u0430 (mm)"@sr . + "ancho (mm)"@es . + "width (mm)"@en . + "Breite (mm)"@de . + . + . + . + "CO2 emission (g/km)"@en . + . + . + . + "mass (kg)"@en . + "Masse (kg)"@de . + "\u03BC\u03AC\u03B6\u03B1 (kg)"@el . + . + . + . + "hoogte (mm)"@nl . + "\u03CD\u03C8\u03BF\u03C2 (mm)"@el . + "hauteur (mm)"@fr . + "altura (mm)"@pt . + "height (mm)"@en . + "vi\u0161ina (mm)"@sl . + "\u8EAB\u9577 (mm)"@ja . + "H\u00F6he (mm)"@de . + . + . + . + "periapsis (km)"@en . + "Periapsisdistanz (km)"@de . + . + . + . + "mass (kg)"@en . + "Masse (kg)"@de . + "\u03BC\u03AC\u03B6\u03B1 (kg)"@el . + . + . + . + "gewicht (kg)"@nl . + "\u03B2\u03AC\u03C1\u03BF\u03C2 (kg)"@el . + "poids (kg)"@fr . + "peso (kg)"@pt . + "\u0442\u0435\u0436\u0438\u043D\u0430 (kg)"@sr . + "weight (kg)"@en . + "\u4F53\u91CD (kg)"@ja . + "Gewicht (kg)"@de . + . + . + . + "hoogte (mm)"@nl . + "\u03CD\u03C8\u03BF\u03C2 (mm)"@el . + "hauteur (mm)"@fr . + "altura (mm)"@pt . + "height (mm)"@en . + "vi\u0161ina (mm)"@sl . + "\u8EAB\u9577 (mm)"@ja . + "H\u00F6he (mm)"@de . + . + . + . + "docked time (\u03BC)"@en . + . + . + . + "apoapsis (km)"@en . + "Apoapsisdistanz (km)"@de . + "\u03B1\u03C0\u03CC\u03B1\u03C8\u03B7\u03C2 (km)"@el . + "\u0430\u043F\u043E\u0430\u043F\u0441\u0438\u0441 (km)"@sr . + . + . + . + "mass (kg)"@en . + "Masse (kg)"@de . + "\u03BC\u03AC\u03B6\u03B1 (kg)"@el . + . + . + . + "diameter (mm)"@nl . + "\u03B4\u03B9\u03AC\u03BC\u03B5\u03C4\u03C1\u03BF\u03C2 (mm)"@el . + "diam\u00E8tre (mm)"@fr . + "diameter (mm)"@en . + "Durchmesser (mm)"@de . + . + . + . + "original maximum boat length (\u03BC)"@en . + . + . + . + "station visit duration (\u03C9)"@en . + . + . + . + "cargo fuel (kg)"@en . + . + . + . + "minimum discharge (m\u00B3/s)"@en . + . + . + . + "periapsis (km)"@en . + "Periapsisdistanz (km)"@de . + . + . + . + "kookpunt (K)"@nl . + "\u03C3\u03B7\u03BC\u03B5\u03AF\u03BF \u03B2\u03C1\u03B1\u03C3\u03BC\u03BF\u03CD (K)"@el . + "point d'\u00E9bullition (K)"@fr . + "boiling point (K)"@en . + "\u6CB8\u70B9 (K)"@ja . + "Siedepunkt (K)"@de . + . + . + . + "breedte (mm)"@nl . + "\u03C0\u03BB\u03AC\u03C4\u03BF\u03C2 (mm)"@el . + "\u0448\u0438\u0440\u0438\u043D\u0430 (mm)"@sr . + "ancho (mm)"@es . + "width (mm)"@en . + "Breite (mm)"@de . + . + . + . + "breedte (mm)"@nl . + "\u03C0\u03BB\u03AC\u03C4\u03BF\u03C2 (mm)"@el . + "\u0448\u0438\u0440\u0438\u043D\u0430 (mm)"@sr . + "ancho (mm)"@es . + "width (mm)"@en . + "Breite (mm)"@de . + . + . + . + "apoapsis (km)"@en . + "Apoapsisdistanz (km)"@de . + "\u03B1\u03C0\u03CC\u03B1\u03C8\u03B7\u03C2 (km)"@el . + "\u0430\u043F\u043E\u0430\u043F\u0441\u0438\u0441 (km)"@sr . + . + . + . + "waterscheiding (km2)"@nl . + "\u03BB\u03B5\u03BA\u03AC\u03BD\u03B7_\u03B1\u03C0\u03BF\u03C1\u03C1\u03BF\u03AE\u03C2 (km2)"@el . + "cuenca hidrogr\u00E1fica (km2)"@es . + "watershed (km2)"@en . + "Wasserscheide (km2)"@de . + . + . + . + "mass (kg)"@en . + "Masse (kg)"@de . + "\u03BC\u03AC\u03B6\u03B1 (kg)"@el . + . + . + . + "gewicht (kg)"@nl . + "\u03B2\u03AC\u03C1\u03BF\u03C2 (kg)"@el . + "poids (kg)"@fr . + "peso (kg)"@pt . + "\u0442\u0435\u0436\u0438\u043D\u0430 (kg)"@sr . + "weight (kg)"@en . + "\u4F53\u91CD (kg)"@ja . + "Gewicht (kg)"@de . + . + . + . + "maximum boat length (\u03BC)"@en . + "\u03BC\u03AD\u03B3\u03B9\u03C3\u03C4\u03BF_\u03BC\u03AE\u03BA\u03BF\u03C2_\u03C0\u03BB\u03BF\u03AF\u03BF\u03C5 (\u03BC)"@el . + . + . + . + "mean temperature (K)"@en . + "Durchschnittstemperatur (K)"@de . + "\u03BC\u03AD\u03C3\u03B7 \u03B8\u03B5\u03C1\u03BC\u03BF\u03BA\u03C1\u03B1\u03C3\u03AF\u03B1 (K)"@el . + . + . + . + "area metro (km2)"@en . + "\u03C0\u03B5\u03C1\u03B9\u03BF\u03C7\u03AE \u03BC\u03B5\u03C4\u03C1\u03CC (km2)"@el . + "\u043C\u0435\u0442\u0440\u043E\u043F\u043E\u043B\u0441\u043A\u0430 \u043E\u0431\u043B\u0430\u0441\u0442 (km2)"@sr . + . + . + . + "time in space (m)"@en . + "Zeit im Raum (m)"@de . + . + . + . + "discharge average (m\u00B3/s)"@en . + . + . + . + "diameter (\u03BC)"@nl . + "\u03B4\u03B9\u03AC\u03BC\u03B5\u03C4\u03C1\u03BF\u03C2 (\u03BC)"@el . + "diam\u00E8tre (\u03BC)"@fr . + "diameter (\u03BC)"@en . + "Durchmesser (\u03BC)"@de . + . + . + . + "breedte (mm)"@nl . + "\u03C0\u03BB\u03AC\u03C4\u03BF\u03C2 (mm)"@el . + "\u0448\u0438\u0440\u0438\u043D\u0430 (mm)"@sr . + "ancho (mm)"@es . + "width (mm)"@en . + "Breite (mm)"@de . + . + . + . + "gewicht (kg)"@nl . + "\u03B2\u03AC\u03C1\u03BF\u03C2 (kg)"@el . + "poids (kg)"@fr . + "peso (kg)"@pt . + "\u0442\u0435\u0436\u0438\u043D\u0430 (kg)"@sr . + "weight (kg)"@en . + "\u4F53\u91CD (kg)"@ja . + "Gewicht (kg)"@de . + . + . + . + "population metro density (/sqkm)"@en . + "bevolkingsdichtheid (/sqkm)"@nl . + . + . + . + "lengte (mm)"@nl . + "\u03BC\u03AE\u03BA\u03BF\u03C2 (mm)"@el . + "longueur (mm)"@fr . + "length (mm)"@en . + "L\u00E4nge (mm)"@de . + . + . + . + "breedte (mm)"@nl . + "\u03C0\u03BB\u03AC\u03C4\u03BF\u03C2 (mm)"@el . + "\u0448\u0438\u0440\u0438\u043D\u0430 (mm)"@sr . + "ancho (mm)"@es . + "width (mm)"@en . + "Breite (mm)"@de . + . + . + . + "mass (kg)"@en . + "Masse (kg)"@de . + "\u03BC\u03AC\u03B6\u03B1 (kg)"@el . + . + . + . + "distance traveled (km)"@en . + "Zur\u00FCckgelegte Entfernung (km)"@de . + "afgelegde afstand (km)"@nl . + . + . + . + "cylinder bore (mm)"@en . + . + . + . + "population density (/sqkm)"@en . + "bevolkingsdichtheid (/sqkm)"@nl . + "Bev\u00F6lkerungsdichte (/sqkm)"@de . + "\u03C0\u03C5\u03BA\u03BD\u03CC\u03C4\u03B7\u03C4\u03B1_\u03C0\u03BB\u03B7\u03B8\u03C5\u03C3\u03BC\u03BF\u03CD (/sqkm)"@el . + . + . + . + "hoogte (mm)"@nl . + "\u03CD\u03C8\u03BF\u03C2 (mm)"@el . + "hauteur (mm)"@fr . + "altura (mm)"@pt . + "height (mm)"@en . + "vi\u0161ina (mm)"@sl . + "\u8EAB\u9577 (mm)"@ja . + "H\u00F6he (mm)"@de . + . + . + . + "maximum discharge (m\u00B3/s)"@en . + . + . + . + "maximum temperature (K)"@en . + "Maximaltemperatur (K)"@de . + "\u03BC\u03AD\u03B3\u03B9\u03C3\u03C4\u03B7 \u03B8\u03B5\u03C1\u03BC\u03BF\u03BA\u03C1\u03B1\u03C3\u03AF\u03B1 (K)"@el . + . + . + . + "periapsis (km)"@en . + "Periapsisdistanz (km)"@de . + . + . + . + "total cargo (kg)"@en . + . + . + . + "free flight time (\u03BC)"@en . + . + . + . + "lengte (mm)"@nl . + "\u03BC\u03AE\u03BA\u03BF\u03C2 (mm)"@el . + "longueur (mm)"@fr . + "length (mm)"@en . + "L\u00E4nge (mm)"@de . + . + . + . + "time in space (\u03BC)"@en . + "Zeit im Raum (\u03BC)"@de . + . + . + . + "oppervlakte (km2)"@nl . + "\u03AD\u03BA\u03C4\u03B1\u03C3\u03B7 \u03C0\u03B5\u03C1\u03B9\u03BF\u03C7\u03AE\u03C2 (km2)"@el . + "superficie (km2)"@fr . + "\u0443\u043A\u0443\u043F\u043D\u0430 \u043F\u043E\u0432\u0440\u0448\u0438\u043D\u0430 (km2)"@sr . + "area total (km2)"@en . + "Fl\u00E4che (km2)"@de . + . + . + . + "discharge (m\u00B3/s)"@en . + "\u03B5\u03BA\u03C1\u03BF\u03AE (m\u00B3/s)"@el . + "uitstoot (m\u00B3/s)"@nl . + . + . + . + "torque output (Nm)"@en . + . + . + . + "piston stroke (mm)"@en . + . + . + . + "lunar surface time (\u03C9)"@en . + . + . + . + "kookpunt (K)"@nl . + "\u03C3\u03B7\u03BC\u03B5\u03AF\u03BF \u03B2\u03C1\u03B1\u03C3\u03BC\u03BF\u03CD (K)"@el . + "point d'\u00E9bullition (K)"@fr . + "boiling point (K)"@en . + "\u6CB8\u70B9 (K)"@ja . + "Siedepunkt (K)"@de . + . + . + . + "maximum boat beam (\u03BC)"@en . + "\u03BC\u03AD\u03B3\u03B9\u03C3\u03C4\u03BF_\u03C0\u03BB\u03AC\u03C4\u03BF\u03C2_\u03C0\u03BB\u03BF\u03AF\u03BF\u03C5 (\u03BC)"@el . + . + . + . + "\u03C0\u03C5\u03BA\u03BD\u03CC\u03C4\u03B7\u03C4\u03B1 (\u03BC3)"@el . + "densit\u00E9 (\u03BC3)"@fr . + "densidade (\u03BC3)"@pt . + "densit\u00E0 (\u03BC3)"@it . + "density (\u03BC3)"@en . + "\u5BC6\u5EA6 (\u03BC3)"@ja . + "Dichte (\u03BC3)"@de . + . + . + . + "fuel capacity (l)"@en . + "\u03C7\u03C9\u03C1\u03B7\u03C4\u03B9\u03BA\u03CC\u03C4\u03B7\u03C4\u03B1 \u03BA\u03B1\u03C5\u03C3\u03AF\u03BC\u03BF\u03C5 (l)"@el . + "Kraftstoffkapazit\u00E4t (l)"@de . + . + . + . + "maximum temperature (K)"@en . + "Maximaltemperatur (K)"@de . + "\u03BC\u03AD\u03B3\u03B9\u03C3\u03C4\u03B7 \u03B8\u03B5\u03C1\u03BC\u03BF\u03BA\u03C1\u03B1\u03C3\u03AF\u03B1 (K)"@el . + . + . + . + "mass (kg)"@en . + "Masse (kg)"@de . + "\u03BC\u03AC\u03B6\u03B1 (kg)"@el . + . + . + . + "population density (/sqkm)"@en . + "bevolkingsdichtheid (/sqkm)"@nl . + "Bev\u00F6lkerungsdichte (/sqkm)"@de . + "\u03C0\u03C5\u03BA\u03BD\u03CC\u03C4\u03B7\u03C4\u03B1_\u03C0\u03BB\u03B7\u03B8\u03C5\u03C3\u03BC\u03BF\u03CD (/sqkm)"@el . + . + . + . + "lunar orbit time (\u03C9)"@en . + "Mondumlaufzeit (\u03C9)"@de . + . + . + . + "\u03C0\u03C5\u03BA\u03BD\u03CC\u03C4\u03B7\u03C4\u03B1 (\u03BC3)"@el . + "densit\u00E9 (\u03BC3)"@fr . + "densidade (\u03BC3)"@pt . + "densit\u00E0 (\u03BC3)"@it . + "density (\u03BC3)"@en . + "\u5BC6\u5EA6 (\u03BC3)"@ja . + "Dichte (\u03BC3)"@de . + . + . + . + "diameter (\u03BC)"@nl . + "\u03B4\u03B9\u03AC\u03BC\u03B5\u03C4\u03C1\u03BF\u03C2 (\u03BC)"@el . + "diam\u00E8tre (\u03BC)"@fr . + "diameter (\u03BC)"@en . + "Durchmesser (\u03BC)"@de . + . + . + . + "duur (m)"@nl . + "\u03B4\u03B9\u03AC\u03C1\u03BA\u03B5\u03B9\u03B1 (m)"@el . + "dur\u00E9e (m)"@fr . + "runtime (m)"@en . + "Laufzeit (m)"@de . + . + . + . + "mass (kg)"@en . + "Masse (kg)"@de . + "\u03BC\u03AC\u03B6\u03B1 (kg)"@el . + . + . + . + "hoogte (mm)"@nl . + "\u03CD\u03C8\u03BF\u03C2 (mm)"@el . + "hauteur (mm)"@fr . + "altura (mm)"@pt . + "height (mm)"@en . + "vi\u0161ina (mm)"@sl . + "\u8EAB\u9577 (mm)"@ja . + "H\u00F6he (mm)"@de . + . + . + . + "mean radius (km)"@en . + "durchschnittlicher Radius (km)"@de . + "\u03BC\u03AD\u03C3\u03B7 \u03B1\u03BA\u03C4\u03AF\u03BD\u03B1 (km)"@el . + . + . + . + "minimum temperature (K)"@en . + "geringste Temperatur (K)"@de . + "\u03B5\u03BB\u03AC\u03C7\u03B9\u03C3\u03C4\u03B7 \u03B8\u03B5\u03C1\u03BC\u03BF\u03BA\u03C1\u03B1\u03C3\u03AF\u03B1 (K)"@el . + . + . + . + "hoogte (mm)"@nl . + "\u03CD\u03C8\u03BF\u03C2 (mm)"@el . + "hauteur (mm)"@fr . + "altura (mm)"@pt . + "height (mm)"@en . + "vi\u0161ina (mm)"@sl . + "\u8EAB\u9577 (mm)"@ja . + "H\u00F6he (mm)"@de . + . + . + . + "cargo gas (kg)"@en . + . + . + . + "mean radius (km)"@en . + "durchschnittlicher Radius (km)"@de . + "\u03BC\u03AD\u03C3\u03B7 \u03B1\u03BA\u03C4\u03AF\u03BD\u03B1 (km)"@el . + . + . + . + "volume (\u03BC\u00B3)"@nl . + "\u03CC\u03B3\u03BA\u03BF\u03C2 (\u03BC\u00B3)"@el . + "volume (\u03BC\u00B3)"@fr . + "\u0437\u0430\u043F\u0440\u0435\u043C\u0438\u043D\u0430 (\u03BC\u00B3)"@sr . + "volume (\u03BC\u00B3)"@en . + "Volumen (\u03BC\u00B3)"@de . + . + . + . + "CMP EVA duration (\u03C9)"@en . + . + . + . + "population urban density (/sqkm)"@en . + . + . + . + "orbital period (\u03BC)"@en . + "Umlaufzeit (\u03BC)"@de . + "\u03A0\u03B5\u03C1\u03AF\u03BF\u03B4\u03BF\u03C2 \u03C0\u03B5\u03C1\u03B9\u03C6\u03BF\u03C1\u03AC\u03C2 (\u03BC)"@el . + . + . + . + "lengte (mm)"@nl . + "\u03BC\u03AE\u03BA\u03BF\u03C2 (mm)"@el . + "longueur (mm)"@fr . + "length (mm)"@en . + "L\u00E4nge (mm)"@de . + . + . + . + "melting point (K)"@en . + "Schmelzpunkt (K)"@de . + "point de fusion (K)"@fr . + "\u878D\u70B9 (K)"@ja . + . + . + . + "diameter (\u03BC)"@nl . + "\u03B4\u03B9\u03AC\u03BC\u03B5\u03C4\u03C1\u03BF\u03C2 (\u03BC)"@el . + "diam\u00E8tre (\u03BC)"@fr . + "diameter (\u03BC)"@en . + "Durchmesser (\u03BC)"@de . + . + . + . + "campus size (km2)"@en . + . + . + . + "minimum temperature (K)"@en . + "geringste Temperatur (K)"@de . + "\u03B5\u03BB\u03AC\u03C7\u03B9\u03C3\u03C4\u03B7 \u03B8\u03B5\u03C1\u03BC\u03BF\u03BA\u03C1\u03B1\u03C3\u03AF\u03B1 (K)"@el . + . + . + . + "breedte (mm)"@nl . + "\u03C0\u03BB\u03AC\u03C4\u03BF\u03C2 (mm)"@el . + "\u0448\u0438\u0440\u0438\u043D\u0430 (mm)"@sr . + "ancho (mm)"@es . + "width (mm)"@en . + "Breite (mm)"@de . + . + . + . + "top speed (kmh)"@en . + "H\u00F6chstgeschwindigkeit (kmh)"@de . + . + . + . + "original maximum boat beam (\u03BC)"@en . + . + . + . + "diameter (\u03BC)"@nl . + "\u03B4\u03B9\u03AC\u03BC\u03B5\u03C4\u03C1\u03BF\u03C2 (\u03BC)"@el . + "diam\u00E8tre (\u03BC)"@fr . + "diameter (\u03BC)"@en . + "Durchmesser (\u03BC)"@de . + . + . + . + "mean temperature (K)"@en . + "Durchschnittstemperatur (K)"@de . + "\u03BC\u03AD\u03C3\u03B7 \u03B8\u03B5\u03C1\u03BC\u03BF\u03BA\u03C1\u03B1\u03C3\u03AF\u03B1 (K)"@el . + . + . + . + "lower earth orbit payload (kg)"@en . + "Payload mass in a typical Low Earth orbit"@en . + . + . + . + "gewicht (kg)"@nl . + "\u03B2\u03AC\u03C1\u03BF\u03C2 (kg)"@el . + "poids (kg)"@fr . + "peso (kg)"@pt . + "\u0442\u0435\u0436\u0438\u043D\u0430 (kg)"@sr . + "weight (kg)"@en . + "\u4F53\u91CD (kg)"@ja . + "Gewicht (kg)"@de . + . + . + . + "mass (kg)"@en . + "Masse (kg)"@de . + "\u03BC\u03AC\u03B6\u03B1 (kg)"@el . + . + . + . + "lunar EVA time (\u03C9)"@en . + . + . + . + "orbital period (\u03BC)"@en . + "Umlaufzeit (\u03BC)"@de . + "\u03A0\u03B5\u03C1\u03AF\u03BF\u03B4\u03BF\u03C2 \u03C0\u03B5\u03C1\u03B9\u03C6\u03BF\u03C1\u03AC\u03C2 (\u03BC)"@el . + . + . + . + "temperature (K)"@en . + "Temperatur (K)"@de . + "\u03B8\u03B5\u03C1\u03BC\u03BF\u03BA\u03C1\u03B1\u03C3\u03AF\u03B1 (K)"@el . + "temp\u00E9rature (K)"@fr . + . + . + . + "melting point (K)"@en . + "Schmelzpunkt (K)"@de . + "point de fusion (K)"@fr . + "\u878D\u70B9 (K)"@ja . + . + . + . + "lengte (mm)"@nl . + "\u03BC\u03AE\u03BA\u03BF\u03C2 (mm)"@el . + "longueur (mm)"@fr . + "length (mm)"@en . + "L\u00E4nge (mm)"@de . + . + . + . + "size (MB)"@en . + "\u03BC\u03AD\u03B3\u03B5\u03B8\u03BF\u03C2 \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF\u03C5 (MB)"@el . + "Dateigr\u00F6\u00DFe (MB)"@de . + "size of a file or software"@en . + "\u03BC\u03AD\u03B3\u03B5\u03B8\u03BF\u03C2 \u03B5\u03BD\u03CC\u03C2 \u03B7\u03BB\u03B5\u03BA\u03C4\u03C1\u03BF\u03BD\u03B9\u03BA\u03BF\u03CD \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF\u03C5"@el . + . + . + . + "area metro (km2)"@en . + "\u03C0\u03B5\u03C1\u03B9\u03BF\u03C7\u03AE \u03BC\u03B5\u03C4\u03C1\u03CC (km2)"@el . + "\u043C\u0435\u0442\u0440\u043E\u043F\u043E\u043B\u0441\u043A\u0430 \u043E\u0431\u043B\u0430\u0441\u0442 (km2)"@sr . + . + . + . + "displacement (cc)"@en . + "cilindrada (cc)"@es . + . + . + . + "temperature (K)"@en . + "Temperatur (K)"@de . + "\u03B8\u03B5\u03C1\u03BC\u03BF\u03BA\u03C1\u03B1\u03C3\u03AF\u03B1 (K)"@el . + "temp\u00E9rature (K)"@fr . + . + . + . + "course (km)"@en . + . + . + . + "lengte (km)"@nl . + "\u03BC\u03AE\u03BA\u03BF\u03C2 (km)"@el . + "longueur (km)"@fr . + "length (km)"@en . + "L\u00E4nge (km)"@de . + . + . + . + "surface area (km2)"@en . + "Oberfl\u00E4che (km2)"@de . + "\u03AD\u03BA\u03C4\u03B1\u03C3\u03B7 (km2)"@el . + . + . + . + "gewicht (kg)"@nl . + "\u03B2\u03AC\u03C1\u03BF\u03C2 (kg)"@el . + "poids (kg)"@fr . + "peso (kg)"@pt . + "\u0442\u0435\u0436\u0438\u043D\u0430 (kg)"@sr . + "weight (kg)"@en . + "\u4F53\u91CD (kg)"@ja . + "Gewicht (kg)"@de . + . + . + . + "diameter (mm)"@nl . + "\u03B4\u03B9\u03AC\u03BC\u03B5\u03C4\u03C1\u03BF\u03C2 (mm)"@el . + "diam\u00E8tre (mm)"@fr . + "diameter (mm)"@en . + "Durchmesser (mm)"@de . + . + . + . + "Beschleunigung (s)"@de . + "acceleration (s)"@en . + "\u03B5\u03C0\u03B9\u03C4\u03AC\u03C7\u03C5\u03BD\u03C3\u03B7 (s)"@el . + "\u0443\u0431\u0440\u0437\u0430\u045A\u0435 (s)"@sr . + . + . + . + "breedte (mm)"@nl . + "\u03C0\u03BB\u03AC\u03C4\u03BF\u03C2 (mm)"@el . + "\u0448\u0438\u0440\u0438\u043D\u0430 (mm)"@sr . + "ancho (mm)"@es . + "width (mm)"@en . + "Breite (mm)"@de . + . + . + . + "average speed (km/s)"@en . + "Durchschnittsgeschwindigkeit (km/s)"@de . + "\u03BC\u03AD\u03C3\u03B7 \u03C4\u03B1\u03C7\u03CD\u03C4\u03B7\u03C4\u03B1 (km/s)"@el . + "The average speed of a thing."@en . + "\u0397 \u03BC\u03AD\u03C3\u03B7 \u03C4\u03B1\u03C7\u03CD\u03C4\u03B7\u03C4\u03B1 \u03B5\u03BD\u03CC\u03C2 \u03C0\u03C1\u03AC\u03B3\u03BC\u03B1\u03C4\u03BF\u03C2."@el . + . + . + . + "hoogte (mm)"@nl . + "\u03CD\u03C8\u03BF\u03C2 (mm)"@el . + "hauteur (mm)"@fr . + "altura (mm)"@pt . + "height (mm)"@en . + "vi\u0161ina (mm)"@sl . + "\u8EAB\u9577 (mm)"@ja . + "H\u00F6he (mm)"@de . + . + . + . + "apoapsis (km)"@en . + "Apoapsisdistanz (km)"@de . + "\u03B1\u03C0\u03CC\u03B1\u03C8\u03B7\u03C2 (km)"@el . + "\u0430\u043F\u043E\u0430\u043F\u0441\u0438\u0441 (km)"@sr . + . + . + . + "average speed (km/s)"@en . + "Durchschnittsgeschwindigkeit (km/s)"@de . + "\u03BC\u03AD\u03C3\u03B7 \u03C4\u03B1\u03C7\u03CD\u03C4\u03B7\u03C4\u03B1 (km/s)"@el . + "The average speed of a thing."@en . + "\u0397 \u03BC\u03AD\u03C3\u03B7 \u03C4\u03B1\u03C7\u03CD\u03C4\u03B7\u03C4\u03B1 \u03B5\u03BD\u03CC\u03C2 \u03C0\u03C1\u03AC\u03B3\u03BC\u03B1\u03C4\u03BF\u03C2."@el . + . + . + . + "mission duration (\u03BC)"@en . + "Missionsdauer (\u03BC)"@de . + . + . + . + "gewicht (kg)"@nl . + "\u03B2\u03AC\u03C1\u03BF\u03C2 (kg)"@el . + "poids (kg)"@fr . + "peso (kg)"@pt . + "\u0442\u0435\u0436\u0438\u043D\u0430 (kg)"@sr . + "weight (kg)"@en . + "\u4F53\u91CD (kg)"@ja . + "Gewicht (kg)"@de . + . + . + . + "gewicht (kg)"@nl . + "\u03B2\u03AC\u03C1\u03BF\u03C2 (kg)"@el . + "poids (kg)"@fr . + "peso (kg)"@pt . + "\u0442\u0435\u0436\u0438\u043D\u0430 (kg)"@sr . + "weight (kg)"@en . + "\u4F53\u91CD (kg)"@ja . + "Gewicht (kg)"@de . + . + . + . + "hoogte (mm)"@nl . + "\u03CD\u03C8\u03BF\u03C2 (mm)"@el . + "hauteur (mm)"@fr . + "altura (mm)"@pt . + "height (mm)"@en . + "vi\u0161ina (mm)"@sl . + "\u8EAB\u9577 (mm)"@ja . + "H\u00F6he (mm)"@de . + . + . + . + "diameter (km)"@nl . + "\u03B4\u03B9\u03AC\u03BC\u03B5\u03C4\u03C1\u03BF\u03C2 (km)"@el . + "diam\u00E8tre (km)"@fr . + "diameter (km)"@en . + "Durchmesser (km)"@de . + . + . + . + "power output (kW)"@en . + "Ausgangsleistung (kW)"@de . + . + . + . + "gewicht (kg)"@nl . + "\u03B2\u03AC\u03C1\u03BF\u03C2 (kg)"@el . + "poids (kg)"@fr . + "peso (kg)"@pt . + "\u0442\u0435\u0436\u0438\u043D\u0430 (kg)"@sr . + "weight (kg)"@en . + "\u4F53\u91CD (kg)"@ja . + "Gewicht (kg)"@de . + . + . + . + "surface area (km2)"@en . + "Oberfl\u00E4che (km2)"@de . + "\u03AD\u03BA\u03C4\u03B1\u03C3\u03B7 (km2)"@el . + . + . + . + "\u03C0\u03C5\u03BA\u03BD\u03CC\u03C4\u03B7\u03C4\u03B1 (\u03BC3)"@el . + "densit\u00E9 (\u03BC3)"@fr . + "densidade (\u03BC3)"@pt . + "densit\u00E0 (\u03BC3)"@it . + "density (\u03BC3)"@en . + "\u5BC6\u5EA6 (\u03BC3)"@ja . + "Dichte (\u03BC3)"@de . + . + . + . + "mass (kg)"@en . + "Masse (kg)"@de . + "\u03BC\u03AC\u03B6\u03B1 (kg)"@el . + . + . + . + "distance (km)"@en . + "Entfernung (km)"@de . + . + . + . + "diameter (\u03BC)"@nl . + "\u03B4\u03B9\u03AC\u03BC\u03B5\u03C4\u03C1\u03BF\u03C2 (\u03BC)"@el . + "diam\u00E8tre (\u03BC)"@fr . + "diameter (\u03BC)"@en . + "Durchmesser (\u03BC)"@de . + . + . + . + "hoogte (cm)"@nl . + "\u03CD\u03C8\u03BF\u03C2 (cm)"@el . + "hauteur (cm)"@fr . + "altura (cm)"@pt . + "height (cm)"@en . + "vi\u0161ina (cm)"@sl . + "\u8EAB\u9577 (cm)"@ja . + "H\u00F6he (cm)"@de . + . + . + . + "shore length (km)"@en . + "Uferl\u00E4nge (km)"@de . + "\u03BC\u03AE\u03BA\u03BF\u03C2_\u03CC\u03C7\u03B8\u03B7\u03C2 (km)"@el . + . + . + . + "lengte (mm)"@nl . + "\u03BC\u03AE\u03BA\u03BF\u03C2 (mm)"@el . + "longueur (mm)"@fr . + "length (mm)"@en . + "L\u00E4nge (mm)"@de . + . + . + . + "oppervlakte (km2)"@nl . + "\u03AD\u03BA\u03C4\u03B1\u03C3\u03B7 (km2)"@el . + "superficie (km2)"@fr . + "\u00E1rea (km2)"@pt . + "\u043E\u0431\u043B\u0430\u0441\u0442 (km2)"@sr . + "area (km2)"@en . + "Fl\u00E4che (km2)"@de . + "The area of a owl:Thing in square metre."@en . + . + . + . + "floor area (m2)"@en . + "vloeroppervlak (m2)"@nl . + "\u03C0\u03B5\u03C1\u03B9\u03BF\u03C7\u03AE \u03BF\u03C1\u03CC\u03C6\u03C9\u03BD (m2)"@el . + . + . + . + "distance (km)"@en . + "Entfernung (km)"@de . + . + . + . + "area of catchment (km2)"@en . + "Einzugsgebiet (km2)"@de . + "\u03BB\u03AF\u03BC\u03BD\u03B7 (km2)"@el . + "\u043F\u043E\u0434\u0440\u0443\u0447\u0458\u0435 \u0441\u043B\u0438\u0432\u0430 (km2)"@sr . + . + . + . + "dry cargo (kg)"@en . + "Trockenfracht (kg)"@de . + "droge last (kg)"@nl . + . + . + . + "station EVA duration (\u03C9)"@en . + . + . + . + "volume (km3)"@nl . + "\u03CC\u03B3\u03BA\u03BF\u03C2 (km3)"@el . + "volume (km3)"@fr . + "\u0437\u0430\u043F\u0440\u0435\u043C\u0438\u043D\u0430 (km3)"@sr . + "volume (km3)"@en . + "Volumen (km3)"@de . + . + . + . + "lengte (mm)"@nl . + "\u03BC\u03AE\u03BA\u03BF\u03C2 (mm)"@el . + "longueur (mm)"@fr . + "length (mm)"@en . + "L\u00E4nge (mm)"@de . + . + . diff --git a/src/main/resources/data/entitiesStore b/src/main/resources/data/entitiesStore new file mode 100644 index 0000000..3489b09 Binary files /dev/null and b/src/main/resources/data/entitiesStore differ diff --git a/src/main/resources/data/file_properties.xml b/src/main/resources/data/file_properties.xml new file mode 100755 index 0000000..900b344 --- /dev/null +++ b/src/main/resources/data/file_properties.xml @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/data/mallet_en_stopwords.txt b/src/main/resources/data/mallet_en_stopwords.txt new file mode 100755 index 0000000..a64cc87 --- /dev/null +++ b/src/main/resources/data/mallet_en_stopwords.txt @@ -0,0 +1 @@ +a able about above according accordingly across actually after afterwards again against all allow allows almost alone along already also although always am among amongst an and another any anybody anyhow anyone anything anyway anyways anywhere apart appear appreciate appropriate are around as aside ask asking associated at available away awfully b be became because become becomes becoming been before beforehand behind being believe below beside besides best better between beyond both brief but by c came can cannot cant cause causes certain certainly changes clearly co com come comes concerning consequently consider considering contain containing contains corresponding could course currently d definitely described despite did different do does doing done down downwards during e each edu eg eight either else elsewhere enough entirely especially et etc even ever every everybody everyone everything everywhere ex exactly example except f far few fifth first five followed following follows for former formerly forth four from further furthermore g get gets getting given gives go goes going gone got gotten greetings h had happens hardly has have having he hello help hence her here hereafter hereby herein hereupon hers herself hi him himself his hither hopefully how howbeit however i ie if ignored immediate in inasmuch inc indeed indicate indicated indicates inner insofar instead into inward is it its itself j just k keep keeps kept know knows known l last lately later latter latterly least less lest let like liked likely little look looking looks ltd m mainly many may maybe me mean meanwhile merely might more moreover most mostly much must my myself n name namely nd near nearly necessary need needs neither never nevertheless new next nine no nobody non none noone nor normally not nothing novel now nowhere o obviously of off often oh ok okay old on once one ones only onto or other others otherwise ought our ours ourselves out outside over overall own p particular particularly per perhaps placed please plus possible presumably probably provides q que quite qv r rather rd re really reasonably regarding regardless regards relatively respectively right s said same saw say saying says second secondly see seeing seem seemed seeming seems seen self selves sensible sent serious seriously seven several shall she should since six so some somebody somehow someone something sometime sometimes somewhat somewhere soon sorry specified specify specifying still sub such sup sure t take taken tell tends th than thank thanks thanx that thats the their theirs them themselves then thence there thereafter thereby therefore therein theres thereupon these they think third this thorough thoroughly those though three through throughout thru thus to together too took toward towards tried tries truly try trying twice two u un under unfortunately unless unlikely until unto up upon us use used useful uses using usually uucp v value various very via viz vs w want wants was way we welcome well went were what whatever when whence whenever where whereafter whereas whereby wherein whereupon wherever whether which while whither who whoever whole whom whose why will willing wish with within without wonder would would x y yes yet you your yours yourself yourselves z zero \ No newline at end of file diff --git a/src/main/resources/data/nltk_en_stopwords.txt b/src/main/resources/data/nltk_en_stopwords.txt new file mode 100755 index 0000000..b9bf9b1 --- /dev/null +++ b/src/main/resources/data/nltk_en_stopwords.txt @@ -0,0 +1 @@ +i me my myself we our ours ourselves yo your yours yourself yourselves he him his himself she her hers herself it its itself they them their theirs themselves what which who whom this that these those am is are was were be been being have has had having do does did doing a an the and but if or because as until while of at by for with about against between into through during before after above below to from up down in out on off over under again further then once here there when where why how all any both each few more most other some such no nor not only own same so than too very s t can will just don should now \ No newline at end of file diff --git a/src/main/resources/data/resultsWebquestions.txt b/src/main/resources/data/resultsWebquestions.txt new file mode 100644 index 0000000..70f2868 --- /dev/null +++ b/src/main/resources/data/resultsWebquestions.txt @@ -0,0 +1,30048 @@ + + + +-------------- + QUESTION: what is the name of justin bieber brother? +-Canonic Entity : justin_bieber +-Target Values : (list (description "Jazmyn Bieber") (description "Jaxon Bieber")) +-Candidate Entities: + + + +-------------- + QUESTION: what character did natalie portman play in star wars? +-Canonic Entity : natalie_portman +-Target Values : (list (description "Padmé Amidala")) +-Candidate Entities: Star_Wars, Star_Wars_(UK_comics), Kenner_Star_Wars_action_figures, Star_Wars:_Battlefront_(series), Star_Wars_Galaxies, Star_Wars_Expanded_Universe, Star_Wars_(1983_video_game), Kinect_Star_Wars, Star_Wars_Roleplaying_Game_(Fantasy_Flight_Games), Star_Wars_Pez, Star_Wars_canon | Christopher_Portman,_10th_Viscount_Portman | Star_Wars_Episode_III:_Revenge_of_the_Sith | Character_(arts) | The_Two-Character_Play, Play_On! | Alternate_character, Character_actor + +Additional entities + +Method 1 + + Character_actor + + Christopher_Portman,_10th_Viscount_Portman + + Character_(arts) + + Star_Wars + +Method 2 + + Character_(arts) + + Star_Wars + + + +-------------- + QUESTION: what state does selena gomez? +-Canonic Entity : selena_gomez +-Target Values : (list (description "New York City")) +-Candidate Entities: Murder_of_Selena, Selena, Selena_(soundtrack), Sonia_&_Selena, Selena_(film) + +Additional entities + +Method 1 + + Selena + +Method 2 + + Selena + + + +-------------- + QUESTION: what country is the grand bahama island in? +-Canonic Entity : grand_bahama +-Target Values : (list (description Bahamas)) +-Candidate Entities: + + + +-------------- + QUESTION: what kind of money to take to bahamas? +-Canonic Entity : the_bahamas +-Target Values : (list (description "Bahamian dollar")) +-Candidate Entities: Gifts_in_kind | Demand_for_money + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what character did john noble play in lord of the rings? +-Canonic Entity : the_lord_of_the_rings +-Target Values : (list (description "Denethor II")) +-Candidate Entities: Lord_John_series | Noble_Corporation | Character_(arts) | Barnes_&_Noble, Noble_Warriors + +Additional entities + +Method 1 + + Lord_John_series + + Character_(arts) + +Method 2 + + Character_(arts) + + + +-------------- + QUESTION: who does joakim noah play for? +-Canonic Entity : joakim_noah +-Target Values : (list (description "Chicago Bulls")) +-Candidate Entities: Statuette_of_Joakim_Vujić | Play_On! + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where are the nfl redskins from? +-Canonic Entity : the_redskins +-Target Values : (list (description "Washington Redskins")) +-Candidate Entities: Washington_Redskins + +Additional entities + +Method 1 + + Washington_Redskins + +Method 2 + + + +-------------- + QUESTION: where did saki live? +-Canonic Entity : saki_(manga) +-Target Values : (list (description "United Kingdom")) +-Candidate Entities: Saki | Live_(James_Taylor_album), Ableton_Live, Live_Baby_Live, Live_art, Live_Box + +Additional entities + +Method 1 + + Saki + +Method 2 + + + +-------------- + QUESTION: how old is sacha baron cohen? +-Canonic Entity : sacha_baron_cohen +-Target Values : (list (description http://justjared.buzznet.com/2009/01/12/sacha-baron-cohen-insults-madonna-at-golden-globes/)) +-Candidate Entities: Erran_Baron_Cohen + +Additional entities + +Method 1 + + Erran_Baron_Cohen + +Method 2 + + Erran_Baron_Cohen + + + +-------------- + QUESTION: what two countries invaded poland in the beginning of ww2? +-Canonic Entity : stuart_laycock +-Target Values : (list (description Germany)) +-Candidate Entities: Soviet_invasion_of_Poland, Invasion_of_Poland, Poland, Territorial_evolution_of_Poland, Foreign_relations_of_Poland, Partitions_of_Poland + +Additional entities + +Method 1 + + Poland + +Method 2 + + Poland + + + +-------------- + QUESTION: what time zone am i in cleveland ohio? +-Canonic Entity : cleveland +-Target Values : (list (description "North American Eastern Time Zone")) +-Candidate Entities: Central_Time_Zone, Pacific_Time_Zone, Time_Zone_(video_game), Mountain_Time_Zone, Eastern_Time_Zone, Time_zone, Iran_Standard_Time, Chamorro_Time_Zone + +Additional entities + +Method 1 + + Central_Time_Zone + +Method 2 + + Eastern_Time_Zone + + + +-------------- + QUESTION: who did draco malloy end up marrying? +-Canonic Entity : draco_(rocket_engine_family) +-Target Values : (list (description "Astoria Greengrass")) +-Candidate Entities: DRACO_(antiviral), Draco_(constellation) | Malloy | Draco_(genus), DraCo, Draco, Draco_(Caminhos_do_Coração) | Marrying_the_Mafia_II, Marrying_the_Mafia_II, Marrying_the_Mafia_III, Marrying_Buddha, Marrying_God, Marrying_the_Mafia + +Additional entities + +Method 1 + +Method 2 + + Draco_(constellation) + + + +-------------- + QUESTION: which countries border the us? +-Canonic Entity : beat_the_border +-Target Values : (list (description Canada)) +-Candidate Entities: Canada–United_States_border, Mexico–United_States_border, Brunei–Malaysia_border, Malaysia–Vietnam_border + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where is rome italy located on a map? +-Canonic Entity : rome +-Target Values : (list (description Rome)) +-Candidate Entities: Map_(band) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what is nina dobrev nationality? +-Canonic Entity : nina_dobrev +-Target Values : (list (description Bulgaria)) +-Candidate Entities: Klára_Dobrev + +Additional entities + +Method 1 + + Klára_Dobrev + +Method 2 + + + +-------------- + QUESTION: what country does iceland belong to? +-Canonic Entity : iceland +-Target Values : (list (description Iceland)) +-Candidate Entities: Where_Do_I_Belong, Belong_(album), Loving_You_Is_Where_I_Belong | Country_music, Country_code, Alternative_country, Cross_country_running_shoe, Country_dance + +Additional entities + +Method 1 + + Country_music + +Method 2 + + Belong_(album) + + Country_code + + + +-------------- + QUESTION: which kennedy died first? +-Canonic Entity : jacqueline_kennedy_onassis +-Target Values : (list (description "John F. Kennedy")) +-Candidate Entities: Kennedy_(musician) + +Additional entities + +Method 1 + + Kennedy_(musician) + +Method 2 + + + +-------------- + QUESTION: what books did beverly cleary right? +-Canonic Entity : beverly_cleary +-Target Values : (list (description "Ramona's World") (description "Ramona Quimby, Age 8") (description "Ralph S. Mouse") (description "Runaway Ralph") (description Ribsy) (description "Sister of the Bride") (description "Ellen Tebbits") (description "Dear Mr. Henshaw") (description "The Mouse and the Motorcycle") (description "Beezus and Ramona")) +-Candidate Entities: + + + +-------------- + QUESTION: who did the philippines gain independence from? +-Canonic Entity : gain +-Target Values : (list (description "United States of America")) +-Candidate Entities: + + + +-------------- + QUESTION: where to fly into bali? +-Canonic Entity : bali,_rajasthan +-Target Values : (list (description "Ngurah Rai Airport")) +-Candidate Entities: Bali + +Additional entities + +Method 1 + + Bali + +Method 2 + + Bali + + + +-------------- + QUESTION: who is the prime minister of ethiopia? +-Canonic Entity : prime_minister_of_the_united_kingdom +-Target Values : (list (description "Hailemariam Desalegn")) +-Candidate Entities: List_of_heads_of_government_of_Ethiopia, Ethiopian_training_ship_Ethiopia_(A-01), Ethiopia, Workers'_Party_of_Ethiopia + +Additional entities + +Method 1 + + Ethiopia + +Method 2 + + Ethiopia + + + +-------------- + QUESTION: what to see near sedona arizona? +-Canonic Entity : sedona,_arizona +-Target Values : (list (description "Sedona Airport") (description "Red Rock State Park") (description "Seven Canyons") (description Honanki) (description "Cathedral Rock") (description "Chapel of the Holy Cross") (description "Sycamore Canyon") (description "Oak Creek Canyon") (description "Slide Rock State Park") (description "Bell Rock")) +-Candidate Entities: Sedona_(film), Sedona_Film_Festival | Arizona_State_Route_89A, Arizona, Fox_Sports_Arizona + +Additional entities + +Method 1 + + Sedona_(film) + + Arizona + +Method 2 + + Sedona_(film) + + Arizona_State_Route_89A + + + +-------------- + QUESTION: what high school did president bill clinton attend? +-Canonic Entity : bill_clinton +-Target Values : (list (description "Hot Springs High School")) +-Candidate Entities: Clinton_High_School_(Clinton,_Massachusetts), DeWitt_Clinton_High_School, Clinton_High_School_(Clinton,_Tennessee), Clinton_High_School_(Clinton,_New_York), Clinton-Massie_High_School + +Additional entities + +Method 1 + + DeWitt_Clinton_High_School + +Method 2 + + DeWitt_Clinton_High_School + + + +-------------- + QUESTION: what form of government does russia have today? +-Canonic Entity : government_of_russia +-Target Values : (list (description "Constitutional republic")) +-Candidate Entities: Sixth_Form_Government_Secondary_School | Today_(The_Smashing_Pumpkins_song) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what movies does taylor lautner play in? +-Canonic Entity : taylor_lautner +-Target Values : (list (description Abduction) (description Eclipse) (description "Valentine's Day") (description "The Twilight Saga: Breaking Dawn - Part 1") (description "New Moon")) +-Candidate Entities: Lautner | Google_Play + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what year lebron james came to the nba? +-Canonic Entity : lebron_james +-Target Values : (list (description "2003–04 NBA season")) +-Candidate Entities: NBA_Finals, NBA_on_NBC, Eligibility_for_the_NBA_draft | The_Decision_(TV_special), NBA_Rookie_of_the_Year_Award | Bill_Russell_NBA_Finals_Most_Valuable_Player_Award, NBA_on_ABC, NBA_regular_season_records, 2011–12_NBA_season, 2012_NBA_Finals + +Additional entities + +Method 1 + + Bill_Russell_NBA_Finals_Most_Valuable_Player_Award + +Method 2 + + NBA_Rookie_of_the_Year_Award + + Bill_Russell_NBA_Finals_Most_Valuable_Player_Award + + NBA_Finals + + + +-------------- + QUESTION: what did the german revolution lead to? +-Canonic Entity : german_revolution_of_1918–19 +-Target Values : (list (description "German Democratic Republic")) +-Candidate Entities: Peaceful_Revolution, The_Revolution_(band), Revolution_by_Night, Revolution_(Beatles_song) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: how much did adriana lima gain during pregnancy? +-Canonic Entity : adriana_lima +-Target Values : (list (description "Spike Guys' Choice Awards")) +-Candidate Entities: Complications_of_pregnancy | Gain | Denial_of_pregnancy, Hypercoagulability_in_pregnancy | Adriana, Adriana_Cataño | Pregnancy + +Additional entities + +Method 1 + + Adriana_Cataño + + Pregnancy + +Method 2 + + + +-------------- + QUESTION: what does thai mean? +-Canonic Entity : thai_(cat) +-Target Values : (list (description Language)) +-Candidate Entities: + + + +-------------- + QUESTION: which wife did king henry behead? +-Canonic Entity : henry_king_(poet) +-Target Values : (list (description "Anne of the Thousand Days")) +-Candidate Entities: The_Provoked_Wife | Henry_V_(play), Henry_VI,_Part_3, Henry_VI_of_England, Henry_VIII_of_England | Simon_King_(broadcaster) | Henry_VI,_Part_2, Henry_VI,_Part_1 | The_19th_Wife, The_Crane_Wife | Ife, IFE_Worldwide | 2007_plot_to_behead_a_British_Muslim_soldier | Bronze_Head_from_Ife, IFE_matrix + +Additional entities + +Method 1 + + Simon_King_(broadcaster) + + Henry_VIII_of_England + +Method 2 + + Henry_VIII_of_England + + + +-------------- + QUESTION: who was ishmael's mom? +-Canonic Entity : mom_(disambiguation) +-Target Values : (list (description Hagar)) +-Candidate Entities: The_Mom_&_Pop_Store, The_Search_for_the_Funniest_Mom_in_America, Me_Mom_and_Morgentaler, Arturo_S._Mom, Stacy's_Mom + +Additional entities + +Method 1 + + Arturo_S._Mom + +Method 2 + + + +-------------- + QUESTION: what was malcolm x trying to accomplish? +-Canonic Entity : malcolm_boyd +-Target Values : (list (description "African Americans' rights") (description "Black Liberation")) +-Candidate Entities: + + + +-------------- + QUESTION: where are the netherlands on a world map? +-Canonic Entity : map_(band) +-Target Values : (list (description "Kingdom of the Netherlands")) +-Candidate Entities: Waldseemüller_map | Netherlands | Hénon_map, The_National_Map + +Additional entities + +Method 1 + + Netherlands + +Method 2 + + + +-------------- + QUESTION: what is the president of brazil? +-Canonic Entity : president_of_brazil +-Target Values : (list (description "Dilma Rousseff")) +-Candidate Entities: + + + +-------------- + QUESTION: what are the major cities in france? +-Canonic Entity : major_(manga) +-Target Values : (list (description Paris)) +-Candidate Entities: Major, U.S._cities_with_teams_from_four_major_league_sports | Cities_(The_Cat_Empire_album), The_Seven_Cities_of_Gold_(video_game), Quad_Cities_River_Bandits, Major_Cities_of_Europe_IT_Users_Group + +Additional entities + +Method 1 + + Major + +Method 2 + + Major + + + +-------------- + QUESTION: what city did esther live in? +-Canonic Entity : esther_béjarano +-Target Values : (list (description Susa)) +-Candidate Entities: Esther_(opera), Esther_M._Conwell + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what sport do the toronto maple leafs play? +-Canonic Entity : toronto_maple_leafs +-Target Values : (list (description "Ice Hockey")) +-Candidate Entities: Canadiens–Maple_Leafs_rivalry, St._John's_Maple_Leafs | Toronto_sports | Nelson_Maple_Leafs | Play_On! + +Additional entities + +Method 1 + + Toronto_sports + +Method 2 + + Toronto_sports + + St._John's_Maple_Leafs + + + +-------------- + QUESTION: what is saint nicholas known for? +-Canonic Entity : saint_nicholas +-Target Values : (list (description "Grand Duke Alexander Alexandrovich of Russia")) +-Candidate Entities: + + + +-------------- + QUESTION: when is the new series of the only way is essex starting? +-Canonic Entity : essex,_connecticut +-Target Values : (list (description "West Horndon")) +-Candidate Entities: Kingdom_of_Essex | The_Starting_Line + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what is cher's son's name? +-Canonic Entity : cher +-Target Values : (list (description "Elijah Blue Allman") (description "Chaz Bono")) +-Candidate Entities: + + + +-------------- + QUESTION: what is martin cooper doing now? +-Canonic Entity : martin_cooper_(musician) +-Target Values : (list (description Inventor)) +-Candidate Entities: COOPER_(artist) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what party was andrew jackson? +-Canonic Entity : andrew_jackson_fundamental_magnet_high_school +-Target Values : (list (description "Democratic-Republican Party") (description "Democratic Party") (description "Jacksonian Democratic Party")) +-Candidate Entities: Andrew_Jackson, Andrew_Jackson_Barchfeld, Andrew_Jackson_Merchant, Andrew_Jackson_High_School_(Jacksonville), Andrew_Young, Andrew_Jackson_Hamilton, Andrew_Jackson,_Alabama, Andrew_Jackson_(clipper), Andrew_J._Rogers + +Additional entities + +Method 1 + + Andrew_Jackson + +Method 2 + + + +-------------- + QUESTION: what is medicare a? +-Canonic Entity : medicare_(australia) +-Target Values : (list (description "Centers for Medicare and Medicaid Services")) +-Candidate Entities: Medicare_(United_States), Medicare, Medicare_(Canada), Father_of_medicare + +Additional entities + +Method 1 + + Medicare_(United_States) + +Method 2 + + Medicare_(United_States) + + + +-------------- + QUESTION: what county is the city of hampton va in? +-Canonic Entity : hampton,_virginia +-Target Values : (list (description Hampton)) +-Candidate Entities: Rail_transport_in_Vatican_City, Vatican_City, Elizabeth_City_County,_Virginia + +Additional entities + +Method 1 + + Elizabeth_City_County,_Virginia + +Method 2 + + Elizabeth_City_County,_Virginia + + + +-------------- + QUESTION: what is the name of the first harry potter novel? +-Canonic Entity : harry_potter_(film_series) +-Target Values : (list (description "Harry Potter and the Philosopher's Stone")) +-Candidate Entities: + + + +-------------- + QUESTION: what did william shakespeare do for a living? +-Canonic Entity : the_plays_of_william_shakespeare +-Target Values : (list (description Poet) (description Playwright) (description Dramatist) (description Lyricist) (description Author)) +-Candidate Entities: Riverside_Shakespeare, Delaware_Shakespeare_Festival, Shakespeare_baronets, Shakespeare_Schools_Festival, Shakespeare_(programming_language) | Living_Will, Living_(New_Zealand), The_Living_End, Living_Years, Clean_living_movement + +Additional entities + +Method 1 + + Delaware_Shakespeare_Festival + +Method 2 + + + +-------------- + QUESTION: what county is heathrow airport in? +-Canonic Entity : london_heathrow_airport +-Target Values : (list (description London)) +-Candidate Entities: + + + +-------------- + QUESTION: where did dmitri mendeleev study science? +-Canonic Entity : dmitri_mendeleev +-Target Values : (list (description "Saint Petersburg State University") (description "Ruprecht Karl University of Heidelberg")) +-Candidate Entities: Mendeleev_(crater) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what movie is josh hutcherson in? +-Canonic Entity : josh_hutcherson +-Target Values : (list (description "Cirque du Freak: The Vampire's Assistant") (description "The Hunger Games") (description "7 Days in Havana") (description "Journey to the Center of the Earth") (description "The Forger") (description Detention) (description "Journey 2: The Mysterious Island") (description "Red Dawn") (description "The Third Rule") (description "The Kids Are All Right")) +-Candidate Entities: Drake_&_Josh, Josh_(band), Josh_Joplin_Group, Merry_Christmas,_Drake_&_Josh | Movie_Gallery, MTV_Movie_Award_for_Best_Song_from_a_Movie, Movie_Network, Magix_Movie_Edit_Pro, 2011_MTV_Movie_Awards + +Additional entities + +Method 1 + + 2011_MTV_Movie_Awards + +Method 2 + + MTV_Movie_Award_for_Best_Song_from_a_Movie + + + +-------------- + QUESTION: what is there to do in laredo tx? +-Canonic Entity : laredo,_texas +-Target Values : (list (description "Veterans Field") (description "San Augustin de Laredo Historic District") (description "Laredo Energy Arena") (description "Lake Casa Blanca") (description "Texas A&M International University Soccer Complex") (description "Fort McIntosh") (description "Southern Careers Institute, Laredo Campus") (description "Texas A&M International University") (description "Webb County Courthouse") (description Nye)) +-Candidate Entities: + + + +-------------- + QUESTION: what season did tony soprano get shot? +-Canonic Entity : tony_soprano +-Target Values : (list (description "The Sopranos")) +-Candidate Entities: Soprano | Shot_(pellet), Top_Shot_(season_5) + +Additional entities + +Method 1 + + Soprano + +Method 2 + + + +-------------- + QUESTION: where do the san francisco giants play home games? +-Canonic Entity : san_francisco_giants +-Target Values : (list (description "AT&T Park")) +-Candidate Entities: + + + +-------------- + QUESTION: what year did william jennings bryan run for president? +-Canonic Entity : william_jennings_bryan +-Target Values : (list (description "1900 Democratic National Convention") (description "1908 Democratic National Convention") (description "1896 Democratic National Convention")) +-Candidate Entities: William_Sherman_Jennings_House | Bryan_College, William_Bryan | Elizabeth_Jennings_Graham, William_M._Jennings | Charles_W._Bryan | William_Sherman_Jennings + +Additional entities + +Method 1 + + William_M._Jennings + + Bryan_College + + William_Sherman_Jennings + + Charles_W._Bryan + +Method 2 + + William_Sherman_Jennings_House + + Bryan_College + + William_Sherman_Jennings + + Charles_W._Bryan + + + +-------------- + QUESTION: what was the name of frederick douglass book? +-Canonic Entity : frederick_douglass +-Target Values : (list (description "Narrative of the Life of Frederick Douglass, an American Slave")) +-Candidate Entities: Douglass_(Washington,_D.C.), Douglass_High_School_(Memphis,_Tennessee), Helen_Pitts_Douglass + +Additional entities + +Method 1 + + Helen_Pitts_Douglass + +Method 2 + + Helen_Pitts_Douglass + + + +-------------- + QUESTION: who was queen victoria's parents called? +-Canonic Entity : queen_victoria's_journals +-Target Values : (list (description "Prince Edward, Duke of Kent and Strathearn") (description "Princess Victoria of Saxe-Coburg-Saalfeld")) +-Candidate Entities: + + + +-------------- + QUESTION: what movies did sally field win an oscar for? +-Canonic Entity : sally_field +-Target Values : (list (description "Places in the Heart") (description Sybil) (description "Norma Rae") (description "A Woman Of Independent Means") (description "A Cooler Climate") (description "Brothers & Sisters") (description ER)) +-Candidate Entities: Good_Guys_Only_Win_in_Movies, For_the_Win, WIN_(TV_station), Win_Win_(film) | Oscar_Wadsworth_Field + +Additional entities + +Method 1 + + Win_Win_(film) + +Method 2 + + + +-------------- + QUESTION: what is the first book sherlock holmes appeared in? +-Canonic Entity : canon_of_sherlock_holmes +-Target Values : (list (description "A Study in Scarlet")) +-Candidate Entities: + + + +-------------- + QUESTION: what type of car does michael weston drive? +-Canonic Entity : type_95_reconnaissance_car +-Target Values : (list (description Wishcraft)) +-Candidate Entities: + + + +-------------- + QUESTION: where does lena river begin and end? +-Canonic Entity : lena_river +-Target Values : (list (description "Baikal Mountains")) +-Candidate Entities: + + + +-------------- + QUESTION: what countries do people speak portuguese? +-Canonic Entity : speak!!! +-Target Values : (list (description Brazil) (description Canada) (description Angola) (description Portugal) (description Macau) (description "Cape Verde") (description Andorra) (description Timor-Leste) (description Guinea-Bissau) (description Mozambique)) +-Candidate Entities: The_People_Speak_(film), Speak_(No-Man_album) | Portuguese-speaking_African_countries | Portuguese_people, Portuguese_in_Africa, Community_of_Portuguese_Language_Countries + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where to exchange euros in pittsburgh? +-Canonic Entity : euros_(moth) +-Target Values : (list (description "Allegheny County")) +-Candidate Entities: Exchange_(album) | Pittsburgh | Student_exchange_program | University_of_Pittsburgh + +Additional entities + +Method 1 + + University_of_Pittsburgh + + Pittsburgh + +Method 2 + + Pittsburgh + + + +-------------- + QUESTION: what are the names of walt disney kids? +-Canonic Entity : the_walt_disney_company +-Target Values : (list (description "Diane Disney Miller") (description "Sharon Mae Disney")) +-Candidate Entities: Walt_Disney, Walt_Disney_Studios_Home_Entertainment, Walt_Disney_Parks_and_Resorts, Walt_Disney_Music_Company, Walt_Disney_World, Walt_Disney_Pictures, The_Walt_Disney_Family_Museum, Walt_Disney_Imagineering, The_Walt_Disney_Studios_(division), Incidents_at_Walt_Disney_World, Disney_Television_Animation, Walt_Disney_Studios_Park, Walt_Disney_Animation_Studios, Walt_Disney_Records + +Additional entities + +Method 1 + + Walt_Disney + +Method 2 + + Walt_Disney + + + +-------------- + QUESTION: who is in the band bush? +-Canonic Entity : bush_band +-Target Values : (list (description "Dave Parsons") (description "Gavin Rossdale") (description "Sacha Putnam") (description "Robin Goodridge") (description "Nigel Pulsford") (description "Corey Britz") (description "Chris Traynor")) +-Candidate Entities: Bush_(band), Irving_T._Bush, Bush_(brand), The_Bush_Chemists + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what was tupac name in juice? +-Canonic Entity : juice +-Target Values : (list (description Bishop)) +-Candidate Entities: Biggie_&_Tupac, Tupac_A._Hunter + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what timezone is australia gmt? +-Canonic Entity : gmt_(programme) +-Target Values : (list (description UTC+8)) +-Candidate Entities: Rolex_GMT_Master_II | Australia, Punishment_in_Australia, Australia_(Manic_Street_Preachers_song) + + + +-------------- + QUESTION: who does maggie grace play in taken? +-Canonic Entity : maggie_grace +-Target Values : (list (description Kim)) +-Candidate Entities: The_Buzz_on_Maggie, Maggie_(1981_TV_series) | Play_On! + +Additional entities + +Method 1 + + Maggie_(1981_TV_series) + +Method 2 + + The_Buzz_on_Maggie + + + +-------------- + QUESTION: what style of music did louis armstrong play? +-Canonic Entity : louis_armstrong +-Target Values : (list (description Jazz)) +-Candidate Entities: + + + +-------------- + QUESTION: when is summer in australia sydney? +-Canonic Entity : sydney +-Target Values : (list (description "City of Sydney")) +-Candidate Entities: Summer_Hill,_New_South_Wales | Australia + +Additional entities + +Method 1 + + Australia + +Method 2 + + Australia + + Summer_Hill,_New_South_Wales + + + +-------------- + QUESTION: what tv show did joey lawrence play on? +-Canonic Entity : joey_lawrence +-Target Values : (list (description Blossom) (description "Melissa & Joey") (description Bow) (description "Gimme a Break!") (description "Run of the House") (description "Brotherly Love")) +-Candidate Entities: Joey + +Additional entities + +Method 1 + + Joey + +Method 2 + + Joey + + + +-------------- + QUESTION: what timezone is denver co? +-Canonic Entity : denver +-Target Values : (list (description "Mountain Time Zone") (description UTC−07:00)) +-Candidate Entities: + + + +-------------- + QUESTION: what character did brian austin green play on 90210? +-Canonic Entity : brian_austin_green +-Target Values : (list (description "David Silver")) +-Candidate Entities: Beverly_Hills,_90210, Beverly_Hills,_90210_franchise, 90210_(TV_series), 90210_(season_2), 90210_(season_4), 90210_(season_3) | Play_It_Again,_Brian | 90210_(season_5), Beverly_Hills_90210_(soundtrack), 90210_(season_1) | Brian_Green, Brian_Austin | Green_Pastures_(Austin,_Texas) | 90210 | Character_(arts) | Beverly_Hills,_90210_(season_2) + +Additional entities + +Method 1 + + Beverly_Hills,_90210_(season_2) + + Character_(arts) + + Beverly_Hills,_90210 + +Method 2 + + Character_(arts) + + Beverly_Hills,_90210_(season_2) + + Beverly_Hills,_90210 + + + +-------------- + QUESTION: where does jackie french live? +-Canonic Entity : jackie_french +-Target Values : (list (description Australia)) +-Candidate Entities: + + + +-------------- + QUESTION: what form of government was practiced in sparta? +-Canonic Entity : sparta,_michigan +-Target Values : (list (description Monarchy) (description Diarchy)) +-Candidate Entities: + + + +-------------- + QUESTION: when did the colorado rockies go to the world series? +-Canonic Entity : colorado_rockies_(nhl) +-Target Values : (list (description "2007 National League Championship Series")) +-Candidate Entities: University_of_the_Rockies, Parkinson_Association_of_the_Rockies, Rockies, College_of_the_Rockies, Top_of_the_Rockies, Wings_Over_the_Rockies_Air_and_Space_Museum, North_Central_Rockies_forest | Nationwide_Series, World_Series, Survivor_Series_(2012), PSA_World_Series_2012, Chouseishin_Series + +Additional entities + +Method 1 + + World_Series + +Method 2 + + World_Series + + + +-------------- + QUESTION: who was peter parker's first girlfriend? +-Canonic Entity : parker's_piece +-Target Values : (list (description "Marvel Comics")) +-Candidate Entities: Girlfriend_(Avril_Lavigne_song), Girlfriend_(magazine) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what college did matt lauer attend? +-Canonic Entity : matt_lauer +-Target Values : (list (description "Ohio University")) +-Candidate Entities: Lauer, Lauer_(river) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where to go in london england? +-Canonic Entity : live_at_the_o2_london,_england +-Target Values : (list (description "Regent's Park") (description "Tower of London") (description "Buckingham Palace") (description "Palace of Westminster") (description "London Eye") (description "Tower Bridge") (description "Hyde Park") (description "Westminster Abbey") (description "St Paul's Cathedral") (description "Trafalgar Square")) +-Candidate Entities: Greater_London, London, City_of_London, Girlguiding_London_and_South_East_England, Vicar_Apostolic_of_the_London_District, London_Borough_of_Enfield, London_England_Temple, A_Looking_Glass_for_London, Barnes,_London + +Additional entities + +Method 1 + + London + +Method 2 + + + +-------------- + QUESTION: what school did joan miro attend? +-Canonic Entity : fundació_joan_miró +-Target Values : (list (description "Cercle Artístic de Sant Lluc")) +-Candidate Entities: Joan_Miró | Miro_(Suebian_king), Miro_(software) | St._Joan_of_Arc_Secondary_School,_Hong_Kong | Ivo_Miro_Jović, Miro + +Additional entities + +Method 1 + + Joan_Miró + +Method 2 + + Joan_Miró + + + +-------------- + QUESTION: where did france colonise? +-Canonic Entity : france +-Target Values : (list (description Réunion) (description "Saint Barthélemy") (description Mayotte) (description "French Southern and Antarctic Lands") (description "New Caledonia") (description "Saint Pierre and Miquelon") (description "Collectivity of Saint Martin") (description "French Polynesia") (description Martinique) (description Guadeloupe)) +-Candidate Entities: + + + +-------------- + QUESTION: who was vincent van gogh inspired by? +-Canonic Entity : vincent_van_gogh +-Target Values : (list (description "Jozef Israëls") (description "Paul Cézanne") (description "Anton Mauve") (description "Peter Paul Rubens") (description "Jean-François Millet") (description "Willem Roelofs") (description "Eugène Delacroix") (description "Claude Monet") (description Rembrandt)) +-Candidate Entities: + + + +-------------- + QUESTION: where to get married in jacksonville nc? +-Canonic Entity : jacksonville,_north_carolina +-Target Values : (list (description "Atlantic Beach") (description "Jacksonville Beach") (description Baldwin) (description "St. Johns River") (description "Masonic Temple") (description "Lewis Mausoleum") (description "EverBank Field") (description "Jacksonville Veterans Memorial Arena") (description "Morocco Temple") (description "El Modelo Block")) +-Candidate Entities: + + + +-------------- + QUESTION: what time zone am i in michigan? +-Canonic Entity : central_time_zone +-Target Values : (list (description "North American Eastern Time Zone")) +-Candidate Entities: Pacific_Time_Zone, Eastern_Time_Zone, Time_Zone_(video_game), Mountain_Time_Zone, Time_zone, Iran_Standard_Time, Chamorro_Time_Zone, Time_in_Saskatchewan, Time_in_Michigan, Bhutan_Time, Krasnoyarsk_Time, Time_in_Venezuela, Time_Zone_(band) | In_the_Zone_(The_Outer_Limits) | Effects_of_time_zones_on_North_American_broadcasting, Daylight_saving_time_in_the_United_States, Time_in_Colombia + +Additional entities + +Method 1 + + Effects_of_time_zones_on_North_American_broadcasting + +Method 2 + + Effects_of_time_zones_on_North_American_broadcasting + + Mountain_Time_Zone + + + +-------------- + QUESTION: when did the new york knicks win a championship? +-Canonic Entity : new_york_knicks +-Target Values : (list (description "1970 NBA Finals") (description "1973 NBA Finals")) +-Candidate Entities: + + + +-------------- + QUESTION: what is the official language of china 2010? +-Canonic Entity : official_bilingualism_in_canada +-Target Values : (list (description "Chinese language")) +-Candidate Entities: Official_language | 2010–11_China_drought, China, 2010_China_floods, 2010_China_Open_(snooker), 2010_China_drought_and_dust_storms | List_of_official_languages, Official_languages_of_Puducherry + +Additional entities + +Method 1 + + List_of_official_languages + + Official_language + + China + +Method 2 + + China + + Official_language + + + +-------------- + QUESTION: what was woodrow wilson's major accomplishments? +-Canonic Entity : woodrow_wilson +-Target Values : (list (description "United States Secretary of Agriculture") (description "Governor of New Jersey") (description "President of the United States")) +-Candidate Entities: + + + +-------------- + QUESTION: where is jack daniels factory? +-Canonic Entity : jack_daniels_(coach) +-Target Values : (list (description Tennessee)) +-Candidate Entities: + + + +-------------- + QUESTION: what language do the speak in pakistan? +-Canonic Entity : speak!!! +-Target Values : (list (description "English Language") (description "Urdu Language")) +-Candidate Entities: Speak_(No-Man_album), Speak_(Godsmack_song) | Pakistan | Speak_for_Yourself, I_Don't_Speak_the_Language, Speak_of_the_Devil_(book), SPEAK_(test), Speak_(band), Speak_(film), Speak_of_the_devil, The_People_Speak_(film) + +Additional entities + +Method 1 + + Pakistan + +Method 2 + + + +-------------- + QUESTION: where is santa clara university? +-Canonic Entity : santa_clara_university +-Target Values : (list (description "United States of America") (description California) (description "Santa Clara")) +-Candidate Entities: Monastery_of_Santa_Clara, Santa_Clara,_Cuba, Santa_Clara,_New_York, Santa_Clara,_California, Santa_Clara_del_Cobre, Santa_Clara_Valley_Transportation_Authority, Santa_Clara_Broncos, Mission_Santa_Clara_de_Asís, Santa_Clara_County,_California, Santa_Clara,_Eugene,_Oregon, Santa_Clara,_Utah, Santa_Clara,_Texas, Santa_Clara_County_Library, Santa_Clara_Pueblo,_New_Mexico, Fight_for_Santa_Clara, Santa_Clara_County_Superior_Court, Santa_Clara,_New_Mexico + +Additional entities + +Method 1 + + Santa_Clara,_California + +Method 2 + + Santa_Clara,_California + + + +-------------- + QUESTION: which part of korea is communist? +-Canonic Entity : communism_in_korea +-Target Values : (list (description "North Korea")) +-Candidate Entities: Communist_Party_of_Korea, North_Korea–South_Korea_relations | Communist_Party_of_Byelorussia | Iran–North_Korea_relations, North_Korea, South_Korea, Workers'_Party_of_North_Korea, Denmark–South_Korea_relations + +Additional entities + +Method 1 + + Communist_Party_of_Korea + + South_Korea + +Method 2 + + Communist_Party_of_Korea + + North_Korea + + + +-------------- + QUESTION: where did timothy mcveigh go to prison? +-Canonic Entity : timothy_mcveigh +-Target Values : (list (description "Terre Haute")) +-Candidate Entities: Timothy_R._McVeigh, McVeigh, John_J._McVeigh + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what sea does the yangtze river flow into? +-Canonic Entity : yangtze_river_delta +-Target Values : (list (description "East China Sea")) +-Candidate Entities: Yangtze, Shanghai_Yangtze_River_Tunnel_and_Bridge, Yangtze_River_bridges_and_tunnels | Watching_the_River_Flow | Yangtze_Patrol, 1954_Yangtze_River_Floods, Wuhan_Yangtze_River_Tunnel, Nanjing_Yangtze_River_Bridge, 1998_Yangtze_River_floods, Yangtze_River_Express, Wuhan_Yangtze_River_Bridge, Yuzui_Yangtze_River_Bridge + +Additional entities + +Method 1 + + Nanjing_Yangtze_River_Bridge + + Yangtze + +Method 2 + + Nanjing_Yangtze_River_Bridge + + Yangtze + + + +-------------- + QUESTION: who miley cyrus engaged to? +-Canonic Entity : miley_cyrus +-Target Values : (list (description "Liam Hemsworth")) +-Candidate Entities: Engaged_(song) | Cyrus_the_Great | Miley_(disambiguation), James_"Bubber"_Miley + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what is charles darwin famous for? +-Canonic Entity : charles_darwin +-Target Values : (list (description Evolution)) +-Candidate Entities: + + + +-------------- + QUESTION: who founded the roanoke settlement? +-Canonic Entity : roanoke,_virginia +-Target Values : (list (description "Rainbow Bluff Expedition")) +-Candidate Entities: + + + +-------------- + QUESTION: what kind of money should i take to jamaica? +-Canonic Entity : jamaica,_queens +-Target Values : (list (description "Jamaican dollar")) +-Candidate Entities: Gifts_in_kind + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who is robert downey jr wife? +-Canonic Entity : robert_downey,_jr. +-Target Values : (list (description "Susan Downey")) +-Candidate Entities: + + + +-------------- + QUESTION: where do the ny rangers play? +-Canonic Entity : new_york_rangers +-Target Values : (list (description "Madison Square Garden")) +-Candidate Entities: The_Queen's_York_Rangers_(1st_American_Regiment)_(RCAC), Rangers_F.C., North_York_Rangers + +Additional entities + +Method 1 + + Rangers_F.C. + +Method 2 + + + +-------------- + QUESTION: where is jefferson davis buried? +-Canonic Entity : jefferson_c._davis +-Target Values : (list (description "Hollywood Cemetery")) +-Candidate Entities: Jefferson_Davis_Community_College, Jefferson_Davis_Brodhead, USRC_Jefferson_Davis_(1853), Jefferson_Davis_State_Historic_Site, Jefferson_Davis_Highway, Jefferson_Davis | Buried_by_the_Buzzzz, Buried_(film) | Jefferson_Davis_County,_Mississippi, Jefferson_Davis_Memorial_Historic_Site, Jefferson_Davis_Hotel, Jefferson_Davis_Parish,_Louisiana, Jefferson_Davis_County_School_District + +Additional entities + +Method 1 + + Jefferson_Davis + +Method 2 + + Jefferson_Davis + + + +-------------- + QUESTION: who does the author stephenie meyer play in the movie twilight? +-Canonic Entity : stephenie_meyer +-Target Values : (list (description "Woman at Wedding")) +-Candidate Entities: The_Twilight_Saga_(film_series), Twilight_(series), Twilight_(2008_film), Twilight_(novel), Twilight_(soundtrack) + +Additional entities + +Method 1 + + The_Twilight_Saga_(film_series) + +Method 2 + + Twilight_(2008_film) + + + +-------------- + QUESTION: when will oscar pistorius compete? +-Canonic Entity : oscar_pistorius +-Target Values : (list (description "2012 Summer Olympics")) +-Candidate Entities: Pistorius, Eric_S._Pistorius | Oscar_(footballer_born_1991) | Johannes_Pistorius + +Additional entities + +Method 1 + +Method 2 + + Pistorius + + + +-------------- + QUESTION: what years have the dallas cowboys won the superbowl? +-Canonic Entity : dallas_cowboys +-Target Values : (list (description "Super Bowl XXVIII") (description "Super Bowl XXVII") (description "Super Bowl VI") (description "Super Bowl XXX") (description "Super Bowl XII")) +-Candidate Entities: + + + +-------------- + QUESTION: what awards has louis sachar won? +-Canonic Entity : louis_sachar +-Target Values : (list (description "National Book Award for Young People's Literature") (description "Anne V. Zarrow Award for Young Readers' Literature") (description "Dorothy Canfield Fisher Children's Book Award") (description "Newbery Medal")) +-Candidate Entities: Sachar, Bhim_Sen_Sachar + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who are the current senators from missouri? +-Canonic Entity : list_of_current_argentine_senators +-Target Values : (list (description "Claire McCaskill")) +-Candidate Entities: Missouri_Senate | West_Spitsbergen_Current | State_Auditor_of_Missouri | The_Singing_Senators | Constitution_of_Missouri | Current_River_(Missouri) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who was the president after jfk died? +-Canonic Entity : john_f._kennedy +-Target Values : (list (description "Lyndon B. Johnson")) +-Candidate Entities: + + + +-------------- + QUESTION: what is the best currency to take to egypt 2013? +-Canonic Entity : egypt +-Target Values : (list (description "Egyptian pound")) +-Candidate Entities: Currency | 2013_Linafoot, 2013_V.League_1, April_2013_Bachu_unrest, Miss_Universe_Puerto_Rico_2013, FIBA_EuroBasket_2013 + +Additional entities + +Method 1 + + Currency + +Method 2 + + April_2013_Bachu_unrest + + Currency + + + +-------------- + QUESTION: what are the countries in the united kingdom? +-Canonic Entity : countries_of_the_united_kingdom +-Target Values : (list (description Wales) (description England) (description Scotland) (description "Northern Ireland")) +-Candidate Entities: Income_tax_in_European_countries + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what planes does the navy have? +-Canonic Entity : planes_(film) +-Target Values : (list (description "LTV A-7 Corsair II")) +-Candidate Entities: Alcocer_de_Planes, Great_Planes_Model_Manufacturing, Planes_Mistaken_for_Stars, Vicente_López_y_Planes, People_in_Planes | Royal_Navy | Manual_of_the_Planes | Indian_Navy, Royal_Danish_Navy_(1510–1814) | Plane_(Unicode), Planes_(genus) | Vietnam_People's_Navy + +Additional entities + +Method 1 + + Planes_Mistaken_for_Stars + + Indian_Navy + + Royal_Navy + +Method 2 + + + +-------------- + QUESTION: where did benjamin franklin died? +-Canonic Entity : benjamin_franklin +-Target Values : (list (description Philadelphia)) +-Candidate Entities: Ben_Franklin_House, Benjamin_Cromwell_Franklin, Benjamin_Joseph_Franklin | The_Dog_It_Was_That_Died, The_Day_the_Music_Died_(album), The_Year_That_Clayton_Delaney_Died, The_Fun_Machine_Took_a_Shit_&_Died + +Additional entities + +Method 1 + + Ben_Franklin_House + +Method 2 + + Ben_Franklin_House + + + +-------------- + QUESTION: where to visit in n. ireland? +-Canonic Entity : queen_elizabeth_ii's_visit_to_the_republic_of_ireland +-Target Values : (list (description Antrim)) +-Candidate Entities: Ireland | An_Expensive_Visit, Visit_and_Search + + + +-------------- + QUESTION: what to do in cancun with family? +-Canonic Entity : family_(may_j._album) +-Target Values : (list (description "Belize Barrier Reef") (description "Ik Kil") (description "Isla Contoy") (description "Xcaret Park") (description "Chichen Itza") (description "Xel-Ha Park") (description "Sistema Dos Ojos") (description Coba) (description "Delphinus Dreams") (description "Cancun Underwater Museum")) +-Candidate Entities: In_the_Family_(2011_film) | ME_Cancun, Cancun_Underwater_Museum, The_Real_Cancun, The_Real_Cancun_(original_soundtrack) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what is the local language of israel? +-Canonic Entity : israel +-Target Values : (list (description "Hebrew Language")) +-Candidate Entities: Local_language_(formal_language) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what city and state was the air force academy established? +-Canonic Entity : oklahoma_city_air_force_station +-Target Values : (list (description "El Paso County") (description "United States of America") (description Colorado) (description "Colorado Springs")) +-Candidate Entities: United_States_Air_Force_Academy, Air_Force_Academy,_Colorado, Sri_Lanka_Air_Force_Academy, Pakistan_Air_Force_Academy, United_States_Department_of_the_Air_Force, Turkish_Air_Force_Academy, Republic_of_China_Air_Force_Academy, Air_force_academy, Yemeni_Air_Force, United_States_Air_Force, Korea_Air_Force_Academy, List_of_Superintendents_of_the_United_States_Air_Force_Academy, 2003_United_States_Air_Force_Academy_sexual_assault_scandal, Sioux_City_Air_National_Guard_Base, Air_Force_Academy,_Dundigul, Egyptian_Air_Academy, Air_force, Air_Force_Falcons_football, Assistant_Secretary_of_the_Air_Force_(Acquisition) | Radio_1_Established_1967, Established_Programs_Financing | State_religion + +Additional entities + +Method 1 + + United_States_Air_Force + +Method 2 + + United_States_Air_Force + + + +-------------- + QUESTION: what's the national sport of puerto rico? +-Canonic Entity : puerto_rico +-Target Values : (list (description "Puerto Rico men's national volleyball team") (description "Puerto Rico women's national volleyball team") (description "Puerto Rico national football team")) +-Candidate Entities: Of_What's_to_Come + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what religion are people in russia? +-Canonic Entity : marxism_and_religion +-Target Values : (list (description "Russian Orthodox Church") (description Islam)) +-Candidate Entities: Religion_in_Russia, Māori_religion, On_Religion, Religion_in_the_Inca_Empire | Opium_of_the_people | Religion_in_Macau + +Additional entities + +Method 1 + + Religion_in_Russia + + Opium_of_the_people + +Method 2 + + Religion_in_Russia + + Opium_of_the_people + + + +-------------- + QUESTION: what did shawnee smith play in? +-Canonic Entity : shawnee,_oklahoma +-Target Values : (list (description "The Grudge 3") (description "Saw IV") (description "Summer School") (description "Saw II") (description "Saw III") (description "The Island") (description Saw) (description "The Blob") (description "Who's Harry Crumb?")) +-Candidate Entities: Shawnee + +Additional entities + +Method 1 + + Shawnee + +Method 2 + + Shawnee + + + +-------------- + QUESTION: what countries did queen victoria reign over? +-Canonic Entity : queen_victoria +-Target Values : (list (description "United Kingdom")) +-Candidate Entities: Victoria_Street,_Melbourne | After_the_Reign, Pray_IV_Reign | Victoria_Eugenie_of_Battenberg | Reign_(2013_TV_series) + +Additional entities + +Method 1 + + Victoria_Eugenie_of_Battenberg + +Method 2 + + Victoria_Street,_Melbourne + + Victoria_Eugenie_of_Battenberg + + + +-------------- + QUESTION: where did dr seuss go to school? +-Canonic Entity : dr._seuss +-Target Values : (list (description "Dartmouth College") (description "University of Oxford") (description "Lincoln College, Oxford")) +-Candidate Entities: + + + +-------------- + QUESTION: what team does luis suarez play for? +-Canonic Entity : luis_suárez_miramontes +-Target Values : (list (description "Liverpool F.C.")) +-Candidate Entities: Luis_Suárez, Luis_Fernando_Suárez | Anthony_R._Suarez + + + +-------------- + QUESTION: what are dollars called in spain? +-Canonic Entity : $_(film) +-Target Values : (list (description Peseta)) +-Candidate Entities: Spain | A_Fistful_of_Dollars, Dialing_for_Dollars, Dollars_and_Sex, A_Fishful_of_Dollars, A_Barrel_Full_of_Dollars + +Additional entities + +Method 1 + + Spain + +Method 2 + + Spain + + + +-------------- + QUESTION: who plays meg in family guy? +-Canonic Entity : meg_griffin +-Target Values : (list (description "Mila Kunis")) +-Candidate Entities: Family_Guy_(season_11), Family_Guy_(season_10) | Meg_and_Quagmire | Family_Guy_(season_2), Family_Guy_(season_5) + +Additional entities + +Method 1 + + Meg_and_Quagmire + + Family_Guy_(season_10) + + Family_Guy_(season_2) + +Method 2 + + Meg_and_Quagmire + + Family_Guy_(season_10) + + Family_Guy_(season_2) + + + +-------------- + QUESTION: what high school did tim allen go to? +-Canonic Entity : allen_county_scottsville_high_school +-Target Values : (list (description "Seaholm High School")) +-Candidate Entities: Charles_P._Allen_High_School, Tim_Allen, Allen_East_High_School, Allen_High_School_(Allen,_Texas), Allen_D._Nease_High_School | Cardinal_Heenan_Catholic_High_School, William_Allen_High_School, Withrow_High_School, Indiana_High_School_Athletics_Conferences:_Allen_County_–_Metropolitan, Allen-Stevenson_School, Cabrini_High_School_(Allen_Park), Lakeland_Senior_High_School_(Florida), Chippewa_High_School, Adena_High_School, Underdale_High_School, Hercules_Middle/High_School, Linganore_High_School, Diss_High_School | Tim_Hardaway,_Jr. + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what is the world's tallest building in dubai called? +-Canonic Entity : list_of_tallest_buildings_in_dubai +-Target Values : (list (description "Burj Khalifa")) +-Candidate Entities: Dubai, The_Address_Downtown_Dubai | A_Band_Called_O, Called_to_Serve_(song), The_Return_of_a_Man_Called_Horse + +Additional entities + +Method 1 + + Dubai + +Method 2 + + Dubai + + + +-------------- + QUESTION: where does asiana airlines fly to? +-Canonic Entity : asiana_airlines +-Target Values : (list (description "John F. Kennedy International Airport") (description "Sydney Airport")) +-Candidate Entities: Asiana, Kumho_Asiana_Group | Fly_Aruba + +Additional entities + +Method 1 + + Kumho_Asiana_Group + +Method 2 + + Kumho_Asiana_Group + + + +-------------- + QUESTION: what movie did angelina jolie direct? +-Canonic Entity : angelina_jolie +-Target Values : (list (description "In the Land of Blood and Honey") (description "A Place in Time")) +-Candidate Entities: Jolie_(disambiguation), Jolie_&_the_Wanted + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where did martin luther king got shot? +-Canonic Entity : martin_luther_king,_jr. +-Target Values : (list (description Memphis)) +-Candidate Entities: Martin_Luther_King_III, Martin_Luther_King,_Sr., Martin_Luther_King_Jr._Memorial_Library, Martin_Luther_College, Martin_Luther_King_Jr._Memorial_Bridge, Martin_Luther_McCoy, Martin_Luther_King_Jr._Shoreline, Dr._Martin_Luther_King_Jr._Plaza_(Metrorail_station), Martin_Luther_King_High_School_(Detroit), Dr._Martin_Luther_King_Jr._Multicultural_Institute | Shot_(pellet), Palliser_shot_and_shell, Shot_put + +Additional entities + +Method 1 + + Shot_put + + Martin_Luther_King_III + +Method 2 + + Shot_put + + Martin_Luther_King,_Sr. + + + +-------------- + QUESTION: where to visit near bangkok? +-Canonic Entity : bangkok +-Target Values : (list (description "MRT Blue Line") (description "Wat Benchamabophit") (description "Grand Palace") (description "Ananta Samakhom Throne Hall") (description "Wat Saket") (description "Khaosan Road") (description "Bangkok National Museum") (description "Samutprakarn Crocodile Farm and Zoo") (description "Wat Pho") (description "Wat Arun")) +-Candidate Entities: Visit_Florida, The_Visit, Pope_Benedict_XVI's_visit_to_the_United_Kingdom + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who does christina milian have a baby by? +-Canonic Entity : christina_milian +-Target Values : (list (description The-Dream)) +-Candidate Entities: Milian | Christina, Christina_Stürmer, Christina_Obergföll, Christina_A._Snyder + +Additional entities + +Method 1 + + Christina_Stürmer + +Method 2 + + + +-------------- + QUESTION: what year did tut became king? +-Canonic Entity : tut_tut,_now_shake_ya_butt +-Target Values : (list (description "Eighteenth Dynasty of Egypt")) +-Candidate Entities: Tut, Yeşilyurt,_Tut, Akçatepe,_Tut, King_Tut_(song), Yaylımlı,_Tut + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who is the current president of the dominican republic in 2010? +-Canonic Entity : list_of_presidents_of_the_dominican_republic +-Target Values : (list (description "Leonel Fernández")) +-Candidate Entities: Dominican_Navy | 2010_S.League, 2010_Biodiversity_Target, 2010_Bradford_Bulls_season, 2010_Svenska_Supercupen, 2010_Dundalk_F.C._season + +Additional entities + +Method 1 + +Method 2 + + Dominican_Navy + + + +-------------- + QUESTION: who has been married to julia roberts? +-Canonic Entity : julia_roberts +-Target Values : (list (description "Daniel Moder") (description "Lyle Lovett")) +-Candidate Entities: Lisa_Roberts_Gillan, Eugene_L._Roberts | Married_to_It | Julia_(daughter_of_Drusus_the_Younger) + +Additional entities + +Method 1 + + Married_to_It + + Lisa_Roberts_Gillan + +Method 2 + + Lisa_Roberts_Gillan + + + +-------------- + QUESTION: where do baltimore ravens play? +-Canonic Entity : baltimore_ravens +-Target Values : (list (description "M&T Bank Stadium")) +-Candidate Entities: + + + +-------------- + QUESTION: where does the un get its funding? +-Canonic Entity : funding_of_science +-Target Values : (list (description "United Nations Security Council")) +-Candidate Entities: Net_stable_funding_ratio, Funding, Pre-settlement_funding, Funding_opportunity_announcement + +Additional entities + +Method 1 + + Funding + +Method 2 + + Funding + + + +-------------- + QUESTION: who does brandon dubinsky play for? +-Canonic Entity : brandon_dubinsky +-Target Values : (list (description "New York Rangers")) +-Candidate Entities: + + + +-------------- + QUESTION: who all has dated taylor swift? +-Canonic Entity : taylor_swift +-Target Values : (list (description "Harry Styles")) +-Candidate Entities: I_Dated_a_Robot | Wesley_A._Swift + +Additional entities + +Method 1 + + Wesley_A._Swift + +Method 2 + + + +-------------- + QUESTION: what is the dominant language in israel? +-Canonic Entity : dominant_(music) +-Target Values : (list (description "Hebrew Language")) +-Candidate Entities: Secondary_dominant | Israel, Racism_in_Israel + +Additional entities + +Method 1 + + Secondary_dominant + + Israel + +Method 2 + + Secondary_dominant + + + +-------------- + QUESTION: what are the main languages of nigeria? +-Canonic Entity : nigeria +-Target Values : (list (description "Ibibio Language") (description "Efik Language") (description "Hausa Language") (description "English Language") (description "Idoma Language") (description "Igbo Language") (description "Fula language") (description "Naki Language") (description "Yoruba Language") (description "Izon Language")) +-Candidate Entities: Shiroro_languages, Khoisan_languages, Northern_Songhay_languages, Hanoish_languages, Bantu_languages + +Additional entities + +Method 1 + + Bantu_languages + +Method 2 + + Khoisan_languages + + + +-------------- + QUESTION: what jobs did ben franklin do? +-Canonic Entity : ben_franklin,_texas +-Target Values : (list (description Diplomat) (description Statesman) (description Politician) (description "Political activist") (description Author) (description Writer) (description Printer) (description Scientist) (description Librarian) (description Inventor)) +-Candidate Entities: Ben_Franklin_(Canadian_politician) | Jobs_(film) | Benjamin_Franklin, Ben_Franklin_effect, Ben_Franklin_(The_Office), Ben_Franklin_(company), Ben_Franklin_House, Ben_Franklin_Transit, Franklin_(automobile), Ben_Franklin_in_Paris + +Additional entities + +Method 1 + + Benjamin_Franklin + +Method 2 + + Benjamin_Franklin + + + +-------------- + QUESTION: what bible does the catholic church follow? +-Canonic Entity : catholic_bible +-Target Values : (list (description "Book of Nehemiah") (description "The Bible") (description "New Testament") (description "Old Testament")) +-Candidate Entities: Bible | Catholic_Church, Catholic_Church_and_the_Age_of_Discovery + +Additional entities + +Method 1 + + Catholic_Church + +Method 2 + + Catholic_Church + + Bible + + + +-------------- + QUESTION: who plays lola bunny in the looney tunes show? +-Canonic Entity : looney_tunes_collection_–_best_of_bugs_bunny +-Target Values : (list (description "Britt McKillip") (description "Kath Soucie")) +-Candidate Entities: Lola_Bunny + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what stadium did the chicago cardinals play in? +-Canonic Entity : arizona_cardinals +-Target Values : (list (description "University of Phoenix Stadium")) +-Candidate Entities: 1925_Chicago_Cardinals–Milwaukee_Badgers_scandal, Chicago_Knights | St._Louis_Cardinals, History_of_the_Chicago_Cardinals | University_of_Phoenix_Stadium | 1921_Chicago_Cardinals_season, Ryan_Adams_and_the_Cardinals, Catholic_University_Cardinals_football + +Additional entities + +Method 1 + + 1921_Chicago_Cardinals_season + + 1925_Chicago_Cardinals–Milwaukee_Badgers_scandal + + University_of_Phoenix_Stadium + +Method 2 + + 1921_Chicago_Cardinals_season + + 1925_Chicago_Cardinals–Milwaukee_Badgers_scandal + + History_of_the_Chicago_Cardinals + + University_of_Phoenix_Stadium + + + +-------------- + QUESTION: who did rufus wainwright married? +-Canonic Entity : rufus_wainwright +-Target Values : (list (description "Jörn Weisbrodt")) +-Candidate Entities: + + + +-------------- + QUESTION: where did c.s. lewis go to college? +-Canonic Entity : c._s._lewis +-Target Values : (list (description "Malvern College") (description "Campbell College") (description "University of Oxford") (description "University College, Oxford")) +-Candidate Entities: Lewis_and_Clark_Community_College, C.S._Lewis_Institute, Lewis_&_Clark_College, Fort_Lewis_College, Lewis | Lewis–Clark_State_College | Lewis_acids_and_bases + +Additional entities + +Method 1 + + Lewis–Clark_State_College + + Lewis + +Method 2 + + Lewis + + + +-------------- + QUESTION: what did nick clegg study at university? +-Canonic Entity : nick_clegg +-Target Values : (list (description "Political philosophy") (description "Social anthropology")) +-Candidate Entities: + + + +-------------- + QUESTION: who is the president of the european union 2011? +-Canonic Entity : president_of_the_european_union +-Target Values : (list (description "Jerzy Buzek")) +-Candidate Entities: + + + +-------------- + QUESTION: what school did cassie bernall go to? +-Canonic Entity : cassie_bernall +-Target Values : (list (description "Columbine High School")) +-Candidate Entities: Cassie, Cassie_(album) | Shipley_School, Ivel_Valley_School, Back_to_school_(marketing), School_story, Bahá'í_school + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what movie did james frey write? +-Canonic Entity : james_n._frey +-Target Values : (list (description "Sugar: The Fall of the West") (description "Kissing a Fool")) +-Candidate Entities: Donald_N._Frey, James_Frey | Write_to_Death, Write_(system_call) | Perry_A._Frey, Sébastien_Frey | Movie_Gallery, MTV_Movie_Award_for_Best_Song_from_a_Movie, Movie_Network, Magix_Movie_Edit_Pro, 2011_MTV_Movie_Awards + +Additional entities + +Method 1 + + James_Frey + +Method 2 + + + +-------------- + QUESTION: what did rob kardashian get surgery for? +-Canonic Entity : rob_kardashian +-Target Values : (list (description Appendicitis)) +-Candidate Entities: Rob_(TV_series) | Minimally_invasive_cardiac_surgery, Surgery | Kardashian + +Additional entities + +Method 1 + + Surgery + + Kardashian + +Method 2 + + Kardashian + + + +-------------- + QUESTION: what did st. matthew do? +-Canonic Entity : 2011_são_tomé_and_principe_championship +-Target Values : (list (description "The Gospel According to Matthew")) +-Candidate Entities: The_Matthew_poems, Rabbinical_translations_of_Matthew, Matthew_Locke_(soldier), Matthew_Shepard, Matthew_Good + + + +-------------- + QUESTION: when does harry potter come out on dvd deathly hallows 2? +-Canonic Entity : harry_potter_and_the_deathly_hallows_–_part_2_(soundtrack) +-Target Values : (list (description "The gospel according to Harry Potter")) +-Candidate Entities: Doe_people, Samuel_Doe, Lawrence_Doe, Nicholas_B._Doe, Francis_Doe + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what was nelson mandela's religion? +-Canonic Entity : nelson_mandela_70th_birthday_tribute +-Target Values : (list (description Methodism)) +-Candidate Entities: + + + +-------------- + QUESTION: who will win the 2011 nhl stanley cup? +-Canonic Entity : stanley_cup_playoffs +-Target Values : (list (description Canada)) +-Candidate Entities: List_of_NHL_franchise_post-season_droughts | For_the_Win, WIN_(TV_station) | NHL_Tonight | Win_Win_(film) + +Additional entities + +Method 1 + + NHL_Tonight + + List_of_NHL_franchise_post-season_droughts + +Method 2 + + NHL_Tonight + + List_of_NHL_franchise_post-season_droughts + + + +-------------- + QUESTION: what is henry clay known for? +-Canonic Entity : the_henry_clay_people +-Target Values : (list (description Lawyer)) +-Candidate Entities: Henry_Clay_Township,_Fayette_County,_Pennsylvania, Henry_Clay_Work + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who did axl rose marry? +-Canonic Entity : axl_rose +-Target Values : (list (description "Erin Everly")) +-Candidate Entities: Axl | Freedom_to_Marry, Marry_the_Night | AXL_receptor_tyrosine_kinase | Will_You_Marry_Me?_(film) + +Additional entities + +Method 1 + + Marry_the_Night + +Method 2 + + + +-------------- + QUESTION: what years did brett favre go to the super bowl? +-Canonic Entity : brett_favre +-Target Values : (list (description "1995 NFL season") (description "1996 NFL season") (description "1997 NFL season")) +-Candidate Entities: Super_Bowl, Super_Bowl_XLIII, Super_Bowl_XXXVIII, Super_Bowl_XXX, Super_Bowl_XXXI, Super_Bowl_XXXII, Super_Bowl_XLVII, List_of_quarterbacks_with_multiple_Super_Bowl_starts, Super_Bowl_XLIV, Super_Bowl_XLV, Super_Bowl_XXVI, Super_Bowl_counterprogramming, Super_Bowl_ring, The_Super_Bowl_Shuffle, Super_Bowl_XX | Living_Years, Capitol_Years, Asylum_Years, Across_the_Years, Tender_years_doctrine + +Additional entities + +Method 1 + + Super_Bowl + +Method 2 + + Super_Bowl + + + +-------------- + QUESTION: what is the money of spain called? +-Canonic Entity : the_future_of_money +-Target Values : (list (description Euro)) +-Candidate Entities: + + + +-------------- + QUESTION: where are sunbeam microwaves made? +-Canonic Entity : sunbeam_(car_company) +-Target Values : (list (description Florida)) +-Candidate Entities: + + + +-------------- + QUESTION: who was elected president of the philippines? +-Canonic Entity : president_of_the_philippines +-Target Values : (list (description "Carlos P. Garcia") (description "Corazon Aquino") (description "Diosdado Macapagal") (description "Gloria Macapagal-Arroyo") (description "Fidel V. Ramos") (description "Elpidio Quirino") (description "Ramon Magsaysay") (description "Ferdinand Marcos") (description "Sergio Osmeña") (description "Joseph Estrada")) +-Candidate Entities: Elected_(song) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what cities does ryanair fly to? +-Canonic Entity : ryanair +-Target Values : (list (description Bergamo) (description Derry) (description Oslo) (description Cork) (description Dublin) (description Barcelona) (description Bratislava) (description Nottingham) (description Alicante) (description London) (description Stockholm) (description Carcassonne) (description Faro)) +-Candidate Entities: Dappled_Cities + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what time zone is oklahoma state? +-Canonic Entity : central_time_zone +-Target Values : (list (description "Central Time Zone") (description UTC−06:00)) +-Candidate Entities: Mountain_Time_Zone, Pacific_Time_Zone, Time_Zone_(video_game), Eastern_Time_Zone, Time_zone, Iran_Standard_Time, Chamorro_Time_Zone, Time_in_Saskatchewan, Bhutan_Time | Law_of_Oklahoma | Krasnoyarsk_Time, Time_in_the_United_States, Time_in_Venezuela, Time_Zone_(band) | In_the_Zone_(The_Outer_Limits) + +Additional entities + +Method 1 + + Time_in_the_United_States + + Mountain_Time_Zone + +Method 2 + + Time_in_the_United_States + + Mountain_Time_Zone + + + +-------------- + QUESTION: who was the apostle paul considered to be? +-Canonic Entity : paul_the_apostle +-Target Values : (list (description "Paul of Tarsus")) +-Candidate Entities: Apostle_(Christian), Apostle_(Latter_Day_Saints), Apostle | All_Things_Considered, Nike_Considered, Considered_harmful, On_Murder_Considered_as_one_of_the_Fine_Arts, Time_Considered_as_a_Helix_of_Semi-Precious_Stones_–_The_BBC_Sessions_1979–1984 + +Additional entities + +Method 1 + + All_Things_Considered + + Apostle_(Christian) + +Method 2 + + Apostle_(Christian) + + + +-------------- + QUESTION: what currency does ontario canada use? +-Canonic Entity : ontario +-Target Values : (list (description "Canadian dollar")) +-Candidate Entities: Currency + +Additional entities + +Method 1 + +Method 2 + + Currency + + + +-------------- + QUESTION: what instrument does justin bieber? +-Canonic Entity : justin_bieber +-Target Values : (list (description guitar) (description Piano) (description trumpet) (description Drums)) +-Candidate Entities: + + + +-------------- + QUESTION: what team did shaq play for first? +-Canonic Entity : pay_to_play +-Target Values : (list (description "Orlando Magic")) +-Candidate Entities: Play_(Moby_album), Play_(BDSM), Play_(telecommunications), The_Saturday_Play, Play_from_scrimmage + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where was kennedy when he got shot? +-Canonic Entity : shot_(pellet) +-Target Values : (list (description Dallas)) +-Candidate Entities: Kennedy_(musician), Jacqueline_Kennedy_Onassis, John_P._Kennedy + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who do derek fisher play for? +-Canonic Entity : derek_fisher +-Target Values : (list (description "Los Angeles Lakers")) +-Candidate Entities: + + + +-------------- + QUESTION: where did the casey anthony case take place? +-Canonic Entity : death_of_caylee_anthony +-Target Values : (list (description Orlando)) +-Candidate Entities: City_of_Casey + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where did pres clinton go to college? +-Canonic Entity : clinton_community_college_(iowa) +-Target Values : (list (description "University College, Oxford") (description "Ramble Elementary") (description "Yale Law School") (description "Hot Springs High School") (description "Georgetown University Law Center") (description "Edmund A. Walsh School of Foreign Service") (description "St. John's Catholic Elementary School")) +-Candidate Entities: + + + +-------------- + QUESTION: what was the name of the original seattle baseball team? +-Canonic Entity : seattle_redhawks +-Target Values : (list (description "Seattle Mariners")) +-Candidate Entities: Baseball | 1951–52_Seattle_Chieftains_men's_basketball_team, 1957–58_Seattle_Chieftains_men's_basketball_team, Seattle, Seattle_Mariners, Seattle_Sounders_FC | Australia_national_baseball_team | Great_Seattle_Fire | Taiwan_Cooperative_Bank_baseball_team, Israel_national_baseball_team, Brazil_national_baseball_team, Myanmar_national_baseball_team, South_Africa_national_baseball_team, Pittsburgh_Panthers_baseball | Original_sin_(economics), Original_(song) + +Additional entities + +Method 1 + + Baseball + + Seattle + +Method 2 + + Great_Seattle_Fire + + Baseball + + Seattle + + + +-------------- + QUESTION: who was general cornwallis american revolution? +-Canonic Entity : charles_cornwallis,_1st_marquess_cornwallis +-Target Values : (list (description "British Army")) +-Candidate Entities: Jane_Cornwallis | Museum_of_the_American_Revolution, Sons_of_the_Revolution | Edward_Cornwallis | American_Revolution, The_General_Idea_of_the_Revolution_in_the_Nineteenth_Century + +Additional entities + +Method 1 + + Museum_of_the_American_Revolution + + Jane_Cornwallis + + Edward_Cornwallis + + American_Revolution + +Method 2 + + Jane_Cornwallis + + Edward_Cornwallis + + American_Revolution + + + +-------------- + QUESTION: what type of monarchy did england have? +-Canonic Entity : dual_monarchy_of_england_and_france +-Target Values : (list (description "Constitutional monarchy")) +-Candidate Entities: Monarchy_(TV_series), Iraqi_Constitutional_Monarchy, Endogamy_in_the_British_monarchy | Type_88_tank_(China), Bugatti_Type_35, Bugatti_Type_51, Bugatti_Type_13, Type_of_service + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: when were the texas rangers started? +-Canonic Entity : texas_rangers_(baseball) +-Target Values : (list (description 1972)) +-Candidate Entities: Get_the_Party_Started | Dominican_Summer_League_Rangers, Rangers_F.C. | Started_from_the_Bottom | Texas_Ranger_Division, Power_Rangers_Turbo, Power_Rangers_in_Space, Power_Rangers_Zeo, Cove_Rangers_F.C., Stafford_Rangers_F.C., Feale_Rangers_GAA + +Additional entities + +Method 1 + + Texas_Ranger_Division + + Rangers_F.C. + +Method 2 + + Texas_Ranger_Division + + + +-------------- + QUESTION: where did the houston oilers football team go? +-Canonic Entity : history_of_the_houston_oilers +-Target Values : (list (description "Tennessee Titans")) +-Candidate Entities: Houston_Cougars_football | Tulsa_Oilers | Houston_Stallions, Houston_Texans | The_Comeback_(American_football) | 1989_Houston_Cougars_football_team | Findlay_Oilers_men's_ice_hockey + +Additional entities + +Method 1 + + 1989_Houston_Cougars_football_team + + The_Comeback_(American_football) + + Houston_Cougars_football + + Houston_Texans + +Method 2 + + 1989_Houston_Cougars_football_team + + The_Comeback_(American_football) + + Houston_Cougars_football + + Houston_Texans + + + +-------------- + QUESTION: what do they call football in spanish? +-Canonic Entity : spanish,_ontario +-Target Values : (list (description XHVG-FM)) +-Candidate Entities: Royal_Spanish_Football_Federation | The_Call_(CNBC), Call_pickup + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where did pauley perrette go to college? +-Canonic Entity : pauley_perrette +-Target Values : (list (description "Valdosta State University")) +-Candidate Entities: Pauley, Edwin_W._Pauley, William_H._Pauley_III | Burnley_College, Clydebank_College, Darlington_College, Kilgore_College, Gorseinon_College + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where does niles crane live? +-Canonic Entity : niles_crane +-Target Values : (list (description Seattle)) +-Candidate Entities: + + + +-------------- + QUESTION: where was gabriel faure born? +-Canonic Entity : gabriel_fauré +-Target Values : (list (description France)) +-Candidate Entities: Camille_Alphonse_Faure, Félix_Faure_(Paris_Métro), Eugène_Faure | Gabriel | Sébastien_Faure_(footballer), Faure, William_C._Faure + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who is the governor of kentucky 2012? +-Canonic Entity : governor_of_kentucky +-Target Values : (list (description "Steve Beshear")) +-Candidate Entities: United_States_presidential_election_in_Kentucky,_2012 | Kentucky_General_Assembly, Kentucky, 2012–13_Kentucky_Wildcats_men's_basketball_team, Kentucky_Derby, Eastern_Kentucky_University | Governor_(United_States) | Kentucky_Wildcats_football + +Additional entities + +Method 1 + + Kentucky_Wildcats_football + + United_States_presidential_election_in_Kentucky,_2012 + + Governor_(United_States) + +Method 2 + + Kentucky_Wildcats_football + + United_States_presidential_election_in_Kentucky,_2012 + + Governor_(United_States) + + Kentucky + + + +-------------- + QUESTION: who is the senator of the united states 2010? +-Canonic Entity : senator_(bishop_of_milan) +-Target Values : (list (description "Jefferson Sessions")) +-Candidate Entities: United_States_elections,_2010, United_States_Senate_special_election_in_Delaware,_2010 | Senator_O'Connor_College_School | 2010_United_States_Census | The_Senator_(tree) | June_2010_United_Kingdom_budget, United_States_Senate_election_in_Colorado,_2010, United_States_House_of_Representatives_elections_in_Kentucky,_2010, United_States_Senate_election_in_Kansas,_2010, Opinion_polling_for_the_2010_United_States_Senate_elections, 2010_in_the_United_States | Death_and_the_Senator | United_States_Senate_election_in_Connecticut,_2010 + +Additional entities + +Method 1 + + 2010_United_States_Census + +Method 2 + + + +-------------- + QUESTION: where did the massive allied invasion of northern france take place in june 1944? +-Canonic Entity : invasion_of_normandy +-Target Values : (list (description Normandy)) +-Candidate Entities: + + + +-------------- + QUESTION: which countries are part of the united kingdom? +-Canonic Entity : countries_of_the_united_kingdom +-Target Values : (list (description Eurasia) (description "Western Europe") (description "United Kingdom, with Dependencies and Territories")) +-Candidate Entities: Income_tax_in_European_countries + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what is the postcode for london? +-Canonic Entity : e_postcode_area +-Target Values : (list (description "E15 4HT") (description "W1F 0HS") (description "W11 3JS") (description "E5 8BP") (description "SW1P 2PD") (description "NW1 3HB") (description "E6 6ER") (description W1W5BD) (description "WC1X 8RA") (description "SE1 7JW")) +-Candidate Entities: London_postal_district + +Additional entities + +Method 1 + + London_postal_district + +Method 2 + + London_postal_district + + + +-------------- + QUESTION: who killed vincent chin dvd? +-Canonic Entity : who_killed_vincent_chin? +-Target Values : (list (description "Ronald Ebens") (description "Michael Nitz")) +-Candidate Entities: Murder_of_Vincent_Chin, Chin_Up_Chin_Up, Vincent_"Randy"_Chin | Vincent_Gigante | DVD_player, HD_DVD, DVD_card, Frida_–_The_DVD, DVD + +Additional entities + +Method 1 + + Murder_of_Vincent_Chin + + DVD + +Method 2 + + Murder_of_Vincent_Chin + + + +-------------- + QUESTION: what other books did jules verne wrote? +-Canonic Entity : jules_verne +-Target Values : (list (description "Off on a Comet") (description "Five Weeks in a Balloon") (description "Gil Braltar") (description "Paris in the Twentieth Century") (description "The Child of the Cavern") (description "Tribulations of a Chinaman in China") (description "The Mysterious Island") (description "The Adventures of Captain Hatteras") (description "Facing the Flag") (description "The Begum's Fortune")) +-Candidate Entities: Jules_Férat + +Additional entities + +Method 1 + + Jules_Férat + +Method 2 + + Jules_Férat + + + +-------------- + QUESTION: what is the currency name of brazil? +-Canonic Entity : currency +-Target Values : (list (description "Brazilian real")) +-Candidate Entities: + + + +-------------- + QUESTION: what language does fiji? +-Canonic Entity : fiji_hindi +-Target Values : (list (description "Fiji Hindi") (description "English Language") (description "Fijian Language")) +-Candidate Entities: Governor_of_Fiji, Fiji, Outline_of_Fiji, University_of_Fiji, Arya_Samaj_in_Fiji + +Additional entities + +Method 1 + + University_of_Fiji + +Method 2 + + Fiji + + + +-------------- + QUESTION: what is the second percy jackson book called? +-Canonic Entity : percy_jackson +-Target Values : (list (description "The Sea of Monsters")) +-Candidate Entities: The_Lightning_Thief, Percy_the_Small_Engine, The_Demigod_Files | Percy_Nilegård + +Additional entities + +Method 1 + + The_Lightning_Thief + +Method 2 + + The_Lightning_Thief + + + +-------------- + QUESTION: what did gregor mendel conducted his experiments on? +-Canonic Entity : gregor_mendel +-Target Values : (list (description "Experiments in plant hybridisation")) +-Candidate Entities: Mendel_(Martian_crater) + +Additional entities + +Method 1 + +Method 2 + + Mendel_(Martian_crater) + + + +-------------- + QUESTION: who did jon gosselin cheat with? +-Canonic Entity : jon_gosselin +-Target Values : (list (description "Deanna Hummel")) +-Candidate Entities: Gosselin | Cheat_the_Gallows + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where is mitsubishi headquarters? +-Canonic Entity : mitsubishi +-Target Values : (list (description Tokyo)) +-Candidate Entities: Security_Forces_Headquarters_–_Wanni, Security_Forces_Headquarters_–_East, FIFA_headquarters, Headquarters_(album), Security_Forces_Headquarters_–_Jaffna + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where is jay cutler now? +-Canonic Entity : jay_cutler_(american_football) +-Target Values : (list (description "Chicago Bears")) +-Candidate Entities: + + + +-------------- + QUESTION: what are eu countries? +-Canonic Entity : eu,_seine-maritime +-Target Values : (list (description "Czech Republic") (description Estonia) (description Denmark) (description Finland) (description France) (description Austria) (description Germany) (description Belgium) (description Cyprus) (description Bulgaria)) +-Candidate Entities: Nei_til_EU + + + +-------------- + QUESTION: what influenced vincent van gogh work? +-Canonic Entity : vincent_van_gogh +-Target Values : (list (description "Jozef Israëls") (description "Paul Cézanne") (description "Anton Mauve") (description "Peter Paul Rubens") (description "Jean-François Millet") (description "Willem Roelofs") (description "Eugène Delacroix") (description "Claude Monet") (description Rembrandt)) +-Candidate Entities: Work_(physics), Work_loop, Work_(electrical), Care_work, Man_@_Work + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what time zones are there in the us? +-Canonic Entity : zones_(band) +-Target Values : (list (description "North American Eastern Time Zone") (description UTC−06:00) (description "Mountain Time Zone") (description "Hawaii–Aleutian Time Zone") (description "Pacific Time Zone") (description "Samoa Time Zone") (description "Alaska Time Zone") (description UTC-5) (description "Atlantic Time Zone") (description "Central Time Zone")) +-Candidate Entities: Time_in_Europe, Time_in_the_United_States, Effects_of_time_zones_on_North_American_broadcasting, Time_zone, Lists_of_time_zones, Time_in_Indiana | London_fare_zones, Cultural_Zones_of_India | Time_in_Russia, List_of_time_zones_by_country, Time_in_Brazil, List_of_military_time_zones, Time_in_China, Time_in_Antarctica, Historical_time_zones_of_China, Time_in_Canada, Time_in_Alaska, Central_Time_Zone, Time_in_Chile + +Additional entities + +Method 1 + + Central_Time_Zone + +Method 2 + + + +-------------- + QUESTION: what are the 5 biggest cities in the usa? +-Canonic Entity : the_biggest_loser_australia:_couples_2 +-Target Values : (list (description "New York")) +-Candidate Entities: Shrinking_cities_in_the_United_States + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what language do australian people speak? +-Canonic Entity : speak!!! +-Target Values : (list (description Lojban) (description "Esperanto Language") (description "English Language")) +-Candidate Entities: The_People_Speak_(film), Speak_(No-Man_album), Speak_(Godsmack_song), I_Don't_Speak_the_Language, Speak_(film), SPEAK_(test), The_People_Speak + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who did ben stiller play in megamind? +-Canonic Entity : ben_stiller +-Target Values : (list (description Bernard)) +-Candidate Entities: Megamind, Megamind_(video_game) | Bonner_L._Stiller + +Additional entities + +Method 1 + + Megamind + +Method 2 + + Megamind + + + +-------------- + QUESTION: what countries did queen victoria rule? +-Canonic Entity : queen_victoria +-Target Values : (list (description "United Kingdom") (description "British Raj")) +-Candidate Entities: Victoria_Street,_Melbourne | Hückel's_rule | Queen_(Snow_White) | Victoria_Memorial,_London + +Additional entities + +Method 1 + + Victoria_Memorial,_London + +Method 2 + + Queen_(Snow_White) + + Victoria_Street,_Melbourne + + Victoria_Memorial,_London + + + +-------------- + QUESTION: who are betty white's parents? +-Canonic Entity : white's_professor_of_moral_philosophy +-Target Values : (list (description "Tess Curtis Cachikis") (description "Horace Lawrence White")) +-Candidate Entities: Betty_White | My_Parents_Are_Aliens | Betty_(film) + +Additional entities + +Method 1 + + Betty_White + +Method 2 + + + +-------------- + QUESTION: where did jeff dunham go to school? +-Canonic Entity : jeff_dunham +-Target Values : (list (description "Baylor University")) +-Candidate Entities: Dunham_on_the_Hill,_Cheshire, The_Dunham_School, Ransom_W._Dunham + +Additional entities + +Method 1 + + Ransom_W._Dunham + +Method 2 + + + +-------------- + QUESTION: what college did kevjumba? +-Canonic Entity : kevjumba +-Target Values : (list (description "University of California, Davis")) +-Candidate Entities: Burnley_College, Clydebank_College, Darlington_College, Kilgore_College, Gorseinon_College + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who does david james play for 2011? +-Canonic Entity : david_james_(footballer) +-Target Values : (list (description "Bristol City F.C.")) +-Candidate Entities: 2011_Conference_Premier_play-off_Final + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what was the purpose of the 1964 gulf of tonkin resolution? +-Canonic Entity : gulf_of_tonkin +-Target Values : (list (description "Yen Bai mutiny")) +-Candidate Entities: Tonkin | Beibu_Gulf_Economic_Rim | Tonkin_(disambiguation) | Beauty_with_a_Purpose + +Additional entities + +Method 1 + + Tonkin + + Beibu_Gulf_Economic_Rim + +Method 2 + + Tonkin_(disambiguation) + + Beibu_Gulf_Economic_Rim + + Tonkin + + + +-------------- + QUESTION: what movies did diana ross play in? +-Canonic Entity : diana_ross +-Target Values : (list (description "The Wiz")) +-Candidate Entities: + + + +-------------- + QUESTION: what is the zip code for minneapolis? +-Canonic Entity : zip_code +-Target Values : (list (description 55406) (description 55407) (description 55409) (description 55408) (description 55410) (description 55411) (description 55405) (description 55403) (description 55402) (description 55401)) +-Candidate Entities: Minneapolis + +Additional entities + +Method 1 + + Minneapolis + +Method 2 + + Minneapolis + + + +-------------- + QUESTION: what country is the west bank located in? +-Canonic Entity : west_bank +-Target Values : (list (description "Palestinian National Authority")) +-Candidate Entities: Green_Bank,_West_Virginia, East_Bank,_West_Virginia | Bank_of_Beirut_S.A.L., Bank_of_British_West_Africa | West_Country_dialects, Country_music, West_Country | Bank_of_the_West, Bank_Street_College_of_Education | Governorates_of_the_Palestinian_National_Authority | South_Bank | Protocol_for_the_Suppression_of_Unlawful_Acts_against_the_Safety_of_Fixed_Platforms_Located_on_the_Continental_Shelf + +Additional entities + +Method 1 + + Country_music + +Method 2 + + + +-------------- + QUESTION: who won golden boot? +-Canonic Entity : golden_boot_awards +-Target Values : (list (description "Lionel Messi")) +-Candidate Entities: Golden_boot_compensation, The_Golden_Boot, Premier_League_Golden_Boot + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where did jane mansfield die? +-Canonic Entity : mansfield,_washington +-Target Values : (list (description Slidell)) +-Candidate Entities: + + + +-------------- + QUESTION: where is the thames river located? +-Canonic Entity : river_thames +-Target Values : (list (description London)) +-Candidate Entities: Thames_River_(Connecticut), Thames_steamers + +Additional entities + +Method 1 + + Thames_steamers + +Method 2 + + Thames_steamers + + + +-------------- + QUESTION: when did kings last win stanley cup? +-Canonic Entity : stanley_cup_finals +-Target Values : (list (description "2012 Stanley Cup Finals")) +-Candidate Entities: 2002_Stanley_Cup_playoffs, Stanley_Cup_playoffs, 1924_Stanley_Cup_playoffs, 1922_Stanley_Cup_playoffs | For_the_Win, WIN_(TV_station) | Sacramento_Kings | Win_Win_(film) + +Additional entities + +Method 1 + + Sacramento_Kings + + Stanley_Cup_playoffs + +Method 2 + + Sacramento_Kings + + Stanley_Cup_playoffs + + + +-------------- + QUESTION: what school did william shakespeare attend? +-Canonic Entity : william_shakespeare +-Target Values : (list (description "King Edward VI School, Stratford-upon-Avon")) +-Candidate Entities: Shakespeare_in_the_Park_Festivals, Complete_Works_of_Shakespeare, Riverside_Shakespeare, Shakespeare_baronets | Plumtree_School, Wills_Point_High_School, Aberdare_High_School, Notre_Dame_Catholic_School + +Additional entities + +Method 1 + + Shakespeare_in_the_Park_Festivals + +Method 2 + + Shakespeare_in_the_Park_Festivals + + + +-------------- + QUESTION: what money do they use in chile? +-Canonic Entity : chile +-Target Values : (list (description "Chilean peso")) +-Candidate Entities: The_Future_of_Money + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what college did peyton manning? +-Canonic Entity : peyton_manning +-Target Values : (list (description "University of Tennessee")) +-Candidate Entities: + + + +-------------- + QUESTION: what are the 2 conferences in the nfl? +-Canonic Entity : nfl_street_2 +-Target Values : (list (description "National Football Conference") (description "NFL Films") (description "American Football Conference")) +-Candidate Entities: Eastern_and_Western_Conferences_(NFL)_1933–69 | NFL_Rush_Zone, NFL_Jams_(1998_album) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: when did jennifer lopez start on in living color? +-Canonic Entity : jennifer_lopez +-Target Values : (list (description "In Living Color (Season 4)")) +-Candidate Entities: In_Living_Color + +Additional entities + +Method 1 + + In_Living_Color + +Method 2 + + In_Living_Color + + + +-------------- + QUESTION: when is portland marathon? +-Canonic Entity : portland,_victoria +-Target Values : (list (description "Zora Lancaster")) +-Candidate Entities: + + + +-------------- + QUESTION: what character does ellen play in finding nemo? +-Canonic Entity : finding_nemo +-Target Values : (list (description Dory)) +-Candidate Entities: Finding_Dory + +Additional entities + +Method 1 + + Finding_Dory + +Method 2 + + Finding_Dory + + + +-------------- + QUESTION: when was the last time the ny giants were in the super bowl? +-Canonic Entity : super_bowl +-Target Values : (list (description "Super Bowl XXV")) +-Candidate Entities: New_York_Giants + +Additional entities + +Method 1 + + New_York_Giants + +Method 2 + + New_York_Giants + + + +-------------- + QUESTION: what are all the names of harry potter? +-Canonic Entity : harry_potter_(film_series) +-Target Values : (list (description "Harry Potter and the Half-Blood Prince") (description "Harry Potter and the Deathly Hallows") (description "Harry Potter and the Goblet of Fire") (description "Harry Potter and the Philosopher's Stone") (description "Harry Potter and the Chamber of Secrets") (description "Harry Potter and the Order of the Phoenix") (description "Harry Potter and the Prisoner of Azkaban")) +-Candidate Entities: + + + +-------------- + QUESTION: what does nick cannon play in? +-Canonic Entity : nick_cannon +-Target Values : (list (description "The Nightlife") (description "Up All Night") (description "Soul Train") (description "All That") (description "Short Circuitz") (description "Wild 'n Out") (description "The Nick Cannon Show") (description "Mash Up") (description "America's Got Talent")) +-Candidate Entities: Cannon_(TV_series), Cannon | Désirée_Nick | Elaine_A._Cannon | Play_On! + +Additional entities + +Method 1 + + Cannon + + Désirée_Nick + +Method 2 + + + +-------------- + QUESTION: what sort of government does brazil have? +-Canonic Entity : sort_(unix) +-Target Values : (list (description "Constitutional republic") (description "Presidential system") (description "Federal republic")) +-Candidate Entities: + + + +-------------- + QUESTION: which airport is best to fly into milan? +-Canonic Entity : a.c._milan +-Target Values : (list (description "Il Caravaggio International Airport") (description "Malpensa Airport") (description "Linate Airport")) +-Candidate Entities: Fly_by_Night_Airport + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where did matthias schleiden go to school? +-Canonic Entity : matthias_jakob_schleiden +-Target Values : (list (description "Ruprecht Karl University of Heidelberg")) +-Candidate Entities: Schleiden | St._Matthias_High_School + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what county is rihanna from? +-Canonic Entity : rihanna_(book) +-Target Values : (list (description "Saint Michael Parish") (description Barbados)) +-Candidate Entities: Rihanna, Rihanna_(Orezi_song), Rihanna_777_Documentary..._7Countries7Days7Shows + +Additional entities + +Method 1 + + Rihanna + +Method 2 + + Rihanna + + + +-------------- + QUESTION: what happened to daddy yankee? +-Canonic Entity : daddy_yankee +-Target Values : (list (description Gunshot)) +-Candidate Entities: + + + +-------------- + QUESTION: what country is located in the balkan peninsula? +-Canonic Entity : balkans +-Target Values : (list (description "Lake Prespa") (description Kosovo) (description "Republic of Macedonia") (description Montenegro) (description Macedonia) (description "Kingdom of Serbia") (description Albania) (description "Federal Republic of Yugoslavia") (description "Small Prespa Lake") (description "Republic of Serbian Krajina Government in Exile")) +-Candidate Entities: Balkan_Wars | Monterey_Peninsula_Country_Club | Balkan_Battle_Group | Peninsula + +Additional entities + +Method 1 + + Peninsula + + Balkan_Wars + +Method 2 + + Peninsula + + Balkan_Wars + + + +-------------- + QUESTION: what 6 states border south dakota? +-Canonic Entity : university_of_south_dakota +-Target Values : (list (description Iowa) (description "North Dakota") (description Wyoming) (description Minnesota) (description Nebraska) (description Montana)) +-Candidate Entities: Border_Region, Indonesia–Vietnam_border, Indonesia–Singapore_border, Norway–Russia_border, Inner_German_border + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what are the main languages spoken in spain? +-Canonic Entity : languages_of_spain +-Target Values : (list (description "Spanish Language")) +-Candidate Entities: Spain | Northern_Songhay_languages, Spoken_language | Spoken_(band) | Main_(river), Main_Street_District,_Dallas, Main_Street, Rossington_Main_F.C., Harbour_Main + +Additional entities + +Method 1 + + Spain + +Method 2 + + Spain + + + +-------------- + QUESTION: what songs did mozart write? +-Canonic Entity : write_(system_call) +-Target Values : (list (description "1034 Mozartia")) +-Candidate Entities: I_Write_the_Songs | Biographies_of_Mozart, Beethoven_and_Mozart, Haydn_and_Mozart, Mozart_the_music_processor, Wolfgang_Amadeus_Mozart_and_Prague, Franz_Xaver_Wolfgang_Mozart, Mozart_(1955_film) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what language do they speak in thai? +-Canonic Entity : speak!!! +-Target Values : (list (description "Tai–Kadai languages")) +-Candidate Entities: Thai_language, Southern_Thai_language, Northern_Thai_language, Isan_language | Speak_(No-Man_album) | Phu_Thai_language, Formal_Thai_national_costume, Thai_Town,_Los_Angeles | Speak_(Godsmack_song), Speak_for_Yourself, I_Don't_Speak_the_Language + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who is the new senator of montana? +-Canonic Entity : senator_(bishop_of_milan) +-Target Values : (list (description "Jon Tester")) +-Candidate Entities: Montana + +Additional entities + +Method 1 + + Montana + +Method 2 + + + +-------------- + QUESTION: which airport to fly in rome? +-Canonic Entity : rome_urbe_airport +-Target Values : (list (description "Ciampino – G.B. Pastine International Airport") (description "Rome Viterbo Airport") (description "Italian Met Office Airport") (description "Leonardo da Vinci–Fiumicino Airport") (description "Urbe Airport")) +-Candidate Entities: + + + +-------------- + QUESTION: where are the ruins of pompeii? +-Canonic Entity : pompeii +-Target Values : (list (description "Pompeii and the Roman Villa: Art and Culture around the Bay of Naples")) +-Candidate Entities: Breakfast_in_the_Ruins, Expedition_to_the_Ruins_of_Greyhawk, The_Ruins_of_Beverast, Ruins_(Japanese_band) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what language people speak in afghanistan? +-Canonic Entity : speak!!! +-Target Values : (list (description "Pashto language") (description "Farsi, Eastern Language")) +-Candidate Entities: The_People_Speak_(film), Speak_(No-Man_album) | Afghanistan | Speak_(Godsmack_song), I_Don't_Speak_the_Language | Demography_of_Afghanistan + +Additional entities + +Method 1 + + Afghanistan + +Method 2 + + + +-------------- + QUESTION: what language do people speak in brazil wikipedia? +-Canonic Entity : speak!!! +-Target Values : (list (description "Brazilian Portuguese") (description "Portuguese Language") (description "Italian Language")) +-Candidate Entities: The_People_Speak_(film), Speak_(No-Man_album) | Chinese_Wikipedia, German_Wikipedia, Ukrainian_Wikipedia | Speak_(Godsmack_song) | English_Wikipedia | Name_of_Brazil + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what cities should i visit in california? +-Canonic Entity : beach_cities +-Target Values : (list (description "Colusa County") (description "San Bernardino County") (description "Contra Costa County") (description "El Dorado County") (description "Alameda County") (description "Calaveras County") (description "Del Norte County") (description "Alpine County") (description "Amador County") (description "Rancho Cucamonga")) +-Candidate Entities: Gateway_Cities, List_of_cities_and_towns_in_California | Visit_Florida, The_Visit, Pope_Benedict_XVI's_visit_to_the_United_Kingdom + +Additional entities + +Method 1 + + Gateway_Cities + +Method 2 + + Gateway_Cities + + + +-------------- + QUESTION: where was princess leia raised? +-Canonic Entity : princess_leia +-Target Values : (list (description "Polis Massa")) +-Candidate Entities: Princess_(car) | Born_and_Raised_in_Black_&_White, Raised_on_Rock, Born_&_Raised_(Parks_and_Recreation) | Princess_(magazine) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what is the name of the pittsburgh steelers head coach? +-Canonic Entity : pittsburgh_steelers +-Target Values : (list (description "Mike Tomlin")) +-Candidate Entities: Head_coach + +Additional entities + +Method 1 + + Head_coach + +Method 2 + + Head_coach + + + +-------------- + QUESTION: when does canada's wonderland close? +-Canonic Entity : canada's_wonderland +-Target Values : (list (description "Émilie Heymans") (description "Blythe Hartley")) +-Candidate Entities: + + + +-------------- + QUESTION: when did the lakers win the championship? +-Canonic Entity : los_angeles_lakers +-Target Values : (list (description "1985 NBA Finals") (description "1948 NBL Finals") (description "1954 NBA Finals") (description "1972 NBA Finals") (description "1949 BAA Finals") (description "1952 NBA Finals") (description "1980 NBA Finals") (description "1950 NBA Finals") (description "1953 NBA Finals") (description "1982 NBA Finals")) +-Candidate Entities: + + + +-------------- + QUESTION: what year was the great san francisco fire? +-Canonic Entity : great_seattle_fire +-Target Values : (list (description "1906 San Francisco earthquake")) +-Candidate Entities: San_Francisco, South_San_Francisco,_California, Government_of_San_Francisco, San_Francisco_SPCA, San_Francisco_de_Asís, San_Francisco_Fire_Department, San_Francisco_Mint, San_Francisco,_Minnesota, San_Francisco_Bay_Area, 1906_San_Francisco_earthquake, San_Francisco_Symphony, San_Francisco_Rumble, San_Francisco_and_San_Jose_Railroad, French_Consulate_General,_San_Francisco, San_Diego_Fire-Rescue_Department, Presidio_of_San_Francisco, San_Francisco_Bay, San_Francisco_Marriott_Marquis, San_Francisco_Opera | Tropical_year, Time_Person_of_the_Year, Year_Four, Year_Nine, Polish_Sportspersonality_of_the_Year + +Additional entities + +Method 1 + + San_Francisco + +Method 2 + + San_Francisco + + + +-------------- + QUESTION: what countries share borders with france? +-Canonic Entity : share_of_voice +-Target Values : (list (description Italy) (description Monaco) (description Luxembourg) (description Andorra) (description Switzerland) (description Germany) (description "Bay of Biscay") (description Belgium) (description Piedmont) (description Spain)) +-Candidate Entities: List_of_countries_and_territories_by_land_borders, Income_tax_in_European_countries, List_of_countries_and_territories_by_land_and_maritime_borders | Catherine_Share + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what did patrick swayze sing? +-Canonic Entity : patrick_swayze +-Target Values : (list (description "She's Like The Wind")) +-Candidate Entities: Sing_Sing + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what style of art is salvador dali? +-Canonic Entity : salvador_dali_museum +-Target Values : (list (description Painting) (description Photography) (description Sculpture) (description Drawing)) +-Candidate Entities: Salvador_Dalí_(film) | Dali_City, The_Death_of_Salvador_Dali, Dali_(fossil) | Salvador_Dalí | Dali + + + +-------------- + QUESTION: what city was leonardo da vinci from? +-Canonic Entity : cultural_references_to_leonardo_da_vinci +-Target Values : (list (description Vinci)) +-Candidate Entities: + + + +-------------- + QUESTION: what did george v die of? +-Canonic Entity : to_die_for +-Target Values : (list (description Euthanasia)) +-Candidate Entities: + + + +-------------- + QUESTION: what are the three major rivers in south america? +-Canonic Entity : three_rivers,_michigan +-Target Values : (list (description "Yisrael Mordecai Safeek")) +-Candidate Entities: Four_Major_Rivers_Project | Three_Rivers,_Texas, Three_Rivers,_Oregon, Three_Rivers,_California, Three_Rivers_Academy, Three_Rivers,_New_Mexico, Three_Rivers_Stadium, Three_Rivers,_Massachusetts | South_America | Three_Rivers_District_Council, Major_rivers_of_India, Three_Rivers_District, Bob_Rivers, Three_Rivers_School_District_(Oregon), St._Gregory's_Abbey,_Three_Rivers, Three_Rivers, Three_Rivers_Community_College_(Connecticut), Three_Rivers_Petroglyph_Site | FC_Ameri_Tbilisi, Ameri, Goli_Ameri + +Additional entities + +Method 1 + + South_America + +Method 2 + + St._Gregory's_Abbey,_Three_Rivers + + + +-------------- + QUESTION: what other discoveries did isaac newton discover? +-Canonic Entity : isaac_newton +-Target Values : (list (description "Reflecting telescope")) +-Candidate Entities: Isaac_N._Youngs, Isaac_N._Arnold, Isaac_N._Morris | DISCover | Isaac_N._Comstock + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who started pixar? +-Canonic Entity : pixar +-Target Values : (list (description "Edwin Catmull") (description "Steve Jobs")) +-Candidate Entities: Get_the_Party_Started, Started_from_the_Bottom, It_Started_with_Eve, I_Can't_Get_Started, I_Started_a_Joke + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who is tia and tamera mowry parents? +-Canonic Entity : tia_&_tamera +-Target Values : (list (description "Darlene Mowry") (description "Timothy Mowry")) +-Candidate Entities: Tamera_Mowry, Tia_and_Tamara_Mowry, Mowry + + + +-------------- + QUESTION: what political party was lincoln? +-Canonic Entity : political_party +-Target Values : (list (description "Illinois Republican Party") (description "Republican Party") (description "National Union Party") (description "Whig Party")) +-Candidate Entities: + + + +-------------- + QUESTION: what would have happened if germany had won ww1? +-Canonic Entity : it_couldn't_have_happened_–_but_it_did +-Target Values : (list (description de)) +-Candidate Entities: + + + +-------------- + QUESTION: what kind of government is china? +-Canonic Entity : reorganized_national_government_of_china +-Target Values : (list (description "Single-party state") (description "Communist state") (description "Socialist state")) +-Candidate Entities: Gifts_in_kind, A_Kind_of_Alchemy | China | Johann_Friedrich_Kind, Kind_(type_theory), My_Kind_of_Woman/My_Kind_of_Man + + + +-------------- + QUESTION: where is the nation of greece located? +-Canonic Entity : greece_(town),_new_york +-Target Values : (list (description Europe) (description Eurasia) (description "Southeast Europe")) +-Candidate Entities: Immigration_to_Greece | The_Nation_and_Athenaeum, Programming_the_Nation? | Cherokee_Nation, The_Nation_of_Ulysses, The_Nation_(Malawi) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what three countries does mexico border? +-Canonic Entity : mexico–united_states_border +-Target Values : (list (description "Pacific Ocean") (description "Gulf of California") (description "Contiguous United States") (description "Caribbean Sea") (description "United States of America") (description "Gulf of Mexico") (description Guatemala) (description California) (description "Sea of Cortéz") (description Belize)) +-Candidate Entities: Guatemala–Mexico_border, Belize–Mexico_border, Finnish–Swedish_border, Indonesia–Singapore_border, Indonesia–Thailand_border, Norway–Russia_border, List_of_sets_of_four_countries_that_border_one_another, Malaysia–Philippines_border, Indonesia–Malaysia_border, Indonesia–Vietnam_border, Inner_German_border, Slovakia–Ukraine_border | Three_Rivers,_New_Mexico | Brunei–Malaysia_border, Malaysia–Vietnam_border | Doe_people, Samuel_Doe, Lawrence_Doe, Nicholas_B._Doe, Francis_Doe + +Additional entities + +Method 1 + + Guatemala–Mexico_border + +Method 2 + + Guatemala–Mexico_border + + + +-------------- + QUESTION: what year was the new york blackout? +-Canonic Entity : the_blackout!_the_blackout!_the_blackout! +-Target Values : (list (description "New York City blackout of 1977")) +-Candidate Entities: The_Blackout_(band), Blackout_Movement, New_York_City_blackout_of_1977, The_Blackout_All-Stars, The_Blackout_Crew, Blackout_(broadcasting), 2006_Queens_blackout, Northeast_blackout_of_1965, National_Football_League_television_blackout_policies, Blackout_(Transformers), 2010_Chile_blackout, Blackout_(Britney_Spears_album), Blackout_(John_Rocco_novel), Shallow_water_blackout + +Additional entities + +Method 1 + + The_Blackout_(band) + +Method 2 + + The_Blackout_(band) + + + +-------------- + QUESTION: which countries have english as native language? +-Canonic Entity : english_language +-Target Values : (list (description Canada) (description Australia) (description "Kingdom of Great Britain") (description "United States of America") (description "United Kingdom") (description Ireland) (description "New Zealand")) +-Candidate Entities: English_in_the_Netherlands, Liberian_English | List_of_countries_by_English-speaking_population | English_terms_with_diacritical_marks | Heavily_indebted_poor_countries, Income_tax_in_European_countries, FIBA_European_Championship_for_Small_Countries, Megadiverse_countries + +Additional entities + +Method 1 + + List_of_countries_by_English-speaking_population + + English_terms_with_diacritical_marks + +Method 2 + + Megadiverse_countries + + List_of_countries_by_English-speaking_population + + English_in_the_Netherlands + + English_terms_with_diacritical_marks + + + +-------------- + QUESTION: what position does rafael furcal play? +-Canonic Entity : rafael_furcal +-Target Values : (list (description "Second baseman") (description Shortstop)) +-Candidate Entities: Position_(vector) | Play_On! + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what are major exports of the usa? +-Canonic Entity : major_matt_mason_usa +-Target Values : (list (description "Pharmaceutical Preparations") (description Food) (description "Industrial Organic Chemicals, NEC") (description Automobile)) +-Candidate Entities: Rare_Exports:_A_Christmas_Tale | Major_(manga) + +Additional entities + +Method 1 + + Major_(manga) + +Method 2 + + + +-------------- + QUESTION: what shows did kellie martin star in? +-Canonic Entity : kellie_martin +-Target Values : (list (description "A Pup Named Scooby-Doo") (description "Crisis Center") (description "Father Murphy") (description "Life Goes On") (description Christy)) +-Candidate Entities: Kellie | The_Star_(Malaysia), FSC_Star + +Additional entities + +Method 1 + + The_Star_(Malaysia) + +Method 2 + + + +-------------- + QUESTION: where did rihanna grow up? +-Canonic Entity : rihanna_(book) +-Target Values : (list (description "Saint Michael Parish") (description Barbados)) +-Candidate Entities: Rihanna + +Additional entities + +Method 1 + + Rihanna + +Method 2 + + Rihanna + + + +-------------- + QUESTION: where is whistler mountain located? +-Canonic Entity : whistler,_british_columbia +-Target Values : (list (description "British Columbia")) +-Candidate Entities: Whistler_Mountain, Whistler_Olympic_and_Paralympic_Village, Whistler + +Additional entities + +Method 1 + + Whistler_Mountain + +Method 2 + + Whistler_Mountain + + + +-------------- + QUESTION: what currency do i need in cuba? +-Canonic Entity : cuba +-Target Values : (list (description "Cuban peso") (description "Cuban convertible peso")) +-Candidate Entities: Currency + +Additional entities + +Method 1 + + Currency + +Method 2 + + Currency + + + +-------------- + QUESTION: what country did james cook come from? +-Canonic Entity : james_cook +-Target Values : (list (description "Kingdom of Great Britain")) +-Candidate Entities: James_Hume_Cook + +Additional entities + +Method 1 + + James_Hume_Cook + +Method 2 + + James_Hume_Cook + + + +-------------- + QUESTION: who is julia roberts married to 2012? +-Canonic Entity : julia_roberts +-Target Values : (list (description "Daniel Moder")) +-Candidate Entities: Julia_(daughter_of_Drusus_the_Younger) | Married_to_It + +Additional entities + +Method 1 + + Married_to_It + +Method 2 + + + +-------------- + QUESTION: what sport does rebecca adlington compete in? +-Canonic Entity : rebecca_adlington +-Target Values : (list (description Swimming)) +-Candidate Entities: + + + +-------------- + QUESTION: when did the christchurch quake happened? +-Canonic Entity : quake_(video_game) +-Target Values : (list (description "2011 Christchurch earthquake")) +-Candidate Entities: Christchurch + +Additional entities + +Method 1 + + Christchurch + +Method 2 + + + +-------------- + QUESTION: what other countries does canada trade with? +-Canonic Entity : free_trade_agreements_of_canada +-Target Values : (list (description "United Kingdom") (description Japan) (description "United States of America")) +-Candidate Entities: Heavily_indebted_poor_countries, Income_tax_in_European_countries, FIBA_European_Championship_for_Small_Countries, Megadiverse_countries + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what to see in singapore at night? +-Canonic Entity : night_safari,_singapore +-Target Values : (list (description "Kampung Days") (description "Tiger Sky Tower") (description "Singapore Zoo") (description "Telok Ayer Market") (description "Former Saint Joseph's Institution") (description "Armenian Church, Singapore") (description "Singapore Flyer") (description "Kong Meng San Phor Kark See Monastery") (description "Sri Mariamman Temple, Singapore") (description "Jurong BirdPark")) +-Candidate Entities: Singapore, Organisation_of_the_Government_of_Singapore + +Additional entities + +Method 1 + + Singapore + +Method 2 + + Singapore + + + +-------------- + QUESTION: who played mason capwell? +-Canonic Entity : mason,_texas +-Target Values : (list (description "Nancy Lee Grahn")) +-Candidate Entities: + + + +-------------- + QUESTION: what is james madison most famous for? +-Canonic Entity : james_madison_university +-Target Values : (list (description "President of the United States")) +-Candidate Entities: The_Famous_Flames | James_Madison_Morton,_Jr. + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who did the maccabees revolted against? +-Canonic Entity : the_maccabees_(band) +-Target Values : (list (description "Seleucid Empire")) +-Candidate Entities: 2_Maccabees, Maccabees, Maccabees_(disambiguation), 1_Maccabees + +Additional entities + +Method 1 + +Method 2 + + Maccabees + + + +-------------- + QUESTION: where was the battle of antietam creek? +-Canonic Entity : battle_of_antietam +-Target Values : (list (description Pennsylvania) (description Maryland)) +-Candidate Entities: + + + +-------------- + QUESTION: during what war did abraham lincoln serve as president? +-Canonic Entity : assassination_of_abraham_lincoln +-Target Values : (list (description "American Civil War")) +-Candidate Entities: Lincoln_(2012_film) + +Additional entities + +Method 1 + + Lincoln_(2012_film) + +Method 2 + + Lincoln_(2012_film) + + + +-------------- + QUESTION: who are shakespeare's parents names? +-Canonic Entity : shakespeare's_handwriting +-Target Values : (list (description "John Shakespeare") (description "Mary Shakespeare")) +-Candidate Entities: + + + +-------------- + QUESTION: where is she from shakira? +-Canonic Entity : shakira +-Target Values : (list (description Colombia)) +-Candidate Entities: + + + +-------------- + QUESTION: who plays captain kirk in 2009? +-Canonic Entity : captain_kirk_douglas +-Target Values : (list (description "Chris Pine")) +-Candidate Entities: James_T._Kirk | Where's_Captain_Kirk? | 2009_AFC_Champions_League_qualifying_play-off | Play_On! | 2009_Tercera_División_play-offs + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who did hera marry? +-Canonic Entity : hera_(rocket) +-Target Values : (list (description Zeus)) +-Candidate Entities: Hera, Hera_Hjartardóttir, Hera_Björk | Freedom_to_Marry | Hera_(Battlestar_Galactica), Hera_(Marvel_Comics), Hera_Group, Phir_Hera_Pheri | Marry_the_Night, Marry_the_Night, Will_You_Marry_Me?_(film) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what type of guitar does kirk hammett play? +-Canonic Entity : kirk_hammett +-Target Values : (list (description guitar) (description Sitar) (description "Bass guitar")) +-Candidate Entities: + + + +-------------- + QUESTION: what language they speak in the philippines? +-Canonic Entity : speak!!! +-Target Values : (list (description "Filipino language") (description "English Language")) +-Candidate Entities: Speak_(No-Man_album), Speak_(Godsmack_song), Speak_for_Yourself, I_Don't_Speak_the_Language, Y_Speak, Speak_of_the_Devil_(book), SPEAK_(test) | Philippines | Speak_Good_English_Movement, Speak_(band), Speak_(film) + +Additional entities + +Method 1 + + Philippines + +Method 2 + + + +-------------- + QUESTION: where is the kakadu national park located? +-Canonic Entity : kakadu_national_park +-Target Values : (list (description "Northern Territory")) +-Candidate Entities: Akaflieg_München_Mü3_Kakadu, Kakadu_(Sculthorpe), Kakadu_(software), Kakadu | Manú_National_Park, Tumacácori_National_Historical_Park, Darién_National_Park, City_of_David_National_Park + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what to do with kids in denver today? +-Canonic Entity : denver +-Target Values : (list (description "Black American West Museum & Heritage Center") (description "Denver Firefighters Museum") (description "Colorado State Capitol") (description "Denver Mint") (description "Molly Brown House") (description "Forney Transportation Museum") (description "Denver Botanic Gardens") (description "Museum of Contemporary Art Denver") (description "Denver Museum of Nature and Science") (description "Chamberlin Observatory")) +-Candidate Entities: Today_(The_Smashing_Pumpkins_song) | Bébé's_Kids | Today_(U.S._TV_program) | ...For_the_Kids + +Additional entities + +Method 1 + + Today_(U.S._TV_program) + +Method 2 + + Today_(The_Smashing_Pumpkins_song) + + Today_(U.S._TV_program) + + + +-------------- + QUESTION: what money does jamaica use? +-Canonic Entity : jamaica,_queens +-Target Values : (list (description "Jamaican dollar")) +-Candidate Entities: + + + +-------------- + QUESTION: what year did william mckinley became president? +-Canonic Entity : president_mckinley_inauguration_footage +-Target Values : (list (description 1897)) +-Candidate Entities: Assassination_of_William_McKinley, President_William_McKinley_High_School, William_McKinley, First_inauguration_of_William_McKinley, William_B._McKinley, McKinley_National_Memorial + +Additional entities + +Method 1 + + William_McKinley + +Method 2 + + + +-------------- + QUESTION: what date did kennedy become president? +-Canonic Entity : president_kennedy_school_and_community_college +-Target Values : (list (description 1/3/1947)) +-Candidate Entities: John_F._Kennedy, Assassination_of_John_F._Kennedy, Robert_F._Kennedy, Victoria_Reggie_Kennedy, Kennedy + +Additional entities + +Method 1 + + John_F._Kennedy + +Method 2 + + John_F._Kennedy + + + +-------------- + QUESTION: what timezone is colorado in right now? +-Canonic Entity : colorado +-Target Values : (list (description "Mountain Time Zone") (description UTC−07:00)) +-Candidate Entities: + + + +-------------- + QUESTION: who owns aston martin 2012? +-Canonic Entity : aston_martin +-Target Values : (list (description "David Richards")) +-Candidate Entities: Aston_Hill_Mountain_Bike_Area, Aston_University + +Additional entities + +Method 1 + +Method 2 + + Aston_Hill_Mountain_Bike_Area + + + +-------------- + QUESTION: what disease has jack osbourne got? +-Canonic Entity : jack_osbourne +-Target Values : (list (description "Multiple sclerosis")) +-Candidate Entities: Osbourne | Wilson's_disease, Pick's_disease, Dent's_disease, Rh_disease, Graves'_disease, Wilson's_disease + +Additional entities + +Method 1 + + Osbourne + +Method 2 + + Osbourne + + + +-------------- + QUESTION: what do the islamic believe? +-Canonic Entity : islamic_declaration +-Target Values : (list (description Muslims)) +-Candidate Entities: Islamic_economic_jurisprudence, Science_in_the_medieval_Islamic_world, Islamic_view_of_the_Christian_Bible + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who will david beckham play for in 2013? +-Canonic Entity : david_beckham +-Target Values : (list (description "Paris Saint-Germain F.C.")) +-Candidate Entities: Victoria_Beckham, The_Beckham_Experiment, Bend_It_Like_Beckham + +Additional entities + +Method 1 + + Victoria_Beckham + +Method 2 + + Victoria_Beckham + + + +-------------- + QUESTION: what language they speak in taiwan? +-Canonic Entity : speak!!! +-Target Values : (list (description "Standard Mandarin")) +-Candidate Entities: Speak_(No-Man_album) | Taiwan | Speak_(Godsmack_song) | Taiwanese_Sign_Language | Speak_for_Yourself, I_Don't_Speak_the_Language | Taiwan_Province,_People's_Republic_of_China | SPEAK_(test) | Southern_Taiwan_University_of_Science_and_Technology | Y_Speak | Japanese_invasion_of_Taiwan_(1895), Taiwan_Chi_Yuan_Culture_Foundation, Languages_of_Taiwan + +Additional entities + +Method 1 + + Taiwan + +Method 2 + + + +-------------- + QUESTION: who owns the toronto maple leafs? +-Canonic Entity : toronto_maple_leafs +-Target Values : (list (description "Maple Leaf Sports & Entertainment")) +-Candidate Entities: Canadiens–Maple_Leafs_rivalry, St._John's_Maple_Leafs, Nelson_Maple_Leafs + +Additional entities + +Method 1 + + Canadiens–Maple_Leafs_rivalry + +Method 2 + + St._John's_Maple_Leafs + + + +-------------- + QUESTION: what county is novato california in? +-Canonic Entity : novato,_california +-Target Values : (list (description "Marin County")) +-Candidate Entities: Novato_High_School | County_routes_in_California, Shafter,_Marin_County,_California, Marin_County,_California, Irving,_Marin_County,_California, County_routes_in_Lake_County,_California, Old_Town,_Marin_County,_California, Sonoma_County,_California, Sleepy_Hollow,_Marin_County,_California, Contra_Costa_County,_California + +Additional entities + +Method 1 + + Novato_High_School + + Marin_County,_California + +Method 2 + + Novato_High_School + + Marin_County,_California + + + +-------------- + QUESTION: what are the basic beliefs of sikhism? +-Canonic Entity : sikh_beliefs +-Target Values : (list (description Saṃsāra) (description Dharma) (description Reincarnation) (description Monotheism) (description Karma) (description Pyaar)) +-Candidate Entities: Sikhism_in_the_Netherlands | Basic_belief | Diet_in_Sikhism, Sikhism, Sikhism_in_Malaysia, Hinduism_and_Sikhism, Islam_and_Sikhism, Sikhism_and_sexual_orientation | BASIC, Basic_structure_doctrine, Bridge_Base_Basic + + + +-------------- + QUESTION: where did hernando cortez die? +-Canonic Entity : cortez_municipal_airport +-Target Values : (list (description "Castilleja de la Cuesta")) +-Candidate Entities: + + + +-------------- + QUESTION: who was liz taylor married too? +-Canonic Entity : elizabeth_taylor +-Target Values : (list (description "Richard Burton")) +-Candidate Entities: Liz_Burton | Married_to_It + +Additional entities + +Method 1 + + Married_to_It + +Method 2 + + + +-------------- + QUESTION: where was the ancient region of mesopotamia? +-Canonic Entity : mesopotamia,_greece +-Target Values : (list (description "Middle East")) +-Candidate Entities: Mesopotamia, Music_of_Mesopotamia, Mesopotamia_(Roman_province), History_of_Mesopotamia | Religions_of_the_ancient_Near_East | Mesopotamia_(theme), Murder_in_Mesopotamia | Ancient_art, Ancient_Near_East, Ancient_history, Ancient_technology | Mesopotamia_in_Classical_literature | Inuvik_Region, Aegean_Region, Geita_Region, Eurasian_Scout_Region_(World_Organization_of_the_Scout_Movement) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who was real housewives brandi married to? +-Canonic Entity : the_real_housewives +-Target Values : (list (description "Eddie Cibrian")) +-Candidate Entities: Henrietta_Marrie + +Additional entities + +Method 1 + + Henrietta_Marrie + +Method 2 + + + +-------------- + QUESTION: when did the charlotte bobcats first play in the nba? +-Canonic Entity : charlotte_bobcats +-Target Values : (list (description "2004 NBA Draft")) +-Candidate Entities: 2004_NBA_Expansion_Draft + + + +-------------- + QUESTION: what's the book hitler wrote in prison? +-Canonic Entity : the_book_of_love_(song) +-Target Values : (list (description "Mein Kampf")) +-Candidate Entities: ...And_Then_I_Wrote | Hitler:_A_Study_in_Tyranny + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where is the ottoman empire located? +-Canonic Entity : general_assembly_of_the_ottoman_empire +-Target Values : (list (description "Near East")) +-Candidate Entities: Ottoman_Vardar_Macedonia, Ottoman_Tripolitania + +Additional entities + +Method 1 + +Method 2 + + Ottoman_Tripolitania + + + +-------------- + QUESTION: which city held the summer olympics twice? +-Canonic Entity : 1988_summer_olympics +-Target Values : (list (description "Olympic games")) +-Candidate Entities: Portugal_at_the_Olympics | Calyx_of_Held, Carl_Held, Woodie_Held, Held_(song), Al_Held + +Additional entities + +Method 1 + + Portugal_at_the_Olympics + +Method 2 + + + +-------------- + QUESTION: who are the green bay packers owned by? +-Canonic Entity : green_bay_packers_records +-Target Values : (list (description "Green Bay Packers Board of Directors")) +-Candidate Entities: + + + +-------------- + QUESTION: what inspired langston hughes to write poetry? +-Canonic Entity : langston_hughes +-Target Values : (list (description "Walt Whitman")) +-Candidate Entities: + + + +-------------- + QUESTION: what languages are there in switzerland? +-Canonic Entity : languages_of_switzerland +-Target Values : (list (description "Romansh language") (description "French Language") (description "German Language") (description "Italian Language")) +-Candidate Entities: Switzerland + +Additional entities + +Method 1 + + Switzerland + +Method 2 + + Switzerland + + + +-------------- + QUESTION: when was the last time the orioles had a winning season? +-Canonic Entity : the_orioles +-Target Values : (list (description "1983 World Series")) +-Candidate Entities: Baltimore_Orioles, Gulf_Coast_League_Orioles, 2013_Baltimore_Orioles_season, 2012_Baltimore_Orioles_season, 1971_Baltimore_Orioles_season, 2011_Baltimore_Orioles_season, History_of_the_Baltimore_Orioles | Winning | List_of_Baltimore_Orioles_broadcasters, 2010_Baltimore_Orioles_season, 2014_Baltimore_Orioles_season, Orioles_de_Montréal, 1983_Baltimore_Orioles_season, List_of_Baltimore_Orioles_seasons, 1895_Baltimore_Orioles_season | Time_(magazine), Time_complexity, Time_Quartet, African_time, Time_in_Europe + +Additional entities + +Method 1 + + Baltimore_Orioles + + Time_(magazine) + +Method 2 + + Baltimore_Orioles + + + +-------------- + QUESTION: what does australia export? +-Canonic Entity : export +-Target Values : (list (description Energy) (description Agriculture)) +-Candidate Entities: Australia, Punishment_in_Australia, Boeing_Australia, MTV_Classic_Australia, Culture_of_Australia + +Additional entities + +Method 1 + + Australia + +Method 2 + + Australia + + + +-------------- + QUESTION: where did henry knox die? +-Canonic Entity : knox,_new_york +-Target Values : (list (description Thomaston)) +-Candidate Entities: + + + +-------------- + QUESTION: who was the queen of the iceni tribe? +-Canonic Entity : iceni +-Target Values : (list (description Boudica)) +-Candidate Entities: The_Tribe_(TV_series), Tribe_(Philippine_TV_program), Deadsoul_Tribe | Queen_of_the_Channel, Queen_(Snow_White) | Tribe_of_Judah, The_Tribe_(dance_band), Ben-Ishmael_Tribe, Tribe_of_Zebulun | Queen_Anne_style_architecture, Queen_Street_West + +Additional entities + +Method 1 + + Queen_Anne_style_architecture + +Method 2 + + + +-------------- + QUESTION: what is the name of the first prophet of islam? +-Canonic Entity : the_prophet_(book) +-Target Values : (list (description Muhammad)) +-Candidate Entities: Prophet, Last_prophet | Prophets_in_Islam | Prophet_(band) | Islam_and_Sikhism | Prophet_(disambiguation) | Women_in_Islam, Islam | Sequential_Circuits_Prophet_2000 | Islam_and_domestic_violence, Islam_and_antisemitism + +Additional entities + +Method 1 + + Prophet + + Islam + +Method 2 + + Prophet + + Islam + + + +-------------- + QUESTION: who is married to garry trudeau? +-Canonic Entity : garry_trudeau +-Target Values : (list (description "Jane Pauley")) +-Candidate Entities: Trudeau | Married_to_It + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where does norway get their oil? +-Canonic Entity : norway +-Target Values : (list (description "Barents Euro-Arctic Council")) +-Candidate Entities: Pennsylvania_oil_rush, Olive_pomace_oil, Oil_painting_reproduction, Waste_oil, Tight_oil, Cooking_oil, Age_of_Oil, Unconventional_oil + +Additional entities + +Method 1 + +Method 2 + + Tight_oil + + + +-------------- + QUESTION: what language do they speak in northern ireland? +-Canonic Entity : languages_of_northern_ireland +-Target Values : (list (description Irish) (description "English Language") (description "Ulster Scots dialects")) +-Candidate Entities: + + + +-------------- + QUESTION: what countries make up continental europe? +-Canonic Entity : continental_europe +-Target Values : (list (description "United Kingdom") (description Albania) (description Finland) (description "San Marino") (description France) (description Andorra) (description Liechtenstein) (description Georgia) (description Germany) (description Belgium)) +-Candidate Entities: + + + +-------------- + QUESTION: what do abrahamic religions have in common? +-Canonic Entity : abrahamic_religions +-Target Values : (list (description Monotheism)) +-Candidate Entities: Religion_in_Kerala, Christianity_and_other_religions + +Additional entities + +Method 1 + + Christianity_and_other_religions + +Method 2 + + Christianity_and_other_religions + + + +-------------- + QUESTION: what did johnny crawford sing? +-Canonic Entity : johnny_crawford +-Target Values : (list (description "Judy Loves Me") (description "Your Nose Is Gonna Grow") (description Rumors) (description Rumours) (description Daydreams) (description "Maybe It's You") (description "Cindy's Gonna Cry") (description "Cindy's Birthday") (description "Patti Ann")) +-Candidate Entities: Sing,_Sing,_Sing_(With_a_Swing) | Crawford_and_Son | Sing_Sing + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what did abraham lincoln do before he was president? +-Canonic Entity : assassination_of_abraham_lincoln +-Target Values : (list (description Statesman) (description Politician) (description Lawyer)) +-Candidate Entities: Lincoln_(2012_film) + +Additional entities + +Method 1 + + Lincoln_(2012_film) + +Method 2 + + Lincoln_(2012_film) + + + +-------------- + QUESTION: what sport does sally pearson compete in? +-Canonic Entity : sally_pearson +-Target Values : (list (description "Track and field athlete")) +-Candidate Entities: + + + +-------------- + QUESTION: where is atlanta texas located? +-Canonic Entity : atlanta,_texas +-Target Values : (list (description "Cass County")) +-Candidate Entities: The_Texas_(locomotive) | Atlanta_Cyclorama_&_Civil_War_Museum, The_Atlanta_Journal-Constitution + +Additional entities + +Method 1 + + The_Atlanta_Journal-Constitution + +Method 2 + + + +-------------- + QUESTION: who did elton john marry first? +-Canonic Entity : elton_john +-Target Values : (list (description "Renate Blauel")) +-Candidate Entities: Freedom_to_Marry + +Additional entities + +Method 1 + + Freedom_to_Marry + +Method 2 + + Freedom_to_Marry + + + +-------------- + QUESTION: where is tom cruise from? +-Canonic Entity : tom_cruise +-Target Values : (list (description Syracuse)) +-Candidate Entities: TOM_(mascot) | Thomas_Cruise_(footballer), Cruise_Lines_International_Association, Cruise_(song), The_Booze_Cruise + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what movies did madonna appear in? +-Canonic Entity : appear +-Target Values : (list (description "Shadows and Fog") (description "A League of Their Own") (description Evita) (description "Four Rooms") (description "Arthur and the Invisibles") (description "Dangerous Game") (description "Dick Tracy") (description "A Certain Sacrifice") (description "Who's That Girl?") (description "Body of Evidence")) +-Candidate Entities: Madonna_(art), Madonna_(entertainer), Madonna_of_the_Yarnwinder, Mencari_Madonna, Madonna_and_Child_(Duccio) | Sky_Movies_(New_Zealand), At_the_Movies_(U.S._TV_series) + +Additional entities + +Method 1 + + Madonna_(entertainer) + +Method 2 + + Madonna_(entertainer) + + + +-------------- + QUESTION: where does leland chapman live now? +-Canonic Entity : leland_chapman +-Target Values : (list (description Kailua)) +-Candidate Entities: Leland_T._Powers + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where was the roman colosseum located? +-Canonic Entity : colosseum +-Target Values : (list (description Rome)) +-Candidate Entities: Wales_in_the_Roman_era + +Additional entities + +Method 1 + + Wales_in_the_Roman_era + +Method 2 + + Wales_in_the_Roman_era + + + +-------------- + QUESTION: what date was abraham lincoln inaugurated? +-Canonic Entity : the_papers_of_abraham_lincoln +-Target Values : (list (description "Abraham Lincoln 1861 presidential inauguration")) +-Candidate Entities: Lincoln_(2012_film) | Inaugurated_eschatology + +Additional entities + +Method 1 + + Lincoln_(2012_film) + +Method 2 + + Lincoln_(2012_film) + + + +-------------- + QUESTION: what invention did henry ford invent? +-Canonic Entity : henry_ford +-Target Values : (list (description "Ford Motor Company")) +-Candidate Entities: Henry_P._Ford, Henry_Jones_Ford | First_to_file_and_first_to_invent | Henry_Justice_Ford | We_Didn't_Invent_the_Remix | Ford_Team_RS, Ford_Germany | Invent_This!, Invent_Now_America + +Additional entities + +Method 1 + + Henry_Jones_Ford + + Ford_Germany + +Method 2 + + Ford_Germany + + + +-------------- + QUESTION: what time zone is new york under? +-Canonic Entity : central_time_zone +-Target Values : (list (description "North American Eastern Time Zone")) +-Candidate Entities: Pacific_Time_Zone, Time_Zone_(video_game), Mountain_Time_Zone, Eastern_Time_Zone, Time_zone, Iran_Standard_Time, Chamorro_Time_Zone, Time_in_Saskatchewan, Bhutan_Time, Time_in_Peru, First_Time_in_New_York, Krasnoyarsk_Time, Time_in_Venezuela, Time_Zone_(band) | In_the_Zone_(The_Outer_Limits) | Time_in_the_United_States, Effects_of_time_zones_on_North_American_broadcasting, Time_in_Colombia + +Additional entities + +Method 1 + + Effects_of_time_zones_on_North_American_broadcasting + +Method 2 + + Time_in_the_United_States + + Mountain_Time_Zone + + + +-------------- + QUESTION: when did mayans predict end of the world? +-Canonic Entity : josé_mayans +-Target Values : (list (description 2012)) +-Candidate Entities: + + + +-------------- + QUESTION: what is the name of the book hitler wrote while in prison? +-Canonic Entity : the_book_of_love_(song) +-Target Values : (list (description "Mein Kampf")) +-Candidate Entities: ...And_Then_I_Wrote | Hitler:_A_Study_in_Tyranny + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who voiced meg in the pilot? +-Canonic Entity : pilot_(the_cleveland_show) +-Target Values : (list (description "Mila Kunis")) +-Candidate Entities: + + + +-------------- + QUESTION: what albert einstein do for math? +-Canonic Entity : albert_einstein +-Target Values : (list (description Mathematician)) +-Candidate Entities: Einstein_family + +Additional entities + +Method 1 + + Einstein_family + +Method 2 + + Einstein_family + + + +-------------- + QUESTION: where did bashar al assad study? +-Canonic Entity : bashar_al-assad +-Target Values : (list (description "University of Damascus")) +-Candidate Entities: Bashar | Monster_Study, Million_Women_Study, Oishii_Study, ESV_Study_Bible, DIS_–_Danish_Institute_for_Study_Abroad + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who plays lois lane in superman returns? +-Canonic Entity : superman_returns +-Target Values : (list (description "Kate Bosworth")) +-Candidate Entities: Lois_Lane, Superman's_Girl_Friend,_Lois_Lane, Relationship_of_Clark_Kent_and_Lois_Lane | Superman_(1978_film), Lois_&_Clark:_The_New_Adventures_of_Superman_(season_3), Lois_&_Clark:_The_New_Adventures_of_Superman_(season_2), Lois_&_Clark:_The_New_Adventures_of_Superman_(season_4), Lois_&_Clark:_The_New_Adventures_of_Superman | Loïs_Lane | Superman_in_film, Superman_(serial), Origin_of_Superman, Superman_Red/Superman_Blue, Adventures_of_Superman_(TV_series) | In_Return, Venous_return_curve, The_Return_(Bathory_album) | Play_On! | The_Nervous_Return + +Additional entities + +Method 1 + + Superman_in_film + +Method 2 + + Lois_Lane + + Superman_in_film + + Superman_(1978_film) + + + +-------------- + QUESTION: what did joseph lister do for science? +-Canonic Entity : joseph_lister,_1st_baron_lister +-Target Values : (list (description Listerine)) +-Candidate Entities: Lister_Institute_of_Preventive_Medicine, Fred_W._Lister | Joseph_Needham_Professorship_of_Chinese_History,_Science,_and_Civilization | R_A_Lister_and_Company, Lister + +Additional entities + +Method 1 + + Lister_Institute_of_Preventive_Medicine + +Method 2 + + Lister_Institute_of_Preventive_Medicine + + + +-------------- + QUESTION: who is the voice of stewie griffin from family guy? +-Canonic Entity : stewie_griffin +-Target Values : (list (description "Seth MacFarlane")) +-Candidate Entities: Stewie_Kills_Lois_and_Lois_Kills_Stewie | Peter_Griffin, Lois_Griffin | Family_Guy | Brian_Griffin | Family_Guy_Viewer_Mail_1 | Meg_Griffin | Family_Guy_(season_5), Family_Guy_(season_11), The_Griffin_Family_History | Chris_Griffin | Family_Guy_(season_10), List_of_Family_Guy_characters, Family_Guy:_Live_in_Vegas | Mr._and_Mrs._Stewie | Voice_(2AM_album), Voice_acting, Share_of_voice, Voice_(Emi_Hinouchi_album), The_Voice_(Mike_Jones_album) + +Additional entities + +Method 1 + + Voice_acting + + Mr._and_Mrs._Stewie + + Family_Guy_Viewer_Mail_1 + + Stewie_Kills_Lois_and_Lois_Kills_Stewie + + Family_Guy_(season_5) + + List_of_Family_Guy_characters + +Method 2 + + Voice_acting + + Mr._and_Mrs._Stewie + + Stewie_Kills_Lois_and_Lois_Kills_Stewie + + Family_Guy_(season_5) + + Chris_Griffin + + Meg_Griffin + + Brian_Griffin + + Peter_Griffin + + Family_Guy + + List_of_Family_Guy_characters + + + +-------------- + QUESTION: who uses new king james bible? +-Canonic Entity : king_james_version +-Target Values : (list (description Christianity)) +-Candidate Entities: The_Book_of_Mormon_and_the_King_James_Bible, King_James_Only_movement | Bible, LDS_edition_of_the_Bible, The_King_James_Study_Bible | James_A._King | Douay–Rheims_Bible | James_VI_and_I, James_G._King | NIV_Study_Bible | James_Horace_King | Neighborhood_rebranding_in_New_York_City + +Additional entities + +Method 1 + + King_James_Only_movement + + James_VI_and_I + +Method 2 + + NIV_Study_Bible + + King_James_Only_movement + + James_VI_and_I + + Douay–Rheims_Bible + + Bible + + + +-------------- + QUESTION: what films did charlie chaplin direct? +-Canonic Entity : charlie_chaplin +-Target Values : (list (description "A King in New York")) +-Candidate Entities: Chaplin_(2006_musical) + +Additional entities + +Method 1 + + Chaplin_(2006_musical) + +Method 2 + + Chaplin_(2006_musical) + + + +-------------- + QUESTION: who does lea michele dating in real life? +-Canonic Entity : lea_michele +-Target Values : (list (description "Cory Monteith")) +-Candidate Entities: Real_G4_Life + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: when did joe walsh leave the eagles? +-Canonic Entity : joe_walsh +-Target Values : (list (description 1980)) +-Candidate Entities: Eagles_(band), Philadelphia_Eagles, The_Eagles_(UK_band) | Leave_(U.S._military), You_Can_Leave_Your_Hat_On, Leave_It_to_Beaver_(film) | James_T._Walsh + +Additional entities + +Method 1 + + You_Can_Leave_Your_Hat_On + + Eagles_(band) + +Method 2 + + Eagles_(band) + + + +-------------- + QUESTION: when was the musical annie written? +-Canonic Entity : annie_(musical) +-Target Values : (list (description "Annie (1977 original Broadway cast)")) +-Candidate Entities: Annie_(1999_film), Annie_(1982_film) | Standard_written_English | Annie_(1999_film_soundtrack), Annie, Annie_(actress) | Cliff_–_The_Musical | As_It_Is_Written, Written_Songs, Written_vernacular_Chinese, Dictionary_of_Modern_Written_Arabic + +Additional entities + +Method 1 + + Annie_(1999_film_soundtrack) + + Annie_(1982_film) + +Method 2 + + Annie_(1999_film_soundtrack) + + Annie_(1982_film) + + + +-------------- + QUESTION: what should you see in london? +-Canonic Entity : london +-Target Values : (list (description "Regent's Park") (description "Tower of London") (description "Buckingham Palace") (description "Palace of Westminster") (description "London Eye") (description "Tower Bridge") (description "Hyde Park") (description "Westminster Abbey") (description "St Paul's Cathedral") (description "Trafalgar Square")) +-Candidate Entities: + + + +-------------- + QUESTION: who does billy beane work for now? +-Canonic Entity : billy_beane +-Target Values : (list (description "Oakland Athletics")) +-Candidate Entities: Beane | Work_(physics), Work_(electrical) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what subatomic particles did jj thomson discover? +-Canonic Entity : subatomic_particle +-Target Values : (list (description Electron)) +-Candidate Entities: + + + +-------------- + QUESTION: what films have taylor lautner been in? +-Canonic Entity : taylor_lautner +-Target Values : (list (description "New Moon") (description "He's a Bully, Charlie Brown") (description Eclipse) (description "Cheaper by the Dozen 2") (description Incarceron) (description "The Adventures of Sharkboy and Lavagirl") (description "Dear Eleanor") (description Abduction) (description "Shadow Fury") (description "Field of Dreams 2: Lockout")) +-Candidate Entities: Lautner | The_Films_(band), JuntoBox_Films, Coronet_Films, English-language_Indian_films, Lionsgate_Films + +Additional entities + +Method 1 + + Lionsgate_Films + +Method 2 + + Lionsgate_Films + + + +-------------- + QUESTION: who were anakin skywalker's parents? +-Canonic Entity : anakin +-Target Values : (list (description "Shmi Skywalker")) +-Candidate Entities: + + + +-------------- + QUESTION: what country is the name natalie from? +-Canonic Entity : natalie_(singer) +-Target Values : (list (description "United States of America")) +-Candidate Entities: Natalie_Imbruglia + +Additional entities + +Method 1 + + Natalie_Imbruglia + +Method 2 + + Natalie_Imbruglia + + + +-------------- + QUESTION: who played the voice of aladdin? +-Canonic Entity : aladdin_(disney_character) +-Target Values : (list (description "Scott Weinger")) +-Candidate Entities: Aladdin_(Nielsen), Aladdin, Disney's_Aladdin_(video_game), Aladdin_(1992_Disney_film), Aladdin_(performer), Aladdin_and_His_Wonderful_Lamp, Aladdin_(2011_musical), Aladdin_and_His_Magic_Lamp, Aladdin_(TV_series), Aladdin_and_the_King_of_Thieves, Aladdin_(soundtrack), Aladdin_(1992_Golden_Films_film), List_of_Disney's_Aladdin_characters, The_Aladdin_Company | Voice_acting, Voice_(2AM_album), Share_of_voice, Voice_(Emi_Hinouchi_album), The_Voice_(Mike_Jones_album) + +Additional entities + +Method 1 + + Voice_acting + + Aladdin_(1992_Disney_film) + +Method 2 + + Voice_acting + + Aladdin_(1992_Disney_film) + + + +-------------- + QUESTION: what exactly did dale earnhardt die from? +-Canonic Entity : dale_earnhardt,_jr. +-Target Values : (list (description "Traffic collision")) +-Candidate Entities: Dale_Earnhardt, Dale_Earnhardt,_Inc., 3:_The_Dale_Earnhardt_Story | Kelley_Earnhardt_Miller, Death_of_Dale_Earnhardt, Dale_Earnhardt_Jr._Jr., Earnhardt + +Additional entities + +Method 1 + + Death_of_Dale_Earnhardt + +Method 2 + + Death_of_Dale_Earnhardt + + Dale_Earnhardt,_Inc. + + + +-------------- + QUESTION: what year did miami heat win the championship? +-Canonic Entity : miami_heat +-Target Values : (list (description "2012 NBA Finals") (description "2006 NBA Finals")) +-Candidate Entities: + + + +-------------- + QUESTION: what kind of government did benito mussolini have? +-Canonic Entity : benito_mussolini +-Target Values : (list (description Dictator)) +-Candidate Entities: Benito_(film) + +Additional entities + +Method 1 + + Benito_(film) + +Method 2 + + Benito_(film) + + + +-------------- + QUESTION: who was emperor diocletian? +-Canonic Entity : diocletian +-Target Values : (list (description "Roman emperor")) +-Candidate Entities: + + + +-------------- + QUESTION: who is chelsea kane? +-Canonic Entity : chelsea_kane +-Target Values : (list (description Singer)) +-Candidate Entities: + + + +-------------- + QUESTION: who is darwin and what is his theory? +-Canonic Entity : charles_darwin +-Target Values : (list (description Naturalist)) +-Candidate Entities: + + + +-------------- + QUESTION: what did obama study in school? +-Canonic Entity : obama,_fukui +-Target Values : (list (description "Political Science")) +-Candidate Entities: + + + +-------------- + QUESTION: where did deion sanders play baseball? +-Canonic Entity : deion_sanders +-Target Values : (list (description "Cincinnati Reds") (description "Atlanta Braves") (description "San Francisco Giants") (description "New York Yankees")) +-Candidate Entities: Deion + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who is the new governor of oregon? +-Canonic Entity : governor_of_oregon +-Target Values : (list (description "John Kitzhaber")) +-Candidate Entities: + + + +-------------- + QUESTION: what continent is south africa part of? +-Canonic Entity : university_of_south_africa +-Target Values : (list (description Africa)) +-Candidate Entities: Continent_(magazine) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who was michael jackson's best friend? +-Canonic Entity : michael_jackson's_this_is_it_(album) +-Target Values : (list (description "Elizabeth Taylor") (description "Al Sharpton") (description "Uri Geller") (description "Brooke Shields") (description "Elton John")) +-Candidate Entities: + + + +-------------- + QUESTION: what movies has taylor lautner been in 2011? +-Canonic Entity : taylor_lautner +-Target Values : (list (description "New Moon") (description Eclipse) (description "The Twilight Saga") (description Abduction) (description Twilight) (description "The Twilight Saga: Breaking Dawn - Part 2")) +-Candidate Entities: Lautner | The_Movies, Sky_Movies_(New_Zealand), At_the_Movies_(U.S._TV_series), More_Than_Movies, Yahoo!_Movies + +Additional entities + +Method 1 + + Yahoo!_Movies + +Method 2 + + Yahoo!_Movies + + + +-------------- + QUESTION: where does the australian prime minister reside? +-Canonic Entity : prime_minister_of_the_united_kingdom +-Target Values : (list (description Canberra)) +-Candidate Entities: Yes_Minister | Stuart_Reside, Directive_2004/38/EC_on_the_right_to_move_and_reside_freely + +Additional entities + +Method 1 + + Yes_Minister + +Method 2 + + Yes_Minister + + + +-------------- + QUESTION: what did kate winslet get an oscar for? +-Canonic Entity : kate_winslet +-Target Values : (list (description "The Reader")) +-Candidate Entities: OSCAR + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what company did henry ford work for? +-Canonic Entity : henry_ford +-Target Values : (list (description "Ford Motor Company")) +-Candidate Entities: Ford_Motor_Company, Henry_Jones_Ford, Ford_Motor_Company_of_Australia, Henry_P._Ford | Henry_Clay_Work | Ford_Motor_Company_of_Canada, Ford_Germany, Ford_Brasil, Ford_and_Johnson_Chair_Company, History_of_Ford_Motor_Company, Ford_of_Britain + +Additional entities + +Method 1 + + History_of_Ford_Motor_Company + +Method 2 + + History_of_Ford_Motor_Company + + Ford_Motor_Company + + + +-------------- + QUESTION: what happened to thomas cromwell's children? +-Canonic Entity : cromwell's_rule +-Target Values : (list (description "Gregory Cromwell, 1st Baron Cromwell")) +-Candidate Entities: How_It_Happened + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where indian ocean is located? +-Canonic Entity : order_of_the_star_and_key_of_the_indian_ocean +-Target Values : (list (description "South Asia")) +-Candidate Entities: + + + +-------------- + QUESTION: what year was the navy chief established? +-Canonic Entity : chief_of_the_naval_staff_(india) +-Target Values : (list (description "William J. Fallon")) +-Candidate Entities: Royal_Danish_Navy_(1510–1814), Royal_Navy, Indian_Navy, Vietnam_People's_Navy, United_States_Navy, Royal_Canadian_Navy, Tudor_navy | Radio_1_Established_1967 | Tropical_year + +Additional entities + +Method 1 + + Indian_Navy + +Method 2 + + Indian_Navy + + + +-------------- + QUESTION: what year did the orioles win 100 games? +-Canonic Entity : the_orioles +-Target Values : (list (description "1970 World Series")) +-Candidate Entities: Games_100 | For_the_Win | Baltimore_Orioles | 100_Year_Starship | WIN_(TV_station) | Gulf_Coast_League_Orioles | Win_Win_(film) | List_of_100-point_games_in_college_football, Athletics_at_the_2006_Commonwealth_Games_–_Men's_100_metres + +Additional entities + +Method 1 + + Baltimore_Orioles + +Method 2 + + Baltimore_Orioles + + + +-------------- + QUESTION: who was mary's mother? +-Canonic Entity : st._mary's_medical_center_(san_francisco) +-Target Values : (list (description "Saint Anne")) +-Candidate Entities: + + + +-------------- + QUESTION: where is american express located? +-Canonic Entity : american_express +-Target Values : (list (description "New York City") (description Wilmington)) +-Candidate Entities: Express_(weaponry) | Loca_People, Loca, Loca_Records, Mi_Vida_Loca_(soundtrack), Loca_(Dana_International_song) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what is the china money called? +-Canonic Entity : the_future_of_money +-Target Values : (list (description Renminbi)) +-Candidate Entities: Fiat_money, Money + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what is the government of spain today? +-Canonic Entity : prime_minister_of_spain +-Target Values : (list (description "Constitutional monarchy")) +-Candidate Entities: Today_(The_Smashing_Pumpkins_song) | Spain | The_Word_For_Today, Today_(U.S._TV_program), Today_(EP), Today_in_L.A., The_World_as_It_Is_Today | The_Beach_Boys_Today!, Today_Is_the_Day | Today_at_Wimbledon, Today_(UK_newspaper), Better_Than_Today + +Additional entities + +Method 1 + + Today_(U.S._TV_program) + + Spain + +Method 2 + + Spain + + + +-------------- + QUESTION: where is the howard university located? +-Canonic Entity : howard_university_school_of_law +-Target Values : (list (description "United States of America") (description "Washington, D.C.")) +-Candidate Entities: + + + +-------------- + QUESTION: where did terrell owens get traded to? +-Canonic Entity : terrell_owens +-Target Values : (list (description "Philadelphia Eagles")) +-Candidate Entities: A.L._"Doodle"_Owens + + + +-------------- + QUESTION: what do catholics call their god? +-Canonic Entity : god +-Target Values : (list (description God) (description "Holy Spirit") (description "The Father") (description "Jesus Christ")) +-Candidate Entities: Catholics_for_Choice, Hebrew_Catholics | The_Call_(CNBC), Call_pickup | Committee_of_Catholics_to_Fight_Anti-Semitism + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what is the capital of alaska state? +-Canonic Entity : capital_(radio_network) +-Target Values : (list (description Juneau)) +-Candidate Entities: Alaska, Alaska_State_Troopers + +Additional entities + +Method 1 + + Alaska + +Method 2 + + + +-------------- + QUESTION: what was the soviet union? +-Canonic Entity : cuba–soviet_union_relations +-Target Values : (list (description "Soviet democracy") (description "Single-party state") (description "Communist state") (description "Socialist state")) +-Candidate Entities: Soviet_people, Politics_of_the_Soviet_Union, Prohibition_in_the_Russian_Empire_and_the_Soviet_Union, History_of_the_Soviet_Union, Generalissimus_of_the_Soviet_Union, Soviet_Union, Persecution_of_Christians_in_the_Soviet_Union, Transport_in_the_Soviet_Union, Republics_of_the_Soviet_Union, Terrorism_and_the_Soviet_Union, Music_in_the_Soviet_Union, President_of_the_Soviet_Union, Law_of_the_Soviet_Union + +Additional entities + +Method 1 + + Soviet_Union + +Method 2 + + Soviet_Union + + + +-------------- + QUESTION: what college did jeff corwin go to? +-Canonic Entity : jeff_corwin +-Target Values : (list (description "Bridgewater State College")) +-Candidate Entities: + + + +-------------- + QUESTION: who speaks farsi? +-Canonic Entity : farsi_(disambiguation) +-Target Values : (list (description Canada) (description Afghanistan) (description Iran) (description Oman) (description Uzbekistan) (description Bahrain) (description Iraq) (description Tajikistan)) +-Candidate Entities: In_re_The_Bible_Speaks, And_the_Music_Speaks, The_Speaks, Oley_Speaks, John_C._Speaks, Michael_Speaks + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who was neptune discovered by? +-Canonic Entity : neptune_(mythology) +-Target Values : (list (description "John Couch Adams") (description "Dr Galle") (description "Urbain Le Verrier") (description "Heinrich Louis d'Arrest") (description "Johann Gottfried Galle")) +-Candidate Entities: Discovery_of_Neptune, Neptune + +Additional entities + +Method 1 + + Neptune + +Method 2 + + Neptune + + + +-------------- + QUESTION: who were the major trade partners of russia? +-Canonic Entity : partners_the_stationer +-Target Values : (list (description Uzbekistan)) +-Candidate Entities: Partners_in_Flight + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what did corey haim really die of? +-Canonic Entity : corey_haim +-Target Values : (list (description Pneumonia) (description "Drug overdose")) +-Candidate Entities: Haim | Corey | Tal_Ben_Haim, Haim_(band) + +Additional entities + +Method 1 + + Haim_(band) + +Method 2 + + + +-------------- + QUESTION: where did pavlova originate? +-Canonic Entity : pavlova_(food) +-Target Values : (list (description "New Zealand cuisine")) +-Candidate Entities: Pavlova | Bromley_Originate_Change + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where did nathaniel hawthorne die? +-Canonic Entity : nathaniel_hawthorne +-Target Values : (list (description Plymouth)) +-Candidate Entities: + + + +-------------- + QUESTION: where did jack johnson go to high school? +-Canonic Entity : lyndon_b._johnson_high_school_(johnson_city,_texas) +-Target Values : (list (description "Kahuku High & Intermediate School")) +-Candidate Entities: Jack_Johnson_(boxer), Jack_Johnson_(musician), Jack_Johnson_(album) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who played maxie jones on general hospital? +-Canonic Entity : maxie_jones +-Target Values : (list (description "Kirsten Storms")) +-Candidate Entities: Northern_General_Hospital, General_Hospital_of_Mexico | Maxie | General_Hospital_(Blackadder), Guelph_General_Hospital, General_Lying-In_Hospital, Massachusetts_General_Hospital, History_of_General_Hospital, Paphos_General_Hospital, St._Boniface_General_Hospital_(Winnipeg) | Maxie_Clarence_Maultsby,_Jr. | Children_of_General_Hospital, General_Hospital, Jewish_General_Hospital, South_Tipperary_General_Hospital, Barnet_General_Hospital, Etobicoke_General_Hospital, General_Hospital_(UK_TV_series) | Twilight_as_Played_by_The_Twilight_Singers, Played, Played_in_Britain, The_Band_Played_On, And_the_Bands_Played_On + +Additional entities + +Method 1 + + History_of_General_Hospital + + Children_of_General_Hospital + +Method 2 + + History_of_General_Hospital + + General_Hospital + + + +-------------- + QUESTION: what military school did poe attend? +-Canonic Entity : poe_(mascot) +-Target Values : (list (description "United States Military Academy")) +-Candidate Entities: Kemper_Military_School | Poe_(singer), William_Henry_Leonard_Poe, William_F._Poe, Poe_(disambiguation), Bryce_Poe_II + +Additional entities + +Method 1 + + William_Henry_Leonard_Poe + +Method 2 + + + +-------------- + QUESTION: what are buddhist gods? +-Canonic Entity : japanese_buddhist_pantheon +-Target Values : (list (description Āgama)) +-Candidate Entities: + + + +-------------- + QUESTION: who influenced wolfgang amadeus mozart? +-Canonic Entity : wolfgang_amadeus_mozart +-Target Values : (list (description "Carl Philipp Emanuel Bach") (description "Johann Sebastian Bach") (description "George Frideric Handel") (description "Joseph Haydn") (description "Michael Haydn")) +-Candidate Entities: Haydn_and_Mozart, Franz_Xaver_Wolfgang_Mozart, Leopold_Mozart | Amadeus | Mozart_and_dance, Mozart_and_Freemasonry, Mozart_and_smallpox, Beethoven_and_Mozart, Constanze_Mozart, Mozart_and_scatology | Amadeus_(film) | Karl_Thomas_Mozart, Maria_Anna_Mozart, Anna_Maria_Mozart, Biographies_of_Mozart | Racketeer_Influenced_and_Corrupt_Organizations_Act + +Additional entities + +Method 1 + + Maria_Anna_Mozart + +Method 2 + + Franz_Xaver_Wolfgang_Mozart + + Amadeus_(film) + + Amadeus + + Maria_Anna_Mozart + + Constanze_Mozart + + + +-------------- + QUESTION: when was the last dallas cowboys super bowl win? +-Canonic Entity : super_bowl_xxx +-Target Values : (list (description "Super Bowl XXX")) +-Candidate Entities: Super_Bowl_VI, Super_Bowl_XIII, Super_Bowl_V | Dallas_Cowboys | Super_Bowl_X, Super_Bowl_XXVII, Super_Bowl, Super_Bowl_XII | 1995_Dallas_Cowboys_season | Super_Bowl_XLIII, Super_Bowl_XXVIII | 1992_Dallas_Cowboys_season | Super_Bowl_XV, List_of_Super_Bowl_champions, Heart_of_Dallas_Bowl | 1993_Dallas_Cowboys_season, 1971_Dallas_Cowboys_season | Super_Bowl_XIV | For_the_Win, WIN_(TV_station), Win_Win_(film) + +Additional entities + +Method 1 + + Super_Bowl_XIV + +Method 2 + + 1992_Dallas_Cowboys_season + + 1993_Dallas_Cowboys_season + + List_of_Super_Bowl_champions + + 1995_Dallas_Cowboys_season + + Super_Bowl_XIV + + Super_Bowl_XIII + + Super_Bowl_XXVIII + + Dallas_Cowboys + + Super_Bowl + + + +-------------- + QUESTION: what language do they speak in iceland wikipedia? +-Canonic Entity : speak!!! +-Target Values : (list (description "Icelandic Language")) +-Candidate Entities: Speak_(No-Man_album) | Iceland | Egyptian_Arabic_Wikipedia, Chinese_Wikipedia, German_Wikipedia | Speak_(Godsmack_song) | Ukrainian_Wikipedia, Dutch_Wikipedia, English_Wikipedia | Christianisation_of_Iceland | Speak_for_Yourself + +Additional entities + +Method 1 + + Iceland + +Method 2 + + + +-------------- + QUESTION: when was blessed kateri born? +-Canonic Entity : blessed_kateri_tekakwitha's_church_(lagrangeville,_new_york) +-Target Values : (list (description 1656)) +-Candidate Entities: Kateri_Tekakwitha, St._Kateri_Tekakwitha_Elementary_School, Kateri_hydroelectric_system | Blessed_(Flavour_N'abania_album), Blessed_(Lucinda_Williams_album), Missionary_Congregation_of_the_Blessed_Sacrament, Blessed_(Fady_Maalouf_album), Congregation_of_the_Sisters_of_the_Blessed_Sacrament, Congregation_of_the_Blessed_Sacrament, Cathedral_of_the_Blessed_Sacrament_(Sacramento,_California), Blessed, Blessed_(TV_series) | Kateri_Akiwenzie-Damm | The_Blessed_and_the_Damned, Blessed_(Hillsong_album), Cathedral_of_the_Most_Blessed_Sacrament, Blessed_Edward_Oldcorne_Catholic_College + +Additional entities + +Method 1 + + Kateri_Akiwenzie-Damm + +Method 2 + + + +-------------- + QUESTION: when did the bali bombings occur? +-Canonic Entity : 2002_bali_bombings +-Target Values : (list (description "2002 Bali bombings")) +-Candidate Entities: Bali + +Additional entities + +Method 1 + + Bali + +Method 2 + + Bali + + + +-------------- + QUESTION: what is the political system in south africa? +-Canonic Entity : political_assassinations_in_post-apartheid_south_africa +-Target Values : (list (description "Parliamentary republic")) +-Candidate Entities: + + + +-------------- + QUESTION: what is the currency in croatia 2012? +-Canonic Entity : 2012_atp_vegeta_croatia_open_umag +-Target Values : (list (description "Croatian kuna")) +-Candidate Entities: Currency | Croatia | Currency_Museum_of_the_Bank_of_Japan, Currency_(lads_and_lasses) + +Additional entities + +Method 1 + + Croatia + +Method 2 + + Croatia + + + +-------------- + QUESTION: where did joe montana go to high school? +-Canonic Entity : joe_montana +-Target Values : (list (description "Ringgold High School")) +-Candidate Entities: Billings_Central_Catholic_High_School, St._Joe_High_School, Butte_Central_Catholic_High_School, Laurel_High_School_(Montana), Everman_Joe_C._Bean_High_School, Capital_High_School_(Helena,_Montana), Big_Sandy_High_School_(Montana), Linganore_High_School | Montana_Tech_of_the_University_of_Montana | Lincoln_High_School_(Gahanna,_Ohio) | Montana | Port_St._Joe_High_School, Immaculata-Lasalle_High_School, Chippewa_High_School, Adena_High_School, Butte_High_School_(Butte,_Montana), Underdale_High_School + +Additional entities + +Method 1 + + Montana + +Method 2 + + Montana + + + +-------------- + QUESTION: what cases does the supreme court have original jurisdiction over? +-Canonic Entity : supreme_court_of_the_united_states +-Target Values : (list (description "The Supreme Court")) +-Candidate Entities: Original_jurisdiction | Cases_Journal, Château_Léoville-Las_Cases, The_Telephone_Cases, Court_for_Crown_Cases_Reserved + +Additional entities + +Method 1 + + The_Telephone_Cases + + Original_jurisdiction + +Method 2 + + The_Telephone_Cases + + Original_jurisdiction + + + +-------------- + QUESTION: where is the nation of palestine? +-Canonic Entity : palestine,_indiana +-Target Values : (list (description Eurasia) (description "Near East") (description "Middle East") (description Levant) (description "Eastern Mediterranean")) +-Candidate Entities: + + + +-------------- + QUESTION: what are the greek titans? +-Canonic Entity : titan_(mythology) +-Target Values : (list (description Titanium)) +-Candidate Entities: Remember_the_Titans, Wrath_of_the_Titans, Teen_Titans, Clash_of_the_Titans_(franchise), History_of_the_Gold_Coast_Titans, Teen_Titans_(TV_series), Class_of_the_Titans, Cal_State_Fullerton_Titans, Clash_of_the_Titans_(2010_film), Tennessee_Titans, Clash_of_the_Titans_(1981_film) | Greek_Baseball_League, Greek_tragedy, Greek_language, Greek_Braille, Medieval_Greek + +Additional entities + +Method 1 + + Class_of_the_Titans + + Greek_language + +Method 2 + + Class_of_the_Titans + + Greek_language + + + +-------------- + QUESTION: what countries speak english primarily? +-Canonic Entity : speak!!! +-Target Values : (list (description Canada) (description Australia) (description "Kingdom of Great Britain") (description "United States of America") (description "United Kingdom") (description Ireland) (description "New Zealand")) +-Candidate Entities: Speak_Good_English_Movement, Speak_(No-Man_album) | English_language, Speak_English_or_Die | Speak_(Godsmack_song), SPEAK_(test), Speak_of_the_Devil_(book), Speak_(band) + +Additional entities + +Method 1 + + English_language + +Method 2 + + + +-------------- + QUESTION: what states does the missouri river touch? +-Canonic Entity : touch_(river) +-Target Values : (list (description "South Dakota") (description Iowa) (description "North Dakota") (description Kansas) (description Illinois) (description Nebraska) (description Montana) (description Missouri)) +-Candidate Entities: 2011_Missouri_River_Flood | Touch_(band), Touch_Music | List_of_rivers_of_Missouri, River_aux_Vases,_Missouri | Touch_the_Clouds | Missouri_River | Touch_the_Sun, The_Ouch._The_Touch. | Touch_of_Pink, Out_of_Touch, Touch_the_Sky_(ATC_album), A_Touch_of_Larceny | The_Missouri_Harmony, Missouri_River_Valley + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what is in liverpool england? +-Canonic Entity : liverpool +-Target Values : (list (description "New Pleasureland Southport") (description "World Museum Liverpool") (description "251 Menlove Avenue") (description "Walker Art Gallery") (description "The Oratory") (description "St George's Hall, Liverpool") (description "Merseyside Maritime Museum") (description "Liverpool Cathedral") (description "Royal Liver Building") (description "Bluecoat Chambers")) +-Candidate Entities: + + + +-------------- + QUESTION: what state is harvard college located? +-Canonic Entity : harvard_college +-Target Values : (list (description Massachusetts)) +-Candidate Entities: + + + +-------------- + QUESTION: where was leonardo da vinci when he died? +-Canonic Entity : cultural_references_to_leonardo_da_vinci +-Target Values : (list (description Amboise)) +-Candidate Entities: + + + +-------------- + QUESTION: what money do japanese use? +-Canonic Entity : demand_for_money +-Target Values : (list (description "Japanese yen")) +-Candidate Entities: Money_market_fund, The_Future_of_Money + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what is the time zone in oklahoma city? +-Canonic Entity : oklahoma_city +-Target Values : (list (description "Central Time Zone")) +-Candidate Entities: Central_Time_Zone, Mountain_Time_Zone, Pacific_Time_Zone, Time_Zone_(video_game), Eastern_Time_Zone, Time_zone, Time_in_Saskatchewan | Del_City,_Oklahoma, Eagle_City,_Oklahoma + +Additional entities + +Method 1 + + Del_City,_Oklahoma + +Method 2 + + Del_City,_Oklahoma + + Central_Time_Zone + + + +-------------- + QUESTION: what killed whitney houston? +-Canonic Entity : whitney_houston +-Target Values : (list (description Drowning) (description "Coronary artery disease") (description "Cocaine overdose")) +-Candidate Entities: + + + +-------------- + QUESTION: what kind of government did the mali empire have? +-Canonic Entity : mali_empire +-Target Values : (list (description Republic)) +-Candidate Entities: Mali, Outline_of_Mali, List_of_heads_of_government_of_Mali | Imperial_Government_(Ottoman_Empire) + +Additional entities + +Method 1 + + Mali + +Method 2 + + Mali + + + +-------------- + QUESTION: what is the religion of israel people? +-Canonic Entity : marxism_and_religion +-Target Values : (list (description Judaism)) +-Candidate Entities: Māori_religion, Religion_in_Israel, On_Religion | Israel | Religion_in_the_Inca_Empire | Racism_in_Israel | Opium_of_the_people | Religion_in_Macau + +Additional entities + +Method 1 + + Opium_of_the_people + + Israel + +Method 2 + + Opium_of_the_people + + Israel + + + +-------------- + QUESTION: what is mount st helens? +-Canonic Entity : mount_st._helens +-Target Values : (list (description Stratovolcano) (description Volcano)) +-Candidate Entities: + + + +-------------- + QUESTION: what airport is closest to sandals grande in st lucia? +-Canonic Entity : casa_grande_municipal_airport +-Target Values : (list (description "George F. L. Charles Airport")) +-Candidate Entities: São_Tomé_and_Príncipe, São_José,_São_Tomé_and_Príncipe, São_Tomé_and_Príncipe_real | The_Sandals, Sandals_Resorts | Distance_of_closest_approach_of_ellipses_and_ellipsoids | Sandals_of_Jesus_Christ, Socks_in_sandals + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: which country is north of the usa? +-Canonic Entity : country_style,_usa +-Target Values : (list (description Canada)) +-Candidate Entities: CMT_Country_Countdown_USA, North_Country_Community_College, The_Country_Club_of_North_Carolina, North_Country_Trail, Country_USA_(Time-Life_Music), Water_Country_USA, North_Hills_Country_Club, Music_from_the_North_Country_–_The_Jayhawks_Anthology, Country_music + +Additional entities + +Method 1 + + Country_music + +Method 2 + + Country_music + + + +-------------- + QUESTION: where does drew gordon play? +-Canonic Entity : drew_gordon +-Target Values : (list (description "Utah Jazz")) +-Candidate Entities: + + + +-------------- + QUESTION: who was the first russian president? +-Canonic Entity : president_of_russia +-Target Values : (list (description "Dmitry Medvedev")) +-Candidate Entities: Russian_Ski_Association, Russian_language_in_Ukraine | President_(CSRT), President_(steamboat) | Russian_Orthodox_Church + +Additional entities + +Method 1 + + Russian_language_in_Ukraine + + Russian_Orthodox_Church + +Method 2 + + Russian_language_in_Ukraine + + Russian_Orthodox_Church + + + +-------------- + QUESTION: what language does people in netherlands speak? +-Canonic Entity : speak!!! +-Target Values : (list (description "Frisian languages") (description "West Flemish") (description "Dutch Language")) +-Candidate Entities: The_People_Speak_(film), Speak_(No-Man_album) | English_in_the_Netherlands, Netherlands | Speak_(Godsmack_song), Don't_Speak | Chinese_people_in_the_Netherlands | Dutch_Sign_Language | Speak_for_Yourself, I_Don't_Speak_the_Language + +Additional entities + +Method 1 + + Netherlands + +Method 2 + + + +-------------- + QUESTION: what type of language does china speak? +-Canonic Entity : speak!!! +-Target Values : (list (description "Nepali Language") (description "Standard Tibetan") (description "Chinese language") (description "Zhuang languages") (description "Korean Language") (description "English Language") (description "Esperanto Language") (description "Mongolian language") (description "Portuguese Language") (description Cantonese)) +-Candidate Entities: Speak_(No-Man_album), Speak_for_Yourself, I_Don't_Speak_the_Language | Type_88_tank_(China) | Speak_(Godsmack_song), Speak_of_the_Devil_(book), SPEAK_(test) | Type_96, Type_54_pistol | Speak_(band), Speak_(film) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what countries around the world speak french? +-Canonic Entity : speak!!! +-Target Values : (list (description France)) +-Candidate Entities: Speak_(No-Man_album), Can't_Speak_French, Speak_(Godsmack_song), Speak_for_Yourself, Don't_Speak, Speak_(band), Speak_of_the_Devil_(book) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who is esther hicks? +-Canonic Entity : esther_hicks +-Target Values : (list (description Writer) (description Author)) +-Candidate Entities: Hicks | Esther_Béjarano + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what does michael vick do? +-Canonic Entity : michael_vick +-Target Values : (list (description "American football player")) +-Candidate Entities: + + + +-------------- + QUESTION: in which province is johannesburg? +-Canonic Entity : johannesburg +-Target Values : (list (description Gauteng)) +-Candidate Entities: + + + +-------------- + QUESTION: where was john lennon standing when he was shot? +-Canonic Entity : john_lennon +-Target Values : (list (description "New York City")) +-Candidate Entities: + + + +-------------- + QUESTION: what time do atlantic city bars close? +-Canonic Entity : atlantic_city,_new_jersey +-Target Values : (list (description "World War I Memorial")) +-Candidate Entities: Close_City,_Texas | Atlantic_City_International_Airport, Atlantic_City,_Wyoming, The_Atlantic_Club_Casino_Hotel, Harrah's_Atlantic_City | Close_(to_the_Edit) | The_Press_of_Atlantic_City, Atlantic_City_Conference, Atlantic_City_(1980_film), Atlantic_City_Line, Bally's_Atlantic_City, Tropicana_Casino_&_Resort_Atlantic_City, Eko_Atlantic, Atlantic_Avenue_(New_York_City) + +Additional entities + +Method 1 + + The_Press_of_Atlantic_City + +Method 2 + + Atlantic_City_International_Airport + + The_Press_of_Atlantic_City + + + +-------------- + QUESTION: what state did al gore represent? +-Canonic Entity : gore,_new_zealand +-Target Values : (list (description Tennessee)) +-Candidate Entities: + + + +-------------- + QUESTION: who voiced darth vader in revenge of the sith? +-Canonic Entity : sith +-Target Values : (list (description "Hayden Christensen")) +-Candidate Entities: Darth_Vader, Darth_Vader_Grotesque, The_Glove_of_Darth_Vader, Hasbro_Darth_Vader_Voice_Changer, The_Rise_and_Fall_of_Darth_Vader + +Additional entities + +Method 1 + + Darth_Vader + +Method 2 + + Darth_Vader + + + +-------------- + QUESTION: what type of art is henri matisse famous for? +-Canonic Entity : henri_matisse +-Target Values : (list (description Sculpture) (description Printmaking) (description Collage) (description Painting) (description Drawing)) +-Candidate Entities: Matisse_(band), Matisse_(crater), An_Essay_on_Matisse, Matisse_(disambiguation) + +Additional entities + +Method 1 + + Matisse_(disambiguation) + +Method 2 + + + +-------------- + QUESTION: what to do in laughlin nevada? +-Canonic Entity : laughlin,_nevada +-Target Values : (list (description "Riverside Resort Hotel & Casino") (description "Harrah's Laughlin") (description "Edgewater Hotel and Casino")) +-Candidate Entities: Robert_B._Laughlin, Laughlin_(Nevada_gaming_area), Laughlin | Nevada + +Additional entities + +Method 1 + + Nevada + +Method 2 + + Nevada + + + +-------------- + QUESTION: who plays princess padme in star wars? +-Canonic Entity : star_wars +-Target Values : (list (description "Catherine Taber")) +-Candidate Entities: Princess_Leia | Padme + +Additional entities + +Method 1 + + Princess_Leia + +Method 2 + + Princess_Leia + + + +-------------- + QUESTION: where to ski in andorra reviews? +-Canonic Entity : andorra +-Target Values : (list (description "Ordino-Arcalis Ski Area")) +-Candidate Entities: + + + +-------------- + QUESTION: who was louis riel? +-Canonic Entity : louis_riel +-Target Values : (list (description Politician)) +-Candidate Entities: + + + +-------------- + QUESTION: what are the four nations of the uk? +-Canonic Entity : united_nations_association_–_uk +-Target Values : (list (description Scotland) (description England) (description Wales) (description "Northern Ireland")) +-Candidate Entities: Nations_in_Finnish_universities, Six_Nations_Championship, Music_for_Nations, African_Nations_Championship, IRB_Pacific_Nations_Cup + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who was judy garland married to? +-Canonic Entity : judy_garland +-Target Values : (list (description "Mark Herron") (description "Sidney Luft") (description "David Rose") (description "Mickey Deans") (description "Vincente Minnelli")) +-Candidate Entities: + + + +-------------- + QUESTION: where is abraham lincoln hometown? +-Canonic Entity : the_papers_of_abraham_lincoln +-Target Values : (list (description Hodgenville)) +-Candidate Entities: + + + +-------------- + QUESTION: what disease did helen keller? +-Canonic Entity : helen_keller +-Target Values : (list (description Deafness)) +-Candidate Entities: + + + +-------------- + QUESTION: what is the name of money in brazil? +-Canonic Entity : demand_for_money +-Target Values : (list (description "Brazilian real")) +-Candidate Entities: The_Future_of_Money + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what year did lakers win championship? +-Canonic Entity : los_angeles_lakers +-Target Values : (list (description "1985 NBA Finals") (description "1948 NBL Finals") (description "1954 NBA Finals") (description "1972 NBA Finals") (description "1949 BAA Finals") (description "1952 NBA Finals") (description "1980 NBA Finals") (description "1950 NBA Finals") (description "1953 NBA Finals") (description "1982 NBA Finals")) +-Candidate Entities: + + + +-------------- + QUESTION: what did coolidge believe with regards to the role of government? +-Canonic Entity : coolidge,_arizona +-Target Values : (list (description "Parties do not maintain themselves. They are maintained by effort. The government is not self-existent. It is maintained by the effort of those who believe in it. The people of America believe in American institutions, the American form of government and the American method of transacting business.")) +-Candidate Entities: Coolidge_Municipal_Airport, Coolidge_Middle_School_(Reading,_Massachusetts) + +Additional entities + +Method 1 + +Method 2 + + Coolidge_Municipal_Airport + + + +-------------- + QUESTION: what is the atlanta braves mascot? +-Canonic Entity : atlanta_braves +-Target Values : (list (description Homer)) +-Candidate Entities: Dominican_Summer_League_Braves + +Additional entities + +Method 1 + + Dominican_Summer_League_Braves + +Method 2 + + + +-------------- + QUESTION: what type of government did england have during the glorious revolution? +-Canonic Entity : glorious_revolution +-Target Values : (list (description "Constitutional monarchy")) +-Candidate Entities: Glorious_(Eddie_Izzard) | New_England_Revolution, The_Revolution_(band), The_Revolution_(professional_wrestling) | Dominion_of_New_England | Revolution_(Beatles_song), Iranian_Revolution | Glorious_(Gloria_Gaynor_album) | The_History_of_England_(Hume) | Xinhai_Revolution | Regency_Government_of_England_1422–37, ENGL, Olga_Engl, Engl, Josef_Benedikt_Engl | Type_88_tank_(China) + +Additional entities + +Method 1 + + Olga_Engl + + Iranian_Revolution + + The_History_of_England_(Hume) + + Dominion_of_New_England + +Method 2 + + Xinhai_Revolution + + Iranian_Revolution + + The_History_of_England_(Hume) + + Dominion_of_New_England + + + +-------------- + QUESTION: who played dumbledore in the first movie? +-Canonic Entity : albus_dumbledore +-Target Values : (list (description "Richard Harris")) +-Candidate Entities: Twilight_as_Played_by_The_Twilight_Singers, Played | Movie_Gallery | Played_in_Britain | 2000_MTV_Movie_Awards | The_Band_Played_On, And_the_Band_Played_On | MTV_Movie_Award_for_Best_Song_from_a_Movie | And_the_Bands_Played_On, The_Greatest_Game_Ever_Played | Scenes_from_a_Movie | Played_in_Space:_The_Best_of_Something_Corporate | 2011_MTV_Movie_Awards, Scary_Movie_3, Movie_Network, Magix_Movie_Edit_Pro + +Additional entities + +Method 1 + +Method 2 + + 2011_MTV_Movie_Awards + + + +-------------- + QUESTION: where was greenpeace an international environmental organization founded? +-Canonic Entity : greenpeace +-Target Values : (list (description Vancouver)) +-Candidate Entities: Environmental_organization, Organization_for_International_Investment, International_nongovernmental_organization | Center_for_International_Environmental_Law, International_Sakharov_Environmental_University, Multilateral_environmental_agreement | International_Fortean_Organization + +Additional entities + +Method 1 + + Environmental_organization + +Method 2 + + Environmental_organization + + + +-------------- + QUESTION: what does roger that mean? +-Canonic Entity : roger_t._forster +-Target Values : (list (description "American Dad!")) +-Candidate Entities: Roger_Cook_(songwriter), Roger_Hargreaves, Roger_Tréville, Roger_of_Wendover + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what is the center of london called? +-Canonic Entity : what_is_this_thing_called_love? +-Target Values : (list (description "Trafalgar Square")) +-Candidate Entities: + + + +-------------- + QUESTION: what was the first name of the washington redskins? +-Canonic Entity : the_redskins +-Target Values : (list (description "Boston Redskins")) +-Candidate Entities: Washington_Redskins, 1991_Washington_Redskins_season, 2008_Washington_Redskins_season, Washington_Redskins_name_controversy, 2013_Washington_Redskins_season, 2012_Washington_Redskins_season, 2009_Washington_Redskins_season, List_of_Washington_Redskins_starting_quarterbacks, 2011_Washington_Redskins_season, 2010_Washington_Redskins_season + +Additional entities + +Method 1 + + Washington_Redskins + +Method 2 + + + +-------------- + QUESTION: what sports do they do in canada? +-Canonic Entity : shooting_sports_in_canada +-Target Values : (list (description "Canada national baseball team") (description "Canada national rugby union team") (description "Canada women's national volleyball team") (description "Canada men's national soccer team") (description "Canadian national bandy team") (description "Canada national badminton team") (description "Canada men's national volleyball team") (description "Canadian women's cricket team") (description "A1 Team Canada") (description Northwind)) +-Candidate Entities: + + + +-------------- + QUESTION: who was the first leader of the afl? +-Canonic Entity : 2009_afl_finals_series +-Target Values : (list (description "Bud Adams") (description "Lamar Hunt")) +-Candidate Entities: Dublin_AFL_Divisions_3_–_12B | The_Leader_(Allahabad_newspaper) | Tasmanian_AFL_bid | Leader_(comics) | 2012_AFL_Draft | Louisville_Leader, Brotherly_Leader_and_Guide_of_the_Revolution, The_News_Leader | AFL_(Wii) | George_M._Leader, Leader_Price + +Additional entities + +Method 1 + + 2012_AFL_Draft + +Method 2 + + + +-------------- + QUESTION: who is the arizona cardinals football coach? +-Canonic Entity : arizona_cardinals +-Target Values : (list (description "Bruce Arians")) +-Candidate Entities: Catholic_University_Cardinals_football, Louisville_Cardinals_football, Arizona_Wildcats_football | FIFA_World_Coach_of_the_Year | Ball_State_Cardinals_football, Arizona_State_Sun_Devils_football, Lamar_Cardinals_football + +Additional entities + +Method 1 + + Arizona_State_Sun_Devils_football + +Method 2 + + Louisville_Cardinals_football + + Arizona_State_Sun_Devils_football + + + +-------------- + QUESTION: when did tamu admit women? +-Canonic Entity : tamu +-Target Values : (list (description Myanmar)) +-Candidate Entities: Admit_It | Women_in_the_Enlightenment | I_Admit | Edinburgh_School_of_Medicine_for_Women, Women_Against_War + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where was the battle of waterloo held? +-Canonic Entity : battle_of_waterloo +-Target Values : (list (description Waterloo)) +-Candidate Entities: + + + +-------------- + QUESTION: what was marilyn monroe known for? +-Canonic Entity : the_legend_of_marilyn_monroe +-Target Values : (list (description Singer) (description "Nude Glamour Model") (description "Film Producer") (description Actor) (description Showgirl) (description Model) (description "Pin-up girl")) +-Candidate Entities: Marilyn_(given_name) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what has barack obama done wrong? +-Canonic Entity : barack_obama +-Target Values : (list (description ""President Obama appears to me to have elevated and implemented the artist-activist concept to the role of empowered servant-leader..."")) +-Candidate Entities: + + + +-------------- + QUESTION: which is faster amd dual core or intel dual core? +-Canonic Entity : pentium_dual-core +-Target Values : (list (description "Inside Intel: Andy Grove and the Rise of the World's Most Powerful Chip Company")) +-Candidate Entities: + + + +-------------- + QUESTION: where did lee corso go to college? +-Canonic Entity : lee_corso +-Target Values : (list (description "Florida State University")) +-Candidate Entities: Corso_(disambiguation), Via_del_Corso + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who are the colorado eagles? +-Canonic Entity : eagles_(band) +-Target Values : (list (description "Ice Hockey")) +-Candidate Entities: The_Eagles_(UK_band), Philadelphia_Eagles, Colorado_Eagles, Eagles_F.C. + +Additional entities + +Method 1 + + Philadelphia_Eagles + +Method 2 + + + +-------------- + QUESTION: what time period did jesus live in? +-Canonic Entity : live_–_one_last_time +-Target Values : (list (description "4 BCE")) +-Candidate Entities: Period_(geology) | Jesus, The_Jesus_Mysteries | Period_(periodic_table) + +Additional entities + +Method 1 + + Period_(geology) + + Jesus + +Method 2 + + + +-------------- + QUESTION: where does lala anthony live? +-Canonic Entity : lala +-Target Values : (list (description Brooklyn)) +-Candidate Entities: Opie_and_Anthony | Live_(James_Taylor_album), Ableton_Live | Anthony_of_Sourozh + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what currency do they accept in kenya? +-Canonic Entity : kenya +-Target Values : (list (description "Kenyan shilling")) +-Candidate Entities: Currency | Accept_(organization), Accept_(band), Accept_(Chicken_Shack_album) + +Additional entities + +Method 1 + + Currency + +Method 2 + + Currency + + + +-------------- + QUESTION: what river did henry hudson sail up? +-Canonic Entity : hudson_river_school +-Target Values : (list (description "Hudson River")) +-Candidate Entities: Henry_Hudson, Hudson_River, Hudson_River_Valley_Institute | Sail | North_River_(Hudson_River) | Henry_Hudson_Park, William_Henry_Hudson + +Additional entities + +Method 1 + + William_Henry_Hudson + + Hudson_River + +Method 2 + + Hudson_River + + + +-------------- + QUESTION: what currency is used in switzerland 2012? +-Canonic Entity : currency +-Target Values : (list (description "Swiss franc")) +-Candidate Entities: + + + +-------------- + QUESTION: what do they speak in iran? +-Canonic Entity : speak!!! +-Target Values : (list (description "Turkmen Language") (description "Pashto language") (description "Kurdish language") (description "Gilaki Language") (description "Assyrian Neo-Aramaic Language") (description "Azerbaijani language") (description "Armenian Language") (description "Persian Language") (description "Mazanderani Language") (description "Luri language")) +-Candidate Entities: Speak_(No-Man_album), Speak_(Godsmack_song), Speak_for_Yourself, Don't_Speak, Y_Speak, Speak_(band), Speak_of_the_Devil_(book) | Iran | I.R.S._No_Speak, Speak_(film), SPEAK_(test), Speak_Good_English_Movement + +Additional entities + +Method 1 + + Iran + +Method 2 + + + +-------------- + QUESTION: who did ayrton senna drive for? +-Canonic Entity : ayrton_senna +-Target Values : (list (description "Lotus Cars")) +-Candidate Entities: Senna_(film), Senna | Edward_R._Ayrton, William_Edward_Ayrton, Ayrton + +Additional entities + +Method 1 + + Senna_(film) + +Method 2 + + Senna_(film) + + + +-------------- + QUESTION: what happened to madonna childhood home? +-Canonic Entity : madonna_(art) +-Target Values : (list (description "iPartyRadio.com: The #1 Party Authority")) +-Candidate Entities: Madonna_(entertainer), Mencari_Madonna, Madonna_and_Child_(Duccio), Madonna_of_the_Yarnwinder | How_It_Happened, Whatever_Happened_to_Corey_Haim? | Madonna_dell'Orto, Madonna_as_a_gay_icon, Madonna_and_Child_Enthroned_(Filippo_Lippi) + +Additional entities + +Method 1 + + Madonna_(entertainer) + +Method 2 + + Madonna_(entertainer) + + + +-------------- + QUESTION: where is the best place to vacation in the dominican republic? +-Canonic Entity : dominican_republic_cuisine +-Target Values : (list (description "Santo Domingo")) +-Candidate Entities: Vacatio_legis | Shelter_in_place, BC_Place, Robert_M._Place, This_is_the_Place_Monument + +Additional entities + +Method 1 + + Robert_M._Place + +Method 2 + + + +-------------- + QUESTION: what made ancient rome fall? +-Canonic Entity : political_institutions_of_ancient_rome +-Target Values : (list (description "Capture of Rome")) +-Candidate Entities: Rome | The_History_of_the_Decline_and_Fall_of_the_Roman_Empire + +Additional entities + +Method 1 + + The_History_of_the_Decline_and_Fall_of_the_Roman_Empire + + Rome + +Method 2 + + The_History_of_the_Decline_and_Fall_of_the_Roman_Empire + + Rome + + + +-------------- + QUESTION: where was brad pitt born? +-Canonic Entity : brad_pitt +-Target Values : (list (description Shawnee)) +-Candidate Entities: Pitt + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what position does vernon davis play? +-Canonic Entity : vernon_davis +-Target Values : (list (description "Tight end")) +-Candidate Entities: Vernon_M._Davis | Position_(vector) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where is the euro 2012 tournament? +-Canonic Entity : uefa_euro_2012 +-Target Values : (list (description Italy) (description Portugal) (description Finland) (description Luxembourg) (description France) (description Slovenia) (description Austria) (description Germany) (description Greece) (description Spain)) +-Candidate Entities: 2012_Southeastern_Conference_Baseball_Tournament, 2012_Qatar_Airways_Tournament_of_Champions, 2012_Atlantic_Coast_Conference_Baseball_Tournament, 2012_CollegeInsider.com_Postseason_Tournament | Latvia_and_the_euro, Lithuania_and_the_euro | 2012_Mid-Eastern_Athletic_Conference_Baseball_Tournament, 2012_CONCACAF_Women's_Olympic_Qualifying_Tournament, 2012_NCAA_National_Collegiate_Women's_Ice_Hockey_Tournament + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what time is right now in texas? +-Canonic Entity : time_(magazine) +-Target Values : (list (description "Texas Revolution")) +-Candidate Entities: Time_in_the_United_States | Texas_Longhorns_baseball, Big_Time_(Little_Texas_album), Texas_Longhorns_men's_basketball, Texas_A&M_Aggies_football, University_of_Texas_at_Brownsville, Constitution_of_Texas, Texas_Longhorns_women's_basketball + +Additional entities + +Method 1 + + Texas_Longhorns_men's_basketball + +Method 2 + + Constitution_of_Texas + + Time_in_the_United_States + + + +-------------- + QUESTION: what to see and do in malta? +-Canonic Entity : malta +-Target Values : (list (description "Casa Rocca Piccola") (description "Dingli Cliffs") (description "Gozo 360° Multivision Show") (description "The Armoury and the Maritime Museum") (description "National Museum of Fine Arts, Malta") (description "National Museum of Archaeology, Malta") (description "Fort Rinella") (description "Megalithic Temples of Malta") (description "St. Paul's Catacombs") (description "Manoel Theatre")) +-Candidate Entities: + + + +-------------- + QUESTION: where did dolly parton grew up? +-Canonic Entity : dolly_parton +-Target Values : (list (description Sevierville)) +-Candidate Entities: Hello,_I'm_Dolly + +Additional entities + +Method 1 + + Hello,_I'm_Dolly + +Method 2 + + Hello,_I'm_Dolly + + + +-------------- + QUESTION: what state is rick santorum from? +-Canonic Entity : rick_santorum +-Target Values : (list (description Pennsylvania)) +-Candidate Entities: + + + +-------------- + QUESTION: what countries does queen elizabeth ii reign? +-Canonic Entity : elizabeth_ii +-Target Values : (list (description "Queen of Tuvalu") (description "Queen of the United Kingdom") (description "Queen of New Zealand") (description "Queen of the Bahamas") (description "Queen of Antigua and Barbuda") (description "Queen of Australia") (description "Queen of Jamaica") (description "Queen of Barbados") (description "Queen of Canada")) +-Candidate Entities: Queen_Elizabeth_The_Queen_Mother, Queen_Elizabeth_Prize_for_Engineering, Elizabeth_I_of_England, Elizabeth_Stuart,_Queen_of_Bohemia, Queen_Elizabeth_Theatre | Queen_Elizabeth-class_aircraft_carrier, Queen_Elizabeth_Park,_British_Columbia, Queen_Elizabeth,_Saskatoon, Queen_Elizabeth-class_battleship | After_the_Reign, Pray_IV_Reign, The_Reign_of_the_Superman, The_Three-Day_Reign, The_Reign_of_Kindo + +Additional entities + +Method 1 + + Queen_Elizabeth-class_aircraft_carrier + + Queen_Elizabeth_The_Queen_Mother + +Method 2 + + Queen_Elizabeth-class_aircraft_carrier + + Queen_Elizabeth_The_Queen_Mother + + + +-------------- + QUESTION: when did the aurora colorado shooting take place? +-Canonic Entity : 2012_aurora_shooting +-Target Values : (list (description "2012 Aurora shooting")) +-Candidate Entities: Aurora,_Colorado + +Additional entities + +Method 1 + + Aurora,_Colorado + +Method 2 + + Aurora,_Colorado + + + +-------------- + QUESTION: what is jonas brothers names? +-Canonic Entity : jonas_brothers +-Target Values : (list (description "Nick Jonas") (description "Kevin Jonas") (description "Joe Jonas")) +-Candidate Entities: Nick_Jonas_&_the_Administration, Jonas, Jonas_Björler, Jonas_L.A._(soundtrack) | The_Names_(band), Household_Names, Faces_&_Names, All_the_Names, Goan_Catholic_names_and_surnames + +Additional entities + +Method 1 + + Jonas_L.A._(soundtrack) + +Method 2 + + Jonas_L.A._(soundtrack) + + + +-------------- + QUESTION: what art movements was henri matisse involved in? +-Canonic Entity : henri_matisse +-Target Values : (list (description Fauvism) (description Impressionism) (description Neo-impressionism) (description Modernism)) +-Candidate Entities: Matisse_(band), Matisse_(crater), An_Essay_on_Matisse | Art_movement | Matisse_(disambiguation) + +Additional entities + +Method 1 + + Matisse_(band) + + Matisse_(disambiguation) + + Art_movement + +Method 2 + + Art_movement + + + +-------------- + QUESTION: what are some famous tourist attractions in germany? +-Canonic Entity : tourist_attractions_in_the_united_states +-Target Values : (list (description "Topography of Terror")) +-Candidate Entities: Blue_Badge_tourist_guide, Tourist_attraction | Tourism_in_Poland + +Additional entities + +Method 1 + + Tourist_attraction + +Method 2 + + Tourist_attraction + + + +-------------- + QUESTION: who's kobe bryant? +-Canonic Entity : kobe_bryant +-Target Values : (list (description "Basketball player")) +-Candidate Entities: Kobe_Doin'_Work + +Additional entities + +Method 1 + + Kobe_Doin'_Work + +Method 2 + + Kobe_Doin'_Work + + + +-------------- + QUESTION: what type of government system does saudi arabia have? +-Canonic Entity : saudi_arabia +-Target Values : (list (description "Absolute monarchy") (description "Islamic state") (description "Unitary state")) +-Candidate Entities: Bugatti_Type_51, Type_88_tank_(China), Bugatti_Type_35, Bugatti_Type_13 | Local_government_in_Australia + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what countries did czechoslovakia become? +-Canonic Entity : ethnic_minorities_in_czechoslovakia +-Target Values : (list (description Slovakia) (description "Czech Republic")) +-Candidate Entities: + + + +-------------- + QUESTION: what songs did richard marx write? +-Canonic Entity : richard_marx +-Target Values : (list (description "Dance with My Father")) +-Candidate Entities: I_Write_the_Songs, Write_(system_call) + +Additional entities + +Method 1 + + I_Write_the_Songs + +Method 2 + + I_Write_the_Songs + + + +-------------- + QUESTION: what did ryan dunn died from? +-Canonic Entity : ryan_dunn +-Target Values : (list (description "Traffic collision")) +-Candidate Entities: Dunn,_Dunn_County,_Wisconsin, Archibald_Matthias_Dunn + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what war was george washington associated with? +-Canonic Entity : ss_george_washington +-Target Values : (list (description "American Revolutionary War")) +-Candidate Entities: George_Washington_University, Civil_War_Defenses_of_Washington, George_Washington_in_the_French_and_Indian_War, George_Washington_Martin_II, Presidency_of_George_Washington, George_Washington_Memorial_Park_(Paramus,_New_Jersey), George_Washington_(Greenough), Washington_Bottom_Farm, George_Washington_(miniseries), George_Washington, George_Washington_and_slavery, George_Washington_(train) | Washington,_D.C.,_in_the_American_Civil_War | George_Washington_Masonic_National_Memorial, George_Washington_University_Art_Galleries, George_Washington_Brackenridge, George_Washington_Crile, Washington_Duke + +Additional entities + +Method 1 + + George_Washington_Masonic_National_Memorial + + George_Washington + +Method 2 + + + +-------------- + QUESTION: where was zachary taylor elected from? +-Canonic Entity : fort_zachary_taylor_historic_state_park +-Target Values : (list (description Kentucky)) +-Candidate Entities: Zachary_Taylor, Zachary_Taylor_House, Inauguration_of_Zachary_Taylor, Zachary_Taylor_National_Cemetery, Zachary_Taylor_Davis, Zachary_Philip_Katznelson, Zachary_Taylor_(Tennessee) | Elected_(song) + +Additional entities + +Method 1 + + Zachary_Taylor + +Method 2 + + Zachary_Taylor + + + +-------------- + QUESTION: who does kris humphries play for in the nba? +-Canonic Entity : kris_humphries +-Target Values : (list (description "Brooklyn Nets")) +-Candidate Entities: Kris_Jenner | Humphries, D._J._Humphries | Kris | NBA_on_NBC, NBA_Finals | Play_On! + +Additional entities + +Method 1 + + Kris_Jenner + + NBA_Finals + +Method 2 + + Kris_Jenner + + NBA_Finals + + + +-------------- + QUESTION: where tupac grew up? +-Canonic Entity : grew_up_a_screw_up +-Target Values : (list (description "East Harlem")) +-Candidate Entities: + + + +-------------- + QUESTION: where did al capone go to jail? +-Canonic Entity : capone_(rapper) +-Target Values : (list (description "United States Penitentiary, Alcatraz Island") (description "United States Penitentiary, Atlanta") (description "Federal Correctional Institution, Terminal Island")) +-Candidate Entities: Al_Capone, Capone_(film), Al_Capone_(film) + +Additional entities + +Method 1 + +Method 2 + + Al_Capone + + + +-------------- + QUESTION: what type of music did richard wagner play? +-Canonic Entity : international_association_of_wagner_societies +-Target Values : (list (description Opera) (description "Classical music") (description "Romantic music")) +-Candidate Entities: Richard_Wagner, Wagner_(film), Anthony_Wagner, Richard_Wagner_(judge), Richard_E._Wagner, Nietzsche_contra_Wagner, Richard_Wagner_(novelist), A_Wagner_Matinee + +Additional entities + +Method 1 + + Richard_Wagner + +Method 2 + + Richard_Wagner + + + +-------------- + QUESTION: what do you call money in brazil? +-Canonic Entity : brazil,_indiana +-Target Values : (list (description "Brazilian real")) +-Candidate Entities: Money_market_fund, Three_for_the_Money + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what team did tim tebow play for in college? +-Canonic Entity : tim_tebow +-Target Values : (list (description "Florida Gators football")) +-Candidate Entities: TIM_(psychedelics) | Play_On!, UEFA_Respect_Fair_Play_ranking + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what airport in paris? +-Canonic Entity : beauvais–tillé_airport +-Target Values : (list (description "Beauvais-Tillé Airport") (description "Charles de Gaulle Airport") (description "Orly Air Base") (description "Paris Orly Airport")) +-Candidate Entities: Paris + +Additional entities + +Method 1 + + Paris + +Method 2 + + + +-------------- + QUESTION: what nationality was andy williams? +-Canonic Entity : andy_williams +-Target Values : (list (description "United States of America")) +-Candidate Entities: The_Williams_Brothers | Philippine_nationality_law, Spanish_nationality_law, Nationality + +Additional entities + +Method 1 + + The_Williams_Brothers + +Method 2 + + The_Williams_Brothers + + + +-------------- + QUESTION: where did matthew brady live? +-Canonic Entity : matthew_brady +-Target Values : (list (description "New York City")) +-Candidate Entities: + + + +-------------- + QUESTION: what ball does rickie fowler play? +-Canonic Entity : rickie_fowler +-Target Values : (list (description Golf)) +-Candidate Entities: + + + +-------------- + QUESTION: who are the broncos players? +-Canonic Entity : denver_broncos +-Target Values : (list (description "Wesley Woodyard") (description "Peyton Manning") (description "Joe Mays") (description "Knowshon Moreno") (description "Joel Dreessen") (description "Mario Fannin") (description "Manuel Ramírez") (description "Tracy Porter") (description "Andre Caldwell") (description "Jacob Tamme")) +-Candidate Entities: The_Players_(New_York_City), Players_Association, Australian_rugby_league's_100_greatest_players | Swift_Current_Broncos_bus_crash + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where do most of the people live in japan? +-Canonic Entity : live_in_japan_(primal_scream_album) +-Target Values : (list (description Tokyo)) +-Candidate Entities: People_Are_People + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: in what country do they speak basque? +-Canonic Entity : university_of_the_basque_country +-Target Values : (list (description Spain) (description France)) +-Candidate Entities: + + + +-------------- + QUESTION: where is belgium at? +-Canonic Entity : belgium,_wisconsin +-Target Values : (list (description "Western Europe")) +-Candidate Entities: Crime_in_Belgium, Belgium + +Additional entities + +Method 1 + + Belgium + +Method 2 + + + +-------------- + QUESTION: what religions are in russia? +-Canonic Entity : russia,_new_york +-Target Values : (list (description "Russian Orthodox Church") (description Islam)) +-Candidate Entities: Russia | European_Congress_of_Ethnic_Religions, Indo-Greek_religions, Christianity_and_other_religions, Religions_of_the_ancient_Near_East, Abrahamic_religions, The_Pagan_Religions_of_the_Ancient_British_Isles, Review_of_Religions + +Additional entities + +Method 1 + + Russia + +Method 2 + + + +-------------- + QUESTION: what government system does north korea have? +-Canonic Entity : north_korea–south_korea_relations +-Target Values : (list (description "Single-party state") (description "Socialist state") (description "People's Republic") (description Juche) (description "Unitary state")) +-Candidate Entities: E-Government_in_South_Korea, Communism_in_Korea | Hav_Plenty_(soundtrack) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what did einstein do? +-Canonic Entity : einstein_(us-cert_program) +-Target Values : (list (description "Theoretical Physicist")) +-Candidate Entities: + + + +-------------- + QUESTION: in what country is amsterdam? +-Canonic Entity : amsterdam_(city),_new_york +-Target Values : (list (description Netherlands)) +-Candidate Entities: Amsterdam, Jewish_community_of_Amsterdam + +Additional entities + +Method 1 + + Amsterdam + +Method 2 + + Amsterdam + + + +-------------- + QUESTION: what are the most common religions in the united states? +-Canonic Entity : religions_for_peace +-Target Values : (list (description "Unitarian Universalism") (description Judaism) (description Christianity) (description Atheism) (description Buddhism) (description Hinduism) (description Islam)) +-Candidate Entities: Religions_of_the_ancient_Near_East, Japanese_new_religions, The_Pagan_Religions_of_the_Ancient_British_Isles, Religion_in_Kerala, History_of_religions, Parliament_of_the_World's_Religions, Encyclopedia_of_American_Religions | Common_law_offence | Review_of_Religions | Common_law, Common_Purse_Agreement | Alliance_of_Religions_and_Conservation, World_Religions_Conference + +Additional entities + +Method 1 + + Japanese_new_religions + +Method 2 + + Japanese_new_religions + + + +-------------- + QUESTION: what did martin luther king jr go to college for? +-Canonic Entity : martin_luther_king,_jr. +-Target Values : (list (description Sociology)) +-Candidate Entities: Martin_Luther_King_III, Martin_Luther_College, Martin_Luther_King,_Sr., Martin_Luther_King_Jr._Memorial_Library, Martin_Luther_King_Jr._Memorial_Bridge, Martin_Luther_King_Jr._Shoreline, Dr._Martin_Luther_King_Jr._Plaza_(Metrorail_station), Dr._Martin_Luther_King_Jr._Multicultural_Institute + +Additional entities + +Method 1 + + Martin_Luther_King_III + +Method 2 + + Martin_Luther_King,_Sr. + + + +-------------- + QUESTION: where did sir ernest shackleton come from? +-Canonic Entity : ernest_shackleton +-Target Values : (list (description "100 Greatest Britons")) +-Candidate Entities: Shackleton_(TV_serial) | Ernest_MacMillan | Nicholas_Shackleton, Shackleton_(crater), Shackleton + +Additional entities + +Method 1 + + Shackleton + + Shackleton_(TV_serial) + +Method 2 + + Shackleton + + Shackleton_(TV_serial) + + + +-------------- + QUESTION: what made jimi hendrix great? +-Canonic Entity : jimi_hendrix +-Target Values : (list (description guitar)) +-Candidate Entities: + + + +-------------- + QUESTION: who did aaron rodgers play college football 4? +-Canonic Entity : aaron_rodgers +-Target Values : (list (description "University of California, Berkeley")) +-Candidate Entities: James_Rodgers_(American_football) | Aaron_Ross, Aaron_Taylor_(American_football,_born_1972), Aaron_Martin_(American_football) | Raymond_P._Rodgers | Aaron_Smith_(American_football), Aaron_Lockett_(gridiron_football), Aaron_Taylor_(American_football,_born_1975) | At_Play_Vol._4, Play_On! + +Additional entities + +Method 1 + + Aaron_Smith_(American_football) + + Aaron_Ross + +Method 2 + + Aaron_Smith_(American_football) + + + +-------------- + QUESTION: who plays nathan scott? +-Canonic Entity : nathan_b._scott +-Target Values : (list (description "James Lafferty")) +-Candidate Entities: Nathan_Scott_(composer), Nathan_A._Scott,_Jr. | Four_Major_Plays_of_Chikamatsu | Nathan_Scott, Starboy_Nathan | As_the_Music_Plays + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: when did the houston rockets win the championship? +-Canonic Entity : houston_rockets +-Target Values : (list (description "1994 NBA Finals") (description "1995 NBA Finals")) +-Candidate Entities: + + + +-------------- + QUESTION: where is mount whitney? +-Canonic Entity : mount_whitney +-Target Values : (list (description "Sierra Nevada") (description California)) +-Candidate Entities: + + + +-------------- + QUESTION: who created the character of romeo? +-Canonic Entity : romeo +-Target Values : (list (description "William Shakespeare")) +-Candidate Entities: Character_(arts) | Runs_created, God_Created_the_Integers, Cardinals_created_by_Adrian_VI, The_Beauty_Created_LP | Is_This_the_World_We_Created...? + +Additional entities + +Method 1 + + Character_(arts) + +Method 2 + + Character_(arts) + + + +-------------- + QUESTION: what are some places to visit in new york? +-Canonic Entity : places_to_visit +-Target Values : (list (description "Chelsea Art Museum") (description "Brooklyn Bridge") (description "Empire State Building") (description "The Broadway Theatre") (description "American Museum of Natural History") (description "Central Park") (description "St. Patrick's Cathedral") (description "Japan Society of New York") (description "FusionArts Museum") (description "American Folk Art Museum")) +-Candidate Entities: The_Places_in_Between | Visit_Indonesia_Year + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what are the countries and capitals of central america? +-Canonic Entity : lists_of_capitals +-Target Values : (list (description Honduras) (description "El Salvador") (description Panama) (description "Costa Rica") (description Guatemala) (description "Gran Colombia") (description Belize)) +-Candidate Entities: Central_America, History_of_Central_America, South_America, Anglican_Church_in_Central_America, Land_mines_in_Central_America, Assembly_of_Canonical_Orthodox_Bishops_of_North_and_Central_America, Dominican_Republic–Central_America_Free_Trade_Agreement, Operation_Enduring_Freedom_–_Caribbean_and_Central_America, Greater_Republic_of_Central_America, Flags_of_North_America, Deforestation_in_Central_America, Federal_Republic_of_Central_America | Central_Time_Zone | Washington_Capitals | Central_banks_and_currencies_of_Central_America_and_South_America, List_of_sovereign_states_and_dependent_territories_in_South_America, List_of_fictional_American_countries | 1934_Central_America_hurricane | Heavily_indebted_poor_countries, Income_tax_in_European_countries, FIBA_European_Championship_for_Small_Countries, Megadiverse_countries + +Additional entities + +Method 1 + + Washington_Capitals + + South_America + + Central_Time_Zone + +Method 2 + + + +-------------- + QUESTION: where is puntland somalia? +-Canonic Entity : puntland_security_force +-Target Values : (list (description Garoowe) (description "Bari Region") (description Dalweyn) (description Eyl)) +-Candidate Entities: Puntland, Outline_of_Puntland + +Additional entities + +Method 1 + + Puntland + +Method 2 + + Puntland + + + +-------------- + QUESTION: what animal is on the western australian flag? +-Canonic Entity : flag_of_australia +-Target Values : (list (description "Black Swan")) +-Candidate Entities: Western_Australian_state_election,_1993, Western_Australian_state_election,_2001, Western_Australian_state_election,_2013, Western_Australian_state_election,_1996, Western_Australian_gold_rushes, Western_Animal_Rights_Network | World_Flag | Love_is_an_Animal | Flag_to_Flag | Western_Australian_daylight_saving_referendum,_1984, Western_Australian_daylight_saving_referendum,_1992, Western_Australian_daylight_saving_referendum,_1975 + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where did drew stanton play in college? +-Canonic Entity : stanton_drew +-Target Values : (list (description "Michigan State University")) +-Candidate Entities: Drew_Stanton, Stanton_College_Preparatory_School + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what is kareem abdul jabbar real name? +-Canonic Entity : kareem_abdul-jabbar +-Target Values : (list (description "Ferdinand Lewis Alcindor, Sr.")) +-Candidate Entities: + + + +-------------- + QUESTION: what countries fall in eastern europe? +-Canonic Entity : revolutions_of_1989 +-Target Values : (list (description "Southern Carpathians") (description Caucasus) (description "Belarusian Central Rada") (description Kresy) (description "Kievan Rus'") (description "Grand Duchy of Lithuania") (description "Kingdom of Romania") (description Moldova) (description "Belarusian People's Republic") (description "Second Polish Republic")) +-Candidate Entities: Eastern_Europe, Eastern_grey_squirrels_in_Europe, Eastern_Bloc | Romance-speaking_Europe, Central_and_Eastern_Europe, Southeast_Europe, United_Nations_geoscheme_for_Europe, Gender_roles_in_post-communist_Central_and_Eastern_Europe | Eastern_European_cuisine | Europe, Animax_Eastern_Europe | Anti-Jewish_violence_in_Central_and_Eastern_Europe,_1944–46 | Fall_Grün_(Czechoslovakia), The_Fall_(band), Comes_with_the_Fall, Bernard_B._Fall, Free_fall + +Additional entities + +Method 1 + + Anti-Jewish_violence_in_Central_and_Eastern_Europe,_1944–46 + + Bernard_B._Fall + + Central_and_Eastern_Europe + + Europe + +Method 2 + + Europe + + Central_and_Eastern_Europe + + Eastern_Bloc + + + +-------------- + QUESTION: what are taylor swift's albums? +-Canonic Entity : swift's_epitaph +-Target Values : (list (description "Stripped Raw & Real") (description Ronan) (description "CMT Crossroads") (description "Speak Now - World Tour Live") (description Fearless) (description "iTunes Live From SoHo") (description "Beautiful Eyes") (description "We Are Never Ever Getting Back Together") (description "Speak Now") (description Red)) +-Candidate Entities: Taylor_Swift_(album), Taylor_Swift, B._E._Taylor, List_of_songs_recorded_by_Taylor_Swift, Taylor_Swift_discography + +Additional entities + +Method 1 + + Taylor_Swift + +Method 2 + + + +-------------- + QUESTION: who is the prime minister of ethiopia now? +-Canonic Entity : prime_minister_of_the_united_kingdom +-Target Values : (list (description "Meles Zenawi")) +-Candidate Entities: List_of_heads_of_government_of_Ethiopia, Ethiopian_training_ship_Ethiopia_(A-01), Ethiopia, Workers'_Party_of_Ethiopia + +Additional entities + +Method 1 + + Ethiopia + +Method 2 + + Ethiopia + + + +-------------- + QUESTION: when was mary poppins made? +-Canonic Entity : mary_poppins +-Target Values : (list (description 1964)) +-Candidate Entities: Poppins | Mary_Kay_Ash + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what did king edward vi died from? +-Canonic Entity : united_states_virgin_islands +-Target Values : (list (description Tuberculosis)) +-Candidate Entities: + + + +-------------- + QUESTION: what did robert boyle accomplish? +-Canonic Entity : boyle +-Target Values : (list (description "Boyle's law")) +-Candidate Entities: + + + +-------------- + QUESTION: who did johnny bench play for? +-Canonic Entity : johnny_bench +-Target Values : (list (description "Cincinnati Reds")) +-Candidate Entities: Bench_(British_clothing_brand), Bench_(Philippine_clothing_brand), Bench_(furniture), Fine_Gael_Front_Bench, Bench_(metonymy), Bench_(weight_training), Kåre_Bench | Johnny_Kidd_&_the_Pirates, Johnny_and_Mary | Play_On! + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who does the islamic worship? +-Canonic Entity : worship +-Target Values : (list (description Allah)) +-Candidate Entities: Islamic_Declaration, Science_in_the_medieval_Islamic_world, Islamic_view_of_the_Christian_Bible + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where is napoleon buried? +-Canonic Entity : napoleon,_indiana +-Target Values : (list (description "Les Invalides") (description Longwood)) +-Candidate Entities: Buried_by_the_Buzzzz | Napoleon_(Animal_Farm) | Buried_(film) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what language do people speak in iceland? +-Canonic Entity : speak!!! +-Target Values : (list (description "Icelandic Language")) +-Candidate Entities: Iceland | The_People_Speak_(film), Speak_(No-Man_album) | Christianisation_of_Iceland | Speak_(Godsmack_song) + +Additional entities + +Method 1 + + Iceland + +Method 2 + + + +-------------- + QUESTION: who sang at the mtv movie awards 2011? +-Canonic Entity : 2011_mtv_movie_awards +-Target Values : (list (description "Twisted Sister") (description "Suicidal Tendencies") (description "Guns N' Roses") (description "Red Hot Chili Peppers") (description AC/DC) (description Nirvana) (description Run-D.M.C.) (description "Ice Cube") (description "The Offspring") (description Metallica)) +-Candidate Entities: + + + +-------------- + QUESTION: where do houston aeros play? +-Canonic Entity : houston_aeros_(1994–2013) +-Target Values : (list (description "Toyota Center")) +-Candidate Entities: Aeros, AEROS_(satellite) | Houston + +Additional entities + +Method 1 + + Houston + +Method 2 + + Houston + + + +-------------- + QUESTION: what is the new york knicks starting lineup? +-Canonic Entity : new_york_knicks +-Target Values : (list (description "Raymond Felton") (description "Marcus Camby") (description "J. R. Smith") (description "Tyson Chandler") (description "Carmelo Anthony") (description "Iman Shumpert") (description "Jason Kidd") (description "Steve Novak") (description "Chris Copeland") (description "Pablo Prigioni")) +-Candidate Entities: Starting_Lineup_(toy_line), Starting_lineup + +Additional entities + +Method 1 + + Starting_lineup + +Method 2 + + Starting_lineup + + + +-------------- + QUESTION: what to see and do in galway ireland? +-Canonic Entity : national_university_of_ireland,_galway +-Target Values : (list (description "Galway City Museum") (description "Taibhdhearc na Gaillimhe") (description "Spanish Arch") (description "Cathedral of Our Lady Assumed into Heaven and St Nicholas, Galway") (description "Galway Sportsgrounds") (description "Hotel Meyrick") (description "Eyre Square") (description "St. Nicholas' Collegiate Church") (description "National University of Ireland, Galway") (description "Galway Arts Festival")) +-Candidate Entities: County_Galway, Galway, Galway_senior_football_team + + + +-------------- + QUESTION: what year did brandon roy get drafted? +-Canonic Entity : brandon_roy +-Target Values : (list (description "2006 NBA Draft")) +-Candidate Entities: I_Don't_Wanna_Get_Drafted + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what are the names of michael jackson children? +-Canonic Entity : prince_michael_jackson_i +-Target Values : (list (description "Paris-Michael Katherine Jackson") (description "Prince Michael Jackson I") (description "Prince Michael Jackson II")) +-Candidate Entities: Michael_A._Jackson, Michael_P._Jackson, Michael_Jackson_(radio_commentator), Michael_Jackson, Michael_Jackson-related_games, Michael_Jackson_(anthropologist), Michael_W._Jackson | Mike_Jackson_(systems_scientist), Michael_Jackson_(TV_executive), Mike_Jackson, Paris-Michael_Katherine_Jackson, The_Essential_Michael_Jackson, Michael_Jackson_(English_singer) | Michael_Gregory_(jazz_guitarist), Trial_of_Michael_Jackson + + + +-------------- + QUESTION: what is pennsylvania's state flower called? +-Canonic Entity : flower +-Target Values : (list (description "Kalmia latifolia")) +-Candidate Entities: A_Band_Called_O, Called_to_Serve_(song), The_Return_of_a_Man_Called_Horse + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what book did niccolo machiavelli write? +-Canonic Entity : niccolò_machiavelli +-Target Values : (list (description "The Prince")) +-Candidate Entities: Everyday_I_Write_the_Book, Write_(system_call), I_Could_Write_a_Book | Machiavelli_(board_game) | Uncacheable_speculative_write_combining + +Additional entities + +Method 1 + +Method 2 + + Machiavelli_(board_game) + + + +-------------- + QUESTION: what religions are found in australia? +-Canonic Entity : christianity_and_other_religions +-Target Values : (list (description Catholicism) (description Buddhism) (description Islam) (description Anglicanism)) +-Candidate Entities: Religions_of_the_ancient_Near_East | Australia | European_Congress_of_Ethnic_Religions, Indo-Greek_religions, Journal_of_Chinese_Religions, Abrahamic_religions, The_Pagan_Religions_of_the_Ancient_British_Isles, Review_of_Religions + +Additional entities + +Method 1 + + Abrahamic_religions + + Australia + +Method 2 + + Australia + + Abrahamic_religions + + + +-------------- + QUESTION: what college did drew bledsoe? +-Canonic Entity : drew_bledsoe +-Target Values : (list (description "Washington State University")) +-Candidate Entities: + + + +-------------- + QUESTION: where is the mtv headquarters? +-Canonic Entity : mtv_(new_zealand) +-Target Values : (list (description "New York City")) +-Candidate Entities: MTV_Networks_Asia_Pacific, MTV_(Vietnam), MTV_Unplugged_/_Live, MTV_(Canada), MTV_(UK_and_Ireland), MTV_(Romania), MTV_(Latin_America), MTV | Security_Forces_Headquarters_–_Wanni, Security_Forces_Headquarters_–_East, FIFA_headquarters, Headquarters_(album), Security_Forces_Headquarters_–_Jaffna + +Additional entities + +Method 1 + + MTV + +Method 2 + + MTV + + + +-------------- + QUESTION: who does michael vick play for? +-Canonic Entity : michael_vick +-Target Values : (list (description "Philadelphia Eagles")) +-Candidate Entities: + + + +-------------- + QUESTION: what is guatemala current system of government? +-Canonic Entity : guatemala +-Target Values : (list (description "Constitutional republic") (description "Presidential system") (description "Unitary state")) +-Candidate Entities: West_Spitsbergen_Current, Current_divider, Partial_current | Neutral_direct-current_telegraph_system | Wetting_current + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what is anderson silva trained in? +-Canonic Entity : anderson_silva_de_frança +-Target Values : (list (description "Mixed Martial Artist")) +-Candidate Entities: Thiago_Silva_(fighter), Pereira_da_Silva, Silva_Oliveira, Rui_da_Silva + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what caused the asian currency crisis? +-Canonic Entity : 1997_asian_financial_crisis +-Target Values : (list (description "Asian Affairs")) +-Candidate Entities: Currency_crisis, Currency | Four_Asian_Tigers | Currency_transaction_tax | 1970s_energy_crisis | Currency_War_of_2009–11 | I_Sincerely_Apologise_for_All_the_Trouble_I've_Caused, Job_losses_caused_by_the_Great_Recession, Rome_Convention_on_Damage_Caused_by_Foreign_Aircraft_to_Third_Parties_on_the_Surface, Dream_Caused_by_the_Flight_of_a_Bee_Around_a_Pomegranate_a_Second_Before_Awakening, The_Rabbits_Who_Caused_All_the_Trouble + +Additional entities + +Method 1 + + 1970s_energy_crisis + + Currency_War_of_2009–11 + + Currency_transaction_tax + + Four_Asian_Tigers + + Currency + +Method 2 + + Currency_War_of_2009–11 + + 1970s_energy_crisis + + Currency + + Four_Asian_Tigers + + + +-------------- + QUESTION: which countries does russia border? +-Canonic Entity : norway–russia_border +-Target Values : (list (description Ukraine) (description Belarus) (description Kazakhstan) (description Poland) (description Lithuania) (description Azerbaijan) (description Mongolia) (description "North Korea") (description Georgia) (description Norway)) +-Candidate Entities: Mongolia–Russia_border, China–Russia_border, Poland–Russia_border, Border_Guard_Service_of_Russia, North_Korea–Russia_border, Georgia–Russia_border, Russia–Ukraine_border, Finnish–Swedish_border, Kazakhstan–Russia_border, Abkhazia–Russia_border, List_of_sets_of_four_countries_that_border_one_another, Finnish–Russian_border, Indonesia–Thailand_border, Indonesia–Singapore_border, Indonesia–Vietnam_border, Belarus–Russia_border, Slovakia–Ukraine_border, Finland–Norway_border, 1991_Sino-Soviet_Border_Agreement | Heavily_indebted_poor_countries, Income_tax_in_European_countries, FIBA_European_Championship_for_Small_Countries, Megadiverse_countries + +Additional entities + +Method 1 + + Finland–Norway_border + +Method 2 + + Finland–Norway_border + + + +-------------- + QUESTION: what season did brooke burke won? +-Canonic Entity : brooke_burke +-Target Values : (list (description "Dancing with the Stars - Season 7")) +-Candidate Entities: Burke_(town),_New_York + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what does pixar produce? +-Canonic Entity : pixar +-Target Values : (list (description "A Bug's Life") (description "Toy Story 2") (description Ratatouille) (description Cars) (description Up) (description "Toy Story") (description "Monsters, Inc.") (description "The Incredibles") (description "Finding Nemo") (description WALL-E)) +-Candidate Entities: Produce, Produce_(company) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what did emily dickinson die of? +-Canonic Entity : emily_dickinson_museum +-Target Values : (list (description "Bright's disease")) +-Candidate Entities: Emily_Dickinson, Emily_Dickinson_International_Society, The_Emily_Dickinson_Journal, Emily_Vermeule, Emily_E._Dickinson_House | Writer_Magazine/Emily_Dickinson_Award + +Additional entities + +Method 1 + + Emily_Dickinson + +Method 2 + + Emily_Dickinson + + + +-------------- + QUESTION: who was king or queen after james i? +-Canonic Entity : king_vs._queen +-Target Values : (list (description "Charles I of England")) +-Candidate Entities: James_A._King, James_VI_and_I, James_G._King, James_I_of_Scotland, King_James_Version, James_Horace_King, King_James_Only_movement | Jaime_King | Queen_(Snow_White), Queen_Elizabeth_The_Queen_Mother + +Additional entities + +Method 1 + + James_VI_and_I + +Method 2 + + + +-------------- + QUESTION: who played lois lane in superman 1? +-Canonic Entity : superman's_girl_friend,_lois_lane +-Target Values : (list (description "Margot Kidder")) +-Candidate Entities: Lois_Lane, Relationship_of_Clark_Kent_and_Lois_Lane, Lois_&_Clark:_The_New_Adventures_of_Superman_(season_2) | Loïs_Lane | Lois_&_Clark:_The_New_Adventures_of_Superman_(season_3), Lois_&_Clark:_The_New_Adventures_of_Superman_(season_4), Superman_(1978_film), Superman_(serial), Lois_&_Clark:_The_New_Adventures_of_Superman, Superman, Superman_(comic_book), Lois_&_Clark:_The_New_Adventures_of_Superman_(season_1), Adventures_of_Superman_(TV_series) | Stewie_Kills_Lois_and_Lois_Kills_Stewie | Origin_of_Superman | Twilight_as_Played_by_The_Twilight_Singers, Played, Played_in_Britain, The_Band_Played_On, And_the_Bands_Played_On + +Additional entities + +Method 1 + + Origin_of_Superman + + Lois_Lane + + Superman + +Method 2 + + Origin_of_Superman + + Superman + + Lois_Lane + + + +-------------- + QUESTION: what was elie wiesel's father's name? +-Canonic Entity : elie_wiesel +-Target Values : (list (description "Chlomo Wiesel")) +-Candidate Entities: + + + +-------------- + QUESTION: where is st vincent de paul buried? +-Canonic Entity : 2011_são_tomé_and_principe_championship +-Target Values : (list (description Paris)) +-Candidate Entities: Vincent_de_Paul | Buried_(film) + + + +-------------- + QUESTION: what language do fiji people speak? +-Canonic Entity : speak!!! +-Target Values : (list (description "Fiji Hindi") (description "English Language") (description "Fijian Language")) +-Candidate Entities: Sikhism_in_Fiji, Indians_in_Fiji | The_People_Speak_(film), Speak_(No-Man_album) | Fiji_Hindi, President_of_Fiji | Speak_(Godsmack_song) | Consumer_council_of_Fiji, Fiji, Prime_Minister_of_Fiji | I_Don't_Speak_the_Language + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what victoria beckham kids names? +-Canonic Entity : victoria_beckham +-Target Values : (list (description "Romeo Beckham") (description "Cruz Beckham") (description "Harper Beckham") (description "Brooklyn Beckham")) +-Candidate Entities: Suburban_Kids_with_Biblical_Names + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where is new york in the map? +-Canonic Entity : map_(band) +-Target Values : (list (description "New York City")) +-Candidate Entities: The_National_Map + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where did france surrender ww2? +-Canonic Entity : surrender_(the_chemical_brothers_album) +-Target Values : (list (description "Mediterranean Sea")) +-Candidate Entities: Surrender_(military) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what did jimmy valvano die with? +-Canonic Entity : jim_valvano +-Target Values : (list (description Cancer)) +-Candidate Entities: The_V_Show_with_Bob_Valvano | To_Die_For + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what teams did charles barkley? +-Canonic Entity : charles_barkley +-Target Values : (list (description "Philadelphia 76ers") (description "Houston Rockets") (description "Phoenix Suns")) +-Candidate Entities: Charles_E._Barkley, Alben_W._Barkley, David_B._Barkley, John_L._Barkley, Barkley_(Sesame_Street) + +Additional entities + +Method 1 + + Alben_W._Barkley + +Method 2 + + Alben_W._Barkley + + + +-------------- + QUESTION: when was bill clinton elected president? +-Canonic Entity : bill_clinton +-Target Values : (list (description "1996 Democratic National Convention") (description "1992 Democratic National Convention")) +-Candidate Entities: President_William_Jefferson_Clinton_Birthplace_Home_National_Historic_Site, Hillary_Rodham_Clinton, Clinton_Foundation + +Additional entities + +Method 1 + + Clinton_Foundation + +Method 2 + + Clinton_Foundation + + + +-------------- + QUESTION: where did giovanni pierluigi da palestrina live? +-Canonic Entity : giovanni_pierluigi_da_palestrina +-Target Values : (list (description Italy)) +-Candidate Entities: Palestrina, Palestrina_(opera), Roman_Catholic_Suburbicarian_Diocese_of_Palestrina | Giovanni_Francesco_Anerio | U.S._Palestrina_1919 | Pierluigi | Palestrina_(disambiguation), Abundius_of_Palestrina | Giovanni_Maria_Nanino | Live_(James_Taylor_album), Ableton_Live, Live_Baby_Live, Live_art, Live_Box + +Additional entities + +Method 1 + + Palestrina_(disambiguation) + + Palestrina_(opera) + + Giovanni_Maria_Nanino + + Giovanni_Francesco_Anerio + +Method 2 + + Palestrina_(disambiguation) + + Giovanni_Francesco_Anerio + + Giovanni_Maria_Nanino + + + +-------------- + QUESTION: when was the 2012 calgary stampede? +-Canonic Entity : calgary_stampede +-Target Values : (list (description "1988 Winter Olympics")) +-Candidate Entities: PhilSports_Stadium_stampede, 1994_Gowari_stampede, Stampede_Corral, 2008_Naina_Devi_temple_stampede, Stampede_(band) | List_of_festivals_in_Calgary, Calgary | 2013_Houphouët-Boigny_stampede, 2013_Madhya_Pradesh_stampede | The_Big_Four_(Calgary) + +Additional entities + +Method 1 + + The_Big_Four_(Calgary) + + Stampede_Corral + + Calgary + +Method 2 + + The_Big_Four_(Calgary) + + Stampede_Corral + + Calgary + + + +-------------- + QUESTION: when michael jordan got drafted? +-Canonic Entity : michael_i._jordan +-Target Values : (list (description "1984 NBA Draft")) +-Candidate Entities: Michael_Jordan, Michael_B._Jordan | I_Don't_Wanna_Get_Drafted | Jeffrey_Jordan, Michael_H._Jordan, Michael_Jordan_Steakhouse + +Additional entities + +Method 1 + + Michael_H._Jordan + + Michael_B._Jordan + +Method 2 + + + +-------------- + QUESTION: what kind of money do the philippines use? +-Canonic Entity : gifts_in_kind +-Target Values : (list (description "Philippine peso")) +-Candidate Entities: Demand_for_money, The_Future_of_Money, Leprosy_colony_money, Money_market_fund + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who played dorothy in the wizard of oz movie? +-Canonic Entity : wizard_of_oz_(character) +-Target Values : (list (description "Judy Garland")) +-Candidate Entities: Dorothy_Gale | Twilight_as_Played_by_The_Twilight_Singers, Played | Movie_Gallery | Played_in_Britain | 2000_MTV_Movie_Awards + +Additional entities + +Method 1 + + Dorothy_Gale + +Method 2 + + Dorothy_Gale + + + +-------------- + QUESTION: who does marion barber play 4? +-Canonic Entity : marion_barber,_jr. +-Target Values : (list (description "Chicago Bears") (description "Minnesota Golden Gophers football") (description "Dallas Cowboys")) +-Candidate Entities: Marion_Barber_III + +Additional entities + +Method 1 + + Marion_Barber_III + +Method 2 + + Marion_Barber_III + + + +-------------- + QUESTION: what college did james franco go to? +-Canonic Entity : james_franco +-Target Values : (list (description "Columbia University School of the Arts")) +-Candidate Entities: St._James_College_of_Parañaque | Franco_D'Andrea, Franco_(General_Hospital) + +Additional entities + +Method 1 + + Franco_(General_Hospital) + +Method 2 + + Franco_(General_Hospital) + + + +-------------- + QUESTION: how many teams are there in the ncaa football? +-Canonic Entity : list_of_ncaa_institutions_with_club_football_teams +-Target Values : (list (description "Stanford Cardinal football") (description "Baylor Bears baseball") (description "Murray State Racers men's basketball") (description "Wofford Terriers men's basketball") (description "UC Santa Barbara Gauchos men's basketball") (description "Ohio State Buckeyes football") (description "Oregon State University Beavers") (description "Wake Forest Demon Deacons women's golf") (description "Kenyon Men's Swimming") (description "Saint Mary's College of California Gaels men's basketball")) +-Candidate Entities: 2005_NCAA_conference_realignment | Division_I_(NCAA) + + + +-------------- + QUESTION: who is garrett pretty little liars? +-Canonic Entity : pretty_little_liars_(book) +-Target Values : (list (description "American football player")) +-Candidate Entities: Liars_(band), Liars_(Liars_album) | Edmund_H._Garrett + + + +-------------- + QUESTION: what type of currency should i take to mexico? +-Canonic Entity : currency +-Target Values : (list (description "Mexican peso")) +-Candidate Entities: Type_88_tank_(China), Bugatti_Type_35 | Small_and_medium_enterprises_in_Mexico | Bugatti_Type_51, Bugatti_Type_13 + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what did lucille ball die of? +-Canonic Entity : lucille_ball +-Target Values : (list (description "Aortic dissection")) +-Candidate Entities: Lucille_(guitar), Lucille_(album), Lucille_(Little_Richard_song), Lucille_(Kenny_Rogers_song) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what religion was john f kennedy? +-Canonic Entity : john_p._kennedy +-Target Values : (list (description Catholicism)) +-Candidate Entities: John_Kennedy_(Australian_musician), John_Neely_Kennedy, John_F._Kennedy,_Jr., John_Kennedy,_Jr._(Australian_footballer), John_F._Kennedy, John_L._Kennedy | Jacqueline_Kennedy_Onassis, Yad_Kennedy, John_F._Kennedy_Center_for_the_Performing_Arts, Assassination_of_John_F._Kennedy, John_F._Kennedy_High_School_(Cleveland,_Ohio), Robert_F._Kennedy, Foreign_policy_of_the_John_F._Kennedy_administration, Victoria_Reggie_Kennedy, John_Fitzgerald_Kennedy_National_Historic_Site, John_J._Kennedy_(Republic_of_Texas_politician), John_F._Kennedy_High_School_(Mt._Angel,_Oregon) | Religion_and_environmentalism + +Additional entities + +Method 1 + + Jacqueline_Kennedy_Onassis + + John_F._Kennedy + +Method 2 + + John_F._Kennedy + + + +-------------- + QUESTION: where was the earthquake in chile 2010? +-Canonic Entity : 2010_chile_earthquake +-Target Values : (list (description "Maule Region")) +-Candidate Entities: 2014_Iquique_earthquake, 1922_Vallenar_earthquake, 893_Ardabil_earthquake | Chile, Volcanology_of_Chile | 1992_Landers_earthquake, 1906_Valparaíso_earthquake + +Additional entities + +Method 1 + + 2014_Iquique_earthquake + + 1906_Valparaíso_earthquake + + Chile + +Method 2 + + 1906_Valparaíso_earthquake + + 2014_Iquique_earthquake + + Chile + + + +-------------- + QUESTION: what style of art does andy warhol do? +-Canonic Entity : the_andy_warhol_museum +-Target Values : (list (description "Pop art")) +-Candidate Entities: Andy_Warhol_Museum_of_Modern_Art, Andy_Warhol, Warhol_superstars, Andy_Warhol_(song) + +Additional entities + +Method 1 + + Andy_Warhol + +Method 2 + + Andy_Warhol + + + +-------------- + QUESTION: what movies did ron howard do? +-Canonic Entity : ron_howard +-Target Values : (list (description "Apollo 13") (description "A Beautiful Mind") (description "Curious George") (description "Happy Days") (description Cocoon) (description "From the Earth to the Moon")) +-Candidate Entities: + + + +-------------- + QUESTION: what county is charlotte north carolina? +-Canonic Entity : charlotte,_north_carolina +-Target Values : (list (description "Mecklenburg County")) +-Candidate Entities: University_of_North_Carolina_at_Charlotte, North_Charlotte_(Charlotte_neighborhood), List_of_high_schools_in_North_Carolina + +Additional entities + +Method 1 + + University_of_North_Carolina_at_Charlotte + +Method 2 + + University_of_North_Carolina_at_Charlotte + + + +-------------- + QUESTION: what type of government and economic system does the united states have? +-Canonic Entity : substructural_type_system +-Target Values : (list (description "Constitutional republic")) +-Candidate Entities: Government, Federal_government_of_the_United_States | Transportation_Economic_Development_Impact_System, Soviet-type_economic_planning, Economic_impact_of_illegal_immigrants_in_the_United_States, System_of_Integrated_Environmental_and_Economic_Accounting, Economic_system, Economic_policy_of_the_Hugo_Chávez_government, The_System_of_Economic_Contradictions,_or_The_Philosophy_of_Poverty, United_Nations_Economic_and_Social_Council | Holy_See_and_the_United_Nations, United_States_Economic_Census, United_Nations_System, United_States_Government_Printing_Office | Type_(designation), Type_88_tank_(China) | Council–manager_government | Exclusive_economic_zone + +Additional entities + +Method 1 + + Federal_government_of_the_United_States + +Method 2 + + + +-------------- + QUESTION: who is michelle obama? +-Canonic Entity : michelle_obama +-Target Values : (list (description Writer) (description Lawyer)) +-Candidate Entities: + + + +-------------- + QUESTION: where did kate middleton go to prep school? +-Canonic Entity : prep_for_prep +-Target Values : (list (description "St Andrew's School, Pangbourne")) +-Candidate Entities: George_S._Middleton_High_School + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what type of government does nigeria have today? +-Canonic Entity : nigeria +-Target Values : (list (description "Presidential system") (description "Federal republic") (description Federation)) +-Candidate Entities: Today_(The_Smashing_Pumpkins_song), Today_(EP) | Type_88_tank_(China), Bugatti_Type_51, Type_88_tank_(China), Bugatti_Type_35, Bugatti_Type_13 | Local_government_in_Australia + +Additional entities + +Method 1 + +Method 2 + + Bugatti_Type_51 + + + +-------------- + QUESTION: what did hans oersted discovered in 1819? +-Canonic Entity : hans_christian_ørsted +-Target Values : (list (description Aluminium)) +-Candidate Entities: Oersted, Oersted_(crater), Oersted_(album) | 1819 | DiscoverEd + +Additional entities + +Method 1 + + Oersted + +Method 2 + + Oersted + + + +-------------- + QUESTION: what is the very first harry potter book? +-Canonic Entity : harry_potter_(film_series) +-Target Values : (list (description "Harry Potter and the Philosopher's Stone")) +-Candidate Entities: Indies_Choice_Book_Awards, Real_Book, The_Book_on_Mediums, Black_Book_(World_War_II), The_Black_Book_(Rankin_novel) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what kourtney kardashian name her daughter? +-Canonic Entity : kourtney_kardashian +-Target Values : (list (description "Penelope Scotland Disick")) +-Candidate Entities: Kardashian | Daughter_of_the_Mountains, Gunnar's_Daughter, The_Best_of_Farmer's_Daughter, The_Farmer's_Daughter_(video_game), The_Pharaoh's_Daughter + +Additional entities + +Method 1 + + Kardashian + +Method 2 + + Kardashian + + + +-------------- + QUESTION: when did the lions last win a thanksgiving game? +-Canonic Entity : thanksgiving_(united_states) +-Target Values : (list (description Tombo)) +-Candidate Entities: NFL_on_Thanksgiving_Day, Thanksgiving, Thanksgiving_(Canada) | For_the_Win | BC_Lions + +Additional entities + +Method 1 + + BC_Lions + + Thanksgiving + +Method 2 + + BC_Lions + + Thanksgiving + + + +-------------- + QUESTION: what kind of government does chile have today? +-Canonic Entity : chile +-Target Values : (list (description "Presidential system") (description Republic) (description "Unitary state")) +-Candidate Entities: Today_(The_Smashing_Pumpkins_song), Today_(U.S._TV_program) | Gifts_in_kind, A_Kind_of_Alchemy | Today_(EP) | Kind_(type_theory) + +Additional entities + +Method 1 + + Today_(U.S._TV_program) + +Method 2 + + Today_(U.S._TV_program) + + + +-------------- + QUESTION: where did richard arkwright die? +-Canonic Entity : richard_arkwright +-Target Values : (list (description Cromford)) +-Candidate Entities: Arkwright_Society + +Additional entities + +Method 1 + + Arkwright_Society + +Method 2 + + Arkwright_Society + + + +-------------- + QUESTION: who played luke skywalker in star wars episode 4? +-Canonic Entity : skywalker_family +-Target Values : (list (description "Mark Hamill")) +-Candidate Entities: Luke_Skywalker | Star_Wars_(film) | Luke_Skywalker_and_the_Shadows_of_Mindor | Star_Wars, Star_Wars_Episode_III:_Revenge_of_the_Sith, Robot_Chicken:_Star_Wars_Episode_II, Star_Wars_(UK_comics), Star_Wars_(1983_video_game) + +Additional entities + +Method 1 + + Luke_Skywalker_and_the_Shadows_of_Mindor + + Star_Wars_(film) + + Star_Wars + +Method 2 + + Luke_Skywalker_and_the_Shadows_of_Mindor + + Luke_Skywalker + + Star_Wars_(film) + + Star_Wars + + + +-------------- + QUESTION: what movies has taylor lautner? +-Canonic Entity : taylor_lautner +-Target Values : (list (description "New Moon") (description "He's a Bully, Charlie Brown") (description Eclipse) (description "Cheaper by the Dozen 2") (description Incarceron) (description "The Adventures of Sharkboy and Lavagirl") (description "Dear Eleanor") (description Abduction) (description "Shadow Fury") (description "Field of Dreams 2: Lockout")) +-Candidate Entities: Lautner + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where does sam bradford play? +-Canonic Entity : sam_bradford +-Target Values : (list (description "St. Louis Rams")) +-Candidate Entities: Play_It_Again,_Sam_(film) | Bradford + +Additional entities + +Method 1 + + Bradford + +Method 2 + + + +-------------- + QUESTION: where did vietnam originate? +-Canonic Entity : vietnam +-Target Values : (list (description Asia)) +-Candidate Entities: Bromley_Originate_Change + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what was the first newspaper called in australia? +-Canonic Entity : the_children's_newspaper_(australia) +-Target Values : (list (description "Sydney Gazette")) +-Candidate Entities: Newspaper | Called_to_Serve_(song), List_of_cricketers_called_for_throwing_in_major_cricket_matches_in_Australia, The_Night_We_Called_It_a_Day_(film), The_Return_of_a_Man_Called_Horse | Australia | A_Tribe_Called_Quest, What_Is_This_Thing_Called_Love? | National_Library_of_Australia + +Additional entities + +Method 1 + + National_Library_of_Australia + + Newspaper + + Australia + +Method 2 + + Australia + + + +-------------- + QUESTION: where was hackney 2012 held? +-Canonic Entity : hackney,_kansas +-Target Values : (list (description London)) +-Candidate Entities: + + + +-------------- + QUESTION: where does the st louis rams play football? +-Canonic Entity : st._louis_rams +-Target Values : (list (description "Edward Jones Dome")) +-Candidate Entities: + + + +-------------- + QUESTION: what year did scottie pippen come into the nba? +-Canonic Entity : scottie_pippen +-Target Values : (list (description 1987)) +-Candidate Entities: NBA_Finals, NBA_on_NBC + +Additional entities + +Method 1 + + NBA_Finals + +Method 2 + + NBA_Finals + + + +-------------- + QUESTION: where are you if you re in zagreb? +-Canonic Entity : zagreb +-Target Values : (list (description Croatia)) +-Candidate Entities: + + + +-------------- + QUESTION: which country has won the cricket world cup the most times? +-Canonic Entity : cricket_world_cup +-Target Values : (list (description "The Cup")) +-Candidate Entities: 2000_Americas_Cricket_Cup + +Additional entities + +Method 1 + + 2000_Americas_Cricket_Cup + +Method 2 + + 2000_Americas_Cricket_Cup + + + +-------------- + QUESTION: what city was selena gomez born in? +-Canonic Entity : selena_gomez +-Target Values : (list (description "Grand Prairie")) +-Candidate Entities: Murder_of_Selena, Selena, Selena_(soundtrack), Selena_(film), Sonia_&_Selena + +Additional entities + +Method 1 + + Selena + +Method 2 + + Selena + + + +-------------- + QUESTION: who does dominic monaghan play in lord of the rings? +-Canonic Entity : dominic_monaghan +-Target Values : (list (description "Meriadoc Brandybuck")) +-Candidate Entities: The_Lord_of_the_Rings, The_Lord_of_the_Rings_(soundtrack), Lego_The_Lord_of_the_Rings_(video_game) | Monaghan | Principal_photography_of_The_Lord_of_the_Rings_film_series, Lord_of_the_Rings_(musical), Music_Inspired_by_The_Lord_of_the_Rings_(Mostly_Autumn_album), The_Lord_of_the_Rings_Trading_Card_Game, The_Lord_of_the_Rings_(1981_radio_series), Symphony_No._1_"The_Lord_of_the_Rings", Music_of_The_Lord_of_the_Rings_film_series, Lord_of_the_Rings_(board_game), The_Lord_of_the_Rings_(film_series), Translations_of_The_Lord_of_the_Rings, Adaptations_of_The_Lord_of_the_Rings, The_Lord_of_the_Rings_(1978_film), The_Lord_of_the_Rings:_The_Return_of_the_King | Joseph_P._Monaghan | Play_On! + +Additional entities + +Method 1 + + The_Lord_of_the_Rings + + The_Lord_of_the_Rings_(film_series) + +Method 2 + + The_Lord_of_the_Rings + + The_Lord_of_the_Rings_(film_series) + + + +-------------- + QUESTION: which country does south africa border 2 the north? +-Canonic Entity : south_africa +-Target Values : (list (description Lesotho) (description Zimbabwe) (description Mozambique) (description Swaziland) (description Namibia) (description Botswana)) +-Candidate Entities: African_tourism_by_country | Indonesia–Singapore_border, Indonesia–Malaysia_border | Country_music, Country_code, Now_That's_What_I_Call_Country_Volume_2, Totally_Country_Vol._2, Modern_Sounds_in_Country_and_Western_Music_Volume_Two + +Additional entities + +Method 1 + + African_tourism_by_country + + Country_music + +Method 2 + + African_tourism_by_country + + Country_code + + + +-------------- + QUESTION: who sang for pink floyd? +-Canonic Entity : pink_floyd +-Target Values : (list (description "David Gilmour")) +-Candidate Entities: + + + +-------------- + QUESTION: who played john connor friend in terminator 2? +-Canonic Entity : sarah_connor_(terminator) +-Target Values : (list (description "Edward Furlong")) +-Candidate Entities: Terminator_(franchise) | John_Connor | Terminator_2_(console), Terminator_(character) | Jack_Connor_(footballer_born_1919) | Terminator_(solar), RoboCop_Versus_The_Terminator, Terminator_(character_concept), Terminator_3:_Rise_of_the_Machines + +Additional entities + +Method 1 + + Terminator_(character_concept) + + Terminator_(character) + + John_Connor + +Method 2 + + Terminator_(character_concept) + + Terminator_(character) + + Terminator_(franchise) + + John_Connor + + + +-------------- + QUESTION: what is the current time in nigeria lagos? +-Canonic Entity : lagos +-Target Values : (list (description "Central European Time")) +-Candidate Entities: Nigeria | West_Spitsbergen_Current, Current_divider, Partial_current, Swift_Current, Wetting_current + +Additional entities + +Method 1 + + Nigeria + +Method 2 + + Nigeria + + + +-------------- + QUESTION: what shows did henry winkler produce? +-Canonic Entity : henry_winkler +-Target Values : (list (description "Mr. Sunshine") (description "Dallas Reunion: The Return to Southfork") (description MacGyver) (description "So Weird") (description "Dead Man's Gun") (description WinTuition)) +-Candidate Entities: + + + +-------------- + QUESTION: what state was texaco gas founded? +-Canonic Entity : ambler's_texaco_gas_station +-Target Values : (list (description "New York") (description California)) +-Candidate Entities: Texaco, Texaco_(novel), Texaco_Star_Theatre | Gas_(1944_film), Dry_gas_seal + +Additional entities + +Method 1 + + Texaco + +Method 2 + + Texaco + + + +-------------- + QUESTION: what is the official language of china and 3 other dialects? +-Canonic Entity : dialects_of_macedonian +-Target Values : (list (description "Standard Mandarin")) +-Candidate Entities: Kannada_dialects, Peräpohjola_dialects + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who is the senator of connecticut 2010? +-Canonic Entity : senator_(bishop_of_milan) +-Target Values : (list (description "Chris Dodd")) +-Candidate Entities: United_States_Senate_election_in_Connecticut,_2010, Connecticut_attorney_general_election,_2010 | Connecticut_Senate, Constitution_of_Connecticut, Connecticut_Military_Department | United_States_House_of_Representatives_elections_in_Connecticut,_2010, Connecticut_elections,_2010 | Senator_O'Connor_College_School | University_of_Connecticut, Connecticut + +Additional entities + +Method 1 + + Connecticut + +Method 2 + + + +-------------- + QUESTION: when was the last time the dallas cowboys went to the super bowl? +-Canonic Entity : super_bowl_xxx +-Target Values : (list (description "Super Bowl XXX")) +-Candidate Entities: Dallas_Cowboys | Super_Bowl_VI, Super_Bowl_XIII, Super_Bowl_X, Super_Bowl_XXVII, Super_Bowl_V, Super_Bowl, Super_Bowl_XII, Super_Bowl_XXVIII | 1992_Dallas_Cowboys_season, 1995_Dallas_Cowboys_season | Super_Bowl_XLIII, Heart_of_Dallas_Bowl, Super_Bowl_VII, Super_Bowl_VIII, Super_Bowl_XLV, Super_Bowl_XLVII | 1970_Dallas_Cowboys_season | Time_(magazine), Time_complexity, Time_Quartet, African_time, Time_in_Europe + +Additional entities + +Method 1 + + 1970_Dallas_Cowboys_season + + Time_(magazine) + + Super_Bowl_XLIII + +Method 2 + + Time_(magazine) + + 1970_Dallas_Cowboys_season + + 1995_Dallas_Cowboys_season + + Super_Bowl_XLIII + + Dallas_Cowboys + + Super_Bowl + + + +-------------- + QUESTION: what episode does rukia fade away? +-Canonic Entity : fade_(band) +-Target Values : (list (description "Bleach: Fade to Black")) +-Candidate Entities: Rukia_(bird) | Fade_into_Me, Fade_into_Darkness, Fade_to_Grey_(Visage_song), Not_Fade_Away_(Angel) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what is brazil time zone? +-Canonic Entity : central_time_zone +-Target Values : (list (description UTC−02:00) (description UTC−04:00) (description UTC−03:00)) +-Candidate Entities: Pacific_Time_Zone, Time_Zone_(video_game), Time_in_Brazil, Mountain_Time_Zone, Time_zone, Eastern_Time_Zone, Iran_Standard_Time, Chamorro_Time_Zone, Time_in_Saskatchewan + +Additional entities + +Method 1 + + Pacific_Time_Zone + +Method 2 + + Mountain_Time_Zone + + + +-------------- + QUESTION: who wrote john 3 16 in the bible? +-Canonic Entity : ...and_then_i_wrote +-Target Values : (list (description "Gospel of John")) +-Candidate Entities: + + + +-------------- + QUESTION: what do people in the czech republic speak? +-Canonic Entity : czech_republic–israel_relations +-Target Values : (list (description "Czech Language")) +-Candidate Entities: + + + +-------------- + QUESTION: where did bruno mars get his start? +-Canonic Entity : bruno_mars +-Target Values : (list (description Honolulu)) +-Candidate Entities: Manned_mission_to_Mars | Bruno_(software) | Franklin_Clarence_Mars + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who was tex beneke? +-Canonic Entity : tex_beneke +-Target Values : (list (description Singer) (description Musician)) +-Candidate Entities: Tex, TeX, Tex_&_the_Horseheads + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what are all the things thomas edison invented? +-Canonic Entity : thomas_edison +-Target Values : (list (description Phonograph) (description "Carbon microphone") (description Mimeograph) (description "Quadruplex telegraph") (description "Electric power distribution") (description "Movie camera") (description "Incandescent light bulb") (description "Phonograph cylinder")) +-Candidate Entities: Thomas_Alva_Edison_Birthplace + +Additional entities + +Method 1 + +Method 2 + + Thomas_Alva_Edison_Birthplace + + + +-------------- + QUESTION: what does albania speak? +-Canonic Entity : speak!!! +-Target Values : (list (description "Albanian language")) +-Candidate Entities: Speak_(No-Man_album) | Albania + +Additional entities + +Method 1 + + Albania + +Method 2 + + + +-------------- + QUESTION: what is shakira's nationality? +-Canonic Entity : nationality +-Target Values : (list (description Colombia)) +-Candidate Entities: + + + +-------------- + QUESTION: where did the sultan of the ottoman empire live? +-Canonic Entity : territorial_evolution_of_the_ottoman_empire +-Target Values : (list (description Constantinople)) +-Candidate Entities: Ottoman_Vardar_Macedonia, Ottoman_Tripolitania + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who is playing bilbo baggins? +-Canonic Entity : bilbo_baggins +-Target Values : (list (description "Norman Bird") (description "Martin Freeman") (description "Ian Holm")) +-Candidate Entities: Theodore_G._Bilbo, Bilbo, Bilbo_(sword) | Playing_cards_in_Unicode, Playing_the_Fool, Playing_with_Fire_(Plan_B_song), Playing_for_Keeps_(2012_film) + +Additional entities + +Method 1 + +Method 2 + + Theodore_G._Bilbo + + + +-------------- + QUESTION: what position did george washington serve in the constitutional convention? +-Canonic Entity : constitutional_convention_(california) +-Target Values : (list (description "Delegate to the Continental Congress")) +-Candidate Entities: Walter_E._Washington_Convention_Center | Serve_(tennis) | Convention_to_propose_amendments_to_the_United_States_Constitution | George_Washington_Woodward, Presidency_of_George_Washington, George_Washington | Serve_and_volley + +Additional entities + +Method 1 + + George_Washington + +Method 2 + + + +-------------- + QUESTION: where is the 2012 ncaa basketball tournament? +-Canonic Entity : ncaa_men's_division_i_basketball_tournament_consecutive_appearances +-Target Values : (list (description "NCAA March Madness: Cinderellas, Superstars, and Champions from the NCAA Men's Final Four")) +-Candidate Entities: College_Basketball_on_CBS, College_basketball + +Additional entities + +Method 1 + + College_basketball + +Method 2 + + College_basketball + + + +-------------- + QUESTION: what episode did kate leave ncis? +-Canonic Entity : ncis_(tv_series) +-Target Values : (list (description "Kill Ari - Part 1")) +-Candidate Entities: NCIS_(soundtrack), NCIS_(season_1), NCIS_(season_2), NCIS_(season_6), NCIS_(season_7), NCIS_(season_4), NCIS_(season_3), NCIS_(season_11), NCIS_(season_5) + +Additional entities + +Method 1 + + NCIS_(season_1) + +Method 2 + + NCIS_(season_6) + + + +-------------- + QUESTION: where are the seneca indians now? +-Canonic Entity : seneca_people +-Target Values : (list (description "New York")) +-Candidate Entities: + + + +-------------- + QUESTION: what did farrah dad do? +-Canonic Entity : dad,_hungary +-Target Values : (list (description "Track and field athlete")) +-Candidate Entities: Fazal_Dad_Khan | Farrah_(band) | $h*!_My_Dad_Says, Aberdeen_Dad_Vail_Regatta, Mom_and_Dad_Save_the_World + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where did matt barnes play? +-Canonic Entity : matt_barnes +-Target Values : (list (description "Small forward")) +-Candidate Entities: Barnes_&_Barnes + + + +-------------- + QUESTION: where does the jordan river begin? +-Canonic Entity : jordan_river +-Target Values : (list (description "Anti-Lebanon mountains")) +-Candidate Entities: + + + +-------------- + QUESTION: what college did lil wayne graduated from? +-Canonic Entity : lil_wayne +-Target Values : (list (description "University of Phoenix")) +-Candidate Entities: Wayne_College | Lil_iROCC_Williams | Wayne_State_College | Lil_O'Grady | International_Business_College_(Fort_Wayne,_Indiana), Wayne_County_Community_College_District | Graduated_driver_licensing, Graduated_cylinder, Graduated_response, Graduated_payment_mortgage_loan, Graduated_neutral_density_filter + +Additional entities + +Method 1 + + Lil_iROCC_Williams + +Method 2 + + Lil_iROCC_Williams + + + +-------------- + QUESTION: where did rihanna come from? +-Canonic Entity : rihanna_(book) +-Target Values : (list (description "Saint Michael Parish") (description Barbados)) +-Candidate Entities: Rihanna, Rihanna_(Orezi_song), Rihanna_777_Documentary..._7Countries7Days7Shows + +Additional entities + +Method 1 + + Rihanna + +Method 2 + + Rihanna + + + +-------------- + QUESTION: who does kurt busch drive for now? +-Canonic Entity : kurt_busch +-Target Values : (list (description "Miller Lite")) +-Candidate Entities: + + + +-------------- + QUESTION: what years did the knicks win the championship? +-Canonic Entity : new_york_knicks +-Target Values : (list (description "1970 NBA Finals") (description "1973 NBA Finals")) +-Candidate Entities: + + + +-------------- + QUESTION: what is the time zone in uk now? +-Canonic Entity : central_time_zone +-Target Values : (list (description "Greenwich Mean Time") (description UTC±00:00)) +-Candidate Entities: Pacific_Time_Zone, Time_Zone_(video_game), Mountain_Time_Zone, Time_zone, Eastern_Time_Zone, Iran_Standard_Time, Time_UK_(band), Chamorro_Time_Zone, Time_in_Venezuela, Time_in_Saskatchewan, Bhutan_Time, Time_Zone_(band), Krasnoyarsk_Time | In_the_Zone_(The_Outer_Limits), Time_in_Colombia | Philippine_Standard_Time, Daylight_saving_time, Time_in_the_United_States + +Additional entities + +Method 1 + + Daylight_saving_time + +Method 2 + + Time_in_Colombia + + Time_in_the_United_States + + Mountain_Time_Zone + + + +-------------- + QUESTION: what does dustin diamond do now? +-Canonic Entity : dustin_diamond +-Target Values : (list (description "Film Director") (description Musician) (description Comedian) (description Actor)) +-Candidate Entities: Dustin_the_Turkey + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what state did thomas jefferson live in? +-Canonic Entity : thomas_jefferson_and_slavery +-Target Values : (list (description Virginia)) +-Candidate Entities: Jefferson_Memorial, Jefferson_Township,_New_Jersey | Thomas_J._Howell_(botanist) + +Additional entities + +Method 1 + + Jefferson_Memorial + +Method 2 + + + +-------------- + QUESTION: where are google headquarters located? +-Canonic Entity : google +-Target Values : (list (description "Mountain View")) +-Candidate Entities: FIFA_headquarters, Security_Forces_Headquarters_–_Wanni, Security_Forces_Headquarters_–_East + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who is princess leia? +-Canonic Entity : princess_leia +-Target Values : (list (description "Star Wars")) +-Candidate Entities: Princess_(car), Princess_(magazine), MV_Hebridean_Princess, Princess_Grace_Foundation-USA, The_Princess_and_the_Pea, Mary,_Princess_Royal_and_Countess_of_Harewood, Princess_(2008_film) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what was richard wright known for? +-Canonic Entity : richard_wright_(musician) +-Target Values : (list (description "Keyboard player")) +-Candidate Entities: Patrick_Wright,_Baron_Wright_of_Richmond, Raymond_R._Wright + +Additional entities + +Method 1 + + Patrick_Wright,_Baron_Wright_of_Richmond + +Method 2 + + + +-------------- + QUESTION: where is the nascar hall of fame? +-Canonic Entity : nascar_hall_of_fame +-Target Values : (list (description Charlotte) (description "North Carolina")) +-Candidate Entities: + + + +-------------- + QUESTION: what do australia call their money? +-Canonic Entity : amateur_radio_call_signs_of_australia +-Target Values : (list (description "Australian dollar")) +-Candidate Entities: Call_sign + + + +-------------- + QUESTION: what was the name of wright brothers plane? +-Canonic Entity : wright_brothers +-Target Values : (list (description "Wright Model B") (description "Wright Model C") (description "Wright Flyer") (description "Wright Model EX") (description "1902 Wright Glider") (description "1900 Wright Glider")) +-Candidate Entities: Plane_(Unicode) | Wright_Model_A, Wright_Flyer + +Additional entities + +Method 1 + + Wright_Flyer + +Method 2 + + Wright_Model_A + + + +-------------- + QUESTION: where is located university of leeds? +-Canonic Entity : university_of_leeds +-Target Values : (list (description "United Kingdom") (description Leeds)) +-Candidate Entities: Leeds, Leeds_Law_School + +Additional entities + +Method 1 + + Leeds + +Method 2 + + Leeds + + + +-------------- + QUESTION: who is gilbert gottfried snl? +-Canonic Entity : gilbert_gottfried +-Target Values : (list (description Actor)) +-Candidate Entities: SNL_Studios, SNL_Financial, SNL_Digital_Short, Association_of_1._SNL + +Additional entities + +Method 1 + + SNL_Digital_Short + +Method 2 + + SNL_Digital_Short + + + +-------------- + QUESTION: what language do they denmark? +-Canonic Entity : denmark +-Target Values : (list (description "Danish Language")) +-Candidate Entities: Language_disorder, Alagüilac_language, Language_preservation, Language_of_mathematics, Art_&_Language + +Additional entities + +Method 1 + +Method 2 + + Language_disorder + + + +-------------- + QUESTION: what did martin luther do? +-Canonic Entity : martin_luther_college +-Target Values : (list (description Physician) (description Theologian) (description Professor) (description Writer) (description Monk) (description Priest)) +-Candidate Entities: Martin_Luther_McCoy, Martin_Luther_King,_Jr., Martin_Luther_King_III, Martin_Luther_Christian_University, Martin_Luther_King,_Sr., Martin_Luther_King,_Jr._Day, Martin_Luther, Martin_Luther_King,_Jr._Park, Martin_Luther_King_Jr._Memorial_Library, Martin_Luther_King,_Jr.,_National_Historic_Site, Martin_Luther_King_Jr._Memorial_Bridge, Martin_Luther_(diplomat), Martin_Luther_(1953_film), Martin_Luther_University_of_Halle-Wittenberg, Martin_Luther_High_School, Luther_(2003_film), Resources_about_Martin_Luther, Martin_Luther_King,_Jr._Memorial + +Additional entities + +Method 1 + + Martin_Luther_King,_Jr. + +Method 2 + + Martin_Luther + + + +-------------- + QUESTION: what team did grover cleveland alexander play for? +-Canonic Entity : grover_cleveland_alexander +-Target Values : (list (description "Philadelphia Phillies") (description "Chicago Cubs")) +-Candidate Entities: Grover_Cleveland, Grover_Cleveland_Birthplace + +Additional entities + +Method 1 + + Grover_Cleveland + +Method 2 + + + +-------------- + QUESTION: what was eli whitney nationality? +-Canonic Entity : eli_whitney_museum +-Target Values : (list (description "United States of America")) +-Candidate Entities: Eli_Whitney_Debevoise_II, Eli_Whitney, Eli_Whitney,_North_Carolina, Eli_Whitney_Debevoise, Eli_Whitney_Technical_High_School + +Additional entities + +Method 1 + + Eli_Whitney + +Method 2 + + Eli_Whitney + + + +-------------- + QUESTION: what was christiaan barnard famous for? +-Canonic Entity : christiaan_barnard +-Target Values : (list (description Surgeon)) +-Candidate Entities: Christiaan + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where was dwight d. eisenhower from? +-Canonic Entity : dwight_d._eisenhower +-Target Values : (list (description "United States of America")) +-Candidate Entities: David_Eisenhower, Eisenhower_Presidential_Center, Jennie_Eisenhower, Milton_S._Eisenhower + +Additional entities + +Method 1 + + David_Eisenhower + +Method 2 + + David_Eisenhower + + + +-------------- + QUESTION: where do audi come from? +-Canonic Entity : audi +-Target Values : (list (description Ingolstadt)) +-Candidate Entities: + + + +-------------- + QUESTION: what team is chris paul on? +-Canonic Entity : chris_harman_(composer) +-Target Values : (list (description "Los Angeles Clippers")) +-Candidate Entities: Chris_Paul | The_Team_(band), Team_classification_in_the_Tour_de_France, National_sports_team, Team_Tinkoff-Saxo, Science_of_team_science + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what to do washington dc december? +-Canonic Entity : washington,_d.c. +-Target Values : (list (description "White House") (description "The Phillips Collection") (description "United States Capitol") (description "Thomas Jefferson Memorial") (description "National Museum of the American Indian") (description "International Spy Museum") (description "National Portrait Gallery") (description "Washington Monument") (description "Lincoln Memorial") (description "Freer Gallery of Art")) +-Candidate Entities: + + + +-------------- + QUESTION: what language is spoken in singapore? +-Canonic Entity : colloquial_finnish +-Target Values : (list (description "Malay Language") (description "Tamil Language") (description "Standard Mandarin") (description "English Language")) +-Candidate Entities: Language_planning_and_policy_in_Singapore, Singapore | Spoken_(band), Music_and_the_Spoken_Word | Institute_of_Singapore_Chartered_Accountants | Canadian_Festival_of_Spoken_Word | Organisation_of_the_Government_of_Singapore + +Additional entities + +Method 1 + + Singapore + +Method 2 + + + +-------------- + QUESTION: who is sanjay gupta married too? +-Canonic Entity : sanjay_gupta +-Target Values : (list (description "Rebecca Olson Gupta")) +-Candidate Entities: Gupta | Married_to_It + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what do singapore speak? +-Canonic Entity : speak!!! +-Target Values : (list (description "Malay Language") (description "Tamil Language") (description "Standard Mandarin") (description "English Language")) +-Candidate Entities: Speak_(No-Man_album), Speak_Good_English_Movement, Speak_(Godsmack_song), Speak_for_Yourself, Don't_Speak | Singapore | Speak_(band), Speak_of_the_Devil_(book) | Organisation_of_the_Government_of_Singapore, Language_planning_and_policy_in_Singapore + +Additional entities + +Method 1 + + Singapore + +Method 2 + + + +-------------- + QUESTION: what movies did luke perry play in? +-Canonic Entity : luke_perry +-Target Values : (list (description "Battle Scars: The Bud Moore Story")) +-Candidate Entities: Luke_the_Evangelist | Not_Like_the_Movies, Sky_Movies_(New_Zealand) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who wrote the book of st. john? +-Canonic Entity : tome_of_battle +-Target Values : (list (description "John the Evangelist")) +-Candidate Entities: List_of_banks_in_São_Tomé_and_Príncipe + + + +-------------- + QUESTION: who is kobe bryant dad? +-Canonic Entity : kobe_bryant +-Target Values : (list (description "Joe Bryant")) +-Candidate Entities: Kobe_Doin'_Work + +Additional entities + +Method 1 + + Kobe_Doin'_Work + +Method 2 + + Kobe_Doin'_Work + + + +-------------- + QUESTION: what continent does israel belong to? +-Canonic Entity : continent_(magazine) +-Target Values : (list (description Asia)) +-Candidate Entities: + + + +-------------- + QUESTION: what is the capital city of albania? +-Canonic Entity : albania +-Target Values : (list (description Tirana)) +-Candidate Entities: Capital_City_Club, Capital_city + +Additional entities + +Method 1 + + Capital_city + +Method 2 + + Capital_city + + + +-------------- + QUESTION: where is thomas jefferson's home? +-Canonic Entity : jefferson's_birthday +-Target Values : (list (description Monticello)) +-Candidate Entities: Presidency_of_Thomas_Jefferson + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what is wentworth miller in? +-Canonic Entity : wentworth_miller +-Target Values : (list (description "Prison Break")) +-Candidate Entities: + + + +-------------- + QUESTION: what is the capital of spain in 2010? +-Canonic Entity : capital_(radio_network) +-Target Values : (list (description Madrid)) +-Candidate Entities: Spain | Capital_Group_Companies | Port_of_Spain | Capital_ẞ, Capital_accumulation, Capital_(economics) | Spain_at_the_2010_European_Athletics_Championships + +Additional entities + +Method 1 + + Port_of_Spain + + Spain + +Method 2 + + Spain + + + +-------------- + QUESTION: who killed harvey milk? +-Canonic Entity : the_times_of_harvey_milk +-Target Values : (list (description "Dan White")) +-Candidate Entities: + + + +-------------- + QUESTION: what was the title of the first book dr. seuss wrote? +-Canonic Entity : dr._seuss +-Target Values : (list (description "Fox in Socks")) +-Candidate Entities: The_Lorax_(film) | ...And_Then_I_Wrote | The_Book_of_Love_(song), The_Cat_in_the_Hat_(film) | Horton_Hears_a_Who!_(film) | The_Foot_Book, How_the_Grinch_Stole_Christmas! | Title_of_show, Title_loan, The_Title, Main_title + +Additional entities + +Method 1 + + Title_of_show + + The_Lorax_(film) + + The_Cat_in_the_Hat_(film) + + Horton_Hears_a_Who!_(film) + + How_the_Grinch_Stole_Christmas! + +Method 2 + + Title_of_show + + The_Lorax_(film) + + The_Cat_in_the_Hat_(film) + + Horton_Hears_a_Who!_(film) + + How_the_Grinch_Stole_Christmas! + + + +-------------- + QUESTION: who owns nissan car manufacturer? +-Canonic Entity : nissan_electric_vehicles +-Target Values : (list (description "Nissan Motor Manufacturing UK") (description Jatco) (description Infiniti) (description "Nissan North America") (description "Nissan Motor Car Carrier")) +-Candidate Entities: Nissan_Motor_Company, Nissan_Z-car, Nissan_Terrano_II, Nissan_Motor_Car_Carrier | Tree_That_Owns_Itself, Who_Owns_Whom, Who_Owns_My_Heart | Integrated_device_manufacturer, Original_design_manufacturer + +Additional entities + +Method 1 + +Method 2 + + Nissan_Terrano_II + + + +-------------- + QUESTION: where is the university of west alabama located? +-Canonic Entity : university_of_west_alabama +-Target Values : (list (description Alabama) (description Livingston) (description "United States of America")) +-Candidate Entities: Alabama_Crimson_Tide_football + +Additional entities + +Method 1 + + Alabama_Crimson_Tide_football + +Method 2 + + Alabama_Crimson_Tide_football + + + +-------------- + QUESTION: what did kenny everett die off? +-Canonic Entity : kenny_everett +-Target Values : (list (description AIDS)) +-Candidate Entities: + + + +-------------- + QUESTION: what main language do they speak in brazil? +-Canonic Entity : speak!!! +-Target Values : (list (description "Portuguese Language")) +-Candidate Entities: Speak_(No-Man_album), Speak_(Godsmack_song), I_Don't_Speak_the_Language, Y_Speak | Name_of_Brazil, Brazil | Speak_of_the_Devil_(book), Speak_Good_English_Movement, SPEAK_(test) + +Additional entities + +Method 1 + + Brazil + +Method 2 + + Brazil + + + +-------------- + QUESTION: where does joey king live? +-Canonic Entity : joey_king +-Target Values : (list (description "Las Vegas") (description "Los Angeles")) +-Candidate Entities: Joey | The_king_is_dead,_long_live_the_king!, King_of_Kings:_Live + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what happened to justin bieber 2012? +-Canonic Entity : justin_bieber +-Target Values : (list (description "Billboard Music Award for Top Social Artist")) +-Candidate Entities: + + + +-------------- + QUESTION: how many australian states and territories? +-Canonic Entity : australian_indian_ocean_territories +-Target Values : (list (description "City of Moreland") (description "Northern Territory") (description "Western Australia") (description "Australian Capital Territory") (description Victoria) (description "Town of Cottesloe") (description "New South Wales") (description Queensland) (description Tasmania) (description "South Australia")) +-Candidate Entities: Electoral_systems_of_the_Australian_states_and_territories, Parliaments_of_the_Australian_states_and_territories, States_and_territories_of_Australia, Speaker_of_the_Legislative_Assembly_of_the_Northwest_Territories, Gallery_of_flags_of_dependent_territories, Commissioners_of_the_Northwest_Territories, Communications_in_the_Palestinian_territories, Department_of_Territories_(1951–1968) + +Additional entities + +Method 1 + + States_and_territories_of_Australia + +Method 2 + + States_and_territories_of_Australia + + + +-------------- + QUESTION: what was manchester united first name? +-Canonic Entity : leeds_united_a.f.c.–manchester_united_f.c._rivalry +-Target Values : (list (description "Newton Heath L&YR F.C.")) +-Candidate Entities: Manchester + + + +-------------- + QUESTION: who is the governor of hawaii now? +-Canonic Entity : governor_of_hawaii +-Target Values : (list (description "Neil Abercrombie")) +-Candidate Entities: Hawaii_gubernatorial_election,_2010, Hawaii, Ethanol_fuel_in_Hawaii + +Additional entities + +Method 1 + + Hawaii + +Method 2 + + Hawaii + + + +-------------- + QUESTION: when did herbert hoover become president? +-Canonic Entity : herbert_hoover +-Target Values : (list (description 3/4/1929)) +-Candidate Entities: Lou_Henry_Hoover_House, J._Edgar_Hoover, The_Hoover_Company + +Additional entities + +Method 1 + + J._Edgar_Hoover + +Method 2 + + J._Edgar_Hoover + + + +-------------- + QUESTION: where did elvis presley started his career? +-Canonic Entity : elvis_presley +-Target Values : (list (description Memphis)) +-Candidate Entities: Elvis_impersonator | Lisa_Marie_Presley | Elvis_in_Concert, Elvis_(TV_miniseries), Elvis_(disambiguation) | Presley_Charitable_Foundation + +Additional entities + +Method 1 + + Elvis_in_Concert + + Lisa_Marie_Presley + +Method 2 + + Presley_Charitable_Foundation + + Elvis_(disambiguation) + + Lisa_Marie_Presley + + Elvis_impersonator + + + +-------------- + QUESTION: what happened vince mcmahon? +-Canonic Entity : vince_mcmahon +-Target Values : (list (description "Professional Wrestling Promoter") (description "Film Director") (description "Television Producer") (description Announcer) (description "Film Producer") (description Actor) (description Wrestler) (description "Sports commentator") (description Screenwriter)) +-Candidate Entities: How_It_Happened, It_Couldn't_Have_Happened_–_But_It_Did, Whatever_Happened_to_Corey_Haim?, It_Happened_on_Fifth_Avenue, Whatever_Happened,_Happened + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what jobs did harriet tubman have? +-Canonic Entity : harriet_tubman_home_for_the_aged +-Target Values : (list (description Writer)) +-Candidate Entities: Tubman_University | Jobs_(film) | Tubman | Harriet_(tortoise), Harriet_A._Hall + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where does unesco operate? +-Canonic Entity : unesco +-Target Values : (list (description Paris)) +-Candidate Entities: Operate + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what does canada grow for food? +-Canonic Entity : grow,_wisconsin +-Target Values : (list (description "Nelson Paddywack IPA") (description "Steam Whistle Pilsner") (description "Molson XXX") (description "Tin Whistle Coyote") (description "Okanagan Spring Brewery Honey Blonde Ale") (description "Labatt Brewing Co. John Labatt Classic Premium Lager") (description "Granville Island Honey Lager") (description "Cannery Blackberry Porter") (description "McAuslan Brewing St. Ambroise Pale Ale") (description "Mt. Begbie Brewing Company High Country Kölsch")) +-Candidate Entities: Agriculture_and_Agri-Food_Canada | Food | Galusha_A._Grow, Time_to_Grow | Food_Basics | A_Place_to_Grow, Grow_into_One | Food_Network_(Canada) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where in the bible does it talk about david? +-Canonic Entity : bible +-Target Values : (list (description "Psalm 145") (description "Books of Samuel") (description "Books of Chronicles") (description Psalms)) +-Candidate Entities: Walk_That_Walk,_Talk_That_Talk | David | Learn_to_Talk | Doe_people, Samuel_Doe, Lawrence_Doe, Nicholas_B._Doe, Francis_Doe + +Additional entities + +Method 1 + + David + +Method 2 + + David + + + +-------------- + QUESTION: what does amanda seyfried play in? +-Canonic Entity : amanda_seyfried +-Target Values : (list (description "Boogie Woogie") (description "Jennifer's Body") (description Chloe) (description "Dear John") (description "Nine Lives") (description Solstice) (description "Mamma Mia!") (description "American Gun") (description "Mean Girls") (description "Alpha Dog")) +-Candidate Entities: Vincent_F._Seyfried, David_Seyfried_Herbert,_19th_Baron_Herbert | Amanda_(Highlander) + +Additional entities + +Method 1 + + David_Seyfried_Herbert,_19th_Baron_Herbert + +Method 2 + + + +-------------- + QUESTION: what language do people speak in iran? +-Canonic Entity : speak!!! +-Target Values : (list (description Persian)) +-Candidate Entities: The_People_Speak_(film), Speak_(No-Man_album) | Ethnicities_in_Iran | Tat_people_(Iran) | Speak_(Godsmack_song) | Iran, Chinese_people_in_Iran | Speak_for_Yourself, I_Don't_Speak_the_Language | Iran_(word) | Speak_Good_English_Movement, Speak_of_the_Devil_(book), Think_Before_You_Speak_(campaign) + +Additional entities + +Method 1 + + Iran + +Method 2 + + + +-------------- + QUESTION: what is the jurisdiction of the us supreme court? +-Canonic Entity : supreme_court_of_victoria +-Target Values : (list (description "United States of America")) +-Candidate Entities: Indian_Country_Jurisdiction + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what voice does hank azaria do on the simpsons? +-Canonic Entity : hank_azaria +-Target Values : (list (description "Carl Carlson") (description "Chief Wiggum") (description "Apu Nahasapeemapetilon")) +-Candidate Entities: The_Simpsons, The_Simpsons_Movie, Go_Simpsonic_with_The_Simpsons + +Additional entities + +Method 1 + + The_Simpsons + +Method 2 + + The_Simpsons + + + +-------------- + QUESTION: who is the leader of japan? +-Canonic Entity : the_leader_(allahabad_newspaper) +-Target Values : (list (description "Shinzō Abe")) +-Candidate Entities: Leader_(comics), Louisville_Leader, George_M._Leader, Leader_Price + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what time zone is the uk in right now? +-Canonic Entity : central_time_zone +-Target Values : (list (description "Greenwich Mean Time") (description UTC±00:00)) +-Candidate Entities: Pacific_Time_Zone, Time_Zone_(video_game), Mountain_Time_Zone, Time_zone, Eastern_Time_Zone, Iran_Standard_Time, Time_UK_(band), Chamorro_Time_Zone, Time_in_Venezuela, Time_in_Saskatchewan, Bhutan_Time, Time_Zone_(band), Krasnoyarsk_Time | In_the_Zone_(The_Outer_Limits), Time_in_Colombia | Philippine_Standard_Time, Daylight_saving_time, Time_in_the_United_States + +Additional entities + +Method 1 + + Daylight_saving_time + +Method 2 + + Time_in_Colombia + + Time_in_the_United_States + + Mountain_Time_Zone + + + +-------------- + QUESTION: what instrument does bela fleck play? +-Canonic Entity : béla_fleck +-Target Values : (list (description Banjo)) +-Candidate Entities: Play_On! + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what position does ray allen? +-Canonic Entity : ray_allen +-Target Values : (list (description "Shooting guard")) +-Candidate Entities: Position_(vector) | R.S._Allen, Ray_R._Allen, Allen_B._DuMont | Ray_Steadman-Allen | Position_(finance) | Flanagan_and_Allen + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what branch is made up of the house of representatives? +-Canonic Entity : zanzibar_house_of_representatives +-Target Values : (list (description Congress)) +-Candidate Entities: + + + +-------------- + QUESTION: where did kurds originate from? +-Canonic Entity : kurds_in_armenia +-Target Values : (list (description Asia)) +-Candidate Entities: Kurds_of_Khorasan, Kurds_of_Khorasan + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where did chancellorsville battle take place? +-Canonic Entity : chancellorsville,_virginia +-Target Values : (list (description "Spotsylvania County")) +-Candidate Entities: Battle_of_Chancellorsville, Chancellorsville_(game), Chancellorsville, USS_Chancellorsville_(CG-62) | Battle_of_Salem_Church, Second_Battle_of_Fredericksburg, Chancellorsville_Confederate_order_of_battle, Chancellorsville_Union_order_of_battle, Cullen_A._Battle, Battle_of_Şelimbăr, Battle_of_Brávellir, Battle_of_Vyšehrad, Battle_of_Liberty, Battle_of_Doberdò, Battle_of_Invernahavon, Battle_of_Auldearn, Battle_of_Kobryń, Battle_of_Liberty_Place | Shelter_in_place + +Additional entities + +Method 1 + + Chancellorsville_Union_order_of_battle + + Battle_of_Chancellorsville + +Method 2 + + Battle_of_Salem_Church + + Battle_of_Chancellorsville + + + +-------------- + QUESTION: what year was the cubs last world series? +-Canonic Entity : cubs–white_sox_rivalry +-Target Values : (list (description "1908 World Series")) +-Candidate Entities: Chicago_Cubs, The_'89_Cubs + +Additional entities + +Method 1 + + Chicago_Cubs + +Method 2 + + Chicago_Cubs + + + +-------------- + QUESTION: who is playing hawkeye in the avengers movie? +-Canonic Entity : alternative_versions_of_hawkeye +-Target Values : (list (description "Jeremy Renner")) +-Candidate Entities: Hawkeye_(comics), Hawkeye_(Kate_Bishop) | The_Avengers:_United_They_Stand, The_Avengers_(2012_film) + +Additional entities + +Method 1 + + The_Avengers_(2012_film) + + Hawkeye_(comics) + +Method 2 + + The_Avengers_(2012_film) + + Hawkeye_(comics) + + + +-------------- + QUESTION: what country speak english as native language? +-Canonic Entity : speak!!! +-Target Values : (list (description Canada) (description Australia) (description "Kingdom of Great Britain") (description "United States of America") (description "United Kingdom") (description Ireland) (description "New Zealand")) +-Candidate Entities: English_as_a_second_or_foreign_language, English_language, Speak_Good_English_Movement + +Additional entities + +Method 1 + + English_language + +Method 2 + + + +-------------- + QUESTION: who was king or queen after victoria? +-Canonic Entity : queen_victoria +-Target Values : (list (description "Edward VII")) +-Candidate Entities: King_vs._Queen, King_and_Queen_Court_House,_Virginia, WSU_King_and_Queen_of_the_Ring | Victoria_Eugenie_of_Battenberg, Victoria_Street,_Melbourne | Queen_Street_West, King_George_VI_and_Queen_Elizabeth_Stakes + +Additional entities + +Method 1 + + Victoria_Eugenie_of_Battenberg + +Method 2 + + King_George_VI_and_Queen_Elizabeth_Stakes + + Victoria_Eugenie_of_Battenberg + + + +-------------- + QUESTION: what movie did rihanna play in? +-Canonic Entity : rihanna +-Target Values : (list (description "This Is the End") (description Battleship) (description "Happy Smekday!")) +-Candidate Entities: Play_It_Again,_Sam_(film), Play_(Moby_album) + +Additional entities + +Method 1 + + Play_(Moby_album) + +Method 2 + + Play_(Moby_album) + + + +-------------- + QUESTION: when was the last time the oakland raiders were in the super bowl? +-Canonic Entity : oakland_raiders +-Target Values : (list (description "2003 NFL season")) +-Candidate Entities: Super_Bowl, Super_Bowl_XXXVII, Super_Bowl_XV, Super_Bowl_II, Super_Bowl_XVIII, Super_Bowl_XI, Super_Bowl_XLIII, Super_Bowl_XXXVIII, Super_Bowl_VIII + +Additional entities + +Method 1 + + Super_Bowl + +Method 2 + + Super_Bowl + + + +-------------- + QUESTION: what religion was mary todd lincoln? +-Canonic Entity : mary_todd_lincoln +-Target Values : (list (description Presbyterianism) (description Baptists) (description Catholicism)) +-Candidate Entities: Robert_Todd_Lincoln, Sexuality_of_Abraham_Lincoln, Lincoln_(1988_film), Mary_Lincoln, Mary_Johnson_Bailey_Lincoln, Robert_Todd_Lincoln_Beckwith, Lincoln_(2012_film), Mary_Lincoln_Beckwith, William_Wallace_Lincoln, Edward_Baker_Lincoln, Lincoln_College,_Oxford + +Additional entities + +Method 1 + + Robert_Todd_Lincoln + +Method 2 + + Robert_Todd_Lincoln + + + +-------------- + QUESTION: who is the house of representatives made up of? +-Canonic Entity : pennsylvania_house_of_representatives +-Target Values : (list (description "Nancy Pelosi")) +-Candidate Entities: + + + +-------------- + QUESTION: who all has jason kidd played for? +-Canonic Entity : jason_kidd +-Target Values : (list (description "New York Knicks") (description "Phoenix Suns") (description "Brooklyn Nets") (description "Dallas Mavericks")) +-Candidate Entities: Kidd_(rapper), Johnny_Kidd_&_the_Pirates | Twilight_as_Played_by_The_Twilight_Singers, Played, Played_in_Britain, The_Band_Played_On, And_the_Bands_Played_On + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where is headquarters of verizon? +-Canonic Entity : headquarters_(album) +-Target Values : (list (description "New York")) +-Candidate Entities: Verizon_South, Verizon_Communications, Verizon_North, Verizon_Wireless, Verizon_VIP_Tour + +Additional entities + +Method 1 + + Verizon_Communications + +Method 2 + + + +-------------- + QUESTION: where is the country of cyprus located? +-Canonic Entity : cyprus +-Target Values : (list (description Europe) (description "Mediterranean Sea") (description Cyprus) (description Asia) (description Eurasia)) +-Candidate Entities: Country_music, Country_code, Brontë_Country, Country_Hills,_Calgary + +Additional entities + +Method 1 + + Country_music + +Method 2 + + Country_code + + + +-------------- + QUESTION: who invented dell computer? +-Canonic Entity : dell +-Target Values : (list (description "Michael S. Dell")) +-Candidate Entities: The_Man_Who_Invented_the_Computer, Not_invented_here, Invented_(album) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where did morgan freeman come from? +-Canonic Entity : morgan_freeman +-Target Values : (list (description Memphis)) +-Candidate Entities: Morgan_J._Freeman, Freeman_(Colonial) + +Additional entities + +Method 1 + + Morgan_J._Freeman + +Method 2 + + Morgan_J._Freeman + + + +-------------- + QUESTION: where did bob barker grow up? +-Canonic Entity : my_bob_barker +-Target Values : (list (description "South Dakota")) +-Candidate Entities: Bob_Barker + +Additional entities + +Method 1 + + Bob_Barker + +Method 2 + + Bob_Barker + + + +-------------- + QUESTION: what are king charles spaniels? +-Canonic Entity : king_charles_spaniel +-Target Values : (list (description Dog)) +-Candidate Entities: Spaniel | Upon_the_Double_Murder_of_King_Charles, Society_of_King_Charles_the_Martyr, Charles_King_(general), Charles_King_(actor), Charles_W._King | Cocker_Spaniel | King_Charles_(musician), Charles_I_of_Württemberg, Charles_King_(cyclist) | Charlie_King_(politician) | Charles_the_Simple, Charles_King_(athlete), Charles_II_of_England + +Additional entities + +Method 1 + + King_Charles_(musician) + + Cocker_Spaniel + + Charles_II_of_England + + Spaniel + +Method 2 + + Charles_II_of_England + + Spaniel + + + +-------------- + QUESTION: when was the chinese flag designed? +-Canonic Entity : chinese_taipei_olympic_flag +-Target Values : (list (description "Traditional Chinese characters") (description Chinese) (description "Simplified Chinese character") (description "'Phags-pa script") (description "Nüshu script") (description "Chinese characters")) +-Candidate Entities: Flag_of_China | Designed_to_Sell | Flag_of_Australia, World_Flag, Flag_to_Flag | Romanization_of_Chinese | Flag_of_Curaçao, Flag_of_Aztlán, Flag_of_the_United_States | Chinese_language | Flag_of_Queensland, Great_Canadian_Flag_Debate, Generalized_flag_variety | Inventory_of_Gardens_and_Designed_Landscapes_in_Scotland, List_of_golf_courses_designed_by_Jack_Nicklaus, List_of_works_designed_with_the_golden_ratio, New_Noise_Designed_by_a_Sadist + +Additional entities + +Method 1 + + Chinese_language + +Method 2 + + Flag_of_China + + + +-------------- + QUESTION: where did boston terriers come from? +-Canonic Entity : boston_university_terriers_men's_ice_hockey +-Target Values : (list (description "United States of America")) +-Candidate Entities: St._Francis_Brooklyn_Terriers, Bedlington_Terriers_F.C., Terriers_(TV_series), Boston_Terrier, St._Louis_Terriers + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what makes einstein smart? +-Canonic Entity : einstein_(us-cert_program) +-Target Values : (list (description "Mathematics and Physics")) +-Candidate Entities: + + + +-------------- + QUESTION: who played juni in spy kids 4? +-Canonic Entity : spy_kids_(franchise) +-Target Values : (list (description "Daryl Sabara")) +-Candidate Entities: Juni | Spy_vs._Spy_(1984_video_game) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what year did the new york mets start? +-Canonic Entity : new_york_mets +-Target Values : (list (description 1962)) +-Candidate Entities: + + + +-------------- + QUESTION: where did neil gaiman grow up? +-Canonic Entity : neil_gaiman +-Target Values : (list (description Menomonie)) +-Candidate Entities: + + + +-------------- + QUESTION: what books did aristotle wrote? +-Canonic Entity : aristotle +-Target Values : (list (description "Atheniensium respublica") (description "Nicomachean Ethics") (description Dell'interpretazione) (description "L' anima") (description Physique) (description "Über die Seele") (description "Les metheores d'Aristote") (description "Aristotelis stagiritae, pepli fragmentum") (description "De anima, in the version of William of Moerbeke") (description "Prior Analytics and Posterior Analytics")) +-Candidate Entities: ...And_Then_I_Wrote, ...And_Then_I_Wrote | The_Books, Penguin_Books, Abaris_Books, Orchard_Books + +Additional entities + +Method 1 + + Penguin_Books + +Method 2 + + Penguin_Books + + + +-------------- + QUESTION: where is eu headquarters located? +-Canonic Entity : eu,_seine-maritime +-Target Values : (list (description Brussels)) +-Candidate Entities: Youth_against_the_EU_(Norway), Nei_til_EU + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who runs the cornelia marie now? +-Canonic Entity : fv_cornelia_marie +-Target Values : (list (description "Jake Harris")) +-Candidate Entities: + + + +-------------- + QUESTION: where did john muir die? +-Canonic Entity : john_muir_national_historic_site +-Target Values : (list (description "Los Angeles")) +-Candidate Entities: John_Muir_(indologist), John_Muir_Trust, Ramsay_Muir, John_Muir_Health, John_Muir_College, John_Muir_High_School_(Pasadena,_California), Muir_baronets, John_Muir_(South_African_naturalist), John_Muir_(engineer) + +Additional entities + +Method 1 + + John_Muir_(indologist) + +Method 2 + + John_Muir_Trust + + + +-------------- + QUESTION: where was selena gomez raised? +-Canonic Entity : selena_gomez +-Target Values : (list (description "Grand Prairie")) +-Candidate Entities: Murder_of_Selena, Selena, Selena_(soundtrack), Sonia_&_Selena, Selena_(film) + +Additional entities + +Method 1 + + Selena + +Method 2 + + Selena + + + +-------------- + QUESTION: what countries are in the andean region? +-Canonic Entity : andean_region +-Target Values : (list (description Brazil) (description Ecuador) (description Peru) (description Colombia)) +-Candidate Entities: Andean_Natural_Region,_Colombia, Central_Andean_dry_puna | Heavily_indebted_poor_countries, Income_tax_in_European_countries, FIBA_European_Championship_for_Small_Countries, Megadiverse_countries + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who created english alphabet? +-Canonic Entity : english_alphabet +-Target Values : (list (description "the Federation of Free States")) +-Candidate Entities: Runs_created, God_Created_the_Integers, Cardinals_created_by_Adrian_VI, The_Beauty_Created_LP | Is_This_the_World_We_Created...? + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: when was the last time the san francisco giants won a world series? +-Canonic Entity : san_francisco_giants +-Target Values : (list (description "2012 World Series")) +-Candidate Entities: + + + +-------------- + QUESTION: what airport do you fly into for destin? +-Canonic Entity : destin,_florida +-Target Values : (list (description "Northwest Florida Regional Airport") (description "Destin–Fort Walton Beach Airport")) +-Candidate Entities: Destin_Daniel_Cretton, Destin | Destin–Fort_Walton_Beach_Airport | Destin_(song) | Fly_by_Night_Airport, Come_Fly_with_Me_(2010_TV_series), Fly_(exercise), Flesh_fly_(fly_fishing), Return_of_the_Fly + +Additional entities + +Method 1 + + Destin–Fort_Walton_Beach_Airport + +Method 2 + + Destin–Fort_Walton_Beach_Airport + + + +-------------- + QUESTION: who played violet's mother in charlie and the chocolate factory? +-Canonic Entity : charlie_and_the_chocolate_factory_the_musical +-Target Values : (list (description "Kansas City Athletics")) +-Candidate Entities: Chocolate, Wilbur_Chocolate_Company + + + +-------------- + QUESTION: what country was george washington from? +-Canonic Entity : ss_george_washington +-Target Values : (list (description "Kingdom of Great Britain")) +-Candidate Entities: George_Washington_University, George_Washington, George_Washington_Memorial_Park_(Paramus,_New_Jersey), Town_and_Country,_Washington, George_Washington_University_Medical_School, George,_Washington, George_Washington_University_Art_Galleries, Presidency_of_George_Washington, George_Washington_Hotel_(New_York_City), George_Washington_University_Law_School, Country_Homes,_Washington, George_Washington_and_slavery, George_Washington_Carver_School_(Coral_Gables,_Florida), The_George_Washington_University_School_of_Business, George_Washington_Masonic_National_Memorial, George_Washington_and_Jefferson_National_Forests, George_Washington_Community_High_School + +Additional entities + +Method 1 + + George_Washington + +Method 2 + + + +-------------- + QUESTION: what year did pete rose play? +-Canonic Entity : pete_rose +-Target Values : (list (description "1968 Major League Baseball Season") (description "1971 Major League Baseball Season") (description "1969 Major League Baseball Season") (description "1963 Major League Baseball Season") (description "1966 Major League Baseball Season") (description "1967 Major League Baseball Season") (description "1970 Major League Baseball Season") (description "1972 Major League Baseball Season") (description "1964 Major League Baseball Season") (description "1965 Major League Baseball Season")) +-Candidate Entities: Laurence_Olivier_Award_for_Actress_of_the_Year_in_a_New_Play | Pete_Seppälä | Laurence_Olivier_Award_for_Actor_of_the_Year_in_a_New_Play, NFL_Play_of_the_Year_Award + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where does kyla ross live? +-Canonic Entity : kyla_ross +-Target Values : (list (description "Aliso Viejo")) +-Candidate Entities: Kyla, Kyla_(album) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: when did allen iverson get drafted? +-Canonic Entity : allen_iverson +-Target Values : (list (description "1996–97 NBA season")) +-Candidate Entities: Kenneth_E._Iverson + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what does jackson browne sing? +-Canonic Entity : jackson_browne +-Target Values : (list (description "Before the Deluge")) +-Candidate Entities: Sing,_Sing,_Sing_(With_a_Swing), Sing_Sing + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who plays ferris bueller's best friend? +-Canonic Entity : ferris_bueller's_day_off +-Target Values : (list (description "Alan Ruck")) +-Candidate Entities: + + + +-------------- + QUESTION: what has anna kendrick been in? +-Canonic Entity : anna_kendrick +-Target Values : (list (description Rapturepalooza) (description "Drinking Buddies") (description "Get a Job") (description "End of Watch") (description 50/50) (description ParaNorman) (description "Scott Pilgrim vs. the World") (description "What to Expect When You're Expecting") (description "The Twilight Saga: Breaking Dawn - Part 2") (description "The Twilight Saga: Breaking Dawn - Part 1")) +-Candidate Entities: + + + +-------------- + QUESTION: what are the major imports of the united states? +-Canonic Entity : united_states_beef_imports_in_japan +-Target Values : (list (description "Pharmaceutical Preparations") (description Automobile) (description Petroleum) (description Clothing) (description Furniture)) +-Candidate Entities: VAT-free_imports_from_the_Channel_Islands | Major_(manga) | Center_for_the_Promotion_of_Imports | Major, Eugene_O._Major + +Additional entities + +Method 1 + + Eugene_O._Major + + Major_(manga) + +Method 2 + + + +-------------- + QUESTION: what are the team colors for the pittsburgh steelers? +-Canonic Entity : pittsburgh_steelers_all-time_team +-Target Values : (list (description White) (description Black) (description Gold)) +-Candidate Entities: Pittsburgh_Steelers, 2007_Pittsburgh_Steelers_season, 1995_Pittsburgh_Steelers_season, 1992_Pittsburgh_Steelers_season, 2009_Pittsburgh_Steelers_season + +Additional entities + +Method 1 + + Pittsburgh_Steelers + +Method 2 + + Pittsburgh_Steelers + + + +-------------- + QUESTION: what is the current government system in france? +-Canonic Entity : government_of_france +-Target Values : (list (description "Semi-presidential system") (description "Constitutional republic") (description "Unitary state")) +-Candidate Entities: West_Spitsbergen_Current | Government | Westminster_system | Health_care_in_France | Neutral_direct-current_telegraph_system | France | Government_Communication_and_Information_System + +Additional entities + +Method 1 + + Westminster_system + + Government + + France + +Method 2 + + Westminster_system + + Government + + France + + + +-------------- + QUESTION: what did roy rogers die of? +-Canonic Entity : roy_rogers_(cocktail) +-Target Values : (list (description "Congestive Heart Failure")) +-Candidate Entities: + + + +-------------- + QUESTION: what is calabria italy? +-Canonic Entity : calabria_(song) +-Target Values : (list (description "Italian region")) +-Candidate Entities: Calabria, Politics_of_Calabria, Reggio_Calabria, Duke_of_Calabria, Mediterranea_University_of_Reggio_Calabria, Ann_Marie_Calabria, University_of_Calabria, Duchess_of_Calabria, Counts_and_dukes_of_Apulia_and_Calabria, Regional_Council_of_Calabria, Province_of_Reggio_Calabria + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what did the new orleans hornets used to be? +-Canonic Entity : new_orleans_pelicans +-Target Values : (list (description "Charlotte Hornets")) +-Candidate Entities: 2010–11_New_Orleans_Hornets_season, 2004–05_New_Orleans_Hornets_season, 2003–04_New_Orleans_Hornets_season, 2012–13_New_Orleans_Hornets_season, 2011–12_New_Orleans_Hornets_season, Sacramento_State_Hornets_men's_basketball + +Additional entities + +Method 1 + + 2010–11_New_Orleans_Hornets_season + +Method 2 + + 2003–04_New_Orleans_Hornets_season + + + +-------------- + QUESTION: what are the major religions practiced in israel? +-Canonic Entity : japanese_new_religions +-Target Values : (list (description Judaism)) +-Candidate Entities: Religion_in_Kerala | Major_religious_groups | Temple_of_All_Religions | Israel | History_of_religions, Religions_of_the_ancient_Near_East, Indo-Greek_religions, Religions_for_Peace + +Additional entities + +Method 1 + + Religions_for_Peace + + Major_religious_groups + + Israel + +Method 2 + + Israel + + History_of_religions + + + +-------------- + QUESTION: what does jamaica manufacturer? +-Canonic Entity : jamaica,_queens +-Target Values : (list (description "Desnoes & Geddes Dragon Stout") (description "Red Stripe") (description "Desnoes & Geddes Red Stripe Lager")) +-Candidate Entities: + + + +-------------- + QUESTION: what years did andrew jackson run for president? +-Canonic Entity : andrew_jackson_merchant +-Target Values : (list (description 3/4/1829)) +-Candidate Entities: Andrew_Jackson, Andrew_Jackson_Fundamental_Magnet_High_School, Andrew_Jackson_High_School_(Jacksonville), Andrew_Young, First_inauguration_of_Andrew_Jackson, Andrew_Jackson_Barchfeld, Second_inauguration_of_Andrew_Jackson, Andrew_Jackson_Hamilton + +Additional entities + +Method 1 + + Andrew_Jackson + +Method 2 + + + +-------------- + QUESTION: what 4 countries make up great britain? +-Canonic Entity : great_britain +-Target Values : (list (description "Principality of Wales") (description "Kingdom of Scotland")) +-Candidate Entities: + + + +-------------- + QUESTION: where did madoff live in nyc? +-Canonic Entity : live_in_nyc_'97 +-Target Values : (list (description Queens)) +-Candidate Entities: Participants_in_the_Madoff_investment_scandal | NYC_(band), NYC_Man_(The_Ultimate_Collection_1967–2003) | Madoff_(surname) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: how many languages are there in the philippines? +-Canonic Entity : languages_of_the_philippines +-Target Values : (list (description "Filipino language") (description "Kapampangan language") (description "Cebuano language") (description "English Language") (description "Ilokano language") (description "Tagalog language") (description "Hiligaynon language") (description "Pangasinan Language") (description "Waray-Waray Language")) +-Candidate Entities: Philippine_languages + +Additional entities + +Method 1 + + Philippine_languages + +Method 2 + + Philippine_languages + + + +-------------- + QUESTION: what song is monifah famous for? +-Canonic Entity : monifah +-Target Values : (list (description "Touch It")) +-Candidate Entities: Famous_(Play_song), Lisa_Picard_Is_Famous, The_Famous_Flames, Famous + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who did heinrich himmler marry? +-Canonic Entity : heinrich_himmler +-Target Values : (list (description "Margarete Boden")) +-Candidate Entities: Margarete_Himmler | Marry_the_Night | Ernst_Hermann_Himmler, Gebhard_Ludwig_Himmler + +Additional entities + +Method 1 + + Margarete_Himmler + + Gebhard_Ludwig_Himmler + +Method 2 + + Margarete_Himmler + + Gebhard_Ludwig_Himmler + + + +-------------- + QUESTION: who carries sherwin williams paint? +-Canonic Entity : sherwin-williams +-Target Values : (list (description "Building Material and Garden Equipment and Supplies Dealers")) +-Candidate Entities: Paint | Sherwin_B._Nuland + +Additional entities + +Method 1 + + Paint + +Method 2 + + Paint + + + +-------------- + QUESTION: who was josh groban in crazy stupid love? +-Canonic Entity : josh_groban +-Target Values : (list (description Richard)) +-Candidate Entities: Crazy,_Stupid,_Love, Crazy_Love_(Michael_Bublé_album), Don't_Be_Stupid_(You_Know_I_Love_You), Crazy_for_Your_Love | Crazy_Love:_Overwhelmed_by_a_Relentless_God, Love_Is_a_Many_Stupid_Thing | Drake_&_Josh | Love,_Pain_&_the_Whole_Crazy_Thing + +Additional entities + +Method 1 + + Crazy_Love_(Michael_Bublé_album) + +Method 2 + + Crazy_Love_(Michael_Bublé_album) + + + +-------------- + QUESTION: where is the columbia university located? +-Canonic Entity : columbia_university +-Target Values : (list (description "New York")) +-Candidate Entities: University_of_the_District_of_Columbia, University_of_British_Columbia, University_of_British_Columbia_Okanagan, University_of_Northern_British_Columbia, University_of_Missouri, Columbia_International_University, Technical_University_of_British_Columbia | Columbia_Law_School + +Additional entities + +Method 1 + + Columbia_Law_School + +Method 2 + + University_of_British_Columbia + + Columbia_Law_School + + + +-------------- + QUESTION: what team does kris humphries play for in 2011? +-Canonic Entity : kris_humphries +-Target Values : (list (description "Brooklyn Nets")) +-Candidate Entities: D._J._Humphries, Humphries | Kris | 2011_Fed_Cup_Asia/Oceania_Zone_Group_II_–_Play-offs, 2011_Fed_Cup_Asia/Oceania_Zone_Group_I_–_Play-offs, 2011_Fed_Cup_Americas_Zone_Group_I_–_Play-offs, 2011_Football_League_Championship_play-off_Final, 2011_Fed_Cup_Europe/Africa_Zone_Group_I_–_Play-offs + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what did the scientist thomson discover? +-Canonic Entity : discover_(magazine) +-Target Values : (list (description Electron) (description "Mass spectrometry")) +-Candidate Entities: DISCover + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where did john boehner come from? +-Canonic Entity : john_boehner +-Target Values : (list (description Ohio)) +-Candidate Entities: + + + +-------------- + QUESTION: where did martin luther king junior go to college? +-Canonic Entity : martin_luther_college +-Target Values : (list (description "Morehouse College")) +-Candidate Entities: Martin_Luther_King,_Jr., Martin_Luther_King_III, Martin_Luther_King,_Jr._Day, Martin_Luther_King,_Sr., Martin_Luther_King,_Jr.,_National_Historic_Site, Martin_Luther_King,_Jr._Park, Martin_Luther_King_Jr._Memorial_Library, Martin_Luther_King_Junior_Laboratory_School, Martin_Luther_King_Jr._Memorial_Bridge, Martin_Luther_King,_Jr._Memorial, Luther_College_(Saskatchewan), Martin_Luther_McCoy | Kennedy–King_College, Luther_College_(Victoria) | Martin_Luther_King,_Jr._Academy, Martin_Luther_King,_Jr._Library, Martin_Luther_King_Jr._Shoreline, Assassination_of_Martin_Luther_King,_Jr., Luther_College_(Iowa) + +Additional entities + +Method 1 + + Luther_College_(Iowa) + + Martin_Luther_King,_Jr. + +Method 2 + + Luther_College_(Iowa) + + + +-------------- + QUESTION: who was carrie underwood in soul surfer? +-Canonic Entity : carrie_underwood +-Target Values : (list (description "Sarah Hill")) +-Candidate Entities: Soul_Surfer_(film), Soul_Surfer, Surfer_(magazine) | Robert_A._Underwood + +Additional entities + +Method 1 + + Robert_A._Underwood + + Soul_Surfer_(film) + +Method 2 + + Soul_Surfer_(film) + + + +-------------- + QUESTION: who plays lois griffin in family guy? +-Canonic Entity : lois_griffin +-Target Values : (list (description "Alex Borstein")) +-Candidate Entities: Peter_Griffin | Stewie_Kills_Lois_and_Lois_Kills_Stewie | The_Griffin_Family_History, Family_Guy_(season_10), Family_Guy_Viewer_Mail_1, Family_Guy_(season_11), Family_Guy | Meg_Griffin, Chris_Griffin | Family_Guy_(season_2), List_of_Family_Guy_characters, Family_Guy_(season_5), Family_Guy_Video_Game!, Family_Guy_(season_1) + +Additional entities + +Method 1 + + Stewie_Kills_Lois_and_Lois_Kills_Stewie + + List_of_Family_Guy_characters + +Method 2 + + Stewie_Kills_Lois_and_Lois_Kills_Stewie + + Meg_Griffin + + List_of_Family_Guy_characters + + Peter_Griffin + + Family_Guy + + + +-------------- + QUESTION: what did julian fellowes write? +-Canonic Entity : julian_fellowes +-Target Values : (list (description "Never Mind the Full Stops") (description "Julian Fellowes Investigates: A Most Mysterious Murder") (description "My Son, My Son") (description Sharpe) (description "Monarch of the Glen") (description "Our Friends in the North")) +-Candidate Entities: Robert_Fellowes,_Baron_Fellowes | Write_to_Death, Write_(system_call) | Julian_(emperor) | Write_the_Future + +Additional entities + +Method 1 + + Robert_Fellowes,_Baron_Fellowes + +Method 2 + + Robert_Fellowes,_Baron_Fellowes + + + +-------------- + QUESTION: where does selena gomez live map? +-Canonic Entity : selena_gomez +-Target Values : (list (description "New York City")) +-Candidate Entities: Selena_Live!, Murder_of_Selena, Selena, Selena_(soundtrack), Selena_(film), Sonia_&_Selena + +Additional entities + +Method 1 + + Selena + +Method 2 + + Selena + + + +-------------- + QUESTION: who does the islam worship? +-Canonic Entity : worship +-Target Values : (list (description Allah)) +-Candidate Entities: Women_in_Islam, Islam_and_Sikhism, Islam + +Additional entities + +Method 1 + + Islam + +Method 2 + + Islam + + + +-------------- + QUESTION: who was married to lance armstrong? +-Canonic Entity : lance_armstrong_(politician) +-Target Values : (list (description "Kristin Richard")) +-Candidate Entities: + + + +-------------- + QUESTION: what is venus named for? +-Canonic Entity : venus,_texas +-Target Values : (list (description Planet)) +-Candidate Entities: + + + +-------------- + QUESTION: who did john fox coach for? +-Canonic Entity : john_fox,_jr. +-Target Values : (list (description "Denver Broncos")) +-Candidate Entities: John_Fox_(American_football), Fox_(Finland), John_R._Fox, Fox_(Spain), Fox_(Turkey), Fox_Broadcasting_Company | Coach_(TV_series) | John_Fox_(comedian), Fox_(Greece), Mike_Fox_(baseball_coach), Charles_Fox_(civil_and_railway_engineer), Major_League_Baseball_on_Fox | Coach_(ice_hockey) + +Additional entities + +Method 1 + + Fox_Broadcasting_Company + +Method 2 + + Fox_Broadcasting_Company + + + +-------------- + QUESTION: where are the nuclear plants in uk? +-Canonic Entity : vulnerability_of_nuclear_plants_to_attack +-Target Values : (list (description "Operation Grapple") (description "Operation Hurricane") (description "Operation Totem") (description "British nuclear tests at Maralinga") (description "Operation Buffalo") (description "Operation Mosaic")) +-Candidate Entities: Nuclear_power_plant, Nuclear_power_debate + +Additional entities + +Method 1 + + Nuclear_power_plant + +Method 2 + + Nuclear_power_plant + + + +-------------- + QUESTION: what years have the dodgers won the world series? +-Canonic Entity : crooklyn_dodgers +-Target Values : (list (description "1988 World Series") (description "1959 World Series") (description "1963 World Series") (description "1965 World Series") (description "1981 World Series")) +-Candidate Entities: Los_Angeles_Dodgers, 2011_Los_Angeles_Dodgers_ownership_dispute | World_Series, AFI_100_Years..._series | Dominican_Summer_League_Dodgers, Duck_Dodgers_(TV_series), Duck_Dodgers_Starring_Daffy_Duck, Duck_Dodgers | 1959_World_Series + +Additional entities + +Method 1 + + World_Series + + Los_Angeles_Dodgers + +Method 2 + + + +-------------- + QUESTION: what did farrah have surgery for? +-Canonic Entity : farrah_(band) +-Target Values : (list (description "Anal cancer")) +-Candidate Entities: Surgery + +Additional entities + +Method 1 + + Surgery + +Method 2 + + + +-------------- + QUESTION: who was the leader of the soviet union in 1945? +-Canonic Entity : japan–soviet_union_relations +-Target Values : (list (description "Joseph Stalin")) +-Candidate Entities: Soviet_Union, 1945_Soviet_Top_League, Generalissimus_of_the_Soviet_Union, Soviet_re-occupation_of_Latvia_in_1944, Persecution_of_Christians_in_the_Soviet_Union, Politics_of_the_Soviet_Union, President_of_the_Soviet_Union, Republics_of_the_Soviet_Union, Soviet_people, Prohibition_in_the_Russian_Empire_and_the_Soviet_Union, Transport_in_the_Soviet_Union, Japanese_prisoners_of_war_in_the_Soviet_Union, Terrorism_and_the_Soviet_Union, Cinema_of_the_Soviet_Union, History_of_the_Soviet_Union, General_Secretary_of_the_Communist_Party_of_the_Soviet_Union | The_Leader_(Allahabad_newspaper), Leader_(comics), Louisville_Leader, Brotherly_Leader_and_Guide_of_the_Revolution, Film_leader + +Additional entities + +Method 1 + + Soviet_Union + +Method 2 + + Soviet_Union + + + +-------------- + QUESTION: who does john beck play for? +-Canonic Entity : john_beck_(footballer) +-Target Values : (list (description "Washington Redskins") (description "Miami Dolphins") (description "Baltimore Ravens") (description "Houston Texans")) +-Candidate Entities: The_Jeff_Beck_Group, Beck, Beck_(film) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what god do catholics believe in? +-Canonic Entity : catholics_for_choice +-Target Values : (list (description God)) +-Candidate Entities: Portrayals_of_God_in_popular_media, God_in_the_Bahá'í_Faith, God, Conversations_with_God | Persecution_of_Goan_Catholics_during_the_Goan_Inquisition, Evangelicals_and_Catholics_Together | God_(British_band), God_Is_Able_(Hillsong_album), God_(Rebecca_St._James_song) | Frank_Black_and_the_Catholics_(album) | Chinese_terms_for_God | Catholics_(film) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what movies have kenya moore produced? +-Canonic Entity : kenya_moore +-Target Values : (list (description Trois) (description "The Confidant") (description "No Turning Back") (description Senseless) (description "Cloud 9") (description "Waiting to Exhale") (description "I Know Who Killed Me") (description "Hot Parts") (description "Deliver Us from Eva") (description "Brothers in Arms")) +-Candidate Entities: Kenya + +Additional entities + +Method 1 + + Kenya + +Method 2 + + Kenya + + + +-------------- + QUESTION: where did robbie hummel go to high school? +-Canonic Entity : robbie_hummel +-Target Values : (list (description "Valparaiso High School")) +-Candidate Entities: Hummel_(vehicle) | High_School_Musical_on_Stage! | Maria_Innocentia_Hummel | Chippewa_High_School, Adena_High_School + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what year did the cleveland indians go to the world series? +-Canonic Entity : cleveland_indians +-Target Values : (list (description "1948 World Series") (description "1920 World Series")) +-Candidate Entities: The_Cleveland_Show, Cleveland_sports_curse, Cleveland, The_Kid_from_Cleveland, Cleveland_Brown,_Jr., Cleveland_Tigers_(NFL) | Dominican_Summer_League_Indians + +Additional entities + +Method 1 + + Cleveland + +Method 2 + + Cleveland + + + +-------------- + QUESTION: who owns the cleveland browns? +-Canonic Entity : cleveland_browns +-Target Values : (list (description "Randy Lerner")) +-Candidate Entities: + + + +-------------- + QUESTION: what language do jewish speak? +-Canonic Entity : speak!!! +-Target Values : (list (description "Yiddish Language") (description "Judeo-Arabic languages") (description "Karaim Language") (description "Hulaulá Language") (description "Hebrew Language") (description Catalanic) (description Judeo-Portuguese) (description Judeo-Tat) (description "Judeo-Italian Language") (description "Judæo-Persian dialects")) +-Candidate Entities: Speak_(No-Man_album), Speak_(Godsmack_song) | Jewish_languages | Speak_for_Yourself, I_Don't_Speak_the_Language, SPEAK_(test) | Jewish_religious_movements + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what legal system does germany use? +-Canonic Entity : law_of_portugal +-Target Values : (list (description "Federal republic")) +-Candidate Entities: Legal_system_of_Macau, Electoral_system_of_Germany, United_States_legal_system, Judicial_system_of_Cuba, Scientology_and_the_legal_system | Legal_professional_privilege_in_Australia, National_Legal_Aid_&_Defender_Association | Judiciary_of_Germany + +Additional entities + +Method 1 + + Legal_system_of_Macau + + Judiciary_of_Germany + +Method 2 + + Legal_system_of_Macau + + + +-------------- + QUESTION: who does danneel harris play on one tree hill? +-Canonic Entity : danneel_harris +-Target Values : (list (description "Rachel Gatina")) +-Candidate Entities: Harris_Hill,_New_York | One_Tree_Hill,_South_Australia, One_Tree_Hill_(season_3), One_Tree_Hill_(season_5), One_Tree_Hill_(season_4), One_Tree_Hill_(season_8), One_Tree_Hill_(TV_series), One_Tree_Hill_(season_7), One_Tree_Hill,_New_Zealand | Rose_Hill,_Harris_County,_Texas | And–or_tree, One_Tree_Hill_discography, Cherry_Tree_Hill,_Saint_Andrew,_Barbados, Play_Around_the_Christmas_Tree, By_the_Tree, One_Tree_Hill_(soundtrack) + +Additional entities + +Method 1 + + One_Tree_Hill_(TV_series) + +Method 2 + + One_Tree_Hill_discography + + One_Tree_Hill_(TV_series) + + + +-------------- + QUESTION: what inspired michelangelo? +-Canonic Entity : david_(inspired_by_michelangelo) +-Target Values : (list (description "Lorenzo de' Medici") (description "Domenico Ghirlandaio") (description "Giovanni Pico della Mirandola") (description "Girolamo Savonarola") (description "Melozzo da Forlì")) +-Candidate Entities: Michelangelo, Michelangelo_(Teenage_Mutant_Ninja_Turtles), Michelangelo_(computer_virus), Michelangelo_and_the_Medici, Michelangelo_(crater) + +Additional entities + +Method 1 + + Michelangelo + +Method 2 + + + +-------------- + QUESTION: what battle did germany surrender in ww2? +-Canonic Entity : german_instrument_of_surrender +-Target Values : (list (description Berlin)) +-Candidate Entities: Surrender_(military) | Battle_for_Germany, Battle_of_France | Surrender_(The_Chemical_Brothers_album) | Battle_of_Appomattox_Court_House | BBC_WW2_People's_War | German_code_breaking_in_World_War_II + +Additional entities + +Method 1 + + Surrender_(military) + + Battle_of_France + +Method 2 + + Surrender_(military) + + Battle_of_France + + + +-------------- + QUESTION: who was the colts coach in 2011? +-Canonic Entity : colts–patriots_rivalry +-Target Values : (list (description "Jim Caldwell")) +-Candidate Entities: Indianapolis_Colts, 2011_Indianapolis_Colts_season, 2010_Indianapolis_Colts_season, History_of_the_Baltimore_Colts, Colts_Cricket_Club | Coach_(ice_hockey), FIFA_World_Coach_of_the_Year | Colts_Drum_and_Bugle_Corps | Associated_Press_College_Basketball_Coach_of_the_Year | List_of_Indianapolis_Colts_seasons, 2006_Indianapolis_Colts_season + +Additional entities + +Method 1 + + List_of_Indianapolis_Colts_seasons + +Method 2 + + List_of_Indianapolis_Colts_seasons + + Indianapolis_Colts + + + +-------------- + QUESTION: what airport is closer to downtown houston? +-Canonic Entity : east_downtown_houston +-Target Values : (list (description "William P. Hobby Airport")) +-Candidate Entities: Downtown_Houston + +Additional entities + +Method 1 + + Downtown_Houston + +Method 2 + + Downtown_Houston + + + +-------------- + QUESTION: where does liz mcclarnon live? +-Canonic Entity : liz_mcclarnon +-Target Values : (list (description England)) +-Candidate Entities: McClarnon | Live_(James_Taylor_album), Ableton_Live, Live_Baby_Live, Live_art, Live_Box + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what city is fc schalke 04 in? +-Canonic Entity : fc_schalke_04 +-Target Values : (list (description Gelsenkirchen)) +-Candidate Entities: + + + +-------------- + QUESTION: what system of government is used in south korea? +-Canonic Entity : e-government_in_south_korea +-Target Values : (list (description "Constitutional republic")) +-Candidate Entities: + + + +-------------- + QUESTION: where did giovanni da verrazano come from? +-Canonic Entity : verrazano +-Target Values : (list (description Italy)) +-Candidate Entities: Giovanni_da_Verrazzano, Giovanni_da_San_Giovanni, Giovanni_Pierluigi_da_Palestrina, Giovanni_da_Milano, Giovanni_da_Asola, Giovanni_da_Udine, Giovanni_da_Oriolo, Giovanni_Battista_da_Sangallo, Giovanni_Tommaso_Benedictis_da_Pascarola, Giovanni_da_Santo_Stefano_da_Ponte, Giovanni_Antonio_da_Brescia, Giovanni_Maria_da_Brescia + +Additional entities + +Method 1 + + Giovanni_da_Verrazzano + +Method 2 + + + +-------------- + QUESTION: what airport is close to daytona beach florida? +-Canonic Entity : daytona_beach_international_airport +-Target Values : (list (description "Massey Ranch Airpark") (description "Daytona Beach International Airport") (description "Spruce Creek Airport")) +-Candidate Entities: Daytona_Beach,_Florida, Daytona_Beach_Shores,_Florida + +Additional entities + +Method 1 + + Daytona_Beach,_Florida + +Method 2 + + Daytona_Beach,_Florida + + + +-------------- + QUESTION: what was omar epps first movie? +-Canonic Entity : omar_epps +-Target Values : (list (description Juice)) +-Candidate Entities: + + + +-------------- + QUESTION: who did the baltimore ravens draft in 2011? +-Canonic Entity : baltimore_ravens +-Target Values : (list (description "Haloti Ngata") (description "Mark Clayton") (description "Ben Grubbs") (description "Joe Flacco") (description "Terrell Suggs") (description "Kyle Boller") (description "Michael Oher")) +-Candidate Entities: + + + +-------------- + QUESTION: who won the governor election in puerto rico? +-Canonic Entity : puerto_rico_gubernatorial_election,_2008 +-Target Values : (list (description "Luis Fortuño")) +-Candidate Entities: Won_at_Last + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where did william shakespeare perform most of his plays? +-Canonic Entity : the_plays_of_william_shakespeare +-Target Values : (list (description "Globe Theatre, London")) +-Candidate Entities: Shakespeare_Schools_Festival, Shakespeare_(programming_language), Young_Shakespeare_Players + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what group is aubrey o'day in? +-Canonic Entity : aubrey_o'day +-Target Values : (list (description "Danity Kane")) +-Candidate Entities: Aubrey_(producer) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what college did joe namath go to? +-Canonic Entity : joe_namath +-Target Values : (list (description "University of Alabama")) +-Candidate Entities: Namath:_From_Beaver_Falls_to_Broadway | College_Hockey_at_The_Joe, Joe_(singer) + +Additional entities + +Method 1 + + Namath:_From_Beaver_Falls_to_Broadway + +Method 2 + + Namath:_From_Beaver_Falls_to_Broadway + + + +-------------- + QUESTION: what wild animals live in colorado? +-Canonic Entity : into_the_wild_(live_at_eastwest_studios) +-Target Values : (list (description "Lark Bunting")) +-Candidate Entities: Animals_(film), Wild,_Wild_World_of_Animals, Wild_About_Animals_(album), Wild_About_Animals, Wild_Animals_I_Have_Known, Dangerous_Wild_Animals_Act_1976 | Live_at_Folsom_Field,_Boulder,_Colorado, One_Wild_Night_Live_1985–2001 | The_Animals, Friends_of_Animals, Wild_Animals_(album) | Colorado_Wild_Riders + + + +-------------- + QUESTION: where is eu parliament? +-Canonic Entity : eu,_seine-maritime +-Target Values : (list (description Brussels)) +-Candidate Entities: Youth_against_the_EU_(Norway), Nei_til_EU + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: when does summer start in new england? +-Canonic Entity : start,_louisiana +-Target Values : (list (description Waltham)) +-Candidate Entities: Start_Point_Lighthouse, Back_to_the_Start_(album) | You_Start,_I'll_Join_In | The_Summer_(ATB_song), The_Generall_Historie_of_Virginia,_New-England,_and_the_Summer_Isles | England_(the_album), 1991_England_Challenge_Cup + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who invented arabic alphabet? +-Canonic Entity : arabic_alphabet +-Target Values : (list (description "Saudi Arabia")) +-Candidate Entities: Not_invented_here, Invented_here, Invented_(album), The_Man_Who_Invented_the_Computer, How_the_Scots_Invented_the_Modern_World + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where was president lyndon johnson from? +-Canonic Entity : lyndon_b._johnson +-Target Values : (list (description Austin)) +-Candidate Entities: Lyndon_Baines_Johnson_Day, Lyndon_Baines_Johnson_Memorial_Grove_on_the_Potomac + +Additional entities + +Method 1 + + Lyndon_Baines_Johnson_Day + +Method 2 + + Lyndon_Baines_Johnson_Day + + + +-------------- + QUESTION: what did wagner compose? +-Canonic Entity : wagner,_wisconsin +-Target Values : (list (description "Die Feen") (description "Rienzi, der Letzte der Tribunen") (description Tannhäuser) (description "Das Rheingold") (description Götterdämmerung) (description "Tristan und Isolde") (description "Die Walküre") (description "Der Ring des Nibelungen") (description "Der fliegende Holländer") (description Siegfried)) +-Candidate Entities: Wagner_(film) | How_to_Compose_Popular_Songs_That_Will_Sell, Compose_key, How_to_Compose_Popular_Songs_That_Will_Sell + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what language did jewish people speak? +-Canonic Entity : speak!!! +-Target Values : (list (description "Hebrew Language")) +-Candidate Entities: The_People_Speak_(film), Speak_(No-Man_album), Speak_(Godsmack_song) | The_Invention_of_the_Jewish_People, Homeland_for_the_Jewish_people, Jewish_languages | I_Don't_Speak_the_Language + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who does michael oher play for in 2009? +-Canonic Entity : michael_oher +-Target Values : (list (description "Baltimore Ravens")) +-Candidate Entities: 2009_AFC_Champions_League_qualifying_play-off, 2009_Tercera_División_play-offs + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what years did barry bonds play? +-Canonic Entity : barry_bonds +-Target Values : (list (description "2001 Major League Baseball Season") (description "1990 Major League Baseball Season") (description "1996 Major League Baseball Season") (description "1993 Major League Baseball Season") (description "1992 Major League Baseball Season") (description "2002 Major League Baseball Season") (description "2003 Major League Baseball season") (description "2004 Major League Baseball season") (description "1998 Major League Baseball Season")) +-Candidate Entities: Bonds_on_Bonds, De'Aundre_Bonds | The_Bee_Gees_Sing_and_Play_14_Barry_Gibb_Songs | Gary_U.S._Bonds, Bonds_Corner,_California, Alfred_Bryan_Bonds, Bonds_(clothing) | Living_Years, Capitol_Years, Asylum_Years, Across_the_Years, Tender_years_doctrine + +Additional entities + +Method 1 + + Gary_U.S._Bonds + + Bonds_on_Bonds + +Method 2 + + Bonds_on_Bonds + + + +-------------- + QUESTION: who played emma frost? +-Canonic Entity : emma_frost +-Target Values : (list (description "Finola Hughes") (description "Tahyna Tozzi") (description "January Jones")) +-Candidate Entities: + + + +-------------- + QUESTION: what does the mayan calendar say about 2012? +-Canonic Entity : maya_calendar +-Target Values : (list (description "The End Of Time")) +-Candidate Entities: 2012_phenomenon | Mayan + +Additional entities + +Method 1 + + 2012_phenomenon + +Method 2 + + 2012_phenomenon + + + +-------------- + QUESTION: what clubs has peter crouch played for? +-Canonic Entity : peter_crouch +-Target Values : (list (description "Portsmouth F.C.") (description "Queens Park Rangers F.C.") (description "Liverpool F.C.") (description "Tottenham Hotspur F.C.") (description "Southampton F.C.") (description "Aston Villa F.C.") (description "Stoke City F.C.")) +-Candidate Entities: + + + +-------------- + QUESTION: who plays the brother in hannah montana? +-Canonic Entity : miley_stewart +-Target Values : (list (description "Jason Earles")) +-Candidate Entities: Hannah_Montana, Hannah_Montana_3, Hannah_Montana_(season_3), Hannah_Montana_(season_4), Wizards_on_Deck_with_Hannah_Montana, Hannah_Montana_(season_2), That's_So_Suite_Life_of_Hannah_Montana, Hannah_Montana:_The_Movie_(soundtrack), Hannah_Montana:_The_Movie, Hannah_Montana_(soundtrack), List_of_Hannah_Montana_characters, Hannah_Montana_Forever, Hannah_Montana_2:_Meet_Miley_Cyrus, List_of_Hannah_Montana_songs, Hannah_Montana_(season_1), Hannah_Montana_video_games, List_of_Hannah_Montana_books, Hannah_Montana_discography + +Additional entities + +Method 1 + + Hannah_Montana + +Method 2 + + Hannah_Montana:_The_Movie + + + +-------------- + QUESTION: what team does lamar odom play for 2011? +-Canonic Entity : lamar_odom +-Target Values : (list (description "Los Angeles Clippers")) +-Candidate Entities: 2011–12_Lamar_Cardinals_basketball_team | Christopher_C._Odom, William_Eldridge_Odom + +Additional entities + +Method 1 + + Christopher_C._Odom + +Method 2 + + + +-------------- + QUESTION: what highschool did tom brady go to? +-Canonic Entity : tom_brady +-Target Values : (list (description "Junípero Serra High School")) +-Candidate Entities: + + + +-------------- + QUESTION: who owns skywest? +-Canonic Entity : virgin_australia_regional_airlines +-Target Values : (list (description "AirTran Airways") (description "SkyWest, Inc.")) +-Candidate Entities: Tree_That_Owns_Itself | Skywest | Who_Owns_Whom, Who_Owns_My_Heart | Skywest_Golf_Course, Skywest_Airlines_Flight_1834, SkyWest_Airlines_destinations | Nobody_Owns_Me, Who_Owns_the_Future?, Odin_Owns_Ye_All + +Additional entities + +Method 1 + + Skywest + +Method 2 + + Skywest + + + +-------------- + QUESTION: who did michael jordan marry? +-Canonic Entity : freedom_to_marry +-Target Values : (list (description "Yvette Prieto")) +-Candidate Entities: Michael_I._Jordan, Michael_B._Jordan | Marry_the_Night | Michael_Jordan, Jeffrey_Jordan, Michael_H._Jordan | Will_You_Marry_Me?_(film) | Michael_Jordan_Steakhouse + +Additional entities + +Method 1 + + Michael_B._Jordan + +Method 2 + + + +-------------- + QUESTION: where is the syracuse university? +-Canonic Entity : syracuse_university +-Target Values : (list (description "New York") (description "United States of America") (description Syracuse)) +-Candidate Entities: + + + +-------------- + QUESTION: what has mario lopez been in? +-Canonic Entity : mario_lopez +-Target Values : (list (description "Holiday in Handcuffs") (description "Aloha, Scooby-Doo!") (description "Saved by the Bell: Hawaiian Style") (description "King Rikki") (description "Husband for Hire") (description Colors) (description "The Dog Who Saved Christmas") (description "Big Brother Trouble") (description "A Crack in the Floor") (description "Fever Lake")) +-Candidate Entities: Mario_(American_singer), Mario, Mario_(franchise) | L.A._Lopez + +Additional entities + +Method 1 + + Mario_(American_singer) + +Method 2 + + Mario_(American_singer) + + + +-------------- + QUESTION: where do logan browning live? +-Canonic Entity : browning_(food_process) +-Target Values : (list (description Atlanta)) +-Candidate Entities: Logan_Browning + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: when did mcdonalds officially open? +-Canonic Entity : open.... +-Target Values : (list (description 5/15/1940)) +-Candidate Entities: McDonalds_Brook, McDonalds_Crossroads,_Delaware, McDonalds_Mill,_Virginia, Seriously_McDonalds + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what team does terrell owens play for this year? +-Canonic Entity : terrell_owens +-Target Values : (list (description "Cincinnati Bengals")) +-Candidate Entities: + + + +-------------- + QUESTION: what to do with kids in halifax? +-Canonic Entity : halifax_(former_city) +-Target Values : (list (description "Discovery Centre")) +-Candidate Entities: Halifax_(United_Kingdom_bank) | ...For_the_Kids | Downtown_Halifax_Link + + + +-------------- + QUESTION: where is lake waynoka ohio? +-Canonic Entity : waynoka,_oklahoma +-Target Values : (list (description "United States of America") (description "Brown County")) +-Candidate Entities: Lake_Waynoka,_Ohio, Mirror_Lake_(Ohio) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who did jeremy lin sign with? +-Canonic Entity : jeremy_lin +-Target Values : (list (description "Houston Rockets") (description "New York Knicks")) +-Candidate Entities: LIN_Media | International_Sign, Mayan_Sign_Language + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who will sponsor kevin harvick in 2011? +-Canonic Entity : kevin_harvick +-Target Values : (list (description "Royal Dutch Shell") (description "Pennzoil-Quaker State")) +-Candidate Entities: Sponsor_(genus), A_Word_from_Our_Sponsor, Sponsor_(commercial), Sponsor | Kevin_Cordón | 2011_Aaron's_499 | Sponsor_(legislative) | 2011_Kyrgyzstan_League + +Additional entities + +Method 1 + + Sponsor_(commercial) + + 2011_Aaron's_499 + +Method 2 + + Sponsor_(commercial) + + 2011_Aaron's_499 + + + +-------------- + QUESTION: where adidas originate? +-Canonic Entity : adidas +-Target Values : (list (description Germany)) +-Candidate Entities: Bromley_Originate_Change + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who played emperor palpatine? +-Canonic Entity : palpatine +-Target Values : (list (description "Ron Prather") (description "Ian Abercrombie") (description "Ian McDiarmid")) +-Candidate Entities: Evil_Emperor | Played | Emperor_of_the_French, Emperor_(band), The_Emperor, Emperor_Kōmyō, Emperor_and_Galilean + +Additional entities + +Method 1 + +Method 2 + + Emperor_of_the_French + + + +-------------- + QUESTION: what is 2pm est in philippines? +-Canonic Entity : 2pm +-Target Values : (list (description UTC+8)) +-Candidate Entities: 3rei_Sud_Est, 3rei_Sud_Est, Tandjilé_Est + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where are the pyramids of giza located? +-Canonic Entity : giza +-Target Values : (list (description Egypt)) +-Candidate Entities: The_Pyramids_(band), Pyramids_of_Güímar, The_Shakin'_Pyramids, Earth_pyramids_of_Platten, Pyramids_of_Mars_(album), Pyramids_(novel), Pyramids_with_Nadja, Earth_pyramids_of_Ritten, The_Pyramids, Pyramid, Pyramids_(band) | Protocol_for_the_Suppression_of_Unlawful_Acts_against_the_Safety_of_Fixed_Platforms_Located_on_the_Continental_Shelf + +Additional entities + +Method 1 + + Pyramid + +Method 2 + + Pyramid + + + +-------------- + QUESTION: when does sally pearson race tonight? +-Canonic Entity : sally_pearson +-Target Values : (list (description "Track and field athletics")) +-Candidate Entities: Tonight_(1956_song) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who were demeter's brothers and sisters? +-Canonic Entity : big_brothers_big_sisters_of_canada +-Target Values : (list (description Zeus)) +-Candidate Entities: Demeter's_Manual_of_Parliamentary_Law_and_Procedure + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what instrument was louis armstrong famous for? +-Canonic Entity : louis_armstrong +-Target Values : (list (description trumpet)) +-Candidate Entities: + + + +-------------- + QUESTION: what date did the san francisco giants win the world series? +-Canonic Entity : san_francisco_giants +-Target Values : (list (description "2010 World Series") (description "2012 World Series")) +-Candidate Entities: + + + +-------------- + QUESTION: what province is canada's capital located in? +-Canonic Entity : canada's_wonderland +-Target Values : (list (description Ontario)) +-Candidate Entities: + + + +-------------- + QUESTION: on which continent is the usa located? +-Canonic Entity : continent_(magazine) +-Target Values : (list (description "North America")) +-Candidate Entities: + + + +-------------- + QUESTION: where is singapore on a world map? +-Canonic Entity : map_(band) +-Target Values : (list (description Eurasia) (description "Southeast Asia") (description Asia)) +-Candidate Entities: Waldseemüller_map | Singapore | The_National_Map + +Additional entities + +Method 1 + + Singapore + +Method 2 + + + +-------------- + QUESTION: what to see in london in june 2012? +-Canonic Entity : june-august_2012_hakkari_clashes +-Target Values : (list (description "Regent's Park") (description "Tower of London") (description "Buckingham Palace") (description "Palace of Westminster") (description "London Eye") (description "Tower Bridge") (description "Hyde Park") (description "Westminster Abbey") (description "St Paul's Cathedral") (description "Trafalgar Square")) +-Candidate Entities: California_elections,_June_2012, London_2012_(video_game), 2012_Summer_Olympics, London_Assembly_election,_2012 | June, Death_in_June | 2012_Summer_Paralympics | London + +Additional entities + +Method 1 + + 2012_Summer_Olympics + + London + +Method 2 + + + +-------------- + QUESTION: what is the main language of israel? +-Canonic Entity : israel +-Target Values : (list (description "Hebrew Language") (description "Arabic Language")) +-Candidate Entities: Main_(river) | History_of_Morocco + +Additional entities + +Method 1 + + History_of_Morocco + +Method 2 + + Main_(river) + + History_of_Morocco + + + +-------------- + QUESTION: what college did kerry collins? +-Canonic Entity : kerry_collins +-Target Values : (list (description "Pennsylvania State University")) +-Candidate Entities: Collins_College_of_Hospitality_Management + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what did bob ross die of? +-Canonic Entity : bob_ross +-Target Values : (list (description Lymphoma)) +-Candidate Entities: + + + +-------------- + QUESTION: who was king hussein? +-Canonic Entity : hussein_of_jordan +-Target Values : (list (description "President of Iraq")) +-Candidate Entities: King_Hussein_International_Airport + +Additional entities + +Method 1 + + King_Hussein_International_Airport + +Method 2 + + King_Hussein_International_Airport + + + +-------------- + QUESTION: where did martin luther live in? +-Canonic Entity : martin_luther_college +-Target Values : (list (description Saxony-Anhalt)) +-Candidate Entities: Martin_Luther_McCoy, Martin_Luther_King,_Jr., Martin_Luther_King_III, Martin_Luther_King,_Sr., Martin_Luther, Martin_Luther_Christian_University, Martin_Luther_King,_Jr._Day, Martin_Luther_King,_Jr._Park, Martin_Luther_King_Jr._Memorial_Library, Martin_Luther_King,_Jr.,_National_Historic_Site, Martin_Luther_King_Jr._Memorial_Bridge, Martin_Luther_(diplomat), Martin_Luther_King,_Jr._Memorial, Martin_Luther_(1953_film), Martin_Luther_University_of_Halle-Wittenberg, Martin_Luther_High_School, Luther_(2003_film), Resources_about_Martin_Luther | Live_(James_Taylor_album), Ableton_Live, Live_Baby_Live, Live_art, Live_Box + +Additional entities + +Method 1 + + Martin_Luther_King,_Jr. + +Method 2 + + Martin_Luther + + + +-------------- + QUESTION: where is made kia car? +-Canonic Entity : kia_ray_(2010_concept_vehicle) +-Target Values : (list (description Seoul)) +-Candidate Entities: + + + +-------------- + QUESTION: what are all the songs nicki minaj is in? +-Canonic Entity : nicki_minaj +-Target Values : (list (description "Roman Reloaded") (description Monster) (description "What's Wrong With Them (feat. Nicki Minaj)") (description "Dark Fantasy") (description "YM Salute") (description "Fire Burns") (description "Letting Go (Dutty Love)") (description "Woohoo (feat. Nicki Minaj)") (description "Raining Men") (description Champion)) +-Candidate Entities: Nicki + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what groups was hitler involved in? +-Canonic Entity : hero_hitler_in_love +-Target Values : (list (description "German Workers' Party") (description "Nazi Party")) +-Candidate Entities: Hitler_(1996_film), Hitler_(1962_film), List_of_books_by_or_about_Adolf_Hitler | Supporters'_groups, Federation_of_Children's_Book_Groups, Ethical_purchasing_groups, United_Nations_Regional_Groups, Ethnic_groups_in_Chicago + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what college did magic johnson go to? +-Canonic Entity : magic_johnson +-Target Values : (list (description "Michigan State University")) +-Candidate Entities: College_of_Magic, Magic_(rapper) | Bishop_Johnson_School_and_College, Johnson_University, Johnson_State_College | Magic_Valley_Christian_College, Magic_(company), Magic_(magazine) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what kind of language do they speak in greece? +-Canonic Entity : speak!!! +-Target Values : (list (description "Albanian language") (description "Greek Language")) +-Candidate Entities: Speak_(No-Man_album), Speak_(Godsmack_song), Speak_for_Yourself, I_Don't_Speak_the_Language | Kind_(type_theory) | Greece_(town),_New_York | Speak_of_the_Devil_(book), SPEAK_(test) | Gifts_in_kind, A_Kind_of_Alchemy | Y_Speak, Speak_Good_English_Movement | Johann_Friedrich_Kind | Speak_(band) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what to see in chicago downtown? +-Canonic Entity : polish_downtown_(chicago) +-Target Values : (list (description "Lincoln Park Zoo") (description "DuSable Museum of African American History") (description "Wrigley Field") (description "Willis Tower") (description "Polish Museum of America") (description "Gilmore Car Museum") (description "National Museum of Mexican Art") (description "Shedd Aquarium") (description "John Hancock Center") (description "Field Museum of Natural History")) +-Candidate Entities: + + + +-------------- + QUESTION: what kind of money does the philippines use? +-Canonic Entity : the_future_of_money +-Target Values : (list (description "Philippine peso")) +-Candidate Entities: A_Kind_of_Alchemy, Johann_Friedrich_Kind | Leprosy_colony_money, Money_market_fund + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what did george eastman make? +-Canonic Entity : george_eastman_house +-Target Values : (list (description "Roll film")) +-Candidate Entities: George_Eastman, George_Eastman_(actor) + + + +-------------- + QUESTION: what movies has billy burke been in? +-Canonic Entity : billy_burke_(actor) +-Target Values : (list (description "New Moon") (description "Feast of Love") (description "Without Limits") (description "Dill Scallion") (description Fracture) (description Komodo) (description "Ladder 49") (description "Don't Look Down") (description Untraceable) (description Mafia!)) +-Candidate Entities: Burke_(town),_New_York + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who was rudolf virchow? +-Canonic Entity : rudolf_virchow +-Target Values : (list (description Physician) (description Scientist) (description Politician) (description Pathologist)) +-Candidate Entities: Virchow_(crater) | Rudolf_Kämpf + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who were ulysses s grant and robert e lee? +-Canonic Entity : ulysses_s._grant_iv +-Target Values : (list (description General-in-Chief) (description Commander)) +-Candidate Entities: Ulysses_S._Grant_III, Ulysses_S._Grant, Ulysses_S._Grant,_Jr., Presidency_of_Ulysses_S._Grant, Ulysses_S._Grant_Home + +Additional entities + +Method 1 + + Ulysses_S._Grant + +Method 2 + + Ulysses_S._Grant + + + +-------------- + QUESTION: what is the last movie brittany murphy made? +-Canonic Entity : brittany_murphy +-Target Values : (list (description "8 Mile")) +-Candidate Entities: Brittany_(dog), Union_of_Brittany_and_France, Brittany_O'Connell, Kingdom_of_Brittany | Murphy_Institute | Movie_Gallery, MTV_Movie_Award_for_Best_Song_from_a_Movie, Movie_Network, Magix_Movie_Edit_Pro, 2011_MTV_Movie_Awards + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: with which countries does south africa trade? +-Canonic Entity : south_africa–taiwan_relations +-Target Values : (list (description Tanzania) (description Angola)) +-Candidate Entities: South_Africa, University_of_South_Africa, Xenophobia_in_South_Africa, Henley_Business_School_South_Africa, Soccer_in_South_Africa | Trade_agreement, Trade_commissioner, Free_trade_agreements_of_Canada, World_Trade_Center_New_Orleans + +Additional entities + +Method 1 + + South_Africa + +Method 2 + + South_Africa + + + +-------------- + QUESTION: what kind of language do they speak in china? +-Canonic Entity : speak!!! +-Target Values : (list (description "Standard Mandarin")) +-Candidate Entities: Speak_(No-Man_album), Speak_(Godsmack_song), Speak_for_Yourself, I_Don't_Speak_the_Language | Kind_(type_theory) | Speak_of_the_Devil_(book), Speak_Good_English_Movement, SPEAK_(test) | Gifts_in_kind, A_Kind_of_Alchemy | Y_Speak | Johann_Friedrich_Kind | Speak_(band), Speak_(film), Speak_of_the_devil + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what office does hillary clinton hold? +-Canonic Entity : hillary_rodham_clinton +-Target Values : (list (description "United States Secretary of State")) +-Candidate Entities: Hillary_Clinton_presidential_primary_campaign,_2008, Hillary_Clinton_presidential_campaign,_2008, Clinton_Foundation + + + +-------------- + QUESTION: where does portuguese language come from? +-Canonic Entity : portuguese_language +-Target Values : (list (description "Latin alphabet")) +-Candidate Entities: + + + +-------------- + QUESTION: what are the major religions in uk? +-Canonic Entity : my_major_company +-Target Values : (list (description Judaism) (description Catholicism) (description Presbyterianism) (description Sikhism) (description Methodism) (description "Church of England") (description Hinduism) (description Islam)) +-Candidate Entities: Christianity_and_other_religions, Japanese_new_religions, The_Pagan_Religions_of_the_Ancient_British_Isles, Religion_in_Kerala, History_of_religions, Religions_of_the_ancient_Near_East | Major_religious_groups | Religions_for_Peace, Review_of_Religions, Alliance_of_Religions_and_Conservation | Major_(manga) | The_Criterion_for_Religions, Parliament_of_the_World's_Religions + + + +-------------- + QUESTION: where did jennifer hudson go to school? +-Canonic Entity : jennifer_hudson +-Target Values : (list (description "Dunbar Vocational High School") (description "Langston University")) +-Candidate Entities: Hudson_River_School, Hudson_City_School_District_(Ohio), Hudson_&_Landry + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what type of guitar does john mayer play? +-Canonic Entity : john_mayer +-Target Values : (list (description "Fender Stratocaster")) +-Candidate Entities: John_D._Mayer + +Additional entities + +Method 1 + + John_D._Mayer + +Method 2 + + + +-------------- + QUESTION: when did toronto blue jays become a team? +-Canonic Entity : toronto_blue_jays +-Target Values : (list (description "1977 Major League Baseball Season")) +-Candidate Entities: The_Blue_Jays | Major_League_Baseball_on_TSN | Gulf_Coast_League_Blue_Jays, St._Catharines_Blue_Jays, OK_Blue_Jays, Dominican_Summer_League_Blue_Jays + +Additional entities + +Method 1 + + Major_League_Baseball_on_TSN + + Gulf_Coast_League_Blue_Jays + +Method 2 + + Major_League_Baseball_on_TSN + + St._Catharines_Blue_Jays + + + +-------------- + QUESTION: what is the zip code for moorpark ca? +-Canonic Entity : moorpark,_california +-Target Values : (list (description 93021) (description 93020)) +-Candidate Entities: ZIP_code | The_High_School_at_Moorpark_College, Moorpark_(train_station) | ZIP_Code_Tabulation_Area, Zip_the_Pinhead, Zip, Zip_(file_format), Zip_Code_Rapists, Zip_(airline), Zip_and_bong + +Additional entities + +Method 1 + + The_High_School_at_Moorpark_College + + ZIP_code + +Method 2 + + The_High_School_at_Moorpark_College + + ZIP_code + + + +-------------- + QUESTION: what continent is the usa located in? +-Canonic Entity : continent_(magazine) +-Target Values : (list (description "North America")) +-Candidate Entities: + + + +-------------- + QUESTION: what is the currency of spain called? +-Canonic Entity : currency +-Target Values : (list (description Euro)) +-Candidate Entities: A_Band_Called_O, Called_to_Serve_(song) | Spain | The_Return_of_a_Man_Called_Horse + +Additional entities + +Method 1 + + Spain + +Method 2 + + Spain + + + +-------------- + QUESTION: which country is to the north of the united states of america? +-Canonic Entity : british_north_america_acts +-Target Values : (list (description Canada)) +-Candidate Entities: Flags_of_North_America, Outline_of_North_America, British_North_America, North_America_and_West_Indies_Station, The_Country_Club_of_North_Carolina | Country_music, North_Country_Community_College, North_Country_Trail | The_United_States_of_America_(band), Latin_America–United_States_relations | Assembly_of_Canonical_Orthodox_Bishops_of_North_and_Central_America, North_America | United_States, Presbyterian_Church_in_the_United_States_of_America, United_States_of_North_America | Invasive_earthworms_of_North_America, Pentecostal/Charismatic_Churches_of_North_America, Territorial_evolution_of_North_America_since_1763 + +Additional entities + +Method 1 + + Territorial_evolution_of_North_America_since_1763 + + British_North_America + + Country_music + + United_States + +Method 2 + + North_America + + Territorial_evolution_of_North_America_since_1763 + + British_North_America + + United_States + + + +-------------- + QUESTION: what 3 states border the pacific ocean? +-Canonic Entity : the_pacific_ocean_(band) +-Target Values : (list (description California)) +-Candidate Entities: Canada–United_States_border, Mexico–United_States_border, Indonesia–Singapore_border | Kounotori_3, 3_+_3 + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what did mozart do to become famous? +-Canonic Entity : mozart_(1955_film) +-Target Values : (list (description Composer)) +-Candidate Entities: + + + +-------------- + QUESTION: where was avril lavigne born? +-Canonic Entity : avril_lavigne +-Target Values : (list (description Belleville)) +-Candidate Entities: Richard_R._Lavigne | Édouard-Henri_Avril, Avril_(Frédéric_Magnon), Avril | Lavigne | Brooksley_Born + +Additional entities + +Method 1 + + Avril_(Frédéric_Magnon) + +Method 2 + + + +-------------- + QUESTION: what are the 3 official languages of spain? +-Canonic Entity : official_bilingualism_in_canada +-Target Values : (list (description "Spanish Language")) +-Candidate Entities: Commissioner_of_Official_Languages, Languages_of_Spain, Office_of_the_Commissioner_of_Official_Languages, Official_languages_of_Puducherry, Official_Languages_Act_2003, List_of_official_languages, Languages_of_the_European_Union, Languages_of_Iberia, Languages_of_Russia | Spain | Official_languages_of_the_United_Nations, Official_language, Languages_of_the_United_States | Hévíz_Spa + +Additional entities + +Method 1 + + Office_of_the_Commissioner_of_Official_Languages + + Official_language + + Spain + +Method 2 + + Office_of_the_Commissioner_of_Official_Languages + + Official_language + + + +-------------- + QUESTION: what type of government does australia currently have? +-Canonic Entity : local_government_in_australia +-Target Values : (list (description "Parliamentary system") (description Federation) (description "Constitutional monarchy")) +-Candidate Entities: Bugatti_Type_51 | Australia | Type_88_tank_(China) | Western_Australia | Government | Bugatti_Type_13 | South_Australia | Government_of_Queensland | Bugatti_Type_35, Type_of_service + +Additional entities + +Method 1 + + Government + + Government_of_Queensland + + South_Australia + +Method 2 + + Government + + Government_of_Queensland + + Western_Australia + + Australia + + South_Australia + + + +-------------- + QUESTION: which countries do germany border? +-Canonic Entity : czech_republic–germany_border +-Target Values : (list (description Netherlands) (description "Czech Republic") (description Salzburg) (description Denmark) (description Poland) (description Luxembourg) (description France) (description Belgium) (description Austria) (description Switzerland)) +-Candidate Entities: Inner_German_border, Norway–Russia_border, Finnish–Swedish_border, Indonesia–Thailand_border, Indonesia–Singapore_border, Indonesia–Vietnam_border, List_of_sets_of_four_countries_that_border_one_another, Slovakia–Ukraine_border, List_of_countries_that_border_only_one_other_country + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what county is tampa located in? +-Canonic Entity : tampa,_florida +-Target Values : (list (description "Hillsborough County")) +-Candidate Entities: + + + +-------------- + QUESTION: who has coached the minnesota vikings? +-Canonic Entity : minnesota_vikings +-Target Values : (list (description "Harrison Smith") (description "Devin Aromashodu") (description "Chris Kluwe") (description "Joe Webb") (description "Christian Ponder") (description "Josh Robinson") (description "Jarius Wright") (description "McLeod Bethel-Thompson") (description "Blair Walsh") (description "Stephen Burton")) +-Candidate Entities: + + + +-------------- + QUESTION: what movies have queen latifah played in? +-Canonic Entity : the_queen_latifah_show +-Target Values : (list (description Taxi) (description "Jungle Fever") (description "Set It Off") (description "Stranger than Fiction") (description "Last Holiday") (description "Brown Sugar") (description "Ice Age: The Meltdown") (description "Ice Age: Dawn of the Dinosaurs") (description Hairspray) (description "Bringing Down the House")) +-Candidate Entities: Queen_Latifah, Weekend_Love_(Queen_Latifah_song), It's_Alright_(Queen_Latifah_song) | Sky_Movies_(New_Zealand) | Trav'lin'_Light_(Queen_Latifah_album) | At_the_Movies_(U.S._TV_series) | Paper_(Queen_Latifah_song) | Queen_(Snow_White) | Played | Queen_(slang) | Persona_(Queen_Latifah_album) | Movie_Gallery, MTV_Movie_Award_for_Best_Song_from_a_Movie, Movie_Network, Magix_Movie_Edit_Pro, 2011_MTV_Movie_Awards + +Additional entities + +Method 1 + + Queen_Latifah + +Method 2 + + Persona_(Queen_Latifah_album) + + Queen_Latifah + + + +-------------- + QUESTION: what is the short name for stephanie? +-Canonic Entity : stephanie_honoré +-Target Values : (list (description Stepha)) +-Candidate Entities: + + + +-------------- + QUESTION: where are they now jessica mcclure? +-Canonic Entity : jessica_mcclure +-Target Values : (list (description Midland)) +-Candidate Entities: + + + +-------------- + QUESTION: what year did tim duncan enter the nba? +-Canonic Entity : tim_duncan +-Target Values : (list (description "1997–98 NBA season")) +-Candidate Entities: NBA_Rookie_of_the_Year_Award, NBA_Finals | Enter_the_Realm + +Additional entities + +Method 1 + + NBA_Rookie_of_the_Year_Award + +Method 2 + + NBA_Finals + + + +-------------- + QUESTION: who played alf on the tv show? +-Canonic Entity : alf_garnett +-Target Values : (list (description "Paul Fusco")) +-Candidate Entities: + + + +-------------- + QUESTION: who was the vice president when bill clinton was in office? +-Canonic Entity : bill_clinton +-Target Values : (list (description "Al Gore")) +-Candidate Entities: Vice_President_of_the_Maldives, Vice_president, Vice_President_of_the_Russian_Federation, Vice_President_of_the_United_States, Vice_President_of_Nigeria, Office_of_the_Vice_President_of_the_United_States, Vice_President_of_Venezuela | Vice-President_of_Fiji, Vice_President_of_the_Philippines, Vice_President_of_the_Republic_of_China, Chief_of_Staff_to_the_Vice_President_of_the_United_States, Vice_President_of_Malawi, Vice_President_of_the_Confederate_States_of_America, Vice_President_of_Sierra_Leone, Vice_President_of_Indonesia, Vice_President_of_Honduras, Vice_President_of_Iran, Vice_President_of_Costa_Rica | FICE + +Additional entities + +Method 1 + + Chief_of_Staff_to_the_Vice_President_of_the_United_States + + Vice_President_of_the_United_States + +Method 2 + + Chief_of_Staff_to_the_Vice_President_of_the_United_States + + Vice_President_of_the_United_States + + + +-------------- + QUESTION: which countries does south africa export to? +-Canonic Entity : israel–south_africa_relations +-Target Values : (list (description Tanzania) (description Angola)) +-Candidate Entities: South_Africa, University_of_South_Africa + +Additional entities + +Method 1 + + South_Africa + +Method 2 + + South_Africa + + + +-------------- + QUESTION: what to do in downtown waukesha? +-Canonic Entity : waukesha,_wisconsin +-Target Values : (list (description "Waukesha County Museum") (description "University of Wisconsin-Waukesha") (description "Nice Ash") (description "Boscos Social Club") (description "Margaret Brate Bryant Civic Theatre Building") (description "Carroll University") (description "The Academy Waukesha") (description "Buddha Haksa Temple")) +-Candidate Entities: Waukesha_(town),_Wisconsin, Waukesha_Metro_Transit + +Additional entities + +Method 1 + + Waukesha_(town),_Wisconsin + +Method 2 + + Waukesha_(town),_Wisconsin + + + +-------------- + QUESTION: what other cars does gm make? +-Canonic Entity : cars_(soundtrack) +-Target Values : (list (description Hummer) (description Pontiac) (description Chevrolet) (description Buick) (description Oldsmobile) (description Cadillac)) +-Candidate Entities: The_Gambia–Iran_relations, Education_in_the_Gambia, The_Gambia–Taiwan_relations, List_of_colonial_governors_of_the_Gambia | Cars_(song), Cars_(film) | University_of_the_Gambia, Subdivisions_of_the_Gambia + +Additional entities + +Method 1 + + Cars_(film) + +Method 2 + + Cars_(film) + + + +-------------- + QUESTION: who did george lucas get engaged to? +-Canonic Entity : george_lucas +-Target Values : (list (description "Mellody Hobson")) +-Candidate Entities: Engaged_(song) | George_W._Lucas, Spencer_G._Lucas + +Additional entities + +Method 1 + + Spencer_G._Lucas + +Method 2 + + + +-------------- + QUESTION: what movies does leo howard play in? +-Canonic Entity : leo_howard +-Target Values : (list (description Logan) (description "G.I. Joe: The Rise of Cobra") (description "Aussie & Ted's Great Adventure") (description "Conan the Barbarian") (description Shorts)) +-Candidate Entities: Google_Play | Leo_Löwenthal, Pope_Leo_I, Leo_M._Franklin + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what instruments does john williams use? +-Canonic Entity : john_a._williams +-Target Values : (list (description Trombone) (description Piano) (description trumpet) (description clarinet)) +-Candidate Entities: Folk_instruments_of_Punjab | John_Williams_(guitarist), John_L._Williams, John_R._Williams, John_J._Williams_(senator), John_Williams, John_G._Williams, John_"Hot_Rod"_Williams, John_Williams_(offensive_lineman), John_D._Williams,_Jr., John_J._Williams_(American_Civil_War), John_Williams_(British_Army_officer), John_Williams_(satirist), Sir_John_Williams,_1st_Baronet,_of_the_City_of_London + +Additional entities + +Method 1 + + John_Williams + +Method 2 + + + +-------------- + QUESTION: who does messi play with? +-Canonic Entity : play_(moby_album) +-Target Values : (list (description "FC Barcelona")) +-Candidate Entities: Play_(BDSM), Play_(telecommunications), The_Saturday_Play, Play_(activity), Pay_to_play, Musik_for_a_Play, Pokémon_Play_It!, UEFA_Respect_Fair_Play_ranking, At_Play_Vol._3, Off-TV_Play, Pierre_Guillaume_Frédéric_le_Play, Child's_Play_(charity), Play_of_the_Month | Lionel_Messi, Georges_Parfait_Mbida_Messi, Jaunde-Texte_von_Karl_Atangana_und_Paul_Messi + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what is the language spoken in brazil? +-Canonic Entity : colloquial_finnish +-Target Values : (list (description "Brazilian Portuguese")) +-Candidate Entities: Spoken_(band) | Brazil | Portuguese_language | Music_and_the_Spoken_Word, Canadian_Festival_of_Spoken_Word + +Additional entities + +Method 1 + + Portuguese_language + + Brazil + +Method 2 + + Portuguese_language + + + +-------------- + QUESTION: who was johnny cash's first wife? +-Canonic Entity : johnny_cash +-Target Values : (list (description "Vivian Liberto")) +-Candidate Entities: The_Provoked_Wife, The_19th_Wife + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where do tasmanian devils live? +-Canonic Entity : tasmanian_devil +-Target Values : (list (description "In Tasmania")) +-Candidate Entities: The_Red_Devils_(blues_band) | Live_(James_Taylor_album), Ableton_Live, Live_Baby_Live, Live_art, Live_Box + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what a city in montana? +-Canonic Entity : virginia_city,_montana +-Target Values : (list (description Helena)) +-Candidate Entities: Miles_City,_Montana + +Additional entities + +Method 1 + + Miles_City,_Montana + +Method 2 + + Miles_City,_Montana + + + +-------------- + QUESTION: what timezone is toronto canada? +-Canonic Entity : toronto +-Target Values : (list (description "North American Eastern Time Zone")) +-Candidate Entities: Canada_Life_Building + +Additional entities + +Method 1 + + Canada_Life_Building + +Method 2 + + Canada_Life_Building + + + +-------------- + QUESTION: what was the milwaukee brewers old name? +-Canonic Entity : milwaukee_brewers_(american_association) +-Target Values : (list (description "Seattle Pilots")) +-Candidate Entities: + + + +-------------- + QUESTION: what type of political system does russia have? +-Canonic Entity : substructural_type_system +-Target Values : (list (description "Constitutional republic")) +-Candidate Entities: Political_Appointments_System_in_Hong_Kong, Political_system, Automobile_model_numbering_system_in_the_Soviet_Union_and_Russia + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what is the political system in egypt? +-Canonic Entity : political_appointments_system_in_hong_kong +-Target Values : (list (description "Semi-presidential system") (description "Constitutional republic") (description Republic) (description "Unitary state")) +-Candidate Entities: Egypt + +Additional entities + +Method 1 + + Egypt + +Method 2 + + Egypt + + + +-------------- + QUESTION: what airport is in kauai hawaii? +-Canonic Entity : kauai +-Target Values : (list (description "Lihue Airport")) +-Candidate Entities: Hawaii + +Additional entities + +Method 1 + + Hawaii + +Method 2 + + Hawaii + + + +-------------- + QUESTION: what is kevin durant play style? +-Canonic Entity : kevin_durant +-Target Values : (list (description "Small forward")) +-Candidate Entities: + + + +-------------- + QUESTION: where are vw cc made? +-Canonic Entity : cocos_(keeling)_islands_soccer_association +-Target Values : (list (description Germany)) +-Candidate Entities: + + + +-------------- + QUESTION: what team chris paul play for? +-Canonic Entity : chris_paul +-Target Values : (list (description "Los Angeles Clippers")) +-Candidate Entities: Chris_Harman_(composer) | Musik_for_a_Play | Chris_Carruthers | UEFA_Respect_Fair_Play_ranking + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what currency should i take to jamaica? +-Canonic Entity : jamaica,_queens +-Target Values : (list (description "Jamaican dollar")) +-Candidate Entities: + + + +-------------- + QUESTION: what is illinois state bird? +-Canonic Entity : bird_township,_macoupin_county,_illinois +-Target Values : (list (description "Northern Cardinal")) +-Candidate Entities: Bird_(film), The_Bird_and_the_Bee + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what places can you visit in france? +-Canonic Entity : places_to_visit +-Target Values : (list (description Champagne-Ardenne) (description "Lower Normandy") (description Brittany) (description Burgundy) (description Aquitaine) (description Auvergne) (description Alsace) (description Franche-Comté) (description "Centre region, France") (description Corsica)) +-Candidate Entities: The_Places_in_Between | An_Expensive_Visit + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what did richard nixon do for a living before he became president? +-Canonic Entity : richard_nixon +-Target Values : (list (description Politician)) +-Candidate Entities: Donald_A._Nixon, Nixon_(film), Hannah_Milhous_Nixon, Tricia_Nixon_Cox + +Additional entities + +Method 1 + + Nixon_(film) + +Method 2 + + Nixon_(film) + + + +-------------- + QUESTION: what three continents touch the atlantic ocean? +-Canonic Entity : three_continents_festival +-Target Values : (list (description Canada) (description Europe) (description "Western Sahara") (description "United States of America") (description France) (description "Sierra Leone") (description Ireland) (description Guyana) (description Nicaragua) (description Maine)) +-Candidate Entities: Atlantic_Ocean | Continent | Atlantic_Ocean_(band), List_of_islands_in_the_Atlantic_Ocean | Touch_(band) | Lost_Continents | Atlantic_Ocean_Tunnel, Southern_Ocean | Touch_Music, Touch_(river) + +Additional entities + +Method 1 + + Atlantic_Ocean + +Method 2 + + Atlantic_Ocean + + + +-------------- + QUESTION: what language do u speak in egypt? +-Canonic Entity : speak!!! +-Target Values : (list (description "Modern Standard Arabic")) +-Candidate Entities: Speak_(No-Man_album) | Egypt | Speak_(Godsmack_song), Speak_for_Yourself, I_Don't_Speak_the_Language + +Additional entities + +Method 1 + + Egypt + +Method 2 + + Egypt + + + +-------------- + QUESTION: what teams has lionel messi played for? +-Canonic Entity : lionel_messi +-Target Values : (list (description "Argentina national football team") (description "FC Barcelona") (description "FC Barcelona C") (description "FC Barcelona B")) +-Candidate Entities: Georges_Parfait_Mbida_Messi | Twilight_as_Played_by_The_Twilight_Singers, List_of_international_games_played_by_NHL_teams | High-performance_teams | Played, Played_in_Britain + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what countries in north america continent? +-Canonic Entity : south_america +-Target Values : (list (description "Navassa Island") (description Greenland) (description Honduras) (description "El Salvador") (description "Saint Pierre and Miquelon") (description "Jan Mayen") (description Guatemala) (description Aruba) (description "Clipperton Island") (description Belize)) +-Candidate Entities: North_America, Outline_of_North_America, British_North_America_Acts | Continent_(magazine), List_of_sovereign_states_and_dependent_territories_by_continent + +Additional entities + +Method 1 + + List_of_sovereign_states_and_dependent_territories_by_continent + +Method 2 + + List_of_sovereign_states_and_dependent_territories_by_continent + + North_America + + + +-------------- + QUESTION: what time zone is colorado springs co? +-Canonic Entity : colorado_springs,_colorado +-Target Values : (list (description "Mountain Time Zone")) +-Candidate Entities: Manitou_Springs,_Colorado, Poncha_Springs,_Colorado, Glenwood_Springs,_Colorado, University_of_Colorado_Colorado_Springs, Colorado_Springs_Airport | Central_Time_Zone, Mountain_Time_Zone | Colorado_Springs_and_Cripple_Creek_District_Railway + +Additional entities + +Method 1 + + Colorado_Springs_and_Cripple_Creek_District_Railway + + Central_Time_Zone + +Method 2 + + Colorado_Springs_and_Cripple_Creek_District_Railway + + Mountain_Time_Zone + + Manitou_Springs,_Colorado + + + +-------------- + QUESTION: what school did sergio romo go to? +-Canonic Entity : sergio_romo +-Target Values : (list (description "University of North Alabama")) +-Candidate Entities: Toribio_Romo_González, Romo, Carmen_Romo_Sepúlveda, Romo_(disambiguation) | Shipley_School, Ivel_Valley_School, Back_to_school_(marketing), School_story, Bahá'í_school + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who did adam sandler married? +-Canonic Entity : adam_sandler +-Target Values : (list (description "Jackie Sandler")) +-Candidate Entities: Sandler, Steven_Sandler, Sandler_and_Young | Married_to_It + +Additional entities + +Method 1 + + Married_to_It + +Method 2 + + + +-------------- + QUESTION: when did the name jehovah first appear? +-Canonic Entity : jehovah +-Target Values : (list (description "Jehovah's Witnesses")) +-Candidate Entities: Appear, Objects_in_the_Rear_View_Mirror_May_Appear_Closer_than_They_Are, When_Strangers_Appear, List_of_directors_who_appear_in_their_own_films, And_He_Shall_Appear + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who play luke skywalker? +-Canonic Entity : luke_skywalker +-Target Values : (list (description "Mark Hamill")) +-Candidate Entities: Luke_Records | Skywalker_(horse) | Luke_the_Evangelist, Luke_Ski, The_Legend_of_Luke, Luke, R._Luke_DuBois, Luke_A._Rankin | Play_On! + +Additional entities + +Method 1 + + Luke_Records + + Luke_Ski + +Method 2 + + Luke_Ski + + Luke_Records + + + +-------------- + QUESTION: what is the best island to visit in greece? +-Canonic Entity : the_visit +-Target Values : (list (description "Ionian Islands")) +-Candidate Entities: Greece_(town),_New_York | Pope_Benedict_XVI's_visit_to_the_United_Kingdom + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where did john howard live? +-Canonic Entity : ben_howard +-Target Values : (list (description Sydney)) +-Candidate Entities: John_Howard, John_Howard_(prison_reformer), Howard_Jones_(musician), Howard_Government, John_George_Howard, Saturday_Night_Live_with_Howard_Cosell + +Additional entities + +Method 1 + + Howard_Jones_(musician) + +Method 2 + + Howard_Jones_(musician) + + + +-------------- + QUESTION: what music did beethoven composed? +-Canonic Entity : beethoven_(film) +-Target Values : (list (description Opera) (description "Classical music")) +-Candidate Entities: Beethoven_and_his_contemporaries, Beethoven_on_Speed, Death_of_Ludwig_van_Beethoven, Beethoven_(film_series), Beethoven_(crater), Kaspar_Anton_Karl_van_Beethoven, Beethoven_or_Bust, Beethoven_Project_Trio + +Additional entities + +Method 1 + + Kaspar_Anton_Karl_van_Beethoven + +Method 2 + + Kaspar_Anton_Karl_van_Beethoven + + + +-------------- + QUESTION: what does the name rome mean? +-Canonic Entity : rome,_oregon +-Target Values : (list (description "Romulus and Remus")) +-Candidate Entities: + + + +-------------- + QUESTION: what inspired scott fitzgerald? +-Canonic Entity : f._scott_fitzgerald +-Target Values : (list (description "Oswald Spengler") (description "Sara Murphy") (description "R. D. Blackmore") (description "Edith Wharton") (description "Shane Leslie") (description "Sherwood Anderson") (description "John Keats")) +-Candidate Entities: Scott_Fitzgerald_(singer), Frances_Scott_Fitzgerald, Scott_L._Fitzgerald, Scott_Fitzgerald_(footballer_born_1979), Roy_G._Fitzgerald, Scott_Fitzgerald_(disambiguation) + +Additional entities + +Method 1 + + Frances_Scott_Fitzgerald + +Method 2 + + Frances_Scott_Fitzgerald + + + +-------------- + QUESTION: what did george steinbrenner do? +-Canonic Entity : george_steinbrenner +-Target Values : (list (description Entrepreneur) (description "Theatrical producer") (description Businessperson) (description Investor)) +-Candidate Entities: George_M._Steinbrenner_Field, Steinbrenner, SS_Henry_Steinbrenner + +Additional entities + +Method 1 + + George_M._Steinbrenner_Field + +Method 2 + + George_M._Steinbrenner_Field + + + +-------------- + QUESTION: who was hadrian and what did he do? +-Canonic Entity : hadrian +-Target Values : (list (description "Hadrian's Wall")) +-Candidate Entities: + + + +-------------- + QUESTION: what influenced langston hughes to write? +-Canonic Entity : langston_hughes +-Target Values : (list (description "Walt Whitman")) +-Candidate Entities: + + + +-------------- + QUESTION: where did pablo picasso die? +-Canonic Entity : pablo_picasso +-Target Values : (list (description Mougins)) +-Candidate Entities: The_Mystery_of_Picasso, Musée_Picasso, Picasso_(restaurant), Fundación_Picasso, Citroën_Xsara_Picasso, Balls_to_Picasso, Visit_to_Picasso + +Additional entities + +Method 1 + + Musée_Picasso + +Method 2 + + Musée_Picasso + + + +-------------- + QUESTION: what to do in seattle during the summer? +-Canonic Entity : seattle +-Target Values : (list (description "Woodland Park Zoo") (description "Henry Art Gallery") (description "Seattle Art Museum") (description "Seattle Aquarium") (description "Frye Art Museum") (description "Space Needle") (description "Pike Place Market") (description "Smith Tower") (description "Tillicum Village") (description "Museum of Flight")) +-Candidate Entities: + + + +-------------- + QUESTION: where did henry hudson travel? +-Canonic Entity : william_henry_hudson +-Target Values : (list (description "Hudson Bay")) +-Candidate Entities: Henry_E._Hudson, Henry_Hudson, Henry_Hudson_Regional_High_School | Corporate_travel_management | Hudson_&_Landry, Henry_Hudson_Park + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who was judy collins married to? +-Canonic Entity : judy_collins +-Target Values : (list (description "Peter Taylor") (description "Louis Nelson")) +-Candidate Entities: Jimmy_and_Judy, Richard_and_Judy | Rossington_Collins_Band | The_World_Is_Full_of_Married_Men | Judy | Married_to_It + +Additional entities + +Method 1 + + Rossington_Collins_Band + +Method 2 + + + +-------------- + QUESTION: when was the last time the toronto maple leafs make the playoffs? +-Canonic Entity : toronto_maple_leafs +-Target Values : (list (description "1967 Stanley Cup Finals")) +-Candidate Entities: Canadiens–Maple_Leafs_rivalry, St._John's_Maple_Leafs + +Additional entities + +Method 1 + + Canadiens–Maple_Leafs_rivalry + +Method 2 + + St._John's_Maple_Leafs + + + +-------------- + QUESTION: what do they speak in cambodia? +-Canonic Entity : speak!!! +-Target Values : (list (description "French Language") (description "Cambodian French") (description "Khmer language")) +-Candidate Entities: Speak_(No-Man_album) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what kind of insurance does geico offer? +-Canonic Entity : geico +-Target Values : (list (description "Fire, Marine, and Casualty Insurance")) +-Candidate Entities: Insurance | Offer, Offer_and_acceptance, Offer, Offer_in_compromise, Vince_Offer | Gifts_in_kind + +Additional entities + +Method 1 + + Insurance + +Method 2 + + Insurance + + + +-------------- + QUESTION: who is the prime minister of new zealand now? +-Canonic Entity : prime_minister_of_new_zealand +-Target Values : (list (description "John Key")) +-Candidate Entities: Yes_Minister | Zeal_(album), South_Zeal, William_Zeal, Zeal_(web), USS_Zeal_(AM-131) + +Additional entities + +Method 1 + + Yes_Minister + +Method 2 + + + +-------------- + QUESTION: what time is nebraska now? +-Canonic Entity : nebraska_cornhuskers_football +-Target Values : (list (description "Mountain Time Zone") (description "Central Time Zone") (description UTC−07:00) (description UTC−06:00)) +-Candidate Entities: Nebraska_(film), Nebraska, Nebraska_(album) | Time_(magazine) + +Additional entities + +Method 1 + + Time_(magazine) + + Nebraska + +Method 2 + + Time_(magazine) + + Nebraska + + + +-------------- + QUESTION: what did nick carter sister died of? +-Canonic Entity : nick_carter_(musician) +-Target Values : (list (description guitar)) +-Candidate Entities: Gloria_Carter_Spann | Sister_7, Pear_and_Sister_Pinecone, Sister_Act_(musical), Shakespears_Sister, Sister_Souljah + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who is james dean? +-Canonic Entity : james_dean +-Target Values : (list (description Actor)) +-Candidate Entities: L._Dean_James, Phillips,_Craig_and_Dean + +Additional entities + +Method 1 + + L._Dean_James + +Method 2 + + + +-------------- + QUESTION: where did bob dylan live? +-Canonic Entity : bob_dylan,_performing_artist +-Target Values : (list (description "Greenwich Village")) +-Candidate Entities: The_Bob_Dylan_Encyclopedia, The_Best_of_Bob_Dylan_(1997_album), Bob_Dylan_(album), Bob_Dylan, Hollies_Sing_Dylan, Dylan_&_the_Dead, Bob_Dylan_at_Budokan | The_Best_of_Bob_Dylan,_Vol._2, Bob_Dylan_England_Tour_1965, Song_for_Bob_Dylan, The_Essential_Bob_Dylan, The_Freewheelin'_Bob_Dylan | Dylan_(2007_album), Zé_Ramalho_Canta_Bob_Dylan_–_Tá_Tudo_Mudando, Bob_Dylan_and_the_Grateful_Dead_1987_Tour, Dylan_(1973_album), The_Best_of_Bob_Dylan, List_of_songs_written_by_Bob_Dylan | Live_(James_Taylor_album), Ableton_Live, Live_Baby_Live, Live_art, Live_Box + +Additional entities + +Method 1 + + List_of_songs_written_by_Bob_Dylan + + Bob_Dylan + +Method 2 + + The_Freewheelin'_Bob_Dylan + + Dylan_(1973_album) + + Bob_Dylan + + + +-------------- + QUESTION: who do roman catholics give authority to? +-Canonic Entity : catholics_for_choice +-Target Values : (list (description Pope)) +-Candidate Entities: Lists_of_Roman_Catholics, Roman_Catholicism_in_Greece | Evangelicals_and_Catholics_Together | Roman_Catholicism_in_Germany | Georgian_Byzantine-Rite_Catholics | Roman_Catholicism_in_China | Persecution_of_Goan_Catholics_during_the_Goan_Inquisition, Roman_Catholic_(term), Committee_of_Catholics_to_Fight_Anti-Semitism | Roman_Catholicism_in_Lithuania | Catholics_(novel) | Roman_Catholicism_in_Mauritius | The_Authority + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where did pres. obama go to school? +-Canonic Entity : obama,_fukui +-Target Values : (list (description "Occidental College") (description "Harvard Law School") (description "Noelani Elementary School") (description "Punahou School") (description "State Elementary School Menteng 01") (description "St. Francis of Assisi Catholic School") (description "Columbia University")) +-Candidate Entities: Barack_Obama, Artists_for_Obama + +Additional entities + +Method 1 + + Barack_Obama + +Method 2 + + Barack_Obama + + + +-------------- + QUESTION: who is nina dobrev playing in perks of being a wallflower? +-Canonic Entity : the_perks_of_being_a_wallflower +-Target Values : (list (description Candace)) +-Candidate Entities: Nina_Dobrev, Klára_Dobrev + +Additional entities + +Method 1 + + Nina_Dobrev + +Method 2 + + Nina_Dobrev + + + +-------------- + QUESTION: when did moscow burn? +-Canonic Entity : screen_burn-in +-Target Values : (list (description "1812 Fire of Moscow")) +-Candidate Entities: Burn_Zombie_Burn + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what is there to see in barcelona? +-Canonic Entity : barcelona,_anzoátegui +-Target Values : (list (description "Museu Picasso") (description "Gothic Quarter, Barcelona") (description "Park Güell") (description "La Rambla") (description "Palau de la Música Catalana") (description "Sagrada Família") (description "Plaça d'Espanya, Barcelona") (description "Barcelona Museum of Contemporary Art") (description "Casa Milà") (description "Museu Nacional d'Art de Catalunya")) +-Candidate Entities: Barcelona, Barcelona_(film), Barcelona_Graduate_School_of_Economics + + + +-------------- + QUESTION: who is larry ellison oracle? +-Canonic Entity : larry_ellison +-Target Values : (list (description Entrepreneur) (description Businessperson) (description Investor)) +-Candidate Entities: Ellison + +Additional entities + +Method 1 + + Ellison + +Method 2 + + Ellison + + + +-------------- + QUESTION: what is the zip code for fort stockton texas? +-Canonic Entity : fort_stockton,_texas +-Target Values : (list (description 79735)) +-Candidate Entities: ZIP_code | Fort_Stockton_Independent_School_District + +Additional entities + +Method 1 + + ZIP_code + +Method 2 + + ZIP_code + + Fort_Stockton_Independent_School_District + + + +-------------- + QUESTION: what teams drafted the morris twins? +-Canonic Entity : i_don't_wanna_get_drafted +-Target Values : (list (description "Phoenix Suns")) +-Candidate Entities: Thompson_Twins, Ragga_Twins, The_Gutter_Twins, The_Twins_(group), Twins_of_Evil, The_Suicide_Twins, Twins_(group), Kalin_Twins, Cocteau_Twins + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what state does obama come from? +-Canonic Entity : obama,_fukui +-Target Values : (list (description Honolulu)) +-Candidate Entities: Artists_for_Obama, The_Obama_Nation + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who does tim howard play for club? +-Canonic Entity : tim_howard +-Target Values : (list (description "Everton F.C.")) +-Candidate Entities: Hot_Dance_Club_Songs | TIM_(psychedelics) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what did egyptians speak? +-Canonic Entity : speak!!! +-Target Values : (list (description "Languages of Egypt") (description "Egyptian Arabic") (description "Coptic Language") (description "Egyptian language") (description "Sa'idi Arabic")) +-Candidate Entities: Egyptians_in_the_United_Kingdom | Speak_(No-Man_album) | Robyn_Hitchcock_and_the_Egyptians, Egyptians | Speak_(Godsmack_song), Speak_for_Yourself | Ashkali_and_Balkan_Egyptians | Don't_Speak | Egyptians_in_Italy | Speak_(band), Speak_of_the_Devil_(book) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what is vanderbilt's mascot? +-Canonic Entity : mascot,_new_south_wales +-Target Values : (list (description "Mr. Commodore")) +-Candidate Entities: + + + +-------------- + QUESTION: what did whitney houston die off? +-Canonic Entity : whitney_houston +-Target Values : (list (description Drowning) (description "Coronary artery disease") (description "Cocaine overdose")) +-Candidate Entities: + + + +-------------- + QUESTION: when was george w bush sworn in? +-Canonic Entity : george_p._bush +-Target Values : (list (description "George W. Bush 2001 presidential inauguration")) +-Candidate Entities: George_W._Bush, Public_image_of_George_W._Bush, George_Bush_Presidential_Library, George_H._W._Bush, George_W._Bush_Presidential_Center, George_H._W._Bush_vomiting_incident, Irving_T._Bush, Fictionalized_portrayals_of_George_W._Bush, George_Bush_(biblical_scholar), Bush_(band), Professional_life_of_George_W._Bush, Samuel_P._Bush, Marvin_P._Bush + +Additional entities + +Method 1 + + George_W._Bush + +Method 2 + + George_H._W._Bush + + + +-------------- + QUESTION: what middle school did barack obama attend? +-Canonic Entity : barack_obama +-Target Values : (list (description "St. Francis of Assisi Catholic School")) +-Candidate Entities: + + + +-------------- + QUESTION: what are the airports in chicago? +-Canonic Entity : tav_airports_holding +-Target Values : (list (description "Lansing Municipal Airport") (description "O'Hare International Airport") (description "Chicago Midway International Airport") (description "Chicago Executive Airport") (description "Schaumburg Regional Airport") (description "Aurora Municipal Airport") (description "Lewis University Airport") (description "Gary/Chicago International Airport") (description "Waukegan Regional Airport")) +-Candidate Entities: Chicago | All_the_Nations_Airports, Airports_of_Thailand, Ambient_1:_Music_for_Airports | Transportation_in_Chicago, Chicago_metropolitan_area, Chicago_(band) | National_Airports_System, Airports_Company_South_Africa, Highlands_and_Islands_Airports, Airports_Authority_of_India, List_of_airports_in_Illinois, List_of_airports_in_Delaware, List_of_airports_in_Colorado, List_of_airports_in_Indiana, Airport_metro_station, Wang-an_Airport, Domine_Edward_Osok_Airport, Adana_Şakirpaşa_Airport, Ahwaz_International_Airport + +Additional entities + +Method 1 + + Adana_Şakirpaşa_Airport + + Chicago + +Method 2 + + Adana_Şakirpaşa_Airport + + + +-------------- + QUESTION: what was van gogh famous for? +-Canonic Entity : van_gogh_museum +-Target Values : (list (description Painter)) +-Candidate Entities: Vincent_van_Gogh, Theo_van_Gogh_(art_dealer), Theo_van_Gogh_(film_director), Still_life_paintings_by_Vincent_van_Gogh_(Paris), Wil_van_Gogh, La_Oreja_de_Van_Gogh + +Additional entities + +Method 1 + + Vincent_van_Gogh + +Method 2 + + Vincent_van_Gogh + + + +-------------- + QUESTION: where did jane goodall go to school? +-Canonic Entity : jane_goodall +-Target Values : (list (description "University of Cambridge")) +-Candidate Entities: Jane_R._Goodall, Jane_Long_Middle_School_(Houston) + +Additional entities + +Method 1 + + Jane_R._Goodall + +Method 2 + + + +-------------- + QUESTION: who won 2012 presidential election in france? +-Canonic Entity : egyptian_presidential_election,_2012 +-Target Values : (list (description "Nicolas Sarkozy")) +-Candidate Entities: Next_Kosovan_presidential_election + + + +-------------- + QUESTION: what does donald trump own? +-Canonic Entity : donald_trump +-Target Values : (list (description "Trump Tower") (description "The Trump Organization") (description "Trump Entertainment Resorts")) +-Candidate Entities: Trump_Model_Management, Trump, Donald_J._Trump_State_Park, Trump_International_Hotel_and_Tower_(Chicago), Trump_Taj_Mahal, Trump_International_Hotel_and_Tower_(Toronto), Trump_(disambiguation) + +Additional entities + +Method 1 + + Trump_International_Hotel_and_Tower_(Chicago) + +Method 2 + + Trump_Taj_Mahal + + + +-------------- + QUESTION: what did thomson discover with his cathode ray tube experiment? +-Canonic Entity : cathode_ray +-Target Values : (list (description Electron)) +-Candidate Entities: Cathode | J._J._Thomson | X-ray_tube + +Additional entities + +Method 1 + + Cathode + + X-ray_tube + + J._J._Thomson + +Method 2 + + X-ray_tube + + Cathode + + J._J._Thomson + + + +-------------- + QUESTION: where did emily murphy go to school? +-Canonic Entity : emily_murphy +-Target Values : (list (description "Bishop Strachan School")) +-Candidate Entities: Murphy_High_School_(Mobile,_Alabama), Archbishop_Murphy_High_School + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what are the major religions in russia? +-Canonic Entity : japanese_new_religions +-Target Values : (list (description "Russian Orthodox Church") (description Islam)) +-Candidate Entities: Major_religious_groups | Religion_in_Kerala, History_of_religions, Religions_of_the_ancient_Near_East, Religions_for_Peace, The_Pagan_Religions_of_the_Ancient_British_Isles, Review_of_Religions + +Additional entities + +Method 1 + + Religions_for_Peace + + Major_religious_groups + +Method 2 + + History_of_religions + + + +-------------- + QUESTION: what do most nigerians speak? +-Canonic Entity : speak!!! +-Target Values : (list (description "English Language")) +-Candidate Entities: Speak_(No-Man_album), Speak_(Godsmack_song) | Nigerians | Speak_for_Yourself, Don't_Speak, Speak_(band), Speak_of_the_Devil_(book), Speak_(film), SPEAK_(test), Speak_Good_English_Movement + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who was the general for the british in the revolutionary war? +-Canonic Entity : american_revolutionary_war +-Target Values : (list (description "Black British") (description "White British") (description "British American")) +-Candidate Entities: Episodes_of_the_Cuban_Revolutionary_War, War_Office | French_Revolutionary_Wars | Northwest_Indian_War | Chief_of_the_General_Staff_(United_Kingdom), British_anti-invasion_preparations_of_the_Second_World_War | Irish_War_of_Independence | The_Revolutionary_Age | Attorney_General_of_British_Columbia | Arab_Revolutionary_Workers_Party + +Additional entities + +Method 1 + + British_anti-invasion_preparations_of_the_Second_World_War + + War_Office + + Irish_War_of_Independence + + Northwest_Indian_War + +Method 2 + + British_anti-invasion_preparations_of_the_Second_World_War + + War_Office + + Irish_War_of_Independence + + French_Revolutionary_Wars + + Northwest_Indian_War + + + +-------------- + QUESTION: what to do at fairfield ca? +-Canonic Entity : fairfield,_missouri +-Target Values : (list (description "Fairfield Center for Creative Arts") (description "Pepper Belly's Comedy Club") (description "Milan Institute of Cosmetology") (description "Solano Community College")) +-Candidate Entities: + + + +-------------- + QUESTION: where president nixon was born? +-Canonic Entity : nixon_(film) +-Target Values : (list (description "Yorba Linda")) +-Candidate Entities: Presidency_of_Richard_Nixon + +Additional entities + +Method 1 + + Presidency_of_Richard_Nixon + +Method 2 + + Presidency_of_Richard_Nixon + + + +-------------- + QUESTION: what currency does thailand accept? +-Canonic Entity : accept_(organization) +-Target Values : (list (description "Thai baht")) +-Candidate Entities: Accept_(band) | Thailand | Accept_(Chicken_Shack_album) | Bank_of_Thailand | Currency + +Additional entities + +Method 1 + + Thailand + +Method 2 + + + +-------------- + QUESTION: what else did eli whitney invent? +-Canonic Entity : eli_whitney_museum +-Target Values : (list (description "Interchangeable parts") (description "Cotton gin") (description Milling)) +-Candidate Entities: Eli_Whitney_Debevoise_II, Eli_Whitney,_North_Carolina, Eli_Whitney, Eli_Whitney_Debevoise, Eli_Whitney_Technical_High_School + +Additional entities + +Method 1 + + Eli_Whitney + +Method 2 + + Eli_Whitney + + + +-------------- + QUESTION: who founded collegehumor? +-Canonic Entity : collegehumor +-Target Values : (list (description "Josh Abramson") (description "Ricky Van Veen")) +-Candidate Entities: + + + +-------------- + QUESTION: where did barack obama attend school? +-Canonic Entity : barack_obama +-Target Values : (list (description "Occidental College") (description "Harvard Law School") (description "Noelani Elementary School") (description "Punahou School") (description "State Elementary School Menteng 01") (description "St. Francis of Assisi Catholic School") (description "Columbia University")) +-Candidate Entities: + + + +-------------- + QUESTION: what jobs did albert einstein have? +-Canonic Entity : albert_einstein +-Target Values : (list (description Writer) (description Author) (description Mathematician) (description Professor) (description "Theoretical Physicist") (description Physicist) (description Philosopher) (description Scientist) (description "Peace activist") (description Pacifist)) +-Candidate Entities: Einstein_family + +Additional entities + +Method 1 + + Einstein_family + +Method 2 + + Einstein_family + + + +-------------- + QUESTION: where to travel around sydney? +-Canonic Entity : sydney +-Target Values : (list (description "The Rocks") (description "Rose Seidler House") (description "Bondi Beach") (description "Sydney Opera House") (description "Luna Park Sydney") (description "Wild Life Sydney") (description "Darling Harbour") (description "Sydney Harbour Bridge") (description "St Mary's Cathedral, Sydney") (description "Powerhouse Museum")) +-Candidate Entities: Travel + +Additional entities + +Method 1 + +Method 2 + + Travel + + + +-------------- + QUESTION: what are the names of michael jackson movies? +-Canonic Entity : prince_michael_jackson_i +-Target Values : (list (description "Michael Jackson: The Trial and Triumph of the King of Pop") (description Moonwalker) (description "Listen Up! The Lives of Quincy Jones") (description "Maniac Magee") (description "Miss Cast Away") (description "Michael Jackson: Live in Japan") (description "Michael Jackson: Live in Bucharest: The Dangerous Tour") (description "Miles Davis: Live in Montreal") (description "Michael Jackson's Ghosts") (description "The Wiz")) +-Candidate Entities: Michael_A._Jackson, Michael_Jackson, Michael_P._Jackson, Michael_Jackson_(radio_commentator), Michael_Jackson_(anthropologist), Michael_W._Jackson, Mike_Jackson_(systems_scientist), Michael_Jackson_(TV_executive) | Michael_Jackson-related_games, The_Essential_Michael_Jackson | Mike_Jackson | The_Movies, At_the_Movies_(U.S._TV_series), Sky_Movies_(New_Zealand) | Paris-Michael_Katherine_Jackson | Michael_Gregory_(jazz_guitarist) | The_Names_(band), 50_Best_Songs_–_The_Motown_Years:_Michael_Jackson_&_The_Jackson_5 + + + +-------------- + QUESTION: what are the islands of oceania? +-Canonic Entity : colonisation_of_oceania +-Target Values : (list (description "Northern Mariana Islands") (description "Norfolk Island") (description Guam) (description "American Samoa") (description "New Caledonia") (description "Marshall Islands") (description Kiribati) (description Nauru) (description Fiji) (description "Cook Islands")) +-Candidate Entities: Oceania, Law_in_Oceania, 1999_Oceania_Club_Championship | Pacific_Islands | Women_in_Oceania, Gurdwaras_in_Oceania, FIBA_Oceania_Youth_Tournament, Europeans_in_Oceania, FIBA_Oceania_Championship_for_Women + +Additional entities + +Method 1 + + Oceania + +Method 2 + + + +-------------- + QUESTION: what timezone is illinois on? +-Canonic Entity : illinois +-Target Values : (list (description "Central Time Zone") (description UTC−06:00)) +-Candidate Entities: + + + +-------------- + QUESTION: what is the currency in france? +-Canonic Entity : currency +-Target Values : (list (description "CFP franc") (description Euro)) +-Candidate Entities: Dauphine_of_France, Name_of_France, Constable_of_France, Renée_of_France, Union_of_Brittany_and_France + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where is the head office of hsbc bank? +-Canonic Entity : hsbc_bank_malta +-Target Values : (list (description "New York City")) +-Candidate Entities: HSBC_Bank_Polska, HSBC, HSBC_Bank_(Turkey), HSBC_Bank_(China), HSBC_Bank_Armenia, HSBC_Bank_(Europe), HSBC_Bank_USA, HSBC_Guyerzeller_Bank, HSBC_Bank_(Chile) | Mizuho_Bank_Uchisaiwaichō_Head_Office_Building, HSBC_Private_Bank, HSBC_Bank_Canada, HSBC_Bank_(Panama), HSBC_Bank, HSBC_Bank_Malaysia, HSBC_Bank_Bermuda, HSBC_Bank_(Brazil), HSBC_Bank_Argentina + +Additional entities + +Method 1 + + HSBC_Private_Bank + + HSBC + +Method 2 + + HSBC_Private_Bank + + HSBC + + + +-------------- + QUESTION: what is the currency in england 2012? +-Canonic Entity : currency +-Target Values : (list (description "UK £")) +-Candidate Entities: Australian_cricket_team_in_England_and_Ireland_in_2012 + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where was martin cooper from? +-Canonic Entity : martin_cooper_(musician) +-Target Values : (list (description Chicago)) +-Candidate Entities: COOPER_(artist) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where is spain exactly located? +-Canonic Entity : every_day_is_exactly_the_same +-Target Values : (list (description "Iberian Peninsula") (description Europe)) +-Candidate Entities: Spain, Spain_(composition), Port_of_Spain | That's_Exactly_What_I_Wanted..._Exactly_That + +Additional entities + +Method 1 + + Spain + +Method 2 + + + +-------------- + QUESTION: what is the currency name of china? +-Canonic Entity : currency +-Target Values : (list (description Renminbi)) +-Candidate Entities: China + +Additional entities + +Method 1 + + China + +Method 2 + + China + + + +-------------- + QUESTION: what movies did charlie hunnam play in? +-Canonic Entity : charlie_hunnam +-Target Values : (list (description "Green Street")) +-Candidate Entities: Google_Play + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what kind of government does italy have? +-Canonic Entity : gifts_in_kind +-Target Values : (list (description "Constitutional republic") (description "Parliamentary republic") (description "Unitary state")) +-Candidate Entities: + + + +-------------- + QUESTION: what medium is the school of athens? +-Canonic Entity : athens_school_of_fine_arts +-Target Values : (list (description Athens)) +-Candidate Entities: + + + +-------------- + QUESTION: what year michael jordan came in the nba? +-Canonic Entity : michael_jordan +-Target Values : (list (description "1984 NBA Draft")) +-Candidate Entities: Jeffrey_Jordan, Michael_B._Jordan, Michael_I._Jordan | NBA_on_NBC, NBA_Finals, NBA_Defensive_Player_of_the_Year_Award | Michael-Hakim_Jordan | NBA_Rookie_of_the_Year_Award, NBA_regular_season_records + +Additional entities + +Method 1 + + Michael-Hakim_Jordan + + Jeffrey_Jordan + + NBA_Rookie_of_the_Year_Award + +Method 2 + + Michael-Hakim_Jordan + + NBA_Rookie_of_the_Year_Award + + NBA_Finals + + + +-------------- + QUESTION: what year did florida marlins win the world series? +-Canonic Entity : miami_marlins +-Target Values : (list (description "2003 World Series")) +-Candidate Entities: 2003_Florida_Marlins_season, 2009_Florida_Marlins_season, 2008_Florida_Marlins_season, 2011_Florida_Marlins_season, 2006_Florida_Marlins_season, 2007_Florida_Marlins_season, 1997_Florida_Marlins_season, Gulf_Coast_League_Marlins, 1998_Florida_Marlins_season | For_the_Win, WIN_(TV_station) | 1999_Florida_Marlins_season + +Additional entities + +Method 1 + + 1999_Florida_Marlins_season + +Method 2 + + 1999_Florida_Marlins_season + + Gulf_Coast_League_Marlins + + + +-------------- + QUESTION: what movie did marlee matlin won an academy award for? +-Canonic Entity : marlee_matlin +-Target Values : (list (description "Children of a Lesser God")) +-Candidate Entities: Marlee + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who is leann rimes with now? +-Canonic Entity : leann_rimes +-Target Values : (list (description "Eddie Cibrian")) +-Candidate Entities: + + + +-------------- + QUESTION: who is the current leader of china today? +-Canonic Entity : today_(the_smashing_pumpkins_song) +-Target Values : (list (description "Xi Jinping")) +-Candidate Entities: Today_in_L.A., Today_(U.S._TV_program), China_Today, Today_at_Wimbledon | The_Leader_(Allahabad_newspaper) | China | The_News_Leader | Today_(EP) | The_Beach_Boys_Today! | West_Spitsbergen_Current | The_Word_For_Today, Today_Is_the_Day, Leader_of_the_Opposition_(Singapore) | Leader_(comics), Louisville_Leader | Current_divider, Partial_current, Wetting_current, Swift_Current + +Additional entities + +Method 1 + + Today_Is_the_Day + + Today_(U.S._TV_program) + + China + +Method 2 + + China + + + +-------------- + QUESTION: where north dakota located? +-Canonic Entity : belden,_north_dakota +-Target Values : (list (description "Midwestern United States") (description "United States of America") (description "Contiguous United States") (description "United States, with Territories")) +-Candidate Entities: University_of_North_Dakota, North_Dakota, Constitution_of_North_Dakota, North_Dakota_State_University, North_Dakota_State_Capitol, Verendrye,_North_Dakota, First_Ladies_of_North_Dakota, North_Dakota_State_Bison, Outline_of_North_Dakota, North_Dakota_Lottery, Alden_Township,_Hettinger_County,_North_Dakota, State_Historical_Society_of_North_Dakota, Pittsburgh,_North_Dakota, North_Dakota_Republican_Party, North_Dakota_Highway_Patrol, North_Dakota_State_College_of_Science, North_Dakota_District_(LCMS), North_Dakota_locations_by_per_capita_income, Omemee,_North_Dakota | Protocol_for_the_Suppression_of_Unlawful_Acts_against_the_Safety_of_Fixed_Platforms_Located_on_the_Continental_Shelf + +Additional entities + +Method 1 + + North_Dakota + +Method 2 + + North_Dakota + + + +-------------- + QUESTION: what countries did queen elizabeth ii rule? +-Canonic Entity : elizabeth_ii +-Target Values : (list (description "United Kingdom")) +-Candidate Entities: Queen_Elizabeth_The_Queen_Mother, Queen_Elizabeth_Prize_for_Engineering, Queen_Elizabeth_Theatre, Elizabeth_I_of_England, Elizabeth_Stuart,_Queen_of_Bohemia | Queen_Elizabeth-class_aircraft_carrier, Queen_Elizabeth_Park,_British_Columbia, Queen_Elizabeth,_Saskatoon, Queen_Elizabeth-class_battleship | International_Rule_(sailing), Hückel's_rule + +Additional entities + +Method 1 + + Queen_Elizabeth-class_aircraft_carrier + + Queen_Elizabeth_The_Queen_Mother + +Method 2 + + Queen_Elizabeth-class_aircraft_carrier + + Queen_Elizabeth_The_Queen_Mother + + + +-------------- + QUESTION: who played forrest gump as a kid? +-Canonic Entity : forrest_gump_(soundtrack) +-Target Values : (list (description "Michael Connor Humphreys")) +-Candidate Entities: Gump_and_Co., Gump_(song), Bubba_Gump_Shrimp_Company + +Additional entities + +Method 1 + +Method 2 + + Bubba_Gump_Shrimp_Company + + + +-------------- + QUESTION: where was the battle of vicksburg held? +-Canonic Entity : vicksburg,_michigan +-Target Values : (list (description "Warren County")) +-Candidate Entities: + + + +-------------- + QUESTION: what kind of artist is henri matisse? +-Canonic Entity : henri_matisse +-Target Values : (list (description Sculpture) (description Printmaking) (description Collage) (description Painting) (description Drawing)) +-Candidate Entities: Matisse_(crater), Matisse_(band), Matisse_(disambiguation) | A_Kind_of_Alchemy + +Additional entities + +Method 1 + + Matisse_(disambiguation) + +Method 2 + + + +-------------- + QUESTION: what are the duggars kids names and ages? +-Canonic Entity : 19_kids_and_counting +-Target Values : (list (description "Jana Duggar")) +-Candidate Entities: ...For_the_Kids, Suburban_Kids_with_Biblical_Names + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where does ben stiller live in ny? +-Canonic Entity : ben_stiller +-Target Values : (list (description "New York")) +-Candidate Entities: Stiller | Ben_Folds_Live_at_MySpace_DVD, Ben_Folds_Live + +Additional entities + +Method 1 + + Stiller + +Method 2 + + Stiller + + + +-------------- + QUESTION: what is the official language in mexico? +-Canonic Entity : official_bilingualism_in_canada +-Target Values : (list (description "Spanish Language")) +-Candidate Entities: Official_language, Languages_of_Mexico, List_of_official_languages, Official_languages_of_Puducherry + +Additional entities + +Method 1 + + Official_language + +Method 2 + + Official_language + + + +-------------- + QUESTION: what wars did ulysses s grant served in? +-Canonic Entity : ulysses_s._grant_iv +-Target Values : (list (description "Grant rises in the West.") (description "Ulysses S. Grant: The Unlikely Hero") (description "Ulysses S Grant, 1861-1864") (description "The Civil War memoirs of Ulysses S. Grant") (description "The generalship of Ulysses S. Grant") (description Grant) (description "Grant and Twain: The Story of a Friendship That Changed America") (description "Letters of Ulysses S. Grant to His Father and His Youngest Sister") (description "Personal memoirs") (description "Ulysses S. Grant: The Soldier And the Man")) +-Candidate Entities: Ulysses_S._Grant_III, Ulysses_S._Grant, Ulysses_S._Grant,_Jr., Presidency_of_Ulysses_S._Grant, Ulysses_S._Grant_Home + +Additional entities + +Method 1 + + Ulysses_S._Grant + +Method 2 + + Ulysses_S._Grant + + + +-------------- + QUESTION: who is the head coach of the tennessee titans? +-Canonic Entity : tennessee_titans +-Target Values : (list (description "Mike Munchak")) +-Candidate Entities: Head_coach | Remember_the_Titans, Cal_State_Fullerton_Titans_baseball, Cal_State_Fullerton_Titans, Wrath_of_the_Titans, Titan_(mythology) + +Additional entities + +Method 1 + + Remember_the_Titans + + Head_coach + +Method 2 + + Remember_the_Titans + + Head_coach + + + +-------------- + QUESTION: what type of government does fiji have? +-Canonic Entity : local_government_in_fiji +-Target Values : (list (description "Military dictatorship") (description "Military junta") (description "Parliamentary republic")) +-Candidate Entities: President_of_Fiji, Politics_of_Fiji, Flag_of_Fiji + +Additional entities + +Method 1 + + President_of_Fiji + +Method 2 + + President_of_Fiji + + + +-------------- + QUESTION: in what state did the bloody battle of antietam take place? +-Canonic Entity : battle_of_antietam +-Target Values : (list (description Sharpsburg)) +-Candidate Entities: + + + +-------------- + QUESTION: where did vietnamese people originate from? +-Canonic Entity : vietnamese_people +-Target Values : (list (description Asian)) +-Candidate Entities: Hoa_people + +Additional entities + +Method 1 + + Hoa_people + +Method 2 + + Hoa_people + + + +-------------- + QUESTION: who was dan cody? +-Canonic Entity : cody,_florida +-Target Values : (list (description "American football player")) +-Candidate Entities: + + + +-------------- + QUESTION: what language do people speak in turkey? +-Canonic Entity : speak!!! +-Target Values : (list (description "Arabic Language") (description "Kurdish language") (description "Zazaki language") (description "Ladino Language") (description "Turkish Language")) +-Candidate Entities: The_People_Speak_(film), Speak_(No-Man_album), Speak_(Godsmack_song) | Turkey | I_Don't_Speak_the_Language, Kurds_in_Turkey | Don't_Speak, Citizen,_speak_Turkish!, Speak_(film) + +Additional entities + +Method 1 + + Turkey + +Method 2 + + + +-------------- + QUESTION: what are all the inventions benjamin franklin made? +-Canonic Entity : benjamin_franklin +-Target Values : (list (description "Lightning rod") (description "Franklin stove") (description Bifocals) (description "Glass harmonica")) +-Candidate Entities: Ben_Franklin_House, Franklin_Institute, Benjamin_Cromwell_Franklin | The_Brilliant_Inventions, Inventions_and_Dimensions, Hope_Sandoval_&_the_Warm_Inventions, Army_Inventions_Board, Inventions_and_Their_Management + +Additional entities + +Method 1 + + Inventions_and_Their_Management + + Franklin_Institute + +Method 2 + + Franklin_Institute + + + +-------------- + QUESTION: what was wrong with joan crawford? +-Canonic Entity : joan_crawford +-Target Values : (list (description "Myocardial infarction") (description "Pancreatic cancer")) +-Candidate Entities: Crawford_and_Son | Wrong_Turn_(film_series) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who does debbie dingle go out with? +-Canonic Entity : dingle +-Target Values : (list (description "Eli Dingle") (description "Scott Windsor") (description "Andy Sugden") (description "Jasmine Thomas")) +-Candidate Entities: Debbie + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what country was anton van leeuwenhoek from? +-Canonic Entity : antonie_van_leeuwenhoek +-Target Values : (list (description "Dutch Republic") (description Netherlands)) +-Candidate Entities: Leeuwenhoek_(crater) | Svätý_Anton, Kaspar_Anton_Karl_van_Beethoven, Anton_van_Wouw, Anton_Eduard_van_Arkel, Anton_van_Rooy, Eduard_Anton_Eugène_van_Meeuwen + +Additional entities + +Method 1 + + Anton_Eduard_van_Arkel + +Method 2 + + + +-------------- + QUESTION: what is the time in france if it is 8am in scotland? +-Canonic Entity : scotland,_virginia +-Target Values : (list (description "Central European Time") (description UTC+01:00)) +-Candidate Entities: Secretary_of_State_for_Scotland, Flag_of_Scotland + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who played todd manning on one life to live? +-Canonic Entity : todd_manning_and_blair_cramer +-Target Values : (list (description "Blair Cramer")) +-Candidate Entities: Jack_Manning_(One_Life_to_Live) + +Additional entities + +Method 1 + + Jack_Manning_(One_Life_to_Live) + +Method 2 + + Jack_Manning_(One_Life_to_Live) + + + +-------------- + QUESTION: what does latin america consist of? +-Canonic Entity : japan–latin_america_relations +-Target Values : (list (description Bolivia) (description Honduras) (description Cuba) (description "El Salvador") (description Guatemala) (description "Costa Rica") (description "Cuauhtémoc, D.F.") (description "Great Pyramid of Tenochtitlán") (description Paraguay) (description Belize)) +-Candidate Entities: Latin_America_Solidarity_Organisation_in_Norway, Street_children_in_Latin_America, Race_and_ethnicity_in_Latin_America, Crime_and_violence_in_Latin_America, Canadian_mining_in_Latin_America_and_the_Caribbean + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who is the manager of the st louis cardinals? +-Canonic Entity : st._louis_cardinals +-Target Values : (list (description "Mike Matheny")) +-Candidate Entities: + + + +-------------- + QUESTION: where in oregon was stand by me filmed? +-Canonic Entity : stand_by_for... +-Target Values : (list (description "Mahonia aquifolium") (description "Oregon Swallowtail") (description "Western Meadowlark") (description "Alis volat propriis") (description Pseudotsuga) (description "Chinook salmon") (description Milk)) +-Candidate Entities: The_Family_Stand + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what country vasco da gama sail for? +-Canonic Entity : vasco_da_gama +-Target Values : (list (description Portugal)) +-Candidate Entities: + + + +-------------- + QUESTION: what did writers of the harlem renaissance write about? +-Canonic Entity : harlem_renaissance +-Target Values : (list (description "William Henry Draper, Jr.")) +-Candidate Entities: Harlem | Write_to_Death, Write_(system_call) + +Additional entities + +Method 1 + + Harlem + +Method 2 + + Harlem + + + +-------------- + QUESTION: what is the language they speak in jamaica? +-Canonic Entity : speak!!! +-Target Values : (list (description "Jamaican Creole English Language") (description "Jamaican English")) +-Candidate Entities: Speak_(No-Man_album) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where to live in duluth ga? +-Canonic Entity : duluth,_georgia +-Target Values : (list (description "You'll Like My Mother")) +-Candidate Entities: + + + +-------------- + QUESTION: what is the currency in australia 2011? +-Canonic Entity : currency_creek,_south_australia +-Target Values : (list (description "Australian dollar")) +-Candidate Entities: Currency_War_of_2009–11, Currency, Currency_Museum_of_the_Bank_of_Japan, Currency_(lads_and_lasses) | Australia_men's_national_basketball_team_2011–12_results, Australia + +Additional entities + +Method 1 + + Australia + +Method 2 + + Australia + + + +-------------- + QUESTION: where did prophet daniel died? +-Canonic Entity : prophet_(band) +-Target Values : (list (description Babylon)) +-Candidate Entities: Prophet_(disambiguation) | Daniel | Prophet | Daniel_(Old_English_poem) | Prophet_(novel), Prophet_of_the_Last_Eclipse, Veiled_Prophet_Ball + +Additional entities + +Method 1 + + Prophet + +Method 2 + + Prophet + + + +-------------- + QUESTION: what state was theodore roosevelt from? +-Canonic Entity : theodore_roosevelt,_jr. +-Target Values : (list (description "New York")) +-Candidate Entities: Theodore_Roosevelt_Monument_Assemblage, Theodore_Roosevelt, USS_Theodore_Roosevelt_(CVN-71), Theodore_Roosevelt_Island, Dickinson_Theodore_Roosevelt_Regional_Airport, Theodore_Roosevelt_High_School_(Fresno), Theodore_Roosevelt_Lake, Theodore_Roosevelt_in_Oyster_Bay, Theodore_Roosevelt_Association, Theodore_Roosevelt_National_Park, Theodore_Roosevelt_High_School_(Chicago), Theodore_Roosevelt_Bridge, USS_Theodore_Roosevelt_(ID-1478), First_inauguration_of_Theodore_Roosevelt, Theodore_Roosevelt_Cyclopedia, Alice_Hathaway_Lee_Roosevelt, Second_inauguration_of_Theodore_Roosevelt + +Additional entities + +Method 1 + + Theodore_Roosevelt + +Method 2 + + Theodore_Roosevelt + + + +-------------- + QUESTION: what does the term prima donna mean? +-Canonic Entity : prima_donna_(uk_band) +-Target Values : (list (description "Personal assistant") (description "office temp-worker")) +-Candidate Entities: Prima_(locomotive) | The_Bald_Soprano | Doe_people, Nicholas_B._Doe, Samuel_Doe, Lawrence_Doe, Michael_Doe_(bishop) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what form of government does brazil have? +-Canonic Entity : sixth_form_government_secondary_school +-Target Values : (list (description "Constitutional republic") (description "Presidential system") (description "Federal republic")) +-Candidate Entities: + + + +-------------- + QUESTION: where did lebron james go to highschool? +-Canonic Entity : lebron_james +-Target Values : (list (description "St. Vincent – St. Mary High School")) +-Candidate Entities: + + + +-------------- + QUESTION: where was toussaint l'ouverture from? +-Canonic Entity : toussaint_louverture +-Target Values : (list (description Haiti)) +-Candidate Entities: Toussaint, Toussaint_(album), François-Vincent_Toussaint + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where do the fla marlins play? +-Canonic Entity : miami_marlins +-Target Values : (list (description "Marlins Park")) +-Candidate Entities: 2007_Florida_Marlins_season + +Additional entities + +Method 1 + + 2007_Florida_Marlins_season + +Method 2 + + 2007_Florida_Marlins_season + + + +-------------- + QUESTION: what type of art does wassily kandinsky do? +-Canonic Entity : wassily_kandinsky +-Target Values : (list (description Painting)) +-Candidate Entities: Art_Institute_of_Chicago, Collection_of_Modern_Religious_Art,_Vatican_Museums, Museum_of_Contemporary_Art,_University_of_São_Paulo, Metropolitan_Museum_of_Art, Psychology_of_art | Type_88_tank_(China), Bugatti_Type_35, Bugatti_Type_51, Bugatti_Type_13, Type_of_service + +Additional entities + +Method 1 + + Metropolitan_Museum_of_Art + +Method 2 + + Metropolitan_Museum_of_Art + + + +-------------- + QUESTION: who won london mayoral elections 2012? +-Canonic Entity : london_mayoral_elections +-Target Values : (list (description "Stephen Foster")) +-Candidate Entities: London_Assembly_election,_2012, United_Kingdom_local_elections,_2012, United_States_House_of_Representatives_elections,_2012, 2012_elections_in_India + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who was arthur miller father? +-Canonic Entity : arthur_miller +-Target Values : (list (description "Isidore Miller")) +-Candidate Entities: Arthur_R._Miller, Arthur_Charles_Miller, Arthur_G._Miller, Arthur_L._Miller, A._M._Miller, Robert_A._Miller + +Additional entities + +Method 1 + + Arthur_R._Miller + +Method 2 + + + +-------------- + QUESTION: what influenced william morris to be an artist? +-Canonic Entity : william_morris +-Target Values : (list (description "John Ruskin")) +-Candidate Entities: Mark_Morris, William_R._Morris, William_E._Morris_(politician), William_N._Morris + +Additional entities + +Method 1 + + William_N._Morris + +Method 2 + + + +-------------- + QUESTION: where do the abenaki indians live? +-Canonic Entity : abenaki +-Target Values : (list (description "Indigenous peoples of the Northeastern Woodlands")) +-Candidate Entities: Flux_of_Pink_Indians, Black_Indians_in_the_United_States, Dominican_Summer_League_Indians, Indians_In_Moscow, Soboba_Band_of_Luiseno_Indians | Live_(James_Taylor_album) + +Additional entities + +Method 1 + + Black_Indians_in_the_United_States + +Method 2 + + Black_Indians_in_the_United_States + + + +-------------- + QUESTION: what super bowls have the giants won? +-Canonic Entity : bowls +-Target Values : (list (description "2010 World Series") (description "2012 World Series")) +-Candidate Entities: Super_Bowl | San_Francisco_Giants | List_of_Super_Bowl_champions | New_York_Giants | Super_Bowl_XXXV, Super_Bowl_XXI, Super_Bowl_XLVI, Super_Bowl_XXV | History_of_the_New_York_Giants, David_and_the_Giants, The_Giants_of_Jazz_(album) | Won_at_Last + +Additional entities + +Method 1 + + San_Francisco_Giants + + Super_Bowl + + New_York_Giants + +Method 2 + + + +-------------- + QUESTION: where was rod stewart born? +-Canonic Entity : rod_stewart +-Target Values : (list (description Highgate)) +-Candidate Entities: + + + +-------------- + QUESTION: what did jack kevorkian go to prison for? +-Canonic Entity : jack_kevorkian +-Target Values : (list (description "Assisted suicide")) +-Candidate Entities: Kevorkian_Death_Cycle | You_Don't_Know_Jack_(film) | François_Kevorkian, Kevorkian | Burrel_prison, HM_Prison_Dartmoor, Michigan_State_Prison, Dark_prison, Spandau_Prison + +Additional entities + +Method 1 + + You_Don't_Know_Jack_(film) + +Method 2 + + You_Don't_Know_Jack_(film) + + + +-------------- + QUESTION: which country uses euro as its main currency? +-Canonic Entity : euro +-Target Values : (list (description Italy) (description Portugal) (description Finland) (description Luxembourg) (description France) (description Slovenia) (description Austria) (description Germany) (description Greece) (description Spain)) +-Candidate Entities: Currency_bill_tracking, Currency, Currency_appreciation_and_depreciation | Country_music, Country_code | Main_(river) | Country_dance, Cross_country_running_shoe + +Additional entities + +Method 1 + + Main_(river) + + Country_music + + Currency + +Method 2 + + Country_code + + Main_(river) + + Currency + + + +-------------- + QUESTION: who is ruling tunisia now? +-Canonic Entity : tunisia +-Target Values : (list (description "Ali Laarayedh")) +-Candidate Entities: Ruling_Queens_of_Númenor, Ruling_Queens_of_Númenor, Ronchi_ruling, Intellectuals_Are_the_Shoeshine_Boys_of_the_Ruling_Elite, Ruling_class, Revenue_ruling + +Additional entities + +Method 1 + +Method 2 + + Ruling_class + + + +-------------- + QUESTION: who played eowyn in the lord of the rings movies? +-Canonic Entity : the_lord_of_the_rings_(soundtrack) +-Target Values : (list (description "Miranda Otto")) +-Candidate Entities: + + + +-------------- + QUESTION: where is the parliament in south africa? +-Canonic Entity : parliament_of_south_africa +-Target Values : (list (description "Cape Town")) +-Candidate Entities: + + + +-------------- + QUESTION: what important office did abraham lincoln hold? +-Canonic Entity : the_papers_of_abraham_lincoln +-Target Values : (list (description "United States Representative") (description "President of the United States") (description "Member of Illinois House of Representatives")) +-Candidate Entities: Lincoln_(2012_film) | FICE + +Additional entities + +Method 1 + + Lincoln_(2012_film) + +Method 2 + + Lincoln_(2012_film) + + + +-------------- + QUESTION: which country has adopted the euro as its currency ( 1 point )? +-Canonic Entity : euro +-Target Values : (list (description Italy) (description Portugal) (description Finland) (description Luxembourg) (description France) (description Slovenia) (description Austria) (description Germany) (description Greece) (description Spain)) +-Candidate Entities: Currency | Point_No._1 | Country_code + +Additional entities + +Method 1 + + Country_code + + Currency + +Method 2 + + Country_code + + Currency + + + +-------------- + QUESTION: where did michael jordan play high school basketball? +-Canonic Entity : jeffrey_jordan +-Target Values : (list (description "Emsley A. Laney High School")) +-Candidate Entities: Jordan-Matthews_High_School | Michael_Jordan, Barbara_Jordan_High_School, Jordan_High_School_(Los_Angeles,_California), Michael_B._Jordan | 2006_boys_high_school_basketball_All-Americans, Illinois_High_School_Boys_Basketball_Championship, Jordan_High_School_(Long_Beach,_California) | Basketball | Michael_I._Jordan, Jordan_High_School_(Sandy,_Utah), Michael-Hakim_Jordan | Kennebecasis_Valley_High_School, St._Michael-Albertville_High_School, Indiana_high_school_boys_basketball_champions, Columbia_High_School_(Decatur,_Georgia) + +Additional entities + +Method 1 + + Michael_Jordan + + Basketball + +Method 2 + + Michael_Jordan + + Basketball + + + +-------------- + QUESTION: what type of cancer did huell howser die of? +-Canonic Entity : huell_howser +-Target Values : (list (description "Prostate cancer")) +-Candidate Entities: Frederick_N._Howser | Cancer_survivor, Cervical_cancer, Prostate_cancer, Alternative_cancer_treatments, Clonally_transmissible_cancer + +Additional entities + +Method 1 + + Prostate_cancer + +Method 2 + + + +-------------- + QUESTION: what timezone is minneapolis in? +-Canonic Entity : minneapolis +-Target Values : (list (description "Central Time Zone")) +-Candidate Entities: + + + +-------------- + QUESTION: who is aidan davis? +-Canonic Entity : aidan_davis +-Target Values : (list (description "Street dance") (description Presenter)) +-Candidate Entities: + + + +-------------- + QUESTION: who is samantha gibb? +-Canonic Entity : maurice_gibb +-Target Values : (list (description Singer)) +-Candidate Entities: + + + +-------------- + QUESTION: what was nicolaus copernicus occupation? +-Canonic Entity : nicolaus_copernicus_university_in_toruń +-Target Values : (list (description Astronomer)) +-Candidate Entities: Copernicus_(lunar_crater), Copernicus_(disambiguation) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what did richard arkwright contribute to the industrial revolution? +-Canonic Entity : richard_arkwright +-Target Values : (list (description "Spinning frame")) +-Candidate Entities: Arkwright_Society + +Additional entities + +Method 1 + + Arkwright_Society + +Method 2 + + Arkwright_Society + + + +-------------- + QUESTION: what kind of currency does greece have? +-Canonic Entity : currency +-Target Values : (list (description Euro)) +-Candidate Entities: A_Kind_of_Alchemy | Greece_(town),_New_York | Johann_Friedrich_Kind + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: when did manchester united first win a trophy? +-Canonic Entity : leeds_united_a.f.c.–manchester_united_f.c._rivalry +-Target Values : (list (description "FA Cup 1976–77")) +-Candidate Entities: For_the_Win | Manchester | WIN_(TV_station) + + + +-------------- + QUESTION: where is the mozambique located? +-Canonic Entity : mozambique +-Target Values : (list (description Africa)) +-Candidate Entities: Protocol_for_the_Suppression_of_Unlawful_Acts_against_the_Safety_of_Fixed_Platforms_Located_on_the_Continental_Shelf + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where is isthmus of panama located? +-Canonic Entity : isthmus_of_panama +-Target Values : (list (description "Costa Rica")) +-Candidate Entities: Panama + +Additional entities + +Method 1 + + Panama + +Method 2 + + Panama + + + +-------------- + QUESTION: what to see in washington dc in 2 days? +-Canonic Entity : washington,_d.c. +-Target Values : (list (description "White House") (description "The Phillips Collection") (description "United States Capitol") (description "Thomas Jefferson Memorial") (description "National Museum of the American Indian") (description "International Spy Museum") (description "National Portrait Gallery") (description "Washington Monument") (description "Lincoln Memorial") (description "Freer Gallery of Art")) +-Candidate Entities: + + + +-------------- + QUESTION: where is azerbaijan? +-Canonic Entity : azerbaijan_(iran) +-Target Values : (list (description Europe) (description Eurasia) (description Asia)) +-Candidate Entities: National_Hero_of_Azerbaijan, Azerbaijan + +Additional entities + +Method 1 + + Azerbaijan + +Method 2 + + Azerbaijan + + + +-------------- + QUESTION: what is the money of argentina called? +-Canonic Entity : the_future_of_money +-Target Values : (list (description "Argentine peso")) +-Candidate Entities: + + + +-------------- + QUESTION: what college did matt schaub play for? +-Canonic Entity : matt_schaub +-Target Values : (list (description "Virginia Cavaliers football")) +-Candidate Entities: Frédéric_Schaub + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what did bella abzug do? +-Canonic Entity : bella_abzug +-Target Values : (list (description Lawyer)) +-Candidate Entities: Bella | Abzug + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what sights to see in madrid? +-Canonic Entity : madrid,_new_york +-Target Values : (list (description "Paseo del Prado") (description "Thyssen-Bornemisza Museum") (description "Almudena Cathedral") (description "Plaza de Cibeles") (description "Puerta del Sol") (description "Royal Palace of Madrid") (description "Museo de Lazaro Galdiano") (description "Gran Vía") (description "Museo Nacional Centro de Arte Reina Sofía") (description "Plaza Mayor, Madrid")) +-Candidate Entities: Community_of_Madrid + +Additional entities + +Method 1 + +Method 2 + + Community_of_Madrid + + + +-------------- + QUESTION: what good things has angelina jolie done? +-Canonic Entity : angelina_jolie +-Target Values : (list (description "Academy Award for Actress in a Supporting Role")) +-Candidate Entities: Jolie_(disambiguation), Jolie_&_the_Wanted | Good_Things_Happening | Ruud_Jolie | All_Good_Things_(Come_to_an_End), All_Good_Things..._(Star_Trek:_The_Next_Generation) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what films has gerard butler starred in? +-Canonic Entity : gerard_butler +-Target Values : (list (description Attila) (description "Beowulf & Grendel") (description 300) (description "Dear Frankie") (description "Butterfly on a Wheel") (description Gamer) (description "Fast Food") (description "Dracula 2000") (description Coriolanus)) +-Candidate Entities: + + + +-------------- + QUESTION: what films did hans zimmer wrote music for? +-Canonic Entity : hans_zimmer +-Target Values : (list (description "Beyond Rangoon") (description "Black Hawk Down") (description "Crimson Tide") (description "Batman Begins") (description "As Good as It Gets") (description "A League of Their Own") (description "Driving Miss Daisy") (description "A World Apart") (description "Broken Arrow") (description "Black Rain")) +-Candidate Entities: Hans-Peter_Zimmer | ...And_Then_I_Wrote | Paul_Edwin_Zimmer | More_Music_for_Films | Murder,_She_Wrote_DVDs, Wrote_a_Song_for_Everyone, I_Wrote_a_Simple_Song, You_Wrote_It,_You_Watch_It + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where was alice paul born? +-Canonic Entity : alice_paul +-Target Values : (list (description "Mount Laurel Township")) +-Candidate Entities: Alice_in_Wonderland_(2010_film), Alice_(locomotive), Alice_in_Wonderland_dress + +Additional entities + +Method 1 + + Alice_in_Wonderland_(2010_film) + +Method 2 + + + +-------------- + QUESTION: what did john quincy adams died of? +-Canonic Entity : john_quincy_adams_ii +-Target Values : (list (description "Cerebral hemorrhage")) +-Candidate Entities: John_Quincy_Adams_Tower, Joseph_Quincy_Adams,_Jr., John_Quincy_Adams_and_Elizabeth_Young_House | John_Adams_Birthplace, Mount_Quincy_Adams_(Fairweather_Range) + +Additional entities + +Method 1 + + Joseph_Quincy_Adams,_Jr. + + John_Adams_Birthplace + +Method 2 + + John_Adams_Birthplace + + + +-------------- + QUESTION: what is means testing medicare? +-Canonic Entity : medicare_(australia) +-Target Values : (list (description "Centers for Medicare and Medicaid Services")) +-Candidate Entities: Medicare_(United_States), Medicare, Medicare_(Canada), Themis_Medicare, Medicare_Prescription_Drug,_Improvement,_and_Modernization_Act, Medicare_Rights_Center, Father_of_medicare | Parental_testing, VLF_cable_testing, Pair_testing, Non-regression_testing, Functional_testing + +Additional entities + +Method 1 + + Medicare_(United_States) + +Method 2 + + Medicare_(United_States) + + + +-------------- + QUESTION: who did juan ponce de leon mary? +-Canonic Entity : juan_ponce_de_león +-Target Values : (list (description "Leonor de León")) +-Candidate Entities: + + + +-------------- + QUESTION: what time zone in the uk? +-Canonic Entity : central_time_zone +-Target Values : (list (description "Greenwich Mean Time") (description UTC±00:00)) +-Candidate Entities: Pacific_Time_Zone, Time_Zone_(video_game), Mountain_Time_Zone, Time_zone, Eastern_Time_Zone, Iran_Standard_Time, Time_UK_(band), Chamorro_Time_Zone, Time_in_Venezuela, Time_in_Saskatchewan, Bhutan_Time, Time_Zone_(band), Krasnoyarsk_Time | In_the_Zone_(The_Outer_Limits), Time_in_Colombia | Philippine_Standard_Time, Daylight_saving_time, Time_in_the_United_States + +Additional entities + +Method 1 + + Daylight_saving_time + +Method 2 + + Time_in_Colombia + + Time_in_the_United_States + + Mountain_Time_Zone + + + +-------------- + QUESTION: what is the political system in italy? +-Canonic Entity : political_appointments_system_in_hong_kong +-Target Values : (list (description "Constitutional republic") (description "Parliamentary republic") (description "Unitary state")) +-Candidate Entities: + + + +-------------- + QUESTION: who is the leader of france 2012? +-Canonic Entity : leader_price +-Target Values : (list (description "Nicolas Sarkozy")) +-Candidate Entities: The_Leader_(Allahabad_newspaper), Leader_(comics), Louisville_Leader + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who is raquel welch's daughter? +-Canonic Entity : raquel!_(tv_program) +-Target Values : (list (description "Tahnee Welch")) +-Candidate Entities: Raquel_Welch, Raquel_Argandoña | Daughter_of_the_Mountains, Gunnar's_Daughter, The_Best_of_Farmer's_Daughter, The_Farmer's_Daughter_(video_game), The_Pharaoh's_Daughter + +Additional entities + +Method 1 + + Raquel_Welch + +Method 2 + + Raquel_Welch + + + +-------------- + QUESTION: what kind of art did leonardo da vinci produce? +-Canonic Entity : cultural_references_to_leonardo_da_vinci +-Target Values : (list (description Sculpture) (description Painting) (description Drawing)) +-Candidate Entities: + + + +-------------- + QUESTION: what does the zambezi river flow into? +-Canonic Entity : zambezi +-Target Values : (list (description Namibia)) +-Candidate Entities: Watching_the_River_Flow, Flow_(video_game) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what states does the connecticut river flow through? +-Canonic Entity : watching_the_river_flow +-Target Values : (list (description Vermont) (description Connecticut) (description "New Hampshire") (description Massachusetts)) +-Candidate Entities: Connecticut_River | Flow_(video_game) | Deep_River,_Connecticut + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what money is used in the maldives? +-Canonic Entity : maldives +-Target Values : (list (description "Maldivian rufiyaa")) +-Candidate Entities: Demand_for_money, The_Future_of_Money + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what is anderson cooper? +-Canonic Entity : anderson_cooper +-Target Values : (list (description CNN)) +-Candidate Entities: The_Cooper_Brothers, COOPER_(artist) | Edmund_E._Anderson + +Additional entities + +Method 1 + + COOPER_(artist) + +Method 2 + + + +-------------- + QUESTION: where does mike leach coach? +-Canonic Entity : mike_leach_(coach) +-Target Values : (list (description "Washington State Cougars football")) +-Candidate Entities: + + + +-------------- + QUESTION: what is the zip code of new york city? +-Canonic Entity : zip_code +-Target Values : (list (description 10004) (description 10005) (description 10006) (description 10007) (description 10001) (description 10002) (description 10003) (description 10009) (description 10013) (description 10012)) +-Candidate Entities: Zip_City,_Alabama, Zip_the_Pinhead | New_York_City | Zip | New_City,_New_York | Zip_(file_format) | New_York_City_in_the_American_Civil_War | Zip_(airline) + +Additional entities + +Method 1 + + New_City,_New_York + + New_York_City + +Method 2 + + New_York_City_in_the_American_Civil_War + + Zip_City,_Alabama + + New_City,_New_York + + New_York_City + + + +-------------- + QUESTION: what condition does michael j fox have? +-Canonic Entity : michael_j._fox +-Target Values : (list (description "Parkinson's disease")) +-Candidate Entities: Michael_A._Fox, Fox_(Finland), Fox_Broadcasting_Company, Fox_(Spain), Fox_(Turkey), Michael_Fox_(lawyer), R._M._Fox, Fox_(Greece), Michael_Fox_(American_actor) | Abbe_sine_condition | Michael_Fox | Hölder_condition, Weierstrass–Erdmann_condition, Legendre–Clebsch_condition, Hölder_condition, Energy_condition + +Additional entities + +Method 1 + + Michael_Fox + + Fox_Broadcasting_Company + +Method 2 + + Fox_Broadcasting_Company + + + +-------------- + QUESTION: where did jrr tolkien live? +-Canonic Entity : j._r._r._tolkien +-Target Values : (list (description "United Kingdom")) +-Candidate Entities: The_Tolkien_Ensemble, The_Tolkien_Trust, J.R._Tolkien_(schooner), Tolkien_Reading_Day + +Additional entities + +Method 1 + + The_Tolkien_Ensemble + +Method 2 + + The_Tolkien_Ensemble + + + +-------------- + QUESTION: what are the major languages of italy? +-Canonic Entity : languages_of_italy +-Target Values : (list (description "Albanian language") (description "Austrian German") (description "Esperanto Language") (description "Italian Language") (description "Occitan language")) +-Candidate Entities: Italy | Major_(manga) + +Additional entities + +Method 1 + + Major_(manga) + + Italy + +Method 2 + + Italy + + + +-------------- + QUESTION: what to do in panama city beach fl? +-Canonic Entity : panama_city_beach,_florida +-Target Values : (list (description "Thunder Beach Motorcycle Rally") (description "Club La Vela") (description "Man in the Sea Museum") (description "Camp Helen State Park") (description "Pier Park") (description "Shipwreck Island") (description "Latimer Cabin") (description "St. Andrews State Park") (description "Miracle Strip at Pier Park")) +-Candidate Entities: Panama_City,_Florida, Florida_State_University_Panama_City, Panama_City, Panama_City_Beach_Pirates + +Additional entities + +Method 1 + + Panama_City,_Florida + +Method 2 + + Panama_City,_Florida + + + +-------------- + QUESTION: what is currency in dominican republic? +-Canonic Entity : dominican_republic_cuisine +-Target Values : (list (description "Dominican peso")) +-Candidate Entities: + + + +-------------- + QUESTION: where is san miguel mexico on map? +-Canonic Entity : san_miguel_amatlán +-Target Values : (list (description Guanajuato) (description Mexico)) +-Candidate Entities: San_Miguel_Totocuitlapilco, San_Miguel_Coatlán, San_Miguel_Amatitlán, San_Miguel_Tecomatlán, San_Miguel_Tlacotepec, San_Miguel,_El_Salvador, San_Miguel_de_Allende, San_Miguel_Zinacantepec, San_Miguel_de_Cozumel, San_Miguel_Totolapan, San_Miguel,_Bolívar, San_Miguel_Department_(El_Salvador), San_Miguel_Brewery, Club_Atlético_San_Miguel, San_Miguel_el_Alto, San_Miguel,_Putumayo, San_Miguel_Achiutla, San_Miguel_Piedras_Mixtec, San_Miguel_Tlacamama | Map_(band), Waldseemüller_map, Madaba_Map, The_National_Map, Caverio_map + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where does the tsunami happened in japan? +-Canonic Entity : 2004_indian_ocean_earthquake_and_tsunami +-Target Values : (list (description Japan)) +-Candidate Entities: Tsunami + +Additional entities + +Method 1 + + Tsunami + +Method 2 + + Tsunami + + + +-------------- + QUESTION: where are the great pyramid of giza located? +-Canonic Entity : great_pyramid_of_giza +-Target Values : (list (description "Cairo Metro")) +-Candidate Entities: Giza, Giza_Necropolis | Pyramid_Arena, Bent_Pyramid, Pyramid | Protocol_for_the_Suppression_of_Unlawful_Acts_against_the_Safety_of_Fixed_Platforms_Located_on_the_Continental_Shelf + +Additional entities + +Method 1 + + Pyramid + +Method 2 + + Pyramid + + Giza + + + +-------------- + QUESTION: what was liam neeson's character in star wars? +-Canonic Entity : star_wars +-Target Values : (list (description "Qui-Gon Jinn")) +-Candidate Entities: Liam_Neeson | Clone_Wars_Adventures + +Additional entities + +Method 1 + + Clone_Wars_Adventures + + Liam_Neeson + +Method 2 + + Clone_Wars_Adventures + + Liam_Neeson + + + +-------------- + QUESTION: who plays the voice of lois griffin? +-Canonic Entity : lois_griffin +-Target Values : (list (description "Alex Borstein")) +-Candidate Entities: Stewie_Kills_Lois_and_Lois_Kills_Stewie, Lois_Maffeo | The_Griffin_Family_History + +Additional entities + +Method 1 + + The_Griffin_Family_History + + Stewie_Kills_Lois_and_Lois_Kills_Stewie + +Method 2 + + The_Griffin_Family_History + + Stewie_Kills_Lois_and_Lois_Kills_Stewie + + + +-------------- + QUESTION: what team does sergio aguero play for? +-Canonic Entity : sergio_agüero +-Target Values : (list (description "Argentina national football team")) +-Candidate Entities: Play_On!, UEFA_Respect_Fair_Play_ranking + +Additional entities + +Method 1 + + UEFA_Respect_Fair_Play_ranking + +Method 2 + + UEFA_Respect_Fair_Play_ranking + + + +-------------- + QUESTION: what is the capital of georgia? +-Canonic Entity : georgia_(country) +-Target Values : (list (description Atlanta)) +-Candidate Entities: Capital_(radio_network), Capital_(economics) | University_of_Georgia, Armenians_in_Georgia + +Additional entities + +Method 1 + + Armenians_in_Georgia + +Method 2 + + Capital_(economics) + + Armenians_in_Georgia + + + +-------------- + QUESTION: when did they stop making ford rangers? +-Canonic Entity : rangers_f.c. +-Target Values : (list (description "2011 Ford Ranger")) +-Candidate Entities: Shared_decision_making + + + +-------------- + QUESTION: what color is miley cyrus red hair? +-Canonic Entity : miley_cyrus +-Target Values : (list (description therichest.org)) +-Candidate Entities: Human_hair_color, Red_hair, Artificial_hair_integrations + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who is the present chief justice of the u.s. supreme court? +-Canonic Entity : chief_justice_of_the_supreme_court_of_the_philippines +-Target Values : (list (description "John Roberts")) +-Candidate Entities: + + + +-------------- + QUESTION: who is susan st james? +-Canonic Entity : 2011_são_tomé_and_principe_championship +-Target Values : (list (description Actor)) +-Candidate Entities: Susan_Saint_James, Susan_Carroll, Susan_Moody, Susan_Pevensie, Susan_Gelman + + + +-------------- + QUESTION: what is chris paul's son name? +-Canonic Entity : st_paul's_cathedral +-Target Values : (list (description "Christopher Emmanuel Paul II")) +-Candidate Entities: + + + +-------------- + QUESTION: what did einstein invent? +-Canonic Entity : einstein_(us-cert_program) +-Target Values : (list (description "Einstein refrigerator")) +-Candidate Entities: Invent_This!, First_to_file_and_first_to_invent, We_Didn't_Invent_the_Remix, Invent_Now_America + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who does josh hutcherson play in the hunger games? +-Canonic Entity : josh_hutcherson +-Target Values : (list (description "Peeta Mellark")) +-Candidate Entities: The_Hunger_Games_trilogy, The_Hunger_Games_(film_series), The_Hunger_Games:_Mockingjay_–_Part_1, The_Hunger_Games_(film), The_Hunger_Games, The_Hunger_Games:_Catching_Fire, The_Hunger_Games_universe, The_Hunger_Pains, The_Hunger_Games:_Mockingjay_–_Part_2, List_of_The_Hunger_Games_characters, Hunger_(band) | Drake_&_Josh | The_Hunger_March | Josh_Joplin_Group | Hunger_(2009_film) + +Additional entities + +Method 1 + + The_Hunger_Games_(film) + +Method 2 + + The_Hunger_Games:_Catching_Fire + + + +-------------- + QUESTION: where to eat in miami florida? +-Canonic Entity : eat_this,_not_that +-Target Values : (list (description "S & S Sandwich Shop")) +-Candidate Entities: Florida_State–Miami_football_rivalry | Miami | Eat_(restaurant) | North_Miami,_Florida, South_Miami,_Florida, Miami_Gardens,_Florida, Miami_Shores,_Florida, Miami_Springs,_Florida, Miami_Lakes,_Florida, Miami_Beach,_Florida, West_Miami,_Florida, Miami-Dade_County,_Florida, North_Miami_Beach,_Florida + +Additional entities + +Method 1 + + Miami + +Method 2 + + + +-------------- + QUESTION: what is the state flag of colorado called? +-Canonic Entity : flag_of_colorado +-Target Values : (list (description "Flag of Colorado")) +-Candidate Entities: Generalized_flag_variety, World_Flag, Flag_to_Flag | A_Band_Called_O | Prince's_Flag, Green_Flag_Award, The_Electric_Flag | Called_to_Serve_(song) | Red_flag_traffic_laws, Métis_flag | Colorado | The_Return_of_a_Man_Called_Horse + +Additional entities + +Method 1 + + Colorado + +Method 2 + + Colorado + + + +-------------- + QUESTION: who plays claire in lost? +-Canonic Entity : claire_littleton +-Target Values : (list (description "Hayden Panettiere")) +-Candidate Entities: Four_Major_Plays_of_Chikamatsu, Plays_Live, Smegma_Plays_Merzbow_Plays_Smegma, As_the_Music_Plays + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who are senators from new jersey? +-Canonic Entity : new_jersey_senate +-Target Values : (list (description "Joseph S. Frelinghuysen") (description "Frederick Frelinghuysen") (description "Frank Lautenberg") (description "Jon Corzine") (description "Frederick T. Frelinghuysen") (description "Jonathan Elmer") (description "Philemon Dickinson") (description "William Paterson") (description "John Rutherfurd") (description "Bob Menendez")) +-Candidate Entities: Ottawa_Senators, The_Singing_Senators | Government_of_New_Jersey, Jersey_City,_New_Jersey, North_Jersey | 2012–13_Ottawa_Senators_season | Jersey, New_Jersey_English_dialects | Senators | Lucchese_crime_family_New_Jersey_faction, Jersey_general_election,_2005 | Prince_Edward_Island_Senators + +Additional entities + +Method 1 + + Jersey_City,_New_Jersey + +Method 2 + + Jersey_City,_New_Jersey + + + +-------------- + QUESTION: who does jamie campbell bower play in breaking dawn? +-Canonic Entity : jamie_campbell_bower +-Target Values : (list (description "Anne Elizabeth Roseberry")) +-Candidate Entities: Jamie_Campbell_(documentary_filmmaker) | Breaking_Dawn, The_Twilight_Saga:_Breaking_Dawn_–_Part_2, The_Twilight_Saga:_Breaking_Dawn_–_Part_1, The_Twilight_Saga:_Breaking_Dawn_–_Part_1_(soundtrack) | Gordon_H._Bower | Jamie_Campbell-Walter, Jamie_Campbell | William_H._Bower, Michael_Ray_Bower | The_Twilight_Saga:_Breaking_Dawn_–_Part_2_(soundtrack) | Frederick_Orpen_Bower | Jamie_Campbell_(sportscaster) | Play_On! + +Additional entities + +Method 1 + + Jamie_Campbell_(documentary_filmmaker) + + The_Twilight_Saga:_Breaking_Dawn_–_Part_2_(soundtrack) + + Jamie_Campbell_(sportscaster) + + Michael_Ray_Bower + + The_Twilight_Saga:_Breaking_Dawn_–_Part_1 + +Method 2 + + The_Twilight_Saga:_Breaking_Dawn_–_Part_2_(soundtrack) + + Breaking_Dawn + + + +-------------- + QUESTION: what language do denmark? +-Canonic Entity : denmark +-Target Values : (list (description "Danish Language")) +-Candidate Entities: Language_disorder, Alagüilac_language, Language_preservation, Language_of_mathematics, Art_&_Language + +Additional entities + +Method 1 + +Method 2 + + Language_disorder + + + +-------------- + QUESTION: where marie curie come from? +-Canonic Entity : marie_curie_cancer_care +-Target Values : (list (description Warsaw)) +-Candidate Entities: Marie_Curie + + + +-------------- + QUESTION: who is facebook's founder? +-Canonic Entity : founder +-Target Values : (list (description "Mark Zuckerberg")) +-Candidate Entities: Criticism_of_Facebook + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what kind of money do you use in aruba? +-Canonic Entity : aruba +-Target Values : (list (description "Aruban florin")) +-Candidate Entities: Gifts_in_kind | Demand_for_money + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what language do people speak in costa rica? +-Canonic Entity : chinese_people_in_costa_rica +-Target Values : (list (description "Spanish Language")) +-Candidate Entities: + + + +-------------- + QUESTION: what kind of music does john mayer play? +-Canonic Entity : john_mayer +-Target Values : (list (description "Pop rock")) +-Candidate Entities: John_D._Mayer + +Additional entities + +Method 1 + + John_D._Mayer + +Method 2 + + + +-------------- + QUESTION: what is lil wayne real name? +-Canonic Entity : lil_wayne +-Target Values : (list (description "Dwayne Carter III")) +-Candidate Entities: Lil_iROCC_Williams | The_Real_Is_Back + +Additional entities + +Method 1 + + Lil_iROCC_Williams + + The_Real_Is_Back + +Method 2 + + The_Real_Is_Back + + + +-------------- + QUESTION: what is the political system of the us? +-Canonic Entity : political_appointments_system_in_hong_kong +-Target Values : (list (description "Federal republic")) +-Candidate Entities: Political_activities_of_the_Koch_brothers + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what religions are practiced in afghanistan? +-Canonic Entity : afghanistan +-Target Values : (list (description "Shia Islam") (description "Sunni Islam")) +-Candidate Entities: Christianity_and_other_religions, Indo-Greek_religions, Japanese_new_religions, Religions_of_the_ancient_Near_East, Christianity_and_other_religions, Japanese_new_religions, Religions_of_the_ancient_Near_East, Abrahamic_religions, Indo-Greek_religions + +Additional entities + +Method 1 + + Indo-Greek_religions + +Method 2 + + Indo-Greek_religions + + + +-------------- + QUESTION: where is the world series 2012 being played? +-Canonic Entity : psa_world_series_2012 +-Target Values : (list (description "The Gashouse Gang: How Dizzy Dean, Leo Durocher, Branch Rickey, Pepper Martin, and Their Colorful, Come-from-Behind Ball Club Won the World Series - and America's Heart - During the Great Depression")) +-Candidate Entities: Played_in_Britain, Twilight_as_Played_by_The_Twilight_Singers, Played + + + +-------------- + QUESTION: what kind of language do irish speak? +-Canonic Entity : speak!!! +-Target Values : (list (description Irish) (description Hiberno-English) (description "Scots Language") (description "English Language") (description "Shelta Language") (description "Ulster Scots dialects")) +-Candidate Entities: Speak_(No-Man_album) | Irish_language | Speak_(Godsmack_song), Don't_Speak, Speak_for_Yourself, I_Don't_Speak_the_Language | Old_Irish | Kind_(type_theory) | Middle_Irish, History_of_the_Irish_language, Status_of_the_Irish_language | Speak_of_the_Devil_(book), Speak_of_the_devil | Irish_language_outside_Ireland, Irish_Sign_Language + +Additional entities + +Method 1 + + Irish_language + +Method 2 + + + +-------------- + QUESTION: what cancer did audrey hepburn died of? +-Canonic Entity : audrey_hepburn +-Target Values : (list (description "Appendix cancer")) +-Candidate Entities: + + + +-------------- + QUESTION: where does allen iverson live now? +-Canonic Entity : allen_iverson +-Target Values : (list (description Hampton)) +-Candidate Entities: Kenneth_E._Iverson + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where was dwight howard born? +-Canonic Entity : dwight_howard +-Target Values : (list (description Atlanta)) +-Candidate Entities: + + + +-------------- + QUESTION: where do guyanese people live? +-Canonic Entity : indo-guyanese +-Target Values : (list (description Guyana)) +-Candidate Entities: Guyanese_people, Guyanese, Guyanese_Canadian, List_of_Guyanese_Britons, Guyanese_general_election,_2011, Guyanese_in_the_United_Kingdom | Live_(James_Taylor_album) | Guyanese_general_election,_1980 + +Additional entities + +Method 1 + + Guyanese_people + +Method 2 + + Guyanese_people + + + +-------------- + QUESTION: what timezone is texas san antonio in? +-Canonic Entity : san_antonio +-Target Values : (list (description "Central Time Zone")) +-Candidate Entities: + + + +-------------- + QUESTION: where is alexandria located? +-Canonic Entity : alexandria,_romania +-Target Values : (list (description Egypt)) +-Candidate Entities: + + + +-------------- + QUESTION: who was the fascist dictator of germany? +-Canonic Entity : dictator_novel +-Target Values : (list (description Hitler)) +-Candidate Entities: Dictator, The_Dictator_(1935_film), The_Dictator_(2012_film), William_the_Dictator, The_Great_Dictator | Fascist_Manifesto, The_Fascist, Fascist_(insult) | Germany, Apostolic_Nuncio_to_Germany, West_Germany, Albanians_in_Germany, Germany_at_the_Olympics + +Additional entities + +Method 1 + + Dictator + + Germany + +Method 2 + + Dictator + + Germany + + + +-------------- + QUESTION: what is australian currency? +-Canonic Entity : currency +-Target Values : (list (description "Australian dollar")) +-Candidate Entities: Australian_dollar + +Additional entities + +Method 1 + + Australian_dollar + +Method 2 + + Australian_dollar + + + +-------------- + QUESTION: what did michelle obama do? +-Canonic Entity : michelle_obama +-Target Values : (list (description "First Lady of the United States")) +-Candidate Entities: + + + +-------------- + QUESTION: what team does chris humphrey play for? +-Canonic Entity : chris_humphrey +-Target Values : (list (description "Motherwell F.C.")) +-Candidate Entities: + + + +-------------- + QUESTION: where do most chinese live? +-Canonic Entity : live_(james_taylor_album) +-Target Values : (list (description China)) +-Candidate Entities: Chinese_cuisine, Chinese_constellations, Chinese_language, Chinese_diaspora_in_France, Written_vernacular_Chinese + +Additional entities + +Method 1 + + Chinese_language + +Method 2 + + + +-------------- + QUESTION: when did the raiders win the superbowl? +-Canonic Entity : for_the_win +-Target Values : (list (description "Super Bowl XV")) +-Candidate Entities: WIN_(TV_station) | Oakland_Raiders + +Additional entities + +Method 1 + + Oakland_Raiders + +Method 2 + + + +-------------- + QUESTION: where is the euro used? +-Canonic Entity : latvia_and_the_euro +-Target Values : (list (description Italy) (description Portugal) (description Finland) (description Luxembourg) (description France) (description Slovenia) (description Austria) (description Germany) (description Greece) (description Spain)) +-Candidate Entities: Euro_Plus_Pact, Sammarinese_euro_coins, Euro, 5_euro_note, UEFA_Euro_2008, Slovak_euro_coins, 1_cent_euro_coin, 1_euro_coin, 2_cent_euro_coin, 2_euro_coin, 10_cent_euro_coin, 5_cent_euro_coin, UEFA_Euro_2008_(video_game), Euro_Stoxx_50 + + + +-------------- + QUESTION: how rich is the roman catholic church? +-Canonic Entity : catholic_church +-Target Values : (list (description Catholicism)) +-Candidate Entities: Church_of_the_Ascension,_Roman_Catholic_(Manhattan), Roman_Catholic_(term) | Rich_Valley,_Virginia, John_Rich, Rishi_Rich, Tony_Rich, Charles_C._Rich + +Additional entities + +Method 1 + + Roman_Catholic_(term) + +Method 2 + + Charles_C._Rich + + Roman_Catholic_(term) + + + +-------------- + QUESTION: what year is it going to be on the jewish calendar? +-Canonic Entity : hebrew_calendar +-Target Values : (list (description "Yiddish Language")) +-Candidate Entities: Going_up_and_going_down, Going_in_Circles_(song), Going_the_Distance_(2004_film), Terry_Pratchett's_Going_Postal + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where did pixie lott go to school? +-Canonic Entity : pixie_lott +-Target Values : (list (description "Italia Conti Academy of Theatre Arts")) +-Candidate Entities: + + + +-------------- + QUESTION: what date did we invade iraq? +-Canonic Entity : outline_of_iraq +-Target Values : (list (description "2003 invasion of Iraq")) +-Candidate Entities: + + + +-------------- + QUESTION: what is the new orleans hornets new name? +-Canonic Entity : new_orleans_pelicans +-Target Values : (list (description "Charlotte Hornets")) +-Candidate Entities: 2010–11_New_Orleans_Hornets_season, 2004–05_New_Orleans_Hornets_season, 2003–04_New_Orleans_Hornets_season, 2012–13_New_Orleans_Hornets_season, 2011–12_New_Orleans_Hornets_season, Sacramento_State_Hornets_men's_basketball + +Additional entities + +Method 1 + + 2010–11_New_Orleans_Hornets_season + +Method 2 + + 2003–04_New_Orleans_Hornets_season + + + +-------------- + QUESTION: what did darry look like? +-Canonic Entity : darry_cowl +-Target Values : (list (description Male)) +-Candidate Entities: + + + +-------------- + QUESTION: who is hugh hefner dating now in 2012? +-Canonic Entity : hugh_hefner +-Target Values : (list (description "Crystal Harris")) +-Candidate Entities: Robert_A._Hefner, Hugh_M._Hefner_First_Amendment_Award, Hefner_(band), Hefner | Radiometric_dating, Dating_methodologies_in_archaeology, Dating_abuse, Teen_dating_violence, Argon–argon_dating + +Additional entities + +Method 1 + +Method 2 + + Hugh_M._Hefner_First_Amendment_Award + + + +-------------- + QUESTION: what do the buddha believe in? +-Canonic Entity : buddhahood +-Target Values : (list (description Buddhism)) +-Candidate Entities: Buddha_images_in_Thailand, Buddha_(album) + +Additional entities + +Method 1 + + Buddha_images_in_Thailand + +Method 2 + + Buddha_images_in_Thailand + + + +-------------- + QUESTION: when did braves win the world series? +-Canonic Entity : atlanta_braves +-Target Values : (list (description "1995 World Series")) +-Candidate Entities: + + + +-------------- + QUESTION: what is the name of walt disney's son? +-Canonic Entity : walt_disney's_comics_and_stories +-Target Values : (list (description "Roy O. Disney")) +-Candidate Entities: Walt_Disney_anthology_television_series, Walt_Disney + +Additional entities + +Method 1 + + Walt_Disney + +Method 2 + + Walt_Disney + + + +-------------- + QUESTION: what are some sights to see in rome? +-Canonic Entity : rome,_oregon +-Target Values : (list (description "Sistine Chapel") (description "Piazza Navona") (description "Roman Forum") (description "Baths of Caracalla") (description "Castel Sant'Angelo") (description "Bocca della Verità") (description Pantheon) (description "St. Peter's Basilica") (description "Raphael Rooms") (description Colosseum)) +-Candidate Entities: + + + +-------------- + QUESTION: where is jack daniels tennessee whiskey made? +-Canonic Entity : tennessee_whiskey +-Target Values : (list (description Tennessee)) +-Candidate Entities: Jack_Daniel's, Jack_Daniels, Jack_Daniels_(coach) + +Additional entities + +Method 1 + + Jack_Daniel's + +Method 2 + + Jack_Daniel's + + + +-------------- + QUESTION: what is the battle of antietam? +-Canonic Entity : battle_of_antietam +-Target Values : (list (description "Maryland Campaign") (description "American Civil War")) +-Candidate Entities: + + + +-------------- + QUESTION: what time zone is it in london england? +-Canonic Entity : central_time_zone +-Target Values : (list (description "Greenwich Mean Time")) +-Candidate Entities: Pacific_Time_Zone | Greater_London, London | Time_Zone_(video_game), Mountain_Time_Zone, Time_zone, Eastern_Time_Zone | Live_at_the_O2_London,_England | Iran_Standard_Time, Chamorro_Time_Zone, Time_in_Saskatchewan | City_of_London | Bhutan_Time | London_low_emission_zone | Krasnoyarsk_Time, Time_in_Venezuela, Time_Zone_(band) + +Additional entities + +Method 1 + + Iran_Standard_Time + +Method 2 + + London + + Bhutan_Time + + Chamorro_Time_Zone + + Time_in_Venezuela + + Pacific_Time_Zone + + Mountain_Time_Zone + + + +-------------- + QUESTION: who was governor of texas in 2003? +-Canonic Entity : lieutenant_governor_of_texas +-Target Values : (list (description "Rick Perry")) +-Candidate Entities: 2003_Texas_redistricting | Governor_(United_States) | The_Texas_Chainsaw_Massacre_(2003_film), Texas_Military_Forces | Nuevo_León_state_election,_2003 + +Additional entities + +Method 1 + + 2003_Texas_redistricting + + Governor_(United_States) + +Method 2 + + Texas_Military_Forces + + 2003_Texas_redistricting + + Governor_(United_States) + + + +-------------- + QUESTION: what is yale university mascot? +-Canonic Entity : yale_university +-Target Values : (list (description "Handsome Dan")) +-Candidate Entities: Yale_Bulldogs_football + +Additional entities + +Method 1 + + Yale_Bulldogs_football + +Method 2 + + Yale_Bulldogs_football + + + +-------------- + QUESTION: what is the currency used in tunisia? +-Canonic Entity : tunisia +-Target Values : (list (description "Tunisian dinar")) +-Candidate Entities: Currency, Currency_Museum_of_the_Bank_of_Japan, Currency_(lads_and_lasses) | Abu_Osama_Al_Tunisi, Al_Tunisi + +Additional entities + +Method 1 + + Currency + +Method 2 + + Al_Tunisi + + Currency + + + +-------------- + QUESTION: what language group does polish belong to? +-Canonic Entity : polish_language +-Target Values : (list (description "Lechitic languages")) +-Candidate Entities: Dialects_of_Polish | You_Belong_to_My_Heart, BeLonG_To, Belong_(album), Belong_(band), Loving_You_Is_Where_I_Belong | The_Polish_Ambassador + +Additional entities + +Method 1 + + Dialects_of_Polish + +Method 2 + + Dialects_of_Polish + + + +-------------- + QUESTION: what is the name of the new orleans saints football stadium? +-Canonic Entity : new_orleans_saints +-Target Values : (list (description "Mercedes-Benz Superdome")) +-Candidate Entities: Northern_Saints_Football_Club, Bill_Snyder_Family_Football_Stadium | Sports_in_New_Orleans + +Additional entities + +Method 1 + + Bill_Snyder_Family_Football_Stadium + + Sports_in_New_Orleans + +Method 2 + + Sports_in_New_Orleans + + Bill_Snyder_Family_Football_Stadium + + + +-------------- + QUESTION: what are five countries that border france? +-Canonic Entity : finnish–swedish_border +-Target Values : (list (description Italy) (description Monaco) (description Luxembourg) (description Andorra) (description Switzerland) (description Germany) (description "Bay of Biscay") (description Belgium) (description Piedmont) (description Spain)) +-Candidate Entities: Indonesia–Thailand_border, Indonesia–Singapore_border, Norway–Russia_border, Indonesia–Vietnam_border, List_of_sets_of_four_countries_that_border_one_another, Slovakia–Ukraine_border, Malaysia–Philippines_border, List_of_countries_that_border_only_one_other_country, Indonesia–Malaysia_border | Income_tax_in_European_countries | Inner_German_border, Mexico–United_States_border, Mauritania–Senegal_Border_War, Beat_the_Border, Canada–United_States_border, Brunei–Malaysia_border, Malaysia–Vietnam_border, Belgium–France_border | Heavily_indebted_poor_countries, FIBA_European_Championship_for_Small_Countries, Megadiverse_countries + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where was hockey world cup 2010 held? +-Canonic Entity : hockey_junior_world_cup +-Target Values : (list (description "The Cup")) +-Candidate Entities: 2010_4_Nations_Cup, 2010_Men's_Hockey_World_Cup, 2010_Asian_Roller_Hockey_Championship, 2010_Women's_Hockey_World_Cup | World_Cup_of_Hockey, 2009_Men's_Hockey_World_Cup_Qualifiers, 2011–12_Cornwall_Hockey_Association_Cup, 2010_O'Byrne_Cup, Hockey_Asian_Champions_Club_Cup, 2010_Malaysia_Cup, 2010_FIRS_Men's_B-Roller_Hockey_World_Cup, 2010_Korean_League_Cup, Slovenian_Ice_Hockey_Cup + +Additional entities + +Method 1 + + 2010_Men's_Hockey_World_Cup + +Method 2 + + 2010_Men's_Hockey_World_Cup + + + +-------------- + QUESTION: where did kaiser wilhelm fled to? +-Canonic Entity : kaiser-class_ocean_liner +-Target Values : (list (description Doorn)) +-Candidate Entities: Kaiser_Wilhelm_Society, Kaiser_Wilhelm_Memorial_Church, Wilhelm_II,_German_Emperor, Kaiser_Wilhelm, National_Kaiser_Wilhelm_Monument + +Additional entities + +Method 1 + + Wilhelm_II,_German_Emperor + +Method 2 + + Wilhelm_II,_German_Emperor + + + +-------------- + QUESTION: when did yuvraj made his odi debut? +-Canonic Entity : yuvraj +-Target Values : (list (description 10/3/2000)) +-Candidate Entities: Debut_(Björk_album) | ODI, List_of_Jamaica_women_ODI_cricketers | Filmfare_Award_for_Best_Female_Debut + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what type of music was scott joplin noted for? +-Canonic Entity : scott_joplin_house_state_historic_site +-Target Values : (list (description Ragtime)) +-Candidate Entities: Scott_Joplin + +Additional entities + +Method 1 + + Scott_Joplin + +Method 2 + + Scott_Joplin + + + +-------------- + QUESTION: where did sergio romo go to college? +-Canonic Entity : sergio_romo +-Target Values : (list (description "University of North Alabama")) +-Candidate Entities: Romo, Carmen_Romo_Sepúlveda, Romo_(disambiguation) | Sergio_Osmeña | Burnley_College, Clydebank_College, Darlington_College, Kilgore_College, Gorseinon_College + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what happened to peter parker's uncle? +-Canonic Entity : uncle_ben +-Target Values : (list (description "Marvel Comics")) +-Candidate Entities: How_It_Happened, Whatever_Happened_to_Corey_Haim?, Whatever_Happened_to_Slade, It_Happened_on_Fifth_Avenue + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where is adam smith from? +-Canonic Entity : adam_smith_chair_of_political_economy +-Target Values : (list (description Kirkcaldy)) +-Candidate Entities: Adam_in_Islam + + + +-------------- + QUESTION: who became president after harding died? +-Canonic Entity : warren_g._harding +-Target Values : (list (description "Calvin Coolidge")) +-Candidate Entities: Harding_Home, Edwin_F._Harding, Ralph_R._Harding, John_Harding_(President_of_Magdalen) + +Additional entities + +Method 1 + + Harding_Home + +Method 2 + + Harding_Home + + + +-------------- + QUESTION: in what city did machiavelli live? +-Canonic Entity : machiavelli_(italian_card_game) +-Target Values : (list (description Florence)) +-Candidate Entities: Timeline_of_Niccolò_Machiavelli | Live_(City_and_Colour_album), Soulfully_Live_in_the_City_of_Angels, Monty_Python_Live_at_City_Center | Live...in_the_Heart_of_the_City, Old_Live_Oak_City_Hall | The_New_Machiavelli | Live_Radio_City_Music_Hall_2003 | Machiavelli_as_a_dramatist, The_Dialogue_in_Hell_Between_Machiavelli_and_Montesquieu + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what illnesses did george washington have? +-Canonic Entity : george_washington_university +-Target Values : (list (description Malaria) (description Smallpox) (description Tuberculosis)) +-Candidate Entities: SS_George_Washington, USS_George_Washington_(SSBN-598) | The_Spa_of_Embarrassing_Illnesses | George_Washington_Memorial_Park_(Paramus,_New_Jersey), George_Washington_Hotel_(New_York_City), George,_Washington, George_Washington_Masonic_National_Memorial, George_Washington_Community_High_School, Presidency_of_George_Washington, George_Washington_Inaugural_Bible, George_Washington | George_W._Kirchwey, George_Washington_Crile | Washington_Duke + +Additional entities + +Method 1 + + George_Washington + +Method 2 + + George_Washington + + + +-------------- + QUESTION: where is north port florida located? +-Canonic Entity : north_port,_florida +-Target Values : (list (description "Sarasota County") (description "United States of America") (description Florida)) +-Candidate Entities: Port_Mayaca,_Florida, Port_Tampa_(neighborhood), Port_Salerno,_Florida, Port_Leon,_Florida, Port_Charlotte,_Florida, Port_St._John,_Florida, Port_LaBelle,_Florida, Port_St._Lucie,_Florida, Port_St._Joe,_Florida, Port_Richey,_Florida, New_Port_Richey,_Florida, Port_Orange,_Florida, Port_Sutton,_Florida + +Additional entities + +Method 1 + + Port_St._Lucie,_Florida + +Method 2 + + Port_Charlotte,_Florida + + + +-------------- + QUESTION: who is jennifer lawrence boyfriend 2012? +-Canonic Entity : jennifer_lawrence +-Target Values : (list (description "Nicholas Hoult")) +-Candidate Entities: Boyfriend_(band), We_Are_Boyfriend, Boyfriend_(Boyfriend_song), Boyfriend_(Justin_Bieber_song), Boyfriend_(fashion), Boyfriend_(Big_Time_Rush_song), Boyfriend, Boyfriend_(Miki_Fujimoto_song), Boyfriend_No._2 + +Additional entities + +Method 1 + + Boyfriend_(Justin_Bieber_song) + +Method 2 + + Boyfriend_(Justin_Bieber_song) + + + +-------------- + QUESTION: who was the voice of kitt? +-Canonic Entity : kitt +-Target Values : (list (description "William Daniels")) +-Candidate Entities: Voice_(2AM_album), Voice_(Emi_Hinouchi_album), The_Voice_(Mike_Jones_album), The_Voice_(Bible_translation), The_Voice_(2010_film), The_Voice_(U.S._TV_series) + +Additional entities + +Method 1 + + The_Voice_(U.S._TV_series) + +Method 2 + + + +-------------- + QUESTION: who is the speaker of the house of representatives currently? +-Canonic Entity : speaker_(politics) +-Target Values : (list (description "Nancy Pelosi")) +-Candidate Entities: Pennsylvania_House_of_Representatives, Speaker_of_the_United_States_House_of_Representatives, Speaker_of_the_House_of_Representatives_of_the_Philippines, Speaker_of_the_Australian_House_of_Representatives, House_of_Representatives_of_the_Philippines, Speaker_of_the_Louisiana_House_of_Representatives, List_of_Speakers_of_the_House_of_Representatives_of_Grenada, Speaker_of_the_House_of_Representatives_of_Puerto_Rico, Zanzibar_House_of_Representatives, Speaker_of_the_Pennsylvania_House_of_Representatives, Speaker_of_the_North_Carolina_House_of_Representatives, Speaker_pro_tempore_of_the_House_of_Representatives_of_Puerto_Rico, Speaker_of_the_House_of_Representatives, House_of_Representatives_(Ceylon), Speaker_of_the_House_of_Representatives_of_Nigeria, Speaker_of_the_National_Assembly_of_Kenya, Speaker_of_the_Oklahoma_House_of_Representatives, Speaker_of_the_House_of_Representatives_of_Fiji, Speaker_of_the_Hawaii_House_of_Representatives | Currently_active_military_equipment_by_country, List_of_electric_cars_currently_available, List_of_currently_active_Russian_military_helicopters, List_of_currently_active_German_military_helicopters, List_of_currently_active_German_military_aircraft + +Additional entities + +Method 1 + + List_of_electric_cars_currently_available + + Speaker_of_the_House_of_Representatives + +Method 2 + + Speaker_of_the_House_of_Representatives + + + +-------------- + QUESTION: when did sean murray first appear on ncis? +-Canonic Entity : sean_murray_(actor) +-Target Values : (list (description 2003)) +-Candidate Entities: NCIS_(TV_series), NCIS_(soundtrack), NCIS_(season_2), NCIS_(season_4), NCIS_(season_6) | Appear | NCIS_(season_7), NCIS_(season_11), NCIS_(season_1), NCIS_(season_3), NCIS_(season_5), NCIS_(season_8), NCIS_(season_9), NCIS_(season_10), NCIS + +Additional entities + +Method 1 + + NCIS_(season_3) + + NCIS_(TV_series) + +Method 2 + + NCIS_(season_3) + + NCIS_(TV_series) + + + +-------------- + QUESTION: who is abraham maslow? +-Canonic Entity : abraham_maslow +-Target Values : (list (description Psychologist)) +-Candidate Entities: Abraham + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where did the cuban missile crisis happen? +-Canonic Entity : cuban_missile_crisis +-Target Values : (list (description "Cuba Island")) +-Candidate Entities: + + + +-------------- + QUESTION: what is benedict arnold famous for? +-Canonic Entity : benedict_arnold_(governor) +-Target Values : (list (description Traitor)) +-Candidate Entities: + + + +-------------- + QUESTION: where is the original mona lisa? +-Canonic Entity : mona_lisa_replicas_and_reinterpretations +-Target Values : (list (description Louvre)) +-Candidate Entities: + + + +-------------- + QUESTION: what is jill wagner on wipeout? +-Canonic Entity : jill_wagner +-Target Values : (list (description Him/Herself)) +-Candidate Entities: Wipeout_(2008_U.S._game_show), Wipeout_(ride), Wipeout_(season_6), Wipeout_(video_game), Wipeout_(series), Wipeout_(1988_U.S._game_show), Wipeout_2097:_The_Soundtrack, Wipeout_Québec + +Additional entities + +Method 1 + + Wipeout_(2008_U.S._game_show) + +Method 2 + + Wipeout_(2008_U.S._game_show) + + + +-------------- + QUESTION: what type of language does peru speak? +-Canonic Entity : speak!!! +-Target Values : (list (description "Omagua Language") (description "Spanish Language") (description "Waorani Language") (description Quechua) (description "Puquina Language") (description "Aymara language")) +-Candidate Entities: Speak_(No-Man_album), Speak_for_Yourself, I_Don't_Speak_the_Language, Speak_(Godsmack_song) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where is port lavaca tx? +-Canonic Entity : port_lavaca,_texas +-Target Values : (list (description "United States of America") (description Texas) (description "Calhoun County")) +-Candidate Entities: Port_of_Port_Lavaca_–_Point_Comfort + +Additional entities + +Method 1 + + Port_of_Port_Lavaca_–_Point_Comfort + +Method 2 + + Port_of_Port_Lavaca_–_Point_Comfort + + + +-------------- + QUESTION: which team does ronaldinho play for 2013? +-Canonic Entity : ronaldinho +-Target Values : (list (description "Brazil national football team")) +-Candidate Entities: 2013_Conference_Premier_play-off_Final + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what kind of books does nicholas sparks wrote? +-Canonic Entity : nicholas_sparks +-Target Values : (list (description "Das Lächeln der Sterne.") (description "Weg Der Traume") (description "Three weeks with my brother") (description "Dear John") (description "A bend in the road") (description "Weg der Träume.") (description "Une bouteille à la mer") (description "A Tout Jamais") (description "At first sight") (description "The Choice")) +-Candidate Entities: Sparks_(band) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what happened to the people in chernobyl? +-Canonic Entity : chernobyl_disaster +-Target Values : (list (description "Nuclear accident") (description "Industrial disaster")) +-Candidate Entities: Chernobyl, Chernobyl_(Hasidic_dynasty), Chernobyl_Children_International, Aaron_Twersky_of_Chernobyl, Chernobyl_Nuclear_Power_Plant, Children_of_Chernobyl_Benefit_Concert, Chernobyl_Exclusion_Zone, Chernobyl_Forum, Comparison_of_Chernobyl_and_other_radioactivity_releases | How_It_Happened | Chernobyl_Shelter_Fund | Whatever_Happened_to_Corey_Haim?, Whatever_Happened_to_Slade + +Additional entities + +Method 1 + + Chernobyl_Shelter_Fund + + Chernobyl + +Method 2 + + Chernobyl_Shelter_Fund + + Chernobyl_Nuclear_Power_Plant + + + +-------------- + QUESTION: what countries has spanish as their official language? +-Canonic Entity : spanish_language +-Target Values : (list (description Honduras) (description Uruguay) (description "El Salvador") (description Panama) (description "Equatorial Guinea") (description Andorra) (description Guatemala) (description "Puerto Rico") (description Paraguay) (description Belize)) +-Candidate Entities: Official_bilingualism_in_Canada | Portuguese-speaking_African_countries + +Additional entities + +Method 1 + + Portuguese-speaking_African_countries + + Official_bilingualism_in_Canada + +Method 2 + + Official_bilingualism_in_Canada + + Portuguese-speaking_African_countries + + + +-------------- + QUESTION: who was the communist dictator of north korea? +-Canonic Entity : dictator_novel +-Target Values : (list (description "Kim Jong-il")) +-Candidate Entities: Communism_in_Korea, Iran–North_Korea_relations, North_Korea–South_Korea_relations, Korean_War_POWs_detained_in_North_Korea, Mongolia–North_Korea_relations | North_Korea–Russia_relations | Dictator | North_Korea, Workers'_Party_of_North_Korea, Communist_Party_of_Korea, North_Korea–South_Korea_football_rivalry | The_Dictator_(1935_film) | Australia–North_Korea_relations, United_States_Special_Representative_for_North_Korea_Policy, Canada–North_Korea_relations, Israel–North_Korea_relations, South–North_Pipeline_Korea + +Additional entities + +Method 1 + + Dictator + + North_Korea + +Method 2 + + Dictator + + + +-------------- + QUESTION: who was the leader of germany in wwii? +-Canonic Entity : wwii_in_hd +-Target Values : (list (description Hitler)) +-Candidate Entities: The_Leader_(Allahabad_newspaper), Leader_(comics), Louisville_Leader | Germany | Brotherly_Leader_and_Guide_of_the_Revolution, The_News_Leader | Jane's_WWII_Fighters | George_M._Leader, Leader_Price + +Additional entities + +Method 1 + + Germany + +Method 2 + + Germany + + + +-------------- + QUESTION: what business does raj kundra do? +-Canonic Entity : kundra +-Target Values : (list (description Entrepreneur) (description Businessperson) (description "Film Producer")) +-Candidate Entities: Business_communication, Beedie_School_of_Business, Business_informatics, Business_simulation, South_Florida_Business_Journal + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what movies is molly ringwald in? +-Canonic Entity : molly_ringwald +-Target Values : (list (description "Office Killer") (description "The Breakfast Club") (description "Sixteen Candles") (description "Fresh Horses") (description "Strike It Rich") (description "Betsy's Wedding") (description "Pretty in Pink") (description "Spacehunter: Adventures in the Forbidden Zone") (description "The Stand") (description Tempest)) +-Candidate Entities: The_Movies, Sky_Movies_(New_Zealand), Yahoo!_Movies, The_Movies_(band), At_the_Movies_(U.S._TV_series) + +Additional entities + +Method 1 + + At_the_Movies_(U.S._TV_series) + +Method 2 + + + +-------------- + QUESTION: what is the time zone in california called? +-Canonic Entity : central_time_zone +-Target Values : (list (description "Pacific Time Zone")) +-Candidate Entities: Pacific_Time_Zone, Mountain_Time_Zone, Time_Zone_(video_game), Time_zone, Iran_Standard_Time, Eastern_Time_Zone, Time_in_Saskatchewan, Chamorro_Time_Zone, Time_in_Venezuela, Bhutan_Time, Time_Zone_(band), Time_in_China, Krasnoyarsk_Time + +Additional entities + +Method 1 + + Pacific_Time_Zone + +Method 2 + + Mountain_Time_Zone + + + +-------------- + QUESTION: what team does drogba play for 2013? +-Canonic Entity : 2013_conference_premier_play-off_final +-Target Values : (list (description "Galatasaray S.K.")) +-Candidate Entities: 2013_Africa_Cup_of_Nations + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what did michael faraday accomplish? +-Canonic Entity : michael_faraday +-Target Values : (list (description "Experimental researches in electricity")) +-Candidate Entities: + + + +-------------- + QUESTION: what was the name of the newspaper where hemingway wrote? +-Canonic Entity : ernest_hemingway +-Target Values : (list (description "Toronto Star")) +-Candidate Entities: Michael_Palin's_Hemingway_Adventure + +Additional entities + +Method 1 + + Michael_Palin's_Hemingway_Adventure + +Method 2 + + Michael_Palin's_Hemingway_Adventure + + + +-------------- + QUESTION: who will alex smith play for in 2011? +-Canonic Entity : alex_smith +-Target Values : (list (description "San Francisco 49ers")) +-Candidate Entities: 2011_Conference_Premier_play-off_Final | Alex_Raphael_Meschini | 2011_Football_League_Championship_play-off_Final | Brit_&_Alex, Alex_Rodrigo_Dias_da_Costa | 2011_Fed_Cup_Americas_Zone_Group_I_–_Play-offs, 2011_Fed_Cup_Asia/Oceania_Zone_Group_II_–_Play-offs, 2011_Fed_Cup_Europe/Africa_Zone_Group_I_–_Play-offs, 2011_Fed_Cup_Asia/Oceania_Zone_Group_I_–_Play-offs, 2011_Fed_Cup_Americas_Zone_Group_II_–_Play-offs, 2011_Fed_Cup_Europe/Africa_Zone_Group_III_–_Play-offs + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what is the northeast of the united states? +-Canonic Entity : northeast_anti-japanese_united_army +-Target Values : (list (description Canada)) +-Candidate Entities: + + + +-------------- + QUESTION: what does the dutch word boer mean? +-Canonic Entity : boer +-Target Values : (list (description "Sofie Oosterwaal")) +-Candidate Entities: The_Word_(band), Word_list_of_the_Dutch_language, The_Word_Bible_Software + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what currency does brazil use? +-Canonic Entity : currency +-Target Values : (list (description "Brazilian real")) +-Candidate Entities: + + + +-------------- + QUESTION: what timezone does sweden have? +-Canonic Entity : å,_sweden +-Target Values : (list (description "Central European Time")) +-Candidate Entities: + + + +-------------- + QUESTION: who played lois en superman? +-Canonic Entity : lois_&_clark:_the_new_adventures_of_superman_(season_2) +-Target Values : (list (description "Dana Delany") (description "Anne Heche") (description "Kate Bosworth") (description "Amy Adams") (description "Margot Kidder")) +-Candidate Entities: Superman_(serial), Superman_(1978_film), Superman_Red/Superman_Blue | Stewie_Kills_Lois_and_Lois_Kills_Stewie | Superman, Superman_(comic_book) | Lois_Maffeo | Twilight_as_Played_by_The_Twilight_Singers, Played + + + +-------------- + QUESTION: where does the zambezi river end? +-Canonic Entity : zambezi +-Target Values : (list (description "Indian Ocean")) +-Candidate Entities: + + + +-------------- + QUESTION: what did mister rogers do before tv? +-Canonic Entity : mister_rogers'_neighborhood_(season_9) +-Target Values : (list (description "Minister of religion")) +-Candidate Entities: Fred_Rogers + +Additional entities + +Method 1 + + Fred_Rogers + +Method 2 + + + +-------------- + QUESTION: what is the money currency in switzerland? +-Canonic Entity : fiat_money +-Target Values : (list (description "Swiss franc")) +-Candidate Entities: Currency, Currency_(lads_and_lasses) + +Additional entities + +Method 1 + + Currency + +Method 2 + + Currency + + + +-------------- + QUESTION: what state did george washington live in? +-Canonic Entity : yolanda..._live_in_washington +-Target Values : (list (description Virginia)) +-Candidate Entities: George_W._Kirchwey + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where is mount vernon virginia? +-Canonic Entity : mount_vernon,_virginia +-Target Values : (list (description "Fairfax County, Virginia") (description "Washington metropolitan area")) +-Candidate Entities: Mount_Vernon,_New_York, Mount_Vernon,_Alabama, Mount_Vernon,_Wisconsin, Mount_Vernon,_Maine, Mount_Vernon,_West_Virginia, Mount_Vernon,_Kentucky, Mount_Vernon_High_School_(Alexandria,_Virginia), Mount_Vernon,_Ohio, Mount_Vernon,_Texas, Mount_Vernon,_Illinois, Mount_Vernon_City_School_District, Mount_Vernon,_Washington, Mount_Vernon,_Indiana, Mount_Vernon,_Georgia, Mount_Vernon_Nazarene_University, Mount_Vernon,_Baltimore, Mount_Vernon,_Oregon, Mount_Vernon,_Arkansas | Northern_Virginia_trolleys + +Additional entities + +Method 1 + + Mount_Vernon,_Indiana + + Northern_Virginia_trolleys + +Method 2 + + Northern_Virginia_trolleys + + + +-------------- + QUESTION: where is kia car from? +-Canonic Entity : kia_ray_(2010_concept_vehicle) +-Target Values : (list (description "South Korea")) +-Candidate Entities: + + + +-------------- + QUESTION: where did noah live before the flood? +-Canonic Entity : noah_and_the_flood_(ballet) +-Target Values : (list (description Mesopotamia)) +-Candidate Entities: Noah, Noah_Beery,_Sr. | Flood_myth, Genesis_flood_narrative, Pittsburgh_Flood_of_1936 | Noah_in_Islam, Noah_(2014_film) | Live_(James_Taylor_album), Ableton_Live, Live_Baby_Live, Live_art, Live_Box + +Additional entities + +Method 1 + + Noah_Beery,_Sr. + +Method 2 + + + +-------------- + QUESTION: when did george w bush take office? +-Canonic Entity : george_p._bush +-Target Values : (list (description "George W. Bush 2001 presidential inauguration")) +-Candidate Entities: George_W._Bush, George_H._W._Bush, Public_image_of_George_W._Bush, George_Bush_Presidential_Library, George_W._Bush_Presidential_Center, George_H._W._Bush_vomiting_incident, Fictionalized_portrayals_of_George_W._Bush, George_Bush, Presidency_of_George_W._Bush, Laura_Bush, George_Bush_(biblical_scholar), Bush_(band), Professional_life_of_George_W._Bush, Samuel_P._Bush | FICE + +Additional entities + +Method 1 + + George_W._Bush + +Method 2 + + George_H._W._Bush + + + +-------------- + QUESTION: where do the kansas city chiefs play? +-Canonic Entity : kansas_city_chiefs +-Target Values : (list (description "Kansas City")) +-Candidate Entities: + + + +-------------- + QUESTION: what countries does the mississippi river run through? +-Canonic Entity : mississippi_river +-Target Values : (list (description "United States of America")) +-Candidate Entities: Mississippi_Valley_Division + +Additional entities + +Method 1 + + Mississippi_Valley_Division + +Method 2 + + Mississippi_Valley_Division + + + +-------------- + QUESTION: in what modern country is the yucatan peninsula located? +-Canonic Entity : yucatán_peninsula +-Target Values : (list (description Mexico)) +-Candidate Entities: + + + +-------------- + QUESTION: what does starbucks sell? +-Canonic Entity : starbucks +-Target Values : (list (description "Cafe / Coffee Shop") (description "American food") (description Bakery) (description Delicatessen) (description Bagels)) +-Candidate Entities: + + + +-------------- + QUESTION: who is lincoln steffens? +-Canonic Entity : lincoln_steffens +-Target Values : (list (description Journalist)) +-Candidate Entities: Lincoln_Motor_Company + +Additional entities + +Method 1 + + Lincoln_Motor_Company + +Method 2 + + + +-------------- + QUESTION: what type of political system does iran have? +-Canonic Entity : substructural_type_system +-Target Values : (list (description "Islamic republic") (description Theocracy) (description "Unitary state")) +-Candidate Entities: Political_Appointments_System_in_Hong_Kong | Politics_of_Iran, Political_parties_in_Iran, Iran | Political_system | Type_88_tank_(China) | Judicial_system_of_Iran, Islamic_Principlism_in_Iran | Tehran_School_of_Political_Sciences | Bugatti_Type_35 | List_of_political_parties_in_Iran | Type_A_videotape + +Additional entities + +Method 1 + + Iran + +Method 2 + + + +-------------- + QUESTION: who does the voice of lois in family guy? +-Canonic Entity : lois_griffin +-Target Values : (list (description "Alex Borstein")) +-Candidate Entities: Stewie_Kills_Lois_and_Lois_Kills_Stewie | Family_Guy_(season_10), Family_Guy_(season_5), Family_Guy_(season_11), Family_Guy_Viewer_Mail_1, Family_Guy_(season_2), Family_Guy, Family_Guy_(season_6), Family_Guy_(season_1), Family_Guy_Video_Game!, Family_Guy:_It_Takes_a_Village_Idiot,_and_I_Married_One, The_Family_Guy_100th_Episode_Special, Family_Guy:_Live_in_Vegas, Family_Guy_(season_4) | Lois_Maffeo | A_Very_Special_Family_Guy_Freakin'_Christmas | Superman's_Girl_Friend,_Lois_Lane + +Additional entities + +Method 1 + + Lois_Maffeo + + A_Very_Special_Family_Guy_Freakin'_Christmas + + Stewie_Kills_Lois_and_Lois_Kills_Stewie + + Family_Guy + +Method 2 + + A_Very_Special_Family_Guy_Freakin'_Christmas + + Stewie_Kills_Lois_and_Lois_Kills_Stewie + + Family_Guy + + + +-------------- + QUESTION: what are all the movies channing tatum has been in? +-Canonic Entity : channing_tatum +-Target Values : (list (description "A Guide to Recognizing Your Saints") (description "Battle in Seattle") (description Stop-Loss) (description "Step Up") (description "Coach Carter") (description "She's the Man") (description Havoc) (description "Poor Things") (description Supercross) (description "G.I. Joe: The Rise of Cobra")) +-Candidate Entities: + + + +-------------- + QUESTION: where is the country of panama located? +-Canonic Entity : panama +-Target Values : (list (description "Central America") (description "North America") (description Americas) (description "Latin America")) +-Candidate Entities: Country_music, Country_code, Brontë_Country, Country_Hills,_Calgary + +Additional entities + +Method 1 + + Country_music + +Method 2 + + Country_music + + + +-------------- + QUESTION: what state did woodrow wilson represent? +-Canonic Entity : woodrow_wilson_awards +-Target Values : (list (description "New Jersey")) +-Candidate Entities: Woodrow_Wilson, Woodrow_Wilson_National_Fellowship_Foundation, Woodrow_Wilson_Boyhood_Home, Woodrow_Wilson_High_School_(Washington,_D.C.), Woodrow_Wilson_International_Center_for_Scholars, Woodrow_Wilson_Bridge, Woodrow_Wilson_High_School_(Beckley,_West_Virginia), Robert_Woodrow_Wilson, Mount_Woodrow_Wilson, Woodrow_W._Keeble, Woodrow_Wilson_Presidential_Library, Woodrow_W._Jones, USS_Woodrow_Wilson_(SSBN-624), Woodrow_Wilson_Bridge_(Jackson,_Mississippi), Second_inauguration_of_Woodrow_Wilson, Woodrow_M._Kroll, Thomas_Woodrow_Wilson_Boyhood_Home + +Additional entities + +Method 1 + + Woodrow_Wilson_International_Center_for_Scholars + +Method 2 + + Woodrow_Wilson_International_Center_for_Scholars + + + +-------------- + QUESTION: what hardships did teddy roosevelt overcome? +-Canonic Entity : theodore_roosevelt +-Target Values : (list (description "Cardiovascular disease")) +-Candidate Entities: The_Queen_of_Hardships + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where is university of alabama located? +-Canonic Entity : university_of_alabama_system +-Target Values : (list (description Tuscaloosa) (description Alabama) (description "United States of America")) +-Candidate Entities: Alabama_Crimson_Tide_football, Alabama_Crimson_Tide_baseball + +Additional entities + +Method 1 + + Alabama_Crimson_Tide_football + +Method 2 + + Alabama_Crimson_Tide_football + + + +-------------- + QUESTION: who was arthur miller influenced by? +-Canonic Entity : arthur_miller +-Target Values : (list (description "Henrik Ibsen")) +-Candidate Entities: Arthur_R._Miller, Arthur_Charles_Miller, Arthur_G._Miller, Arthur_L._Miller, A._M._Miller, Robert_A._Miller + +Additional entities + +Method 1 + + Arthur_R._Miller + +Method 2 + + + +-------------- + QUESTION: which countries use euro money? +-Canonic Entity : euro_money_market +-Target Values : (list (description Italy) (description Portugal) (description Finland) (description Luxembourg) (description France) (description Slovenia) (description Austria) (description Germany) (description Greece) (description Spain)) +-Candidate Entities: Latvia_and_the_euro, Lithuania_and_the_euro, Euro | Demand_for_money | 2_euro_coin, 5_euro_note, 1_cent_euro_coin, Sammarinese_euro_coins, Euro_Generals_scandal | Money | 1_euro_coin | The_Future_of_Money | Heavily_indebted_poor_countries, Income_tax_in_European_countries, FIBA_European_Championship_for_Small_Countries, Megadiverse_countries + +Additional entities + +Method 1 + + Euro + +Method 2 + + + +-------------- + QUESTION: where is el salvador located? +-Canonic Entity : university_of_el_salvador +-Target Values : (list (description Americas)) +-Candidate Entities: San_Salvador + +Additional entities + +Method 1 + + San_Salvador + +Method 2 + + San_Salvador + + + +-------------- + QUESTION: what year was kevin durant drafted? +-Canonic Entity : kevin_durant +-Target Values : (list (description "2007 NBA Draft")) +-Candidate Entities: + + + +-------------- + QUESTION: what illnesses did george washington suffer from? +-Canonic Entity : george_washington_university +-Target Values : (list (description Malaria) (description Smallpox) (description Tuberculosis)) +-Candidate Entities: SS_George_Washington, USS_George_Washington_(SSBN-598) | The_Spa_of_Embarrassing_Illnesses | Suffer_the_Children_(EP) | George_Washington_Memorial_Park_(Paramus,_New_Jersey), George_Washington, George_Washington_Hotel_(New_York_City), George,_Washington, George_Washington_Masonic_National_Memorial, George_Washington_Community_High_School | Suffer_the_Children_(song) | Presidency_of_George_Washington | Suffer_Tree, It_Serves_You_Right_to_Suffer, Cease_to_Suffer, Suffer_Well + +Additional entities + +Method 1 + + Presidency_of_George_Washington + + George_Washington + +Method 2 + + Presidency_of_George_Washington + + George_Washington + + + +-------------- + QUESTION: what are some places to visit in barcelona? +-Canonic Entity : barcelona,_anzoátegui +-Target Values : (list (description "Museu Picasso") (description "Gothic Quarter, Barcelona") (description "Park Güell") (description "La Rambla") (description "Palau de la Música Catalana") (description "Sagrada Família") (description "Plaça d'Espanya, Barcelona") (description "Barcelona Museum of Contemporary Art") (description "Casa Milà") (description "Museu Nacional d'Art de Catalunya")) +-Candidate Entities: Barcelona | Places_to_Visit + + + +-------------- + QUESTION: what happened to nina simone? +-Canonic Entity : nina_simone +-Target Values : (list (description "Breast cancer") (description Cancer)) +-Candidate Entities: Nina_at_the_Village_Gate | Simone_(actress) | How_It_Happened + +Additional entities + +Method 1 + + Simone_(actress) + + Nina_at_the_Village_Gate + +Method 2 + + Nina_at_the_Village_Gate + + Simone_(actress) + + + +-------------- + QUESTION: where is wellsville missouri? +-Canonic Entity : wellsville,_missouri +-Target Values : (list (description "United States of America") (description "Montgomery County") (description Missouri)) +-Candidate Entities: + + + +-------------- + QUESTION: who played princess leia from star wars? +-Canonic Entity : princess_leia +-Target Values : (list (description "Carrie Fisher")) +-Candidate Entities: Star_Wars, Star_Wars_Tales_Volume_3, Star_Wars_(UK_comics), Star_Wars_Pez, Star_Wars_Holiday_Special, Kinect_Star_Wars, Star_Wars_Infinities, Star_Wars_Galaxies, Star_Wars_(film), Kenner_Star_Wars_action_figures, Star_Wars_Weekends, Star_Wars_(1983_video_game), List_of_Star_Wars_books, Star_Wars_sequel_trilogy, Star_Wars:_Rebellion, Star_Wars_Detours, Star_Wars:_The_Vintage_Collection, Star_Wars_Expanded_Universe + +Additional entities + +Method 1 + + Star_Wars + +Method 2 + + Star_Wars_(film) + + + +-------------- + QUESTION: who is the current queen of australia? +-Canonic Entity : monarchy_of_australia +-Target Values : (list (description "Elizabeth II")) +-Candidate Entities: Queen_Anne_style_architecture | West_Spitsbergen_Current | Queen_Elizabeth_The_Queen_Mother, Queen_of_the_Channel, RMS_Queen_Mary, Queen_(Snow_White) | Australia | Antarctic_Circumpolar_Current | The_Queen_in_Australia, Queen_of_Hearts_(Alice's_Adventures_in_Wonderland), Queen_Street_West, Queen_(band) | Current_divider, Partial_current, Wetting_current, Swift_Current + +Additional entities + +Method 1 + + Queen_Anne_style_architecture + + Queen_(band) + + Australia + +Method 2 + + Queen_Elizabeth_The_Queen_Mother + + Australia + + + +-------------- + QUESTION: where did galileo go to school? +-Canonic Entity : galileo_academy_of_science_and_technology +-Target Values : (list (description "University of Pisa")) +-Candidate Entities: Galileo_(satellite_navigation), Galileo_(1968_film), Galileo_Magnet_High_School, Galileo_(vibration_training), Galileo_(spacecraft), Galileo_(1974_film), Galileo_(disambiguation), Galileo_(song), Galileo_(TV_series), The_Galileo_Seven + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who all was richard burton married to? +-Canonic Entity : richard_francis_burton +-Target Values : (list (description "Elizabeth Taylor") (description "Suzy Hunt") (description "Sally Burton") (description "Sybil Williams")) +-Candidate Entities: Richard_Burton, Clarence_M._Burton + +Additional entities + +Method 1 + + Richard_Burton + +Method 2 + + Richard_Burton + + + +-------------- + QUESTION: who did david villa play for? +-Canonic Entity : david_villa +-Target Values : (list (description "Spain national football team")) +-Candidate Entities: + + + +-------------- + QUESTION: what did copernicus invented? +-Canonic Entity : copernicus_(lunar_crater) +-Target Values : (list (description "Copernican heliocentrism")) +-Candidate Entities: Invented_(album) | Copernicus_(film), Copernicus_(disambiguation) | The_Man_Who_Invented_the_Computer, Nicolaus_Copernicus_Monument_in_Warsaw | Copernicus_(yacht) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what's jamaica country code? +-Canonic Entity : country_code +-Target Values : (list (description jm)) +-Candidate Entities: + + + +-------------- + QUESTION: where robert frost went to school? +-Canonic Entity : robert_i._frost +-Target Values : (list (description "Dartmouth College") (description "University of Oxford") (description "Harvard University") (description "University of Cambridge") (description "Bates College")) +-Candidate Entities: Robert_Frost, Robert_Frost_Medal + +Additional entities + +Method 1 + + Robert_Frost + +Method 2 + + + +-------------- + QUESTION: who should play harley quinn? +-Canonic Entity : harley_quinn +-Target Values : (list (description "Arleen Sorkin") (description "Mia Sara") (description "Hynden Walch")) +-Candidate Entities: Harley_Gallery_and_Foundation, Harley_Ellis_Devereaux | Seán_Quinn + +Additional entities + +Method 1 + + Seán_Quinn + +Method 2 + + + +-------------- + QUESTION: what currency should i take to dubai? +-Canonic Entity : dubai +-Target Values : (list (description "United States dollar")) +-Candidate Entities: Currency + +Additional entities + +Method 1 + + Currency + +Method 2 + + Currency + + + +-------------- + QUESTION: what county is plainfield il in? +-Canonic Entity : plainfield,_illinois +-Target Values : (list (description "Will County")) +-Candidate Entities: + + + +-------------- + QUESTION: what country is the mekong river located in? +-Canonic Entity : mekong +-Target Values : (list (description Thailand) (description Vietnam) (description Cambodia) (description Laos)) +-Candidate Entities: Disney's_River_Country | Protocol_for_the_Suppression_of_Unlawful_Acts_against_the_Safety_of_Fixed_Platforms_Located_on_the_Continental_Shelf + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who founded the sisters of saint joseph? +-Canonic Entity : sisters_of_st._joseph +-Target Values : (list (description Rachel)) +-Candidate Entities: Saint_Joseph,_Barbados, Saint_Joseph_Hospital_(Lexington,_Kentucky), Saint_Joseph + +Additional entities + +Method 1 + + Saint_Joseph + +Method 2 + + Saint_Joseph + + + +-------------- + QUESTION: who shot and killed president john f kennedy? +-Canonic Entity : assassination_of_john_f._kennedy +-Target Values : (list (description "Lee Harvey Oswald")) +-Candidate Entities: President_Kennedy_School_and_Community_College, Who_Killed_Kennedy, Jacqueline_Kennedy_Onassis, Yad_Kennedy | United_States_Congress_members_killed_or_wounded_in_office | Shot_(pellet) + +Additional entities + +Method 1 + + Jacqueline_Kennedy_Onassis + +Method 2 + + Jacqueline_Kennedy_Onassis + + + +-------------- + QUESTION: what is there to do in gatlinburg in december? +-Canonic Entity : gatlinburg,_tennessee +-Target Values : (list (description 37738)) +-Candidate Entities: + + + +-------------- + QUESTION: where does the english football team train? +-Canonic Entity : england_national_football_team +-Target Values : (list (description "the Federation of Free States")) +-Candidate Entities: The_Man_on_the_Train | English_Schools'_Football_Association, English_Football_Hall_of_Fame + +Additional entities + +Method 1 + + English_Schools'_Football_Association + +Method 2 + + English_Football_Hall_of_Fame + + + +-------------- + QUESTION: who did anne frank wrote her diary to? +-Canonic Entity : the_diary_of_a_young_girl +-Target Values : (list (description "Kitty became so idealized and started to lead her own life in the diary that it ceases to matter who is meant by 'Kitty'. The name ... is not meant to be me.")) +-Candidate Entities: Anne_no_Nikki, Anne_Frank, Anne_Frank_tree, Anne_Frank_Educational_Centre, Anne_Frank_Remembered | Murder,_She_Wrote_DVDs, Wrote_a_Song_for_Everyone, I_Wrote_a_Simple_Song, You_Wrote_It,_You_Watch_It + +Additional entities + +Method 1 + + Anne_Frank + +Method 2 + + Anne_Frank + + + +-------------- + QUESTION: who is tony romo engaged to? +-Canonic Entity : tony_romo +-Target Values : (list (description "Candice Crawford")) +-Candidate Entities: Engaged_(song) | Toribio_Romo_González, Romo, Romo_(disambiguation) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what do people in south africa speak? +-Canonic Entity : speak!!! +-Target Values : (list (description "Northern Sotho language") (description "Afrikaans Language") (description "Tswana Language") (description "Venda Language") (description "Sotho language") (description "Swati Language") (description "English Language") (description "Tsonga Language") (description "Southern Ndebele language") (description "Xhosa Language")) +-Candidate Entities: Speak_(No-Man_album) | South_Africa, Israel–South_Africa_relations | The_People_Speak_(film) | Xenophobia_in_South_Africa, Digital_divide_in_South_Africa, University_of_South_Africa, South_Africa–United_Kingdom_relations | Speak_(Godsmack_song) | Soccer_in_South_Africa, Courts_of_South_Africa, Occupy_South_Africa, Henley_Business_School_South_Africa, Political_assassinations_in_post-apartheid_South_Africa, Germany–South_Africa_relations | South_Africa–Taiwan_relations, South_African_cuisine, Monash_University,_South_Africa_campus + +Additional entities + +Method 1 + + South_Africa + +Method 2 + + + +-------------- + QUESTION: where great britain located? +-Canonic Entity : great_britain +-Target Values : (list (description Europe) (description "United Kingdom")) +-Candidate Entities: + + + +-------------- + QUESTION: what state was hillary clinton a senator for? +-Canonic Entity : hillary_rodham_clinton +-Target Values : (list (description "New York")) +-Candidate Entities: Hillary_Clinton_presidential_primary_campaign,_2008, Hillary_Clinton_presidential_campaign,_2008, Clinton | Hillary_4_U_and_Me | Clinton_Foundation | The_Truth_About_Hillary + + + +-------------- + QUESTION: what market does starbucks operate in? +-Canonic Entity : starbucks +-Target Values : (list (description "Cafe / Coffee Shop") (description "American food") (description Bakery) (description Delicatessen) (description Bagels)) +-Candidate Entities: + + + +-------------- + QUESTION: what country does nike operate in? +-Canonic Entity : nike_(mythology) +-Target Values : (list (description Earth) (description "United States of America") (description Oregon)) +-Candidate Entities: Operate | Country_music, Country_code, Alternative_country, Cross_country_running_shoe, Country_dance + +Additional entities + +Method 1 + + Country_music + +Method 2 + + + +-------------- + QUESTION: what cities are in oakland county michigan? +-Canonic Entity : oakland_county,_michigan +-Target Values : (list (description "Metro Detroit")) +-Candidate Entities: Oakland_Charter_Township,_Michigan, Oakland_County_International_Airport + +Additional entities + +Method 1 + + Oakland_Charter_Township,_Michigan + +Method 2 + + Oakland_Charter_Township,_Michigan + + + +-------------- + QUESTION: what characters does trey parker voice? +-Canonic Entity : trey_parker +-Target Values : (list (description "Eric Cartman") (description "Fosse McDonald") (description "Kenny McCormick") (description Chef) (description "Butters Stotch") (description "Mr. Garrison") (description "Kyle Broflovski") (description "Stan Marsh")) +-Candidate Entities: Trey | Doug_Parker_(voice_actor) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where will euro 2012 be? +-Canonic Entity : uefa_euro_2012 +-Target Values : (list (description Italy) (description Portugal) (description Finland) (description Luxembourg) (description France) (description Slovenia) (description Austria) (description Germany) (description Greece) (description Spain)) +-Candidate Entities: Latvia_and_the_euro, Lithuania_and_the_euro, Sammarinese_euro_coins, Euro_Plus_Pact, Euro, Romania_and_the_euro, 5_euro_note, Slovak_euro_coins + +Additional entities + +Method 1 + + Euro + +Method 2 + + Euro + + + +-------------- + QUESTION: who the voice of lois griffin? +-Canonic Entity : lois_griffin +-Target Values : (list (description "Alex Borstein")) +-Candidate Entities: Stewie_Kills_Lois_and_Lois_Kills_Stewie, Lois_Maffeo | The_Griffin_Family_History | Lois, Lois_T._Henderson | Voice_(2AM_album), Voice_acting, Share_of_voice, Voice_(Emi_Hinouchi_album), The_Voice_(Mike_Jones_album) + +Additional entities + +Method 1 + + Lois_T._Henderson + + Voice_acting + + The_Griffin_Family_History + + Stewie_Kills_Lois_and_Lois_Kills_Stewie + +Method 2 + + Voice_acting + + The_Griffin_Family_History + + Stewie_Kills_Lois_and_Lois_Kills_Stewie + + + +-------------- + QUESTION: when did the 7th harry potter book come out? +-Canonic Entity : harry_potter_(film_series) +-Target Values : (list (description "The gospel according to Harry Potter")) +-Candidate Entities: The_7th_Guest, 7th_Panzer_Division_(Wehrmacht), 7th_Battalion_(Australia) | The_Complete_Opera_Book | 7th_Level + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what is the parliament of canada called? +-Canonic Entity : procedural_officers_and_senior_officials_of_the_parliament_of_canada +-Target Values : (list (description "Parliament of Canada")) +-Candidate Entities: Parliament_Hill, 39th_Canadian_Parliament | A_Band_Called_O | Unlearned_Parliament + +Additional entities + +Method 1 + + Parliament_Hill + +Method 2 + + Parliament_Hill + + + +-------------- + QUESTION: where is south carolina located? +-Canonic Entity : university_of_south_carolina +-Target Values : (list (description "United States of America")) +-Candidate Entities: Carolina_Stadium | Protocol_for_the_Suppression_of_Unlawful_Acts_against_the_Safety_of_Fixed_Platforms_Located_on_the_Continental_Shelf + +Additional entities + +Method 1 + + Carolina_Stadium + +Method 2 + + Carolina_Stadium + + + +-------------- + QUESTION: who are paul revere's parents? +-Canonic Entity : paul_revere's_ride +-Target Values : (list (description "Deborah Hitchborn") (description "Apollos Rivoire")) +-Candidate Entities: Paul_Revere_House | My_Parents_Are_Aliens, Parents_for_Choice_in_Education, Parents_(TV_series), We_Have_Come_for_Your_Parents, Les_Parents_terribles_(film), Parents_(magazine) | Paul_Revere | Meet_the_Parents_(soundtrack) + +Additional entities + +Method 1 + + Paul_Revere_House + + Paul_Revere + +Method 2 + + Paul_Revere_House + + Paul_Revere + + + +-------------- + QUESTION: what political system does russia use? +-Canonic Entity : political_appointments_system_in_hong_kong +-Target Values : (list (description "Constitutional republic")) +-Candidate Entities: + + + +-------------- + QUESTION: what are american staffordshire terriers? +-Canonic Entity : american_staffordshire_terrier +-Target Values : (list (description Dog)) +-Candidate Entities: Staffordshire | Boston_University_Terriers_women's_ice_hockey, American_Pit_Bull_Terrier, St._Francis_Brooklyn_Terriers, St._Francis_Brooklyn_Terriers_men's_basketball, Terriers_(TV_series), Boston_University_Terriers_men's_ice_hockey, Bedlington_Terriers_F.C., Staffordshire_Terrier, St._Louis_Terriers + +Additional entities + +Method 1 + + Staffordshire + + American_Pit_Bull_Terrier + +Method 2 + + American_Pit_Bull_Terrier + + + +-------------- + QUESTION: who is the current coach of the chicago bulls? +-Canonic Entity : chicago_bulls +-Target Values : (list (description "Tom Thibodeau")) +-Candidate Entities: Bulls_(rugby_union) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what language is mainly spoken in england? +-Canonic Entity : colloquial_finnish +-Target Values : (list (description "English Language")) +-Candidate Entities: English_language_in_England | Spoken_(band), Music_and_the_Spoken_Word, Canadian_Festival_of_Spoken_Word + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what awards has morgan freeman won? +-Canonic Entity : morgan_freeman +-Target Values : (list (description "Golden Icon") (description "National Board of Review Award for Best Actor") (description "London Film Critics Circle Award for Best Actor") (description "Golden Globe Award for Best Actor - Musical or Comedy Film") (description "National Society of Film Critics Award for Best Supporting Actor") (description "Kennedy Center Honor") (description "Camie Award") (description "NAACP Image Award for Outstanding Supporting Actor in a Motion Picture") (description "Academy Award for Actor in a Supporting Role")) +-Candidate Entities: Morgan_J._Freeman, Freeman_(Colonial) + +Additional entities + +Method 1 + + Morgan_J._Freeman + +Method 2 + + Morgan_J._Freeman + + + +-------------- + QUESTION: who will michael schumacher drive for in 2013? +-Canonic Entity : michael_schumacher +-Target Values : (list (description "Omega SA")) +-Candidate Entities: E._F._Schumacher + +Additional entities + +Method 1 + + E._F._Schumacher + +Method 2 + + + +-------------- + QUESTION: what kind of government does the united states have today? +-Canonic Entity : today_(the_smashing_pumpkins_song) +-Target Values : (list (description "Presidential system") (description "Federal republic") (description "Representative democracy") (description "Two-party system") (description "Constitutional republic") (description Republic)) +-Candidate Entities: Federal_government_of_the_United_States | Today_(U.S._TV_program), The_Word_For_Today, Today_in_L.A. | Gifts_in_kind, A_Kind_of_Alchemy | Today_(UK_newspaper) | United_States_Government_Printing_Office | Today_(EP) + +Additional entities + +Method 1 + + Today_(U.S._TV_program) + + Federal_government_of_the_United_States + +Method 2 + + + +-------------- + QUESTION: who were michael jackson's brothers and sisters? +-Canonic Entity : big_brothers_big_sisters_of_canada +-Target Values : (list (description "Rebbie Jackson") (description "Tito Jackson") (description "Janet Jackson") (description "Jermaine Jackson") (description "La Toya Jackson") (description "Brandon Jackson") (description "Marlon Jackson") (description "Randy Jackson") (description "Jackie Jackson")) +-Candidate Entities: Michael_Jackson's_This_Is_It_(album), Michael_Jackson's_This_Is_It, Michael_Jackson's_Moonwalker + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: when is the last time the chicago bulls won a championship? +-Canonic Entity : chicago_bulls +-Target Values : (list (description "1998 NBA Finals")) +-Candidate Entities: + + + +-------------- + QUESTION: what is the braves mascot? +-Canonic Entity : mascot,_new_south_wales +-Target Values : (list (description "Major League Baseball")) +-Candidate Entities: + + + +-------------- + QUESTION: where to stay in paris france? +-Canonic Entity : paris +-Target Values : (list (description "Hôtel Ritz Paris") (description "Hôtel de Crillon")) +-Candidate Entities: + + + +-------------- + QUESTION: what teams did george steinbrenner own? +-Canonic Entity : george_steinbrenner +-Target Values : (list (description "New York Yankees")) +-Candidate Entities: George_M._Steinbrenner_Field, Steinbrenner_High_School, Steinbrenner, SS_Henry_Steinbrenner | Roth_Open_Swiss_Teams, 1906–17_Stanford_rugby_teams + +Additional entities + +Method 1 + + George_M._Steinbrenner_Field + +Method 2 + + George_M._Steinbrenner_Field + + + +-------------- + QUESTION: who does christopher walken play in batman returns? +-Canonic Entity : christopher_walken +-Target Values : (list (description "Max Shreck")) +-Candidate Entities: Batman_Returns, Batman_Returns_(soundtrack), Batman, Batman_Returns_(video_game), Batman_in_film | The_Dark_Knight_Returns, Batman:_The_Dark_Knight_Returns_(film) | Christopher_Martin_(entertainer) | Return_to_Forever_–_Returns + +Additional entities + +Method 1 + + Batman:_The_Dark_Knight_Returns_(film) + + Batman + +Method 2 + + Batman + + + +-------------- + QUESTION: what to see and do in revelstoke? +-Canonic Entity : revelstoke,_british_columbia +-Target Values : (list (description "Kinbasket Lake")) +-Candidate Entities: Revelstoke, Revelstoke_(electoral_district) + +Additional entities + +Method 1 + + Revelstoke_(electoral_district) + +Method 2 + + Revelstoke_(electoral_district) + + + +-------------- + QUESTION: what land did god give to israel? +-Canonic Entity : land_of_israel +-Target Values : (list (description Israel)) +-Candidate Entities: Israel_Postal_Company | God_in_Judaism + +Additional entities + +Method 1 + + Israel_Postal_Company + + God_in_Judaism + +Method 2 + + Israel_Postal_Company + + God_in_Judaism + + + +-------------- + QUESTION: what guitar did andres segovia use? +-Canonic Entity : andrés_segovia +-Target Values : (list (description "Spanish acoustic guitar")) +-Candidate Entities: Segovia + +Additional entities + +Method 1 + + Segovia + +Method 2 + + Segovia + + + +-------------- + QUESTION: what style of art did vincent van gogh do? +-Canonic Entity : van_gogh_museum +-Target Values : (list (description Post-Impressionism)) +-Candidate Entities: Vincent_van_Gogh, Still_life_paintings_by_Vincent_van_Gogh_(Paris), Theo_van_Gogh_(art_dealer), Self-portraits_by_Vincent_van_Gogh, Death_of_Vincent_van_Gogh + +Additional entities + +Method 1 + + Vincent_van_Gogh + +Method 2 + + Vincent_van_Gogh + + + +-------------- + QUESTION: what was nicolaus copernicus discovery? +-Canonic Entity : nicolaus_copernicus_university_in_toruń +-Target Values : (list (description Heliocentrism) (description "Copernican heliocentrism") (description "Copernican Revolution")) +-Candidate Entities: Copernicus_(lunar_crater), Copernicus_(disambiguation) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where did the tutsi come from? +-Canonic Entity : tutsi +-Target Values : (list (description Rwanda)) +-Candidate Entities: + + + +-------------- + QUESTION: what country did osama bin laden live in? +-Canonic Entity : search_for_osama_bin_laden +-Target Values : (list (description Sudan) (description Afghanistan) (description "Saudi Arabia") (description Pakistan)) +-Candidate Entities: + + + +-------------- + QUESTION: where was the roman empire centered? +-Canonic Entity : executive_magistrates_of_the_roman_empire +-Target Values : (list (description Rome)) +-Candidate Entities: Byzantine_Empire | Centered_polygonal_number + +Additional entities + +Method 1 + + Byzantine_Empire + +Method 2 + + Byzantine_Empire + + + +-------------- + QUESTION: who played samuel sullivan in heroes? +-Canonic Entity : samuel_s._cox +-Target Values : (list (description "Robert Knepper")) +-Candidate Entities: Samuel_Sullivan + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: which ocean does the murray river flow into? +-Canonic Entity : murray_river +-Target Values : (list (description "Southern Ocean")) +-Candidate Entities: Watching_the_River_Flow, Flow_(video_game) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what time zone is cincinnati oh in? +-Canonic Entity : central_time_zone +-Target Values : (list (description "North American Eastern Time Zone")) +-Candidate Entities: Pacific_Time_Zone, Time_Zone_(video_game), Mountain_Time_Zone, Eastern_Time_Zone, Time_zone | Cincinnati | Iran_Standard_Time, Chamorro_Time_Zone, Time_in_Saskatchewan + +Additional entities + +Method 1 + + Iran_Standard_Time + +Method 2 + + Chamorro_Time_Zone + + Cincinnati + + Mountain_Time_Zone + + + +-------------- + QUESTION: who was jacob riis and why was he important? +-Canonic Entity : jacob_riis +-Target Values : (list (description Photographer) (description Journalist) (description Artist)) +-Candidate Entities: Riis_Houses, Riis | Jacob_(clothing_retailer), Jacob_J._Hinlopen, Jacob_(film) + +Additional entities + +Method 1 + +Method 2 + + Riis_Houses + + + +-------------- + QUESTION: where does peter king live? +-Canonic Entity : the_king_is_dead,_long_live_the_king! +-Target Values : (list (description "New York City")) +-Candidate Entities: Peter_T._King, Peter_King_(Australian_politician), Peter_Pevensie, Peter_King_(afrobeat) | Live_(James_Taylor_album) | Peter_King_(musician_and_producer), Peter_King,_1st_Baron_King, Peter_II_of_Yugoslavia | King_Kong_(2005_film) | Doe_people, Samuel_Doe, Lawrence_Doe, Nicholas_B._Doe, Francis_Doe + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what are west african countries? +-Canonic Entity : west_african_craton +-Target Values : (list (description Ghana) (description Mauritania) (description Gambia) (description "Côte d’Ivoire") (description Mali) (description Togo) (description Guinea-Bissau) (description Guinea) (description "Burkina Faso") (description Benin)) +-Candidate Entities: West_African_cuisine, Portuguese-speaking_African_countries, Economic_Community_of_West_African_States, West_African_Students'_Union, Trans–West_African_Coastal_Highway, South_West_African_Zwillinge, West_African_Examinations_Council, West_African_CFA_franc, West_Africa, Music_of_West_Africa, West_African_mythology, 2009–10_West_African_meningitis_outbreak, West_African_Airways_Corporation, Central_Bank_of_West_African_States, West_African_Nations_Cup, List_of_African_countries_by_GDP_(PPP), West_African_Senior_School_Certificate_Examination + +Additional entities + +Method 1 + + West_Africa + +Method 2 + + West_Africa + + + +-------------- + QUESTION: who became president when jfk was killed? +-Canonic Entity : assassination_of_john_f._kennedy +-Target Values : (list (description "Lyndon B. Johnson")) +-Candidate Entities: President_Kennedy_School_and_Community_College | Who_Killed_Kennedy | Vice_president, President_(CSRT), President_(steamboat), President_of_the_Church, Acting_president + +Additional entities + +Method 1 + + Who_Killed_Kennedy + + Vice_president + +Method 2 + + Who_Killed_Kennedy + + Vice_president + + + +-------------- + QUESTION: where is mallorca? +-Canonic Entity : mallorca_(albéniz) +-Target Values : (list (description "Mediterranean Sea")) +-Candidate Entities: The_Smuggler's_Bride_of_Mallorca, Mallorca_–_Suche_nach_dem_Paradies, Cinturón_a_Mallorca + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where are the mines in victoria? +-Canonic Entity : victoria_mines,_nova_scotia +-Target Values : (list (description Victoria)) +-Candidate Entities: École_des_Mines_de_Douai + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what years have the cubs been in the world series? +-Canonic Entity : chicago_cubs +-Target Values : (list (description "1908 World Series") (description "1907 World Series")) +-Candidate Entities: The_'89_Cubs + +Additional entities + +Method 1 + + The_'89_Cubs + +Method 2 + + The_'89_Cubs + + + +-------------- + QUESTION: what car companies does ford motor company own? +-Canonic Entity : ford_motor_company_of_australia +-Target Values : (list (description "Ford Super Enhanced Investment Partnership") (description "Ford India Private Limited") (description "Ford Holdings LLC") (description "Ford Mexico Holdings Inc") (description "Ford Capital B.V.") (description "Flat Rock Assembly Plant") (description "Ford Credit CP Auto Receivables LLC") (description "Ford Motor Co (Switzerland) SA") (description "Ford South America Holdings, LLC")) +-Candidate Entities: Ford_Germany, Ford_Brasil + + + +-------------- + QUESTION: what did god say to abraham about circumcision? +-Canonic Entity : religious_male_circumcision +-Target Values : (list (description "Cave of the Patriarchs")) +-Candidate Entities: Feast_of_the_Circumcision_of_Christ, Circumcision, Circumcision_controversy_in_early_Christianity, Ethics_of_circumcision | Abraham | Circumcision_controversies, Circumcision_and_law | Abraham_(film) | God_TV, Portrayals_of_God_in_popular_media, God_in_the_Bahá'í_Faith, Novy_God, God + +Additional entities + +Method 1 + + God + + Circumcision_controversies + + Abraham + + Circumcision + +Method 2 + + Abraham_(film) + + Circumcision_controversies + + Abraham + + Circumcision + + + +-------------- + QUESTION: what type of government does the bahamas? +-Canonic Entity : the_bahamas_local_government_act_1996 +-Target Values : (list (description "Parliamentary system") (description "Unitary state") (description "Constitutional monarchy")) +-Candidate Entities: Bahamas_National_Trust + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what style of music did jimi hendrix play? +-Canonic Entity : jimi_hendrix +-Target Values : (list (description "Rock music")) +-Candidate Entities: + + + +-------------- + QUESTION: what character does mila kunis play on family guy? +-Canonic Entity : mila_kunis +-Target Values : (list (description "Meg Griffin")) +-Candidate Entities: List_of_Family_Guy_cast_members, Family_Guy_(season_2), Family_Guy_(season_5) | Mila | Family_Guy_(season_1) | Mila_Islam | Family_Guy + +Additional entities + +Method 1 + + Family_Guy_(season_1) + + Family_Guy_(season_2) + + Family_Guy + +Method 2 + + Family_Guy_(season_1) + + Family_Guy + + + +-------------- + QUESTION: who played anakin skywalker in phantom menace? +-Canonic Entity : darth_vader +-Target Values : (list (description "Jake Lloyd")) +-Candidate Entities: Anakin | Star_Wars_Episode_I:_The_Phantom_Menace, Star_Wars_Episode_I:_The_Phantom_Menace_(video_game), The_Phantom_Edit, Star_Wars_Episode_I:_The_Phantom_Menace_(soundtrack), Star_Wars_Episode_I:_The_Phantom_Menace_(novel), Episode_I:_The_Phantom_Menace_Adventures | Star_Wars_Episode_I_Journal:_Anakin_Skywalker | Phantom_of_the_Paradise | Skywalker_(horse) | Twilight_as_Played_by_The_Twilight_Singers, Played, Played_in_Britain, The_Band_Played_On, And_the_Bands_Played_On + +Additional entities + +Method 1 + + Star_Wars_Episode_I_Journal:_Anakin_Skywalker + + The_Phantom_Edit + +Method 2 + + The_Phantom_Edit + + + +-------------- + QUESTION: what language do the people in ghana speak? +-Canonic Entity : speak!!! +-Target Values : (list (description "English Language")) +-Candidate Entities: The_People_Speak_(film), Speak_(No-Man_album) | Ghana | Speak_(Godsmack_song) | Eye_care_in_Ghana, Outline_of_Ghana | Boro_language_(Ghana) | University_of_Ghana | I_Don't_Speak_the_Language + +Additional entities + +Method 1 + + Ghana + +Method 2 + + Ghana + + + +-------------- + QUESTION: where is luke afb arizona? +-Canonic Entity : luke_air_force_base +-Target Values : (list (description Glendale)) +-Candidate Entities: Luke_the_Evangelist, The_Legend_of_Luke, Luke_Ski + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what language people speak in belgium? +-Canonic Entity : speak!!! +-Target Values : (list (description "French Language") (description "German Language") (description "Dutch Language")) +-Candidate Entities: The_People_Speak_(film), Speak_(No-Man_album) | Belgium | Speak_(Godsmack_song) + +Additional entities + +Method 1 + + Belgium + +Method 2 + + + +-------------- + QUESTION: where was the battle of vicksburg located? +-Canonic Entity : vicksburg,_mississippi +-Target Values : (list (description "Warren County")) +-Candidate Entities: + + + +-------------- + QUESTION: where is the cruise ship terminal in vancouver bc? +-Canonic Entity : vancouver +-Target Values : (list (description "Tsawwassen Ferry Terminal") (description "Horseshoe Bay Ferry Terminal")) +-Candidate Entities: Cruise_ship, Carnival_Cruise_Lines, Royal-class_cruise_ship, Oasis-class_cruise_ship | New_York_Passenger_Ship_Terminal | Marina_Bay_Cruise_Centre_Singapore, Brooklyn_Cruise_Terminal + +Additional entities + +Method 1 + + Cruise_ship + +Method 2 + + Brooklyn_Cruise_Terminal + + New_York_Passenger_Ship_Terminal + + Cruise_ship + + + +-------------- + QUESTION: where was the gallipoli campaign waged? +-Canonic Entity : gallipoli +-Target Values : (list (description Gallipoli)) +-Candidate Entities: Peninsula_Campaign, Campaign_(magazine) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what was lincoln's wife's name? +-Canonic Entity : the_wife's_story +-Target Values : (list (description "Nancy Lincoln")) +-Candidate Entities: + + + +-------------- + QUESTION: what does the japanese call their country? +-Canonic Entity : now_that's_what_i_call_country_volume_2 +-Target Values : (list (description Japan)) +-Candidate Entities: The_Call_(CNBC), Call_for_the_Dead, The_Call_(band), Caedmon's_Call, Call, Call_of_Duty | Doe_people, Samuel_Doe, Lawrence_Doe, Nicholas_B._Doe, Francis_Doe + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what did king george vi die of? +-Canonic Entity : united_states_virgin_islands +-Target Values : (list (description "Lung cancer")) +-Candidate Entities: + + + +-------------- + QUESTION: what type of currency is used in the united kingdom? +-Canonic Entity : currency +-Target Values : (list (description "UK £")) +-Candidate Entities: Marquesses_in_the_United_Kingdom, Theatre_of_the_United_Kingdom, United_Kingdom, Barbados–United_Kingdom_relations | Embassy_of_the_United_Kingdom,_Kiev | Type_88_tank_(China), Bugatti_Type_35, Bugatti_Type_51, Bugatti_Type_13, Type_of_service + +Additional entities + +Method 1 + + United_Kingdom + +Method 2 + + United_Kingdom + + + +-------------- + QUESTION: where did brad paisley graduate from college? +-Canonic Entity : brad_paisley +-Target Values : (list (description "Belmont University")) +-Candidate Entities: Paisley + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what city was robert kennedy killed in? +-Canonic Entity : robert_f._kennedy +-Target Values : (list (description "Los Angeles")) +-Candidate Entities: Robert_E._Kennedy_(University_president), Who_Killed_Kennedy | Killed_by_Death_(albums) | Robert_P._Kennedy, Robert_D._Kennedy, Robert_Kennedy_(publisher) | United_States_Congress_members_killed_or_wounded_in_office | Robert_Kennedy_(Jesuit), Robert_H._Kennedy + +Additional entities + +Method 1 + + Robert_H._Kennedy + + Robert_P._Kennedy + +Method 2 + + Robert_P._Kennedy + + Who_Killed_Kennedy + + + +-------------- + QUESTION: when are school holidays in queensland 2013? +-Canonic Entity : holiday +-Target Values : (list (description Woorabinda)) +-Candidate Entities: 2013_National_Premier_League_Queensland, Queensland, Premier_of_Queensland + +Additional entities + +Method 1 + + Queensland + +Method 2 + + + +-------------- + QUESTION: who plays the new michael myers? +-Canonic Entity : michael_myers_(politician) +-Target Values : (list (description "Brad Loree")) +-Candidate Entities: Mike_Myers, A._Wallis_Myers, Frank_J._Myers + +Additional entities + +Method 1 + + Mike_Myers + +Method 2 + + + +-------------- + QUESTION: who was killed first tupac or biggie? +-Canonic Entity : biggie_&_tupac +-Target Values : (list (description Tupac)) +-Candidate Entities: Tupac_A._Hunter | Biggie_(disambiguation) + + + +-------------- + QUESTION: what kind of currency to bring to mexico? +-Canonic Entity : no_gift_to_bring +-Target Values : (list (description "Mexican peso")) +-Candidate Entities: Currency | Bring_It_On...Bring_It_On | Gifts_in_kind, A_Kind_of_Alchemy, Johann_Friedrich_Kind, Kind_(type_theory), My_Kind_of_Woman/My_Kind_of_Man + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who won the nobel peace prize in 2007? +-Canonic Entity : 2007_nobel_peace_prize +-Target Values : (list (description "Intergovernmental Panel on Climate Change") (description "Al Gore")) +-Candidate Entities: List_of_female_Nobel_laureates, Nobel_laureates_of_India + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what theme songs did alan thicke wrote? +-Canonic Entity : alan_thicke +-Target Values : (list (description "It Takes Diff'rent Strokes")) +-Candidate Entities: Thicke, The_Evolution_of_Robin_Thicke, Thicke_of_the_Night | Theme_(narrative) | Wrote_a_Song_for_Everyone | List_of_television_theme_music, Theme_of_Sirmium, EastEnders_theme_tune, Theme_from_Shaft + +Additional entities + +Method 1 + + List_of_television_theme_music + + Thicke_of_the_Night + +Method 2 + + Thicke_of_the_Night + + + +-------------- + QUESTION: what films did patrick swayze star in? +-Canonic Entity : patrick_swayze +-Target Values : (list (description "City of Joy") (description "Christmas in Wonderland") (description "Father Hood") (description "Along for the Ride") (description "Black Dog") (description "George and the Dragon") (description "Donnie Darko") (description "Dirty Dancing: Havana Nights") (description "Dirty Dancing") (description 11:14)) +-Candidate Entities: Rogue_Star_Films, Star_Wars, Patrick_Star + +Additional entities + +Method 1 + + Star_Wars + +Method 2 + + Star_Wars + + + +-------------- + QUESTION: where is sony headquarters? +-Canonic Entity : sony +-Target Values : (list (description Tokyo)) +-Candidate Entities: Security_Forces_Headquarters_–_Wanni, Security_Forces_Headquarters_–_East, FIFA_headquarters, Headquarters_(album), Security_Forces_Headquarters_–_Jaffna + +Additional entities + +Method 1 + + Headquarters_(album) + +Method 2 + + + +-------------- + QUESTION: who is liz lemon getting married to? +-Canonic Entity : liz_lemon +-Target Values : (list (description "Jack Donaghy")) +-Candidate Entities: Lemon_(color), Lemon, Cream_Lemon | Married_to_It + +Additional entities + +Method 1 + + Lemon + +Method 2 + + + +-------------- + QUESTION: who plays sarah wittle in jumanji? +-Canonic Entity : jumanji +-Target Values : (list (description "Bonnie Hunt")) +-Candidate Entities: Four_Major_Plays_of_Chikamatsu, Four_Major_Plays_of_Chikamatsu, Plays_Live | Sarah_Hoyt | Smegma_Plays_Merzbow_Plays_Smegma | Sarah_Günther + +Additional entities + +Method 1 + + Sarah_Hoyt + +Method 2 + + + +-------------- + QUESTION: what type of music is tchaikovsky? +-Canonic Entity : music_of_pyotr_ilyich_tchaikovsky +-Target Values : (list (description Opera) (description "Classical music") (description Ballet) (description "Art song")) +-Candidate Entities: Tchaikovsky_Symphony_Orchestra, Tchaikovsky_(song), International_Tchaikovsky_Competition_2011_–_Piano, Tchaikovsky_(film) | Type_88_tank_(China), Bugatti_Type_35, Bugatti_Type_51, Bugatti_Type_13, Type_of_service + +Additional entities + +Method 1 + + Tchaikovsky_Symphony_Orchestra + +Method 2 + + + +-------------- + QUESTION: when is wimbledon tennis tournament? +-Canonic Entity : the_championships,_wimbledon +-Target Values : (list (description Yearly)) +-Candidate Entities: 2014_Wimbledon_Championships, Wimbledon_Lawn_Tennis_Museum + +Additional entities + +Method 1 + + 2014_Wimbledon_Championships + +Method 2 + + 2014_Wimbledon_Championships + + + +-------------- + QUESTION: what year did ted kennedy run for president? +-Canonic Entity : ted_kennedy +-Target Values : (list (description "1980 Democratic National Convention")) +-Candidate Entities: + + + +-------------- + QUESTION: where did helen keller go to school? +-Canonic Entity : helen_keller +-Target Values : (list (description "Radcliffe College") (description "Perkins School for the Blind") (description "Wright-Humason School for the Deaf") (description "The Cambridge School of Weston") (description "Horace Mann School for the Deaf and Hard of Hearing")) +-Candidate Entities: + + + +-------------- + QUESTION: what shows are on in london at the moment? +-Canonic Entity : the_moment_(band) +-Target Values : (list (description "World Organization of the Scout Movement") (description "2008 Raindance Film Festival") (description "Grunwick dispute") (description "2003 London blackout") (description "1st Computer Olympiad") (description "Ocean transport and erection of Cleopatra’s Needle, (from Egypt to) London, 1878") (description "Early fires of London") (description "Fathers 4 Justice protests") (description "2nd Computer Olympiad") (description "Live Earth")) +-Candidate Entities: If_Only_for_a_Moment, Electric_dipole_moment, Second_moment_of_area, Anomalous_magnetic_dipole_moment | SS_London_(1864) | Zero_moment_point, Moment_of_Glory + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where is german an official language? +-Canonic Entity : german_language +-Target Values : (list (description Canada) (description "German Democratic Republic") (description Luxembourg) (description Switzerland) (description Liechtenstein) (description Germany) (description "West Germany") (description Belgium) (description "Vatican City") (description "Second Polish Republic")) +-Candidate Entities: Austrian_German | Official_bilingualism_in_Canada | Standard_German + +Additional entities + +Method 1 + + Official_bilingualism_in_Canada + + Standard_German + +Method 2 + + Official_bilingualism_in_Canada + + Austrian_German + + Standard_German + + + +-------------- + QUESTION: what language do you speak in iran? +-Canonic Entity : speak!!! +-Target Values : (list (description "Turkmen Language") (description "Pashto language") (description "Kurdish language") (description "Gilaki Language") (description "Assyrian Neo-Aramaic Language") (description "Azerbaijani language") (description "Armenian Language") (description "Persian Language") (description "Mazanderani Language") (description "Luri language")) +-Candidate Entities: Speak_(No-Man_album), Speak_(Godsmack_song), Speak_for_Yourself, I_Don't_Speak_the_Language | Iran | Don't_Speak, SPEAK_(test) | Iran_(word) | Speak_(band), Speak_(film), Speak_of_the_devil, The_People_Speak_(film), We_No_Speak_Americano + +Additional entities + +Method 1 + + Iran + +Method 2 + + + +-------------- + QUESTION: who did tupac shakur date? +-Canonic Entity : tupac_shakur +-Target Values : (list (description "Keisha Morris")) +-Candidate Entities: Tupac_Amaru_Shakur_Center_for_the_Arts, Shakur + +Additional entities + +Method 1 + + Shakur + +Method 2 + + Tupac_Amaru_Shakur_Center_for_the_Arts + + + +-------------- + QUESTION: who does paul bettany play in the avengers? +-Canonic Entity : paul_bettany +-Target Values : (list (description "Edwin Jarvis")) +-Candidate Entities: Avengers_(band), The_Avengers_(soundtrack), The_Avengers_(2012_film), Avengers_(comics), The_Avengers_(TV_series) + +Additional entities + +Method 1 + + The_Avengers_(2012_film) + +Method 2 + + The_Avengers_(2012_film) + + + +-------------- + QUESTION: what is the closest airport to naples florida? +-Canonic Entity : naples,_florida +-Target Values : (list (description "Marco Island Airport")) +-Candidate Entities: Naples_Municipal_Airport, Naples_International_Airport, Naples_Park,_Florida | Distance_of_closest_approach_of_ellipses_and_ellipsoids | Naples_Manor,_Florida, Naples | Southwest_Florida_International_Airport, Naples_Seaboard_Air_Line_Railway_Station + +Additional entities + +Method 1 + + Southwest_Florida_International_Airport + + Naples_Park,_Florida + + Naples + +Method 2 + + Naples_Manor,_Florida + + Southwest_Florida_International_Airport + + Naples_Municipal_Airport + + + +-------------- + QUESTION: what did larry hagman die of? +-Canonic Entity : larry_hagman +-Target Values : (list (description Leukemia)) +-Candidate Entities: Hagman | To_Die_For + +Additional entities + +Method 1 + + To_Die_For + +Method 2 + + + +-------------- + QUESTION: who is the governor of colorado 2009? +-Canonic Entity : governor_of_colorado +-Target Values : (list (description "Bill Ritter")) +-Candidate Entities: Colorado_State_Capitol, Colorado, Colorado_Chautauqua, Colorado_State_University–Pueblo | Governor_(United_States), Governor_(singer) | 2009_Ykkönen, 2009_Liga_Nacional_de_Ascenso, 2009_Svenska_Supercupen, 2009_Bradford_Bulls_season, Detroit_mayoral_elections,_2009 + +Additional entities + +Method 1 + + Governor_(United_States) + +Method 2 + + Governor_(United_States) + + Colorado + + + +-------------- + QUESTION: what timezone is michigan usa? +-Canonic Entity : usa,_ōita +-Target Values : (list (description UTC-5)) +-Candidate Entities: Miss_Michigan_Teen_USA, Miss_Michigan_USA, Usa_(Germany) | Michigan, Film_industry_in_Michigan + +Additional entities + +Method 1 + + Michigan + +Method 2 + + + +-------------- + QUESTION: what blood disease does robin roberts have? +-Canonic Entity : robin_roberts_(newscaster) +-Target Values : (list (description "Myelodysplastic syndrome")) +-Candidate Entities: Blood-borne_disease | Blood_for_Blood, Blood_(band) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who seized power in italy in 1922? +-Canonic Entity : nuclear_power_in_italy +-Target Values : (list (description "Benito Mussolini")) +-Candidate Entities: Italy, History_of_Italy | 11_September_1922_Revolution + +Additional entities + +Method 1 + + Italy + +Method 2 + + + +-------------- + QUESTION: what show is jill wagner on? +-Canonic Entity : jill_wagner +-Target Values : (list (description Wipeout) (description Punk'd) (description "Blade: The Series") (description "Teen Wolf")) +-Candidate Entities: + + + +-------------- + QUESTION: who did megan fox have a baby with? +-Canonic Entity : megan_fox +-Target Values : (list (description "Brian Austin Green")) +-Candidate Entities: Fox_(Spain) | MEGAN | Fox_(Turkey), Fox_(Finland), Fox_Broadcasting_Company | K._Megan_McArthur | Baby_bonus, Ooo_Baby_Baby, Baby_Einstein, Juno_Baby, Baby_Dodds + +Additional entities + +Method 1 + + Fox_Broadcasting_Company + +Method 2 + + Fox_Broadcasting_Company + + + +-------------- + QUESTION: what currency does senegal use? +-Canonic Entity : senegal +-Target Values : (list (description "West African CFA franc")) +-Candidate Entities: Currency + +Additional entities + +Method 1 + + Currency + +Method 2 + + Currency + + + +-------------- + QUESTION: where to get married in north alabama? +-Canonic Entity : university_of_north_alabama +-Target Values : (list (description "United Church of Christ")) +-Candidate Entities: Married_to_It + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what do ethnic russians look like? +-Canonic Entity : russians +-Target Values : (list (description Europeans)) +-Candidate Entities: Ethnic_minorities_in_Czechoslovakia + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what places made up the western roman empire? +-Canonic Entity : western_roman_empire +-Target Values : (list (description Europe) (description "North Africa") (description "Middle East")) +-Candidate Entities: Byzantine_Empire, Executive_magistrates_of_the_Roman_Empire + +Additional entities + +Method 1 + + Byzantine_Empire + +Method 2 + + Byzantine_Empire + + + +-------------- + QUESTION: what experiments did marie curie conduct? +-Canonic Entity : marie_curie +-Target Values : (list (description "Radio-active substances")) +-Candidate Entities: + + + +-------------- + QUESTION: what company did mitt romney run? +-Canonic Entity : mitt_romney +-Target Values : (list (description "Bain Capital")) +-Candidate Entities: + + + +-------------- + QUESTION: what is vito corleone real name? +-Canonic Entity : vito_corleone +-Target Values : (list (description "Marlon Brando")) +-Candidate Entities: Anthony_Corleone, Corleone | Vito, Vito_(Leblanc) | Corleone_(film) | This_Is_for_Real_(album), Real_estate, Real_Book, Real_Racing_(video_game) + +Additional entities + +Method 1 + + Real_estate + + Anthony_Corleone + +Method 2 + + Real_estate + + Anthony_Corleone + + + +-------------- + QUESTION: what is the king of spain's name? +-Canonic Entity : singeing_the_king_of_spain's_beard +-Target Values : (list (description "Juan Carlos I of Spain")) +-Candidate Entities: King_and_pawn_versus_king_endgame, King_(TV_miniseries), Franklin_Hiram_King + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who is blackwell? +-Canonic Entity : blackwell,_bolsover +-Target Values : (list (description Critic) (description Journalist) (description Actor) (description "Fashion Designer")) +-Candidate Entities: Blackwell_(series) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where did justin bieber grew up? +-Canonic Entity : justin_bieber +-Target Values : (list (description Canada)) +-Candidate Entities: + + + +-------------- + QUESTION: what district does john cornyn represent? +-Canonic Entity : john_cornyn +-Target Values : (list (description Texas)) +-Candidate Entities: Cornyn | Represent_(Compton's_Most_Wanted_album), Represent_(Fat_Joe_album) | Saint_John_(electoral_district) | Represent | St._Thomas-St._John_School_District, John_A._Wilson_Building, John_R._Tunheim | Gorgas–Manly_Historic_District | John_G._Good, St._John_River_District | Texas's_36th_congressional_district, John_Taolo_Gaetsewe_District_Municipality, United_States_district_court | John_C._Sanborn + +Additional entities + +Method 1 + + John_R._Tunheim + + United_States_district_court + +Method 2 + + John_R._Tunheim + + United_States_district_court + + + +-------------- + QUESTION: when was the last superbowl win for the steelers? +-Canonic Entity : ravens–steelers_rivalry +-Target Values : (list (description "2006 NFL season")) +-Candidate Entities: + + + +-------------- + QUESTION: what language do they speak in argentina yahoo? +-Canonic Entity : yahoo!_query_language +-Target Values : (list (description "Yiddish Language") (description "Italian Language") (description "Spanish Language")) +-Candidate Entities: + + + +-------------- + QUESTION: who drafted kevin garnett? +-Canonic Entity : kevin_garnett +-Target Values : (list (description "Minnesota Timberwolves")) +-Candidate Entities: + + + +-------------- + QUESTION: what is zip code for chicago illinois? +-Canonic Entity : zip_code +-Target Values : (list (description 60605) (description 60604) (description 60607) (description 60606) (description 60601) (description 60610) (description 60603) (description 60602) (description 60290) (description 60608)) +-Candidate Entities: Chicago, Chicago_Heights,_Illinois, University_of_Illinois_at_Chicago, Chicago_Lawn,_Chicago, Illinois_Institute_of_Art_–_Chicago | West_Chicago,_Illinois, Chicago_Ridge,_Illinois | South_Chicago,_Chicago | North_Chicago,_Illinois | Zip_the_Pinhead | Austin,_Chicago, Chicago_metropolitan_area + +Additional entities + +Method 1 + + Chicago_metropolitan_area + + Chicago + +Method 2 + + Zip_the_Pinhead + + North_Chicago,_Illinois + + Chicago_metropolitan_area + + Chicago + + + +-------------- + QUESTION: what is the name of book written by helen keller? +-Canonic Entity : helen_keller +-Target Values : (list (description "Light in my Darkness") (description "Die Geschichte meines Lebens") (description "The Frost King") (description "The open door") (description "The World I Live In") (description "Peace at eventide") (description "My religion") (description "Jia ru gei wo san tian guang ming") (description "The Story of My Life") (description "Helen Keller, her Socialist years")) +-Candidate Entities: As_It_Is_Written + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what did bruce jenner win gold for? +-Canonic Entity : bruce_jenner +-Target Values : (list (description "Athletics at the 1976 Summer Olympics - Men's Decathlon")) +-Candidate Entities: + + + +-------------- + QUESTION: who did the voice of darth vader in star wars? +-Canonic Entity : darth_vader +-Target Values : (list (description "James Earl Jones")) +-Candidate Entities: Star_Wars, Star_Wars:_The_Interactive_Video_Board_Game | Vader_(band) | Star_Wars:_Clone_Wars_(2003_TV_series), Kenner_Star_Wars_action_figures + +Additional entities + +Method 1 + + Star_Wars:_Clone_Wars_(2003_TV_series) + +Method 2 + + Star_Wars:_Clone_Wars_(2003_TV_series) + + Star_Wars + + + +-------------- + QUESTION: what are the duggars kids full names? +-Canonic Entity : 19_kids_and_counting +-Target Values : (list (description "Jana Duggar")) +-Candidate Entities: + + + +-------------- + QUESTION: who is prime minister of japan 2011? +-Canonic Entity : prime_minister_of_japan +-Target Values : (list (description "Yoshihiko Noda")) +-Candidate Entities: 2011_Kyrgyzstan_League + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what year did aaron rodgers get drafted? +-Canonic Entity : aaron_rodgers +-Target Values : (list (description "2005 NFL Draft")) +-Candidate Entities: I_Don't_Wanna_Get_Drafted + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what equipment does porter robinson use? +-Canonic Entity : porter,_new_york +-Target Values : (list (description Pseudo-cylinder)) +-Candidate Entities: + + + +-------------- + QUESTION: who plays the voice of kovu? +-Canonic Entity : four_major_plays_of_chikamatsu +-Target Values : (list (description "Jason Marsden")) +-Candidate Entities: Voice_(2AM_album), Voice_(Emi_Hinouchi_album), The_Voice_(Mike_Jones_album) | As_the_Music_Plays + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who is martin luther king jr wife? +-Canonic Entity : martin_luther_king,_jr. +-Target Values : (list (description "Coretta Scott King")) +-Candidate Entities: Martin_Luther_King_III, Martin_Luther_King,_Sr., Martin_Luther_King_Jr._Memorial_Library, Martin_Luther_King_Jr._Memorial_Bridge, Martin_Luther_King_Jr._Shoreline, Dr._Martin_Luther_King_Jr._Plaza_(Metrorail_station), Dr._Martin_Luther_King_Jr._Multicultural_Institute, Martin_Luther_College | The_Provoked_Wife, The_19th_Wife + +Additional entities + +Method 1 + + Martin_Luther_King_III + +Method 2 + + Martin_Luther_King,_Sr. + + + +-------------- + QUESTION: who is the new governor of florida 2011? +-Canonic Entity : list_of_governors_of_florida +-Target Values : (list (description "Rick Scott")) +-Candidate Entities: + + + +-------------- + QUESTION: what kind of money does the uk use? +-Canonic Entity : the_future_of_money +-Target Values : (list (description "UK £")) +-Candidate Entities: A_Kind_of_Alchemy, Kind_of_Like_Spitting, The_Fourth_Kind, Johann_Friedrich_Kind | Money_market_fund, Money | Kind_(type_theory), 3_of_a_Kind_(band) | Virgin_Money_UK | My_Kind_of_Woman/My_Kind_of_Man, A_Kind_of_Magic + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what books did jules verne wright? +-Canonic Entity : jules_verne_museum +-Target Values : (list (description "Off on a Comet") (description "Five Weeks in a Balloon") (description "Gil Braltar") (description "Paris in the Twentieth Century") (description "The Child of the Cavern") (description "Tribulations of a Chinaman in China") (description "The Mysterious Island") (description "The Adventures of Captain Hatteras") (description "Facing the Flag") (description "The Begum's Fortune")) +-Candidate Entities: Jules_Verne, Jules_Férat, The_Secret_Adventures_of_Jules_Verne, French_ship_Jules_Verne_(A620) + +Additional entities + +Method 1 + + Jules_Verne + +Method 2 + + Jules_Verne + + + +-------------- + QUESTION: where in oklahoma are scorpions found? +-Canonic Entity : scorpions_(band) +-Target Values : (list (description "Oklahoma City")) +-Candidate Entities: Best_of_Scorpions, Scorpions_(novel), Box_of_Scorpions, Best_of_Scorpions_Vol._2, Scorpions_(paramilitary), Scorpions_(South_Africa) | Law_of_Oklahoma, Oklahoma_(song) + +Additional entities + +Method 1 + + Best_of_Scorpions + +Method 2 + + Best_of_Scorpions + + + +-------------- + QUESTION: where does the philadelphia union soccer team play? +-Canonic Entity : philadelphia_union +-Target Values : (list (description "PPL Park")) +-Candidate Entities: Philadelphia_Independence, Union_Quakers_of_Philadelphia | United_States_men's_national_soccer_team, South_Korea_national_beach_soccer_team | Philadelphia | France_national_rugby_union_team | Philadelphia_Field_Club | United_States_Soccer_Federation | Soviet_Union_national_rugby_union_team, Canterbury_rugby_union_team | Comcast_SportsNet_Philadelphia, Philadelphia_Liberty_FC | United_States_men's_Paralympic_soccer_team, United_States_women's_national_under-17_soccer_team, Argentina_national_rugby_union_team | Doe_people, Lawrence_Doe, Samuel_Doe, Nicholas_B._Doe, Francis_Doe + +Additional entities + +Method 1 + + Philadelphia_Field_Club + + Francis_Doe + + Philadelphia_Independence + + Comcast_SportsNet_Philadelphia + + United_States_Soccer_Federation + +Method 2 + + Francis_Doe + + Comcast_SportsNet_Philadelphia + + Philadelphia + + United_States_Soccer_Federation + + United_States_men's_national_soccer_team + + + +-------------- + QUESTION: where is the portuguese language derived from? +-Canonic Entity : portuguese_language +-Target Values : (list (description Brazil) (description Canada) (description Angola) (description Portugal) (description Macau) (description "Cape Verde") (description Andorra) (description Timor-Leste) (description Guinea-Bissau) (description Mozambique)) +-Candidate Entities: Portuguese_in_Africa + +Additional entities + +Method 1 + + Portuguese_in_Africa + +Method 2 + + Portuguese_in_Africa + + + +-------------- + QUESTION: what 5 countries border ethiopia? +-Canonic Entity : ethiopia +-Target Values : (list (description Sudan) (description Eritrea) (description Djibouti) (description Somalia) (description Kenya)) +-Candidate Entities: Indonesia–Singapore_border, Indonesia–Thailand_border, Indonesia–Vietnam_border, Norway–Russia_border, Finnish–Swedish_border, Malaysia–Philippines_border, Indonesia–Malaysia_border, Slovakia–Ukraine_border, Beat_the_Border, Malaysia–Vietnam_border, Brunei–Malaysia_border, Indonesia–Singapore_border, Indonesia–Thailand_border, Indonesia–Vietnam_border, Norway–Russia_border, Finnish–Swedish_border + +Additional entities + +Method 1 + +Method 2 + + Norway–Russia_border + + + +-------------- + QUESTION: what does qatar export? +-Canonic Entity : export,_pennsylvania +-Target Values : (list (description "Organization of Arab Petroleum Exporting Countries")) +-Candidate Entities: Qatar | Export, Export_(cigarette), Automated_Export_System + +Additional entities + +Method 1 + + Qatar + +Method 2 + + + +-------------- + QUESTION: what type of planes does virgin america fly? +-Canonic Entity : planes_(film) +-Target Values : (list (description "Airbus A319") (description "Airbus A320")) +-Candidate Entities: Great_Planes_Model_Manufacturing | Virgin_America | Alcocer_de_Planes | Virgin_Australia | Loud_Planes_Fly_Low, People_in_Planes | Fly_(exercise) | Planes_Mistaken_for_Stars | Type_88_tank_(China), Bugatti_Type_35, Bugatti_Type_51, Bugatti_Type_13, Type_of_service + +Additional entities + +Method 1 + + People_in_Planes + + Planes_Mistaken_for_Stars + + Virgin_Australia + + Virgin_America + +Method 2 + + Virgin_America + + + +-------------- + QUESTION: what city is the university of maryland university college in? +-Canonic Entity : university_of_maryland_university_college +-Target Values : (list (description Adelphi)) +-Candidate Entities: + + + +-------------- + QUESTION: where did anne frank live before the war? +-Canonic Entity : anne_frank_tree +-Target Values : (list (description Frankfurt)) +-Candidate Entities: The_Diary_of_a_Young_Girl, Anne_no_Nikki | Otto_Frank | Live_(James_Taylor_album), Ableton_Live | World_War_Live:_Battle_of_the_Baltic_Sea, War_(Edwin_Starr_song) | Live_Baby_Live + +Additional entities + +Method 1 + + The_Diary_of_a_Young_Girl + + Otto_Frank + +Method 2 + + Otto_Frank + + + +-------------- + QUESTION: where was joseph p kennedy born? +-Canonic Entity : joseph_p._kennedy,_jr. +-Target Values : (list (description Boston)) +-Candidate Entities: Joseph_P._Kennedy_II, Joseph_P._Kennedy,_Sr. | Patrick_J._Kennedy, Joseph_P._Kennedy_III, P._J._Kennedy, X._J._Kennedy, William_Kennedy_(author), Joseph_C._G._Kennedy, Joseph_W._Kennedy | M._K._Joseph | Michael_J._Kennedy, Kennedy, Lt._Joseph_P._Kennedy_Jr._Memorial_Skating_Rink, Victoria_Reggie_Kennedy + +Additional entities + +Method 1 + + Victoria_Reggie_Kennedy + + P._J._Kennedy + + Joseph_P._Kennedy,_Sr. + +Method 2 + + Victoria_Reggie_Kennedy + + Joseph_P._Kennedy,_Sr. + + + +-------------- + QUESTION: which country is located directly east of belgium? +-Canonic Entity : belgium,_wisconsin +-Target Values : (list (description Europe)) +-Candidate Entities: Crime_in_Belgium, Belgium | East_Country_Yard_Show, Country_Hai_East_Cotton + +Additional entities + +Method 1 + + Belgium + +Method 2 + + + +-------------- + QUESTION: who are iran's major trading partners? +-Canonic Entity : list_of_the_largest_trading_partners_of_the_united_states +-Target Values : (list (description Madagascar)) +-Candidate Entities: MDC_Partners | Commodity_trading_advisor, Extended_hours_trading | Major_Major_Major_Major, Major_(manga) | Brain_drain_in_Iran | Ann_Major + +Additional entities + +Method 1 + + Ann_Major + + Major_(manga) + +Method 2 + + + +-------------- + QUESTION: where do the san francisco giants play baseball? +-Canonic Entity : san_francisco_giants +-Target Values : (list (description "Polo Grounds") (description "Polo Grounds III") (description "Polo Grounds II") (description "Seals Stadium") (description "Candlestick Park") (description "Hilltop Park") (description "St. George Cricket Grounds") (description "Polo Grounds IV") (description "AT&T Park")) +-Candidate Entities: + + + +-------------- + QUESTION: what happened to the battle of shiloh? +-Canonic Entity : shiloh_(biblical_city) +-Target Values : (list (description "Surprise Attack!")) +-Candidate Entities: Battle_of_Shiloh + +Additional entities + +Method 1 + +Method 2 + + Battle_of_Shiloh + + + +-------------- + QUESTION: what type of currency does egypt have? +-Canonic Entity : currency +-Target Values : (list (description "Egyptian pound")) +-Candidate Entities: Egypt | Type_88_tank_(China), Bugatti_Type_35, Bugatti_Type_51, Bugatti_Type_13, Type_of_service + +Additional entities + +Method 1 + + Egypt + +Method 2 + + Egypt + + + +-------------- + QUESTION: what club team is diego forlan on? +-Canonic Entity : diego_forlán +-Target Values : (list (description "Uruguay national football team")) +-Candidate Entities: + + + +-------------- + QUESTION: what state is kaplan university online located? +-Canonic Entity : kaplan_university +-Target Values : (list (description Maryland)) +-Candidate Entities: + + + +-------------- + QUESTION: who do rastafarians worship? +-Canonic Entity : worship +-Target Values : (list (description Zion) (description Afrocentrism) (description Jah)) +-Candidate Entities: The_Rastafarians, Rastafari_movement, List_of_Rastafarians + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what timezone are the bahamas? +-Canonic Entity : the_bahamas +-Target Values : (list (description UTC-5) (description "North American Eastern Time Zone")) +-Candidate Entities: Nassau,_Bahamas, Bahamas_National_Trust + +Additional entities + +Method 1 + + Nassau,_Bahamas + +Method 2 + + Nassau,_Bahamas + + + +-------------- + QUESTION: where did l frank baum die? +-Canonic Entity : frank_joslyn_baum +-Target Values : (list (description Hollywood)) +-Candidate Entities: L._Frank_Baum, Roger_S._Baum, Günter_Baum, Frank_Baum_(footballer), Baum, Stephen_"Suede"_Baum, Frank_Baum + +Additional entities + +Method 1 + + L._Frank_Baum + +Method 2 + + L._Frank_Baum + + + +-------------- + QUESTION: what is the episode of family guy when peter makes his own country? +-Canonic Entity : the_family_guy_100th_episode_special +-Target Values : (list (description "Virgin and Child Enthroned with Saints Peter, Paul, John the Baptist, Dominic and a Donor")) +-Candidate Entities: Peter_Griffin | Ratings_Guy + +Additional entities + +Method 1 + + Peter_Griffin + +Method 2 + + Peter_Griffin + + + +-------------- + QUESTION: what inspired steinbeck to write? +-Canonic Entity : write_to_death +-Target Values : (list (description "William Faulkner") (description "Robert Burns") (description "Sherwood Anderson") (description "Thomas Malory")) +-Candidate Entities: Write_(system_call) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who is the leader of cuba 2012? +-Canonic Entity : cuba +-Target Values : (list (description "Raúl Castro")) +-Candidate Entities: The_Leader_(Allahabad_newspaper), Leader_(comics), Louisville_Leader + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where did gareth southgate play? +-Canonic Entity : southgate,_houston +-Target Values : (list (description England)) +-Candidate Entities: + + + +-------------- + QUESTION: what musical instruments did duke ellington play? +-Canonic Entity : duke_ellington +-Target Values : (list (description Piano) (description "Jazz piano")) +-Candidate Entities: Play_On! | Steinway_Musical_Instruments, Barbra_Streisand...And_Other_Musical_Instruments | Ellington_at_Newport | Kawai_Musical_Instruments + +Additional entities + +Method 1 + + Steinway_Musical_Instruments + + Play_On! + + Ellington_at_Newport + +Method 2 + + Play_On! + + Ellington_at_Newport + + + +-------------- + QUESTION: where is the bank of america pavilion? +-Canonic Entity : blue_hills_bank_pavilion +-Target Values : (list (description "Suffolk County")) +-Candidate Entities: Alaska_Airlines_Arena_at_Hec_Edmundson_Pavilion | Bank_of_America + +Additional entities + +Method 1 + + Bank_of_America + +Method 2 + + Bank_of_America + + + +-------------- + QUESTION: what all does google have? +-Canonic Entity : google+ +-Target Values : (list (description "Google Maps Engine") (description "Google Maps API for Business") (description "Google Chrome") (description "Google Earth Enterprise") (description "Google Apps") (description "Google AdWords")) +-Candidate Entities: Google + +Additional entities + +Method 1 + + Google + +Method 2 + + Google + + + +-------------- + QUESTION: what is the boston celtics current roster? +-Canonic Entity : 1984–85_boston_celtics_season +-Target Values : (list (description "Jeff Green") (description "Jason Terry") (description "Kevin Garnett") (description "Rajon Rondo") (description "Fab Melo") (description "Brandon Bass") (description "Jared Sullinger") (description "Avery Bradley") (description "Paul Pierce") (description "Courtney Lee")) +-Candidate Entities: Fred_H._Roster | West_Spitsbergen_Current, Current_divider + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what features do islam and christianity have in common? +-Canonic Entity : christianity_and_islam +-Target Values : (list (description "Abrahamic religions")) +-Candidate Entities: Christianity_in_Indonesia, Women_in_Islam | Criticism_of_Christianity | Features_new_to_Windows_Vista | Criticism_of_Islam, Islam_in_Southeast_Asia + +Additional entities + +Method 1 + + Criticism_of_Christianity + + Criticism_of_Islam + +Method 2 + + Christianity_in_Indonesia + + Criticism_of_Islam + + + +-------------- + QUESTION: what was queen victoria queen of? +-Canonic Entity : queen_victoria_statue_(bristol) +-Target Values : (list (description "United Kingdom")) +-Candidate Entities: Queen_of_the_Channel, Queen_Street_West, Queen_(Snow_White), RMS_Queen_Mary, Queen_Anne_style_architecture, Queen_of_Hearts_(Alice's_Adventures_in_Wonderland), Queen_(slang), Alex_Haley's_Queen + + + +-------------- + QUESTION: who plays ray barone? +-Canonic Entity : list_of_everybody_loves_raymond_characters +-Target Values : (list (description "Ray Romano, Michael Buble")) +-Candidate Entities: Richard_A._Barone | Four_Major_Plays_of_Chikamatsu, Plays_Live, Smegma_Plays_Merzbow_Plays_Smegma, As_the_Music_Plays + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what movies did robert blake play in? +-Canonic Entity : robert_blake,_baron_blake +-Target Values : (list (description "Alfalfa's Double") (description Busting) (description "Captain Spanky's Show Boat") (description "Bubbling Troubles") (description "Dancing Romeo") (description "Dad for a Day") (description "Bridal Suite") (description "All About Hash") (description "Coast to Coast") (description "Auto Antics")) +-Candidate Entities: Robert_Blake_(folk_singer), Robert_R._Blake, Robert_Blake_(actor), Robert_Blake_(admiral), Robert_O._Blake,_Jr., Robert_O._Blake, Robert_Blake_(dentist) | Sky_Movies_(New_Zealand) | Robert_Blake_(Medal_of_Honor), Robert_Blake, Blake | At_the_Movies_(U.S._TV_series) | Play_On! + +Additional entities + +Method 1 + + Robert_Blake_(actor) + +Method 2 + + + +-------------- + QUESTION: what tv shows are taped in new york city? +-Canonic Entity : new_york_city +-Target Values : (list (description "Flight of the Conchords")) +-Candidate Entities: + + + +-------------- + QUESTION: what did gerald ford die of? +-Canonic Entity : gerald_r._ford_presidential_museum +-Target Values : (list (description "Cardiovascular disease")) +-Candidate Entities: Gerald_Ford, Gerald_J._Ford_Stadium, Gerald_J._Ford, Gerald_R._Ford,_Jr.,_House, Gerald_R._Ford_International_Airport, President_Gerald_R._Ford,_Jr._Boyhood_Home, Gerald_R._Ford_School_of_Public_Policy, Death_and_state_funeral_of_Gerald_Ford, Gerald_R._Ford_Presidential_Library, USS_Gerald_R._Ford_(CVN-78), Gerald_R._Ford_Birthsite_and_Gardens + +Additional entities + +Method 1 + + Gerald_Ford + +Method 2 + + Gerald_Ford + + + +-------------- + QUESTION: where is the gobi desert located? +-Canonic Entity : gobi_desert +-Target Values : (list (description Mongolia)) +-Candidate Entities: + + + +-------------- + QUESTION: what kind of mental illness did howard hughes have? +-Canonic Entity : howard_hughes +-Target Values : (list (description Hypochondriasis) (description Mysophobia)) +-Candidate Entities: Mental_disorder, The_Myth_of_Mental_Illness, Thank_God_for_Mental_Illness | Howard_R._Hughes,_Sr. | Biologically_based_mental_illness, Mental_Illness_Awareness_Week, National_Alliance_on_Mental_Illness, Mental_illness_portrayed_in_media | Murder_of_Sophie_Hook, Principles_for_the_Protection_of_Persons_with_Mental_Illness | Mental_health_care_in_South_Africa, Mental_illness_in_film, Classification_of_mental_disorders, Mental_health_court, Mental_Illness_(album), Rethink_Mental_Illness | Mass_psychogenic_illness + +Additional entities + +Method 1 + + Classification_of_mental_disorders + + Mental_disorder + + Howard_R._Hughes,_Sr. + +Method 2 + + Mental_illness_in_film + + Howard_R._Hughes,_Sr. + + + +-------------- + QUESTION: who is prime minister of japan 2012? +-Canonic Entity : prime_minister_of_japan +-Target Values : (list (description "Shinzō Abe")) +-Candidate Entities: + + + +-------------- + QUESTION: what city was barack obama born in? +-Canonic Entity : barack_obama +-Target Values : (list (description Honolulu)) +-Candidate Entities: + + + +-------------- + QUESTION: what airport do you fly into to get to cabo san lucas? +-Canonic Entity : cabo_san_lucas +-Target Values : (list (description "Cabo San Lucas International Airport")) +-Candidate Entities: San_José_del_Cabo, ARA_Cabo_San_Antonio_(Q-42), Cabo_Pulmo_National_Park, Cabo_Frio_International_Airport | San_Germán–Cabo_Rojo_metropolitan_area | Los_Cabos_International_Airport | San_Lucas,_El_Paraíso, San_Lucas_Sacatepéquez, Hospital_Episcopal_San_Lucas, San_Lucas,_California | Cabo_(game) | San_Jose_International_Airport, San_Lucas_Ojitlán | Cabo_Girão | San_Lucas_Tolimán + +Additional entities + +Method 1 + + San_Jose_International_Airport + + Los_Cabos_International_Airport + + San_José_del_Cabo + +Method 2 + + San_Jose_International_Airport + + Los_Cabos_International_Airport + + San_José_del_Cabo + + + +-------------- + QUESTION: what countries speak spanish wikipedia? +-Canonic Entity : speak!!! +-Target Values : (list (description Spain)) +-Candidate Entities: Spanish_Wikipedia | Speak_(No-Man_album), Speak_(Godsmack_song) | Heavily_indebted_poor_countries, Income_tax_in_European_countries, FIBA_European_Championship_for_Small_Countries, Megadiverse_countries + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what films have johnny depp been in? +-Canonic Entity : johnny_depp +-Target Values : (list (description "The tourist") (description "The Rum Diary") (description "Alice in Wonderland") (description "Pirates of the Caribbean: On Stranger Tides") (description Rango) (description "Sweeney Todd: The Demon Barber of Fleet Street")) +-Candidate Entities: Johnny | The_Films_(band), JuntoBox_Films, Coronet_Films, English-language_Indian_films, Lionsgate_Films + +Additional entities + +Method 1 + + Johnny + + Lionsgate_Films + +Method 2 + + Lionsgate_Films + + + +-------------- + QUESTION: who runs china 2011? +-Canonic Entity : 2010–11_china_drought +-Target Values : (list (description "Wen Jiabao")) +-Candidate Entities: 2011_China_floods | Run_(cricket) | China, 2011–12_South_China_AA_season, Formula_Masters_China | Where_the_River_Runs_Black | 2011_ATP_China_Challenger_International + +Additional entities + +Method 1 + + China + +Method 2 + + 2011_China_floods + + China + + + +-------------- + QUESTION: what major airport is near destin florida? +-Canonic Entity : destin,_florida +-Target Values : (list (description "Northwest Florida Regional Airport") (description "Destin–Fort Walton Beach Airport")) +-Candidate Entities: Destin | Destin–Fort_Walton_Beach_Airport | Destin_Daniel_Cretton | Northwest_Florida_Regional_Airport | Destin_(song) | Southwest_Florida_International_Airport, Northwest_Florida_Beaches_International_Airport, Northeast_Florida_Regional_Airport, La_Florida_Airport_(Colombia), Fort_Walton_Beach,_Florida | Orlando_International_Airport, La_Florida_Airport_(Chile) | Major_Major_Major_Major, Major_(manga), Ann_Major + +Additional entities + +Method 1 + + Orlando_International_Airport + + Major_(manga) + + Destin–Fort_Walton_Beach_Airport + + Fort_Walton_Beach,_Florida + +Method 2 + + Orlando_International_Airport + + Destin–Fort_Walton_Beach_Airport + + Fort_Walton_Beach,_Florida + + + +-------------- + QUESTION: what country did vasco da gama came from? +-Canonic Entity : vasco_da_gama +-Target Values : (list (description Portugal)) +-Candidate Entities: + + + +-------------- + QUESTION: what is the current government of vietnam? +-Canonic Entity : south_vietnam +-Target Values : (list (description "Single-party state") (description "Communist state") (description "Socialist state") (description Dictatorship)) +-Candidate Entities: Vietnam, State_of_Vietnam, The_Vietnam_Veterans, Government_of_Free_Vietnam, Vietnam_War, Government_of_Vietnam, Voice_of_Vietnam, Corporate_law_in_Vietnam, Outline_of_Vietnam, Politics_of_Vietnam, List_of_Prime_Ministers_of_Vietnam, Prime_Minister_of_Vietnam, Deputy_Prime_Minister_of_Vietnam | West_Spitsbergen_Current, Current_divider, Partial_current, Wetting_current, Swift_Current + +Additional entities + +Method 1 + + Vietnam + +Method 2 + + Vietnam + + + +-------------- + QUESTION: what countries was the vietnam war between? +-Canonic Entity : vietnam_war +-Target Values : (list (description "South Vietnam") (description Australia) (description "New Zealand") (description "North Vietnam") (description "Pathet Lao") (description Philippines) (description "Khmer Republic") (description "United States of America") (description "Khmer Rouge") (description "North Korea") (description "Viet Cong") (description China) (description Thailand) (description "South Korea") (description "Kingdom of Laos") (description Taiwan) (description "Soviet Union")) +-Candidate Entities: Vietnam + +Additional entities + +Method 1 + + Vietnam + +Method 2 + + Vietnam + + + +-------------- + QUESTION: what to see outside of paris? +-Canonic Entity : paris,_arkansas +-Target Values : (list (description "Stade de France") (description "20th arrondissement") (description "American Graduate School in Paris") (description "Eiffel Tower") (description "Latin Quarter, Paris") (description "École Nationale des Ponts et Chaussées") (description Champs-Élysées) (description Gif-sur-Yvette) (description "Parc des Princes") (description "Collège Sévigné")) +-Candidate Entities: + + + +-------------- + QUESTION: what does nazis stand for? +-Canonic Entity : stand_by_for... +-Target Values : (list (description "National Socialist Party")) +-Candidate Entities: The_Family_Stand | Men_Heroes_and_Gay_Nazis, Nazis_in_fiction | Stand_Up_(For_the_Champions), Stand_in_the_Fire, Night_Stand_with_Dick_Dietrick | Fighters_against_Nazis_Medal, Auschwitz:_The_Nazis_and_'The_Final_Solution', Space_Nazis + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where is the nfl hall of fame located and when was the building opened? +-Canonic Entity : nascar_hall_of_fame +-Target Values : (list (description Canton)) +-Candidate Entities: OpenEd | NFL_Films, NFL_Europe, NFL_Street_2, 1969_NFL_playoffs, NFL_Prime_Time_'98 + +Additional entities + +Method 1 + + NFL_Films + +Method 2 + + NFL_Films + + + +-------------- + QUESTION: where did laura ingalls wilder live? +-Canonic Entity : laura_ingalls_wilder +-Target Values : (list (description Wisconsin)) +-Candidate Entities: Laura_Ingalls, Laura_Ingalls_(aviator), Charles_Ingalls + +Additional entities + +Method 1 + + Charles_Ingalls + +Method 2 + + Charles_Ingalls + + + +-------------- + QUESTION: who did jason segel date? +-Canonic Entity : jason_segel +-Target Values : (list (description "Linda Cardellini")) +-Candidate Entities: Harold_Segel, Segel | Jason, Jason_Lee_Scott, Jason_(ship) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where christopher columbus was born? +-Canonic Entity : christopher_columbus +-Target Values : (list (description Genoa)) +-Candidate Entities: Chris_Columbus_(filmmaker) + +Additional entities + +Method 1 + + Chris_Columbus_(filmmaker) + +Method 2 + + Chris_Columbus_(filmmaker) + + + +-------------- + QUESTION: who did kat graham play in parent trap? +-Canonic Entity : the_parent_trap_(film_series) +-Target Values : (list (description Jackie)) +-Candidate Entities: Kat_Graham | Vienna_Game,_Würzburger_Trap, Ruy_Lopez,_Tarrasch_Trap, Sicilian_Defence,_Smith-Morra_Gambit,_Siberian_Trap, Queen's_Gambit_Declined,_Elephant_Trap | Play_On! + +Additional entities + +Method 1 + + Kat_Graham + +Method 2 + + + +-------------- + QUESTION: what does sammy hagar sing? +-Canonic Entity : sammy_hagar +-Target Values : (list (description "Rock music") (description "Hard rock") (description "Heavy metal")) +-Candidate Entities: Hagar, Hagar_the_Womb, Hagar_Schon_Aaronson_Shrieve | Sing_Sing + +Additional entities + +Method 1 + + Hagar_Schon_Aaronson_Shrieve + +Method 2 + + Hagar_Schon_Aaronson_Shrieve + + + +-------------- + QUESTION: who plays young lex luthor in smallville? +-Canonic Entity : lex_luthor +-Target Values : (list (description "Michael Rosenbaum")) +-Candidate Entities: Smallville_(comics), Smallville_(season_10), Smallville + +Additional entities + +Method 1 + + Smallville_(comics) + +Method 2 + + Smallville + + + +-------------- + QUESTION: who is lamar odom playing for in 2012? +-Canonic Entity : lamar_odom +-Target Values : (list (description "Los Angeles Lakers")) +-Candidate Entities: + + + +-------------- + QUESTION: what are the main sports in new zealand? +-Canonic Entity : sports_broadcasting_contracts_in_new_zealand +-Target Values : (list (description "New Zealand national women's cricket team") (description "New Zealand national cricket team") (description "A1 Team New Zealand") (description "New Zealand Davis Cup team") (description "New Zealand Fed Cup team") (description "New Zealand national football team") (description "New Zealand men's national ice hockey team") (description "New Zealand national basketball team") (description "New Zealand national badminton team") (description "New Zealand women's national field hockey team")) +-Candidate Entities: The_Sports | Main_(river), South_Island_Main_Trunk_Railway + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who makes lois griffin voice? +-Canonic Entity : lois_griffin +-Target Values : (list (description "Alex Borstein")) +-Candidate Entities: Stewie_Kills_Lois_and_Lois_Kills_Stewie, Lois_Maffeo, Lois, Lois_T._Henderson | Voice_(2AM_album), Voice_acting, Share_of_voice, Voice_(Emi_Hinouchi_album), The_Voice_(Mike_Jones_album) + +Additional entities + +Method 1 + + Voice_acting + + Stewie_Kills_Lois_and_Lois_Kills_Stewie + +Method 2 + + Voice_acting + + Stewie_Kills_Lois_and_Lois_Kills_Stewie + + + +-------------- + QUESTION: what is the zip code for trenton ga? +-Canonic Entity : zip_code +-Target Values : (list (description 08610) (description 08611) (description 08618) (description 08608) (description 08603) (description 08602) (description 08601) (description 08607) (description 08605) (description 08604)) +-Candidate Entities: + + + +-------------- + QUESTION: what language do you speak in finland? +-Canonic Entity : speak!!! +-Target Values : (list (description "Saami, North Language") (description "Swedish Language") (description "Finnish Language") (description "Saami, Inari Language")) +-Candidate Entities: Speak_(No-Man_album) | Finland, Swedish-speaking_population_of_Finland | Speak_(Godsmack_song), Speak_for_Yourself, I_Don't_Speak_the_Language + +Additional entities + +Method 1 + + Finland + +Method 2 + + Finland + + + +-------------- + QUESTION: what kind of system of government does the united states have? +-Canonic Entity : federal_government_of_the_united_states +-Target Values : (list (description "Presidential system") (description "Federal republic") (description "Representative democracy") (description "Two-party system") (description "Constitutional republic") (description Republic)) +-Candidate Entities: Government | Kind_(type_theory), Gifts_in_kind | Westminster_system | A_Kind_of_Alchemy + +Additional entities + +Method 1 + + Westminster_system + + Government + +Method 2 + + Government + + + +-------------- + QUESTION: what inventions did da vinci made? +-Canonic Entity : cultural_references_to_leonardo_da_vinci +-Target Values : (list (description "Double hull") (description "Viola organista")) +-Candidate Entities: + + + +-------------- + QUESTION: what was lebron james rookie year? +-Canonic Entity : lebron_james +-Target Values : (list (description "2003–04 NBA season")) +-Candidate Entities: Rookie_of_the_Year_(award), Michel_Brière_Rookie_of_the_Year_Award, NASCAR_Rookie_of_the_Year, Indianapolis_500_Rookie_of_the_Year, Rookie_of_the_Year, Rookie_of_the_Year_(album), MLS_Rookie_of_the_Year_Award, Rookie_of_the_Year_(film), CHL_Rookie_of_the_Year, NBA_Rookie_of_the_Year_Award, Baseball_America_Rookie_of_the_Year, CPBL_Rookie_of_the_Year_Award, Rookie_list_(Australian_Football_League), Sporting_News_Rookie_of_the_Year_Award, Rookie, NBA_Development_League_Rookie_of_the_Year_Award, Rookie_of_the_Year_(band), WNBA_Rookie_of_the_Year_Award + +Additional entities + +Method 1 + + NBA_Rookie_of_the_Year_Award + +Method 2 + + NBA_Rookie_of_the_Year_Award + + + +-------------- + QUESTION: what are shirley temple kids names? +-Canonic Entity : shirley_temple +-Target Values : (list (description "Charles Alden Black Jr.") (description "Lori Black") (description "Linda Susan Agar")) +-Candidate Entities: + + + +-------------- + QUESTION: who does malcom floyd play for? +-Canonic Entity : malcom_floyd +-Target Values : (list (description "San Diego Chargers")) +-Candidate Entities: + + + +-------------- + QUESTION: what position does terrell owens play? +-Canonic Entity : terrell_owens +-Target Values : (list (description "Wide Receiver")) +-Candidate Entities: A.L._"Doodle"_Owens + + + +-------------- + QUESTION: what is julia gillard famous for? +-Canonic Entity : julia_gillard +-Target Values : (list (description "Prime minister")) +-Candidate Entities: Gillard | Julia_Child | Lisa_Picard_Is_Famous | First_Gillard_Ministry, Gillard_(kart_manufacturer) | Julia_the_Younger | Famous_Music, Rich_and_Famous_(1981_film), The_Famous_Five_(1990s_TV_series), Famous_Dave's + +Additional entities + +Method 1 + + First_Gillard_Ministry + +Method 2 + + First_Gillard_Ministry + + + +-------------- + QUESTION: what did kourtney kardashian go to college for? +-Canonic Entity : kourtney_kardashian +-Target Values : (list (description Theatre)) +-Candidate Entities: Kardashian | Burnley_College, Clydebank_College, Darlington_College, Kilgore_College, Gorseinon_College + +Additional entities + +Method 1 + + Kardashian + +Method 2 + + Kardashian + + + +-------------- + QUESTION: what are the four official languages of nigeria? +-Canonic Entity : official_bilingualism_in_canada +-Target Values : (list (description "English Language")) +-Candidate Entities: Commissioner_of_Official_Languages, Office_of_the_Commissioner_of_Official_Languages, Official_Languages_Act_2003, Official_languages_of_Puducherry, List_of_official_languages | Nigeria, Languages_of_Nigeria | Languages_of_Russia, United_Africa_Company_of_Nigeria, University_of_Nigeria,_Nsukka, Foreign_relations_of_Nigeria, Languages_of_Africa, Outline_of_Nigeria, Languages_of_the_European_Union | Most_Beautiful_Girl_in_Nigeria + +Additional entities + +Method 1 + + Languages_of_Africa + + Office_of_the_Commissioner_of_Official_Languages + + Nigeria + +Method 2 + + Languages_of_Africa + + Nigeria + + + +-------------- + QUESTION: where is bergen belsen concentration camp located? +-Canonic Entity : bergen-belsen_concentration_camp +-Target Values : (list (description Germany)) +-Candidate Entities: Belsen_(Bergen) + +Additional entities + +Method 1 + + Belsen_(Bergen) + +Method 2 + + Belsen_(Bergen) + + + +-------------- + QUESTION: who was louis xvi? +-Canonic Entity : french_decorative_styles_during_the_reign_of_louis_xvi_(1774–91) +-Target Values : (list (description "King of France")) +-Candidate Entities: Triplemanía_XVI + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what was the name of tecumseh brother? +-Canonic Entity : tecumseh,_kansas +-Target Values : (list (description Tenskwatawa)) +-Candidate Entities: + + + +-------------- + QUESTION: what did donna summers die from? +-Canonic Entity : summers,_arkansas +-Target Values : (list (description "Lung cancer") (description Cancer)) +-Candidate Entities: Donna_Summer + +Additional entities + +Method 1 + + Donna_Summer + +Method 2 + + + +-------------- + QUESTION: what year did allen iverson get married? +-Canonic Entity : allen_iverson +-Target Values : (list (description 8/3/2001)) +-Candidate Entities: Kenneth_E._Iverson + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where was selena gomez really born? +-Canonic Entity : selena_gomez +-Target Values : (list (description "Grand Prairie")) +-Candidate Entities: Murder_of_Selena, Selena, Selena_(soundtrack), Sonia_&_Selena, Selena_(film) + +Additional entities + +Method 1 + + Selena + +Method 2 + + Selena + + + +-------------- + QUESTION: who did lamar odom sign with? +-Canonic Entity : lamar_odom +-Target Values : (list (description "Los Angeles Clippers")) +-Candidate Entities: + + + +-------------- + QUESTION: what is the best neighborhood to live in in philadelphia? +-Canonic Entity : live_in_philadelphia_dec._1997 +-Target Values : (list (description "Rittenhouse Square")) +-Candidate Entities: Philadelphia | African-American_neighborhood | List_of_Philadelphia_neighborhoods | There_Goes_the_Neighborhood_(film), The_Philadelphia_study | F._Q._Story_Neighborhood_Historic_District + +Additional entities + +Method 1 + + Philadelphia + +Method 2 + + Philadelphia + + + +-------------- + QUESTION: when did the battle of thermopylae occur? +-Canonic Entity : battle_of_thermopylae +-Target Values : (list (description Greece)) +-Candidate Entities: Thermopylae, Thermopylae_(clipper), Leonidas_at_Thermopylae + +Additional entities + +Method 1 + + Thermopylae + +Method 2 + + Thermopylae + + + +-------------- + QUESTION: where did eleanor roosevelt go to school? +-Canonic Entity : eleanor_roosevelt_high_school_(greenbelt,_maryland) +-Target Values : (list (description "Allenswood Academy") (description "The New School")) +-Candidate Entities: Anna_Roosevelt_Halsted, Roosevelt_Institute + + + +-------------- + QUESTION: what do you say after a sneeze in german? +-Canonic Entity : fred_ott's_sneeze +-Target Values : (list (description Wymysorys)) +-Candidate Entities: Sneeze + +Additional entities + +Method 1 + +Method 2 + + Sneeze + + + +-------------- + QUESTION: what country does turkey trade with? +-Canonic Entity : turkey +-Target Values : (list (description Albania) (description Algeria)) +-Candidate Entities: + + + +-------------- + QUESTION: where is husqvarna 235 made? +-Canonic Entity : husqvarna +-Target Values : (list (description "United States of America")) +-Candidate Entities: Quebec_Route_235, Interstate_235_(Oklahoma) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what do people speak in singapore? +-Canonic Entity : speak!!! +-Target Values : (list (description "Malay Language") (description "Tamil Language") (description "Standard Mandarin") (description "English Language")) +-Candidate Entities: Speak_(No-Man_album), The_People_Speak_(film), Speak_Good_English_Movement, Speak_(Godsmack_song) | Singapore | Speak_for_Yourself, The_People_Speak, Speak_(band), Speak_(film), Speak_of_the_Devil_(book) + +Additional entities + +Method 1 + + Singapore + +Method 2 + + + +-------------- + QUESTION: what is the currency in slovakia 2012? +-Canonic Entity : currency +-Target Values : (list (description Euro)) +-Candidate Entities: 2012_First_FIA_GT1_Slovakia_round, Slovakia, Outline_of_Slovakia + +Additional entities + +Method 1 + + Slovakia + +Method 2 + + Slovakia + + + +-------------- + QUESTION: what is the mascot of dartmouth college? +-Canonic Entity : dartmouth_college +-Target Values : (list (description "Dartmouth Moose") (description "Keggy the Keg")) +-Candidate Entities: Dartmouth_Academy + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what country is next to russia? +-Canonic Entity : georgia–russia_relations +-Target Values : (list (description Ukraine) (description Belarus) (description Kazakhstan) (description Poland) (description Lithuania) (description Azerbaijan) (description Mongolia) (description "North Korea") (description Georgia) (description Norway)) +-Candidate Entities: + + + +-------------- + QUESTION: who played jacob black? +-Canonic Entity : jacob_black +-Target Values : (list (description "Taylor Lautner")) +-Candidate Entities: Jacob_(clothing_retailer), Jacob_J._Hinlopen | Twilight_as_Played_by_The_Twilight_Singers | Jack_Black | Jacob_(film), Jacob_(Lost), Jacob, Jacob_Kimball,_Jr., Irène_Jacob | Played, Played_in_Britain, The_Band_Played_On, And_the_Bands_Played_On + +Additional entities + +Method 1 + + Jack_Black + +Method 2 + + Jack_Black + + + +-------------- + QUESTION: who pays social security and medicare? +-Canonic Entity : social_security_(united_states) +-Target Values : (list (description "Centers for Medicare and Medicaid Services")) +-Candidate Entities: Pays_(France) | Medicare_(Australia), Medicare_Sustainable_Growth_Rate + +Additional entities + +Method 1 + + Medicare_(Australia) + +Method 2 + + Medicare_(Australia) + + + +-------------- + QUESTION: what movies star adam sandler? +-Canonic Entity : adam_sandler +-Target Values : (list (description "Funny People") (description "Anger Management") (description "Happy Gilmore") (description "Big Daddy") (description "50 First Dates") (description Click) (description Bulletproof) (description "Billy Madison") (description "Eight Crazy Nights") (description Airheads)) +-Candidate Entities: STAR_Movies, STAR_Chinese_Movies | Sandler, Sandler_and_Young + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what university did bill clinton graduated from? +-Canonic Entity : bill_clinton +-Target Values : (list (description "Yale Law School")) +-Candidate Entities: Clinton_Foundation, Hillary_Rodham_Clinton + +Additional entities + +Method 1 + + Clinton_Foundation + +Method 2 + + Clinton_Foundation + + + +-------------- + QUESTION: who plays jackson gibbs on ncis? +-Canonic Entity : ncis_(tv_series) +-Target Values : (list (description "Ralph H. Waite")) +-Candidate Entities: NCIS_(soundtrack), NCIS_(season_7), NCIS_(season_6), NCIS_(season_1), NCIS_(season_2), NCIS_(season_4), NCIS_(season_3), NCIS_(season_11), NCIS_(season_5) | Leroy_Jethro_Gibbs | NCIS_(season_8), NCIS_(season_9), NCIS_(season_10) | Terry_Gibbs_Plays_Jewish_Melodies_in_Jazztime | List_of_NCIS_characters + +Additional entities + +Method 1 + + List_of_NCIS_characters + +Method 2 + + Leroy_Jethro_Gibbs + + NCIS_(season_6) + + NCIS_(season_10) + + List_of_NCIS_characters + + + +-------------- + QUESTION: where did president kennedy go to school? +-Canonic Entity : president_kennedy_school_and_community_college +-Target Values : (list (description "Riverdale Country School") (description "Stanford Graduate School of Business") (description "Stanford University") (description "Canterbury School") (description "London School of Economics") (description "Choate Rosemary Hall") (description "Harvard University") (description "Edward Devotion School") (description "Harvard College") (description "Princeton University")) +-Candidate Entities: Robert_F._Kennedy, John_F._Kennedy, Assassination_of_John_F._Kennedy, Kennedy, Jacqueline_Kennedy_Onassis + +Additional entities + +Method 1 + + John_F._Kennedy + +Method 2 + + John_F._Kennedy + + + +-------------- + QUESTION: when did the ny knicks last win a championship? +-Canonic Entity : new_york_knicks +-Target Values : (list (description "1973 NBA Finals")) +-Candidate Entities: + + + +-------------- + QUESTION: what happened at fukushima daiichi nuclear plant? +-Canonic Entity : fukushima_daiichi_nuclear_disaster +-Target Values : (list (description "2011 Tōhoku earthquake and tsunami")) +-Candidate Entities: Fukushima | Nuclear_power_in_Japan, Nuclear_safety_and_security | Fukushima,_Fukushima | Nuclear_reactor_accidents_in_the_United_States, Japanese_nuclear_incidents | How_It_Happened + +Additional entities + +Method 1 + + Fukushima + + Fukushima,_Fukushima + + Nuclear_reactor_accidents_in_the_United_States + + Nuclear_power_in_Japan + +Method 2 + + Fukushima + + Fukushima,_Fukushima + + Japanese_nuclear_incidents + + Nuclear_power_in_Japan + + + +-------------- + QUESTION: who was louis kossuth? +-Canonic Entity : kossuth,_mississippi +-Target Values : (list (description Politician) (description Lawyer)) +-Candidate Entities: + + + +-------------- + QUESTION: what country do arabic people come from? +-Canonic Entity : andalusian_arabic +-Target Values : (list (description Tunisia) (description Eritrea) (description "Saudi Arabia") (description Comoros)) +-Candidate Entities: + + + +-------------- + QUESTION: when did the red sox win the pennant? +-Canonic Entity : yankees–red_sox_rivalry +-Target Values : (list (description "1918 World Series") (description "2007 World Series") (description "2004 World Series") (description "1903 World Series") (description "1912 World Series") (description "1916 World Series") (description "1915 World Series")) +-Candidate Entities: Yarmouth–Dennis_Red_Sox, Boston_Red_Sox, Gulf_Coast_League_Red_Sox, Dominican_Summer_League_Red_Sox, Red_Sox_Nation, 2007_Boston_Red_Sox_season, Boston_Red_Sox_Radio_Network, Brantford_Red_Sox, 1967_Boston_Red_Sox_season, 2013_Boston_Red_Sox_season, 1946_Boston_Red_Sox_season | Pennant_(commissioning) | 1999_Boston_Red_Sox_season, Red_Sox_Rule, 2012_Boston_Red_Sox_season, Chicago_White_Sox, Pawtucket_Red_Sox | For_the_Win, WIN_(TV_station), Win_Win_(film) + +Additional entities + +Method 1 + + Chicago_White_Sox + +Method 2 + + Chicago_White_Sox + + Boston_Red_Sox + + + +-------------- + QUESTION: where did harry truman die? +-Canonic Entity : harry_s._truman_national_historic_site +-Target Values : (list (description "Kansas City")) +-Candidate Entities: Harry_S._Truman_Scholarship, Harry_S._Truman, Harry_S._Truman_Farm_Home, Harry_S._Truman_Historic_District, Harry_S_Truman_Birthplace_State_Historic_Site, Harry_S._Truman_Presidential_Library_and_Museum, Truman_Reservoir, Truman_College, The_Truman_Show, Second_inauguration_of_Harry_S._Truman, Truman_National_Security_Project, Harry_Randall_Truman, Harry_Truman_(song), Harry_S._Truman_Little_White_House, Margaret_Truman, Harry_S._Truman_High_School_(Taylor,_Michigan), Louis_W._Truman, USS_Harry_S._Truman_(CVN-75) + +Additional entities + +Method 1 + + Harry_S._Truman + +Method 2 + + Harry_S._Truman + + + +-------------- + QUESTION: what was prince charles last name? +-Canonic Entity : charles,_prince_of_wales +-Target Values : (list (description Mountbatten-Windsor)) +-Candidate Entities: Charles_H._Prince, Charles_Prince, Charles_A._Prince, Prince_Charles_Alexander, Charles_Prince_Airport, Charles_Edward_Stuart + +Additional entities + +Method 1 + + Charles_Edward_Stuart + +Method 2 + + Charles_Edward_Stuart + + + +-------------- + QUESTION: what was reagan before president? +-Canonic Entity : ronald_reagan +-Target Values : (list (description "Governor of California")) +-Candidate Entities: + + + +-------------- + QUESTION: what type of legal system does italy have? +-Canonic Entity : substructural_type_system +-Target Values : (list (description "Constitutional republic") (description "Parliamentary republic") (description "Unitary state")) +-Candidate Entities: Law_of_Portugal, Legal_system_of_Macau | United_States_legal_system, Judicial_system_of_Cuba | Law_of_Hong_Kong + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where did bernie madoff work? +-Canonic Entity : bernard_madoff +-Target Values : (list (description "Bernard L. Madoff Investment Securities")) +-Candidate Entities: + + + +-------------- + QUESTION: what website did mark zuckerberg co founder? +-Canonic Entity : mark_zuckerberg +-Target Values : (list (description Facebook)) +-Candidate Entities: Zuckerberg | Founder_effect, Founder_Group, Founder_Technology, The_Founder, Peking_University_Founder_Technology_College + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what bass does jared followill use? +-Canonic Entity : kings_of_leon +-Target Values : (list (description "bass guitar")) +-Candidate Entities: Bass_(fish), Bass_(sound) | Jared_C._Troop, Jared_W._Williams, Jared_V._Peck + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who played captain kirk in star trek? +-Canonic Entity : james_t._kirk +-Target Values : (list (description "Jimmy Bennett") (description "Chris Pine") (description "William Shatner")) +-Candidate Entities: Technology_in_Star_Trek, Star_Trek_Into_Darkness, Star_Trek_(film), Star_Trek:_The_Original_Series, Star_Trek_crossovers, Star_Trek_(soundtrack), Star_Trek:_Voyager, Star_Trek_DAC, Star_Trek:_Phase_II_(fan_series), Star_Trek_uniforms, Star_Trek:_The_Animated_Series, Star_Trek_(DC_Comics), Star_Trek, The_Star_Trek_Encyclopedia, Star_Trek_Generations, Star_Trek_(script_game), Theme_from_Star_Trek, List_of_Star_Trek_characters | Captain_Kirk_Douglas + +Additional entities + +Method 1 + + Star_Trek_Into_Darkness + +Method 2 + + Star_Trek:_The_Original_Series + + + +-------------- + QUESTION: what type of currency does the us have? +-Canonic Entity : currency +-Target Values : (list (description "United States dollar")) +-Candidate Entities: Type_88_tank_(China), Bugatti_Type_35, Bugatti_Type_51, Bugatti_Type_13, Type_of_service + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what currency does thailand use? +-Canonic Entity : currency +-Target Values : (list (description "Thai baht")) +-Candidate Entities: Thailand + +Additional entities + +Method 1 + + Thailand + +Method 2 + + Thailand + + + +-------------- + QUESTION: where is canadian county oklahoma? +-Canonic Entity : canadian,_oklahoma +-Target Values : (list (description "Oklahoma City, OK Metropolitan Statistical Area") (description Oklahoma)) +-Candidate Entities: Canadian_County,_Oklahoma, Day_County,_Oklahoma_Territory, Oklahoma_County,_Oklahoma | North_Canadian_River | Law_of_Oklahoma + +Additional entities + +Method 1 + +Method 2 + + Oklahoma_County,_Oklahoma + + + +-------------- + QUESTION: in which province islamabad is located? +-Canonic Entity : islamabad +-Target Values : (list (description Pakistan)) +-Candidate Entities: Karabük_Province, Asunción_Province, Isfahan_Province, Daykundi_Province + +Additional entities + +Method 1 + + Isfahan_Province + +Method 2 + + + +-------------- + QUESTION: what does rob kardashian do for living? +-Canonic Entity : rob_kardashian +-Target Values : (list (description "TV Personality")) +-Candidate Entities: Rob_(TV_series) | Kardashian | Living_(New_Zealand), The_Living_End + +Additional entities + +Method 1 + + Kardashian + +Method 2 + + Kardashian + + + +-------------- + QUESTION: where is oceania on a map? +-Canonic Entity : map_(band) +-Target Values : (list (description "Pacific Ocean")) +-Candidate Entities: Waldseemüller_map | Oceania_(song) | The_National_Map | Gurdwaras_in_Oceania, FIBA_Oceania_Youth_Tournament + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what did nintendo announce at e3 2012? +-Canonic Entity : electronic_entertainment_expo_2012 +-Target Values : (list (description "NINTENDO CO LTD Common Stock")) +-Candidate Entities: Nintendo | 2012_E3_Harelbeke + +Additional entities + +Method 1 + + Nintendo + +Method 2 + + Nintendo + + + +-------------- + QUESTION: what can you do in palm springs ca? +-Canonic Entity : palm_springs_art_museum +-Target Values : (list (description "The Fabulous Palm Springs Follies") (description "Palm Springs Air Museum") (description "Living Desert Zoo and Gardens") (description "Palm Springs Walk of Stars") (description "The Palm Springs Art Museum") (description "Knott's Soak City") (description "Tahquitz Canyon") (description "Palm Springs Aerial Tramway") (description "Moorten Botanical Garden and Cactarium") (description "San Jacinto Mountains")) +-Candidate Entities: Palm_Springs,_California, Palm_Springs,_Florida, North_Palm_Springs,_California, Palm_Springs_International_Airport, Palm_Springs_North,_Florida, Palm_Springs_Air_Museum, Palm_Springs_International_Festival_of_Short_Films, Palm_Springs_Stadium, Palm_Springs_Unified_School_District, Palm_Springs_Power, Palm_Springs_Aerial_Tramway, Vacationing_in_Palm_Springs, Palm_Springs_Walk_of_Stars, The_Fabulous_Palm_Springs_Follies, Racquet_Club_of_Palm_Springs, Palm_Springs_(film), Palm_(PDA) + +Additional entities + +Method 1 + + Palm_Springs,_California + +Method 2 + + Palm_Springs,_California + + + +-------------- + QUESTION: where is red lake ontario? +-Canonic Entity : red_lake,_ontario +-Target Values : (list (description Canada)) +-Candidate Entities: Red_Cedar_Lake_(Ontario), Lake_Ontario, Red_Lake_(Orlando), Brule_Lake_(Ontario) | Red_Lake,_Minnesota, Red_Lake_Falls,_Minnesota, Red_Lake_Falls_Township,_Red_Lake_County,_Minnesota | Engagements_on_Lake_Ontario, Red_Squirrel_Lake, Elliot_Lake, Red_Hills_Lake_County_AVA, Rice_Lake_(Ontario), Sunfish_Lake_(Ontario) | Red_Rock,_Ontario | Savant_Lake | Red_Rock_Indian_Band, Red_Lake_Road,_Ontario | Sharbot_Lake + +Additional entities + +Method 1 + + Red_Lake_Road,_Ontario + + Red_Rock,_Ontario + + Savant_Lake + + Elliot_Lake + +Method 2 + + Red_Lake_Road,_Ontario + + Elliot_Lake + + Savant_Lake + + Red_Rock,_Ontario + + + +-------------- + QUESTION: when was the last time the ny giants played in the superbowl? +-Canonic Entity : new_york_brickley_giants +-Target Values : (list (description "Super Bowl XXV")) +-Candidate Entities: New_York_Giants_(soccer), San_Francisco_Giants + +Additional entities + +Method 1 + + San_Francisco_Giants + +Method 2 + + San_Francisco_Giants + + + +-------------- + QUESTION: who is adam sandler? +-Canonic Entity : adam_sandler +-Target Values : (list (description Actor)) +-Candidate Entities: Sandler + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who was the president of pakistan in 1980? +-Canonic Entity : president_of_pakistan +-Target Values : (list (description "Muhammad Zia-ul-Haq")) +-Candidate Entities: Pakistan + +Additional entities + +Method 1 + + Pakistan + +Method 2 + + Pakistan + + + +-------------- + QUESTION: which college did barack obama attend? +-Canonic Entity : barack_obama,_sr. +-Target Values : (list (description "Columbia University")) +-Candidate Entities: Barack_Obama, Barack_Obama_"Joker"_poster, Campaign_rhetoric_of_Barack_Obama, Barack_Obama_in_comics, Economic_policy_of_Barack_Obama, Foreign_policy_of_the_Barack_Obama_administration, Barack_Obama_assassination_plot_in_Tennessee, List_of_topics_related_to_Barack_Obama + +Additional entities + +Method 1 + + Barack_Obama + +Method 2 + + Barack_Obama + + + +-------------- + QUESTION: where was st elizabeth ann seton born? +-Canonic Entity : elizabeth_ann_seton +-Target Values : (list (description "New York City")) +-Candidate Entities: + + + +-------------- + QUESTION: what does the adriatic sea border? +-Canonic Entity : adriatic_sea +-Target Values : (list (description "Kvarner Gulf") (description Pag)) +-Candidate Entities: Adriatic_campaign_of_1807–14, United_World_College_of_the_Adriatic, Operational_Zone_of_the_Adriatic_Littoral | Malaysia–Philippines_border, Finnish–Swedish_border, Norway–Russia_border, Border_Region, Indonesia–Singapore_border, Indonesia–Thailand_border + +Additional entities + +Method 1 + + Adriatic_campaign_of_1807–14 + +Method 2 + + Operational_Zone_of_the_Adriatic_Littoral + + + +-------------- + QUESTION: what time do the polls open in indiana 2012? +-Canonic Entity : opinion_polls_about_9/11_conspiracy_theories +-Target Values : (list (description UTC−06:00)) +-Candidate Entities: HMV's_Poll_of_Polls | Time_in_Indiana, 2012_Royal_Indian_Open | 2012_Moselle_Open, 2012_Women's_Australian_Open_(squash), 2012_Men's_Australian_Open_(squash), 2012_Qatar_Total_Open, 2012–13_United_States_Open_Cup_for_Arena_Soccer, 2012_US_Open_(tennis), 2012_Poznań_Open | Indiana | 2012_French_Open | A_Head_in_the_Polls | Indiana_gubernatorial_election,_2012, 2012_Barcelona_Open_Banc_Sabadell + +Additional entities + +Method 1 + + Indiana + +Method 2 + + Indiana + + + +-------------- + QUESTION: what teams played in the 2010 stanley cup? +-Canonic Entity : stanley_cup_finals +-Target Values : (list (description "Chicago Blackhawks")) +-Candidate Entities: Stanley_Cup_playoffs, 2002_Stanley_Cup_playoffs, 1924_Stanley_Cup_playoffs, 1997_Stanley_Cup_playoffs, CEV_Cup, 1998_Stanley_Cup_playoffs, 2010_Stanley_Cup_playoffs, Stanley_Cup, Women's_CEV_Cup | Twilight_as_Played_by_The_Twilight_Singers, Played, Played_in_Britain, The_Band_Played_On, And_the_Bands_Played_On + +Additional entities + +Method 1 + + Stanley_Cup_playoffs + +Method 2 + + Stanley_Cup + + + +-------------- + QUESTION: what colony is john adams from? +-Canonic Entity : john_adams,_sr. +-Target Values : (list (description Massachusetts)) +-Candidate Entities: John_Bodkin_Adams, John_Adams_Birthplace, John_T._Adams, Colony_Township,_Adams_County,_Iowa, John_H._Adams | The_Colony_(U.S._season_1) | John_Adams_(composer), John_Quincy_Adams_II, Bert_Adams, Adams_National_Historical_Park, John_Quincy_Adams_Tower, John_Adams_Tower, John_Jay_Adams + +Additional entities + +Method 1 + + John_Adams_Birthplace + + Adams_National_Historical_Park + +Method 2 + + John_Quincy_Adams_II + + + +-------------- + QUESTION: what countries do germany border? +-Canonic Entity : czech_republic–germany_border +-Target Values : (list (description Netherlands) (description "Czech Republic") (description Salzburg) (description Denmark) (description Poland) (description Luxembourg) (description France) (description Belgium) (description Austria) (description Switzerland)) +-Candidate Entities: Inner_German_border, Norway–Russia_border, Finnish–Swedish_border, Indonesia–Thailand_border, Indonesia–Singapore_border, Indonesia–Vietnam_border, List_of_sets_of_four_countries_that_border_one_another, Slovakia–Ukraine_border, List_of_countries_that_border_only_one_other_country + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who does russia trade with the most? +-Canonic Entity : list_of_trade_unions_in_russia +-Target Values : (list (description Uzbekistan)) +-Candidate Entities: California_hide_trade + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what language do the assyrians speak? +-Canonic Entity : speak!!! +-Target Values : (list (description "Akkadian language")) +-Candidate Entities: Assyrians_in_Lebanon, Assyrians_in_Israel | Speak_(No-Man_album) | Assyrians_in_Iran, Assyrians_in_Russia, Assyrians_in_the_United_Kingdom, Assyrians_in_France | Speak_(Godsmack_song) | Assyrians_in_Iraq, Assyrians_in_Turkey | Speak_for_Yourself | The_Last_Assyrians, I_Don't_Speak_the_Language, Speak_of_the_Devil_(book) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who plays mary jane in spiderman 3? +-Canonic Entity : spider-man_loves_mary_jane +-Target Values : (list (description "Kirsten Dunst")) +-Candidate Entities: Mary_Jane_Girls, Mary_Jane_Watson, Mary_Jane_Holmes | Spiderman_of_the_Rings | Mary_Jane_Colter_buildings, Alternative_versions_of_Mary_Jane_Watson, Jane_G._Austin, Mary_Beats_Jane, Mary_Jane_(shoe) | Four_Major_Plays_of_Chikamatsu | Spider-Man_3 | As_the_Music_Plays, Duke_Ellington_Plays_Mary_Poppins | Mary_Sears_(swimmer), Mary_Jane_Seaman, What's_the_New_Mary_Jane | Kounotori_3, 3_+_3 + +Additional entities + +Method 1 + + Alternative_versions_of_Mary_Jane_Watson + + Spider-Man_3 + + Mary_Jane_Watson + +Method 2 + + Alternative_versions_of_Mary_Jane_Watson + + Spider-Man_3 + + Mary_Jane_Watson + + + +-------------- + QUESTION: where was abraham lincoln buried? +-Canonic Entity : the_papers_of_abraham_lincoln +-Target Values : (list (description "Oak Ridge Cemetery")) +-Candidate Entities: Lincoln_(2012_film) | Buried_by_the_Buzzzz, Buried_(film), Buried_Child, Buried_penis, Eveready_Harton_in_Buried_Treasure + +Additional entities + +Method 1 + + Lincoln_(2012_film) + +Method 2 + + Lincoln_(2012_film) + + + +-------------- + QUESTION: who was the grandson of king david's father? +-Canonic Entity : grandson,_switzerland +-Target Values : (list (description Solomon)) +-Candidate Entities: + + + +-------------- + QUESTION: when president lincoln was elected? +-Canonic Entity : assassination_of_abraham_lincoln +-Target Values : (list (description "Abraham Lincoln 1861 presidential inauguration")) +-Candidate Entities: Elected_(song) | USS_President_Lincoln_(1907), Lincoln_Motor_Company + +Additional entities + +Method 1 + + Lincoln_Motor_Company + +Method 2 + + Lincoln_Motor_Company + + + +-------------- + QUESTION: when was the last time the oakland raiders won the super bowl? +-Canonic Entity : oakland_raiders +-Target Values : (list (description "Super Bowl XV")) +-Candidate Entities: Super_Bowl, Super_Bowl_XXXVII, Super_Bowl_XV, Super_Bowl_XVIII, Super_Bowl_II, Super_Bowl_XI, Super_Bowl_XLIII, Super_Bowl_XXXVIII, Super_Bowl_X, Super_Bowl_VIII + +Additional entities + +Method 1 + + Super_Bowl + +Method 2 + + Super_Bowl + + + +-------------- + QUESTION: what did theodore roosevelt do that brought him to national prominence? +-Canonic Entity : theodore_roosevelt +-Target Values : (list (description "President of the United States")) +-Candidate Entities: Alice_Hathaway_Lee_Roosevelt | Brought_Back_to_Life, I_Brought_You_My_Bullets,_You_Brought_Me_Your_Love, Brought_to_Light, Brought_to_trial, Dance_with_the_One_That_Brought_You + +Additional entities + +Method 1 + + Alice_Hathaway_Lee_Roosevelt + +Method 2 + + Alice_Hathaway_Lee_Roosevelt + + + +-------------- + QUESTION: where is devon sawa now? +-Canonic Entity : devon_sawa +-Target Values : (list (description Vancouver)) +-Candidate Entities: Sawa, Sawa_(singer) | Devon, Devon_(Milford) + +Additional entities + +Method 1 + + Devon + +Method 2 + + + +-------------- + QUESTION: who did the cleveland browns draft? +-Canonic Entity : cleveland_browns +-Target Values : (list (description "Jeff Faine") (description "Kellen Winslow II") (description "Braylon Edwards") (description "Kamerion Wimbley") (description "Brady Quinn") (description "Joe Thomas")) +-Candidate Entities: + + + +-------------- + QUESTION: who was marilyn monroe's parents? +-Canonic Entity : marilyn_monroe +-Target Values : (list (description "Charles Stanley Gifford") (description "Martin Edward Mortensen") (description "Gladys Pearl Baker")) +-Candidate Entities: My_Parents_Are_Aliens, Parents_for_Choice_in_Education, Parents_(TV_series), Les_Parents_terribles_(film), Parents_(magazine) + +Additional entities + +Method 1 + + Les_Parents_terribles_(film) + +Method 2 + + + +-------------- + QUESTION: what to do when traveling to london? +-Canonic Entity : traveling_(basketball) +-Target Values : (list (description "Regent's Park") (description "Tower of London") (description "Buckingham Palace") (description "Palace of Westminster") (description "London Eye") (description "Tower Bridge") (description "Hyde Park") (description "Westminster Abbey") (description "St Paul's Cathedral") (description "Trafalgar Square")) +-Candidate Entities: SS_London_(1864), Greater_London, London_Records, London_Pass, London + +Additional entities + +Method 1 + + London + +Method 2 + + + +-------------- + QUESTION: where is shoreditch? +-Canonic Entity : shoreditch +-Target Values : (list (description London)) +-Candidate Entities: + + + +-------------- + QUESTION: what should i do today in houston? +-Canonic Entity : today_(the_smashing_pumpkins_song) +-Target Values : (list (description "George R. Brown Convention Center") (description "Sam Houston Race Park") (description "Rothko Chapel") (description "Kemah Boardwalk") (description "Space Center Houston") (description "Downtown Aquarium, Houston") (description "Hanna–Barbera Land") (description "Bayou Bend") (description "SplashTown Houston") (description "Houston Zoo")) +-Candidate Entities: Today_(EP) | Edwin_J._Houston | Today_in_L.A., The_Word_For_Today + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where does the spanish language come from? +-Canonic Entity : spanish_as_a_second_language +-Target Values : (list (description Spain)) +-Candidate Entities: + + + +-------------- + QUESTION: when do they change the time in london? +-Canonic Entity : 2:00pm_time_for_change +-Target Values : (list (description "Greenwich Mean Time")) +-Candidate Entities: London_Climate_Change_Agency, Identity_and_change | Time_(magazine) | A_Change_of_Seasons_(film) | SS_London_(1864), London | Change_It_All | Summer_Time_in_Europe + + + +-------------- + QUESTION: where does ryan lochte live now? +-Canonic Entity : ryan_lochte +-Target Values : (list (description Gainesville)) +-Candidate Entities: Lochte_(surname) | Live_(James_Taylor_album) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what timezone is tennessee nashville? +-Canonic Entity : nashville,_tennessee +-Target Values : (list (description "Central Time Zone")) +-Candidate Entities: The_Art_Institute_of_Tennessee_–_Nashville, Nashville-Davidson_(balance),_Tennessee, 2010_Tennessee_floods + +Additional entities + +Method 1 + + 2010_Tennessee_floods + +Method 2 + + 2010_Tennessee_floods + + + +-------------- + QUESTION: what political party was henry clay? +-Canonic Entity : henry_clay +-Target Values : (list (description "Whig Party")) +-Candidate Entities: Political_party + +Additional entities + +Method 1 + + Political_party + +Method 2 + + Political_party + + + +-------------- + QUESTION: what is capital city of ontario? +-Canonic Entity : capital_city +-Target Values : (list (description Ottawa)) +-Candidate Entities: Capital_(radio_network) | Ontario + +Additional entities + +Method 1 + + Ontario + +Method 2 + + Capital_(radio_network) + + Ontario + + + +-------------- + QUESTION: what money is used in england? +-Canonic Entity : money,_mississippi +-Target Values : (list (description "UK £")) +-Candidate Entities: Money, The_Denationalization_of_Money + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who did corey feldman married? +-Canonic Entity : corey_feldman +-Target Values : (list (description "Susie Feldman")) +-Candidate Entities: Feldman, Yael_S._Feldman, Stuart_F._Feldman, Basil_Feldman,_Baron_Feldman | Corey | Married_to_It + +Additional entities + +Method 1 + + Stuart_F._Feldman + + Married_to_It + +Method 2 + + + +-------------- + QUESTION: who is the voice of lois from family guy? +-Canonic Entity : lois_griffin +-Target Values : (list (description "Alex Borstein")) +-Candidate Entities: Stewie_Kills_Lois_and_Lois_Kills_Stewie | Family_Guy_(season_10), Family_Guy_(season_5), Family_Guy_(season_11), Family_Guy_Viewer_Mail_1, Family_Guy_(season_2), Family_Guy, Family_Guy_(season_6), Family_Guy_(season_1), Family_Guy_Video_Game!, Family_Guy:_It_Takes_a_Village_Idiot,_and_I_Married_One, The_Family_Guy_100th_Episode_Special, Family_Guy:_Live_in_Vegas, Family_Guy_(season_4) | Lois_Maffeo | A_Very_Special_Family_Guy_Freakin'_Christmas | Superman's_Girl_Friend,_Lois_Lane + +Additional entities + +Method 1 + + Lois_Maffeo + + A_Very_Special_Family_Guy_Freakin'_Christmas + + Stewie_Kills_Lois_and_Lois_Kills_Stewie + + Family_Guy + +Method 2 + + A_Very_Special_Family_Guy_Freakin'_Christmas + + Stewie_Kills_Lois_and_Lois_Kills_Stewie + + Family_Guy + + + +-------------- + QUESTION: what was walt disney's first cartoon called? +-Canonic Entity : walt_disney's_classic_cartoon_favorites +-Target Values : (list (description "Steamboat Willie")) +-Candidate Entities: Walt_Disney, Walt_Disney_anthology_television_series, Walt_Disney_Animation_Studios, The_Walt_Disney_Company, Walt_Disney's_Comics_and_Stories, Walt_Disney_Cartoon_Classics, Walt_Disney_World, List_of_Walt_Disney_and_Buena_Vista_video_releases + +Additional entities + +Method 1 + + The_Walt_Disney_Company + +Method 2 + + Walt_Disney_Animation_Studios + + + +-------------- + QUESTION: what did mary harris jones accomplish? +-Canonic Entity : mary_harris_jones +-Target Values : (list (description "Children's rights") (description "Labor rights")) +-Candidate Entities: Mary_Jones, Mary_Cover_Jones, Mary_Styles_Harris | The_Harris_Brothers, Mary_Harris | Mary_Jones_and_her_Bible | Harris_Interactive, Paul_P._Harris, Jones_v._Harris_Associates | Mary_Ellen_Jones_(chemist) + +Additional entities + +Method 1 + + Paul_P._Harris + + Mary_Styles_Harris + + The_Harris_Brothers + +Method 2 + + + +-------------- + QUESTION: what currency do i need in egypt? +-Canonic Entity : egypt +-Target Values : (list (description "Egyptian pound")) +-Candidate Entities: Currency, Currency_(lads_and_lasses) + +Additional entities + +Method 1 + + Currency + +Method 2 + + Currency + + + +-------------- + QUESTION: who was the founder of the colony of virginia? +-Canonic Entity : colony_of_virginia +-Target Values : (list (description "Captain John Smith")) +-Candidate Entities: Founder_effect + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where is ellis park rugby stadium? +-Canonic Entity : rugby_park_stadium +-Target Values : (list (description "New York City")) +-Candidate Entities: Ellis_Park_Stadium, Ellis_Park_Stadium_disaster, Ellis_Park_Race_Course, Kings_Park_Stadium | Marc_Ellis_(rugby) | Mizuho_Rugby_Stadium, Olympic_Park_Stadium, Castle_Park_rugby_stadium, Chichibunomiya_Rugby_Stadium | Rugby_League_Park, Kintetsu_Hanazono_Rugby_Stadium | Andy_Ellis_(rugby_league), Andrew_Ellis | Pride_Park_Stadium, Melbourne_Rectangular_Stadium | Okara_Park + +Additional entities + +Method 1 + + Andrew_Ellis + + Ellis_Park_Stadium + + Okara_Park + +Method 2 + + Marc_Ellis_(rugby) + + Rugby_League_Park + + Ellis_Park_Stadium + + Andrew_Ellis + + Okara_Park + + + +-------------- + QUESTION: what does the letters eu stand for? +-Canonic Entity : stand_by_for... +-Target Values : (list (description "European Union")) +-Candidate Entities: + + + +-------------- + QUESTION: what are the 5 countries in the united kingdom? +-Canonic Entity : countries_of_the_united_kingdom +-Target Values : (list (description Wales) (description England) (description Scotland) (description "Northern Ireland")) +-Candidate Entities: Income_tax_in_European_countries | No._5_(Morning_Musume_album) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what label is jojo signed to? +-Canonic Entity : jojo_(singer) +-Target Values : (list (description Mercury) (description "Edel AG") (description "Interscope Records") (description "Blackground Records") (description "Universal Motown Republic Group") (description "Universal Records")) +-Candidate Entities: JoJo_(album) | Signed_differential_mapping | Jojo_(Bengali_singer) + +Additional entities + +Method 1 + + JoJo_(album) + +Method 2 + + JoJo_(album) + + + +-------------- + QUESTION: who is the state senator of kentucky? +-Canonic Entity : senator_(bishop_of_milan) +-Target Values : (list (description "Mitch McConnell")) +-Candidate Entities: The_Senator_(tree), Senator_O'Connor_College_School | Kentucky, Kentucky_Derby, Kentucky_General_Assembly, Kentucky_Senate, The_Kentucky_Standard, Scouting_in_Kentucky, University_of_Kentucky, Kentucky_Wildcats_football | The_Senator_(play) | Eastern_Kentucky_University, The_Kentucky_Headhunters + +Additional entities + +Method 1 + + Kentucky + +Method 2 + + + +-------------- + QUESTION: where did douglas macarthur die? +-Canonic Entity : douglas_macarthur +-Target Values : (list (description "Washington, D.C.")) +-Candidate Entities: MacArthur_High_School_(Levittown,_New_York) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what does russian people speak? +-Canonic Entity : speak!!! +-Target Values : (list (description "Yiddish Language") (description "Chuvash Language") (description "Russian Language") (description "Tatar Language") (description "Ukrainian Language")) +-Candidate Entities: Speak_(No-Man_album), The_People_Speak_(film), Speak_(Godsmack_song) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who is playing jason morgan on general hospital? +-Canonic Entity : jason_morgan_(general_hospital) +-Target Values : (list (description "Steve Burton")) +-Candidate Entities: Northern_General_Hospital, General_Hospital_(Blackadder), General_Hospital_of_Mexico, Guelph_General_Hospital, General_Lying-In_Hospital, Massachusetts_General_Hospital, Paphos_General_Hospital, St._Boniface_General_Hospital_(Winnipeg), Jewish_General_Hospital, South_Tipperary_General_Hospital, Barnet_General_Hospital, Etobicoke_General_Hospital, Children_of_General_Hospital, Concord_Repatriation_General_Hospital | Ho,_Ho,_Ho + +Additional entities + +Method 1 + + Children_of_General_Hospital + +Method 2 + + Children_of_General_Hospital + + + +-------------- + QUESTION: where is hong kong china? +-Canonic Entity : hong_kong_literature +-Target Values : (list (description Asia)) +-Candidate Entities: + + + +-------------- + QUESTION: what countries do they speak italian? +-Canonic Entity : speak!!! +-Target Values : (list (description Italy)) +-Candidate Entities: Speak_(No-Man_album), Speak_(Godsmack_song), Don't_Speak, Speak_for_Yourself, Y_Speak, Speak_(band) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who does david beckham play for in 2013? +-Canonic Entity : david_beckham +-Target Values : (list (description "Paris Saint-Germain F.C.")) +-Candidate Entities: Victoria_Beckham, The_Beckham_Experiment, Bend_It_Like_Beckham + +Additional entities + +Method 1 + + Victoria_Beckham + +Method 2 + + Victoria_Beckham + + + +-------------- + QUESTION: who nikki reed play in twilight? +-Canonic Entity : nikki_reed +-Target Values : (list (description "Rosalie Hale")) +-Candidate Entities: The_Twilight_Saga_(film_series), Be_the_Twilight, Twilight_(series), Twilight_(soundtrack), Twilight_(2008_film) | Nikki_Newman | Twilight_as_Played_by_The_Twilight_Singers | Victor_and_Nikki_Newman | Women_of_Twilight, Twilight + +Additional entities + +Method 1 + + Twilight_(2008_film) + +Method 2 + + Twilight_(2008_film) + + + +-------------- + QUESTION: who does blake griffin play for in the nba? +-Canonic Entity : blake_griffin +-Target Values : (list (description "Los Angeles Clippers")) +-Candidate Entities: NBA_on_NBC + +Additional entities + +Method 1 + + NBA_on_NBC + +Method 2 + + NBA_on_NBC + + + +-------------- + QUESTION: who played mulder in the x files? +-Canonic Entity : mulder +-Target Values : (list (description "David Duchovny")) +-Candidate Entities: The_X-Files, The_X-Files_(film), The_X-Files_(season_2), List_of_The_X-Files_characters, The_X-Files_(season_4), The_X-Files_Game, List_of_minor_The_X-Files_characters, The_X-Files_(season_6), The_X-Files_(season_1), The_X-Files_(season_7) + +Additional entities + +Method 1 + + The_X-Files + +Method 2 + + The_X-Files + + + +-------------- + QUESTION: what are bridgit mendler's parents names? +-Canonic Entity : bridgit_mendler +-Target Values : (list (description "Harry Mendler") (description "Leah Mendler")) +-Candidate Entities: My_Parents_Are_Aliens | Bridgit | Parents_(TV_series) | Faces_&_Names | Les_Parents_terribles_(film) | Hello_My_Name_Is... | Parents_(magazine), We_Have_Come_for_Your_Parents | Name | Meet_the_Parents_(soundtrack) + +Additional entities + +Method 1 + + Hello_My_Name_Is... + +Method 2 + + Hello_My_Name_Is... + + + +-------------- + QUESTION: what tourist attractions are in houston texas? +-Canonic Entity : tourist_attractions_in_the_united_states +-Target Values : (list (description "George R. Brown Convention Center") (description "Sam Houston Race Park") (description "Rothko Chapel") (description "Kemah Boardwalk") (description "Space Center Houston") (description "Downtown Aquarium, Houston") (description "Hanna–Barbera Land") (description "Bayou Bend") (description "SplashTown Houston") (description "Houston Zoo")) +-Candidate Entities: Houston, Houston_Heights | Tourist_attraction, Blue_Badge_tourist_guide | South_Houston,_Texas, University_of_Texas_Health_Science_Center_at_Houston | Port_Houston, Geographic_areas_of_Houston, Alief,_Houston + +Additional entities + +Method 1 + + Tourist_attraction + + Houston + +Method 2 + + Tourist_attraction + + Houston + + + +-------------- + QUESTION: who are the current maryland senators? +-Canonic Entity : list_of_current_members_of_the_maryland_senate +-Target Values : (list (description "Ben Cardin")) +-Candidate Entities: West_Spitsbergen_Current + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where is the capital of canada on the map? +-Canonic Entity : map_(band) +-Target Values : (list (description Ottawa)) +-Candidate Entities: Waldseemüller_map, Without_a_Map | Capital_(radio_network) | The_National_Map, Jesusland_map + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what time does barnes and noble close on saturday? +-Canonic Entity : barnes_&_noble +-Target Values : (list (description "Central High School") (description "University of Pennsylvania")) +-Candidate Entities: + + + +-------------- + QUESTION: what kind of paintings did frida kahlo do? +-Canonic Entity : frida_kahlo +-Target Values : (list (description Surrealism)) +-Candidate Entities: Frida, Frida_Hyvönen, Frida_–_The_DVD, Frida_Sandén, Frida_(opera), Frida_(soundtrack), Frække_Frida_og_de_frygtløse_spioner, Frida_(disambiguation) | Gifts_in_kind, A_Kind_of_Alchemy, Johann_Friedrich_Kind, Kind_(type_theory), My_Kind_of_Woman/My_Kind_of_Man + +Additional entities + +Method 1 + + Frida + +Method 2 + + Frida + + + +-------------- + QUESTION: what was francisco vasquez de coronado known for? +-Canonic Entity : francisco_vásquez_de_coronado +-Target Values : (list (description "Mexico City")) +-Candidate Entities: + + + +-------------- + QUESTION: what form of government does greece use? +-Canonic Entity : sixth_form_government_secondary_school +-Target Values : (list (description "Hellenic Parliament")) +-Candidate Entities: Greece_(town),_New_York, Immigration_to_Greece | Greek_government_formation,_May_2012, The_Form_of_Presbyterial_Church_Government | Outline_of_Greece + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where did the columbia river begin? +-Canonic Entity : robert_gray's_columbia_river_expedition +-Target Values : (list (description "British Columbia")) +-Candidate Entities: + + + +-------------- + QUESTION: who was the original voice of meg on family guy? +-Canonic Entity : meg_griffin +-Target Values : (list (description "Lacey Chabert")) +-Candidate Entities: Family_Guy_(season_10), Family_Guy_(season_5), Family_Guy_(season_11), Family_Guy | Meg_and_Quagmire | Family_Guy_(season_2) + +Additional entities + +Method 1 + + Meg_and_Quagmire + + Family_Guy_(season_2) + + Family_Guy + +Method 2 + + Meg_and_Quagmire + + Family_Guy_(season_2) + + Family_Guy + + + +-------------- + QUESTION: what movies has michael clarke duncan been in? +-Canonic Entity : michael_clarke_duncan +-Target Values : (list (description "American Crude") (description "Air Buddies") (description "A Crush on You") (description "Brother Bear") (description "Back in Business") (description "A Night at the Roxbury") (description "Breakfast of Champions") (description Bulworth) (description Armageddon) (description "Brother Bear 2")) +-Candidate Entities: Michael_Clarke_(cricketer), Michael_Clarke, Michael_Clarke_(musician) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who did matt barnes married? +-Canonic Entity : matt_barnes +-Target Values : (list (description "Gloria Govan")) +-Candidate Entities: Barnes_&_Barnes, Albert_C._Barnes + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who won the nobel peace prize in 2011 for physics? +-Canonic Entity : 2011_nobel_peace_prize +-Target Values : (list (description "Ellen Johnson Sirleaf") (description "Tawakkol Karman") (description "Leymah Gbowee")) +-Candidate Entities: List_of_Jewish_Nobel_laureates, List_of_female_Nobel_laureates, Nobel_laureates_of_India, Nobel_Committee_for_Physics + +Additional entities + +Method 1 + + List_of_female_Nobel_laureates + +Method 2 + + List_of_female_Nobel_laureates + + + +-------------- + QUESTION: what is jessica ennis sport? +-Canonic Entity : jessica_ennis-hill +-Target Values : (list (description "Track and field athletics")) +-Candidate Entities: Ennis + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where is tahiti bora bora? +-Canonic Entity : bora_bora +-Target Values : (list (description "French Polynesia")) +-Candidate Entities: Bora_(TV_series), Bora_(Australian), Bora_(wind) | Tahiti, Tahiti_Second_Division, Order_of_Tahiti_Nui, Air_Tahiti, Kingdom_of_Tahiti + +Additional entities + +Method 1 + + Tahiti + +Method 2 + + Tahiti + + + +-------------- + QUESTION: what are all of michael jackson albums? +-Canonic Entity : prince_michael_jackson_i +-Target Values : (list (description "Music & Me") (description Ben) (description "Remember the Time") (description "Black or White") (description Dangerous) (description "Smooth Criminal") (description "Forever, Michael") (description Bad) (description "Off the Wall") (description "Black or White (The Clivillés & Cole Remixes)")) +-Candidate Entities: Michael_A._Jackson, Michael_Jackson, Michael_Jackson_albums_discography, The_Essential_Michael_Jackson, Michael_Jackson_(radio_commentator), Michael_P._Jackson, Michael_Jackson-related_games, Michael_Jackson_(anthropologist), Michael_Jackson_(TV_executive) | Mike_Jackson_(systems_scientist), Michael_W._Jackson | Michael_(album), List_of_concert_tours_by_Michael_Jackson_and_The_Jackson_5, The_Best_of_Michael_Jackson, 50_Best_Songs_–_The_Motown_Years:_Michael_Jackson_&_The_Jackson_5 | Mike_Jackson | LL_parser, Ll + + + +-------------- + QUESTION: where did joe namath live? +-Canonic Entity : joe_namath +-Target Values : (list (description "Fire Island") (description "Beaver Falls")) +-Candidate Entities: + + + +-------------- + QUESTION: who is my state senator and representative minnesota? +-Canonic Entity : senator_(bishop_of_milan) +-Target Values : (list (description "Al Franken")) +-Candidate Entities: State_Senator | Minnesota, University_of_Minnesota_Law_School | Death_and_the_Senator | International_Civilian_Representative_for_Kosovo, The_Representative_(newspaper), Representative_peer, Representative_APR, Coloured_Persons_Representative_Council + +Additional entities + +Method 1 + + Minnesota + +Method 2 + + + +-------------- + QUESTION: what films has kristen stewart starred in? +-Canonic Entity : kristen_stewart +-Target Values : (list (description "Panic Room") (description "Catch That Kid") (description "In the Land of Women") (description "Fierce People") (description "Into the Wild") (description "The Messengers") (description "Cold Creek Manor") (description Zathura) (description "The Safety of Objects") (description Speak)) +-Candidate Entities: Kristen_R._Ghodsee, Kristen_(typeface) | The_Films_(band) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where do samsung lions play? +-Canonic Entity : samsung_lions +-Target Values : (list (description "Daegu Baseball Stadium")) +-Candidate Entities: Samsung_SGH-C414, Samsung, Renault_Samsung_Motors, Samsung_Gravity_series | Lions_(band) | Play_On! + +Additional entities + +Method 1 + + Samsung + +Method 2 + + Samsung + + + +-------------- + QUESTION: where did lee surrender to grant to end the civil war? +-Canonic Entity : american_civil_war +-Target Values : (list (description "Battle of Appomattox Court House")) +-Candidate Entities: + + + +-------------- + QUESTION: what does annie leibovitz do? +-Canonic Entity : annie_leibovitz +-Target Values : (list (description Photographer) (description Artist)) +-Candidate Entities: Leibovitz | Annie_R._Smith + +Additional entities + +Method 1 + + Annie_R._Smith + +Method 2 + + + +-------------- + QUESTION: what teams did derek fisher play for in the nba? +-Canonic Entity : derek_fisher +-Target Values : (list (description "Oklahoma City Thunder") (description "Dallas Mavericks") (description "Los Angeles Lakers")) +-Candidate Entities: NBA_Finals, NBA_on_NBC, 2011_NBA_lockout, 2009_NBA_Finals, NBA_Live_09 + +Additional entities + +Method 1 + + NBA_Finals + +Method 2 + + NBA_Finals + + + +-------------- + QUESTION: who did mike tomlin play for? +-Canonic Entity : mike_tomlin +-Target Values : (list (description "Pittsburgh Steelers")) +-Candidate Entities: Andrew_J._Tomlin, Claire_J._Tomlin, Thomas_Tomlin,_Baron_Tomlin, Ray_S._Tomlin | Play_On! + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what kind of currency does cuba use? +-Canonic Entity : cuba +-Target Values : (list (description "Cuban peso")) +-Candidate Entities: Currency | Gifts_in_kind, A_Kind_of_Alchemy, Johann_Friedrich_Kind, Kind_(type_theory), My_Kind_of_Woman/My_Kind_of_Man + +Additional entities + +Method 1 + + Currency + +Method 2 + + Currency + + + +-------------- + QUESTION: who is ben roethlisberger parents? +-Canonic Entity : ben_roethlisberger +-Target Values : (list (description "Ida Jane Foust") (description "Kenneth Todd Roethlisberger")) +-Candidate Entities: Parents_(TV_series), Meet_the_Parents, Les_Parents_terribles_(film), Parents_(magazine) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what movies have robert pattinson starred in? +-Canonic Entity : robert_pattinson +-Target Values : (list (description Eclipse) (description Twilight) (description "New Moon") (description "The Twilight Saga: Breaking Dawn - Part 1")) +-Candidate Entities: Washington_H._Soul_Pattinson, Pattinson | The_Movies, Sky_Movies_(New_Zealand), At_the_Movies_(U.S._TV_series), Yahoo!_Movies, The_Movies_(band) + +Additional entities + +Method 1 + + Yahoo!_Movies + +Method 2 + + Yahoo!_Movies + + + +-------------- + QUESTION: what are the zoroastrian scriptures called? +-Canonic Entity : studies_in_the_scriptures +-Target Values : (list (description "The Zend-Avesta, The Gathas, and the Doctrine of Zarathustra")) +-Candidate Entities: A_Band_Called_O, Called_to_Serve_(song), The_Return_of_a_Man_Called_Horse | The_Federation_of_Zoroastrian_Associations_of_North_America + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what political party is barack obama from? +-Canonic Entity : barack_obama +-Target Values : (list (description "Democratic Party")) +-Candidate Entities: + + + +-------------- + QUESTION: what organization did martin luther king lead? +-Canonic Entity : martin_luther_king_iii +-Target Values : (list (description "Civil rights movement") (description "Civil disobedience") (description Nonviolence)) +-Candidate Entities: Martin_Luther_King,_Jr., Martin_Luther_King,_Jr._Day, Martin_Luther_King,_Sr., Martin_Luther_King,_Jr.,_National_Historic_Site, Martin_Luther_King,_Jr._Park, Martin_Luther_King,_Jr._Memorial, Martin_Luther_King_Jr._Memorial_Library, Martin_Luther_College, Martin_Luther_King_Jr._Memorial_Bridge, Martin_Luther_McCoy, Martin_Luther_King,_Jr._Academy, Martin_Luther_King_Jr._Shoreline, Assassination_of_Martin_Luther_King,_Jr., Dr._Martin_Luther_King,_Jr._Library, Martin_Luther, Dr._Martin_Luther_King_Jr._Plaza_(Metrorail_station), Martin_Luther_King,_Jr._Multi-Service_Ambulatory_Care_Center, Martin_Luther_King,_Jr._Library, Martin_Luther_King,_Jr._Avenue | Lead_smelting, Isotopes_of_lead, Lead_guitar, Lead_vocalist, Lead_auditor + +Additional entities + +Method 1 + + Lead_guitar + + Martin_Luther_King,_Jr. + +Method 2 + + Martin_Luther_King,_Jr. + + + +-------------- + QUESTION: where did the name nazi come from? +-Canonic Entity : anti-nazi_boycott_of_1933 +-Target Values : (list (description "National Socialist Party")) +-Candidate Entities: Relations_between_Nazi_Germany_and_the_Arab_world, Administrative_divisions_of_Nazi_Germany, Persecution_of_homosexuals_in_Nazi_Germany_and_the_Holocaust + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what was arthur conan doyle famous for? +-Canonic Entity : arthur_conan_doyle +-Target Values : (list (description "Sherlock Holmes")) +-Candidate Entities: Jean_Conan_Doyle, Adrian_Conan_Doyle, Conan_the_Barbarian + +Additional entities + +Method 1 + + Adrian_Conan_Doyle + +Method 2 + + Adrian_Conan_Doyle + + + +-------------- + QUESTION: what year did michael jordan started his career? +-Canonic Entity : michael_jordan +-Target Values : (list (description "1984 NBA Draft")) +-Candidate Entities: Michael_B._Jordan, Michael_I._Jordan | Started_from_the_Bottom | Jeffrey_Jordan | Get_the_Party_Started | Michael_H._Jordan, Michael-Hakim_Jordan + +Additional entities + +Method 1 + + Get_the_Party_Started + + Michael-Hakim_Jordan + + Jeffrey_Jordan + +Method 2 + + Get_the_Party_Started + + Michael-Hakim_Jordan + + + +-------------- + QUESTION: what currency should you take to thailand? +-Canonic Entity : currency +-Target Values : (list (description "Thai baht")) +-Candidate Entities: Thailand + +Additional entities + +Method 1 + + Thailand + +Method 2 + + Thailand + + + +-------------- + QUESTION: what kind of guitar does jemaine clement play? +-Canonic Entity : jemaine_clement +-Target Values : (list (description "Bass guitar")) +-Candidate Entities: Learn_to_Play_Guitar | Clement_Clarke_Moore, St_Clement_Danes | A_Kind_of_Alchemy + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where is greyhound station in washington dc? +-Canonic Entity : greyhound_bus_station_(montgomery,_alabama) +-Target Values : (list (description "Greyhound Lines") (description "Peter Pan Bus Lines")) +-Candidate Entities: + + + +-------------- + QUESTION: where was lance armstrong born and in what year? +-Canonic Entity : lance_armstrong +-Target Values : (list (description 9/18/1971)) +-Candidate Entities: + + + +-------------- + QUESTION: what kind of money is used in israel? +-Canonic Entity : a_kind_of_alchemy +-Target Values : (list (description "Israeli new shekel")) +-Candidate Entities: Wilfrid_B._Israel | Money_market_fund, Money | Kind_(type_theory) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where is george bush from? +-Canonic Entity : george_p._bush +-Target Values : (list (description "New Haven")) +-Candidate Entities: George_W._Bush, Public_image_of_George_W._Bush, George_Bush_Presidential_Library, George_H._W._Bush, George_W._Bush_Presidential_Center, George_H._W._Bush_vomiting_incident, Irving_T._Bush, Fictionalized_portrayals_of_George_W._Bush, George_Bush_(biblical_scholar), Bush_(band), Professional_life_of_George_W._Bush, Samuel_P._Bush, Marvin_P._Bush | ERE_Informatique, Ere_language + +Additional entities + +Method 1 + + George_W._Bush + +Method 2 + + George_H._W._Bush + + + +-------------- + QUESTION: what did william howe do in the revolutionary war? +-Canonic Entity : william_howe,_5th_viscount_howe +-Target Values : (list (description "Battle of Bunker Hill")) +-Candidate Entities: Episodes_of_the_Cuban_Revolutionary_War, American_Revolutionary_War | Albion_P._Howe | Caribbean_theater_of_the_American_Revolutionary_War | Julia_Ward_Howe | Naval_operations_in_the_American_Revolutionary_War + +Additional entities + +Method 1 + + Caribbean_theater_of_the_American_Revolutionary_War + + Naval_operations_in_the_American_Revolutionary_War + + American_Revolutionary_War + +Method 2 + + Naval_operations_in_the_American_Revolutionary_War + + Caribbean_theater_of_the_American_Revolutionary_War + + American_Revolutionary_War + + + +-------------- + QUESTION: who is the falcons quarterback 2012? +-Canonic Entity : the_falcons +-Target Values : (list (description "Matt Ryan")) +-Candidate Entities: Falcons_(rugby_team) | Quarterback, NFL_Quarterback_Club_97, NFL_Quarterback_Club_96 | List_of_Atlanta_Falcons_starting_quarterbacks + +Additional entities + +Method 1 + + Quarterback + +Method 2 + + + +-------------- + QUESTION: what is the zip code for trenton ohio? +-Canonic Entity : zip_code +-Target Values : (list (description 45067)) +-Candidate Entities: Trenton,_Ohio + +Additional entities + +Method 1 + +Method 2 + + Trenton,_Ohio + + + +-------------- + QUESTION: what is north dakota state's mascot? +-Canonic Entity : first_ladies_of_north_dakota +-Target Values : (list (description "Western Meadowlark")) +-Candidate Entities: + + + +-------------- + QUESTION: what is the work of charles darwin? +-Canonic Entity : charles_darwin +-Target Values : (list (description "The Structure and Distribution of Coral Reefs") (description "On evolution") (description "A student's introduction to Charles Darwin") (description "Climbing Plants") (description "The Expression of the Emotions in Man and Animals") (description "The origin of species : complete and fully illustrated") (description "The Origin of Species") (description "The Life of Erasmus Darwin") (description "The Autobiography of Charles Darwin") (description "The Descent of Man, and Selection in Relation to Sex")) +-Candidate Entities: + + + +-------------- + QUESTION: what movies have adam sandler been in? +-Canonic Entity : adam_sandler +-Target Values : (list (description "Big Daddy") (description "Dickie Roberts: Former Child Star") (description "Joe Dirt 2") (description "Bedtime Stories") (description Click) (description "The Benchwarmers") (description "Eight Crazy Nights") (description "The House Bunny") (description "You Don't Mess with the Zohan") (description "I Now Pronounce You Chuck and Larry")) +-Candidate Entities: Sandler | The_Movies, Sky_Movies_(New_Zealand), Yahoo!_Movies, The_Movies_(band), At_the_Movies_(U.S._TV_series) + +Additional entities + +Method 1 + + Yahoo!_Movies + +Method 2 + + Yahoo!_Movies + + + +-------------- + QUESTION: what was one of benjamin franklin's inventions? +-Canonic Entity : benjamin_franklin +-Target Values : (list (description "Franklin stove")) +-Candidate Entities: + + + +-------------- + QUESTION: where did phil mickelson go to college? +-Canonic Entity : phil_mickelson +-Target Values : (list (description "Arizona State University")) +-Candidate Entities: George_S._Mickelson, Mickelson, George_Theodore_Mickelson | Burnley_College, Clydebank_College, Darlington_College, Kilgore_College, Gorseinon_College + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what is the most practiced religion in the us? +-Canonic Entity : religion_in_the_inca_empire +-Target Values : (list (description Christianity)) +-Candidate Entities: Religion_and_geography, Religion_and_environmentalism, Gujarat_Freedom_of_Religion_Bill, Ancient_Mesopotamian_religion, Football_Is_Our_Religion + +Additional entities + +Method 1 + +Method 2 + + Ancient_Mesopotamian_religion + + + +-------------- + QUESTION: what does duffy sing? +-Canonic Entity : duffy,_australian_capital_territory +-Target Values : (list (description Mercy) (description Rockferry) (description /m/0dm9yv1) (description "Smoke Without Fire") (description "Big Flame") (description "Warwick Avenue") (description "Mercy (Gareth Wyn remix)") (description "I'm Scared") (description Tomorrow)) +-Candidate Entities: Duffy_(singer) | Sing_Sing + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what school did tupac go to? +-Canonic Entity : tupac +-Target Values : (list (description "Paul Laurence Dunbar High School") (description "Baltimore School for the Arts") (description "Tamalpais High School")) +-Candidate Entities: Shipley_School, Ivel_Valley_School, Back_to_school_(marketing), School_story, Bahá'í_school + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what does guyana speak? +-Canonic Entity : speak!!! +-Target Values : (list (description "English Language")) +-Candidate Entities: Speak_(No-Man_album) | Guyana | Speak_(Godsmack_song) | Constitution_of_Guyana, Guyana_(Commonwealth_realm) | Speak_(band) | Guyana_Amazon_Warriors | Speak_of_the_Devil_(book) + +Additional entities + +Method 1 + + Guyana + +Method 2 + + + +-------------- + QUESTION: where did the flemish live? +-Canonic Entity : flemish_immigration_to_wallonia +-Target Values : (list (description Belgium)) +-Candidate Entities: Flemish, Canadians_of_Flemish_ancestry, Flemish_Parliament, The_Flemish_Farm_(film), Flemish_Region, Flemish_Altruism_(Constituent_Parts_1993–1996), Speaker_of_the_Flemish_Parliament, West_Flemish | Live_(James_Taylor_album), Ableton_Live, Live_Baby_Live, Live_art, Live_Box + +Additional entities + +Method 1 + + Flemish_Region + +Method 2 + + Flemish + + + +-------------- + QUESTION: what year did the houston rockets win their first championship? +-Canonic Entity : houston_rockets +-Target Values : (list (description "1994 NBA Finals")) +-Candidate Entities: + + + +-------------- + QUESTION: what college did harry s. truman attend? +-Canonic Entity : truman_college +-Target Values : (list (description "University of Missouri–Kansas City")) +-Candidate Entities: Harry_S._Truman_Scholarship, Harry_S._Truman, Harry_S._Truman_National_Historic_Site, Harry_S._Truman_Farm_Home, Harry_S._Truman_Historic_District, Harry_S_Truman_Birthplace_State_Historic_Site, Harry_S._Truman_Presidential_Library_and_Museum, Truman_Reservoir, Second_inauguration_of_Harry_S._Truman, The_Truman_Show, Truman_National_Security_Project, Margaret_Truman, Harry_Truman_(song), Truman_State_University, Louis_W._Truman, Harry_S._Truman_Little_White_House, Harry_S._Truman_High_School_(Taylor,_Michigan), Harry_Randall_Truman, Truman_(book) + +Additional entities + +Method 1 + + Harry_S._Truman + +Method 2 + + Margaret_Truman + + + +-------------- + QUESTION: what is the official language spoken in mexico? +-Canonic Entity : languages_of_mexico +-Target Values : (list (description "Spanish Language")) +-Candidate Entities: Official_language, Official_status_of_Romanian_language_in_Vojvodina + +Additional entities + +Method 1 + + Official_language + +Method 2 + + Official_language + + + +-------------- + QUESTION: what county is minneapolis mn in? +-Canonic Entity : minneapolis +-Target Values : (list (description "Hennepin County")) +-Candidate Entities: + + + +-------------- + QUESTION: what religion in thailand? +-Canonic Entity : thailand +-Target Values : (list (description Buddhism) (description Christian) (description Islam)) +-Candidate Entities: Religion_and_geography, Marxism_and_religion, Religion_and_environmentalism, On_Religion, Māori_religion, Religion_in_the_Inca_Empire, Religion_and_geography, Marxism_and_religion, Religion_and_environmentalism, On_Religion, Māori_religion + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who is queen elizabeth 1 father? +-Canonic Entity : queen_elizabeth_prize_for_engineering +-Target Values : (list (description "Henry VIII of England")) +-Candidate Entities: Elizabeth_I_of_England, Elizabeth_II, Elizabeth_of_Aragon | 1_+_1_+_1_+_1_+_⋯, 1_on_1 + +Additional entities + +Method 1 + + Elizabeth_II + +Method 2 + + Elizabeth_II + + + +-------------- + QUESTION: what other languages does switzerland speak? +-Canonic Entity : speak!!! +-Target Values : (list (description "Romansh language") (description "French Language") (description "German Language") (description "Italian Language")) +-Candidate Entities: Languages_of_Switzerland | Speak_(No-Man_album), Speak_(Godsmack_song), Don't_Speak, Speak_for_Yourself, Speak_(band), Speak_of_the_Devil_(book) | Switzerland + +Additional entities + +Method 1 + + Switzerland + +Method 2 + + + +-------------- + QUESTION: what team is ronaldinho on? +-Canonic Entity : ronaldinho +-Target Values : (list (description "Clube Atlético Mineiro")) +-Candidate Entities: + + + +-------------- + QUESTION: who plays paul blart? +-Canonic Entity : paul_blart:_mall_cop +-Target Values : (list (description "Kevin James")) +-Candidate Entities: Four_Major_Plays_of_Chikamatsu + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who is kobe bryant wife bio? +-Canonic Entity : kobe_bryant +-Target Values : (list (description "Vanessa Laine")) +-Candidate Entities: Kobe_Doin'_Work + +Additional entities + +Method 1 + + Kobe_Doin'_Work + +Method 2 + + Kobe_Doin'_Work + + + +-------------- + QUESTION: what kind of government system does canada have? +-Canonic Entity : government_of_canada +-Target Values : (list (description "Parliamentary system") (description Federation) (description "Constitutional monarchy") (description "Multi-party system")) +-Candidate Entities: Government | Kind_(type_theory), Gifts_in_kind, A_Kind_of_Alchemy | Health_care_in_Canada | Johann_Friedrich_Kind, My_Kind_of_Woman/My_Kind_of_Man | Canada | The_Fourth_Kind + +Additional entities + +Method 1 + + Health_care_in_Canada + + Government + + Canada + +Method 2 + + Health_care_in_Canada + + Government + + Canada + + + +-------------- + QUESTION: what type of government did sparta greece have? +-Canonic Entity : sparta +-Target Values : (list (description Monarchy) (description Diarchy)) +-Candidate Entities: Greece_(town),_New_York, Immigration_to_Greece + +Additional entities + +Method 1 + + Immigration_to_Greece + +Method 2 + + + +-------------- + QUESTION: where to vacation in italy in august? +-Canonic Entity : national_lampoon's_vacation +-Target Values : (list (description "Corriere della Sera") (description l'Unità) (description "Il Foglio") (description "la Repubblica") (description "Il Messaggero") (description "La Domenica del Corriere") (description "La Stampa") (description Avanti!) (description "La Gazzetta dello Sport") (description Liberazione)) +-Candidate Entities: Vacation | Take_a_Vacation! | Vacation_(novel), The_Vacation_Goo | August_Malmström, August_Malmström + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what culture lived in teotihuacan? +-Canonic Entity : teotihuacan +-Target Values : (list (description Mexico)) +-Candidate Entities: Popular_culture + +Additional entities + +Method 1 + + Popular_culture + +Method 2 + + + +-------------- + QUESTION: what kind of voting system does japan have? +-Canonic Entity : voting_system +-Target Values : (list (description "Parliamentary system") (description "Unitary state") (description "Constitutional monarchy")) +-Candidate Entities: Plurality-at-large_voting, Voting_advice_application, Voting | Electoral_system_of_Australia, Electoral_system_of_Fiji | Gifts_in_kind, A_Kind_of_Alchemy, Johann_Friedrich_Kind, Kind_(type_theory), My_Kind_of_Woman/My_Kind_of_Man + +Additional entities + +Method 1 + + Electoral_system_of_Australia + + Plurality-at-large_voting + +Method 2 + + Electoral_system_of_Australia + + Plurality-at-large_voting + + + +-------------- + QUESTION: what are the names of all the countries in africa? +-Canonic Entity : the_names_(band) +-Target Values : (list (description Angola) (description "Côte d’Ivoire") (description "Central African Republic") (description "Burkina Faso") (description Djibouti) (description Congo) (description Burundi) (description Botswana) (description "Cape Verde") (description Benin)) +-Candidate Entities: Portuguese-speaking_African_countries | Faces_&_Names + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who started the first persian gulf war? +-Canonic Entity : national_persian_gulf_day +-Target Values : (list (description Kuwait)) +-Candidate Entities: Gulf_War, Persian_Gulf, Persian_Gulf_Residency, Gulf_War_syndrome, Coalition_of_the_Gulf_War, Persian_Gulf_Online_Organization, Persian_Gulf_naming_dispute, Persian_Gulf_University, Arab_cuisine_of_the_Persian_Gulf, Air_engagements_of_the_Gulf_War | Russo-Persian_War_(1722–23) | Kerala_Gulf_diaspora | Persian_War, Persian_Gulf_Complex, Arab_states_of_the_Persian_Gulf | Russo-Persian_War_(1804–13), Gulf_War_(disambiguation) | Persian_(cat) | Get_the_Party_Started, Started_from_the_Bottom, It_Started_with_Eve, I_Can't_Get_Started, I_Started_a_Joke + +Additional entities + +Method 1 + + Arab_states_of_the_Persian_Gulf + + Persian_Gulf + +Method 2 + + Arab_states_of_the_Persian_Gulf + + Persian_Gulf + + + +-------------- + QUESTION: what is the name of the pittsburgh steelers stadium? +-Canonic Entity : pittsburgh_steelers +-Target Values : (list (description "Pitt Stadium") (description "Forbes Field") (description "Heinz Field") (description "Three Rivers Stadium")) +-Candidate Entities: + + + +-------------- + QUESTION: who was cleopatra married too? +-Canonic Entity : cleopatra +-Target Values : (list (description "Mark Antony")) +-Candidate Entities: Married_to_It + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where was nicki minaj born? +-Canonic Entity : nicki_minaj +-Target Values : (list (description "Saint James, Trinidad and Tobago")) +-Candidate Entities: Nicki + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what was jesse james wife name? +-Canonic Entity : jesse_e._james +-Target Values : (list (description "Zerelda Mimms")) +-Candidate Entities: Jesse_James_Dupree, Jesse_James_(customizer), Jesse_James, Jesse_James_(actor), The_True_Story_of_Jesse_James, Jesse_James_Home_Museum, The_Assassination_of_Jesse_James_by_the_Coward_Robert_Ford, Jesse_Hubbard_(baseball), Jesse_James_(folk_song), Jesse_Owens, Jesse, I_Shot_Jesse_James, Jesse_James_Is_a_Dead_Man, Adventures_of_Frank_and_Jesse_James, Jesse_James_(disambiguation) + +Additional entities + +Method 1 + + Jesse_James + +Method 2 + + Jesse_James + + + +-------------- + QUESTION: who plays spike in buffy the vampire slayer? +-Canonic Entity : slayer_(buffy_the_vampire_slayer) +-Target Values : (list (description "James Marsters")) +-Candidate Entities: + + + +-------------- + QUESTION: where was emperor hadrian born? +-Canonic Entity : hadrian +-Target Values : (list (description Rome)) +-Candidate Entities: Emperor_Hui_of_Han, Emperor_Taishō, SS_Emperor, Emperor_Meiji, Emperor_Norton, Emperor_of_the_Serbs + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: when was gardasil released to the public? +-Canonic Entity : gardasil +-Target Values : (list (description 2006)) +-Candidate Entities: The_Never-Before-Released_Masters, Calling_the_Public | A_Mounting_Crisis...As_Their_Fury_Got_Released | Public_economics + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who became president when roosevelt died in office? +-Canonic Entity : theodore_roosevelt +-Target Values : (list (description "Harry S. Truman")) +-Candidate Entities: Franklin_D._Roosevelt, Henry_L._Roosevelt + +Additional entities + +Method 1 + + Franklin_D._Roosevelt + +Method 2 + + Franklin_D._Roosevelt + + + +-------------- + QUESTION: where did martin luther king went to school? +-Canonic Entity : martin_luther_king_iii +-Target Values : (list (description "Morehouse College")) +-Candidate Entities: Martin_Luther_King,_Jr., Martin_Luther_King,_Sr., Martin_Luther_King,_Jr._Day, Martin_Luther_King,_Jr.,_National_Historic_Site, Martin_Luther_College, Martin_Luther_King,_Jr._Park, Martin_Luther_King,_Jr._High_School_(Lithonia,_Georgia), Martin_Luther_King_Jr._Memorial_Library, Martin_Luther_King_Jr._Memorial_Bridge, Martin_Luther_King,_Jr._Memorial, Martin_Luther_King_High_School_(Philadelphia), Martin_Luther_King,_Jr._Academy, Martin_Luther_King_High_School_(Detroit), Martin_Luther_King,_Jr._High_School_(Cleveland), Martin_Luther_King_Junior_Laboratory_School, Martin_Luther_King,_Jr._Educational_Campus, Martin_Luther_King_Magnet_at_Pearl_High_School, Martin_Luther_McCoy, Martin_Luther_High_School + +Additional entities + +Method 1 + + Martin_Luther_King,_Jr. + +Method 2 + + Martin_Luther_King,_Jr. + + + +-------------- + QUESTION: where did charles drew go to college? +-Canonic Entity : charles_r._drew +-Target Values : (list (description "Amherst College")) +-Candidate Entities: Charles_S._Drew, Drew_University | St._Charles_College,_Maryland + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what was the colosseum in rome used for? +-Canonic Entity : colosseum +-Target Values : (list (description Gladiator)) +-Candidate Entities: Rome + +Additional entities + +Method 1 + + Rome + +Method 2 + + Rome + + + +-------------- + QUESTION: who voice acts peter griffin? +-Canonic Entity : peter_griffin +-Target Values : (list (description "Seth MacFarlane")) +-Candidate Entities: Peter_A._Griffin, Alan_Griffin | Acts_of_Peter, Acts_of_Peter_and_Andrew + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who was charles darwin married to? +-Canonic Entity : charles_darwin +-Target Values : (list (description "Emma Darwin")) +-Candidate Entities: + + + +-------------- + QUESTION: who plays lynette on desperate housewives? +-Canonic Entity : desperate_housewives_(season_6) +-Target Values : (list (description "Felicity Huffman")) +-Candidate Entities: The_Real_Housewives | Lynette_Yiadom_Boakye, Lynette_Scavo, Lynette_Lim, Lynette_and_Lyonesse, Lynette_Boggs + +Additional entities + +Method 1 + + Lynette_Scavo + +Method 2 + + Lynette_Scavo + + + +-------------- + QUESTION: what year was michael jordan rookie year? +-Canonic Entity : rookie_of_the_year_(award) +-Target Values : (list (description "1984-85 NBA season")) +-Candidate Entities: Michael_Jordan, Jeffrey_Jordan, Michael_B._Jordan, Michael_I._Jordan + +Additional entities + +Method 1 + + Michael_Jordan + +Method 2 + + Michael_Jordan + + + +-------------- + QUESTION: what timezone is the state of texas? +-Canonic Entity : texas_legislature +-Target Values : (list (description "Central Time Zone")) +-Candidate Entities: Texas_Lottery, Texas_country_music, Texas_Longhorns + +Additional entities + +Method 1 + + Texas_Lottery + +Method 2 + + Texas_Lottery + + + +-------------- + QUESTION: what did chadwick identify? +-Canonic Entity : chadwick,_missouri +-Target Values : (list (description Neutron)) +-Candidate Entities: E._Wallace_Chadwick + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what airport is closest to ithaca ny? +-Canonic Entity : ithaca,_new_york +-Target Values : (list (description "Ithaca Tompkins Regional Airport")) +-Candidate Entities: Ithaca_(town),_New_York, Ithaca_Tompkins_Regional_Airport + +Additional entities + +Method 1 + + Ithaca_(town),_New_York + +Method 2 + + Ithaca_Tompkins_Regional_Airport + + + +-------------- + QUESTION: where did kurt cobain die? +-Canonic Entity : kurt_cobain +-Target Values : (list (description Seattle)) +-Candidate Entities: Frances_Bean_Cobain + +Additional entities + +Method 1 + + Frances_Bean_Cobain + +Method 2 + + Frances_Bean_Cobain + + + +-------------- + QUESTION: what county is jackson michigan in? +-Canonic Entity : jackson,_michigan +-Target Values : (list (description "Jackson County")) +-Candidate Entities: Jackson_County,_Michigan, Jackson_County_Airport_(Michigan), Hanover_Township,_Jackson_County,_Michigan, Columbia_Township,_Jackson_County,_Michigan, Summit_Township,_Jackson_County,_Michigan, Liberty_Township,_Jackson_County,_Michigan, Jackson_County_Courthouse_(North_Carolina), Michigan_v._Jackson | National_Register_of_Historic_Places_listings_in_Michigan | Jackson_County_Public_Schools_(North_Carolina) + +Additional entities + +Method 1 + + National_Register_of_Historic_Places_listings_in_Michigan + + Jackson_County,_Michigan + +Method 2 + + National_Register_of_Historic_Places_listings_in_Michigan + + Jackson_County,_Michigan + + + +-------------- + QUESTION: where was the battle of verdun held? +-Canonic Entity : verdun +-Target Values : (list (description Verdun)) +-Candidate Entities: Calyx_of_Held, Carl_Held, Al_Held, Martin_Held, Bud_Held + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what system of government does nigeria have? +-Canonic Entity : nigeria +-Target Values : (list (description "Presidential system") (description "Federal republic") (description Federation)) +-Candidate Entities: Government | Öhler_system, Kafala_system, Storytelling_System, Aircraft_fuel_system, System_archetype + +Additional entities + +Method 1 + + Government + +Method 2 + + Kafala_system + + Government + + + +-------------- + QUESTION: who played boss hogg dukes of hazzard? +-Canonic Entity : the_dukes_of_hazzard:_hazzard_in_hollywood! +-Target Values : (list (description "Sorell Booke")) +-Candidate Entities: Boss_Hog, Robert_V._Hogg | Boss_(video_gaming) | Hogg | Played, Played_in_Britain, The_Band_Played_On, And_the_Bands_Played_On + +Additional entities + +Method 1 + + Robert_V._Hogg + +Method 2 + + + +-------------- + QUESTION: who played kitt in knight rider? +-Canonic Entity : kitt +-Target Values : (list (description "William Daniels")) +-Candidate Entities: Knight_Rider_(season_2), Knight_Rider_(2008_TV_series), Knight_Rider_(2008_film), Knight_Rider_2010, Knight_Rider:_The_Game, Knight_Rider_(season_4), Knight_Rider_(1982_TV_series), Knight_Rider_(season_3), Michael_Knight_(Knight_Rider), Knight_Rider_(franchise), Knight_Rider_(season_1), Knight_Rider_2000, Knight_Rider_(video_game), Team_Knight_Rider + +Additional entities + +Method 1 + + Knight_Rider_(1982_TV_series) + +Method 2 + + Knight_Rider_(1982_TV_series) + + + +-------------- + QUESTION: what religion did the ottoman turks follow? +-Canonic Entity : turks_in_the_arab_world +-Target Values : (list (description Islam) (description Judaism) (description Christianity)) +-Candidate Entities: Ottoman_Empire + +Additional entities + +Method 1 + + Ottoman_Empire + +Method 2 + + Ottoman_Empire + + + +-------------- + QUESTION: what is vanderbilt university known for? +-Canonic Entity : vanderbilt_university_school_of_medicine +-Target Values : (list (description "Vanderbilt University School of Medicine")) +-Candidate Entities: + + + +-------------- + QUESTION: what timezone is toronto gmt? +-Canonic Entity : gmt_(programme) +-Target Values : (list (description "North American Eastern Time Zone")) +-Candidate Entities: Toronto | Rolex_GMT_Master_II + + + +-------------- + QUESTION: what religion is king henry viii? +-Canonic Entity : henry_viii_of_england +-Target Values : (list (description "Church of England") (description Anglo-Catholicism)) +-Candidate Entities: King_Missile | Edward_VIII | European_wars_of_religion | Henry_VI,_Part_2 + +Additional entities + +Method 1 + + Henry_VI,_Part_2 + + European_wars_of_religion + +Method 2 + + European_wars_of_religion + + Henry_VI,_Part_2 + + Edward_VIII + + + +-------------- + QUESTION: what countries did germany take over during world war 2? +-Canonic Entity : income_tax_in_european_countries +-Target Values : (list (description France)) +-Candidate Entities: World_War_II | Germany, History_of_Germany_(1945–90) | Total_War:_Shogun_2 | United_States_declaration_of_war_on_Germany_(1917), Post–World_War_II_economic_expansion, German_mistreatment_of_Soviet_prisoners_of_war, World_War_I | Reconstruction_of_Germany, Expulsion_of_Poles_by_Germany + +Additional entities + +Method 1 + + World_War_I + +Method 2 + + Germany + + + +-------------- + QUESTION: where did james baldwin go to school? +-Canonic Entity : james_baldwin +-Target Values : (list (description "DeWitt Clinton High School")) +-Candidate Entities: James_A._Baldwin, Baldwin_School, Henry_Perrine_Baldwin_High_School, Andrew_Baldwin, Baldwin_Senior_High_School + +Additional entities + +Method 1 + + Baldwin_School + +Method 2 + + + +-------------- + QUESTION: who was joseph pulitzer and what did he do? +-Canonic Entity : joseph_pulitzer,_jr. +-Target Values : (list (description Publisher) (description Politician) (description Journalist) (description Lawyer)) +-Candidate Entities: Pulitzer_Prize_for_Beat_Reporting, Pulitzer_Prize_for_Explanatory_Reporting, Pulitzer_Foundation_for_the_Arts, Pulitzer_Prize_for_Breaking_News_Reporting, Joseph_Pulitzer, Joseph_Pulitzer_Middle_School + +Additional entities + +Method 1 + + Joseph_Pulitzer + +Method 2 + + Joseph_Pulitzer + + + +-------------- + QUESTION: where do you fly into for destin? +-Canonic Entity : destin,_florida +-Target Values : (list (description "Northwest Florida Regional Airport") (description "Destin–Fort Walton Beach Airport")) +-Candidate Entities: Destin_Daniel_Cretton, Destin, Destin_(song) | Fly_(exercise), Flesh_fly_(fly_fishing), Return_of_the_Fly, Fly_(pentop_computer) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where did jane austen grow up? +-Canonic Entity : jane_austen +-Target Values : (list (description England)) +-Candidate Entities: + + + +-------------- + QUESTION: what was basketball player michael jordan's major in college? +-Canonic Entity : associated_press_college_basketball_player_of_the_year +-Target Values : (list (description "Cultural geography")) +-Candidate Entities: + + + +-------------- + QUESTION: who made the american red cross? +-Canonic Entity : american_red_cross +-Target Values : (list (description "Clara Barton")) +-Candidate Entities: Emblems_of_the_International_Red_Cross_and_Red_Crescent_Movement, British_Red_Cross, Red_Cross,_North_Carolina, Canadian_Red_Cross, Philippine_Red_Cross, International_Federation_of_Red_Cross_and_Red_Crescent_Societies, Red_Cross_(album), Uganda_Red_Cross_Society, International_Red_Cross_and_Red_Crescent_Movement, Indian_Red_Cross_Society, Republic_of_Korea_National_Red_Cross, Irish_Red_Cross, Japanese_Red_Cross_College_of_Nursing, International_Red_Cross_and_Red_Crescent_Museum, Italian_Red_Cross, Saint_Kitts_and_Nevis_Red_Cross_Society, Indonesian_Red_Cross_Society, Red_Cross_Society_of_China + +Additional entities + +Method 1 + + International_Red_Cross_and_Red_Crescent_Movement + +Method 2 + + International_Red_Cross_and_Red_Crescent_Movement + + + +-------------- + QUESTION: what kind government does canada have? +-Canonic Entity : government_of_canada +-Target Values : (list (description "Parliamentary system") (description Federation) (description "Constitutional monarchy") (description "Multi-party system")) +-Candidate Entities: Gifts_in_kind, A_Kind_of_Alchemy, Johann_Friedrich_Kind, Kind_(type_theory), My_Kind_of_Woman/My_Kind_of_Man, The_Fourth_Kind + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where does dr. sanjay gupta practice? +-Canonic Entity : sanjay_gupta +-Target Values : (list (description "Grady Memorial Hospital")) +-Candidate Entities: Gupta, Nikhil_Gupta | European_Practice_Assessment, Practice_(learning_method), Documentary_practice, Textual_Practice, Law_practice_management + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what did newton discover or invent? +-Canonic Entity : discover +-Target Values : (list (description "Newton's law of universal gravitation")) +-Candidate Entities: First_to_file_and_first_to_invent + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who played daniel larusso? +-Canonic Entity : larusso +-Target Values : (list (description "Ralph Macchio, Sr.")) +-Candidate Entities: + + + +-------------- + QUESTION: what happened to umaga wwe? +-Canonic Entity : umaga_(wrestler) +-Target Values : (list (description "Myocardial infarction")) +-Candidate Entities: Umaga | WWE_Legends'_House, WWE_SmackDown_vs._Raw_2011 | Whatever_Happened_to_Corey_Haim? | WWE_2K14, WWE_Libraries, WWE_Aftershock + +Additional entities + +Method 1 + + WWE_2K14 + + WWE_SmackDown_vs._Raw_2011 + +Method 2 + + WWE_2K14 + + + +-------------- + QUESTION: when is the next geneva motor show? +-Canonic Entity : geneva_motor_show +-Target Values : (list (description March)) +-Candidate Entities: + + + +-------------- + QUESTION: who does david beckham play for in 2012? +-Canonic Entity : david_beckham +-Target Values : (list (description "LA Galaxy")) +-Candidate Entities: Victoria_Beckham, The_Beckham_Experiment, Beckham + +Additional entities + +Method 1 + + Victoria_Beckham + +Method 2 + + Victoria_Beckham + + + +-------------- + QUESTION: when and where did the battle of antietam take place? +-Canonic Entity : battle_of_antietam +-Target Values : (list (description Sharpsburg)) +-Candidate Entities: + + + +-------------- + QUESTION: what movies did jj abrams direct? +-Canonic Entity : j._j._abrams +-Target Values : (list (description "Star Wars Episode VII") (description "Anatomy of Hope") (description "Star Trek") (description "Star Trek into Darkness") (description "Mission: Impossible III") (description "Super 8")) +-Candidate Entities: + + + +-------------- + QUESTION: what countries does armenia border? +-Canonic Entity : armenia +-Target Values : (list (description Turkey) (description Georgia) (description Azerbaijan)) +-Candidate Entities: List_of_sets_of_four_countries_that_border_one_another, Finnish–Swedish_border, Indonesia–Thailand_border, Indonesia–Singapore_border, Norway–Russia_border, Indonesia–Vietnam_border, Slovakia–Ukraine_border + +Additional entities + +Method 1 + + List_of_sets_of_four_countries_that_border_one_another + +Method 2 + + List_of_sets_of_four_countries_that_border_one_another + + + +-------------- + QUESTION: what season does haley have her second baby? +-Canonic Entity : haley_james_scott +-Target Values : (list (description "United States of America")) +-Candidate Entities: James_A._Haley, James_A._Haley, Haley_Bennett, Shay_Haley, Ed_Haley + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what two countries speak italian? +-Canonic Entity : speak!!! +-Target Values : (list (description Italy)) +-Candidate Entities: Speak_(No-Man_album), Speak_(Godsmack_song), Don't_Speak, Speak_for_Yourself, Speak_(band) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: when richard nixon was president? +-Canonic Entity : richard_nixon +-Target Values : (list (description 1960)) +-Candidate Entities: Donald_A._Nixon, Nixon_(film), Tricia_Nixon_Cox, Nixon_goes_to_China, Julie_Nixon_Eisenhower + +Additional entities + +Method 1 + + Nixon_(film) + +Method 2 + + Nixon_(film) + + + +-------------- + QUESTION: what job did martin luther king jr have? +-Canonic Entity : martin_luther_king,_jr. +-Target Values : (list (description Preacher) (description Writer) (description Pastor) (description "Peace activist")) +-Candidate Entities: Martin_Luther_King_III, Martin_Luther_King_Jr._Memorial_Library, Martin_Luther_King,_Sr., Martin_Luther_King_Jr._Memorial_Bridge, Martin_Luther_King_Jr._Shoreline, Dr._Martin_Luther_King_Jr._Plaza_(Metrorail_station), Dr._Martin_Luther_King_Jr._Multicultural_Institute, Martin_Luther_College | On_the_Job_(TV_series) + +Additional entities + +Method 1 + + Martin_Luther_King_III + +Method 2 + + Martin_Luther_King,_Sr. + + + +-------------- + QUESTION: what characters does seth macfarlane voice? +-Canonic Entity : seth_macfarlane +-Target Values : (list (description "Peter Griffin") (description "Mickey McFinnegan") (description "Stewie Griffin") (description "Jake Tucker") (description "Glenn Quagmire") (description "Carter Pewterschmidt") (description "Stan Smith") (description "Tom Tucker") (description "Kevin Swanson") (description "Brian Griffin")) +-Candidate Entities: MacFarlane | Voice_acting, Voice_(2AM_album), Share_of_voice, Voice_(Emi_Hinouchi_album), The_Voice_(Mike_Jones_album) + +Additional entities + +Method 1 + + Voice_acting + +Method 2 + + Voice_acting + + + +-------------- + QUESTION: where did macho camacho got shot at? +-Canonic Entity : héctor_camacho +-Target Values : (list (description "San Juan")) +-Candidate Entities: Jürgen_Macho | Shot_(pellet) | Maximino_Ávila_Camacho, Camacho, Hector_Camacho_vs._Edwin_Rosario + +Additional entities + +Method 1 + + Jürgen_Macho + + Hector_Camacho_vs._Edwin_Rosario + +Method 2 + + Hector_Camacho_vs._Edwin_Rosario + + + +-------------- + QUESTION: what has ian somerhalder played in? +-Canonic Entity : ian_somerhalder +-Target Values : (list (description "The Rules of Attraction") (description "In Enemy Hands") (description "How to Make Love to a Woman") (description Pulse) (description "Anatomy of a Hate Crime") (description Wake) (description "The Tournament") (description "Marco Polo") (description Fireball) (description "The Lost Samaritan")) +-Candidate Entities: Ian_Stuart_Donaldson | Twilight_as_Played_by_The_Twilight_Singers, Played + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what time does target in alhambra close? +-Canonic Entity : alhambra +-Target Values : (list (description "The Alhambra")) +-Candidate Entities: Time_On_Target | Close_(to_the_Edit), Close_(to_the_Edit), Close_to_Me_(The_Cure_song), Cathedral_close, Chuck_Close, Statistically_close + +Additional entities + +Method 1 + + Chuck_Close + +Method 2 + + + +-------------- + QUESTION: who is andrew carnegie and what did he do? +-Canonic Entity : andrew_carnegie +-Target Values : (list (description Entrepreneur) (description Businessperson) (description "Business magnate")) +-Candidate Entities: Carnegie_library + +Additional entities + +Method 1 + + Carnegie_library + +Method 2 + + Carnegie_library + + + +-------------- + QUESTION: who plays lorne on angel? +-Canonic Entity : lorne_(angel) +-Target Values : (list (description "Andy Hallett")) +-Candidate Entities: Lord_of_Lorne, Lorne_L._Dawson + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what form of government exists in china? +-Canonic Entity : sixth_form_government_secondary_school +-Target Values : (list (description "Single-party state") (description "Communist state") (description "Socialist state")) +-Candidate Entities: China, Reorganized_National_Government_of_China, Joint_Communiqué_of_the_Government_of_Japan_and_the_Government_of_the_People's_Republic_of_China | Verse–chorus_form | Government, Government_of_China, Provisional_Government_of_the_Republic_of_China | Exists_(band) | Nationalist_Government_(China), Government_of_the_Republic_of_China, The_Form_of_Presbyterial_Church_Government | Clifford–Klein_form | Exists_(film) | Council–manager_government, Mayor–council_government + +Additional entities + +Method 1 + + Government + + China + +Method 2 + + China + + + +-------------- + QUESTION: what influenced abraham lincoln to become president? +-Canonic Entity : assassination_of_abraham_lincoln +-Target Values : (list (description "Theodore Parker") (description "Thomas Paine") (description "Henry Clay")) +-Candidate Entities: Lincoln_(2012_film) | Vice_president, President_(CSRT), President_(steamboat), President_of_the_Church, Acting_president + +Additional entities + +Method 1 + + Vice_president + + Lincoln_(2012_film) + +Method 2 + + Vice_president + + Lincoln_(2012_film) + + + +-------------- + QUESTION: who is jeremy sumpter? +-Canonic Entity : jeremy_sumpter +-Target Values : (list (description Actor)) +-Candidate Entities: + + + +-------------- + QUESTION: when last did real madrid win the champions league? +-Canonic Entity : real_madrid_c.f. +-Target Values : (list (description "2002 UEFA Champions League Final")) +-Candidate Entities: UEFA_Champions_League, Real_Madrid_C, 1999–2000_UEFA_Champions_League | Real_Madrid_Baloncesto | 2009–10_UEFA_Champions_League, 2003–04_UEFA_Champions_League, 2002–03_UEFA_Champions_League, 2000–01_UEFA_Champions_League, 2001–02_UEFA_Champions_League | Real_Madrid_Castilla | 1995–96_UEFA_Champions_League, 1997–98_UEFA_Champions_League, 2008–09_UEFA_Champions_League, 2005–06_UEFA_Champions_League | For_the_Win, WIN_(TV_station), Win_Win_(film) + +Additional entities + +Method 1 + + Real_Madrid_Baloncesto + + 1997–98_UEFA_Champions_League + +Method 2 + + Real_Madrid_Baloncesto + + 2005–06_UEFA_Champions_League + + 2009–10_UEFA_Champions_League + + Real_Madrid_Castilla + + UEFA_Champions_League + + + +-------------- + QUESTION: who was the winner of the 2009 nobel peace prize? +-Canonic Entity : 2007_nobel_peace_prize +-Target Values : (list (description "Barack Obama")) +-Candidate Entities: International_Peace_Bureau + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who is ruling north korea now? +-Canonic Entity : north_korea–south_korea_relations +-Target Values : (list (description "Kim Jong-un")) +-Candidate Entities: Communism_in_Korea | Ruling_Queens_of_Númenor + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what bible do rastafarians use? +-Canonic Entity : bible +-Target Values : (list (description Zion) (description Afrocentrism) (description Jah)) +-Candidate Entities: The_Rastafarians, Rastafari_movement, List_of_Rastafarians + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who does cristiano ronaldo play for now 2011? +-Canonic Entity : cristiano_ronaldo +-Target Values : (list (description "Portugal national football team")) +-Candidate Entities: Ronaldo | Cristiano_Moraes_de_Oliveira | Ronaldo_Morais_Silva, Ronaldo_(name) | Cristiano_Pereira_Figueiredo | 2011_Conference_Premier_play-off_Final, 2011_Fed_Cup_Americas_Zone_Group_I_–_Play-offs, 2011_Fed_Cup_Asia/Oceania_Zone_Group_II_–_Play-offs, 2011_Fed_Cup_Europe/Africa_Zone_Group_I_–_Play-offs, 2011_Fed_Cup_Asia/Oceania_Zone_Group_I_–_Play-offs + +Additional entities + +Method 1 + + Ronaldo + +Method 2 + + Cristiano_Pereira_Figueiredo + + Ronaldo_(name) + + Cristiano_Moraes_de_Oliveira + + Ronaldo + + + +-------------- + QUESTION: what state did henry clay represent? +-Canonic Entity : the_henry_clay_people +-Target Values : (list (description Kentucky)) +-Candidate Entities: Henry_Clay_Township,_Fayette_County,_Pennsylvania, Henry_Clay_Work + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what country was vasco nunez de balboa born in? +-Canonic Entity : vasco_núñez_de_balboa +-Target Values : (list (description Spain)) +-Candidate Entities: Balboa + +Additional entities + +Method 1 + + Balboa + +Method 2 + + Balboa + + + +-------------- + QUESTION: which states does the mississippi river pass through? +-Canonic Entity : pass_christian,_mississippi +-Target Values : (list (description Mississippi) (description Wisconsin) (description Minnesota) (description Kentucky) (description Illinois) (description Tennessee) (description Arkansas) (description Missouri) (description Iowa) (description Louisiana)) +-Candidate Entities: Mississippi_River, National_Mississippi_River_Museum_&_Aquarium, Mississippi_River_floods, Mississippi_Valley_Division, 2011_Mississippi_River_floods, Mississippi_River_Pilot, Mississippi_River_Delta, Steamboats_of_the_Mississippi | Motion_to_pass_on + +Additional entities + +Method 1 + + Mississippi_River + +Method 2 + + Mississippi_River + + + +-------------- + QUESTION: where was san gabriel arcangel located? +-Canonic Entity : mission_san_gabriel_arcángel +-Target Values : (list (description "San Gabriel") (description California)) +-Candidate Entities: Colegio_de_San_Gabriel_Arcangel, San_Gabriel,_California, San_Gabriel,_Suchitepéquez, East_San_Gabriel,_California, San_Gabriel_Valley, South_San_Gabriel,_California, San_Gabriel_Peak, San_Gabriel,_Texas, Mission_San_Rafael_Arcángel, Chinese_enclaves_in_the_San_Gabriel_Valley, San_Gabriel_Dam, San_Gabriel_Chilac, Misión_San_Miguel_Arcángel_de_la_Frontera | Gabriel, San_Gabriel_Mountains, San_Gabriel_Mountains_Regional_Conservancy, San_Gabriel | Mission_San_Miguel_Arcángel | Protocol_for_the_Suppression_of_Unlawful_Acts_against_the_Safety_of_Fixed_Platforms_Located_on_the_Continental_Shelf + +Additional entities + +Method 1 + + Mission_San_Miguel_Arcángel + + San_Gabriel_Mountains + + San_Gabriel_Valley + +Method 2 + + Mission_San_Miguel_Arcángel + + San_Gabriel_Mountains + + San_Gabriel,_California + + + +-------------- + QUESTION: who was the emperor before nero? +-Canonic Entity : nero +-Target Values : (list (description Claudius)) +-Candidate Entities: SS_Emperor, Emperor_Taishō, Emperor_of_the_Serbs, Emperor_Hui_of_Han, Emperor_Meiji + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what type of artwork did henri matisse produce? +-Canonic Entity : henri_matisse +-Target Values : (list (description Fauvism) (description Impressionism) (description Neo-impressionism) (description Modernism)) +-Candidate Entities: Produce | Matisse_(crater), Matisse_(band), An_Essay_on_Matisse | Artwork_(graphic_arts), Artwork_(album) | Matisse_(disambiguation) | Type_88_tank_(China), Bugatti_Type_35, Bugatti_Type_51, Bugatti_Type_13, Type_of_service + +Additional entities + +Method 1 + + Matisse_(band) + + Matisse_(disambiguation) + +Method 2 + + + +-------------- + QUESTION: what is gibby's mom's name? +-Canonic Entity : mom_(futurama) +-Target Values : (list (description "Doris Haynes")) +-Candidate Entities: + + + +-------------- + QUESTION: what type of music does ella fitzgerald sing? +-Canonic Entity : ella_fitzgerald +-Target Values : (list (description "Swing music") (description Jazz) (description "Vocal jazz") (description "Traditional pop music") (description Ballad)) +-Candidate Entities: Ella, A_Man_and_His_Music_+_Ella_+_Jobim + +Additional entities + +Method 1 + + A_Man_and_His_Music_+_Ella_+_Jobim + +Method 2 + + A_Man_and_His_Music_+_Ella_+_Jobim + + + +-------------- + QUESTION: where do the orioles play spring training? +-Canonic Entity : spring_training +-Target Values : (list (description Baltimore)) +-Candidate Entities: The_Orioles, Gulf_Coast_League_Orioles, Baltimore_Orioles | Spring_Awakening_(play) | Orioles_de_Montréal | Spring_Engine + +Additional entities + +Method 1 + + Baltimore_Orioles + +Method 2 + + Baltimore_Orioles + + + +-------------- + QUESTION: what are the best places to go in germany? +-Canonic Entity : faraway_places +-Target Values : (list (description "Topography of Terror")) +-Candidate Entities: The_Places_in_Between, Chipmunks_in_Low_Places, Armenians_in_Germany | Germany | Music_in_High_Places, Friends_in_Low_Places_(novel) | Apostolic_Nuncio_to_Germany | Places_of_worship_in_Kannur_district, List_of_Dutch_exonyms_for_places_in_Germany, 1,000_Places_to_See_in_the_USA_and_Canada_Before_You_Die + +Additional entities + +Method 1 + + Germany + +Method 2 + + Germany + + + +-------------- + QUESTION: what movies are directed by steven spielberg? +-Canonic Entity : steven_spielberg +-Target Values : (list (description Duel) (description "Close Encounters of the Third Kind") (description Always) (description "Catch Me If You Can") (description 1941) (description Amistad) (description "A.I. Artificial Intelligence") (description "E.T. the Extra-Terrestrial") (description Amblin) (description "Empire of the Sun")) +-Candidate Entities: + + + +-------------- + QUESTION: what instrument does mike huckabee play? +-Canonic Entity : mike_huckabee +-Target Values : (list (description "bass guitar")) +-Candidate Entities: Huckabee, Huckabee_(disambiguation) + +Additional entities + +Method 1 + + Huckabee + +Method 2 + + Huckabee + + + +-------------- + QUESTION: what movies does matt damon play in? +-Canonic Entity : matt_damon +-Target Values : (list (description "American Teacher") (description Contagion) (description "Che: Part Two") (description "All the Pretty Horses") (description "Courage Under Fire") (description Dogma) (description "Behind the Screens") (description "Confessions of a Dangerous Mind") (description Elysium) (description "Chasing Amy")) +-Candidate Entities: + + + +-------------- + QUESTION: where is basque located? +-Canonic Entity : basque_cuisine +-Target Values : (list (description Spain) (description France)) +-Candidate Entities: + + + +-------------- + QUESTION: what movies does alyson stoner play in? +-Canonic Entity : alyson_stoner +-Target Values : (list (description "Cheaper by the Dozen") (description "Garfield: The Movie") (description "Step Up 3D") (description "Alyson Stoner Project") (description "Holly Hobbie and Friends: Christmas Wishes") (description "Step Up") (description "Cheaper by the Dozen 2") (description "Alice Upside Down") (description "Yin Yang Yo! The Movie") (description "Camp Rock")) +-Candidate Entities: Alyson | Stoner_film, Stoner | Play_On! + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who did paul jr marry? +-Canonic Entity : paul_teutul,_jr. +-Target Values : (list (description "Rachael Biester")) +-Candidate Entities: Marry_the_Night | Paul_Robeson,_Jr., Paul_H._Robinson,_Jr., Paul_Crouch,_Jr., Paul_A._Yost,_Jr. | Will_You_Marry_Me?_(film) | Paul_S._Trible,_Jr., Paul_Jackson,_Jr., Paul_Pelosi,_Jr., Paul_H._Todd,_Jr., Paul_M._Davis,_Jr., Paul_K._Carlton,_Jr., Paul_L._Freeman,_Jr., Paul_B._Johnson,_Jr., Paul_Mattick_Jr., Paul_Fung,_Jr. + +Additional entities + +Method 1 + + Paul_H._Todd,_Jr. + + Paul_Crouch,_Jr. + +Method 2 + + + +-------------- + QUESTION: when are school holidays in uk 2011? +-Canonic Entity : park_holidays_uk +-Target Values : (list (description Denbighshire)) +-Candidate Entities: Holiday | 2011_UK_Open | French_school_holidays, Holidays_in_the_Sun, Holidays_in_the_Sun_EP, Home_for_the_Holidays_(film), Lists_of_holidays | Nickelodeon_UK_Kids'_Choice_Awards_2011 | Public_holidays_in_Singapore, School_holiday, Scooby-Doo!_Haunted_Holidays, Public_holidays_in_Egypt, Holidays_in_Eden, New_York_State_government_holidays, Public_holidays_in_Australia + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what region is czech republic in? +-Canonic Entity : czech_republic–israel_relations +-Target Values : (list (description "Central Europe")) +-Candidate Entities: Czech_Republic_national_football_team, Law_of_the_Czech_Republic, Outline_of_the_Czech_Republic, First_Lady_of_the_Czech_Republic, Healthcare_in_the_Czech_Republic, Czech_Republic–Germany_border, Protected_areas_of_the_Czech_Republic, Czech_Cup, Czech_Republic_football_league_system, Theatre_of_the_Czech_Republic, Czech_Republic–Slovakia_football_rivalry, President_of_the_Czech_Republic | Inuvik_Region, Aegean_Region, Geita_Region, Eurasian_Scout_Region_(World_Organization_of_the_Scout_Movement) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who the voice of jack skellington? +-Canonic Entity : jack_skellington +-Target Values : (list (description "Danny Elfman") (description "Chris Sarandon")) +-Candidate Entities: Skellington, Skellington_(band) | Voice_(2AM_album), Voice_(Emi_Hinouchi_album), The_Voice_(Mike_Jones_album), You're_the_Voice | Jack_and_the_Witch, The_Voice_(Bible_translation), The_Voice_(2010_film), The_Voice_(U.S._TV_series), The_Voice_of_Holland, The_Voice_(Bulgaria), The_Voice_(North_Devon) | Voice_of_Eye, Voice_(Perfume_song) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who raised queen victoria? +-Canonic Entity : queen_victoria +-Target Values : (list (description "Prince Edward, Duke of Kent and Strathearn") (description "Princess Victoria of Saxe-Coburg-Saalfeld")) +-Candidate Entities: Raised_by_Swans | Victoria_Street,_Melbourne, Victoria_(Australia), Victoria_Memorial,_London + +Additional entities + +Method 1 + + Victoria_(Australia) + +Method 2 + + Victoria_Memorial,_London + + + +-------------- + QUESTION: who are the famous athletes in kenya? +-Canonic Entity : kenya +-Target Values : (list (description "Emmanuel Kipchirchir Mutai") (description "Milcah Chemos Cheywa") (description "Janeth Jepkosgei") (description "Ezekiel Kemboi") (description "Linet Masai") (description "Moses Masai") (description "Alfred Kirwa Yego") (description "Sylvia Kibet") (description "Richard Mateelong") (description "Vivian Cheruiyot")) +-Candidate Entities: Athletes_for_Hope, Parade_of_the_Athletes, Canada's_athletes_of_the_20th_century | Lisa_Picard_Is_Famous + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what to see in staten island new york? +-Canonic Entity : staten_island +-Target Values : (list (description "Third County Courthouse") (description "Staten Island Museum") (description "The Christopher House") (description "Staten Island Zoo") (description "Verrazano-Narrows Bridge") (description "Voorlezer's House") (description "Snug Harbor Cultural Center and Botanical Garden") (description "Staten Island Children's Museum") (description "The Stephens-Black House")) +-Candidate Entities: + + + +-------------- + QUESTION: what continent is greenland located? +-Canonic Entity : outline_of_greenland +-Target Values : (list (description "North America")) +-Candidate Entities: + + + +-------------- + QUESTION: what language do egyptians use? +-Canonic Entity : egyptians +-Target Values : (list (description "Languages of Egypt") (description "Egyptian Arabic") (description "Coptic Language") (description "Egyptian language") (description "Sa'idi Arabic")) +-Candidate Entities: Language_disorder, Alagüilac_language, Language_preservation, Language_of_mathematics, Art_&_Language + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what teams did gretzky play on? +-Canonic Entity : gretzky_(album) +-Target Values : (list (description "Edmonton Oilers")) +-Candidate Entities: Gretzky_(disambiguation) | Play_On! | High-performance_teams | Wayne_Gretzky_Hockey + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where was obama educated? +-Canonic Entity : obama,_fukui +-Target Values : (list (description "Occidental College") (description "Harvard Law School") (description "Noelani Elementary School") (description "Punahou School") (description "State Elementary School Menteng 01") (description "St. Francis of Assisi Catholic School") (description "Columbia University")) +-Candidate Entities: Artists_for_Obama + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who did wayne gretzky play 4? +-Canonic Entity : wayne_gretzky +-Target Values : (list (description "Edmonton Oilers")) +-Candidate Entities: Gretzky_(album), Gretzky_(disambiguation) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who played sean in scrubs? +-Canonic Entity : scrubs_(season_8) +-Target Values : (list (description "Michael Jackson: 30th Anniversary Special")) +-Candidate Entities: Scrubs_(clothing), Scrubs_(TV_series), HM_Prison_Wormwood_Scrubs, List_of_Scrubs_soundtracks | Played | Sean_Nós_and_Sean-nós_Activities, Sean_Levert, Sean_Wilentz, Sean_Kingston, Sean_Malto + +Additional entities + +Method 1 + + Sean_Wilentz + + Scrubs_(TV_series) + +Method 2 + + Scrubs_(TV_series) + + + +-------------- + QUESTION: what was the name of the book hitler wrote while in prison? +-Canonic Entity : the_book_of_love_(song) +-Target Values : (list (description "Mein Kampf")) +-Candidate Entities: ...And_Then_I_Wrote | Hitler:_A_Study_in_Tyranny + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where did pizarro land? +-Canonic Entity : hernando_pizarro +-Target Values : (list (description Spain)) +-Candidate Entities: + + + +-------------- + QUESTION: what is the name of the main train station in san francisco? +-Canonic Entity : san_francisco_4th_and_king_street_station +-Target Values : (list (description "Emeryville Amtrak Station")) +-Candidate Entities: Civic_Center_/_UN_Plaza_Station | San_Bernardino_train_disaster | Main_(river), Main_Street_District,_Dallas, Main_Street, Rossington_Main_F.C., Harbour_Main + +Additional entities + +Method 1 + + Civic_Center_/_UN_Plaza_Station + +Method 2 + + Civic_Center_/_UN_Plaza_Station + + + +-------------- + QUESTION: what is the large mountain range in the western united states? +-Canonic Entity : western_range +-Target Values : (list (description "Rocky Mountains")) +-Candidate Entities: Hanthana_Mountain_Range, Xueshan_Range, Bare_Mountain_Range_(Nevada) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what is brazilian jiu jitsu? +-Canonic Entity : brazilian_national_jiu-jitsu_championship +-Target Values : (list (description "Martial arts")) +-Candidate Entities: Brazilian_jiu-jitsu_gi + +Additional entities + +Method 1 + + Brazilian_jiu-jitsu_gi + +Method 2 + + Brazilian_jiu-jitsu_gi + + + +-------------- + QUESTION: what are the major languages in italy? +-Canonic Entity : languages_of_italy +-Target Values : (list (description "Italian Language")) +-Candidate Entities: Italy | Major_(manga) + +Additional entities + +Method 1 + + Major_(manga) + + Italy + +Method 2 + + Italy + + + +-------------- + QUESTION: where did the battle of new orleans start? +-Canonic Entity : the_battle_of_new_orleans +-Target Values : (list (description Touro) (description "French Quarter") (description "East Riverside") (description "Central City") (description "Lower Garden District") (description Milan) (description "Garden District") (description "Irish Channel") (description "New Orleans Central Business District") (description "St. Thomas Development")) +-Candidate Entities: + + + +-------------- + QUESTION: what does the dominican republic speak? +-Canonic Entity : dominican_republic_cuisine +-Target Values : (list (description "Haitian Creole French Language") (description "Spanish Language") (description "Samaná English")) +-Candidate Entities: + + + +-------------- + QUESTION: when did barry zito won the cy young? +-Canonic Entity : barry_zito +-Target Values : (list (description "2002 Major League Baseball Season")) +-Candidate Entities: Zito | Barry_Young_(musician) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who is paul revere and what did he do? +-Canonic Entity : revere,_massachusetts +-Target Values : (list (description Silversmith)) +-Candidate Entities: Paul_Revere_&_the_Raiders, Paul_Revere_House + +Additional entities + +Method 1 + + Paul_Revere_House + +Method 2 + + Paul_Revere_House + + + +-------------- + QUESTION: where is the thalys train station in brussels? +-Canonic Entity : thalys +-Target Values : (list (description "De Lijn") (description "Brussels Metro") (description "Société Régionale Wallonne du Transport") (description "National Railway Company of Belgium")) +-Candidate Entities: Brussels_National_Airport_railway_station, Brussels | Brussels-North_railway_station, Brussels-South_railway_station, Brussels-Luxembourg_railway_station, Brussels-West_station, Brussels_Central_Station | Francization_of_Brussels, Brussels_School_of_International_Studies, Transport_in_Brussels + +Additional entities + +Method 1 + + Transport_in_Brussels + + Brussels-South_railway_station + + Brussels + +Method 2 + + Francization_of_Brussels + + Brussels + + Brussels-South_railway_station + + + +-------------- + QUESTION: what airlines hub in phoenix? +-Canonic Entity : phoenix,_michigan +-Target Values : (list (description "Phoenix Sky Harbor International Airport")) +-Candidate Entities: The_Hub_(band) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where did cutler jay go to college? +-Canonic Entity : jay_cutler_(american_football) +-Target Values : (list (description "Vanderbilt University")) +-Candidate Entities: + + + +-------------- + QUESTION: who did etta james marry? +-Canonic Entity : etta_james +-Target Values : (list (description "Artis Mills")) +-Candidate Entities: Freedom_to_Marry, Marry_the_Night + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who played andy in toy story 3? +-Canonic Entity : toy_story_3 +-Target Values : (list (description "Andy Warhol")) +-Candidate Entities: + + + +-------------- + QUESTION: where is ann romney from? +-Canonic Entity : romney,_west_virginia +-Target Values : (list (description "Metro Detroit")) +-Candidate Entities: Ann_Romney + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who was galileo galilei? +-Canonic Entity : galileo_galilei +-Target Values : (list (description Mathematician) (description Astronomer) (description Scientist) (description Physicist) (description Astrologer)) +-Candidate Entities: Galileo_(1968_film) + +Additional entities + +Method 1 + + Galileo_(1968_film) + +Method 2 + + Galileo_(1968_film) + + + +-------------- + QUESTION: what school did bill gates go to? +-Canonic Entity : bill_gates +-Target Values : (list (description "Harvard College") (description "Lakeside School")) +-Candidate Entities: Bill_&_Melinda_Gates_Foundation, At_the_Gates + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what movies did miley cyrus play in? +-Canonic Entity : miley_cyrus +-Target Values : (list (description "Hannah Montana: The Movie") (description "Super Rhino") (description "Sonic the Hedgehog") (description "LOL: Laughing Out Loud") (description "Big Fish") (description "Sex and the City 2") (description Bolt) (description "The Last Song") (description "So Undercover") (description "High School Musical 2")) +-Candidate Entities: Fort_Miley_Military_Reservation, Miley_(disambiguation) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what country does dubai come under? +-Canonic Entity : dubai +-Target Values : (list (description "United Arab Emirates")) +-Candidate Entities: Country_music, Country_code, Alternative_country, Cross_country_running_shoe, Country_dance + +Additional entities + +Method 1 + + Country_music + +Method 2 + + Country_code + + + +-------------- + QUESTION: who do nate robinson play for? +-Canonic Entity : nate_robinson +-Target Values : (list (description "Chicago Bulls")) +-Candidate Entities: Play_On! + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what is there to do in mt baldy california? +-Canonic Entity : mount_baldy,_california +-Target Values : (list (description California) (description "San Bernardino County")) +-Candidate Entities: Baldy_Mesa,_California, Mount_Baldy, Mount_Baldy_Zen_Center, Mount_Baldy_School_District, Baldy_(Jackson_County,_Oregon), Mount_Baldy_Ski_Lifts + +Additional entities + +Method 1 + + Mount_Baldy_Ski_Lifts + +Method 2 + + Mount_Baldy_Ski_Lifts + + + +-------------- + QUESTION: where does the panama canal run through? +-Canonic Entity : panama_canal +-Target Values : (list (description "Panama Canal Zone")) +-Candidate Entities: Balboa,_Panama, Panama + +Additional entities + +Method 1 + + Balboa,_Panama + +Method 2 + + Panama + + + +-------------- + QUESTION: what years did jackie robinson play baseball? +-Canonic Entity : jackie_robinson +-Target Values : (list (description "1956 Major League Baseball Season") (description "1948 Major League Baseball Season") (description "1951 Major League Baseball Season") (description "1949 Major League Baseball Season") (description "1950 Major League Baseball Season") (description "1955 Major League Baseball Season") (description "1954 Major League Baseball season") (description "1953 Major League Baseball Season") (description "1947 Major League Baseball Season") (description "1952 Major League Baseball Season")) +-Candidate Entities: Baseball_color_line, Baseball | Bruce_Robinson_(baseball), Clint_Robinson_(baseball) | Jackie_Gutiérrez | Play_On! + +Additional entities + +Method 1 + + Jackie_Gutiérrez + + Clint_Robinson_(baseball) + + Baseball_color_line + +Method 2 + + Jackie_Gutiérrez + + Bruce_Robinson_(baseball) + + Baseball + + + +-------------- + QUESTION: what countries use english as national language? +-Canonic Entity : english_language +-Target Values : (list (description Canada) (description Australia) (description "South Africa") (description Zambia) (description "United Kingdom") (description Zimbabwe) (description Uganda) (description "New Zealand") (description "Turks and Caicos Islands") (description Tanzania)) +-Candidate Entities: Liberian_English, English_in_the_Netherlands + +Additional entities + +Method 1 + +Method 2 + + English_in_the_Netherlands + + + +-------------- + QUESTION: who all has steve nash played for? +-Canonic Entity : steve_nash +-Target Values : (list (description "Phoenix Suns") (description "Dallas Mavericks")) +-Candidate Entities: + + + +-------------- + QUESTION: where does jason statham live? +-Canonic Entity : jason_statham +-Target Values : (list (description Sydenham) (description "Great Yarmouth")) +-Candidate Entities: + + + +-------------- + QUESTION: what are the natural resources in wisconsin? +-Canonic Entity : natural_resources_use_in_tanzania +-Target Values : (list (description "Wisconsin gubernatorial recall election")) +-Candidate Entities: Natural_resource + +Additional entities + +Method 1 + + Natural_resource + +Method 2 + + + +-------------- + QUESTION: what language is cyprus using? +-Canonic Entity : president_of_cyprus +-Target Values : (list (description "Greek Language") (description "Turkish Language")) +-Candidate Entities: + + + +-------------- + QUESTION: what to do in roatan bay? +-Canonic Entity : roatán +-Target Values : (list (description "Sante' Wellness Center") (description "Enomis Divers") (description "Gumbalimba Park") (description "French Harbour Iguana Reserve") (description "Roatán Butterfly Garden")) +-Candidate Entities: Roatan_coral_snake | Bay_Islands_Voice, Bay_(horse), Bay_Islands_Department + +Additional entities + +Method 1 + + Bay_Islands_Department + +Method 2 + + Bay_Islands_Department + + + +-------------- + QUESTION: what did gerald ford do? +-Canonic Entity : gerald_r._ford_presidential_museum +-Target Values : (list (description "President of the United States")) +-Candidate Entities: Gerald_J._Ford_Stadium, Gerald_J._Ford, Gerald_Ford, Gerald_R._Ford,_Jr.,_House, Gerald_R._Ford_International_Airport, President_Gerald_R._Ford,_Jr._Boyhood_Home, Gerald_R._Ford_School_of_Public_Policy, Gerald_R._Ford_Presidential_Library, USS_Gerald_R._Ford_(CVN-78), Gerald_R._Ford_Birthsite_and_Gardens + +Additional entities + +Method 1 + + Gerald_Ford + +Method 2 + + Gerald_Ford + + + +-------------- + QUESTION: what is the rainforest in peru called? +-Canonic Entity : daintree_rainforest +-Target Values : (list (description "Amazon rainforest")) +-Candidate Entities: Rainforest, Tropical_rainforest_conservation | Environmental_issues_in_Peru | Deforestation_of_the_Amazon_Rainforest + +Additional entities + +Method 1 + + Rainforest + +Method 2 + + Rainforest + + + +-------------- + QUESTION: where is mount jefferson located? +-Canonic Entity : mount_jefferson_(bitterroot_range) +-Target Values : (list (description "Jefferson County") (description "United States of America") (description "Linn County") (description Oregon) (description "Marion County")) +-Candidate Entities: + + + +-------------- + QUESTION: what is the state symbols of colorado? +-Canonic Entity : list_of_colorado_state_symbols +-Target Values : (list (description "Painted turtle") (description Stegosaurus) (description "Nil sine numine") (description "Aquilegia saximontana") (description "Greenback cutthroat trout") (description "Yule Marble") (description "Lark Bunting") (description "Picea pungens")) +-Candidate Entities: Symbols_(album), Symbol + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where did buzz williams go to college? +-Canonic Entity : buzz_williams +-Target Values : (list (description "Oklahoma City University") (description "Texas A&M University–Kingsville")) +-Candidate Entities: + + + +-------------- + QUESTION: what battles did canada win in ww2? +-Canonic Entity : win_(tv_station) +-Target Values : (list (description "Émilie Heymans") (description "Blythe Hartley")) +-Candidate Entities: Win_Win_(film) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: which airport is closest to the city of chicago? +-Canonic Entity : chicago_midway_international_airport +-Target Values : (list (description "Chicago Midway International Airport")) +-Candidate Entities: Gary/Chicago_International_Airport, Chicago_Rockford_International_Airport, Salt_Lake_City_International_Airport, Kansas_City_International_Airport | Chicago | Iowa_City_Municipal_Airport, O'Hare_International_Airport | Iterative_closest_point | Atlantic_City_International_Airport, Proposed_Chicago_south_suburban_airport | Closest_pair_of_points_problem | Rapid_City_Regional_Airport, Garden_City_Regional_Airport, Quad_City_International_Airport, City_Airport_Manchester, City_Colleges_of_Chicago | Chicago_Executive_Airport, Mason_City_Municipal_Airport | Distance_of_closest_approach_of_ellipses_and_ellipsoids, Closest_string, Closest_Thing_to_Heaven + + + +-------------- + QUESTION: what part of the world is south africa in? +-Canonic Entity : israel–south_africa_relations +-Target Values : (list (description Africa)) +-Candidate Entities: South_Africa, University_of_South_Africa, Xenophobia_in_South_Africa, Soccer_in_South_Africa, Monash_University,_South_Africa_campus, Courts_of_South_Africa, South_Africa_national_football_team, High_Commission_of_South_Africa,_London, Henley_Business_School_South_Africa, Occupy_South_Africa, Political_assassinations_in_post-apartheid_South_Africa, Alive_in_South_Africa, High_Court_of_South_Africa, Miss_South_Africa + +Additional entities + +Method 1 + + South_Africa + +Method 2 + + South_Africa + + + +-------------- + QUESTION: what movies did adam sandler play in? +-Canonic Entity : adam_sandler +-Target Values : (list (description "Big Daddy") (description "Dickie Roberts: Former Child Star") (description "Joe Dirt 2") (description "Bedtime Stories") (description Click) (description "The Benchwarmers") (description "Eight Crazy Nights") (description "The House Bunny") (description "You Don't Mess with the Zohan") (description "I Now Pronounce You Chuck and Larry")) +-Candidate Entities: Sandler | The_Movies, Sky_Movies_(New_Zealand), The_Movies_(band), Yahoo!_Movies, At_the_Movies_(U.S._TV_series) + +Additional entities + +Method 1 + + Yahoo!_Movies + +Method 2 + + Yahoo!_Movies + + + +-------------- + QUESTION: who to vote for in san francisco 2012? +-Canonic Entity : san_francisco_de_asís +-Target Values : (list (description "Libertarian Party of San Francisco")) +-Candidate Entities: + + + +-------------- + QUESTION: where is washington d.c. at? +-Canonic Entity : healthcare_in_washington,_d.c. +-Target Values : (list (description Maryland)) +-Candidate Entities: + + + +-------------- + QUESTION: who is the ravens quarterback 2012? +-Canonic Entity : sent_by_ravens +-Target Values : (list (description "Joe Flacco")) +-Candidate Entities: + + + +-------------- + QUESTION: who is the current leader of china and what is their title? +-Canonic Entity : leader_of_the_opposition_(tasmania) +-Target Values : (list (description "Xi Jinping")) +-Candidate Entities: China + +Additional entities + +Method 1 + + China + +Method 2 + + + +-------------- + QUESTION: when did aldi originate? +-Canonic Entity : aldi +-Target Values : (list (description 1961)) +-Candidate Entities: Bromley_Originate_Change + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who created microsoft windows? +-Canonic Entity : bundling_of_microsoft_windows +-Target Values : (list (description "Bill Gates")) +-Candidate Entities: Windows_MultiPoint_Server, Windows_Defender, Windows_Intune, Windows_Mobile, Windows_XP, Windows_Messenger, Windows_3.1x, Windows_Virtual_PC, Windows_2000, Windows_7 | Runs_created, God_Created_the_Integers, Cardinals_created_by_Adrian_VI, The_Beauty_Created_LP + +Additional entities + +Method 1 + + Windows_XP + +Method 2 + + Windows_Mobile + + + +-------------- + QUESTION: what is a king charles cavalier dog? +-Canonic Entity : cavalier_king_charles_spaniel +-Target Values : (list (description "Toy Group")) +-Candidate Entities: + + + +-------------- + QUESTION: what is john steinbeck best known for? +-Canonic Entity : john_steinbeck +-Target Values : (list (description "Of Mice and Men")) +-Candidate Entities: Steinbeck_(surname), Elaine_Anderson_Steinbeck, National_Steinbeck_Center, Ari_Michael_Steinbeck + +Additional entities + +Method 1 + + National_Steinbeck_Center + +Method 2 + + National_Steinbeck_Center + + + +-------------- + QUESTION: when was barack obama elected president? +-Canonic Entity : barack_obama +-Target Values : (list (description 1/10/2011)) +-Candidate Entities: + + + +-------------- + QUESTION: who nominated anthony kennedy? +-Canonic Entity : david_kennedy +-Target Values : (list (description "Ronald Reagan")) +-Candidate Entities: Anthony_Shriver, Anthony_Kennedy | Mary_Ann_Kennedy_(US_singer), Kennedy, Kennedy_(musician) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who was the voice of darth vader in episode iii? +-Canonic Entity : darth_vader +-Target Values : (list (description "Hayden Christensen")) +-Candidate Entities: Vader_(band) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what year did lamar odom play for the clippers? +-Canonic Entity : lamar_odom +-Target Values : (list (description "2000–01 NBA season")) +-Candidate Entities: Los_Angeles_Clippers + +Additional entities + +Method 1 + + Los_Angeles_Clippers + +Method 2 + + Los_Angeles_Clippers + + + +-------------- + QUESTION: where the french language come from? +-Canonic Entity : french_language +-Target Values : (list (description "Indo-European languages") (description "Romance languages")) +-Candidate Entities: Old_French, Louisiana_French, Middle_French, Marshall_Chair_of_French, Quebec_French, Swiss_French, French_Guianese_Creole, Cajun_French, French_migration_to_the_United_Kingdom + +Additional entities + +Method 1 + + Old_French + +Method 2 + + Quebec_French + + + +-------------- + QUESTION: what is the government of chile? +-Canonic Entity : chile +-Target Values : (list (description Republic)) +-Candidate Entities: + + + +-------------- + QUESTION: what movie does natalie portman play in? +-Canonic Entity : natalie_portman +-Target Values : (list (description Closer) (description "Beautiful Girls") (description "Star Wars Episode III: Revenge of the Sith") (description "Cold Mountain") (description "The Other Boleyn Girl") (description "V for Vendetta") (description "Star Wars Episode II: Attack of the Clones") (description "Anywhere but Here") (description "Garden State") (description "Star Wars Episode I: The Phantom Menace")) +-Candidate Entities: Natalie_(singer) | Play_On! | Movie_Gallery | Play_It_Again,_Sam_(film), Play_(Moby_album) + +Additional entities + +Method 1 + + Play_It_Again,_Sam_(film) + +Method 2 + + + +-------------- + QUESTION: who is the head coach of the new orleans saints? +-Canonic Entity : new_orleans_saints +-Target Values : (list (description "Sean Payton")) +-Candidate Entities: Head_coach | New_Orleans_Pelicans + +Additional entities + +Method 1 + + New_Orleans_Pelicans + +Method 2 + + Head_coach + + New_Orleans_Pelicans + + + +-------------- + QUESTION: where does the shannon river flow? +-Canonic Entity : river_shannon +-Target Values : (list (description Limerick) (description "Shannon, County Clare") (description Athlone)) +-Candidate Entities: Watching_the_River_Flow, Flow_(video_game) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what movies does zac efron star in? +-Canonic Entity : zac_efron +-Target Values : (list (description "17 Again") (description "Charlie St. Cloud") (description "Miracle Run") (description "Me and Orson Welles") (description "Melinda's World") (description "High School Musical") (description "The Derby Stallion") (description "High School Musical 2") (description "High School Musical 3: Senior Year") (description Hairspray)) +-Candidate Entities: Inés_Efron | STAR_Movies | Efron | STAR_Chinese_Movies | Doe_people, Samuel_Doe, Lawrence_Doe, Nicholas_B._Doe, Francis_Doe + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what is the political system of nigeria? +-Canonic Entity : political_appointments_system_in_hong_kong +-Target Values : (list (description "Federal republic")) +-Candidate Entities: Nigeria, Religion_in_Nigeria, Foreign_relations_of_Nigeria | University_of_Nigeria,_Nsukka, Outline_of_Nigeria, United_Africa_Company_of_Nigeria, Colony_and_Protectorate_of_Nigeria, Power_Holding_Company_of_Nigeria + +Additional entities + +Method 1 + + Nigeria + +Method 2 + + Nigeria + + + +-------------- + QUESTION: where is puerto galera? +-Canonic Entity : puerto_galera,_oriental_mindoro +-Target Values : (list (description Philippines) (description "Oriental Mindoro")) +-Candidate Entities: Galera, Galera_(song) + + + +-------------- + QUESTION: where is the battle of verdun located? +-Canonic Entity : verdun +-Target Values : (list (description Verdun)) +-Candidate Entities: Protocol_for_the_Suppression_of_Unlawful_Acts_against_the_Safety_of_Fixed_Platforms_Located_on_the_Continental_Shelf + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what currency does hungary have? +-Canonic Entity : currency +-Target Values : (list (description "Hungarian forint")) +-Candidate Entities: Hungary + +Additional entities + +Method 1 + + Hungary + +Method 2 + + Hungary + + + +-------------- + QUESTION: who plays stella in coronation street? +-Canonic Entity : coronation_street +-Target Values : (list (description Lager)) +-Candidate Entities: Coronation_(French_horse) | Stella_Maris_College_of_Quezon_City, Stella_(singer) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what all did michael jackson own? +-Canonic Entity : prince_michael_jackson_i +-Target Values : (list (description "Neverland Ranch")) +-Candidate Entities: Michael_A._Jackson, Michael_Jackson, Michael_Jackson_(radio_commentator), Michael_P._Jackson, Michael_Jackson-related_games, Michael_Jackson_(anthropologist), Michael_Jackson_(TV_executive) | Mike_Jackson_(systems_scientist), Michael_W._Jackson, The_Essential_Michael_Jackson, 50_Best_Songs_–_The_Motown_Years:_Michael_Jackson_&_The_Jackson_5, Mike_Jackson, Paris-Michael_Katherine_Jackson | Michael_Gregory_(jazz_guitarist), Michael_(album), List_of_concert_tours_by_Michael_Jackson_and_The_Jackson_5, Michael_Jackson_(English_singer) | LL_parser, Ll + + + +-------------- + QUESTION: what form of government does canada have? +-Canonic Entity : government_of_canada +-Target Values : (list (description "Parliamentary system")) +-Candidate Entities: Sixth_Form_Government_Secondary_School, Council–manager_government, Mayor–council_government | Canada | Form_FDA_483 | Government, Government_(linguistics) + +Additional entities + +Method 1 + + Government + + Canada + +Method 2 + + Government + + Canada + + + +-------------- + QUESTION: what language does people speak in australia? +-Canonic Entity : speak!!! +-Target Values : (list (description "English Language")) +-Candidate Entities: The_People_Speak_(film), Speak_(No-Man_album), Speak_(Godsmack_song), I_Don't_Speak_the_Language, Speak_(film), SPEAK_(test), The_People_Speak + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who married jessica simpson? +-Canonic Entity : jessica_simpson +-Target Values : (list (description "Nick Lachey")) +-Candidate Entities: + + + +-------------- + QUESTION: what jersey will the packers wear in the super bowl? +-Canonic Entity : super_bowl +-Target Values : (list (description "Dark green")) +-Candidate Entities: Green_Bay_Packers + +Additional entities + +Method 1 + + Green_Bay_Packers + +Method 2 + + Green_Bay_Packers + + + +-------------- + QUESTION: who controls panama? +-Canonic Entity : panama +-Target Values : (list (description "Ricardo Martinelli")) +-Candidate Entities: Entity-level_controls, Universal_controls, Information_technology_controls, Prudential_capital_controls, Aero_Controls + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: when did baltimore orioles win the world series? +-Canonic Entity : baltimore_orioles +-Target Values : (list (description "1983 World Series") (description "1966 World Series") (description "1970 World Series")) +-Candidate Entities: Beltway_Series | Baltimore | For_the_Win, WIN_(TV_station) + +Additional entities + +Method 1 + + Beltway_Series + + Baltimore + +Method 2 + + Beltway_Series + + Baltimore + + + +-------------- + QUESTION: what to do and see in miami florida? +-Canonic Entity : florida_state–miami_football_rivalry +-Target Values : (list (description Wolfsonian-FIU) (description "Lowe Art Museum") (description "Holocaust Memorial of the Greater Miami Jewish Federation") (description "Miami Art Museum") (description "Frost Art Museum") (description "Coral Castle") (description "Jewish Museum of Florida") (description "Jungle Island") (description "Miami Seaquarium") (description "Venetian Pool")) +-Candidate Entities: Miami | North_Miami,_Florida, South_Miami,_Florida, Miami_Gardens,_Florida, Miami_Shores,_Florida, Miami_Springs,_Florida, Miami_Lakes,_Florida, Miami_Beach,_Florida, West_Miami,_Florida, Miami-Dade_County,_Florida, North_Miami_Beach,_Florida, Transportation_in_South_Florida | Neighborhoods_in_Miami, South_Miami_Heights,_Florida + +Additional entities + +Method 1 + + Miami + + Miami_Gardens,_Florida + +Method 2 + + Miami + + Miami_Gardens,_Florida + + + +-------------- + QUESTION: what is the currency in the dominican republic 2010? +-Canonic Entity : dominican_republic_cuisine +-Target Values : (list (description "Dominican peso")) +-Candidate Entities: Dominican_peso | 2010_S.League, 2010_Biodiversity_Target, 2010_Bradford_Bulls_season, 2010_Svenska_Supercupen, 2010_Dundalk_F.C._season + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what is happening in germany right now? +-Canonic Entity : this_is_not_happening +-Target Values : (list (description "Golf Beach Landing") (description "Second Battle of the Aisne")) +-Candidate Entities: History_Is_What's_Happening + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what movies did chris farley do? +-Canonic Entity : chris_farley +-Target Values : (list (description Coneheads) (description "Wayne's World") (description "Black Sheep") (description "Beverly Hills Ninja") (description "Wayne's World 2") (description "Billy Madison") (description "Dirty Work") (description "Almost Heroes") (description Airheads) (description "Tommy Boy")) +-Candidate Entities: + + + +-------------- + QUESTION: who plays nana in the royal family? +-Canonic Entity : nana_(rapper) +-Target Values : (list (description "Anna Tsuchiya")) +-Candidate Entities: Nana_(manga), Nana_Akwasi_Asare + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who helped china in ww2? +-Canonic Entity : china +-Target Values : (list (description "United States of America")) +-Candidate Entities: BBC_WW2_People's_War | How_the_Hermit_helped_to_win_the_King's_Daughter | German_code_breaking_in_World_War_II + +Additional entities + +Method 1 + +Method 2 + + BBC_WW2_People's_War + + + +-------------- + QUESTION: what race are arabs? +-Canonic Entity : stereotypes_of_arabs_and_muslims_in_the_united_states +-Target Values : (list (description "Semitic people")) +-Candidate Entities: + + + +-------------- + QUESTION: where george washington carver go to school? +-Canonic Entity : george_washington_carver_school_(coral_gables,_florida) +-Target Values : (list (description "Tuskegee University") (description "Iowa State University") (description "Simpson College")) +-Candidate Entities: Carver_Military_Academy + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who plays steffy on bold and the beautiful? +-Canonic Entity : the_bold_and_the_beautiful +-Target Values : (list (description "Jacqueline MacInnes Wood")) +-Candidate Entities: Bold,_St_Helens | Four_Major_Plays_of_Chikamatsu | Beautiful_(Meg_album) | Bold_&_Delicious/Pride, Bold_Street,_Liverpool, Bold_as_Brass_(album), Bold_(disambiguation) | Steffy_Forrester, Joe_Steffy | Plays_Live, Smegma_Plays_Merzbow_Plays_Smegma + +Additional entities + +Method 1 + + Steffy_Forrester + +Method 2 + + Steffy_Forrester + + + +-------------- + QUESTION: where was the earthquake in christchurch? +-Canonic Entity : 2011_christchurch_earthquake +-Target Values : (list (description Canterbury)) +-Candidate Entities: Christchurch, Cathedral_of_the_Blessed_Sacrament,_Christchurch, Christchurch_F.C. + +Additional entities + +Method 1 + + Christchurch + +Method 2 + + Christchurch + + + +-------------- + QUESTION: what timezone is reno nv? +-Canonic Entity : reno,_nevada +-Target Values : (list (description "Pacific Time Zone")) +-Candidate Entities: University_of_Nevada,_Reno, Morrill_Hall,_University_of_Nevada,_Reno, Roman_Catholic_Diocese_of_Reno, University_of_Nevada,_Reno_Arboretum, Jesse_L._Reno, Reno_(Amtrak_station), Reno_F.C. + +Additional entities + +Method 1 + + University_of_Nevada,_Reno + +Method 2 + + University_of_Nevada,_Reno + + + +-------------- + QUESTION: who was niccolo machiavelli influenced by? +-Canonic Entity : niccolò_machiavelli +-Target Values : (list (description Cicero) (description "Desiderius Erasmus") (description Tacitus) (description Plato) (description Livy) (description "Dante Alighieri") (description Aristotle) (description "Leonardo da Vinci") (description Plutarch)) +-Candidate Entities: Thoughts_on_Machiavelli, Machiavelli_and_the_Four_Seasons, Machiavelli_(Italian_card_game), Machiavelli_(board_game) | Racketeer_Influenced_and_Corrupt_Organizations_Act + +Additional entities + +Method 1 + +Method 2 + + Machiavelli_(board_game) + + + +-------------- + QUESTION: what did cam newton do? +-Canonic Entity : cam_newton +-Target Values : (list (description Quarterback)) +-Candidate Entities: Cam + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what is latin america spanish? +-Canonic Entity : spanish_language_in_the_americas +-Target Values : (list (description "Western Hemisphere")) +-Candidate Entities: Japan–Latin_America_relations, Race_and_ethnicity_in_Latin_America, Crime_and_violence_in_Latin_America, Latin_America_Solidarity_Organisation_in_Norway, Latin_America, Street_children_in_Latin_America | Latin_American_wars_of_independence + +Additional entities + +Method 1 + + Latin_American_wars_of_independence + + Latin_America + +Method 2 + + Latin_American_wars_of_independence + + Latin_America + + + +-------------- + QUESTION: what continent does the bahamas belong to? +-Canonic Entity : the_bahamas +-Target Values : (list (description "North America")) +-Candidate Entities: Continent_(magazine) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where is baybrook mall? +-Canonic Entity : baybrook_mall +-Target Values : (list (description Friendswood)) +-Candidate Entities: Mall_of_America + +Additional entities + +Method 1 + +Method 2 + + Mall_of_America + + + +-------------- + QUESTION: what state did obama win? +-Canonic Entity : obama,_fukui +-Target Values : (list (description Illinois)) +-Candidate Entities: Artists_for_Obama | For_the_Win, WIN_(TV_station) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where did isaac newton go to high school? +-Canonic Entity : isaac_newton +-Target Values : (list (description "The King's School, Grantham")) +-Candidate Entities: Newton_High_School_(Kansas), Newton_High_School_(New_Jersey), Newton_Preparatory_School + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what planet did princess leia call home? +-Canonic Entity : princess_leia +-Target Values : (list (description Alderaan)) +-Candidate Entities: Princess_(car) | Atomic_Planet_Entertainment | Princess_of_Power, MV_Hebridean_Princess + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where did english numbers originate from? +-Canonic Entity : english_numerals +-Target Values : (list (description "Latin alphabet")) +-Candidate Entities: The_Magic_Numbers, Numbers_(band) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what kind of money do you use in costa rica? +-Canonic Entity : vice_president_of_costa_rica +-Target Values : (list (description "Costa Rican colón")) +-Candidate Entities: + + + +-------------- + QUESTION: where is bob marley from where was he born? +-Canonic Entity : bob_marley +-Target Values : (list (description "Nine Mile, Jamaica")) +-Candidate Entities: Marley_(film) + +Additional entities + +Method 1 + + Marley_(film) + +Method 2 + + Marley_(film) + + + +-------------- + QUESTION: what year did spudd webb won the dunk contest? +-Canonic Entity : slam_dunk_contest +-Target Values : (list (description "1985-86 NBA season")) +-Candidate Entities: Dunk_(band), Slam_Dunk_Records + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what did randy jackson play in journey? +-Canonic Entity : randy_jackson_(the_jacksons) +-Target Values : (list (description "bass guitar") (description Vocals)) +-Candidate Entities: Journey_to_Regionals | Randy, Randy_&_the_Rainbows | Journey_into_Imagination_with_Figment | Randy_and_Sharon_Marsh | Journey_of_the_Magi, Journey_Beyond_Tomorrow, Journey_(1989_video_game) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where to stay in south rim grand canyon? +-Canonic Entity : grand_canyon +-Target Values : (list (description "Grand Canyon South Rim Ranger's Dormitory")) +-Candidate Entities: Canyon_Rim,_Utah | River_Tay, Tay_Grin + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what beach did the canadians assault? +-Canonic Entity : the_council_of_canadians +-Target Values : (list (description "Émilie Heymans") (description "Blythe Hartley")) +-Candidate Entities: Lost_Canadians | The_Assault_on_Reason, Assault_(1988_video_game) | The_Beach_(film), Beach_racing, Sunset_Beach_(Treasure_Island) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what discovery did sir isaac newton make about force? +-Canonic Entity : isaac_newton +-Target Values : (list (description "He assumed that the rate of fall is proportional to the force of gravity and that this force is inversely proportional to the square of the distance from the center of the Earth.")) +-Candidate Entities: Newton_baronets | Isaac_N._Youngs, Isaac_N._Arnold | Newton_(unit) | Isaac_N._Morris, Isaac_N._Comstock + +Additional entities + +Method 1 + + Newton_(unit) + +Method 2 + + Newton_baronets + + Newton_(unit) + + + +-------------- + QUESTION: what currency can you use in aruba? +-Canonic Entity : outline_of_aruba +-Target Values : (list (description "Aruban florin")) +-Candidate Entities: Aruba | Currency + +Additional entities + +Method 1 + + Currency + + Aruba + +Method 2 + + Currency + + Aruba + + + +-------------- + QUESTION: where does roman abramovich live? +-Canonic Entity : roman_abramovich +-Target Values : (list (description Moscow) (description Ukhta)) +-Candidate Entities: Live_(James_Taylor_album) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who is nolan ryan married to? +-Canonic Entity : nolan_ryan +-Target Values : (list (description "Ruth Holdorff")) +-Candidate Entities: + + + +-------------- + QUESTION: where to travel in africa in january? +-Canonic Entity : africa,_ohio +-Target Values : (list (description Angola) (description "Côte d’Ivoire") (description "Central African Republic") (description "Burkina Faso") (description Djibouti) (description Congo) (description Burundi) (description Botswana) (description "Cape Verde") (description Benin)) +-Candidate Entities: Refugee_travel_document, Discovery_Travel_&_Living_(UK_&_Ireland), Travel, Africa_Travel_Association | The_January_Man, January_Jones, January_14, January_25, January_15 + +Additional entities + +Method 1 + + January_Jones + +Method 2 + + + +-------------- + QUESTION: where did walt disney live before he died? +-Canonic Entity : the_walt_disney_company +-Target Values : (list (description Chicago) (description "Kansas City") (description France) (description "Holmby Hills") (description Marceline) (description Hermosa)) +-Candidate Entities: Walt_Disney, Walt_Disney_Parks_and_Resorts, Walt_Disney_World, Walt_Disney_Pictures, Walt_Disney_Studios_Home_Entertainment, Walt_Disney_Music_Company, The_Walt_Disney_Studios_(division), Incidents_at_Walt_Disney_World, Walt_Disney_Studios_Park, The_Walt_Disney_Family_Museum, Walt_Disney_Imagineering, Walt_Disney_Animation_Studios, Disney_Theatrical_Productions, Academy_Award_Review_of_Walt_Disney_Cartoons, Walt_Disney_Creative_Entertainment, Disney_Interactive, Walt_Disney_Records | The_Dog_It_Was_That_Died | Live_(James_Taylor_album), Ableton_Live | The_Fun_Machine_Took_a_Shit_&_Died, The_Day_the_Music_Died_(album) + +Additional entities + +Method 1 + + Walt_Disney + +Method 2 + + Walt_Disney + + + +-------------- + QUESTION: what did neil say on the moon? +-Canonic Entity : neil_reagan +-Target Values : (list (description "One Small Step")) +-Candidate Entities: Neil_Armstrong | Keith_Moon, Moon, Moon_Township,_Allegheny_County,_Pennsylvania, Moon_Lake,_Mississippi, Peter_Moon_(musician), Of_a_Fire_on_the_Moon, A_Walk_on_the_Moon, Fly_Me_to_the_Moon, Moon_landing_conspiracy_theories + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who played carlton banks? +-Canonic Entity : carlton,_new_york +-Target Values : (list (description "Alfonso Ribeiro")) +-Candidate Entities: + + + +-------------- + QUESTION: who does matt damon have kids with? +-Canonic Entity : matt_damon +-Target Values : (list (description "Luciana Barroso")) +-Candidate Entities: + + + +-------------- + QUESTION: who is the current leader of cuba today? +-Canonic Entity : cuba–united_states_relations +-Target Values : (list (description "Raúl Castro")) +-Candidate Entities: Cuba + +Additional entities + +Method 1 + + Cuba + +Method 2 + + Cuba + + + +-------------- + QUESTION: what books did emily dickinson wrote? +-Canonic Entity : emily_dickinson_museum +-Target Values : (list (description "Two poems") (description ""Hope" is the thing with feathers") (description Success) (description "The letters") (description "Selected poetry of Emily Dickinson") (description "Emily Dickinson's open folios") (description Poems) (description "Acts of Light: The World of Emily Dickinson") (description "The complete poems") (description "Emily Dickinson")) +-Candidate Entities: Emily_Dickinson, Emily_Dickinson_International_Society, The_Emily_Dickinson_Journal, Emily_Vermeule, Emily_E._Dickinson_House | The_Books, Abaris_Books, Penguin_Books, Orchard_Books, Chronicle_Books + +Additional entities + +Method 1 + + Penguin_Books + + Emily_Dickinson + +Method 2 + + Emily_Dickinson + + + +-------------- + QUESTION: what did anasazi indians live in? +-Canonic Entity : anasazi_(the_x-files) +-Target Values : (list (description "Four Corners")) +-Candidate Entities: + + + +-------------- + QUESTION: what part of italy did most immigrants come from? +-Canonic Entity : immigrants_(2008_film) +-Target Values : (list (description /g/124x8gxxd)) +-Candidate Entities: Economic_impact_of_illegal_immigrants_in_the_United_States + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what hotel should i stay in san francisco? +-Canonic Entity : w_san_francisco +-Target Values : (list (description "Palace Hotel, San Francisco")) +-Candidate Entities: International_Hotel_(San_Francisco) | InterContinental_San_Francisco, Fairmont_San_Francisco, Hilton_San_Francisco_Union_Square, San_Francisco_Marriott_Marquis, San_Francisco_de_Asís, Four_Seasons_Hotel,_San_Francisco, San_Francisco, Arc_of_San_Francisco, San_Francisco_SPCA | Huntington_Hotel_(San_Francisco), Hotel_San_Carlos_(Phoenix) | San_Francisco_Bay_Area, French_Consulate_General,_San_Francisco | Ambassador_Hotel_(San_Francisco) | San_Francisco,_Minnesota, City_College_of_San_Francisco, San_Francisco_4th_and_King_Street_Station, San_Francisco_and_San_Jose_Railroad + +Additional entities + +Method 1 + + San_Francisco_Bay_Area + + San_Francisco + +Method 2 + + San_Francisco + + + +-------------- + QUESTION: what events led to napoleon's downfall? +-Canonic Entity : downfall_(the_gathering_album) +-Target Values : (list (description "Arsenic poisoning") (description "Stomach cancer")) +-Candidate Entities: Downfall_(2004_film), Downfall_(Children_of_Bodom_song) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: in which state did the santa fe trail begin? +-Canonic Entity : santa_fe_river_(new_mexico) +-Target Values : (list (description "New Mexico")) +-Candidate Entities: + + + +-------------- + QUESTION: where is whitey bulger? +-Canonic Entity : whitey_bulger +-Target Values : (list (description Boston)) +-Candidate Entities: William_M._Bulger + +Additional entities + +Method 1 + + William_M._Bulger + +Method 2 + + William_M._Bulger + + + +-------------- + QUESTION: who created youtube? +-Canonic Entity : youtube +-Target Values : (list (description "Chad Hurley") (description "Steve Chen") (description "Jawed Karim")) +-Candidate Entities: Runs_created, God_Created_the_Integers, Cardinals_created_by_Adrian_VI, The_Beauty_Created_LP + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what to do in hong kong for a week? +-Canonic Entity : hong_kong_literature +-Target Values : (list (description "Victoria Peak") (description "Hong Kong Museum of Art") (description "Dr Sun Yat-sen Museum") (description "Kowloon Walled City") (description "Po Lin Monastery") (description "Hong Kong Disneyland") (description "Ten Thousand Buddhas Monastery") (description "Lantau Island")) +-Candidate Entities: Holy_Week, Stop_the_Week, The_Week, This_Week_(ABC_TV_series), Legal_Week + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what currency does greece use 2012? +-Canonic Entity : 2012–13_superleague_greece +-Target Values : (list (description Euro)) +-Candidate Entities: Currency | Greece_(town),_New_York | Currency_(lads_and_lasses) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what influenced andy warhol's work? +-Canonic Entity : andy_warhol's_bad +-Target Values : (list (description "Jasper Johns") (description "Jack Smith") (description "Truman Capote") (description "Tom of Finland") (description "Ben Shahn") (description "Marcel Duchamp")) +-Candidate Entities: Andy_Warhol's_Velvet_Underground_Featuring_Nico, Andy_Warhol's_Frankenstein + +Additional entities + +Method 1 + + Andy_Warhol's_Frankenstein + +Method 2 + + Andy_Warhol's_Frankenstein + + + +-------------- + QUESTION: what is fresno state's zip code? +-Canonic Entity : zip_code +-Target Values : (list (description 93702) (description 93703) (description 93701) (description 93706) (description 93707) (description 93704) (description 93705) (description 93650) (description 93708) (description 93709)) +-Candidate Entities: Fresno_State_Bulldogs_baseball + +Additional entities + +Method 1 + +Method 2 + + Fresno_State_Bulldogs_baseball + + + +-------------- + QUESTION: who is angelina jolie husband name? +-Canonic Entity : angelina_jolie +-Target Values : (list (description "Brad Pitt")) +-Candidate Entities: Jolie_(disambiguation), Jolie_&_the_Wanted, Ruud_Jolie + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what kourtney kardashian baby girls name? +-Canonic Entity : kourtney_kardashian +-Target Values : (list (description "Penelope Scotland Disick") (description "Mason Dash Disick")) +-Candidate Entities: Kardashian | Girls'_Generation's_Hello_Baby | List_of_Kourtney_and_Kim_Take_Miami_episodes | Be_My_Baby_(Wonder_Girls_song) + +Additional entities + +Method 1 + + Kardashian + + List_of_Kourtney_and_Kim_Take_Miami_episodes + +Method 2 + + List_of_Kourtney_and_Kim_Take_Miami_episodes + + + +-------------- + QUESTION: what is the present form of government in iran? +-Canonic Entity : interim_government_of_iran +-Target Values : (list (description "Islamic republic") (description Theocracy) (description "Unitary state")) +-Candidate Entities: Sixth_Form_Government_Secondary_School | Iran | Council–manager_government, Mayor–council_government | Iran_(word) | Form_FDA_483 | Government, Government_(linguistics) + +Additional entities + +Method 1 + + Government + + Iran + +Method 2 + + Government + + Iran + + + +-------------- + QUESTION: which hmv stores are open? +-Canonic Entity : hmv +-Target Values : (list (description Waterstones)) +-Candidate Entities: + + + +-------------- + QUESTION: what were marco polo's goals? +-Canonic Entity : marco_polo +-Target Values : (list (description Explorer)) +-Candidate Entities: Marco_Bülow, Marco_Gómez | ALS_Association, ALS_Society_of_Canada, ALS_Therapy_Development_Institute, Als_(island), Als_het_weer_lente_is + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who did marco polo travel with? +-Canonic Entity : marco_polo +-Target Values : (list (description "Niccolò Polo") (description "Nicole Anna Defuseh")) +-Candidate Entities: Marco_the_Magnificent | Corporate_travel_management, Travel_agency, Space-A_travel, Refugee_travel_document, Travel + +Additional entities + +Method 1 + + Travel + + Marco_the_Magnificent + +Method 2 + + Marco_the_Magnificent + + + +-------------- + QUESTION: what does icelandic sound like? +-Canonic Entity : icelandic_króna +-Target Values : (list (description "Indo-European languages") (description "North Germanic languages")) +-Candidate Entities: Icelandic_language, Icelandic_Canadian, Nobility_in_Iceland, Icelandic_literature + +Additional entities + +Method 1 + + Icelandic_language + +Method 2 + + Icelandic_language + + + +-------------- + QUESTION: where does bill richardson live? +-Canonic Entity : bill_richardson +-Target Values : (list (description "New Mexico")) +-Candidate Entities: + + + +-------------- + QUESTION: who are the judges on the us supreme court? +-Canonic Entity : supreme_court_of_victoria +-Target Values : (list (description "John Roberts") (description "Clarence Thomas") (description "David Souter") (description "John Paul Stevens") (description "Edward Douglass White")) +-Candidate Entities: + + + +-------------- + QUESTION: what to do in dubuque this weekend? +-Canonic Entity : dubuque,_iowa +-Target Values : (list (description "Dubuque Arboretum and Botanical Gardens")) +-Candidate Entities: Weekend_(2011_film) | Dubuque_Rail_Bridge + +Additional entities + +Method 1 + + Dubuque_Rail_Bridge + +Method 2 + + Dubuque_Rail_Bridge + + + +-------------- + QUESTION: what club did aguero play for before man city? +-Canonic Entity : city_club_(wholesale_club) +-Target Values : (list (description "Atlético Madrid")) +-Candidate Entities: Manchester_City_F.C. | Hot_Dance_Club_Songs | Cardiff_City_F.C., Birmingham_City_F.C. | UEFA_Respect_Fair_Play_ranking | Hull_City_A.F.C., Swansea_City_A.F.C., Durban_City_F.C._(1959), Coventry_City_F.C., Stoke_City_F.C., Bradford_City_A.F.C. | Bidal_Aguero, Ernesto_Aguero | Man_2_Man, Man_or_Astro-man?, Is_It_..._Man_or_Astroman? + +Additional entities + +Method 1 + + Stoke_City_F.C. + + Birmingham_City_F.C. + + Manchester_City_F.C. + +Method 2 + + + +-------------- + QUESTION: who plays jay adams in lords of dogtown? +-Canonic Entity : lords_of_dogtown +-Target Values : (list (description Him/Herself)) +-Candidate Entities: Jay_Adams, Jay_E._Adams | Dogtown_and_Z-Boys + +Additional entities + +Method 1 + + Jay_Adams + + Dogtown_and_Z-Boys + +Method 2 + + Jay_Adams + + Dogtown_and_Z-Boys + + + +-------------- + QUESTION: what system of government is used in the united states of america? +-Canonic Entity : federal_government_of_the_united_states +-Target Values : (list (description "Presidential system") (description "Federal republic") (description "Representative democracy") (description "Two-party system") (description "Constitutional republic") (description Republic)) +-Candidate Entities: Government | Westminster_system | Council–manager_government + +Additional entities + +Method 1 + + Council–manager_government + + Westminster_system + + Government + +Method 2 + + Council–manager_government + + Government + + + +-------------- + QUESTION: what did the habsburg family control? +-Canonic Entity : habsburg,_switzerland +-Target Values : (list (description "Kingdom of Hungary") (description "Kingdom of Bohemia") (description "Holy Roman Empire") (description "Kingdom of Ireland") (description "Kingdom of Portugal") (description Slovenia) (description Austria) (description Croatia) (description "German Empire") (description "Kingdom of England")) +-Candidate Entities: Catherine_of_Habsburg, House_of_Habsburg + +Additional entities + +Method 1 + + House_of_Habsburg + +Method 2 + + House_of_Habsburg + + + +-------------- + QUESTION: what is beyonce's daughters name? +-Canonic Entity : daughters_(band) +-Target Values : (list (description "Blue Ivy Carter")) +-Candidate Entities: Wives_and_Daughters, Daughters_of_the_King, The_Story_of_the_Daughters_of_Quchan, The_Conscious_Daughters, Nine_Daughters_of_Ægir, Daughters_of_Abraham, Daughters_of_Liberty, Daughters_(album), Daughters_of_Finwë, The_Daughters_of_Cain, Catholic_Daughters_of_the_Americas, Afro-American_Sons_and_Daughters_Hospital, Daughters_of_Hawaii, The_Seven_Daughters_of_Eve + +Additional entities + +Method 1 + + Daughters_(album) + +Method 2 + + Daughters_(album) + + + +-------------- + QUESTION: when did the colts last win the superbowl? +-Canonic Entity : colts–patriots_rivalry +-Target Values : (list (description "Super Bowl XLI")) +-Candidate Entities: Superbowl_of_Wrestling | For_the_Win, WIN_(TV_station), Win_Win_(film) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what college did michael jordan play basketball for? +-Canonic Entity : jeffrey_jordan +-Target Values : (list (description "University of North Carolina at Chapel Hill")) +-Candidate Entities: Michael_Jordan, Michael_B._Jordan | College_basketball | Michael_I._Jordan, Michael-Hakim_Jordan + +Additional entities + +Method 1 + + Michael_Jordan + + College_basketball + +Method 2 + + Michael_Jordan + + College_basketball + + + +-------------- + QUESTION: what songs has madonna written? +-Canonic Entity : written_songs +-Target Values : (list (description Masterpiece) (description "Die Another Day") (description "I'll Remember") (description "Give Me All Your Luvin'") (description "Future Lovers") (description "Future Lovers/I Feel Love") (description "Like a Prayer") (description "This Used to Be My Playground") (description "Gang Bang") (description "Who's That Girl")) +-Candidate Entities: As_It_Is_Written | Madonna_(entertainer), Madonna_(art), List_of_unreleased_Madonna_songs + +Additional entities + +Method 1 + + Madonna_(entertainer) + +Method 2 + + Madonna_(entertainer) + + + +-------------- + QUESTION: what countries are located in the netherlands? +-Canonic Entity : kingdom_of_the_netherlands +-Target Values : (list (description "Kingdom of the Netherlands")) +-Candidate Entities: Low_Countries, Renaissance_in_the_Low_Countries + +Additional entities + +Method 1 + + Low_Countries + +Method 2 + + Low_Countries + + + +-------------- + QUESTION: who was andrew johnson and what did he do? +-Canonic Entity : andrew_johnson_national_historic_site +-Target Values : (list (description "United States Representative") (description "Vice President of the United States") (description "United States Senator") (description "President of the United States") (description "Governor of Tennessee")) +-Candidate Entities: Andrew_Johnson, Andrew_Johnson_(English_footballer), Andrew_E._Johnson, Andrew_Johnson_Building, Jacob_Johnson_(father_of_Andrew_Johnson), Inauguration_of_Andrew_Johnson, Andrew_Johnson_(soldier), Andrew_J._Cummins, USRC_Andrew_Johnson | Butch_Johnson, Andrew_Johnson_(disambiguation), Eldridge_R._Johnson, Johnson_&_Johnson, Impeachment_of_Andrew_Johnson | Andrew_the_Apostle + +Additional entities + +Method 1 + + Andrew_Johnson + +Method 2 + + Impeachment_of_Andrew_Johnson + + Andrew_Johnson + + + +-------------- + QUESTION: what are the best hotels to stay in san francisco? +-Canonic Entity : w_san_francisco +-Target Values : (list (description "W San Francisco") (description "Hostelling International, City Center") (description "Palace Hotel, San Francisco") (description Clift)) +-Candidate Entities: San_Francisco_Marriott_Marquis, San_Francisco_de_Asís, San_Francisco, Arc_of_San_Francisco, San_Francisco_SPCA, InterContinental_San_Francisco, Fairmont_San_Francisco, South_San_Francisco,_California, San_Francisco,_Minnesota, San_Francisco_Bay_Area, San_Francisco_4th_and_King_Street_Station, San_Francisco_and_San_Jose_Railroad, Hilton_San_Francisco_Union_Square, San_Francisco_Rumble, French_Consulate_General,_San_Francisco, San_Francisco_Bay_Ferry, San_Francisco_Symphony, Government_of_San_Francisco + +Additional entities + +Method 1 + + San_Francisco + +Method 2 + + San_Francisco + + + +-------------- + QUESTION: who was lincoln's vice president when he died? +-Canonic Entity : vice_president +-Target Values : (list (description "Andrew Johnson")) +-Candidate Entities: + + + +-------------- + QUESTION: where did pope benedict xvi live? +-Canonic Entity : pope_benedict_xvi +-Target Values : (list (description Germany)) +-Candidate Entities: + + + +-------------- + QUESTION: what race did dan wheldon died in? +-Canonic Entity : dan_wheldon +-Target Values : (list (description "Las Vegas Motor Speedway")) +-Candidate Entities: Dan_(Chinese_opera) | The_Dog_It_Was_That_Died + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what language brazil use? +-Canonic Entity : brazil +-Target Values : (list (description "Portuguese Language")) +-Candidate Entities: Language_disorder, Alagüilac_language, Language_preservation, Language_of_mathematics, Art_&_Language + +Additional entities + +Method 1 + +Method 2 + + Language_preservation + + + +-------------- + QUESTION: where is tommy emmanuel from? +-Canonic Entity : tommy_emmanuel +-Target Values : (list (description Australia)) +-Candidate Entities: Emmanuel_(singer) | Tommy_(1975_film) | Emmanuel_College,_Warrnambool | Tommy_Nuñez + +Additional entities + +Method 1 + +Method 2 + + Tommy_(1975_film) + + + +-------------- + QUESTION: with which country does south africa border? +-Canonic Entity : south_africa +-Target Values : (list (description Lesotho) (description Zimbabwe) (description Mozambique) (description Swaziland) (description Namibia) (description Botswana)) +-Candidate Entities: African_tourism_by_country | South_Australia–Victoria_border_dispute, Indonesia–Singapore_border | Country_music, Country_code, Alternative_country, Cross_country_running_shoe, Country_dance + +Additional entities + +Method 1 + + African_tourism_by_country + + Country_music + +Method 2 + + South_Australia–Victoria_border_dispute + + African_tourism_by_country + + Country_code + + + +-------------- + QUESTION: what is there to do around austin texas? +-Canonic Entity : stephen_f._austin +-Target Values : (list (description "Texas Department of Public Safety Historical Museum and Research Center") (description "Cathedral of Junk") (description "Harry Ransom Center") (description "Texas Memorial Museum") (description "Ann W. Richards Congress Avenue Bridge") (description "Zilker Park") (description "Texas State Capitol") (description "William Sidney Porter House") (description "Bullock Texas State History Museum") (description "Barton Springs Pool")) +-Candidate Entities: Austin,_Texas, University_of_Texas_at_Austin | Texan_sloop-of-war_Austin, Austin_County,_Texas | History_of_Austin,_Texas | The_Contemporary_Austin | Oak_Hill,_Austin,_Texas, Landmarks_(University_of_Texas_at_Austin) + +Additional entities + +Method 1 + + The_Contemporary_Austin + + Oak_Hill,_Austin,_Texas + + History_of_Austin,_Texas + + Austin_County,_Texas + + Austin,_Texas + +Method 2 + + History_of_Austin,_Texas + + The_Contemporary_Austin + + Oak_Hill,_Austin,_Texas + + Austin_County,_Texas + + Austin,_Texas + + + +-------------- + QUESTION: what countries in the world speak german? +-Canonic Entity : speak!!! +-Target Values : (list (description Canada) (description "German Democratic Republic") (description Luxembourg) (description Switzerland) (description Liechtenstein) (description Germany) (description "West Germany") (description Belgium) (description "Vatican City") (description "Second Polish Republic")) +-Candidate Entities: Speak_(No-Man_album), Speak_(Godsmack_song) | German–Romanian_Treaty_for_the_Development_of_Economic_Relations_between_the_Two_Countries_(1939) | Don't_Speak, Speak_for_Yourself | German_language, German_American | Speak_(band), Speak_of_the_Devil_(book), The_People_Speak_(film), Crazy_Peoples_Right_to_Speak, I.R.S._No_Speak + +Additional entities + +Method 1 + + German_language + +Method 2 + + + +-------------- + QUESTION: who plays effy in skins uk? +-Canonic Entity : effy_(skins_series_1) +-Target Values : (list (description "Kaya Scodelario")) +-Candidate Entities: Skins_(UK_TV_series), Skins_(series_4), Skins_(series_3), Skins_Fire, Skins_(series_7), Skins_(North_American_TV_series), Skins_Rise, Skins_(series_5), Shirts_versus_skins, Telus_World_Skins_Game, Skins_(sportswear), TSN_Skins_Game | Four_Major_Plays_of_Chikamatsu | Skins_(series_6) | Plays_Live, Smegma_Plays_Merzbow_Plays_Smegma, As_the_Music_Plays + +Additional entities + +Method 1 + + Skins_(UK_TV_series) + +Method 2 + + Skins_(UK_TV_series) + + + +-------------- + QUESTION: what countries use the euro as official currency? +-Canonic Entity : euro +-Target Values : (list (description Italy) (description Portugal) (description Finland) (description Luxembourg) (description France) (description Slovenia) (description Austria) (description Germany) (description Greece) (description Spain)) +-Candidate Entities: Currency_bill_tracking | Heavily_indebted_poor_countries, Megadiverse_countries + +Additional entities + +Method 1 + + Currency_bill_tracking + +Method 2 + + Currency_bill_tracking + + + +-------------- + QUESTION: what kind of money do the netherlands use? +-Canonic Entity : netherlands +-Target Values : (list (description Euro)) +-Candidate Entities: The_Future_of_Money, A_Kind_of_Alchemy, Three_of_a_Kind_(album) | Johann_Friedrich_Kind | Money_market_fund, Money | Kind_(type_theory), My_Kind_of_Woman/My_Kind_of_Man, The_Fourth_Kind + +Additional entities + +Method 1 + + Money + +Method 2 + + Three_of_a_Kind_(album) + + Kind_(type_theory) + + Money + + + +-------------- + QUESTION: which college did obama graduated? +-Canonic Entity : obama,_fukui +-Target Values : (list (description "Columbia University")) +-Candidate Entities: + + + +-------------- + QUESTION: who is henry david thoreau? +-Canonic Entity : henry_david_thoreau +-Target Values : (list (description Poet)) +-Candidate Entities: + + + +-------------- + QUESTION: who are richard pryor children? +-Canonic Entity : richard_pryor +-Target Values : (list (description "Franklin Pryor") (description "Steven Pryor") (description "Richard Pryor Jr.") (description "Rain Pryor") (description "Kelsey Pryor") (description "Elizabeth Pryor") (description "Renee Pryor")) +-Candidate Entities: + + + +-------------- + QUESTION: who is golfer dustin johnson dating? +-Canonic Entity : dustin,_oklahoma +-Target Values : (list (description "Amanda Caulder")) +-Candidate Entities: Dustin_Johnson | Dating_methodologies_in_archaeology | Dustin_Lee_Abraham | Richard_S._Johnson | Radiocarbon_14_dating_of_the_Shroud_of_Turin, Radiometric_dating, Dating_abuse, Teen_dating_violence, Argon–argon_dating + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what are the official languages in spain? +-Canonic Entity : official_bilingualism_in_canada +-Target Values : (list (description "Spanish Language")) +-Candidate Entities: Commissioner_of_Official_Languages, Languages_of_Spain, Office_of_the_Commissioner_of_Official_Languages, Official_Languages_Act_2003, Official_languages_of_Puducherry, List_of_official_languages, Languages_of_Iberia, Languages_of_Russia, Languages_of_the_European_Union | Spain | Official_languages_of_the_United_Nations, Official_language, Languages_of_the_United_States, List_of_official_languages_by_state + +Additional entities + +Method 1 + + Office_of_the_Commissioner_of_Official_Languages + + Official_language + + Spain + +Method 2 + + Office_of_the_Commissioner_of_Official_Languages + + Official_language + + + +-------------- + QUESTION: what club did santi cazorla play for? +-Canonic Entity : santi_cazorla +-Target Values : (list (description "Spain national football team")) +-Candidate Entities: Cazorla | Santi | Hot_Dance_Club_Songs + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what highschool did bill gates graduated from? +-Canonic Entity : bill_gates +-Target Values : (list (description "Lakeside School")) +-Candidate Entities: Bill_&_Melinda_Gates_Foundation, At_the_Gates + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where does the atlanta braves play? +-Canonic Entity : atlanta_braves +-Target Values : (list (description "Turner Field")) +-Candidate Entities: + + + +-------------- + QUESTION: what year did detroit pistons win nba championships? +-Canonic Entity : detroit_pistons +-Target Values : (list (description "1990 NBA Finals") (description "2004 NBA Finals") (description "1989 NBA Finals")) +-Candidate Entities: + + + +-------------- + QUESTION: what each fold of the us flag means? +-Canonic Entity : mad_fold-in +-Target Values : (list (description "United States of America")) +-Candidate Entities: Wolf_in_the_Fold, Above_the_fold, Fold_(geology), Fold_(album), Maria_fold_and_thrust_belt | World_Flag, Flag_of_Australia, Flag_to_Flag + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what do people from spain speak? +-Canonic Entity : speak!!! +-Target Values : (list (description "Spanish Language")) +-Candidate Entities: Speak_(No-Man_album), The_People_Speak_(film), Speak_(Godsmack_song), The_People_Speak | Spanish_people | Speak_(band), Speak_(film), Speak_Good_English_Movement, Speak_of_the_Devil_(book), Think_Before_You_Speak_(campaign) | Chinese_people_in_Spain | Speak_Now_World_Tour_–_Live + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who played danielle rousseau on lost? +-Canonic Entity : alex_rousseau +-Target Values : (list (description "Mira Furlan") (description "Melissa Farman")) +-Candidate Entities: Danielle_Rousseau + +Additional entities + +Method 1 + + Danielle_Rousseau + +Method 2 + + Danielle_Rousseau + + + +-------------- + QUESTION: when will muharram start 2011? +-Canonic Entity : muharram +-Target Values : (list (description "Islamic calendar")) +-Candidate Entities: Head_Start_Program + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who did king tut married? +-Canonic Entity : tut +-Target Values : (list (description Ankhesenamun)) +-Candidate Entities: Married_to_It, Married_to_It + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: how old was woodrow wilson when he was elected president? +-Canonic Entity : woodrow_wilson +-Target Values : (list (description "Woodrow Wilson 1917 presidential inauguration") (description "Woodrow Wilson 1913 presidential inauguration")) +-Candidate Entities: Woodrow_W._Jones, Woodrow_W._Keeble, Woodrow_M._Kroll | The_Elected, Elected_(song) | President_of_Sierra_Leone, Vice_president, Vice_President_of_the_Maldives + +Additional entities + +Method 1 + + Woodrow_W._Jones + + Vice_president + +Method 2 + + Woodrow_W._Jones + + Vice_president + + + +-------------- + QUESTION: what political party did john bell belong to? +-Canonic Entity : john_j._bell +-Target Values : (list (description "Know Nothing") (description "Whig Party") (description "Democratic Party") (description "National Republican Party") (description "Democratic-Republican Party") (description "Constitutional Union Party")) +-Candidate Entities: Political_party, The_Wikileaks_Party | John_L._Bell, John_C._Bell,_Jr., John_Bell_(New_Hampshire_politician) | Jeffrey_Bell_(political_operative), John_Bell_(actor), John_William_Bell, John_Joy_Bell + +Additional entities + +Method 1 + + Political_party + +Method 2 + + + +-------------- + QUESTION: what countries are part of nato? +-Canonic Entity : nato +-Target Values : (list (description Netherlands) (description Poland) (description "United States of America") (description "United Kingdom") (description Germany) (description Bulgaria)) +-Candidate Entities: + + + +-------------- + QUESTION: what religion is mary queen of scots? +-Canonic Entity : mary,_queen_of_scots +-Target Values : (list (description Catholicism)) +-Candidate Entities: RMS_Queen_Mary, Mary_of_Teck + +Additional entities + +Method 1 + + Mary_of_Teck + +Method 2 + + Mary_of_Teck + + + +-------------- + QUESTION: who is chris cooley married to? +-Canonic Entity : chris_cooley_(american_football) +-Target Values : (list (description "Christy Oglevee Cooley")) +-Candidate Entities: Thomas_M._Cooley, John_K._Cooley, Raymond_H._Cooley | Married_to_It + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where is port st johns florida? +-Canonic Entity : port_st._johns +-Target Values : (list (description Florida)) +-Candidate Entities: + + + +-------------- + QUESTION: what teams does kroenke own? +-Canonic Entity : kroenke +-Target Values : (list (description "St. Louis Rams") (description "Arsenal F.C.") (description "Colorado Avalanche") (description "Colorado Rapids") (description "Denver Nuggets")) +-Candidate Entities: John_Agro_Special_Teams_Award + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where was the battle of shiloh? +-Canonic Entity : shiloh_(biblical_city) +-Target Values : (list (description "Hardin County")) +-Candidate Entities: Battle_of_Shiloh + +Additional entities + +Method 1 + +Method 2 + + Battle_of_Shiloh + + + +-------------- + QUESTION: what did theodor schwann contribute to our understanding of cells? +-Canonic Entity : schwann_cell +-Target Values : (list (description "Microscopical researches into the accordance in the structure and growth of animals and plants")) +-Candidate Entities: Theodor_Schwann, Schwann, Schwann_(record_label) | Satellite_glial_cell, CD4+_T_cells_and_antitumor_immunity | Temple_of_Understanding | Theodor, Theodor_Döring | Cell_(biology) | Adobe_Contribute | Understanding_by_Design, The_Understanding, An_Enquiry_Concerning_Human_Understanding + +Additional entities + +Method 1 + + Satellite_glial_cell + + Theodor_Schwann + + Cell_(biology) + +Method 2 + + Theodor_Schwann + + Satellite_glial_cell + + Cell_(biology) + + + +-------------- + QUESTION: where is kate spade from? +-Canonic Entity : kate_spade +-Target Values : (list (description "Kansas City")) +-Candidate Entities: + + + +-------------- + QUESTION: what countries are in the caribbean? +-Canonic Entity : caribbean +-Target Values : (list (description "School of Business and Computer Science, Port of Spain") (description "School of Business and Computer Science, Trincity") (description "Lesser Antilles") (description "School of Business and Computer Science, San Fernando") (description "Leeward Islands") (description "School of Business and Computer Science, Champs Fleurs") (description "British Virgin Islands") (description "Puerto Rico") (description "University of the West Indies") (description Anguilla)) +-Candidate Entities: + + + +-------------- + QUESTION: what freeview channel is bbc three? +-Canonic Entity : freeview_(new_zealand) +-Target Values : (list (description "BBC Three")) +-Candidate Entities: Freeview_(UK), Freeview_(Australia) | BBC_Three, BBC_Alba, BBC_Three_Counties_Radio, BBC_Four, BBC_News_(TV_channel), BBC | Channel_5_(UK) + +Additional entities + +Method 1 + + Channel_5_(UK) + + Freeview_(UK) + + BBC + +Method 2 + + Channel_5_(UK) + + BBC + + Freeview_(UK) + + + +-------------- + QUESTION: when did the new york mets start playing baseball? +-Canonic Entity : new_york_mets +-Target Values : (list (description 1962)) +-Candidate Entities: + + + +-------------- + QUESTION: what party was woodrow wilson from? +-Canonic Entity : woodrow_wilson_awards +-Target Values : (list (description "Democratic Party")) +-Candidate Entities: Woodrow_Wilson, Woodrow_Wilson_National_Fellowship_Foundation, Woodrow_Wilson_Boyhood_Home, Woodrow_Wilson_High_School_(Washington,_D.C.), Woodrow_Wilson_International_Center_for_Scholars, Woodrow_Wilson_Bridge, Woodrow_Wilson_High_School_(Beckley,_West_Virginia), Robert_Woodrow_Wilson, Woodrow_W._Jones, Mount_Woodrow_Wilson, Woodrow_W._Keeble, Woodrow_Wilson_Presidential_Library, USS_Woodrow_Wilson_(SSBN-624), Woodrow_Wilson_Bridge_(Jackson,_Mississippi), Second_inauguration_of_Woodrow_Wilson, Woodrow_M._Kroll, Thomas_Woodrow_Wilson_Boyhood_Home + +Additional entities + +Method 1 + + Woodrow_Wilson_International_Center_for_Scholars + +Method 2 + + Woodrow_Wilson_International_Center_for_Scholars + + + +-------------- + QUESTION: what part does seth macfarlane play in family guy? +-Canonic Entity : seth_macfarlane +-Target Values : (list (description "Peter Griffin") (description "Mickey McFinnegan") (description "Stewie Griffin") (description "Jake Tucker") (description "Glenn Quagmire") (description "Carter Pewterschmidt") (description "Stan Smith") (description "Tom Tucker") (description "Kevin Swanson") (description "Brian Griffin")) +-Candidate Entities: Family_Guy_(season_6), Family_Guy_(season_2), Family_Guy, Family_Guy_(season_1), Family_Guy:_Live_in_Vegas | MacFarlane | List_of_Family_Guy_cast_members, Family_Guy_(season_5), Family_Guy_(season_10), The_Family_Guy_100th_Episode_Special, Family_Guy_Viewer_Mail_1, Family_Guy_(season_4), Family_Guy_(season_11), Family_Guy,_American_Dad!_and_The_Cleveland_Show_crossovers | Play_On! + +Additional entities + +Method 1 + + Family_Guy_(season_5) + +Method 2 + + Family_Guy_(season_5) + + Family_Guy + + + +-------------- + QUESTION: what type of government does vietnam have today? +-Canonic Entity : south_vietnam +-Target Values : (list (description "Socialist state")) +-Candidate Entities: Vietnam, State_of_Vietnam | Today_(The_Smashing_Pumpkins_song) | Vietnam_War, Government_of_Free_Vietnam | Today_(U.S._TV_program), Today_(EP) + +Additional entities + +Method 1 + + Today_(U.S._TV_program) + + Vietnam_War + +Method 2 + + Today_(U.S._TV_program) + + Vietnam_War + + Vietnam + + + +-------------- + QUESTION: what did ben hall do? +-Canonic Entity : ben_hall_(bushranger) +-Target Values : (list (description Bushranger)) +-Candidate Entities: But_and_ben + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what type of aircraft does virgin america use? +-Canonic Entity : kawasaki_army_type_88_reconnaissance_aircraft +-Target Values : (list (description "Airbus A319") (description "Airbus A320")) +-Candidate Entities: Virgin_America | Found_Aircraft | Virgin_Mobile_USA | Verville_Aircraft_Company | United_States_Virgin_Islands + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what currency do mexico use? +-Canonic Entity : currency +-Target Values : (list (description "Mexican peso")) +-Candidate Entities: + + + +-------------- + QUESTION: where is the university of oregon state? +-Canonic Entity : university_of_oregon +-Target Values : (list (description Oregon)) +-Candidate Entities: Oregon_State_Beavers_football, Oregon_Ducks_baseball, Oregon_Ducks_men's_basketball + +Additional entities + +Method 1 + + Oregon_Ducks_men's_basketball + +Method 2 + + Oregon_Ducks_men's_basketball + + + +-------------- + QUESTION: where put thermometer in turkey? +-Canonic Entity : thermometer +-Target Values : (list (description "Turkish region is not suited to be the administrative division type for Turkish Region.")) +-Candidate Entities: Turkey + +Additional entities + +Method 1 + + Turkey + +Method 2 + + + +-------------- + QUESTION: who did george wendt play on cheers? +-Canonic Entity : george_wendt +-Target Values : (list (description "Norm Peterson")) +-Candidate Entities: Cheers, Cheers_(season_11), Cheers_(Drink_to_That), Cheers_(season_5), Cheers_(season_6), Cheers_(season_3), Cheers_(season_1), Cheers_(season_2) + +Additional entities + +Method 1 + + Cheers + +Method 2 + + Cheers + + + +-------------- + QUESTION: who played cruella deville in 102 dalmatians? +-Canonic Entity : cruella_de_vil +-Target Values : (list (description "Glenn Close")) +-Candidate Entities: 102_Dalmatians, 102_Dalmatians:_Puppies_to_the_Rescue | The_101_Dalmatians_Musical, One_Hundred_and_One_Dalmatians | Cruella | Twilight_as_Played_by_The_Twilight_Singers, Played, Played_in_Britain, The_Band_Played_On, And_the_Bands_Played_On + +Additional entities + +Method 1 + + 102_Dalmatians + + One_Hundred_and_One_Dalmatians + +Method 2 + + 102_Dalmatians + + One_Hundred_and_One_Dalmatians + + + +-------------- + QUESTION: what division did the baltimore colts play in? +-Canonic Entity : history_of_the_baltimore_colts +-Target Values : (list (description "AFC South")) +-Candidate Entities: Indianapolis_Colts + +Additional entities + +Method 1 + + Indianapolis_Colts + +Method 2 + + Indianapolis_Colts + + + +-------------- + QUESTION: what year did us invaded iraq? +-Canonic Entity : outline_of_iraq +-Target Values : (list (description "2003 invasion of Iraq")) +-Candidate Entities: Iraq, Iraq_War, SIPRI_Arms_Transfers_Database,_Iraq_1973–1990 + +Additional entities + +Method 1 + + Iraq + +Method 2 + + Iraq + + + +-------------- + QUESTION: what is the local currency in the dominican republic? +-Canonic Entity : local_currency +-Target Values : (list (description "Dominican peso")) +-Candidate Entities: Outline_of_the_Dominican_Republic, Dominican_Republic_cuisine, Galván,_Dominican_Republic, Dominican_Republic, Highways_and_routes_in_the_Dominican_Republic, United_States_occupation_of_the_Dominican_Republic_(1916–24), Miss_Dominican_Republic, Japanese_settlement_in_the_Dominican_Republic, Miss_Dominican_Republic_1968, Miss_Dominican_Republic_1973, Miss_Dominican_Republic_1967, Miss_Dominican_Republic_1989, Miss_Dominican_Republic_1997, Dominican_Republic–Haiti_relations, Women_in_the_Dominican_Republic, Miss_Dominican_Republic_1996, Miss_Dominican_Republic_1994 + +Additional entities + +Method 1 + + Dominican_Republic + +Method 2 + + + +-------------- + QUESTION: what is the capital city of canada on a map? +-Canonic Entity : map_(band) +-Target Values : (list (description Ottawa)) +-Candidate Entities: Capital_city | Without_a_Map, Waldseemüller_map | Capital_City_Club, Capital_City_Academy, Quebec_City, City_of_Canada_Bay | Capital_(radio_network) | Jesusland_map | Capital_districts_and_territories, Capital_City_F.C. | The_National_Map | National_Capital_Region_(Canada) + +Additional entities + +Method 1 + + Quebec_City + + Capital_city + +Method 2 + + + +-------------- + QUESTION: what is the name of currency used in spain? +-Canonic Entity : currency +-Target Values : (list (description Euro)) +-Candidate Entities: Spain, Spain_(composition), Spain_Rodriguez, Ken_Spain, Enlightenment_in_Spain + +Additional entities + +Method 1 + + Spain + +Method 2 + + Spain + + + +-------------- + QUESTION: what ethnicity are people from iran? +-Canonic Entity : ethnicity_(album) +-Target Values : (list (description Persian)) +-Candidate Entities: Tat_people_(Iran) | Race_and_ethnicity_in_the_United_States | Chinese_people_in_Iran, Iran, Name_of_Iran | Association_for_the_Study_of_Ethnicity_and_Nationalism + +Additional entities + +Method 1 + + Race_and_ethnicity_in_the_United_States + + Iran + +Method 2 + + Race_and_ethnicity_in_the_United_States + + + +-------------- + QUESTION: where did the germans come from wiki? +-Canonic Entity : wiki_gonzález +-Target Values : (list (description Germany)) +-Candidate Entities: Wiki_(video_game), The_Wiki_Way, Wiki, The_Hidden_Wiki | Germans_of_Romania, Germans_of_Hungary, Germans_Māliņš + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what movie did tom hanks won his first oscar? +-Canonic Entity : tom_hanks +-Target Values : (list (description Big)) +-Candidate Entities: Thomas_C._Hanks, James_M._Hanks | Oscar_Carré_Trophy, Oscar_Robertson, Oscar_Gjøslien, Oscar_and_Lucinda, Lonzo_and_Oscar + +Additional entities + +Method 1 + + Thomas_C._Hanks + +Method 2 + + + +-------------- + QUESTION: when was ancient egypt created? +-Canonic Entity : outline_of_ancient_egypt +-Target Values : (list (description eg)) +-Candidate Entities: Egypt, Regencies_in_Egypt | Runs_created, God_Created_the_Integers, Cardinals_created_by_Adrian_VI, The_Beauty_Created_LP + +Additional entities + +Method 1 + + Egypt + +Method 2 + + Egypt + + + +-------------- + QUESTION: who played bilbo baggins? +-Canonic Entity : bilbo_baggins +-Target Values : (list (description "Norman Bird") (description "Martin Freeman") (description "Ian Holm")) +-Candidate Entities: Theodore_G._Bilbo, Bilbo, Bilbo_(sword) | Played + +Additional entities + +Method 1 + +Method 2 + + Theodore_G._Bilbo + + + +-------------- + QUESTION: what famous people are from kansas city? +-Canonic Entity : kansas_city,_kansas +-Target Values : (list (description "Cecil Newman") (description "Robert Altman") (description "Dianne Wiest") (description "Walter J. Ong") (description "Yvette Vickers") (description "Monique Gabrielle") (description "Andrea Ciliberti") (description "Edward Tufte") (description "Yudell Luke") (description "Crystal Smith")) +-Candidate Entities: Kansas_City,_Missouri, Kansas_City_SmartPort, Kansas_City_blues | University_of_Missouri–Kansas_City | North_Kansas_City,_Missouri, Kansas_City-style_barbecue, Kansas_City_International_Airport, Kansas_City_Downtown_Streetcar, Kansas_City_Kansas_Community_College, Kansas_City_Steak_Company, Fox_Sports_Kansas_City, Kansas_City_Museum, Kansas_City_Times, Baldwin_City,_Kansas, Kansas_City_Renegades, Strong_City,_Kansas, Kansas_City,_Pittsburg_and_Gulf_Railroad, Lists_of_people_from_Kansas, Downtown_Kansas_City | Lisa_Picard_Is_Famous, Famous_Music, Rich_and_Famous_(1981_film), The_Famous_Five_(1990s_TV_series), Famous_Dave's + +Additional entities + +Method 1 + + University_of_Missouri–Kansas_City + + Kansas_City_International_Airport + + Kansas_City,_Missouri + +Method 2 + + University_of_Missouri–Kansas_City + + Kansas_City_International_Airport + + Kansas_City,_Missouri + + + +-------------- + QUESTION: what country did francis drake represent? +-Canonic Entity : francis_drake +-Target Values : (list (description England)) +-Candidate Entities: Francis_M._Drake, Francis_Samuel_Drake_(historian) + +Additional entities + +Method 1 + + Francis_M._Drake + +Method 2 + + + +-------------- + QUESTION: what timezone is indianapolis indiana in? +-Canonic Entity : indianapolis +-Target Values : (list (description "North American Eastern Time Zone")) +-Candidate Entities: Indiana_University_Robert_H._McKinney_School_of_Law, Indiana_World_War_Memorial_Plaza + +Additional entities + +Method 1 + + Indiana_World_War_Memorial_Plaza + +Method 2 + + Indiana_World_War_Memorial_Plaza + + + +-------------- + QUESTION: what did darwin propose as the mechanism of evolution? +-Canonic Entity : the_eclipse_of_darwinism +-Target Values : (list (description ""It is not the strongest of the species that survives, nor the most intelligent, but the one most responsive to change."")) +-Candidate Entities: Darwin_among_the_Machines + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who ran against bill clinton for president? +-Canonic Entity : bill_clinton +-Target Values : (list (description "George Bush")) +-Candidate Entities: President_William_Jefferson_Clinton_Birthplace_Home_National_Historic_Site, Clinton_Foundation, Hillary_Rodham_Clinton + +Additional entities + +Method 1 + + Clinton_Foundation + +Method 2 + + Clinton_Foundation + + + +-------------- + QUESTION: what books did lincoln write? +-Canonic Entity : write_(system_call) +-Target Values : (list (description "Gems from Abraham Lincoln") (description "The Writings of Abraham Lincoln") (description "Life and Public Services") (description "The Autobiography and Selected Writings of Abraham Lincoln") (description "Anecdotes Of Abraham Lincoln And Lincoln's Stories") (description "The Papers of Abraham Lincoln: Legal Documents and Cases") (description "Letters And Addresses of Abraham Lincoln") (description "Selections From the Works of Abraham Lincoln") (description "Poems of Abraham Lincoln") (description "Complete Works Of Abraham Lincoln V10")) +-Candidate Entities: Lincoln_Motor_Company | Uncacheable_speculative_write_combining + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what are popular sports in spain? +-Canonic Entity : sports_broadcasting_contracts_in_spain +-Target Values : (list (description "Spain women's national handball team") (description "Spain men's national volleyball team") (description "Spain national beach handball team") (description "Spain national football team") (description "Spain women's national volleyball team") (description "Spain national handball team")) +-Candidate Entities: Nós-Unidade_Popular | Caribbean_Sports_Network + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what did corey haim act in? +-Canonic Entity : corey_haim +-Target Values : (list (description "Fast Getaway") (description "Fast Getaway II") (description "Dream a Little Dream 2") (description "Demolition High") (description "Dream a Little Dream") (description "Blown Away") (description Busted) (description "Demolition University") (description "Fever Lake") (description Firstborn)) +-Candidate Entities: Haim | Corey | Tal_Ben_Haim, Haim_(band) + +Additional entities + +Method 1 + + Haim_(band) + +Method 2 + + + +-------------- + QUESTION: who is the publisher of the wall street journal? +-Canonic Entity : the_wall_street_journal +-Target Values : (list (description "Dow Jones & Company")) +-Candidate Entities: Wall_Street_Journal_This_Morning, Wall_Street_Journal_Radio_Network, Wall_Street_Week, Wall_Street, Wall_Street_West, Wall_Street_Crash_of_1929, The_Wolf_of_Wall_Street_(2013_film) | On_the_Money_(2013_TV_series) | Wall_Street:_Money_Never_Sleeps, The_Wall, Occupy_Wall_Street, Law_of_the_wall, 40_Wall_Street, Western_Wall | FlexNet_Publisher, College_Publisher, Microsoft_Publisher, Editor_&_Publisher, Donald_M._Grant,_Publisher + +Additional entities + +Method 1 + + On_the_Money_(2013_TV_series) + + Occupy_Wall_Street + + Wall_Street + +Method 2 + + College_Publisher + + On_the_Money_(2013_TV_series) + + Occupy_Wall_Street + + Wall_Street + + + +-------------- + QUESTION: what products are made in the usa? +-Canonic Entity : usa,_ōita +-Target Values : (list (description "Pharmaceutical Preparations") (description Food) (description "Industrial Organic Chemicals, NEC") (description Automobile)) +-Candidate Entities: Made_in_USA, Usa_(Germany) | Marketed_Health_Products_Directorate, Fish_products, Linn_Products, Air_Products_&_Chemicals, Tecumseh_Products, Value-added_wood_products_in_Ontario + +Additional entities + +Method 1 + +Method 2 + + Made_in_USA + + + +-------------- + QUESTION: what do tibetan people speak? +-Canonic Entity : speak!!! +-Target Values : (list (description "Nepali Language") (description "Standard Tibetan") (description "Chinese language") (description "Baima language") (description "Tibetan languages")) +-Candidate Entities: Tibetan_people | Speak_(No-Man_album), The_People_Speak_(film) | Bir_Tibetan_Colony, Tibetan_and_Himalayan_Library | Speak_(Godsmack_song) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what form of government does afghanistan have? +-Canonic Entity : afghanistan +-Target Values : (list (description "Islamic republic")) +-Candidate Entities: Sixth_Form_Government_Secondary_School, The_Form_of_Presbyterial_Church_Government, Council–manager_government, Mayor–council_government + +Additional entities + +Method 1 + +Method 2 + + Mayor–council_government + + + +-------------- + QUESTION: who was the wife of king edward vii? +-Canonic Entity : king_edward_vii_school,_sheffield +-Target Values : (list (description "Alexandra of Denmark")) +-Candidate Entities: King_Edward_VII-class_battleship, King_Edward_VII_Professor_of_English_Literature, King_Edward_VII_Land, King_Edward_VII_Memorial, HMS_King_Edward_VII, Coronation_of_King_Edward_VII_and_Queen_Alexandra | Haakon_VII_of_Norway, Edward_VII, King_Edward_VII_School, King_Edward_VII_Hospital | King_Edward's_School, King_Edward_VII_and_Queen_Mary_School, King_Edward_VII_School,_King's_Lynn, King_Edward_VII_School,_Melton_Mowbray, King_Edward_Stakes, King_Edward_VII_Coronation_Medal | Edward_the_Seventh, Edward_VII_Monument_(Montreal), Edward_J._King | The_Provoked_Wife, The_19th_Wife + +Additional entities + +Method 1 + + Edward_VII + +Method 2 + + + +-------------- + QUESTION: what position did john stockton play? +-Canonic Entity : john_p._stockton +-Target Values : (list (description "Point guard")) +-Candidate Entities: + + + +-------------- + QUESTION: what happened at the virginia tech massacre? +-Canonic Entity : virginia–virginia_tech_rivalry +-Target Values : (list (description "Killing spree")) +-Candidate Entities: Virginia_Tech_massacre, Virginia_Tech, Virginia_Tech_Hokies_baseball, Virginia_Tech_Hokies_men's_basketball, Virginia_Tech_Police_Department, Campus_of_Virginia_Tech, Virginia_Tech_Hokies_football + +Additional entities + +Method 1 + + Virginia_Tech + +Method 2 + + Virginia_Tech + + + +-------------- + QUESTION: when did freddy krueger die? +-Canonic Entity : freddy_krueger +-Target Values : (list (description "A Nightmare on Elm Street")) +-Candidate Entities: Maynard_C._Krueger + +Additional entities + +Method 1 + + Maynard_C._Krueger + +Method 2 + + + +-------------- + QUESTION: what is there to do in niagara falls new york? +-Canonic Entity : niagara_falls,_new_york +-Target Values : (list (description "Johann Williams Farm") (description "Niagara Reservation") (description "Adams Power Plant Transformer House") (description "Fallsville Splash Park") (description "Niagara Falls Public Library") (description "Holley-Rankine House") (description "Whitney Mansion") (description "US Post Office-Niagara Falls Main") (description "U.S. Customhouse") (description "Niagara Falls State Park")) +-Candidate Entities: Niagara_Falls,_Ontario | Niagara,_New_York | Niagara_Falls_International_Airport, Niagara_Falls_State_Park, Niagara_Falls_High_School, Niagara_County,_New_York, Niagara_Falls,_Ontario_railway_station, Niagara_Falls, Niagara_Falls_Suspension_Bridge, Old_Niagara_Falls_Train_Station, Niagara_Falls_Sox, Buffalo_and_Niagara_Falls_Railroad, Niagara, Hilton_Niagara_Falls_Tower_2, Niagara_Falls_Air_Force_Missile_Site | The_Fall_(band), Comes_with_the_Fall, Fall_Grün_(Czechoslovakia), Bernard_B._Fall, Free_fall + +Additional entities + +Method 1 + + Niagara,_New_York + + Niagara_County,_New_York + +Method 2 + + Niagara,_New_York + + Niagara_County,_New_York + + Niagara_Falls,_Ontario + + + +-------------- + QUESTION: who played bernie focker? +-Canonic Entity : focker +-Target Values : (list (description "Dustin Hoffman")) +-Candidate Entities: + + + +-------------- + QUESTION: who did troy aikman play for? +-Canonic Entity : troy_aikman +-Target Values : (list (description "Dallas Cowboys")) +-Candidate Entities: + + + +-------------- + QUESTION: where does turkish language? +-Canonic Entity : turkish_language +-Target Values : (list (description Turkey)) +-Candidate Entities: Old_Anatolian_Turkish, Turkish_Women's_Cup_Basketball, Balkan_Gagauz_Turkish + +Additional entities + +Method 1 + + Balkan_Gagauz_Turkish + +Method 2 + + Balkan_Gagauz_Turkish + + + +-------------- + QUESTION: who was mendel and what did he develop? +-Canonic Entity : develop_(magazine) +-Target Values : (list (description Scientist)) +-Candidate Entities: Mendel_(lunar_crater) | NASA_DEVELOP_National_Program | Mendel_(Martian_crater), Mendel, Mendel_University_Brno | Develop + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where is universal studios california theme park? +-Canonic Entity : universal_studios_theme_parks_adventure +-Target Values : (list (description Glendale) (description "Universal City") (description Hollywood)) +-Candidate Entities: Universal_Parks_&_Resorts, Universal_Studios_Hollywood, Universal_Studios, Universal_Studios_Florida, Universal_City,_California, Universal_Studios_Japan, Universal_Orlando, Universal_Television, Universal_Animation_Studios, Universal_Studios_Dubailand, Universal_Studios_Singapore | Oakwood_Theme_Park | Universal_Studios_South_Korea, Walt_Disney_Studios_Park, Disney's_Hollywood_Studios + +Additional entities + +Method 1 + + Universal_Studios + +Method 2 + + Universal_Studios_Florida + + + +-------------- + QUESTION: where the grimm brothers were born? +-Canonic Entity : the_brothers_grimm_(film) +-Target Values : (list (description "la Belle Durmiente")) +-Candidate Entities: Grimm_(season_2), Harold_J._Grimm, MF_Grimm, Paul_W._Grimm, American_McGee's_Grimm, Grimm_(role-playing_game) + +Additional entities + +Method 1 + + Harold_J._Grimm + +Method 2 + + Grimm_(role-playing_game) + + + +-------------- + QUESTION: what sport is popular in china? +-Canonic Entity : sport_in_china +-Target Values : (list (description "China PR national football team") (description "China men's national volleyball team") (description "China national futsal team") (description "China national baseball team") (description "China women's national basketball team") (description "Bayi Yiyang High-Tech District") (description "China women's national volleyball team") (description "China Fed Cup team") (description "China national cricket team") (description "China Davis Cup team")) +-Candidate Entities: ČT_Sport, Sport, Sport_(Vaasa), Sport_(Russian_TV_channel,_2011) + +Additional entities + +Method 1 + + Sport + +Method 2 + + Sport + + + +-------------- + QUESTION: what to do with kids in phx az? +-Canonic Entity : kids_(film) +-Target Values : (list (description "Grand Canyon") (description "Phoenix Mountain Preserve") (description "Phoenix Art Museum") (description "Desert Botanical Garden") (description "Heard Museum") (description "Musical Instrument Museum") (description "Arizona Science Center") (description "Ro Ho En") (description "Mesa Arts Center") (description "Pueblo Grande Ruin")) +-Candidate Entities: + + + +-------------- + QUESTION: where does kirk cameron live now? +-Canonic Entity : kirk_cameron +-Target Values : (list (description "Los Angeles")) +-Candidate Entities: + + + +-------------- + QUESTION: what continent is greenland apart of? +-Canonic Entity : continent_(magazine) +-Target Values : (list (description "North America")) +-Candidate Entities: Everything_Falls_Apart + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: which books did john the apostle write? +-Canonic Entity : john_the_apostle +-Target Values : (list (description "The Gospel According to John")) +-Candidate Entities: Write_to_Death, Write_(system_call) | Apostle_(Christian) + +Additional entities + +Method 1 + + Apostle_(Christian) + +Method 2 + + Apostle_(Christian) + + + +-------------- + QUESTION: who made the ancient egyptian pyramids? +-Canonic Entity : egyptian_pyramids +-Target Values : (list (description "Ancient Egypt")) +-Candidate Entities: Ancient_Egyptian_navy | The_Pyramids_(band) | Ancient_Egyptian_funerary_texts | Pyramids_of_Güímar | Clothing_in_ancient_Egypt, Egyptian_language, Ancient_Egyptian_burial_customs, Ancient_Egyptian_medicine, Ancient_Egyptian_literature, Outline_of_ancient_Egypt, Ancient_Egyptian_deities | Pyramids_(novel) | Egyptian_astronomy, Ancient_Egyptian_architecture, Ancient_Egyptian_concept_of_the_soul + +Additional entities + +Method 1 + + Pyramids_of_Güímar + + Pyramids_(novel) + + Ancient_Egyptian_funerary_texts + + Ancient_Egyptian_concept_of_the_soul + + Egyptian_language + +Method 2 + + Ancient_Egyptian_navy + + Pyramids_(novel) + + Ancient_Egyptian_funerary_texts + + Ancient_Egyptian_concept_of_the_soul + + Egyptian_language + + + +-------------- + QUESTION: which asian country has the biggest population? +-Canonic Entity : asian_people +-Target Values : (list (description China)) +-Candidate Entities: 16_Biggest_Hits_(Johnny_Cash_album) | British_Asian, Cross-country_skiing_at_the_1996_Asian_Winter_Games | The_Biggest_Loser_(UK_TV_series), Cross-country_skiing_at_the_1999_Asian_Winter_Games | United_States_Population_Clock | Country_music | The_Biggest_Loser, Biggest_Bluest_Hi_Fi, The_Biggest_Bundle_of_Them_All | Cross-country_skiing_at_the_1986_Asian_Winter_Games, The_Biggest_Loser_(season_3), Cross-country_skiing_at_the_1990_Asian_Winter_Games, The_Biggest_Game_Show_In_The_World_(Asia) | Four_Asian_Tigers + +Additional entities + +Method 1 + + Four_Asian_Tigers + + British_Asian + + Country_music + +Method 2 + + Four_Asian_Tigers + + British_Asian + + + +-------------- + QUESTION: where did the san diego chargers originate? +-Canonic Entity : san_diego_chargers +-Target Values : (list (description "Los Angeles Chargers")) +-Candidate Entities: San_Diego_Sails, San_Diego_County,_California, San_Diego_Super_Chargers, San_Diego, Rockstar_San_Diego | Bromley_Originate_Change + +Additional entities + +Method 1 + + San_Diego + +Method 2 + + San_Diego_County,_California + + + +-------------- + QUESTION: who was the voice of nemo's dad? +-Canonic Entity : american_dad! +-Target Values : (list (description "Albert Brooks")) +-Candidate Entities: + + + +-------------- + QUESTION: what 4 countries are part of the united kingdom? +-Canonic Entity : countries_of_the_united_kingdom +-Target Values : (list (description Wales) (description England) (description Scotland) (description "Northern Ireland")) +-Candidate Entities: Income_tax_in_European_countries | Number_4_(album) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who was king george v father? +-Canonic Entity : king_george_v_college +-Target Values : (list (description "Edward VII")) +-Candidate Entities: King_George,_Virginia, George_King_(film_director), King_George,_Saskatoon | George_VI, Fort_King_George, George_King_(cricketer,_born_1857) | Father_Tongue_hypothesis | King_George_V_Reservoir, King_George_V_Memorial_Hospital, Hired_armed_cutter_King_George, George_V, King_George_Square_busway_station | My_Father_My_King, Father_of_the_Bride_(1991_film) | King_George_V-class_battleship_(1939), King_George_VI_and_Queen_Elizabeth_Stakes, George_Edwin_King, King_George's_Fields + +Additional entities + +Method 1 + + George_VI + + George_V + +Method 2 + + + +-------------- + QUESTION: who won last year's nfl super bowl? +-Canonic Entity : super_bowl +-Target Values : (list (description "Baltimore Ravens")) +-Candidate Entities: Pro_Bowl | NFL_Classics, 1967_NFL_Championship_Game + +Additional entities + +Method 1 + + NFL_Classics + +Method 2 + + 1967_NFL_Championship_Game + + Pro_Bowl + + + +-------------- + QUESTION: who played michael myers in halloween 4? +-Canonic Entity : michael_myers_(halloween) +-Target Values : (list (description "George P. Wilbur")) +-Candidate Entities: Halloween_(1978_film), Halloween_(2007_film), Halloween_(franchise), Kidz_Bop_Halloween, Halloween_III:_Season_of_the_Witch | Mike_Myers | Twilight_as_Played_by_The_Twilight_Singers, Played, Played_in_Britain, The_Band_Played_On, And_the_Bands_Played_On + +Additional entities + +Method 1 + + Mike_Myers + + Halloween_(1978_film) + +Method 2 + + Mike_Myers + + Halloween_(1978_film) + + + +-------------- + QUESTION: what language do chinese? +-Canonic Entity : chinese_language +-Target Values : (list (description Chinese)) +-Candidate Entities: Old_Chinese, Written_vernacular_Chinese, Middle_Chinese, Classical_Chinese, Standard_Chinese, Romanization_of_Chinese, Comparison_of_national_standards_of_Chinese, Chinese_diaspora_in_France, Chinese_contemporary_classical_opera, Written_Chinese + +Additional entities + +Method 1 + + Old_Chinese + +Method 2 + + Standard_Chinese + + + +-------------- + QUESTION: what did daniel tosh say that was so offensive? +-Canonic Entity : daniel_tosh +-Target Values : (list (description "Daniel Tosh: Happy Thoughts")) +-Candidate Entities: Tosh, Tosh_(Hasidic_dynasty) | Offensive_(military) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what happened to nagasaki? +-Canonic Entity : nagasaki +-Target Values : (list (description "Atomic bombings of Hiroshima and Nagasaki")) +-Candidate Entities: Whatever_Happened_to_Corey_Haim? + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what language is spoken in basque? +-Canonic Entity : basque_language +-Target Values : (list (description Basque)) +-Candidate Entities: + + + +-------------- + QUESTION: what movies did james franco play in? +-Canonic Entity : james_franco +-Target Values : (list (description "Tristan & Isolde") (description "Pineapple Express") (description "The Great Raid") (description Annapolis) (description "Whatever It Takes") (description "The Company") (description "An American Crime") (description Spider-Man) (description "Spider-Man 2") (description "Spider-Man 3")) +-Candidate Entities: Franco_(General_Hospital), Darío_Franco, Duke_of_Franco | Google_Play + +Additional entities + +Method 1 + + Google_Play + + Franco_(General_Hospital) + +Method 2 + + Google_Play + + Franco_(General_Hospital) + + + +-------------- + QUESTION: what does bob dylan sing? +-Canonic Entity : hollies_sing_dylan +-Target Values : (list (description "Like a Rolling Stone")) +-Candidate Entities: Bob_Dylan,_Performing_Artist, The_Bob_Dylan_Encyclopedia, The_Best_of_Bob_Dylan_(1997_album), Bob_Dylan_(album), Bob_Dylan, Song_for_Bob_Dylan, Another_Side_of_Bob_Dylan | Dylan_&_the_Dead, Bob_Dylan_at_Budokan | Sing,_Sing,_Sing_(With_a_Swing) | The_Essential_Bob_Dylan, Dylan_(2007_album), The_Freewheelin'_Bob_Dylan, Zé_Ramalho_Canta_Bob_Dylan_–_Tá_Tudo_Mudando | The_Best_of_Bob_Dylan,_Vol._2, Bob_Dylan_England_Tour_1965 | Dylan_(1973_album) | Sing_Sing + +Additional entities + +Method 1 + + Dylan_(2007_album) + + Bob_Dylan_at_Budokan + + Bob_Dylan + +Method 2 + + Dylan_(1973_album) + + The_Best_of_Bob_Dylan,_Vol._2 + + The_Essential_Bob_Dylan + + Bob_Dylan + + + +-------------- + QUESTION: what year did john adams get elected president? +-Canonic Entity : john_jay_adams +-Target Values : (list (description 4/21/1789)) +-Candidate Entities: John_Adams,_Sr., John_Quincy_Adams_II, John_Adams_Birthplace, John_Quincy_Adams, John_Bodkin_Adams, John_T._Adams, John_Adams | Adams_National_Historical_Park, John_Couch_Adams + +Additional entities + +Method 1 + + John_Adams + +Method 2 + + + +-------------- + QUESTION: what to do in palo alto ca with kids? +-Canonic Entity : palo_alto,_virginia +-Target Values : (list (description "Hoover Tower") (description PARC) (description "Stanford Memorial Church") (description "Hewlett-Packard House and Garage") (description "Leland Stanford Junior University Museum of Art") (description "Iris & B. Gerald Cantor Center for Visual Arts") (description "Palo Alto Baylands Nature Preserve") (description "Arastradero Preserve") (description "Stanford Shopping Center") (description Professorville)) +-Candidate Entities: Palo_Alto,_California, Palo_Alto,_Aguascalientes, Palo_Alto,_Texas, East_Palo_Alto,_California, Palo_Alto,_Pennsylvania, Palo_Alto,_Mississippi, Palo_Alto_(2007_film), Palo_Alto_(Caltrain_station), Palo_Alto_College, El_Palo_Alto, Palo_Alto_County,_Iowa, VA_Palo_Alto_Health_Care_System, PALO, Palo_Alto_Networks, Palo_Alto_Baylands_Nature_Preserve, Palo_Alto_(book), Palo_Alto_Chamber_Orchestra, Battle_of_Palo_Alto, Palo_Alto_University | ...For_the_Kids + +Additional entities + +Method 1 + +Method 2 + + Palo_Alto,_California + + + +-------------- + QUESTION: what country did jacques cartier came from? +-Canonic Entity : french_ship_jacques_cartier_(l9033) +-Target Values : (list (description France)) +-Candidate Entities: + + + +-------------- + QUESTION: what disease did abe lincoln have? +-Canonic Entity : abe_lincoln_(musician) +-Target Values : (list (description "Marfan syndrome") (description Smallpox) (description Strabismus)) +-Candidate Entities: Abraham_Lincoln + +Additional entities + +Method 1 + + Abraham_Lincoln + +Method 2 + + Abraham_Lincoln + + + +-------------- + QUESTION: what are the holidays of islam? +-Canonic Entity : the_holidays +-Target Values : (list (description "Eid al-Fitr") (description Ramadan) (description "Eid al-Adha")) +-Candidate Entities: Holiday, Public_holidays_in_Egypt, Holidays_in_Europe_(The_Naughty_Nought) | Women_in_Islam | Holidays_in_the_Sun_EP | Islam_in_Southeast_Asia + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who did magellan sail for? +-Canonic Entity : sail +-Target Values : (list (description Explorer)) +-Candidate Entities: Magellan_(spacecraft), Magellan + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where did irish people come from? +-Canonic Entity : irish_people +-Target Values : (list (description Ireland)) +-Candidate Entities: Irish_migration_to_Great_Britain, Irish_language, Irish_Republican_Brotherhood + +Additional entities + +Method 1 + + Irish_language + +Method 2 + + Irish_language + + + +-------------- + QUESTION: what represents ghana? +-Canonic Entity : ghana +-Target Values : (list (description "Flag of Ghana")) +-Candidate Entities: Three_Represents, The_Moon_Represents_My_Heart + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what to see in downtown asheville nc? +-Canonic Entity : asheville,_north_carolina +-Target Values : (list (description "Asheville Art Museum") (description "Folk Art Center") (description "Grove Park Inn") (description "Pisgah National Forest") (description "Bele Chere") (description "Biltmore Estate") (description "Chimney Rock State Park") (description "Thomas Wolfe House") (description "Carl Sandburg Home National Historic Site") (description "Smith-McDowell House")) +-Candidate Entities: University_of_North_Carolina_at_Asheville, Asheville_Regional_Airport, Asheville_metropolitan_area | Transportation_in_North_Carolina + +Additional entities + +Method 1 + + Transportation_in_North_Carolina + + Asheville_metropolitan_area + +Method 2 + + Transportation_in_North_Carolina + + Asheville_metropolitan_area + + + +-------------- + QUESTION: where did carrie underwood live? +-Canonic Entity : carrie_underwood +-Target Values : (list (description Checotah)) +-Candidate Entities: I_Told_You_So_(Randy_Travis_song) + +Additional entities + +Method 1 + + I_Told_You_So_(Randy_Travis_song) + +Method 2 + + I_Told_You_So_(Randy_Travis_song) + + + +-------------- + QUESTION: what sports do canadians like? +-Canonic Entity : haitian_canadians +-Target Values : (list (description "Canada women's national volleyball team")) +-Candidate Entities: + + + +-------------- + QUESTION: when did carolina hurricanes win the cup? +-Canonic Entity : carolina_hurricanes +-Target Values : (list (description "2006 Stanley Cup Finals")) +-Candidate Entities: Hurricanes_(rugby_union) | 2006_Stanley_Cup_Finals | Toronto_RCAF_Hurricanes | For_the_Win, WIN_(TV_station) | Johnny_and_the_Hurricanes, Miami_Hurricanes_football, Hurricanes_(TV_series), Hørsholm_Hurricanes | Carolina_Challenge_Cup + +Additional entities + +Method 1 + + 2006_Stanley_Cup_Finals + +Method 2 + + 2006_Stanley_Cup_Finals + + + +-------------- + QUESTION: who does jr smith play for 2012? +-Canonic Entity : joe_d._smith,_jr. +-Target Values : (list (description "New York Knicks")) +-Candidate Entities: + + + +-------------- + QUESTION: who currently owns the steelers? +-Canonic Entity : bengals–steelers_rivalry +-Target Values : (list (description "Rooney family")) +-Candidate Entities: Pittsburgh_Steelers + +Additional entities + +Method 1 + + Pittsburgh_Steelers + +Method 2 + + Pittsburgh_Steelers + + + +-------------- + QUESTION: where was toni braxton born and raised? +-Canonic Entity : toni_braxton +-Target Values : (list (description Severn)) +-Candidate Entities: Braxton_Family_Values, Tamar_Braxton | Born_and_Raised_in_Black_&_White, Born_&_Raised_(Parks_and_Recreation) | Elliott_M._Braxton + +Additional entities + +Method 1 + + Tamar_Braxton + +Method 2 + + Tamar_Braxton + + + +-------------- + QUESTION: who has dirk nowitzki played for? +-Canonic Entity : dirk_nowitzki +-Target Values : (list (description "Dallas Mavericks")) +-Candidate Entities: Dirk, Dirk_Schlächter | Twilight_as_Played_by_The_Twilight_Singers, Played, Played_in_Britain, The_Band_Played_On, And_the_Bands_Played_On + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what is the currency in the dominican republic called? +-Canonic Entity : dominican_republic_cuisine +-Target Values : (list (description "Dominican peso")) +-Candidate Entities: Dominican_War_of_Independence, Dominican_Navy | A_Band_Called_O, Called_to_Serve_(song), The_Return_of_a_Man_Called_Horse + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where is shoreview mn? +-Canonic Entity : shoreview,_minnesota +-Target Values : (list (description "Ramsey County")) +-Candidate Entities: + + + +-------------- + QUESTION: what did maria theresa rule? +-Canonic Entity : maria_theresa +-Target Values : (list (description Bohemia) (description Hungary)) +-Candidate Entities: + + + +-------------- + QUESTION: what was jack london's education? +-Canonic Entity : london's_burning +-Target Values : (list (description "University of California, Berkeley") (description "Oakland High School")) +-Candidate Entities: Live_at_London's_Talk_of_the_Town | Jack_London's_Tales_of_the_Klondike, Jack_London_State_Historic_Park, Jack_London, Jack_London's_San_Francisco_Stories, Jack_(device), Homer_A._Jack + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what club team does ronaldinho play for? +-Canonic Entity : ronaldinho +-Target Values : (list (description "Clube Atlético Mineiro")) +-Candidate Entities: Hot_Dance_Club_Songs | Play_(BDSM) | National_sports_team | Pay_to_play + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: which countries share borders with spain? +-Canonic Entity : share_of_voice +-Target Values : (list (description "Perejil Island") (description Portugal) (description France) (description Andorra) (description Morocco) (description Gibraltar)) +-Candidate Entities: List_of_countries_and_territories_by_land_borders | Spain | Income_tax_in_European_countries + +Additional entities + +Method 1 + + Spain + +Method 2 + + + +-------------- + QUESTION: what is the official currency in france? +-Canonic Entity : currency +-Target Values : (list (description "CFP franc") (description Euro)) +-Candidate Entities: Dauphine_of_France, Name_of_France, Constable_of_France, Renée_of_France, Union_of_Brittany_and_France + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what going on in afghanistan right now? +-Canonic Entity : afghanistan_midwifery_project +-Target Values : (list (description "Conflict in Afghanistan")) +-Candidate Entities: + + + +-------------- + QUESTION: what state did roger sherman represent at the constitutional convention? +-Canonic Entity : constitutional_convention_(california) +-Target Values : (list (description Connecticut)) +-Candidate Entities: Roger_Sherman + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what type of money do japanese use? +-Canonic Entity : demand_for_money +-Target Values : (list (description "Japanese yen")) +-Candidate Entities: Japanese_Type_L_submarine | Money_market_fund, The_Future_of_Money + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what county is bradenton fl located in? +-Canonic Entity : bradenton,_florida +-Target Values : (list (description "Manatee County")) +-Candidate Entities: Bradenton_Beach,_Florida + +Additional entities + +Method 1 + + Bradenton_Beach,_Florida + +Method 2 + + Bradenton_Beach,_Florida + + + +-------------- + QUESTION: what is molly ringwald in? +-Canonic Entity : molly_ringwald +-Target Values : (list (description "Office Killer") (description "The Breakfast Club") (description "Sixteen Candles") (description "Fresh Horses") (description "Strike It Rich") (description "Betsy's Wedding") (description "Pretty in Pink") (description "Spacehunter: Adventures in the Forbidden Zone") (description "The Stand") (description Tempest)) +-Candidate Entities: Molly_(film) + +Additional entities + +Method 1 + + Molly_(film) + +Method 2 + + + +-------------- + QUESTION: what movies has scarlett johansson played in? +-Canonic Entity : scarlett_johansson +-Target Values : (list (description "Girl with a Pearl Earring") (description Fall) (description "A Good Woman") (description "A Love Song for Bobby Long") (description "Don Jon's Addiction") (description "Eight Legged Freaks") (description "Ghost World") (description "Captain America: The Winter Soldier") (description "An American Rhapsody")) +-Candidate Entities: Scarlett_(G.I._Joe), Scarlett_O'Hara, Scarlett_(cat) | The_Movies, Sky_Movies_(New_Zealand), The_Movies_(band), At_the_Movies_(U.S._TV_series), Yahoo!_Movies + +Additional entities + +Method 1 + + Yahoo!_Movies + +Method 2 + + Yahoo!_Movies + + + +-------------- + QUESTION: what is the philadelphia church of god? +-Canonic Entity : philadelphia_church_of_god +-Target Values : (list (description "Protestant Organizations")) +-Candidate Entities: God_TV + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where did david duke go to college? +-Canonic Entity : david_duke +-Target Values : (list (description "Interregional Academy of Personnel Management") (description "Louisiana State University")) +-Candidate Entities: David_Somerset,_11th_Duke_of_Beaufort, David_Game_College | Duke_Blue_Devils_football, David_Stewart,_Duke_of_Rothesay, David_Manners,_11th_Duke_of_Rutland, Basil_W._Duke | HKMA_David_Li_Kwok_Po_College | The_Old_Duke, James_A._Duke + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where does bradley cooper live now? +-Canonic Entity : bradley_cooper +-Target Values : (list (description Philadelphia)) +-Candidate Entities: The_Cooper_Brothers, COOPER_(artist) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what mark zuckerberg? +-Canonic Entity : mark_zuckerberg +-Target Values : (list (description "Facebook, Inc.")) +-Candidate Entities: Zuckerberg | Mark_the_Evangelist, County_of_Mark, Mark_(Dintel), Mark_E._Smith + +Additional entities + +Method 1 + + Mark_the_Evangelist + +Method 2 + + + +-------------- + QUESTION: what country did vasco da gama come from? +-Canonic Entity : vasco_da_gama +-Target Values : (list (description Portugal)) +-Candidate Entities: + + + +-------------- + QUESTION: what country do they speak farsi? +-Canonic Entity : speak!!! +-Target Values : (list (description Canada) (description Afghanistan) (description Iran) (description Oman) (description Uzbekistan) (description Bahrain) (description Iraq) (description Tajikistan)) +-Candidate Entities: Rashid_Al_Farsi | Speak_(No-Man_album), Speak_(Godsmack_song) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who did japan surrender to in ww2? +-Canonic Entity : surrender_of_japan +-Target Values : (list (description "Iwane Matsui")) +-Candidate Entities: Surrender_to_the_Night, No_Surrender_(2010), No_Surrender_(2009), No_Surrender_(2012), No_Surrender_(2011), No_Surrender_(2005), No_Surrender_(2008), Surrender_at_Világos, Surrender_(The_Chemical_Brothers_album), Surrender_(military), Surrender_(Cheap_Trick_song) + +Additional entities + +Method 1 + + Surrender_(military) + +Method 2 + + Surrender_(military) + + + +-------------- + QUESTION: where does luke skywalker live in star wars? +-Canonic Entity : skywalker_family +-Target Values : (list (description Tatooine)) +-Candidate Entities: Luke_Skywalker, Luke_Skywalker_and_the_Shadows_of_Mindor | Star_Wars, Kenner_Star_Wars_action_figures, Star_Wars_(UK_comics), Star_Wars_Expanded_Universe + +Additional entities + +Method 1 + + Star_Wars + +Method 2 + + Luke_Skywalker + + Star_Wars + + + +-------------- + QUESTION: what basketball team does kris humphrey play for? +-Canonic Entity : kris +-Target Values : (list (description "Brooklyn Nets")) +-Candidate Entities: 2009–10_Tennessee_Lady_Volunteers_basketball_team | Here's_Humphrey | Catalonia_national_basketball_team, 1988–89_Illinois_Fighting_Illini_men's_basketball_team, 2009–10_Hawaii_Rainbow_Wahine_basketball_team + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what is time zone in hawaii? +-Canonic Entity : hawaii–aleutian_time_zone +-Target Values : (list (description "Hawaii–Aleutian Time Zone")) +-Candidate Entities: Hawaii–Aleutian_Standard_Time, Central_Time_Zone | Hawaii_Ocean_Time-series | Pacific_Time_Zone, Time_Zone_(video_game), Mountain_Time_Zone, Time_zone, Chamorro_Time_Zone, Eastern_Time_Zone, Alaska_Time_Zone, Iran_Standard_Time, Time_in_Hawaii, Daylight_saving_time_in_the_United_States, Effects_of_time_zones_on_North_American_broadcasting, Samoa_Time_Zone, Time_in_Saskatchewan, Bhutan_Time | Hawaii | Time_in_the_United_States + +Additional entities + +Method 1 + + Time_in_the_United_States + + Hawaii + + Eastern_Time_Zone + +Method 2 + + Time_in_the_United_States + + Central_Time_Zone + + Hawaii + + Alaska_Time_Zone + + + +-------------- + QUESTION: what is john cena doing right now? +-Canonic Entity : john_cena +-Target Values : (list (description "Fast Cars and Superstars: The Gillette Young Guns Celebrity Race") (description "WWE Saturday Night's Main Event") (description "WWE RAW")) +-Candidate Entities: Cena, Cena_(disambiguation) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what are two countries in south america? +-Canonic Entity : south_america +-Target Values : (list (description Carrasco) (description Chacaltaya) (description Chile) (description Pampas) (description "Amazon Basin") (description "French Guiana") (description Peru) (description Guyana) (description Paraguay) (description Bolivia)) +-Candidate Entities: + + + +-------------- + QUESTION: where did kobe bryant attend high school? +-Canonic Entity : kobe_bryant +-Target Values : (list (description "Lower Merion High School")) +-Candidate Entities: Kobe_Doin'_Work + +Additional entities + +Method 1 + + Kobe_Doin'_Work + +Method 2 + + Kobe_Doin'_Work + + + +-------------- + QUESTION: what did doctor kevorkian do? +-Canonic Entity : jack_kevorkian +-Target Values : (list (description Physician) (description Pathologist)) +-Candidate Entities: Kevorkian_Death_Cycle, François_Kevorkian | Doctor_(Doctor_Who) | Kevorkian + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where is chowchilla located? +-Canonic Entity : chowchilla,_california +-Target Values : (list (description "United States of America") (description California) (description "Madera County")) +-Candidate Entities: Chowchilla, Chowchilla_School_District, Chowchilla_(disambiguation) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what country is vatican city in? +-Canonic Entity : rail_transport_in_vatican_city +-Target Values : (list (description Rome)) +-Candidate Entities: Vatican_Secret_Archives, Vatican_and_Holy_See_passports + +Additional entities + +Method 1 + + Vatican_Secret_Archives + +Method 2 + + Vatican_Secret_Archives + + + +-------------- + QUESTION: who played princess leia's mother in star wars? +-Canonic Entity : princess_leia +-Target Values : (list (description "Padmé Amidala")) +-Candidate Entities: Star_Wars, Star_Wars_(UK_comics), Star_Wars_Expanded_Universe, Star_Wars_Episode_IV:_A_New_Hope_(soundtrack), Star_Wars_Infinities, Kenner_Star_Wars_action_figures, Star_Wars_Holiday_Special, Star_Wars_Pez, Star_Wars_Galaxies, Kinect_Star_Wars, Star_Wars_(film), Star_Wars_(1983_video_game), Star_Wars_Tales_Volume_3, Star_Wars:_Battlefront_(series), Star_Wars_(comics), Star_Wars_Episode_V:_The_Empire_Strikes_Back_(soundtrack), Star_Wars:_Rebellion, Star_Wars_sequel_trilogy, Star_Wars_canon + +Additional entities + +Method 1 + + Star_Wars + +Method 2 + + Star_Wars_(film) + + + +-------------- + QUESTION: what type of voting system does the uk have? +-Canonic Entity : voting_system +-Target Values : (list (description "Government of the United Kingdom")) +-Candidate Entities: Substructural_type_system | Plurality-at-large_voting, Voting, Weighted_voting, Instant-runoff_voting, DRE_voting_machine + +Additional entities + +Method 1 + + Plurality-at-large_voting + +Method 2 + + Instant-runoff_voting + + + +-------------- + QUESTION: where is the warmest weather in the united states in december? +-Canonic Entity : 2011_winter_smtown_–_the_warmest_gift +-Target Values : (list (description Florida)) +-Candidate Entities: NOAA_Weather_Radio, NBC_Weather_Plus, The_Dead_Weather, Automated_airport_weather_station, Weather, 3rd_Weather_Squadron, National_Weather_Service_Lincoln,_Illinois, Sky_News_Weather_Channel_programming, Weather_Underground_(weather_service) + + + +-------------- + QUESTION: where donald trump went to college? +-Canonic Entity : donald_trump +-Target Values : (list (description "The Kew-Forest School") (description "University of Pennsylvania") (description "Fordham University") (description "Wharton School of the University of Pennsylvania") (description "New York Military Academy")) +-Candidate Entities: Trump_Model_Management, Trump, Donald_J._Trump_State_Park, The_Trump_Entrepreneur_Initiative, Trump_International_Hotel_and_Tower_(Chicago), Trump_Taj_Mahal, Trump_International_Hotel_and_Tower_(Toronto) | Burnley_College, Clydebank_College, Darlington_College, Kilgore_College, Gorseinon_College + +Additional entities + +Method 1 + + Kilgore_College + + Trump_International_Hotel_and_Tower_(Chicago) + +Method 2 + + Trump_Taj_Mahal + + + +-------------- + QUESTION: what did john howard study at university? +-Canonic Entity : howard_university_school_of_law +-Target Values : (list (description "Bachelor of Laws")) +-Candidate Entities: John_Howard, John_Cabot_University, John_Howard_(prison_reformer), John_Howard_(lacrosse), John_George_Howard, John_Howard_Northrop | Howard_Government + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what did duke ellington do? +-Canonic Entity : duke_ellington +-Target Values : (list (description Musician)) +-Candidate Entities: Ellington_at_Newport + +Additional entities + +Method 1 + + Ellington_at_Newport + +Method 2 + + Ellington_at_Newport + + + +-------------- + QUESTION: from which university did president obama receive his bachelor's degree? +-Canonic Entity : barack_obama +-Target Values : (list (description "University of Chicago")) +-Candidate Entities: Bachelor's_degree + +Additional entities + +Method 1 + + Bachelor's_degree + +Method 2 + + Bachelor's_degree + + + +-------------- + QUESTION: what year did yankees win their first world series? +-Canonic Entity : win_(tv_station) +-Target Values : (list (description "1923 World Series")) +-Candidate Entities: World_Series | New_York_Yankees_Radio_Network | Win_in_China | List_of_New_York_Yankees_seasons, Gulf_Coast_League_Yankees, New_York_Yankees_(1936_AFL), 2001_New_York_Yankees_season, History_of_the_New_York_Yankees, 2012_New_York_Yankees_season | 2009_World_Series | Saratoga_Harlem_Yankees, Bronx_Yankees + +Additional entities + +Method 1 + + World_Series + +Method 2 + + + +-------------- + QUESTION: when was the last time the new england patriots won the superbowl? +-Canonic Entity : colts–patriots_rivalry +-Target Values : (list (description "Super Bowl XXXVIII")) +-Candidate Entities: New_England_Patriots + +Additional entities + +Method 1 + + New_England_Patriots + +Method 2 + + New_England_Patriots + + + +-------------- + QUESTION: what films has morgan freeman narrated? +-Canonic Entity : morgan_freeman +-Target Values : (list (description "A Raisin in the Sun")) +-Candidate Entities: Morgan_J._Freeman, MacGillivray_Freeman_Films, Freeman_(Colonial) + +Additional entities + +Method 1 + + Morgan_J._Freeman + +Method 2 + + Morgan_J._Freeman + + + +-------------- + QUESTION: where are the atlanta falcons located? +-Canonic Entity : atlanta_falcons +-Target Values : (list (description Atlanta)) +-Candidate Entities: The_Falcons, Falcons_(rugby_team) | Atlanta, The_Atlanta_Journal-Constitution + +Additional entities + +Method 1 + + Atlanta + +Method 2 + + Atlanta + + + +-------------- + QUESTION: what is st francis patron saint of? +-Canonic Entity : 2011_são_tomé_and_principe_championship +-Target Values : (list (description "All Creatures Of Our God And King")) +-Candidate Entities: Patron_saint, Patron_saints_of_Naples | James_B._Francis, St._Francis_Hospital_(Columbus,_Georgia), Francis_Kelley, Francis_Dickens, Francis_Delafield + + + +-------------- + QUESTION: where was obama born? +-Canonic Entity : obama,_fukui +-Target Values : (list (description Hawaii)) +-Candidate Entities: Artists_for_Obama + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where was tommy emmanuel born? +-Canonic Entity : tommy_emmanuel +-Target Values : (list (description Muswellbrook)) +-Candidate Entities: Emmanuel_(singer) + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what techniques did frida kahlo use in her paintings? +-Canonic Entity : frida_kahlo +-Target Values : (list (description Surrealism)) +-Candidate Entities: Frida, Frida_Hyvönen, Frida_–_The_DVD, Frida_Sandén, Frida_(opera), Frida_(soundtrack), Frække_Frida_og_de_frygtløse_spioner | Jay_&_the_Techniques | Frida_(disambiguation) | The_Techniques, Jujutsu_techniques, Cue_sports_techniques + +Additional entities + +Method 1 + + Frida_(disambiguation) + + Frida + +Method 2 + + Frida + + + +-------------- + QUESTION: who does larry david play in seinfeld? +-Canonic Entity : seinfeld +-Target Values : (list (description Screenwriter)) +-Candidate Entities: Larry_David | Play_On! + +Additional entities + +Method 1 + + Larry_David + +Method 2 + + Larry_David + + + +-------------- + QUESTION: what type of government does israel? +-Canonic Entity : thirtieth_government_of_israel +-Target Values : (list (description "Parliamentary system") (description Democracy)) +-Candidate Entities: Bugatti_Type_51 | Wilfrid_B._Israel | Type_88_tank_(China) | Israel | Bugatti_Type_35, Bugatti_Type_13, Type_of_service + +Additional entities + +Method 1 + + Israel + +Method 2 + + Israel + + + +-------------- + QUESTION: what political experience did abraham lincoln have? +-Canonic Entity : the_papers_of_abraham_lincoln +-Target Values : (list (description "United States Representative") (description "President of the United States") (description "Member of Illinois House of Representatives")) +-Candidate Entities: Lincoln_(2012_film) | Songs_of_Innocence_and_of_Experience, Experience_(The_Prodigy_album), Experience, The_Clark_Family_Experience, American_Experience + +Additional entities + +Method 1 + + Lincoln_(2012_film) + +Method 2 + + Lincoln_(2012_film) + + + +-------------- + QUESTION: where does brian williams live? +-Canonic Entity : brian_williams +-Target Values : (list (description Ridgewood)) +-Candidate Entities: + + + +-------------- + QUESTION: where is downtown littleton? +-Canonic Entity : littleton,_massachusetts +-Target Values : (list (description "Arapahoe County")) +-Candidate Entities: + + + +-------------- + QUESTION: what did shawnee smith star in? +-Canonic Entity : shawnee +-Target Values : (list (description "The Grudge 3") (description "Saw IV") (description "Summer School") (description "Saw II") (description "Saw III") (description "The Island") (description Saw) (description "The Blob") (description "Who's Harry Crumb?")) +-Candidate Entities: + + + +-------------- + QUESTION: what division is cincinnati bengals in? +-Canonic Entity : cincinnati_bengals +-Target Values : (list (description "AFC North")) +-Candidate Entities: + + + +-------------- + QUESTION: what technique did vincent van gogh use in his paintings? +-Canonic Entity : still_life_paintings_by_vincent_van_gogh_(paris) +-Target Values : (list (description Post-Impressionism)) +-Candidate Entities: Renault_UE_Chenillette, UE_Sant_Julià, German_Type_UE_II_submarine, UE_News, UE_Santa_Coloma + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where was toussaint charbonneau from? +-Canonic Entity : toussaint_charbonneau +-Target Values : (list (description Boucherville)) +-Candidate Entities: + + + +-------------- + QUESTION: what countries include western europe? +-Canonic Entity : western_europe +-Target Values : (list (description "Kingdom of Great Britain") (description "French First Republic") (description Austria) (description Luxembourg) (description "British Isles") (description Liechtenstein) (description "Western Roman Empire") (description "West Germany") (description Monaco) (description Switzerland)) +-Candidate Entities: Western_world | Romance-speaking_Europe, Aging_of_Europe, Europe | Include_directive, Include_(horse), Include_guard + +Additional entities + +Method 1 + + Europe + +Method 2 + + Europe + + Western_world + + + +-------------- + QUESTION: what timezone is new mexico currently in? +-Canonic Entity : mexico,_indiana +-Target Values : (list (description "Mountain Time Zone") (description UTC−07:00)) +-Candidate Entities: + + + +-------------- + QUESTION: who is the current president of china 2010? +-Canonic Entity : vice_president_of_the_republic_of_china +-Target Values : (list (description "Hu Jintao")) +-Candidate Entities: 2010_China_drought_and_dust_storms, 2010–11_China_drought, 2010_China_floods, 2010_China_Open_(snooker) | President_(steamboat) | China | Expo_2010 | West_Spitsbergen_Current, Current_divider, Partial_current, Wetting_current, Swift_Current + +Additional entities + +Method 1 + + China + +Method 2 + + Expo_2010 + + China + + + +-------------- + QUESTION: what is the legislature of missouri called? +-Canonic Entity : missouri_general_assembly +-Target Values : (list (description "Missouri General Assembly")) +-Candidate Entities: A_Band_Called_O, Constitution_of_Missouri | Missouri_Volunteer_Militia | Called_to_Serve_(song) | The_Missouri_Harmony, Missouri, Provisional_Government_of_Missouri | Legislature_of_Guam, Legislature_of_the_Virgin_Islands, The_Return_of_a_Man_Called_Horse | Missouri_State_Teachers_Association + +Additional entities + +Method 1 + + Constitution_of_Missouri + + Missouri_Volunteer_Militia + + Missouri + +Method 2 + + Legislature_of_the_Virgin_Islands + + Constitution_of_Missouri + + Missouri_Volunteer_Militia + + Missouri + + + +-------------- + QUESTION: what did harriet beecher stowe do as an abolitionist? +-Canonic Entity : harriet_beecher_stowe_house_(hartford,_connecticut) +-Target Values : (list (description Novelist) (description Writer) (description Author)) +-Candidate Entities: Stowe + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: in which province is pretoria? +-Canonic Entity : pretoria +-Target Values : (list (description Gauteng)) +-Candidate Entities: + + + +-------------- + QUESTION: what college did jerry rice attend? +-Canonic Entity : jerry_rice +-Target Values : (list (description "Mississippi Valley State University")) +-Candidate Entities: + + + +-------------- + QUESTION: who is liz lemon marrying on 30 rock? +-Canonic Entity : liz_lemon +-Target Values : (list (description "Jack Donaghy")) +-Candidate Entities: 30_Rock_(season_4) | Lemon_(color) | 30_Rock_(season_7), 30_Rock_(season_6), 30_Rock | Lemon | Marrying_the_Mafia_III | The_Mighty_Lemon_Drops, Cream_Lemon | Adam_Ant_Is_the_Blueblack_Hussar_in_Marrying_the_Gunner's_Daughter + +Additional entities + +Method 1 + + Lemon + + 30_Rock + +Method 2 + + 30_Rock_(season_4) + + 30_Rock + + + +-------------- + QUESTION: where was the battle of appomattox located? +-Canonic Entity : appomattox,_virginia +-Target Values : (list (description "Appomattox Court House")) +-Candidate Entities: Battle_of_Appomattox_Station, Battle_of_Appomattox_Court_House, Appomattox, Appomattox_Court_House, Appomattox_Campaign_Confederate_order_of_battle | Protocol_for_the_Suppression_of_Unlawful_Acts_against_the_Safety_of_Fixed_Platforms_Located_on_the_Continental_Shelf + +Additional entities + +Method 1 + + Battle_of_Appomattox_Court_House + +Method 2 + + Battle_of_Appomattox_Court_House + + + +-------------- + QUESTION: what country did john cabot sail for? +-Canonic Entity : cabot,_arkansas +-Target Values : (list (description Italy)) +-Candidate Entities: John_Cabot_University, John_Cabot_House, John_Cabot_Academy + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: when did mt st helens first erupt? +-Canonic Entity : malta,_montana +-Target Values : (list (description "1980 eruption of Mount St. Helens")) +-Candidate Entities: + + + +-------------- + QUESTION: where did the name rome come from? +-Canonic Entity : rome,_oregon +-Target Values : (list (description "Romulus and Remus")) +-Candidate Entities: + + + +-------------- + QUESTION: what time zone is fresno ca? +-Canonic Entity : central_time_zone +-Target Values : (list (description "Pacific Time Zone")) +-Candidate Entities: + + + +-------------- + QUESTION: who was the governor of missouri in 1996? +-Canonic Entity : list_of_governors_of_missouri +-Target Values : (list (description "Mel Carnahan")) +-Candidate Entities: North_Carolina_lieutenant_gubernatorial_election,_1996 | 1996–97_Missouri_Tigers_men's_basketball_team, Missouri_Tigers_men's_basketball | Governor_(United_States) | The_Missouri_Harmony, Missouri, Missouri_National_Guard, Missouri_Volunteer_Militia + +Additional entities + +Method 1 + + Missouri + +Method 2 + + Governor_(United_States) + + Missouri + + + +-------------- + QUESTION: what was the cause of death for sage stallone? +-Canonic Entity : sage_stallone +-Target Values : (list (description "Myocardial infarction") (description Atherosclerosis)) +-Candidate Entities: Sage_(mathematics_software) | Stallone | Sage_(sophos), SAGE_(game_engine), Margaret_Olivia_Slocum_Sage, The_Sage_Colleges, Sage_Group, Steven_Sage | Screen_of_death + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where did queen isabella live? +-Canonic Entity : isabella_i_of_jerusalem +-Target Values : (list (description "Madrigal de las Altas Torres")) +-Candidate Entities: Queen_on_Fire_–_Live_at_the_Bowl, Brett_Anderson_Live_at_Queen_Elizabeth_Hall + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who played carl fredricksen in up? +-Canonic Entity : carl_hårleman +-Target Values : (list (description "Ed Asner")) +-Candidate Entities: Twilight_as_Played_by_The_Twilight_Singers | Carl_(name) | Played + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: where did robert pattinson go to acting school? +-Canonic Entity : robert_pattinson +-Target Values : (list (description "The Harrodian School")) +-Candidate Entities: Manchester_School_of_Acting, Drama_school | Pattinson + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what language does the country italy speak? +-Canonic Entity : speak!!! +-Target Values : (list (description "Italian Language")) +-Candidate Entities: Speak_(No-Man_album), Speak_(Godsmack_song), I_Don't_Speak_the_Language, Speak_of_the_Devil_(book), Y_Speak + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who won the super bowl xliv 2010? +-Canonic Entity : super_bowl_xliv +-Target Values : (list (description "New Orleans Saints")) +-Candidate Entities: Super_Bowl, Super_Bowl_XLIII, Super_Bowl_XLVII, Super_Bowl_XXXVIII | The_Who_2010_performances | Super_Bowl_XLVIII, The_Super_Bowl_Shuffle, List_of_Super_Bowl_champions, Super_Bowl_counterprogramming, List_of_quarterbacks_with_multiple_Super_Bowl_starts, Super_Bowl_XXX, Super_Bowl_XLV, Super_Bowl_XLVI, Active_NFL_head_coach_career_Super_Bowl_history, Super_Bowl_advertising, 2010_Pro_Bowl, Super_Bowl_XXXIII, Super_Bowl_ring, Super_Bowl_XXII | Won_at_Last + +Additional entities + +Method 1 + + The_Who_2010_performances + + Super_Bowl_XLVIII + +Method 2 + + The_Who_2010_performances + + Super_Bowl_XLVIII + + Super_Bowl + + + +-------------- + QUESTION: what events caused roosevelt to become more of an internationalist? +-Canonic Entity : roosevelt,_new_york +-Target Values : (list (description "1932 Democratic National Convention")) +-Candidate Entities: + + + +-------------- + QUESTION: what do the colors on mali's flag represent? +-Canonic Entity : colors_(tv_channel) +-Target Values : (list (description "Flag of Mali")) +-Candidate Entities: Flag_of_the_United_States, Flag_of_Mongolia | Represent_(Compton's_Most_Wanted_album) | Flag_of_Poland, World_Flag, Flag_of_Romania, Flag_of_Argentina, Flag_of_Australia, Flag_of_the_Earth, Flag_of_Massachusetts, Flag_of_Bolívar_State, Flag_of_South_Vietnam, Flag_of_Monaco, Flag_of_Kosovo, Flag_of_Brazil + + + +-------------- + QUESTION: when does school start in los angeles california 2011? +-Canonic Entity : south_los_angeles +-Target Values : (list (description August)) +-Candidate Entities: Downtown_Los_Angeles, University_of_California,_Los_Angeles, West_Los_Angeles, Los_Angeles, Los_Angeles_County,_California, Los_Angeles_Film_School, Los_Angeles_metropolitan_area | UCLA_School_of_Dentistry | California_State_University,_Los_Angeles, East_Los_Angeles,_California, Los_Angeles_Master_Chorale, Mayor_of_Los_Angeles, Los_Feliz,_Los_Angeles, Stockton_–_Los_Angeles_Road, Koreatown,_Los_Angeles, Government_of_Los_Angeles_County, Los_Angeles_Ballet, Lake_Los_Angeles,_California | Head_Start_Program + +Additional entities + +Method 1 + + UCLA_School_of_Dentistry + + Koreatown,_Los_Angeles + + Downtown_Los_Angeles + +Method 2 + + UCLA_School_of_Dentistry + + Koreatown,_Los_Angeles + + University_of_California,_Los_Angeles + + + +-------------- + QUESTION: what years did the yankees win the championship? +-Canonic Entity : yankees–red_sox_rivalry +-Target Values : (list (description "1941 World Series") (description "1939 World Series") (description "1932 World Series") (description "1928 World Series") (description "1936 World Series") (description "1923 World Series") (description "1927 World Series") (description "1937 World Series") (description "1938 World Series") (description "1943 World Series")) +-Candidate Entities: + + + +-------------- + QUESTION: what did samuel de champlain? +-Canonic Entity : samuel_de_champlain +-Target Values : (list (description Soldier) (description Sailor) (description Navigator)) +-Candidate Entities: + + + +-------------- + QUESTION: what was william faulkner known for? +-Canonic Entity : william_faulkner +-Target Values : (list (description "Background to Danger") (description Flesh) (description "The Big Sleep") (description "The Long, Hot Summer") (description "To Have and Have Not") (description "Land of the Pharaohs") (description "Mildred Pierce") (description "Submarine Patrol") (description "Gunga Din") (description "Drums Along the Mohawk")) +-Candidate Entities: PEN/Faulkner_Award_for_Fiction | Motte_v_Faulkner + +Additional entities + +Method 1 + + PEN/Faulkner_Award_for_Fiction + +Method 2 + + PEN/Faulkner_Award_for_Fiction + + + +-------------- + QUESTION: what language did the miwok indians speak? +-Canonic Entity : central_sierra_miwok +-Target Values : (list (description "Utian languages")) +-Candidate Entities: Ione_Band_of_Miwok_Indians, Plains_Miwok_language, Coast_Miwok_language, Shingle_Springs_Band_of_Miwok_Indians, Plains_and_Sierra_Miwok, Miwok_languages + +Additional entities + +Method 1 + + Plains_and_Sierra_Miwok + +Method 2 + + Plains_and_Sierra_Miwok + + + +-------------- + QUESTION: who was audrey hepburn's husbands? +-Canonic Entity : audrey_hepburn's_enchanted_tales +-Target Values : (list (description "Robert Wolders") (description "Andrea Dotti") (description "Mel Ferrer")) +-Candidate Entities: Hint_to_Husbands | Audrey_Hepburn | Too_Many_Husbands, Husbands_and_Wives | White_floral_Givenchy_dress_of_Audrey_Hepburn | Husbands_(TV_series) | Gardens_of_the_World_with_Audrey_Hepburn, Audrey_Tcheuméo, Audrey_(magazine), Audrey_Erskine_Lindop + +Additional entities + +Method 1 + + Audrey_Hepburn + +Method 2 + + Audrey_Hepburn + + + +-------------- + QUESTION: who were queen elizabeth 1 parents? +-Canonic Entity : queen_elizabeth_prize_for_engineering +-Target Values : (list (description "Anne Boleyn") (description "Henry VIII of England")) +-Candidate Entities: Elizabeth_I_of_England, Elizabeth_II | My_Parents_Are_Aliens, My_Parents_Are_Aliens, Parents_(TV_series), Parents_for_Choice_in_Education, Les_Parents_terribles_(film), We_Have_Come_for_Your_Parents + +Additional entities + +Method 1 + + Elizabeth_II + +Method 2 + + Elizabeth_II + + + +-------------- + QUESTION: what do you want from me jerrod niemann lyrics meaning? +-Canonic Entity : jerrod_niemann +-Target Values : (list (description "Universal Music Group Nashville") (description "Arista Nashville") (description "Category 5 Records")) +-Candidate Entities: + + + +-------------- + QUESTION: what did robert koch do? +-Canonic Entity : robert_koch +-Target Values : (list (description Physician)) +-Candidate Entities: Bobby_Koch + +Additional entities + +Method 1 + + Bobby_Koch + +Method 2 + + + +-------------- + QUESTION: who does cristiano ronaldo play for? +-Canonic Entity : cristiano_ronaldo +-Target Values : (list (description "Real Madrid C.F.")) +-Candidate Entities: Ronaldo | Cristiano_Moraes_de_Oliveira | Ronaldo_Morais_Silva, Ronaldo_(name) | Play_On! + +Additional entities + +Method 1 + + Ronaldo + +Method 2 + + Ronaldo_(name) + + Cristiano_Moraes_de_Oliveira + + Ronaldo + + + +-------------- + QUESTION: what currency is best to take to dominican republic? +-Canonic Entity : dominican_republic_cuisine +-Target Values : (list (description "Dominican peso")) +-Candidate Entities: + + + +-------------- + QUESTION: who's betty white? +-Canonic Entity : betty_white +-Target Values : (list (description Singer) (description "Television Producer") (description Author) (description Actor) (description "TV Personality") (description Comedian)) +-Candidate Entities: + + + +-------------- + QUESTION: what has been discovered on mars so far? +-Canonic Entity : mars_(mythology) +-Target Values : (list (description "Acidalia Colles") (description "Aganippe Fossa") (description "Acheron Fossae") (description "Alba Patera") (description Adirondack) (description "Aeolis Mensae") (description Airy-0) (description Airy) (description "Aeolis quadrangle") (description "Acidalia Planitia")) +-Candidate Entities: Mars + +Additional entities + +Method 1 + + Mars + +Method 2 + + + +-------------- + QUESTION: who is lleyton hewitt? +-Canonic Entity : lleyton_hewitt +-Target Values : (list (description "Tennis player")) +-Candidate Entities: + + + +-------------- + QUESTION: what movies did quentin tarantino star in? +-Canonic Entity : quentin_tarantino +-Target Values : (list (description Grindhouse) (description "The Cutting Edge: The Magic of Movie Editing") (description "Sukiyaki Western Django") (description "Full Tilt Boogie") (description "Z Channel: A Magnificent Obsession") (description "BaadAsssss Cinema") (description Desperado) (description "Four Rooms") (description "From Dusk till Dawn") (description "Dead On: The Life and Cinema of George A. Romero")) +-Candidate Entities: STAR_Movies | Tarantino | STAR_Chinese_Movies + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what language does the new zealand speak? +-Canonic Entity : speak!!! +-Target Values : (list (description "Esperanto Language") (description "English Language") (description "Māori language") (description "Samoan Language") (description "Tongan Language") (description "Standard Mandarin") (description "Fijian Language")) +-Candidate Entities: Speak_(No-Man_album), Don't_Speak, Speak_(Godsmack_song), Speak_for_Yourself, I_Don't_Speak_the_Language, Speak_of_the_Devil_(book), SPEAK_(test), Speak_(band), Speak_(film), Speak_of_the_devil, The_People_Speak_(film), Crazy_Peoples_Right_to_Speak, Speak_Now_World_Tour_–_Live + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what kind of cancer killed larry hagman have? +-Canonic Entity : larry_hagman +-Target Values : (list (description "Head and neck cancer") (description Cancer) (description Leukemia)) +-Candidate Entities: Hagman | Killed_by_Death_(albums) | A_Different_Kind_of_Pain | Clonally_transmissible_cancer | United_States_Congress_members_killed_or_wounded_in_office | A_Kind_of_Alchemy | Killed_or_Cured + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what kind of drugs does charlie sheen do? +-Canonic Entity : charlie_sheen +-Target Values : (list (description Cocaine)) +-Candidate Entities: Sheen_(film) | Drug | Charlie_and_Lola | Gifts_in_kind, A_Kind_of_Alchemy, Johann_Friedrich_Kind, Kind_(type_theory), My_Kind_of_Woman/My_Kind_of_Man + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: who is clint eastwood dating? +-Canonic Entity : clint_eastwood +-Target Values : (list (description "Dina Eastwood")) +-Candidate Entities: + + + +-------------- + QUESTION: what county is sacramento located in? +-Canonic Entity : sacramento,_kentucky +-Target Values : (list (description "Sacramento County")) +-Candidate Entities: + + + +-------------- + QUESTION: what did audrey hepburn died of? +-Canonic Entity : audrey_hepburn +-Target Values : (list (description "Appendix cancer")) +-Candidate Entities: + + + +-------------- + QUESTION: what country was the treaty of versailles written? +-Canonic Entity : treaty_of_versailles_(1871) +-Target Values : (list (description France)) +-Candidate Entities: As_It_Is_Written | Versailles_(city) + +Additional entities + +Method 1 + + Versailles_(city) + +Method 2 + + Versailles_(city) + + + +-------------- + QUESTION: what is st mary mascot? +-Canonic Entity : 2011_são_tomé_and_principe_championship +-Target Values : (list (description Griffin)) +-Candidate Entities: + + + +-------------- + QUESTION: who was irving berlin and what did he do? +-Canonic Entity : ella_fitzgerald_sings_the_irving_berlin_songbook +-Target Values : (list (description Songwriter) (description Lyricist) (description Composer)) +-Candidate Entities: Irving_B._Kahn + + + +-------------- + QUESTION: who shot j lennon? +-Canonic Entity : lennon,_finistère +-Target Values : (list (description "Mark David Chapman")) +-Candidate Entities: I_Just_Shot_John_Lennon, The_Lennon_Sisters + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what happened during william henry harrison presidency? +-Canonic Entity : william_henry_harrison +-Target Values : (list (description "Battle of Tippecanoe")) +-Candidate Entities: William_H._Harrison_(Wyoming_Congressman), Benjamin_Harrison | William_Kelly_Harrison,_Jr., William_B._Harrison | H._C._A._Harrison, William_P._Harrison + +Additional entities + +Method 1 + + William_B._Harrison + + Benjamin_Harrison + +Method 2 + + William_B._Harrison + + Benjamin_Harrison + + + +-------------- + QUESTION: where is the denver broncos stadium located? +-Canonic Entity : denver_broncos +-Target Values : (list (description "Sports Authority Field at Mile High")) +-Candidate Entities: Mile_High_Stadium | Sports_Authority_Field_at_Mile_High | Denver | Boise_State_Broncos | Sports_in_Denver | Stadium_(software), Sonera_Stadium, Panetolikos_Stadium, National_Stadium_(Thailand), Perth_Stadium + +Additional entities + +Method 1 + + Boise_State_Broncos + + Sports_in_Denver + + Denver + +Method 2 + + Boise_State_Broncos + + Sports_in_Denver + + Mile_High_Stadium + + Denver + + Sports_Authority_Field_at_Mile_High + + + +-------------- + QUESTION: where did sir ernest shackleton live? +-Canonic Entity : ernest_shackleton +-Target Values : (list (description "County Kildare")) +-Candidate Entities: Shackleton_(TV_serial) | Ernest_MacMillan | Nicholas_Shackleton, Shackleton_(crater) + +Additional entities + +Method 1 + + Nicholas_Shackleton + + Shackleton_(TV_serial) + +Method 2 + + Shackleton_(crater) + + Shackleton_(TV_serial) + + + +-------------- + QUESTION: what type of music is scott joplin? +-Canonic Entity : scott_joplin_house_state_historic_site +-Target Values : (list (description Piano) (description "Jazz piano")) +-Candidate Entities: Scott_Joplin + +Additional entities + +Method 1 + + Scott_Joplin + +Method 2 + + Scott_Joplin + + + +-------------- + QUESTION: where did the welsh language originate from? +-Canonic Entity : welsh_language +-Target Values : (list (description Celts)) +-Candidate Entities: Old_Welsh, Welsh_people, Cultural_relationship_between_the_Welsh_and_the_English + +Additional entities + +Method 1 + + Old_Welsh + +Method 2 + + Welsh_people + + + +-------------- + QUESTION: who does leia think her father is? +-Canonic Entity : father +-Target Values : (list (description "Bail Organa")) +-Candidate Entities: Princess_Leia, Eilema_leia, Leia_Dongue, The_Courtship_of_Princess_Leia, Peter_de_Leia + +Additional entities + +Method 1 + +Method 2 + + + +-------------- + QUESTION: what languages do people speak in switzerland? +-Canonic Entity : languages_of_switzerland +-Target Values : (list (description "Romansh language") (description "French Language") (description "German Language") (description "Italian Language")) +-Candidate Entities: diff --git a/src/main/resources/data/stop-words_long.txt b/src/main/resources/data/stop-words_long.txt new file mode 100644 index 0000000..fef83ef --- /dev/null +++ b/src/main/resources/data/stop-words_long.txt @@ -0,0 +1,675 @@ +a +able +about +above +abst +accordance +according +accordingly +across +act +actually +added +adj +adopted +affected +affecting +affects +after +afterwards +again +against +ah +all +almost +alone +along +already +also +although +always +am +among +amongst +an +and +announce +another +any +anybody +anyhow +anymore +anyone +anything +anyway +anyways +anywhere +apparently +approximately +are +aren +arent +arise +around +as +aside +ask +asking +at +auth +available +away +awfully +b +back +be +became +because +become +becomes +becoming +been +before +beforehand +begin +beginning +beginnings +begins +behind +being +believe +below +beside +besides +between +beyond +biol +both +brief +briefly +but +by +c +ca +came +can +cannot +can't +cause +causes +certain +certainly +co +com +come +comes +contain +containing +contains +could +couldnt +d +date +did +didn't +different +do +does +doesn't +doing +done +don't +down +downwards +due +during +e +each +ed +edu +effect +eg +eight +eighty +either +else +elsewhere +end +ending +enough +especially +et +et-al +etc +even +ever +every +everybody +everyone +everything +everywhere +ex +except +f +far +few +ff +fifth +first +five +fix +followed +following +follows +for +former +formerly +forth +found +four +from +further +furthermore +g +gave +get +gets +getting +give +given +gives +giving +go +goes +gone +got +gotten +h +had +happens +hardly +has +hasn't +have +haven't +having +he +hed +hence +her +here +hereafter +hereby +herein +heres +hereupon +hers +herself +hes +hi +hid +him +himself +his +hither +home +how +howbeit +however +hundred +i +id +ie +if +i'll +im +immediate +immediately +importance +important +in +inc +indeed +index +information +instead +into +invention +inward +is +isn't +it +itd +it'll +its +itself +i've +j +just +k +keep +keeps +kept +keys +kg +km +know +known +knows +l +largely +last +lately +later +latter +latterly +least +less +lest +let +lets +like +liked +likely +line +little +'ll +look +looking +looks +ltd +m +made +mainly +make +makes +many +may +maybe +me +mean +means +meantime +meanwhile +merely +mg +might +million +miss +ml +more +moreover +most +mostly +mr +mrs +much +mug +must +my +myself +n +na +name +namely +nay +nd +near +nearly +necessarily +necessary +need +needs +neither +never +nevertheless +new +next +nine +ninety +no +nobody +non +none +nonetheless +noone +nor +normally +nos +not +noted +nothing +now +nowhere +o +obtain +obtained +obviously +of +off +often +oh +ok +okay +old +omitted +on +once +one +ones +only +onto +or +ord +other +others +otherwise +ought +our +ours +ourselves +out +outside +over +overall +owing +own +p +page +pages +part +particular +particularly +past +per +perhaps +placed +please +plus +poorly +possible +possibly +potentially +pp +predominantly +present +previously +primarily +probably +promptly +proud +provides +put +q +que +quickly +quite +qv +r +ran +rather +rd +re +readily +really +recent +recently +ref +refs +regarding +regardless +regards +related +relatively +research +respectively +resulted +resulting +results +right +run +s +said +same +saw +say +saying +says +sec +section +see +seeing +seem +seemed +seeming +seems +seen +self +selves +sent +seven +several +shall +she +shed +she'll +shes +should +shouldn't +show +showed +shown +showns +shows +significant +significantly +similar +similarly +since +six +slightly +so +some +somebody +somehow +someone +somethan +something +sometime +sometimes +somewhat +somewhere +soon +sorry +specifically +specified +specify +specifying +state +states +still +stop +strongly +sub +substantially +successfully +such +sufficiently +suggest +sup +sure +t +take +taken +taking +tell +tends +th +than +thank +thanks +thanx +that +that'll +thats +that've +the +their +theirs +them +themselves +then +thence +there +thereafter +thereby +thered +therefore +therein +there'll +thereof +therere +theres +thereto +thereupon +there've +these +they +theyd +they'll +theyre +they've +think +this +those +thou +though +thoughh +thousand +throug +through +throughout +thru +thus +til +tip +to +together +too +took +toward +towards +tried +tries +truly +try +trying +ts +twice +two +u +un +under +unfortunately +unless +unlike +unlikely +until +unto +up +upon +ups +us +use +used +useful +usefully +usefulness +uses +using +usually +v +value +various +'ve +very +via +viz +vol +vols +vs +w +want +wants +was +wasn't +way +we +wed +welcome +we'll +went +were +weren't +we've +what +whatever +what'll +whats +when +whence +whenever +where +whereafter +whereas +whereby +wherein +wheres +whereupon +wherever +whether +which +while +whim +whither +who +whod +whoever +whole +who'll +whom +whomever +whos +whose +why +widely +willing +wish +with +within +without +won't +words +world +would +wouldn't +www +x +y +yes +yet +you +youd +you'll +your +youre +yours +yourself +yourselves +you've +z +zero +reference +references +best +website \ No newline at end of file diff --git a/src/main/resources/data/twitter_en_stopwords.txt b/src/main/resources/data/twitter_en_stopwords.txt new file mode 100755 index 0000000..9cf7329 --- /dev/null +++ b/src/main/resources/data/twitter_en_stopwords.txt @@ -0,0 +1 @@ +rt via ht mt oh \ No newline at end of file diff --git a/src/main/resources/data/webquestionsRelation.json b/src/main/resources/data/webquestionsRelation.json new file mode 100644 index 0000000..8a27c86 --- /dev/null +++ b/src/main/resources/data/webquestionsRelation.json @@ -0,0 +1,801 @@ +[ + {"url": "http://www.freebase.com/view/en/justin_bieber", "targetValue": "(list (description \"Jazmyn Bieber\") (description \"Jaxon Bieber\"))", "utterance": "what is the name of justin bieber brother?", "relations":{"brother":["family","familyMember","siblings","relative"],"name":["name"]}}, + {"url": "http://www.freebase.com/view/en/natalie_portman", "targetValue": "(list (description \"Padm\u00e9 Amidala\"))", "utterance": "what character did natalie portman play in star wars?", "relations":{"character":["character"],"play":["Play"]}}, + {"url": "http://www.freebase.com/view/en/selena_gomez", "targetValue": "(list (description \"New York City\"))", "utterance": "what state does selena gomez?", "relations":{"state":["State","country"]}}, + {"url": "http://www.freebase.com/view/en/grand_bahama", "targetValue": "(list (description Bahamas))", "utterance": "what country is the grand bahama island in?", "relations":{"country":["Country","state"],"what country":["locationCountry"]}}, + {"url": "http://www.freebase.com/view/en/the_bahamas", "targetValue": "(list (description \"Bahamian dollar\"))", "utterance": "what kind of money to take to bahamas?", "relations":{"money":["Currency","local_currency"]}}, + {"url": "http://www.freebase.com/view/en/john_noble", "targetValue": "(list (description \"Denethor II\"))", "utterance": "what character did john noble play in lord of the rings?", "relations":{"character":["characterInPlay","character"],"play":["Play"]}}, + {"url": "http://www.freebase.com/view/en/joakim_noah", "targetValue": "(list (description \"Chicago Bulls\"))", "utterance": "who does joakim noah play for?", "relations":{"play for":["team","careerPoints"],"play":["play"]}}, + {"url": "http://www.freebase.com/view/en/washington_redskins", "targetValue": "(list (description \"Washington Redskins\"))", "utterance": "where are the nfl redskins from?", "relations":{"where are from":["hometown"]}}, + {"url": "http://www.freebase.com/view/en/saki", "targetValue": "(list (description \"United Kingdom\"))", "utterance": "where did saki live?", "relations":{"where did live":["residence","livingPlace"]}}, + {"url": "http://www.freebase.com/view/en/sacha_baron_cohen", "targetValue": "(list (description http://justjared.buzznet.com/2009/01/12/sacha-baron-cohen-insults-madonna-at-golden-globes/))", "utterance": "how old is sacha baron cohen?", "relations":{"how old":["age"]}}, + {"url": "http://www.freebase.com/view/en/poland", "targetValue": "(list (description Germany))", "utterance": "what two countries invaded poland in the beginning of ww2?", "relations":{"countries":["countries"],"ww2":["war"]}}, + {"url": "http://www.freebase.com/view/en/cleveland_ohio", "targetValue": "(list (description \"North American Eastern Time Zone\"))", "utterance": "what time zone am i in cleveland ohio?", "relations":{"time zone":["timeZone"]}}, + {"url": "http://www.freebase.com/view/en/draco_malfoy", "targetValue": "(list (description \"Astoria Greengrass\"))", "utterance": "who did draco malloy end up marrying?", "relations":{"end up marrying":["spouse","spouseName"]}}, + {"url": "http://www.freebase.com/view/en/united_states", "targetValue": "(list (description Canada))", "utterance": "which countries border the us?", "relations":{"countries":["countries"],"border":["border","neighbourRegion"]}}, + {"url": "http://www.freebase.com/view/en/rome", "targetValue": "(list (description Rome))", "utterance": "where is rome italy located on a map?", "relations":{"located":["located"],"map":["map"]}}, + {"url": "http://www.freebase.com/view/en/nina_dobrev", "targetValue": "(list (description Bulgaria))", "utterance": "what is nina dobrev nationality?", "relations":{"nationality":["nationality"]}}, + {"url": "http://www.freebase.com/view/en/iceland", "targetValue": "(list (description Iceland))", "utterance": "what country does iceland belong to?", "relations":{"country":["country"],"belong to":["owner"]}}, + {"url": "http://www.freebase.com/view/en/john_f_kennedy", "targetValue": "(list (description \"John F. Kennedy\"))", "utterance": "which kennedy died first?", "relations":{"died":["Death"]}}, + {"url": "http://www.freebase.com/view/en/beverly_cleary", "targetValue": "(list (description \"Ramona's World\") (description \"Ramona Quimby, Age 8\") (description \"Ralph S. Mouse\") (description \"Runaway Ralph\") (description Ribsy) (description \"Sister of the Bride\") (description \"Ellen Tebbits\") (description \"Dear Mr. Henshaw\") (description \"The Mouse and the Motorcycle\") (description \"Beezus and Ramona\"))", "utterance": "what books did beverly cleary right?", "relations":{"books":["books","titles"]}}, + {"url": "http://www.freebase.com/view/en/philippines", "targetValue": "(list (description \"United States of America\"))", "utterance": "who did the philippines gain independence from?", "relations":{"gain":["achievement"],"independence":["sovereignty"]}}, + {"url": "http://www.freebase.com/view/en/bali", "targetValue": "(list (description \"Ngurah Rai Airport\"))", "utterance": "where to fly into bali?", "relations":{"where to fly":["destination"]}}, + {"url": "http://www.freebase.com/view/en/ethiopia", "targetValue": "(list (description \"Hailemariam Desalegn\"))", "utterance": "who is the prime minister of ethiopia?", "relations":{"prime minister":["primeMinister"]}}, + {"url": "http://www.freebase.com/view/en/sedona", "targetValue": "(list (description \"Sedona Airport\") (description \"Red Rock State Park\") (description \"Seven Canyons\") (description Honanki) (description \"Cathedral Rock\") (description \"Chapel of the Holy Cross\") (description \"Sycamore Canyon\") (description \"Oak Creek Canyon\") (description \"Slide Rock State Park\") (description \"Bell Rock\"))", "utterance": "what to see near sedona arizona?", "relations":{"what to see":["tourists_attraction","touristicSite","attraction"]}}, + {"url": "http://www.freebase.com/view/en/bill_clinton", "targetValue": "(list (description \"Hot Springs High School\"))", "utterance": "what high school did president bill clinton attend?", "relations":{"high school":["highschool","study","school"],"president":["president"]}}, + {"url": "http://www.freebase.com/view/en/russia", "targetValue": "(list (description \"Constitutional republic\"))", "utterance": "what form of government does russia have today?", "relations":{"form of government":["GovernmentType","government","form_of_government"],"government":["government"]}}, + {"url": "http://www.freebase.com/view/en/taylor_lautner", "targetValue": "(list (description Abduction) (description Eclipse) (description \"Valentine's Day\") (description \"The Twilight Saga: Breaking Dawn - Part 1\") (description \"New Moon\"))", "utterance": "what movies does taylor lautner play in?", "relations":{"movies":["movies"],"play":["Play"]}}, + {"url": "http://www.freebase.com/view/en/lebron_james", "targetValue": "(list (description \"2003\u201304 NBA season\"))", "utterance": "what year lebron james came to the nba?", "relations":{"year":["year"],"came to":["approach","careerPoints"]}}, + {"url": "http://www.freebase.com/view/en/german_language", "targetValue": "(list (description \"German Democratic Republic\"))", "utterance": "what did the german revolution lead to?", "relations":{"revolution":["Rebellion"],"lead to":["cause"]}}, + {"url": "http://www.freebase.com/view/en/adriana_lima", "targetValue": "(list (description \"Spike Guys' Choice Awards\"))", "utterance": "how much did adriana lima gain during pregnancy?", "relations":{"how much did gain":["income","salary"]}}, + {"url": "http://www.freebase.com/view/en/thai_language", "targetValue": "(list (description Language))", "utterance": "what does thai mean?", "relations":{"what does mean":["definition"]}}, + {"url": "http://www.freebase.com/view/en/wives_of_henry_viii", "targetValue": "(list (description \"Anne of the Thousand Days\"))", "utterance": "which wife did king henry behead?", "relations":{"wife":["spouse"],"behead":["killedBy"]}}, + {"url": "http://www.freebase.com/view/en/ishmael", "targetValue": "(list (description Hagar))", "utterance": "who was ishmael's mom?", "relations":{"mom":["mother"]}}, + {"url": "http://www.freebase.com/view/en/malcolm_x", "targetValue": "(list (description \"African Americans' rights\") (description \"Black Liberation\"))", "utterance": "what was malcolm x trying to accomplish?", "relations":{"accomplish":["achievement"]}}, + {"url": "http://www.freebase.com/view/en/netherlands", "targetValue": "(list (description \"Kingdom of the Netherlands\"))", "utterance": "where are the netherlands on a world map?", "relations":{"map":["map"],"world":["world"],"where are on a world map":["located","location","locatedInArea"]}}, + {"url": "http://www.freebase.com/view/en/brazil", "targetValue": "(list (description \"Dilma Rousseff\"))", "utterance": "what is the president of brazil?", "relations":{"president":["president"]}}, + {"url": "http://www.freebase.com/view/en/france", "targetValue": "(list (description Paris))", "utterance": "what are the major cities in france?", "relations":{"major cities":["largestCity","biggestCity"]}}, + {"url": "http://www.freebase.com/view/en/esther", "targetValue": "(list (description Susa))", "utterance": "what city did esther live in?", "relations":{"what city live in":["residence","livingPlace"],"city":["city"]}}, + {"url": "http://www.freebase.com/view/en/toronto_maple_leafs", "targetValue": "(list (description \"Ice Hockey\"))", "utterance": "what sport do the toronto maple leafs play?", "relations":{"sport":["sport"],"play":["play"]}}, + {"url": "http://www.freebase.com/view/en/nicholas_ii_of_russia", "targetValue": "(list (description \"Grand Duke Alexander Alexandrovich of Russia\"))", "utterance": "what is saint nicholas known for?", "relations":{"known for":["knownFor"]}}, + {"url": "http://www.freebase.com/view/en/essex", "targetValue": "(list (description \"West Horndon\"))", "utterance": "when is the new series of the only way is essex starting?", "relations":{"series":["series"],"starting":["start"]}}, + {"url": "http://www.freebase.com/view/en/cher", "targetValue": "(list (description \"Elijah Blue Allman\") (description \"Chaz Bono\"))", "utterance": "what is cher's son's name?", "relations":{"son":["child"],"name":["name"]}}, + {"url": "http://www.freebase.com/view/en/martin_cooper", "targetValue": "(list (description Inventor))", "utterance": "what is martin cooper doing now?", "relations":{"what is doing now":["occupation","jobs","careerPoints"]}}, + {"url": "http://www.freebase.com/view/en/andrew_jackson", "targetValue": "(list (description \"Democratic-Republican Party\") (description \"Democratic Party\") (description \"Jacksonian Democratic Party\"))", "utterance": "what party was andrew jackson?", "relations":{"party":["party"]}}, + {"url": "http://www.freebase.com/view/en/medicare", "targetValue": "(list (description \"Centers for Medicare and Medicaid Services\"))", "utterance": "what is medicare a?", "relations":{"what is":["definition"]}}, + {"url": "http://www.freebase.com/view/en/hampton", "targetValue": "(list (description Hampton))", "utterance": "what county is the city of hampton va in?", "relations":{"county":["county"],"city":["city"]}}, + {"url": "http://www.freebase.com/view/en/harry_potter", "targetValue": "(list (description \"Harry Potter and the Philosopher's Stone\"))", "utterance": "what is the name of the first harry potter novel?", "relations":{"novel":["novel"],"name":["name"]}}, + {"url": "http://www.freebase.com/view/en/william_shakespeare", "targetValue": "(list (description Poet) (description Playwright) (description Dramatist) (description Lyricist) (description Author))", "utterance": "what did william shakespeare do for a living?", "relations":{"what di do for a living":["occupation","careerPoints"]}}, + {"url": "http://www.freebase.com/view/en/london_heathrow_airport", "targetValue": "(list (description London))", "utterance": "what county is heathrow airport in?", "relations":{"airport":["Airport"],"county":["county"]}}, + {"url": "http://www.freebase.com/view/en/dmitri_mendeleev", "targetValue": "(list (description \"Saint Petersburg State University\") (description \"Ruprecht Karl University of Heidelberg\"))", "utterance": "where did dmitri mendeleev study science?", "relations":{"study":["study"],"science":["discipline","science"]}}, + {"url": "http://www.freebase.com/view/en/josh_hutcherson", "targetValue": "(list (description \"Cirque du Freak: The Vampire's Assistant\") (description \"The Hunger Games\") (description \"7 Days in Havana\") (description \"Journey to the Center of the Earth\") (description \"The Forger\") (description Detention) (description \"Journey 2: The Mysterious Island\") (description \"Red Dawn\") (description \"The Third Rule\") (description \"The Kids Are All Right\"))", "utterance": "what movie is josh hutcherson in?", "relations":{"movie":["movie","film"]}}, + {"url": "http://www.freebase.com/view/en/laredo", "targetValue": "(list (description \"Veterans Field\") (description \"San Augustin de Laredo Historic District\") (description \"Laredo Energy Arena\") (description \"Lake Casa Blanca\") (description \"Texas A&M International University Soccer Complex\") (description \"Fort McIntosh\") (description \"Southern Careers Institute, Laredo Campus\") (description \"Texas A&M International University\") (description \"Webb County Courthouse\") (description Nye))", "utterance": "what is there to do in laredo tx?", "relations":{"what is there to do":["tourists_attraction","attraction","touristicSite"]}}, + {"url": "http://www.freebase.com/view/en/tony_soprano", "targetValue": "(list (description \"The Sopranos\"))", "utterance": "what season did tony soprano get shot?", "relations":{"season":["season"],"get shot":["murder_method"]}}, + {"url": "http://www.freebase.com/view/en/san_francisco_giants", "targetValue": "(list (description \"AT&T Park\"))", "utterance": "where do the san francisco giants play home games?", "relations":{"play":["Play"],"games":["games"]}}, + {"url": "http://www.freebase.com/view/en/william_jennings_bryan", "targetValue": "(list (description \"1900 Democratic National Convention\") (description \"1908 Democratic National Convention\") (description \"1896 Democratic National Convention\"))", "utterance": "what year did william jennings bryan run for president?", "relations":{"president":["president"],"year":["year"],"run for president":["electionDate"]}}, + {"url": "http://www.freebase.com/view/en/frederick_douglass", "targetValue": "(list (description \"Narrative of the Life of Frederick Douglass, an American Slave\"))", "utterance": "what was the name of frederick douglass book?", "relations":{"book":["book"],"name":["name"]}}, + {"url": "http://www.freebase.com/view/en/victoria_of_the_united_kingdom", "targetValue": "(list (description \"Prince Edward, Duke of Kent and Strathearn\") (description \"Princess Victoria of Saxe-Coburg-Saalfeld\"))", "utterance": "who was queen victoria's parents called?", "relations":{"parents":["parent"],"queen":["monarch"]}}, + {"url": "http://www.freebase.com/view/en/sally_field", "targetValue": "(list (description \"Places in the Heart\") (description Sybil) (description \"Norma Rae\") (description \"A Woman Of Independent Means\") (description \"A Cooler Climate\") (description \"Brothers & Sisters\") (description ER))", "utterance": "what movies did sally field win an oscar for?", "relations":{"movies":["movies"],"win an oscar for":["Award"]}}, + {"url": "http://www.freebase.com/view/en/sherlock_holmes", "targetValue": "(list (description \"A Study in Scarlet\"))", "utterance": "what is the first book sherlock holmes appeared in?", "relations":{"book":["book_character","book"],"appeared in":["show"]}}, + {"url": "http://www.freebase.com/view/en/michael_weston", "targetValue": "(list (description Wishcraft))", "utterance": "what type of car does michael weston drive?", "relations":{"type of car":["automobileModel"],"car":["Automobile"],"type":["type"],"drive":["ride"]}}, + {"url": "http://www.freebase.com/view/en/lena_river", "targetValue": "(list (description \"Baikal Mountains\"))", "utterance": "where does lena river begin and end?", "relations":{"river":["river"],"river begin and end":["riverMouth"]}}, + {"url": "http://www.freebase.com/view/en/portuguese", "targetValue": "(list (description Brazil) (description Canada) (description Angola) (description Portugal) (description Macau) (description \"Cape Verde\") (description Andorra) (description Timor-Leste) (description Guinea-Bissau) (description Mozambique))", "utterance": "what countries do people speak portuguese?", "relations":{"countries":["countries"],"people":["people"]}}, + {"url": "http://www.freebase.com/view/en/pittsburgh", "targetValue": "(list (description \"Allegheny County\"))", "utterance": "where to exchange euros in pittsburgh?", "relations":{"euros":["currency"],"exchange":["change","network"]}}, + {"url": "http://www.freebase.com/view/en/walt_disney", "targetValue": "(list (description \"Diane Disney Miller\") (description \"Sharon Mae Disney\"))", "utterance": "what are the names of walt disney kids?", "relations":{"kids":["child"],"names":["names"]}}, + {"url": "http://www.freebase.com/view/en/bush", "targetValue": "(list (description \"Dave Parsons\") (description \"Gavin Rossdale\") (description \"Sacha Putnam\") (description \"Robin Goodridge\") (description \"Nigel Pulsford\") (description \"Corey Britz\") (description \"Chris Traynor\"))", "utterance": "who is in the band bush?", "relations":{"who is in the band":["bandMember"]}}, + {"url": "http://www.freebase.com/view/en/tupac_shakur", "targetValue": "(list (description Bishop))", "utterance": "what was tupac name in juice?", "relations":{"name":["name"]}}, + {"url": "http://www.freebase.com/view/en/austraila", "targetValue": "(list (description UTC+8))", "utterance": "what timezone is australia gmt?", "relations":{"timezone":["timeZone"]}}, + {"url": "http://www.freebase.com/view/en/maggie_grace", "targetValue": "(list (description Kim))", "utterance": "who does maggie grace play in taken?", "relations":{"play":["Play"]}}, + {"url": "http://www.freebase.com/view/en/louis_armstrong", "targetValue": "(list (description Jazz))", "utterance": "what style of music did louis armstrong play?", "relations":{"style of music":["musicalstyle"],"play":["Play"]}}, + {"url": "http://www.freebase.com/view/en/sydney", "targetValue": "(list (description \"City of Sydney\"))", "utterance": "when is summer in australia sydney?", "relations":{"summer":["climate","season"]}}, + {"url": "http://www.freebase.com/view/en/joey_lawrence", "targetValue": "(list (description Blossom) (description \"Melissa & Joey\") (description Bow) (description \"Gimme a Break!\") (description \"Run of the House\") (description \"Brotherly Love\"))", "utterance": "what tv show did joey lawrence play on?", "relations":{"tv show":["tv_show"],"play":["Play"]}}, + {"url": "http://www.freebase.com/view/en/denver", "targetValue": "(list (description \"Mountain Time Zone\") (description UTC\u221207:00))", "utterance": "what timezone is denver co?", "relations":{"timezone":["timeZone"]}}, + {"url": "http://www.freebase.com/view/en/brian_austin_green", "targetValue": "(list (description \"David Silver\"))", "utterance": "what character did brian austin green play on 90210?", "relations":{"character":["characterInPlay","character"],"play":["Play"]}}, + {"url": "http://www.freebase.com/view/en/jackie_french", "targetValue": "(list (description Australia))", "utterance": "where does jackie french live?", "relations":{"where does live":["residence","livingPlace"]}}, + {"url": "http://www.freebase.com/view/en/sparta", "targetValue": "(list (description Monarchy) (description Diarchy))", "utterance": "what form of government was practiced in sparta?", "relations":{"form of government":["GovernmentType","form_of_government"],"government":["government"]}}, + {"url": "http://www.freebase.com/view/en/colorado_rockies", "targetValue": "(list (description \"2007 National League Championship Series\"))", "utterance": "when did the colorado rockies go to the world series?", "relations":{"world":["world"],"series":["series"]}}, + {"url": "http://www.freebase.com/view/en/peter_parker_spider_man", "targetValue": "(list (description \"Marvel Comics\"))", "utterance": "who was peter parker's first girlfriend?", "relations":{"girlfriend":["date","partner","friend"]}}, + {"url": "http://www.freebase.com/view/en/matt_lauer", "targetValue": "(list (description \"Ohio University\"))", "utterance": "what college did matt lauer attend?", "relations":{"college":["college","study","school"]}}, + {"url": "http://www.freebase.com/view/en/london", "targetValue": "(list (description \"Regent's Park\") (description \"Tower of London\") (description \"Buckingham Palace\") (description \"Palace of Westminster\") (description \"London Eye\") (description \"Tower Bridge\") (description \"Hyde Park\") (description \"Westminster Abbey\") (description \"St Paul's Cathedral\") (description \"Trafalgar Square\"))", "utterance": "where to go in london england?", "relations":{"where to go in london":["touristicSite","tourists_attraction"]}}, + {"url": "http://www.freebase.com/view/en/joan_miro", "targetValue": "(list (description \"Cercle Art\u00edstic de Sant Lluc\"))", "utterance": "what school did joan miro attend?", "relations":{"school":["study","school"]}}, + {"url": "http://www.freebase.com/view/en/france", "targetValue": "(list (description R\u00e9union) (description \"Saint Barth\u00e9lemy\") (description Mayotte) (description \"French Southern and Antarctic Lands\") (description \"New Caledonia\") (description \"Saint Pierre and Miquelon\") (description \"Collectivity of Saint Martin\") (description \"French Polynesia\") (description Martinique) (description Guadeloupe))", "utterance": "where did france colonise?", "relations":{"colonise":["province","territory"]}}, + {"url": "http://www.freebase.com/view/en/vincent_van_gogh", "targetValue": "(list (description \"Jozef Isra\u00ebls\") (description \"Paul C\u00e9zanne\") (description \"Anton Mauve\") (description \"Peter Paul Rubens\") (description \"Jean-Fran\u00e7ois Millet\") (description \"Willem Roelofs\") (description \"Eug\u00e8ne Delacroix\") (description \"Claude Monet\") (description Rembrandt))", "utterance": "who was vincent van gogh inspired by?", "relations":{"inspired":["inspiration","inspired","influenced"]}}, + {"url": "http://www.freebase.com/view/en/jacksonville", "targetValue": "(list (description \"Atlantic Beach\") (description \"Jacksonville Beach\") (description Baldwin) (description \"St. Johns River\") (description \"Masonic Temple\") (description \"Lewis Mausoleum\") (description \"EverBank Field\") (description \"Jacksonville Veterans Memorial Arena\") (description \"Morocco Temple\") (description \"El Modelo Block\"))", "utterance": "where to get married in jacksonville nc?", "relations":{"to get married":["Marriage"]}}, + {"url": "http://www.freebase.com/view/en/michigan", "targetValue": "(list (description \"North American Eastern Time Zone\"))", "utterance": "what time zone am i in michigan?", "relations":{"time zone":["timeZone"]}}, + {"url": "http://www.freebase.com/view/en/new_york_knicks", "targetValue": "(list (description \"1970 NBA Finals\") (description \"1973 NBA Finals\"))", "utterance": "when did the new york knicks win a championship?", "relations":{"win":["achievement"],"championship":["championship"]}}, + {"url": "http://www.freebase.com/view/en/china", "targetValue": "(list (description \"Chinese language\"))", "utterance": "what is the official language of china 2010?", "relations":{"official language":["officialLanguage"]}}, + {"url": "http://www.freebase.com/view/en/woodrow_wilson", "targetValue": "(list (description \"United States Secretary of Agriculture\") (description \"Governor of New Jersey\") (description \"President of the United States\"))", "utterance": "what was woodrow wilson's major accomplishments?", "relations":{"accomplishments":["achievement"]}}, + {"url": "http://www.freebase.com/view/en/jack_daniels", "targetValue": "(list (description Tennessee))", "utterance": "where is jack daniels factory?", "relations":{" factory":["branch","industry"]}}, + {"url": "http://www.freebase.com/view/en/pakistan", "targetValue": "(list (description \"English Language\") (description \"Urdu Language\"))", "utterance": "what language do the speak in pakistan?", "relations":{"language":["Language"]}}, + {"url": "http://www.freebase.com/view/en/santa_clara_university", "targetValue": "(list (description \"United States of America\") (description California) (description \"Santa Clara\"))", "utterance": "where is santa clara university?", "relations":{"university":["university"]}}, + {"url": "http://www.freebase.com/view/en/korea", "targetValue": "(list (description \"North Korea\"))", "utterance": "which part of korea is communist?", "relations":{"communist":["GeopoliticalOrganisation"],"part":["part"]}}, + {"url": "http://www.freebase.com/view/en/timothy_mcveigh", "targetValue": "(list (description \"Terre Haute\"))", "utterance": "where did timothy mcveigh go to prison?", "relations":{"prison":["prison"]}}, + {"url": "http://www.freebase.com/view/en/yangtze_river", "targetValue": "(list (description \"East China Sea\"))", "utterance": "what sea does the yangtze river flow into?", "relations":{"river":["River"],"sea":["Sea"]}}, + {"url": "http://www.freebase.com/view/en/miley_cyrus", "targetValue": "(list (description \"Liam Hemsworth\"))", "utterance": "who miley cyrus engaged to?", "relations":{"engaged":["personal_relationship"]}}, + {"url": "http://www.freebase.com/view/en/charles_darwin", "targetValue": "(list (description Evolution))", "utterance": "what is charles darwin famous for?", "relations":{"famous":["knownFor"]}}, + {"url": "http://www.freebase.com/view/en/roanoke_colony", "targetValue": "(list (description \"Rainbow Bluff Expedition\"))", "utterance": "who founded the roanoke settlement?", "relations":{"founded":["established"],"settlement":["settlement"]}}, + {"url": "http://www.freebase.com/view/en/jamaica", "targetValue": "(list (description \"Jamaican dollar\"))", "utterance": "what kind of money should i take to jamaica?", "relations":{"money":["currency"]}}, + {"url": "http://www.freebase.com/view/en/robert_downey_jr", "targetValue": "(list (description \"Susan Downey\"))", "utterance": "who is robert downey jr wife?", "relations":{"wife":["spouse"]}}, + {"url": "http://www.freebase.com/view/en/new_york_rangers", "targetValue": "(list (description \"Madison Square Garden\"))", "utterance": "where do the ny rangers play?", "relations":{"play":["Play"]}}, + {"url": "http://www.freebase.com/view/en/jefferson_davis", "targetValue": "(list (description \"Hollywood Cemetery\"))", "utterance": "where is jefferson davis buried?", "relations":{"buried":["placeOfBurial"]}}, + {"url": "http://www.freebase.com/view/en/stephenie_meyer", "targetValue": "(list (description \"Woman at Wedding\"))", "utterance": "who does the author stephenie meyer play in the movie twilight?", "relations":{"author":["composer","creator","writer","author"],"play":["play"],"movie":["movie"]}}, + {"url": "http://www.freebase.com/view/en/oscar_pistorius", "targetValue": "(list (description \"2012 Summer Olympics\"))", "utterance": "when will oscar pistorius compete?", "relations":{"compete":["Contest","Play"]}}, + {"url": "http://www.freebase.com/view/en/dallas_cowboys", "targetValue": "(list (description \"Super Bowl XXVIII\") (description \"Super Bowl XXVII\") (description \"Super Bowl VI\") (description \"Super Bowl XXX\") (description \"Super Bowl XII\"))", "utterance": "what years have the dallas cowboys won the superbowl?", "relations":{"won":["achievement","awards"],"years":["years"]}}, + {"url": "http://www.freebase.com/view/en/louis_sachar", "targetValue": "(list (description \"National Book Award for Young People's Literature\") (description \"Anne V. Zarrow Award for Young Readers' Literature\") (description \"Dorothy Canfield Fisher Children's Book Award\") (description \"Newbery Medal\"))", "utterance": "what awards has louis sachar won?", "relations":{"award":["Award"],"won":["achievement"]}}, + {"url": "http://www.freebase.com/view/en/missouri", "targetValue": "(list (description \"Claire McCaskill\"))", "utterance": "who are the current senators from missouri?", "relations":{"senators":["senator"],"current":["current"]}}, + {"url": "http://www.freebase.com/view/en/john_f_kennedy", "targetValue": "(list (description \"Lyndon B. Johnson\"))", "utterance": "who was the president after jfk died?", "relations":{"president":["president"]}}, + {"url": "http://www.freebase.com/view/en/egypt", "targetValue": "(list (description \"Egyptian pound\"))", "utterance": "what is the best currency to take to egypt 2013?", "relations":{"currency":["currency"]}}, + {"url": "http://www.freebase.com/view/en/united_kingdom", "targetValue": "(list (description Wales) (description England) (description Scotland) (description \"Northern Ireland\"))", "utterance": "what are the countries in the united kingdom?", "relations":{"countries":["countries"]}}, + {"url": "http://www.freebase.com/view/en/united_states_navy", "targetValue": "(list (description \"LTV A-7 Corsair II\"))", "utterance": "what planes does the navy have?", "relations":{"planes":["Aircraft"]}}, + {"url": "http://www.freebase.com/view/en/benjamin_franklin", "targetValue": "(list (description Philadelphia))", "utterance": "where did benjamin franklin died?", "relations":{"died":["Death"]}}, + {"url": "http://www.freebase.com/view/en/northern_ireland", "targetValue": "(list (description Antrim))", "utterance": "where to visit in n. ireland?", "relations":{"visit":["touristicSite","tourists_attraction"]}}, + {"url": "http://www.freebase.com/view/en/cancun", "targetValue": "(list (description \"Belize Barrier Reef\") (description \"Ik Kil\") (description \"Isla Contoy\") (description \"Xcaret Park\") (description \"Chichen Itza\") (description \"Xel-Ha Park\") (description \"Sistema Dos Ojos\") (description Coba) (description \"Delphinus Dreams\") (description \"Cancun Underwater Museum\"))", "utterance": "what to do in cancun with family?", "relations":{" family":["family"]}}, + {"url": "http://www.freebase.com/view/en/israel", "targetValue": "(list (description \"Hebrew Language\"))", "utterance": "what is the local language of israel?", "relations":{"Language":["language"],"local language":["officialLanguage"]}}, + {"url": "http://www.freebase.com/view/en/united_states_air_force_academy", "targetValue": "(list (description \"El Paso County\") (description \"United States of America\") (description Colorado) (description \"Colorado Springs\"))", "utterance": "what city and state was the air force academy established?", "relations":{"city":["city"],"state":["state"],"established":["established"]}}, + {"url": "http://www.freebase.com/view/en/puerto_rico", "targetValue": "(list (description \"Puerto Rico men's national volleyball team\") (description \"Puerto Rico women's national volleyball team\") (description \"Puerto Rico national football team\"))", "utterance": "what's the national sport of puerto rico?", "relations":{"sport":["sport"]}}, + {"url": "http://www.freebase.com/view/en/russia", "targetValue": "(list (description \"Russian Orthodox Church\") (description Islam))", "utterance": "what religion are people in russia?", "relations":{"religion":["religion"],"people":["people"]}}, + {"url": "http://www.freebase.com/view/en/shawnee_smith", "targetValue": "(list (description \"The Grudge 3\") (description \"Saw IV\") (description \"Summer School\") (description \"Saw II\") (description \"Saw III\") (description \"The Island\") (description Saw) (description \"The Blob\") (description \"Who's Harry Crumb?\"))", "utterance": "what did shawnee smith play in?", "relations":{"play":["play"],"play in":["playRole"]}}, + {"url": "http://www.freebase.com/view/en/victoria_of_the_united_kingdom", "targetValue": "(list (description \"United Kingdom\"))", "utterance": "what countries did queen victoria reign over?", "relations":{"reign":["reign"],"countries":["countries"],"queen":["monarch"]}}, + {"url": "http://www.freebase.com/view/en/dr_seuss", "targetValue": "(list (description \"Dartmouth College\") (description \"University of Oxford\") (description \"Lincoln College, Oxford\"))", "utterance": "where did dr seuss go to school?", "relations":{"school":["school"]}}, + {"url": "http://www.freebase.com/view/en/luis_suarez", "targetValue": "(list (description \"Liverpool F.C.\"))", "utterance": "what team does luis suarez play for?", "relations":{"team":["team"],"play":["play"]}}, + {"url": "http://www.freebase.com/view/en/spain", "targetValue": "(list (description Peseta))", "utterance": "what are dollars called in spain?", "relations":{"dollars":["currency"]}}, + {"url": "http://www.freebase.com/view/en/meg_griffin", "targetValue": "(list (description \"Mila Kunis\"))", "utterance": "who plays meg in family guy?", "relations":{"family":["family"],"plays":["plays"]}}, + {"url": "http://www.freebase.com/view/en/tim_allen", "targetValue": "(list (description \"Seaholm High School\"))", "utterance": "what high school did tim allen go to?", "relations":{"high school":["highschool"]}}, + {"url": "http://www.freebase.com/view/en/dubai", "targetValue": "(list (description \"Burj Khalifa\"))", "utterance": "what is the world's tallest building in dubai called?", "relations":{"building":["Building"],"tallest building":["leed_registered_building"],"world":["world"]}}, + {"url": "http://www.freebase.com/view/en/asiana_airlines", "targetValue": "(list (description \"John F. Kennedy International Airport\") (description \"Sydney Airport\"))", "utterance": "where does asiana airlines fly to?", "relations":{"fly to":["destination"],"airlines":["Airlines"]}}, + {"url": "http://www.freebase.com/view/en/angelina_jolie", "targetValue": "(list (description \"In the Land of Blood and Honey\") (description \"A Place in Time\"))", "utterance": "what movie did angelina jolie direct?", "relations":{"movie":["movie"],"direct":["conducted"]}}, + {"url": "http://www.freebase.com/view/en/martin_luther_king_jr", "targetValue": "(list (description Memphis))", "utterance": "where did martin luther king got shot?", "relations":{"got shot":["death"]}}, + {"url": "http://www.freebase.com/view/en/bangkok", "targetValue": "(list (description \"MRT Blue Line\") (description \"Wat Benchamabophit\") (description \"Grand Palace\") (description \"Ananta Samakhom Throne Hall\") (description \"Wat Saket\") (description \"Khaosan Road\") (description \"Bangkok National Museum\") (description \"Samutprakarn Crocodile Farm and Zoo\") (description \"Wat Pho\") (description \"Wat Arun\"))", "utterance": "where to visit near bangkok?", "relations":{"visit":["touristicSite","tourists_attraction"]}}, + {"url": "http://www.freebase.com/view/en/christina_milian", "targetValue": "(list (description The-Dream))", "utterance": "who does christina milian have a baby by?", "relations":{"baby":["child"]}}, + {"url": "http://www.freebase.com/view/en/tutankhamun", "targetValue": "(list (description \"Eighteenth Dynasty of Egypt\"))", "utterance": "what year did tut became king?", "relations":{"year":["year"],"king":["monarch"]}}, + {"url": "http://www.freebase.com/view/en/dominican_republic", "targetValue": "(list (description \"Leonel Fern\u00e1ndez\"))", "utterance": "who is the current president of the dominican republic in 2010?", "relations":{"president":["president"],"current":["current"]}}, + {"url": "http://www.freebase.com/view/en/julia_roberts", "targetValue": "(list (description \"Daniel Moder\") (description \"Lyle Lovett\"))", "utterance": "who has been married to julia roberts?", "relations":{"married":["Marriage"]}}, + {"url": "http://www.freebase.com/view/en/baltimore_ravens", "targetValue": "(list (description \"M&T Bank Stadium\"))", "utterance": "where do baltimore ravens play?", "relations":{"play":["play"]}}, + {"url": "http://www.freebase.com/view/en/united_staff", "targetValue": "(list (description \"United Nations Security Council\"))", "utterance": "where does the un get its funding?", "relations":{}}, + {"url": "http://www.freebase.com/view/en/brandon_dubinsky", "targetValue": "(list (description \"New York Rangers\"))", "utterance": "who does brandon dubinsky play for?", "relations":{"play":["Play"]}}, + {"url": "http://www.freebase.com/view/en/taylor_swift", "targetValue": "(list (description \"Harry Styles\"))", "utterance": "who all has dated taylor swift?", "relations":{"dated":["personal_relationship"]}}, + {"url": "http://www.freebase.com/view/en/israel", "targetValue": "(list (description \"Hebrew Language\"))", "utterance": "what is the dominant language in israel?", "relations":{"language":["language"]}}, + {"url": "http://www.freebase.com/view/en/nigeria", "targetValue": "(list (description \"Ibibio Language\") (description \"Efik Language\") (description \"Hausa Language\") (description \"English Language\") (description \"Idoma Language\") (description \"Igbo Language\") (description \"Fula language\") (description \"Naki Language\") (description \"Yoruba Language\") (description \"Izon Language\"))", "utterance": "what are the main languages of nigeria?", "relations":{"language":["language"]}}, + {"url": "http://www.freebase.com/view/en/benjamin_franklin", "targetValue": "(list (description Diplomat) (description Statesman) (description Politician) (description \"Political activist\") (description Author) (description Writer) (description Printer) (description Scientist) (description Librarian) (description Inventor))", "utterance": "what jobs did ben franklin do?", "relations":{"jobs":["jobs","occupation"]}}, + {"url": "http://www.freebase.com/view/en/catholicism", "targetValue": "(list (description \"Book of Nehemiah\") (description \"The Bible\") (description \"New Testament\") (description \"Old Testament\"))", "utterance": "what bible does the catholic church follow?", "relations":{"bible":["book"],"church":["church"],"catholic church":["ChristianDoctrine"]}}, + {"url": "http://www.freebase.com/view/en/lola_bunny", "targetValue": "(list (description \"Britt McKillip\") (description \"Kath Soucie\"))", "utterance": "who plays lola bunny in the looney tunes show?", "relations":{"plays":["plays"],"show":["show"]}}, + {"url": "http://www.freebase.com/view/en/arizona_cardinals", "targetValue": "(list (description \"University of Phoenix Stadium\"))", "utterance": "what stadium did the chicago cardinals play in?", "relations":{" play":["play"],"stadium":["field"]}}, + {"url": "http://www.freebase.com/view/en/rufus_wainwright", "targetValue": "(list (description \"J\u00f6rn Weisbrodt\"))", "utterance": "who did rufus wainwright married?", "relations":{" married":["Marriage"]}}, + {"url": "http://www.freebase.com/view/en/c_s_lewis", "targetValue": "(list (description \"Malvern College\") (description \"Campbell College\") (description \"University of Oxford\") (description \"University College, Oxford\"))", "utterance": "where did c.s. lewis go to college?", "relations":{"college":["college"]}}, + {"url": "http://www.freebase.com/view/en/nick_clegg", "targetValue": "(list (description \"Political philosophy\") (description \"Social anthropology\"))", "utterance": "what did nick clegg study at university?", "relations":{"study":["study"],"university":["university"]}}, + {"url": "http://www.freebase.com/view/en/european_union", "targetValue": "(list (description \"Jerzy Buzek\"))", "utterance": "who is the president of the european union 2011?", "relations":{"president":["president"],"european union":["Communityt"]}}, + {"url": "http://www.freebase.com/view/en/cassie_bernall", "targetValue": "(list (description \"Columbine High School\"))", "utterance": "what school did cassie bernall go to?", "relations":{"school":["school"]}}, + {"url": "http://www.freebase.com/view/en/james_frey", "targetValue": "(list (description \"Sugar: The Fall of the West\") (description \"Kissing a Fool\"))", "utterance": "what movie did james frey write?", "relations":{"movie":["movie"],"write":["writer"]}}, + {"url": "http://www.freebase.com/view/en/rob_kardashian", "targetValue": "(list (description Appendicitis))", "utterance": "what did rob kardashian get surgery for?", "relations":{"surgery":["Disease"]}}, + {"url": "http://www.freebase.com/view/en/gospel_of_matthew", "targetValue": "(list (description \"The Gospel According to Matthew\"))", "utterance": "what did st. matthew do?", "relations":{"do":["occupation"]}}, + {"url": "http://www.freebase.com/view/en/harry_potter", "targetValue": "(list (description \"The gospel according to Harry Potter\"))", "utterance": "when does harry potter come out on dvd deathly hallows 2?", "relations":{"come out":["releaseDate","debut"]}}, + {"url": "http://www.freebase.com/view/en/nelson_mandela", "targetValue": "(list (description Methodism))", "utterance": "what was nelson mandela's religion?", "relations":{"religion":["religion"]}}, + {"url": "http://www.freebase.com/view/en/national_hockey_league", "targetValue": "(list (description Canada))", "utterance": "who will win the 2011 nhl stanley cup?", "relations":{"will win":["winners","achievement","awards"]}}, + {"url": "http://www.freebase.com/view/en/henry_clay", "targetValue": "(list (description Lawyer))", "utterance": "what is henry clay known for?", "relations":{"known for":["knownFor"]}}, + {"url": "http://www.freebase.com/view/en/axl_rose", "targetValue": "(list (description \"Erin Everly\"))", "utterance": "who did axl rose marry?", "relations":{"who did marry":["spouse","Marriage","spouseName"]}}, + {"url": "http://www.freebase.com/view/en/brett_favre", "targetValue": "(list (description \"1995 NFL season\") (description \"1996 NFL season\") (description \"1997 NFL season\"))", "utterance": "what years did brett favre go to the super bowl?", "relations":{"years":["years"]}}, + {"url": "http://www.freebase.com/view/en/spain", "targetValue": "(list (description Euro))", "utterance": "what is the money of spain called?", "relations":{"money":["currency"]}}, + {"url": "http://www.freebase.com/view/en/sunbeam_products", "targetValue": "(list (description Florida))", "utterance": "where are sunbeam microwaves made?", "relations":{"made":["man_made_thing"]}}, + {"url": "http://www.freebase.com/view/en/philippines", "targetValue": "(list (description \"Carlos P. Garcia\") (description \"Corazon Aquino\") (description \"Diosdado Macapagal\") (description \"Gloria Macapagal-Arroyo\") (description \"Fidel V. Ramos\") (description \"Elpidio Quirino\") (description \"Ramon Magsaysay\") (description \"Ferdinand Marcos\") (description \"Sergio Osme\u00f1a\") (description \"Joseph Estrada\"))", "utterance": "who was elected president of the philippines?", "relations":{"president":["president"],"elected":["Election"]}}, + {"url": "http://www.freebase.com/view/en/ryanair", "targetValue": "(list (description Bergamo) (description Derry) (description Oslo) (description Cork) (description Dublin) (description Barcelona) (description Bratislava) (description Nottingham) (description Alicante) (description London) (description Stockholm) (description Carcassonne) (description Faro))", "utterance": "what cities does ryanair fly to?", "relations":{" fly to":["destination"],"cities":["city"]}}, + {"url": "http://www.freebase.com/view/en/oklahoma", "targetValue": "(list (description \"Central Time Zone\") (description UTC\u221206:00))", "utterance": "what time zone is oklahoma state?", "relations":{"time zone":["timeZone"],"state":["state"]}}, + {"url": "http://www.freebase.com/view/en/paul_of_tarsus", "targetValue": "(list (description \"Paul of Tarsus\"))", "utterance": "who was the apostle paul considered to be?", "relations":{"considered to be":["knownFor"]}}, + {"url": "http://www.freebase.com/view/en/ontario", "targetValue": "(list (description \"Canadian dollar\"))", "utterance": "what currency does ontario canada use?", "relations":{"currency":["currency"]}}, + {"url": "http://www.freebase.com/view/en/justin_bieber", "targetValue": "(list (description guitar) (description Piano) (description trumpet) (description Drums))", "utterance": "what instrument does justin bieber?", "relations":{"instrument":["instrument"]}}, + {"url": "http://www.freebase.com/view/en/shaquille_oneal", "targetValue": "(list (description \"Orlando Magic\"))", "utterance": "what team did shaq play for first?", "relations":{"team":["team"],"play":["play"]}}, + {"url": "http://www.freebase.com/view/en/john_f_kennedy", "targetValue": "(list (description Dallas))", "utterance": "where was kennedy when he got shot?", "relations":{ "got shot":["death"]}}, + {"url": "http://www.freebase.com/view/en/derek_fisher", "targetValue": "(list (description \"Los Angeles Lakers\"))", "utterance": "who do derek fisher play for?", "relations":{"play":["play"]}}, + {"url": "http://www.freebase.com/view/en/caylee_anthony_homicide", "targetValue": "(list (description Orlando))", "utterance": "where did the casey anthony case take place?", "relations":{"place":["place"],"take place":["location"]}}, + {"url": "http://www.freebase.com/view/en/bill_clinton", "targetValue": "(list (description \"University College, Oxford\") (description \"Ramble Elementary\") (description \"Yale Law School\") (description \"Hot Springs High School\") (description \"Georgetown University Law Center\") (description \"Edmund A. Walsh School of Foreign Service\") (description \"St. John's Catholic Elementary School\"))", "utterance": "where did pres clinton go to college?", "relations":{"college":["college"]}}, + {"url": "http://www.freebase.com/view/en/seattle", "targetValue": "(list (description \"Seattle Mariners\"))", "utterance": "what was the name of the original seattle baseball team?", "relations":{"name":["name"],"team":["team"]}}, + {"url": "http://www.freebase.com/view/en/charles_cornwallis_1st_marquess_cornwallis", "targetValue": "(list (description \"British Army\"))", "utterance": "who was general cornwallis american revolution?", "relations":{"revolution":["Rebellion"],"general":["militaryBranch"]}}, + {"url": "http://www.freebase.com/view/en/england", "targetValue": "(list (description \"Constitutional monarchy\"))", "utterance": "what type of monarchy did england have?", "relations":{"monarchy":["monarchy"],"type":["Type"]}}, + {"url": "http://www.freebase.com/view/en/texas_rangers", "targetValue": "(list (description 1972))", "utterance": "when were the texas rangers started?", "relations":{" started":["startDateTime","startDate"]}}, + {"url": "http://www.freebase.com/view/en/tennessee_titans", "targetValue": "(list (description \"Tennessee Titans\"))", "utterance": "where did the houston oilers football team go?", "relations":{"football team":["football_team"]}}, + {"url": "http://www.freebase.com/view/en/spanish", "targetValue": "(list (description XHVG-FM))", "utterance": "what do they call football in spanish?", "relations":{"football":["football_game","FootballMatch"]}}, + {"url": "http://www.freebase.com/view/en/pauley_perrette", "targetValue": "(list (description \"Valdosta State University\"))", "utterance": "where did pauley perrette go to college?", "relations":{"college":["study","college"]}}, + {"url": "http://www.freebase.com/view/en/niles_crane", "targetValue": "(list (description Seattle))", "utterance": "where does niles crane live?", "relations":{"where live":["residence","livingPlace"]}}, + {"url": "http://www.freebase.com/view/en/gabriel_faure", "targetValue": "(list (description France))", "utterance": "where was gabriel faure born?", "relations":{"born":["birthPlace"]}}, + {"url": "http://www.freebase.com/view/en/kentucky", "targetValue": "(list (description \"Steve Beshear\"))", "utterance": "who is the governor of kentucky 2012?", "relations":{"governor":["governor"]}}, + {"url": "http://www.freebase.com/view/en/united_states", "targetValue": "(list (description \"Jefferson Sessions\"))", "utterance": "who is the senator of the united states 2010?", "relations":{"senator":["senator"]}}, + {"url": "http://www.freebase.com/view/en/france", "targetValue": "(list (description Normandy))", "utterance": "where did the massive allied invasion of northern france take place in june 1944?", "relations":{" massive allied invasion":["placeOfWorship"],"place":["place"]}}, + {"url": "http://www.freebase.com/view/en/united_kingdom", "targetValue": "(list (description Eurasia) (description \"Western Europe\") (description \"United Kingdom, with Dependencies and Territories\"))", "utterance": "which countries are part of the united kingdom?", "relations":{"countries":["countries"]}}, + {"url": "http://www.freebase.com/view/en/london", "targetValue": "(list (description \"E15 4HT\") (description \"W1F 0HS\") (description \"W11 3JS\") (description \"E5 8BP\") (description \"SW1P 2PD\") (description \"NW1 3HB\") (description \"E6 6ER\") (description W1W5BD) (description \"WC1X 8RA\") (description \"SE1 7JW\"))", "utterance": "what is the postcode for london?", "relations":{"postcode":["postalCode"]}}, + {"url": "http://www.freebase.com/view/en/vincent_chin", "targetValue": "(list (description \"Ronald Ebens\") (description \"Michael Nitz\"))", "utterance": "who killed vincent chin dvd?", "relations":{"killed":["killedBy","Murderer"]}}, + {"url": "http://www.freebase.com/view/en/jules_verne", "targetValue": "(list (description \"Off on a Comet\") (description \"Five Weeks in a Balloon\") (description \"Gil Braltar\") (description \"Paris in the Twentieth Century\") (description \"The Child of the Cavern\") (description \"Tribulations of a Chinaman in China\") (description \"The Mysterious Island\") (description \"The Adventures of Captain Hatteras\") (description \"Facing the Flag\") (description \"The Begum's Fortune\"))", "utterance": "what other books did jules verne wrote?", "relations":{"books":["books"],"wrote":["written_works"]}}, + {"url": "http://www.freebase.com/view/en/brazil", "targetValue": "(list (description \"Brazilian real\"))", "utterance": "what is the currency name of brazil?", "relations":{"currency":["currency"],"name":["name"]}}, + {"url": "http://www.freebase.com/view/en/fiji", "targetValue": "(list (description \"Fiji Hindi\") (description \"English Language\") (description \"Fijian Language\"))", "utterance": "what language does fiji?", "relations":{"language":["language"]}}, + {"url": "http://www.freebase.com/view/en/percy_jackson_the_olympians", "targetValue": "(list (description \"The Sea of Monsters\"))", "utterance": "what is the second percy jackson book called?", "relations":{"book":["book"],"second":["second"]}}, + {"url": "http://www.freebase.com/view/en/gregor_mendel", "targetValue": "(list (description \"Experiments in plant hybridisation\"))", "utterance": "what did gregor mendel conducted his experiments on?", "relations":{"experiment":["experiment"],"conducted":["conducted"]}}, + {"url": "http://www.freebase.com/view/en/jon_gosselin", "targetValue": "(list (description \"Deanna Hummel\"))", "utterance": "who did jon gosselin cheat with?", "relations":{"cheat":["Divorce"]}}, + {"url": "http://www.freebase.com/view/en/mitsubishi", "targetValue": "(list (description Tokyo))", "utterance": "where is mitsubishi headquarters?", "relations":{"headquarters":["corporate_headquarters","headquarter"]}}, + {"url": "http://www.freebase.com/view/en/jay_cutler_1983", "targetValue": "(list (description \"Chicago Bears\"))", "utterance": "where is jay cutler now?", "relations":{"where is jay cutler now":["careerPoints"]}}, + {"url": "http://www.freebase.com/view/en/european_union", "targetValue": "(list (description \"Czech Republic\") (description Estonia) (description Denmark) (description Finland) (description France) (description Austria) (description Germany) (description Belgium) (description Cyprus) (description Bulgaria))", "utterance": "what are eu countries?", "relations":{"countries":["countries"]}}, + {"url": "http://www.freebase.com/view/en/vincent_van_gogh", "targetValue": "(list (description \"Jozef Isra\u00ebls\") (description \"Paul C\u00e9zanne\") (description \"Anton Mauve\") (description \"Peter Paul Rubens\") (description \"Jean-Fran\u00e7ois Millet\") (description \"Willem Roelofs\") (description \"Eug\u00e8ne Delacroix\") (description \"Claude Monet\") (description Rembrandt))", "utterance": "what influenced vincent van gogh work?", "relations":{"influenced":["influenced"],"work":["work"]}}, + {"url": "http://www.freebase.com/view/en/united_states", "targetValue": "(list (description \"North American Eastern Time Zone\") (description UTC\u221206:00) (description \"Mountain Time Zone\") (description \"Hawaii\u2013Aleutian Time Zone\") (description \"Pacific Time Zone\") (description \"Samoa Time Zone\") (description \"Alaska Time Zone\") (description UTC-5) (description \"Atlantic Time Zone\") (description \"Central Time Zone\"))", "utterance": "what time zones are there in the us?", "relations":{"time zones":["timeZone"]}}, + {"url": "http://www.freebase.com/view/en/united_states", "targetValue": "(list (description \"New York\"))", "utterance": "what are the 5 biggest cities in the usa?", "relations":{"biggest cities":["biggestCity"]}}, + {"url": "http://www.freebase.com/view/en/austraila", "targetValue": "(list (description Lojban) (description \"Esperanto Language\") (description \"English Language\"))", "utterance": "what language do australian people speak?", "relations":{"language":["language"],"people":["people"]}}, + {"url": "http://www.freebase.com/view/en/ben_stiller", "targetValue": "(list (description Bernard))", "utterance": "who did ben stiller play in megamind?", "relations":{" play in":["playRole"],"play":["Play"]}}, + {"url": "http://www.freebase.com/view/en/victoria_of_the_united_kingdom", "targetValue": "(list (description \"United Kingdom\") (description \"British Raj\"))", "utterance": "what countries did queen victoria rule?", "relations":{"rule":["reign"],"countries":["countries"],"queen":["monarch"]}}, + {"url": "http://www.freebase.com/view/en/betty_white", "targetValue": "(list (description \"Tess Curtis Cachikis\") (description \"Horace Lawrence White\"))", "utterance": "who are betty white's parents?", "relations":{"parents":["parent","father","mother"]}}, + {"url": "http://www.freebase.com/view/en/jeff_dunham", "targetValue": "(list (description \"Baylor University\"))", "utterance": "where did jeff dunham go to school?", "relations":{"school":["School","study"]}}, + {"url": "http://www.freebase.com/view/en/kevjumba", "targetValue": "(list (description \"University of California, Davis\"))", "utterance": "what college did kevjumba?", "relations":{"college":["college","study"]}}, + {"url": "http://www.freebase.com/view/en/david_james", "targetValue": "(list (description \"Bristol City F.C.\"))", "utterance": "who does david james play for 2011?", "relations":{"play for":["careerPoints"],"play":["Play"]}}, + {"url": "http://www.freebase.com/view/en/tonkin", "targetValue": "(list (description \"Yen Bai mutiny\"))", "utterance": "what was the purpose of the 1964 gulf of tonkin resolution?", "relations":{"purpose":["purpose"],"resolution":["resolution"]}}, + {"url": "http://www.freebase.com/view/en/diana_ross", "targetValue": "(list (description \"The Wiz\"))", "utterance": "what movies did diana ross play in?", "relations":{"movies":["movies"],"play":["Play"]}}, + {"url": "http://www.freebase.com/view/en/minneapolis", "targetValue": "(list (description 55406) (description 55407) (description 55409) (description 55408) (description 55410) (description 55411) (description 55405) (description 55403) (description 55402) (description 55401))", "utterance": "what is the zip code for minneapolis?", "relations":{" zip code":["zipCode"]}}, + {"url": "http://www.freebase.com/view/en/west_bank", "targetValue": "(list (description \"Palestinian National Authority\"))", "utterance": "what country is the west bank located in?", "relations":{"located":["located"],"country":["country"]}}, + {"url": "http://www.freebase.com/view/en/european_golden_boot", "targetValue": "(list (description \"Lionel Messi\"))", "utterance": "who won golden boot?", "relations":{"won":["awards","winners","achievement"]}}, + {"url": "http://www.freebase.com/view/en/jayne_mansfield", "targetValue": "(list (description Slidell))", "utterance": "where did jane mansfield die?", "relations":{"die":["deathPlace","death"]}}, + {"url": "http://www.freebase.com/view/en/river_thames", "targetValue": "(list (description London))", "utterance": "where is the thames river located?", "relations":{"located":["located"],"river":["river"]}}, + {"url": "http://www.freebase.com/view/en/stanley_cup", "targetValue": "(list (description \"2012 Stanley Cup Finals\"))", "utterance": "when did kings last win stanley cup?", "relations":{"win":["achievement","awards"]}}, + {"url": "http://www.freebase.com/view/en/william_shakespeare", "targetValue": "(list (description \"King Edward VI School, Stratford-upon-Avon\"))", "utterance": "what school did william shakespeare attend?", "relations":{"school":["school","study"]}}, + {"url": "http://www.freebase.com/view/en/chile", "targetValue": "(list (description \"Chilean peso\"))", "utterance": "what money do they use in chile?", "relations":{"money":["currency"]}}, + {"url": "http://www.freebase.com/view/en/peyton_manning", "targetValue": "(list (description \"University of Tennessee\"))", "utterance": "what college did peyton manning?", "relations":{"college":["college","study"]}}, + {"url": "http://www.freebase.com/view/en/national_football_league", "targetValue": "(list (description \"National Football Conference\") (description \"NFL Films\") (description \"American Football Conference\"))", "utterance": "what are the 2 conferences in the nfl?", "relations":{"conferences":["conference"]}}, + {"url": "http://www.freebase.com/view/en/jlo", "targetValue": "(list (description \"In Living Color (Season 4)\"))", "utterance": "when did jennifer lopez start on in living color?", "relations":{"start":["start"]}}, + {"url": "http://www.freebase.com/view/en/portland", "targetValue": "(list (description \"Zora Lancaster\"))", "utterance": "when is portland marathon?", "relations":{"marathon":["athletics_marathon"]}}, + {"url": "http://www.freebase.com/view/en/ellen_degeneres", "targetValue": "(list (description Dory))", "utterance": "what character does ellen play in finding nemo?", "relations":{"character":["character"],"play":["Play"]}}, + {"url": "http://www.freebase.com/view/en/new_york_giants", "targetValue": "(list (description \"Super Bowl XXV\"))", "utterance": "when was the last time the ny giants were in the super bowl?", "relations":{"time":["time"]}}, + {"url": "http://www.freebase.com/view/en/harry_potter", "targetValue": "(list (description \"Harry Potter and the Half-Blood Prince\") (description \"Harry Potter and the Deathly Hallows\") (description \"Harry Potter and the Goblet of Fire\") (description \"Harry Potter and the Philosopher's Stone\") (description \"Harry Potter and the Chamber of Secrets\") (description \"Harry Potter and the Order of the Phoenix\") (description \"Harry Potter and the Prisoner of Azkaban\"))", "utterance": "what are all the names of harry potter?", "relations":{"names":["names"]}}, + {"url": "http://www.freebase.com/view/en/nick_cannon", "targetValue": "(list (description \"The Nightlife\") (description \"Up All Night\") (description \"Soul Train\") (description \"All That\") (description \"Short Circuitz\") (description \"Wild 'n Out\") (description \"The Nick Cannon Show\") (description \"Mash Up\") (description \"America's Got Talent\"))", "utterance": "what does nick cannon play in?", "relations":{"play":["Play"]}}, + {"url": "http://www.freebase.com/view/en/brazil", "targetValue": "(list (description \"Constitutional republic\") (description \"Presidential system\") (description \"Federal republic\"))", "utterance": "what sort of government does brazil have?", "relations":{"government":["government"],"sort of government":["form_of_government","GovernmentType"]}}, + {"url": "http://www.freebase.com/view/en/milan_italy", "targetValue": "(list (description \"Il Caravaggio International Airport\") (description \"Malpensa Airport\") (description \"Linate Airport\"))", "utterance": "which airport is best to fly into milan?", "relations":{"to fly":["destination","travel_destination"],"airport":["Airport"]}}, + {"url": "http://www.freebase.com/view/en/matthias_jakob_schleiden", "targetValue": "(list (description \"Ruprecht Karl University of Heidelberg\"))", "utterance": "where did matthias schleiden go to school?", "relations":{"school":["school","study"]}}, + {"url": "http://www.freebase.com/view/en/riannah", "targetValue": "(list (description \"Saint Michael Parish\") (description Barbados))", "utterance": "what county is rihanna from?", "relations":{"county":["county"]}}, + {"url": "http://www.freebase.com/view/en/daddy_yankee", "targetValue": "(list (description Gunshot))", "utterance": "what happened to daddy yankee?", "relations":{"what happened to daddy yankee":["causeOfDeath","event"]}}, + {"url": "http://www.freebase.com/view/en/balkans", "targetValue": "(list (description \"Lake Prespa\") (description Kosovo) (description \"Republic of Macedonia\") (description Montenegro) (description Macedonia) (description \"Kingdom of Serbia\") (description Albania) (description \"Federal Republic of Yugoslavia\") (description \"Small Prespa Lake\") (description \"Republic of Serbian Krajina Government in Exile\"))", "utterance": "what country is located in the balkan peninsula?", "relations":{"country":["country"],"located":["located"]}}, + {"url": "http://www.freebase.com/view/en/south_dakota", "targetValue": "(list (description Iowa) (description \"North Dakota\") (description Wyoming) (description Minnesota) (description Nebraska) (description Montana))", "utterance": "what 6 states border south dakota?", "relations":{"states":["countries","state"],"border":["border"]}}, + {"url": "http://www.freebase.com/view/en/spain", "targetValue": "(list (description \"Spanish Language\"))", "utterance": "what are the main languages spoken in spain?", "relations":{"languages":["language"],"main languages":["officialLanguage"],"spoken in":["spokenIn"]}}, + {"url": "http://www.freebase.com/view/en/wolfgang_amadeus_mozart", "targetValue": "(list (description \"1034 Mozartia\"))", "utterance": "what songs did mozart write?", "relations":{"songs":["songs"],"write":["written_works"]}}, + {"url": "http://www.freebase.com/view/en/thai_language", "targetValue": "(list (description \"Tai\u2013Kadai languages\"))", "utterance": "what language do they speak in thai?", "relations":{"language":["language","officialLanguage"]}}, + {"url": "http://www.freebase.com/view/en/montana", "targetValue": "(list (description \"Jon Tester\"))", "utterance": "who is the new senator of montana?", "relations":{"senator":["senator"]}}, + {"url": "http://www.freebase.com/view/en/rome", "targetValue": "(list (description \"Ciampino \u2013 G.B. Pastine International Airport\") (description \"Rome Viterbo Airport\") (description \"Italian Met Office Airport\") (description \"Leonardo da Vinci\u2013Fiumicino Airport\") (description \"Urbe Airport\"))", "utterance": "which airport to fly in rome?", "relations":{"to fly":["destination","travel_destination"],"airport":["Airport"]}}, + {"url": "http://www.freebase.com/view/en/pompeii", "targetValue": "(list (description \"Pompeii and the Roman Villa: Art and Culture around the Bay of Naples\"))", "utterance": "where are the ruins of pompeii?", "relations":{"where are the ruins":["location","located"]}}, + {"url": "http://www.freebase.com/view/en/afghanistan", "targetValue": "(list (description \"Pashto language\") (description \"Farsi, Eastern Language\"))", "utterance": "what language people speak in afghanistan?", "relations":{"language":["language"],"people":["people"]}}, + {"url": "http://www.freebase.com/view/en/brazil", "targetValue": "(list (description \"Brazilian Portuguese\") (description \"Portuguese Language\") (description \"Italian Language\"))", "utterance": "what language do people speak in brazil wikipedia?", "relations":{"language":["language"],"people":["people"]}}, + {"url": "http://www.freebase.com/view/en/california", "targetValue": "(list (description \"Colusa County\") (description \"San Bernardino County\") (description \"Contra Costa County\") (description \"El Dorado County\") (description \"Alameda County\") (description \"Calaveras County\") (description \"Del Norte County\") (description \"Alpine County\") (description \"Amador County\") (description \"Rancho Cucamonga\"))", "utterance": "what cities should i visit in california?", "relations":{"cities":["city"],"visit":["touristicSite","tourists_attraction"]}}, + {"url": "http://www.freebase.com/view/en/princess_leia_organa", "targetValue": "(list (description \"Polis Massa\"))", "utterance": "where was princess leia raised?", "relations":{"princess":["sovereignty"],"raised":["livingPlace","hometown","birthPlace"]}}, + {"url": "http://www.freebase.com/view/en/pittsburgh_steelers", "targetValue": "(list (description \"Mike Tomlin\"))", "utterance": "what is the name of the pittsburgh steelers head coach?", "relations":{"coach":["coach"],"head":["head"],"name":["name"]}}, + {"url": "http://www.freebase.com/view/en/canada", "targetValue": "(list (description \"\u00c9milie Heymans\") (description \"Blythe Hartley\"))", "utterance": "when does canada's wonderland close?", "relations":{"close":["dateClosed"]}}, + {"url": "http://www.freebase.com/view/en/minneapolis_lakers", "targetValue": "(list (description \"1985 NBA Finals\") (description \"1948 NBL Finals\") (description \"1954 NBA Finals\") (description \"1972 NBA Finals\") (description \"1949 BAA Finals\") (description \"1952 NBA Finals\") (description \"1980 NBA Finals\") (description \"1950 NBA Finals\") (description \"1953 NBA Finals\") (description \"1982 NBA Finals\"))", "utterance": "when did the lakers win the championship?", "relations":{"win":["achievement","awards"],"championship":["championship"]}}, + {"url": "http://www.freebase.com/view/en/san_francisco", "targetValue": "(list (description \"1906 San Francisco earthquake\"))", "utterance": "what year was the great san francisco fire?", "relations":{"year":["year"],"fire":["fire"]}}, + {"url": "http://www.freebase.com/view/en/france", "targetValue": "(list (description Italy) (description Monaco) (description Luxembourg) (description Andorra) (description Switzerland) (description Germany) (description \"Bay of Biscay\") (description Belgium) (description Piedmont) (description Spain))", "utterance": "what countries share borders with france?", "relations":{"borders":["border","neighbourRegion"],"countries":["countries"]}}, + {"url": "http://www.freebase.com/view/en/patrick_swayze", "targetValue": "(list (description \"She's Like The Wind\"))", "utterance": "what did patrick swayze sing?", "relations":{"sing":["song","music"]}}, + {"url": "http://www.freebase.com/view/en/salvador_dali", "targetValue": "(list (description Painting) (description Photography) (description Sculpture) (description Drawing))", "utterance": "what style of art is salvador dali?", "relations":{"style":["style"],"art":["art"]}}, + {"url": "http://www.freebase.com/view/en/leonardo_da_vinci", "targetValue": "(list (description Vinci))", "utterance": "what city was leonardo da vinci from?", "relations":{"city":["city"]}}, + {"url": "http://www.freebase.com/view/en/george_v_of_the_united_kingdom", "targetValue": "(list (description Euthanasia))", "utterance": "what did george v die of?", "relations":{"die of":["causeOfDeath"]}}, + {"url": "http://www.freebase.com/view/en/south_america", "targetValue": "(list (description \"Yisrael Mordecai Safeek\"))", "utterance": "what are the three major rivers in south america?", "relations":{" rivers":["river"]}}, + {"url": "http://www.freebase.com/view/en/isaac_newton", "targetValue": "(list (description \"Reflecting telescope\"))", "utterance": "what other discoveries did isaac newton discover?", "relations":{"discover":["discovered"],"discoveries":["discovery"]}}, + {"url": "http://www.freebase.com/view/en/pixar", "targetValue": "(list (description \"Edwin Catmull\") (description \"Steve Jobs\"))", "utterance": "who started pixar?", "relations":{"started":["knownFor"]}}, + {"url": "http://www.freebase.com/view/en/tamera_mowry", "targetValue": "(list (description \"Darlene Mowry\") (description \"Timothy Mowry\"))", "utterance": "who is tia and tamera mowry parents?", "relations":{"parents":["father","mother","parent"]}}, + {"url": "http://www.freebase.com/view/en/abraham_lincoln", "targetValue": "(list (description \"Illinois Republican Party\") (description \"Republican Party\") (description \"National Union Party\") (description \"Whig Party\"))", "utterance": "what political party was lincoln?", "relations":{"political party":["PoliticalParty"]}}, + {"url": "http://www.freebase.com/view/en/germany", "targetValue": "(list (description de))", "utterance": "what would have happened if germany had won ww1?", "relations":{"ww1":["war"],"won":["winners"]}}, + {"url": "http://www.freebase.com/view/en/china", "targetValue": "(list (description \"Single-party state\") (description \"Communist state\") (description \"Socialist state\"))", "utterance": "what kind of government is china?", "relations":{"government":["government"],"kind of government":["GovernmentType","form_of_government"]}}, + {"url": "http://www.freebase.com/view/en/greece", "targetValue": "(list (description Europe) (description Eurasia) (description \"Southeast Europe\"))", "utterance": "where is the nation of greece located?", "relations":{"located":["located"],"nation":["nation"]}}, + {"url": "http://www.freebase.com/view/en/mexico", "targetValue": "(list (description \"Pacific Ocean\") (description \"Gulf of California\") (description \"Contiguous United States\") (description \"Caribbean Sea\") (description \"United States of America\") (description \"Gulf of Mexico\") (description Guatemala) (description California) (description \"Sea of Cort\u00e9z\") (description Belize))", "utterance": "what three countries does mexico border?", "relations":{"border":["border","neighbourRegion"],"countries":["countries"]}}, + {"url": "http://www.freebase.com/view/en/new_york", "targetValue": "(list (description \"New York City blackout of 1977\"))", "utterance": "what year was the new york blackout?", "relations":{"year":["year"],"blackout":["Event"]}}, + {"url": "http://www.freebase.com/view/en/english", "targetValue": "(list (description Canada) (description Australia) (description \"Kingdom of Great Britain\") (description \"United States of America\") (description \"United Kingdom\") (description Ireland) (description \"New Zealand\"))", "utterance": "which countries have english as native language?", "relations":{"language":["language"],"native language":["officialLanguage","originalLanguage"],"countries":["countries"]}}, + {"url": "http://www.freebase.com/view/en/rafael_furcal", "targetValue": "(list (description \"Second baseman\") (description Shortstop))", "utterance": "what position does rafael furcal play?", "relations":{"position":["position"],"play":["Play"]}}, + {"url": "http://www.freebase.com/view/en/united_states", "targetValue": "(list (description \"Pharmaceutical Preparations\") (description Food) (description \"Industrial Organic Chemicals, NEC\") (description Automobile))", "utterance": "what are major exports of the usa?", "relations":{"exports":["industry","business"]}}, + {"url": "http://www.freebase.com/view/en/kellie_martin", "targetValue": "(list (description \"A Pup Named Scooby-Doo\") (description \"Crisis Center\") (description \"Father Murphy\") (description \"Life Goes On\") (description Christy))", "utterance": "what shows did kellie martin star in?", "relations":{"shows":["shows"],"star in":["Play","starring"]}}, + {"url": "http://www.freebase.com/view/en/riannah", "targetValue": "(list (description \"Saint Michael Parish\") (description Barbados))", "utterance": "where did rihanna grow up?", "relations":{"grow up":["birthPlace","hometown"]}}, + {"url": "http://www.freebase.com/view/en/whistler", "targetValue": "(list (description \"British Columbia\"))", "utterance": "where is whistler mountain located?", "relations":{"located":["located"],"mountain":["Mountain"]}}, + {"url": "http://www.freebase.com/view/en/cuba", "targetValue": "(list (description \"Cuban peso\") (description \"Cuban convertible peso\"))", "utterance": "what currency do i need in cuba?", "relations":{"currency":["currency"]}}, + {"url": "http://www.freebase.com/view/en/james_cook", "targetValue": "(list (description \"Kingdom of Great Britain\"))", "utterance": "what country did james cook come from?", "relations":{"country":["country"],"come from":["hometown"]}}, + {"url": "http://www.freebase.com/view/en/julia_roberts", "targetValue": "(list (description \"Daniel Moder\"))", "utterance": "who is julia roberts married to 2012?", "relations":{"married to":["spouse"]}}, + {"url": "http://www.freebase.com/view/en/rebecca_adlington", "targetValue": "(list (description Swimming))", "utterance": "what sport does rebecca adlington compete in?", "relations":{"sport":["Sport"],"compete":["Play"]}}, + {"url": "http://www.freebase.com/view/en/christchurch", "targetValue": "(list (description \"2011 Christchurch earthquake\"))", "utterance": "when did the christchurch quake happened?", "relations":{"quake":["earthquake"]}}, + {"url": "http://www.freebase.com/view/en/canada", "targetValue": "(list (description \"United Kingdom\") (description Japan) (description \"United States of America\"))", "utterance": "what other countries does canada trade with?", "relations":{"trade":["industry","business"],"countries":["countries"]}}, + {"url": "http://www.freebase.com/view/en/singapore", "targetValue": "(list (description \"Kampung Days\") (description \"Tiger Sky Tower\") (description \"Singapore Zoo\") (description \"Telok Ayer Market\") (description \"Former Saint Joseph's Institution\") (description \"Armenian Church, Singapore\") (description \"Singapore Flyer\") (description \"Kong Meng San Phor Kark See Monastery\") (description \"Sri Mariamman Temple, Singapore\") (description \"Jurong BirdPark\"))", "utterance": "what to see in singapore at night?", "relations":{"what to see":["tourist_attraction","attraction"]}}, + {"url": "http://www.freebase.com/view/en/julia_wainwright_capwell", "targetValue": "(list (description \"Nancy Lee Grahn\"))", "utterance": "who played mason capwell?", "relations":{"played":["Play","starring"]}}, + {"url": "http://www.freebase.com/view/en/james_madison", "targetValue": "(list (description \"President of the United States\"))", "utterance": "what is james madison most famous for?", "relations":{"famous for":["knownFor"]}}, + {"url": "http://www.freebase.com/view/en/maccabees", "targetValue": "(list (description \"Seleucid Empire\"))", "utterance": "who did the maccabees revolted against?", "relations":{"revolted against":["enemy"]}}, + {"url": "http://www.freebase.com/view/en/antietam_creek", "targetValue": "(list (description Pennsylvania) (description Maryland))", "utterance": "where was the battle of antietam creek?", "relations":{"battle":["battle"]}}, + {"url": "http://www.freebase.com/view/en/abraham_lincoln", "targetValue": "(list (description \"American Civil War\"))", "utterance": "during what war did abraham lincoln serve as president?", "relations":{"president":["president"],"war":["war"]}}, + {"url": "http://www.freebase.com/view/en/william_shakespeare", "targetValue": "(list (description \"John Shakespeare\") (description \"Mary Shakespeare\"))", "utterance": "who are shakespeare's parents names?", "relations":{"parents":["father","mother","parent"],"names":["names"]}}, + {"url": "http://www.freebase.com/view/en/shakira", "targetValue": "(list (description Colombia))", "utterance": "where is she from shakira?", "relations":{"where is she from":["birthPlace","hometown"]}}, + {"url": "http://www.freebase.com/view/en/james_t_kirk", "targetValue": "(list (description \"Chris Pine\"))", "utterance": "who plays captain kirk in 2009?", "relations":{"plays":["plays"]}}, + {"url": "http://www.freebase.com/view/en/hera", "targetValue": "(list (description Zeus))", "utterance": "who did hera marry?", "relations":{"who did marry":["spouse","Marriage","spouseName"]}}, + {"url": "http://www.freebase.com/view/en/kirk_hammett", "targetValue": "(list (description guitar) (description Sitar) (description \"Bass guitar\"))", "utterance": "what type of guitar does kirk hammett play?", "relations":{"type of guitar":["type_instrument"],"type":["type"],"play":["Play"]}}, + {"url": "http://www.freebase.com/view/en/philippines", "targetValue": "(list (description \"Filipino language\") (description \"English Language\"))", "utterance": "what language they speak in the philippines?", "relations":{"language":["language"]}}, + {"url": "http://www.freebase.com/view/en/kakadu_national_park", "targetValue": "(list (description \"Northern Territory\"))", "utterance": "where is the kakadu national park located?", "relations":{"located":["located"],"national park":["national_park"]}}, + {"url": "http://www.freebase.com/view/en/denver", "targetValue": "(list (description \"Black American West Museum & Heritage Center\") (description \"Denver Firefighters Museum\") (description \"Colorado State Capitol\") (description \"Denver Mint\") (description \"Molly Brown House\") (description \"Forney Transportation Museum\") (description \"Denver Botanic Gardens\") (description \"Museum of Contemporary Art Denver\") (description \"Denver Museum of Nature and Science\") (description \"Chamberlin Observatory\"))", "utterance": "what to do with kids in denver today?", "relations":{"what to do":["tourist_attraction","attraction"],"kids":["child"]}}, + {"url": "http://www.freebase.com/view/en/jamaica", "targetValue": "(list (description \"Jamaican dollar\"))", "utterance": "what money does jamaica use?", "relations":{"money":["currency"]}}, + {"url": "http://www.freebase.com/view/en/william_mckinley", "targetValue": "(list (description 1897))", "utterance": "what year did william mckinley became president?", "relations":{"president":["president"],"year":["year"]}}, + {"url": "http://www.freebase.com/view/en/john_f_kennedy", "targetValue": "(list (description 1/3/1947))", "utterance": "what date did kennedy become president?", "relations":{"president":["president"],"date":["date"],"become president":["electionDateLeader"]}}, + {"url": "http://www.freebase.com/view/en/colorado", "targetValue": "(list (description \"Mountain Time Zone\") (description UTC\u221207:00))", "utterance": "what timezone is colorado in right now?", "relations":{"timezone":["timeZone"]}}, + {"url": "http://www.freebase.com/view/en/aston_martin", "targetValue": "(list (description \"David Richards\"))", "utterance": "who owns aston martin 2012?", "relations":{"owns":["owns"],"who owns":["owner"]}}, + {"url": "http://www.freebase.com/view/en/jack_osbourne", "targetValue": "(list (description \"Multiple sclerosis\"))", "utterance": "what disease has jack osbourne got?", "relations":{" disease":["Disease"]}}, + {"url": "http://www.freebase.com/view/en/islam", "targetValue": "(list (description Muslims))", "utterance": "what do the islamic believe?", "relations":{"believe":["religion"]}}, + {"url": "http://www.freebase.com/view/en/david_beckham", "targetValue": "(list (description \"Paris Saint-Germain F.C.\"))", "utterance": "who will david beckham play for in 2013?", "relations":{"play":["Play"],"play for":["careerPoints"]}}, + {"url": "http://www.freebase.com/view/en/chinese_taipei", "targetValue": "(list (description \"Standard Mandarin\"))", "utterance": "what language they speak in taiwan?", "relations":{"language":["language"]}}, + {"url": "http://www.freebase.com/view/en/toronto_maple_leafs", "targetValue": "(list (description \"Maple Leaf Sports & Entertainment\"))", "utterance": "who owns the toronto maple leafs?", "relations":{"owns":["owns"],"who owns":["owner"]}}, + {"url": "http://www.freebase.com/view/en/novato", "targetValue": "(list (description \"Marin County\"))", "utterance": "what county is novato california in?", "relations":{"county":["county"]}}, + {"url": "http://www.freebase.com/view/en/sikhism", "targetValue": "(list (description Sa\u1e43s\u0101ra) (description Dharma) (description Reincarnation) (description Monotheism) (description Karma) (description Pyaar))", "utterance": "what are the basic beliefs of sikhism?", "relations":{"beliefs":["religion"]}}, + {"url": "http://www.freebase.com/view/en/hernan_cortes", "targetValue": "(list (description \"Castilleja de la Cuesta\"))", "utterance": "where did hernando cortez die?", "relations":{"where did die":["deathPlace"]}}, + {"url": "http://www.freebase.com/view/en/elizabeth_taylor", "targetValue": "(list (description \"Richard Burton\"))", "utterance": "who was liz taylor married too?", "relations":{"married to":["spouse","spouseName"]}}, + {"url": "http://www.freebase.com/view/en/mesopotamia", "targetValue": "(list (description \"Middle East\"))", "utterance": "where was the ancient region of mesopotamia?", "relations":{"ancient":["antique_time_period"],"region":["Region"]}}, + {"url": "http://www.freebase.com/view/en/brandi_glanville", "targetValue": "(list (description \"Eddie Cibrian\"))", "utterance": "who was real housewives brandi married to?", "relations":{"married":["spouse","spouseName","Marriage"]}}, + {"url": "http://www.freebase.com/view/en/charlotte_bobcats", "targetValue": "(list (description \"2004 NBA Draft\"))", "utterance": "when did the charlotte bobcats first play in the nba?", "relations":{"play":["Play"]}}, + {"url": "http://www.freebase.com/view/en/adolf_hitler", "targetValue": "(list (description \"Mein Kampf\"))", "utterance": "what's the book hitler wrote in prison?", "relations":{"book":["book","title"],"prison":["Prison"]}}, + {"url": "http://www.freebase.com/view/en/ottoman_empire", "targetValue": "(list (description \"Near East\"))", "utterance": "where is the ottoman empire located?", "relations":{"located":["located"],"empire":["empire"]}}, + {"url": "http://www.freebase.com/view/en/olympic_games", "targetValue": "(list (description \"Olympic games\"))", "utterance": "which city held the summer olympics twice?", "relations":{"city":["city"],"olympics":["Olympics"]}}, + {"url": "http://www.freebase.com/view/en/green_bay_packers", "targetValue": "(list (description \"Green Bay Packers Board of Directors\"))", "utterance": "who are the green bay packers owned by?", "relations":{"owned by":["owner","owns"]}}, + {"url": "http://www.freebase.com/view/en/langston_hughes", "targetValue": "(list (description \"Walt Whitman\"))", "utterance": "what inspired langston hughes to write poetry?", "relations":{"poetry":["poetry"],"inspired":["inspiration","influenced","inspired"]}}, + {"url": "http://www.freebase.com/view/en/switzerland", "targetValue": "(list (description \"Romansh language\") (description \"French Language\") (description \"German Language\") (description \"Italian Language\"))", "utterance": "what languages are there in switzerland?", "relations":{"languages":["language"]}}, + {"url": "http://www.freebase.com/view/en/baltimore_orioles", "targetValue": "(list (description \"1983 World Series\"))", "utterance": "when was the last time the orioles had a winning season?", "relations":{"time":["time"],"had a winning season":["awards"],"season":["season"]}}, + {"url": "http://www.freebase.com/view/en/austraila", "targetValue": "(list (description Energy) (description Agriculture))", "utterance": "what does australia export?", "relations":{"export":["industry","business"]}}, + {"url": "http://www.freebase.com/view/en/henry_knox", "targetValue": "(list (description Thomaston))", "utterance": "where did henry knox die?", "relations":{"die":["death"],"where did die":["deathPlace"]}}, + {"url": "http://www.freebase.com/view/en/iceni", "targetValue": "(list (description Boudica))", "utterance": "who was the queen of the iceni tribe?", "relations":{"queen":["reign","monarch"]}}, + {"url": "http://www.freebase.com/view/en/islam", "targetValue": "(list (description Muhammad))", "utterance": "what is the name of the first prophet of islam?", "relations":{"prophet of islam":["religion"],"name":["name"]}}, + {"url": "http://www.freebase.com/view/en/garry_trudeau", "targetValue": "(list (description \"Jane Pauley\"))", "utterance": "who is married to garry trudeau?", "relations":{"married":["spouse","Marriage"]}}, + {"url": "http://www.freebase.com/view/en/norway", "targetValue": "(list (description \"Barents Euro-Arctic Council\"))", "utterance": "where does norway get their oil?", "relations":{"get their oil":["industry","resource"]}}, + {"url": "http://www.freebase.com/view/en/northern_ireland", "targetValue": "(list (description Irish) (description \"English Language\") (description \"Ulster Scots dialects\"))", "utterance": "what language do they speak in northern ireland?", "relations":{"language":["language"]}}, + {"url": "http://www.freebase.com/view/en/europe", "targetValue": "(list (description \"United Kingdom\") (description Albania) (description Finland) (description \"San Marino\") (description France) (description Andorra) (description Liechtenstein) (description Georgia) (description Germany) (description Belgium))", "utterance": "what countries make up continental europe?", "relations":{"continental europe":["member"],"continental":["Continent"],"countries":["countries"]}}, + {"url": "http://www.freebase.com/view/en/abrahamic_religion", "targetValue": "(list (description Monotheism))", "utterance": "what do abrahamic religions have in common?", "relations":{"religions":["religion"],"common":["common"]}}, + {"url": "http://www.freebase.com/view/en/johnny_crawford", "targetValue": "(list (description \"Judy Loves Me\") (description \"Your Nose Is Gonna Grow\") (description Rumors) (description Rumours) (description Daydreams) (description \"Maybe It's You\") (description \"Cindy's Gonna Cry\") (description \"Cindy's Birthday\") (description \"Patti Ann\"))", "utterance": "what did johnny crawford sing?", "relations":{"sing":["music","singles"]}}, + {"url": "http://www.freebase.com/view/en/abraham_lincoln", "targetValue": "(list (description Statesman) (description Politician) (description Lawyer))", "utterance": "what did abraham lincoln do before he was president?", "relations":{"president":["president"]}}, + {"url": "http://www.freebase.com/view/en/sally_mclellan", "targetValue": "(list (description \"Track and field athlete\"))", "utterance": "what sport does sally pearson compete in?", "relations":{" sport":["Sport"],"compete":["Play"]}}, + {"url": "http://www.freebase.com/view/en/atlanta_texas", "targetValue": "(list (description \"Cass County\"))", "utterance": "where is atlanta texas located?", "relations":{"located":["located"]}}, + {"url": "http://www.freebase.com/view/en/elton_john", "targetValue": "(list (description \"Renate Blauel\"))", "utterance": "who did elton john marry first?", "relations":{"who did marry":["spouse","Marriage","spouseName"]}}, + {"url": "http://www.freebase.com/view/en/tom_cruise", "targetValue": "(list (description Syracuse))", "utterance": "where is tom cruise from?", "relations":{"where is from":["birthPlace","hometown"]}}, + {"url": "http://www.freebase.com/view/en/madonna", "targetValue": "(list (description \"Shadows and Fog\") (description \"A League of Their Own\") (description Evita) (description \"Four Rooms\") (description \"Arthur and the Invisibles\") (description \"Dangerous Game\") (description \"Dick Tracy\") (description \"A Certain Sacrifice\") (description \"Who's That Girl?\") (description \"Body of Evidence\"))", "utterance": "what movies did madonna appear in?", "relations":{"movies":["movies"],"appear":["show"]}}, + {"url": "http://www.freebase.com/view/en/leland_chapman", "targetValue": "(list (description Kailua))", "utterance": "where does leland chapman live now?", "relations":{"where live":["livingPlace","residence"]}}, + {"url": "http://www.freebase.com/view/en/roman_empire", "targetValue": "(list (description Rome))", "utterance": "where was the roman colosseum located?", "relations":{"located":["located"]}}, + {"url": "http://www.freebase.com/view/en/abraham_lincoln", "targetValue": "(list (description \"Abraham Lincoln 1861 presidential inauguration\"))", "utterance": "what date was abraham lincoln inaugurated?", "relations":{"inaugurated":["introduced"],"date":["date"]}}, + {"url": "http://www.freebase.com/view/en/henry_ford", "targetValue": "(list (description \"Ford Motor Company\"))", "utterance": "what invention did henry ford invent?", "relations":{"invention":["invention"]}}, + {"url": "http://www.freebase.com/view/en/new_york", "targetValue": "(list (description \"North American Eastern Time Zone\"))", "utterance": "what time zone is new york under?", "relations":{" time zone":["timeZone"]}}, + {"url": "http://www.freebase.com/view/en/maya_civilization", "targetValue": "(list (description 2012))", "utterance": "when did mayans predict end of the world?", "relations":{"end of the world":["followingEvent","event"],"world":["world"],"predict":["forecast"]}}, + {"url": "http://www.freebase.com/view/en/adolf_hitler", "targetValue": "(list (description \"Mein Kampf\"))", "utterance": "what is the name of the book hitler wrote while in prison?", "relations":{"book":["book","title"],"name":["name"],"prison":["Prison"]}}, + {"url": "http://www.freebase.com/view/en/meg_griffin", "targetValue": "(list (description \"Mila Kunis\"))", "utterance": "who voiced meg in the pilot?", "relations":{"who voiced":["characterInPlay","character"]}}, + {"url": "http://www.freebase.com/view/en/albert_einstein", "targetValue": "(list (description Mathematician))", "utterance": "what albert einstein do for math?", "relations":{"math":["mathematics"]}}, + {"url": "http://www.freebase.com/view/en/bashar_al-assad", "targetValue": "(list (description \"University of Damascus\"))", "utterance": "where did bashar al assad study?", "relations":{"study":["study"]}}, + {"url": "http://www.freebase.com/view/en/lois_lane", "targetValue": "(list (description \"Kate Bosworth\"))", "utterance": "who plays lois lane in superman returns?", "relations":{"plays":["plays"]}}, + {"url": "http://www.freebase.com/view/en/joseph_lister_1st_baron_lister", "targetValue": "(list (description Listerine))", "utterance": "what did joseph lister do for science?", "relations":{"do for science":["knownFor"],"science":["science"]}}, + {"url": "http://www.freebase.com/view/en/stewie_griffin", "targetValue": "(list (description \"Seth MacFarlane\"))", "utterance": "who is the voice of stewie griffin from family guy?", "relations":{"who is the voice":["characterInPlay","character"],"voice":["voice"]}}, + {"url": "http://www.freebase.com/view/en/king_james_version_of_the_bible", "targetValue": "(list (description Christianity))", "utterance": "who uses new king james bible?", "relations":{"bible":["ChristianDoctrine"]}}, + {"url": "http://www.freebase.com/view/en/charlie_chaplin", "targetValue": "(list (description \"A King in New York\"))", "utterance": "what films did charlie chaplin direct?", "relations":{"films":["Films"]}}, + {"url": "http://www.freebase.com/view/en/lea_michele", "targetValue": "(list (description \"Cory Monteith\"))", "utterance": "who does lea michele dating in real life?", "relations":{"dating":["partner","relation","date"]}}, + {"url": "http://www.freebase.com/view/en/joe_walsh", "targetValue": "(list (description 1980))", "utterance": "when did joe walsh leave the eagles?", "relations":{"leave":["endDate"]}}, + {"url": "http://www.freebase.com/view/en/annie", "targetValue": "(list (description \"Annie (1977 original Broadway cast)\"))", "utterance": "when was the musical annie written?", "relations":{"musical":["Musical"]}}, + {"url": "http://www.freebase.com/view/en/london", "targetValue": "(list (description \"Regent's Park\") (description \"Tower of London\") (description \"Buckingham Palace\") (description \"Palace of Westminster\") (description \"London Eye\") (description \"Tower Bridge\") (description \"Hyde Park\") (description \"Westminster Abbey\") (description \"St Paul's Cathedral\") (description \"Trafalgar Square\"))", "utterance": "what should you see in london?", "relations":{"see in":["tourist_attraction","touristicSite"]}}, + {"url": "http://www.freebase.com/view/en/billy_beane", "targetValue": "(list (description \"Oakland Athletics\"))", "utterance": "who does billy beane work for now?", "relations":{"work":["work"],"work for":["careerPoints"]}}, + {"url": "http://www.freebase.com/view/en/j_j_thomson", "targetValue": "(list (description Electron))", "utterance": "what subatomic particles did jj thomson discover?", "relations":{"discover":["knownFor","discovered"]}}, + {"url": "http://www.freebase.com/view/en/taylor_lautner", "targetValue": "(list (description \"New Moon\") (description \"He's a Bully, Charlie Brown\") (description Eclipse) (description \"Cheaper by the Dozen 2\") (description Incarceron) (description \"The Adventures of Sharkboy and Lavagirl\") (description \"Dear Eleanor\") (description Abduction) (description \"Shadow Fury\") (description \"Field of Dreams 2: Lockout\"))", "utterance": "what films have taylor lautner been in?", "relations":{"films":["Films"],"been in":["Play"]}}, + {"url": "http://www.freebase.com/view/en/darth_vader", "targetValue": "(list (description \"Shmi Skywalker\"))", "utterance": "who were anakin skywalker's parents?", "relations":{"parents":["mother","father","parent"]}}, + {"url": "http://www.freebase.com/view/en/natalie", "targetValue": "(list (description \"United States of America\"))", "utterance": "what country is the name natalie from?", "relations":{"name":["name"],"country":["country"]}}, + {"url": "http://www.freebase.com/view/en/aladdin_1992", "targetValue": "(list (description \"Scott Weinger\"))", "utterance": "who played the voice of aladdin?", "relations":{"who played the voice":["characterInPlay","character"],"voice":["voice"]}}, + {"url": "http://www.freebase.com/view/en/dale_earnhardt", "targetValue": "(list (description \"Traffic collision\"))", "utterance": "what exactly did dale earnhardt die from?", "relations":{"die from":["diseases","Disease","causeOfDeath"]}}, + {"url": "http://www.freebase.com/view/en/miami_heat", "targetValue": "(list (description \"2012 NBA Finals\") (description \"2006 NBA Finals\"))", "utterance": "what year did miami heat win the championship?", "relations":{"year":["year"],"championship":["championship"]}}, + {"url": "http://www.freebase.com/view/en/benito_mussolini", "targetValue": "(list (description Dictator))", "utterance": "what kind of government did benito mussolini have?", "relations":{"government":["government"],"kind of government":["form_of_government","GovernmentType"]}}, + {"url": "http://www.freebase.com/view/en/diocletian", "targetValue": "(list (description \"Roman emperor\"))", "utterance": "who was emperor diocletian?", "relations":{"emperor":["monarch"]}}, + {"url": "http://www.freebase.com/view/en/chelsea_staub", "targetValue": "(list (description Singer))", "utterance": "who is chelsea kane?", "relations":{"who is":["knownFor","description"]}}, + {"url": "http://www.freebase.com/view/en/charles_darwin", "targetValue": "(list (description Naturalist))", "utterance": "who is darwin and what is his theory?", "relations":{"who is darwin":["knownFor","description"],"theory":["theory"]}}, + {"url": "http://www.freebase.com/view/en/barack_obama", "targetValue": "(list (description \"Political Science\"))", "utterance": "what did obama study in school?", "relations":{"study":["study"],"school":["school"]}}, + {"url": "http://www.freebase.com/view/en/deion_sanders", "targetValue": "(list (description \"Cincinnati Reds\") (description \"Atlanta Braves\") (description \"San Francisco Giants\") (description \"New York Yankees\"))", "utterance": "where did deion sanders play baseball?", "relations":{" play":["Play"],"baseball":["BaseballTeam"]}}, + {"url": "http://www.freebase.com/view/en/oregon", "targetValue": "(list (description \"John Kitzhaber\"))", "utterance": "who is the new governor of oregon?", "relations":{"governor":["Governor"]}}, + {"url": "http://www.freebase.com/view/en/south_africa", "targetValue": "(list (description Africa))", "utterance": "what continent is south africa part of?", "relations":{"continent":["Continent"],"part of":["member"]}}, + {"url": "http://www.freebase.com/view/en/michael_jackson", "targetValue": "(list (description \"Elizabeth Taylor\") (description \"Al Sharpton\") (description \"Uri Geller\") (description \"Brooke Shields\") (description \"Elton John\"))", "utterance": "who was michael jackson's best friend?", "relations":{"friend":["friend"]}}, + {"url": "http://www.freebase.com/view/en/taylor_lautner", "targetValue": "(list (description \"New Moon\") (description Eclipse) (description \"The Twilight Saga\") (description Abduction) (description Twilight) (description \"The Twilight Saga: Breaking Dawn - Part 2\"))", "utterance": "what movies has taylor lautner been in 2011?", "relations":{"movies":["movies"]}}, + {"url": "http://www.freebase.com/view/en/austraila", "targetValue": "(list (description Canberra))", "utterance": "where does the australian prime minister reside?", "relations":{"reside":["residence","livingPlace"],"prime minister":["primeMinister"]}}, + {"url": "http://www.freebase.com/view/en/kate_winslet", "targetValue": "(list (description \"The Reader\"))", "utterance": "what did kate winslet get an oscar for?", "relations":{"get an oscar for":["achievement","awards"]}}, + {"url": "http://www.freebase.com/view/en/henry_ford", "targetValue": "(list (description \"Ford Motor Company\"))", "utterance": "what company did henry ford work for?", "relations":{"work":["Work"],"company":["Company"],"work for":["careerPoints"]}}, + {"url": "http://www.freebase.com/view/en/thomas_cromwell_1st_earl_of_essex", "targetValue": "(list (description \"Gregory Cromwell, 1st Baron Cromwell\"))", "utterance": "what happened to thomas cromwell's children?", "relations":{"children":["child"]}}, + {"url": "http://www.freebase.com/view/en/indian_ocean", "targetValue": "(list (description \"South Asia\"))", "utterance": "where indian ocean is located?", "relations":{"located":["location"],"ocean":["Ocean"]}}, + {"url": "http://www.freebase.com/view/en/united_states_navy", "targetValue": "(list (description \"William J. Fallon\"))", "utterance": "what year was the navy chief established?", "relations":{"year":["year"],"established":["established"]}}, + {"url": "http://www.freebase.com/view/en/baltimore_orioles", "targetValue": "(list (description \"1970 World Series\"))", "utterance": "what year did the orioles win 100 games?", "relations":{"win":["achievement","awards"],"year":["year"]}}, + {"url": "http://www.freebase.com/view/en/our_lady_of_penafrancia", "targetValue": "(list (description \"Saint Anne\"))", "utterance": "who was mary's mother?", "relations":{"mother":["mother"]}}, + {"url": "http://www.freebase.com/view/en/american_express", "targetValue": "(list (description \"New York City\") (description Wilmington))", "utterance": "where is american express located?", "relations":{"located":["located"]}}, + {"url": "http://www.freebase.com/view/en/china", "targetValue": "(list (description Renminbi))", "utterance": "what is the china money called?", "relations":{"money":["currency"]}}, + {"url": "http://www.freebase.com/view/en/spain", "targetValue": "(list (description \"Constitutional monarchy\"))", "utterance": "what is the government of spain today?", "relations":{"government":["government"]}}, + {"url": "http://www.freebase.com/view/en/howard_university", "targetValue": "(list (description \"United States of America\") (description \"Washington, D.C.\"))", "utterance": "where is the howard university located?", "relations":{"located":["located"],"university":["university"]}}, + {"url": "http://www.freebase.com/view/en/terrell_owens", "targetValue": "(list (description \"Philadelphia Eagles\"))", "utterance": "where did terrell owens get traded to?", "relations":{"get traded to":["careerPoints"],"traded":["business"]}}, + {"url": "http://www.freebase.com/view/en/catholicism", "targetValue": "(list (description God) (description \"Holy Spirit\") (description \"The Father\") (description \"Jesus Christ\"))", "utterance": "what do catholics call their god?", "relations":{"call":["name"]}}, + {"url": "http://www.freebase.com/view/en/alaska", "targetValue": "(list (description Juneau))", "utterance": "what is the capital of alaska state?", "relations":{"capital":["capital"],"state":["state","country"]}}, + {"url": "http://www.freebase.com/view/en/soviet_union", "targetValue": "(list (description \"Soviet democracy\") (description \"Single-party state\") (description \"Communist state\") (description \"Socialist state\"))", "utterance": "what was the soviet union?", "relations":{"soviet union":["GeopoliticalOrganisation","PoliticalConcept"]}}, + {"url": "http://www.freebase.com/view/en/jeff_corwin", "targetValue": "(list (description \"Bridgewater State College\"))", "utterance": "what college did jeff corwin go to?", "relations":{"college":["college","study"]}}, + {"url": "http://www.freebase.com/view/en/persian_language", "targetValue": "(list (description Canada) (description Afghanistan) (description Iran) (description Oman) (description Uzbekistan) (description Bahrain) (description Iraq) (description Tajikistan))", "utterance": "who speaks farsi?", "relations":{"who speaks":["language","officialLanguage"]}}, + {"url": "http://www.freebase.com/view/en/neptune", "targetValue": "(list (description \"John Couch Adams\") (description \"Dr Galle\") (description \"Urbain Le Verrier\") (description \"Heinrich Louis d'Arrest\") (description \"Johann Gottfried Galle\"))", "utterance": "who was neptune discovered by?", "relations":{"discovered by":["discovered_by"]}}, + {"url": "http://www.freebase.com/view/en/russia", "targetValue": "(list (description Uzbekistan))", "utterance": "who were the major trade partners of russia?", "relations":{"major trade partners":["partnership"],"trade":["industry","business"]}}, + {"url": "http://www.freebase.com/view/en/corey_haim", "targetValue": "(list (description Pneumonia) (description \"Drug overdose\"))", "utterance": "what did corey haim really die of?", "relations":{"die of":["causeOfDeath"]}}, + {"url": "http://www.freebase.com/view/en/pavlova", "targetValue": "(list (description \"New Zealand cuisine\"))", "utterance": "where did pavlova originate?", "relations":{"originate":["origin","birthPlace","hometown"]}}, + {"url": "http://www.freebase.com/view/en/nathaniel_hawthorne", "targetValue": "(list (description Plymouth))", "utterance": "where did nathaniel hawthorne die?", "relations":{"where did die":["deathPlace"],"die":["death"]}}, + {"url": "http://www.freebase.com/view/en/jack_johnson", "targetValue": "(list (description \"Kahuku High & Intermediate School\"))", "utterance": "where did jack johnson go to high school?", "relations":{"high school":["highschool","study"]}}, + {"url": "http://www.freebase.com/view/en/maxie_jones", "targetValue": "(list (description \"Kirsten Storms\"))", "utterance": "who played maxie jones on general hospital?", "relations":{"played":["characterInPlay","character","starring"]}}, + {"url": "http://www.freebase.com/view/en/edgar_allan_poe", "targetValue": "(list (description \"United States Military Academy\"))", "utterance": "what military school did poe attend?", "relations":{"school":["school","study"]}}, + {"url": "http://www.freebase.com/view/en/buddhism", "targetValue": "(list (description \u0100gama))", "utterance": "what are buddhist gods?", "relations":{"buddhist":["religion"],"gods":["divinity"]}}, + {"url": "http://www.freebase.com/view/en/wolfgang_amadeus_mozart", "targetValue": "(list (description \"Carl Philipp Emanuel Bach\") (description \"Johann Sebastian Bach\") (description \"George Frideric Handel\") (description \"Joseph Haydn\") (description \"Michael Haydn\"))", "utterance": "who influenced wolfgang amadeus mozart?", "relations":{"influenced":["influenced","influencedBy"]}}, + {"url": "http://www.freebase.com/view/en/dallas_cowboys", "targetValue": "(list (description \"Super Bowl XXX\"))", "utterance": "when was the last dallas cowboys super bowl win?", "relations":{"win":["achievement","awards"]}}, + {"url": "http://www.freebase.com/view/en/iceland", "targetValue": "(list (description \"Icelandic Language\"))", "utterance": "what language do they speak in iceland wikipedia?", "relations":{"language":["language"]}}, + {"url": "http://www.freebase.com/view/en/kateri_tekakwitha", "targetValue": "(list (description 1656))", "utterance": "when was blessed kateri born?", "relations":{"born":["birthDate"]}}, + {"url": "http://www.freebase.com/view/en/bali", "targetValue": "(list (description \"2002 Bali bombings\"))", "utterance": "when did the bali bombings occur?", "relations":{"occur":["eventDate","Event","date"]}}, + {"url": "http://www.freebase.com/view/en/south_africa", "targetValue": "(list (description \"Parliamentary republic\"))", "utterance": "what is the political system in south africa?", "relations":{"political system":["PoliticalConcept","political_convention"],"system":["system"]}}, + {"url": "http://www.freebase.com/view/en/croatia", "targetValue": "(list (description \"Croatian kuna\"))", "utterance": "what is the currency in croatia 2012?", "relations":{"currency":["currency"]}}, + {"url": "http://www.freebase.com/view/en/joe_montana", "targetValue": "(list (description \"Ringgold High School\"))", "utterance": "where did joe montana go to high school?", "relations":{"high school":["highschool","study"]}}, + {"url": "http://www.freebase.com/view/en/supreme_court_of_the_united_states", "targetValue": "(list (description \"The Supreme Court\"))", "utterance": "what cases does the supreme court have original jurisdiction over?", "relations":{"supreme court":["authorityTitle"],"jurisdiction":["jurisdiction"]}}, + {"url": "http://www.freebase.com/view/en/palestine", "targetValue": "(list (description Eurasia) (description \"Near East\") (description \"Middle East\") (description Levant) (description \"Eastern Mediterranean\"))", "utterance": "where is the nation of palestine?", "relations":{"nation":["nation"]}}, + {"url": "http://www.freebase.com/view/en/titan", "targetValue": "(list (description Titanium))", "utterance": "what are the greek titans?", "relations":{"what are":["team","description"]}}, + {"url": "http://www.freebase.com/view/en/english", "targetValue": "(list (description Canada) (description Australia) (description \"Kingdom of Great Britain\") (description \"United States of America\") (description \"United Kingdom\") (description Ireland) (description \"New Zealand\"))", "utterance": "what countries speak english primarily?", "relations":{"countries":["countries"],"speak english":["language"]}}, + {"url": "http://www.freebase.com/view/en/missouri_river", "targetValue": "(list (description \"South Dakota\") (description Iowa) (description \"North Dakota\") (description Kansas) (description Illinois) (description Nebraska) (description Montana) (description Missouri))", "utterance": "what states does the missouri river touch?", "relations":{"states":["countries","state"],"river":["river"]}}, + {"url": "http://www.freebase.com/view/en/liverpool", "targetValue": "(list (description \"New Pleasureland Southport\") (description \"World Museum Liverpool\") (description \"251 Menlove Avenue\") (description \"Walker Art Gallery\") (description \"The Oratory\") (description \"St George's Hall, Liverpool\") (description \"Merseyside Maritime Museum\") (description \"Liverpool Cathedral\") (description \"Royal Liver Building\") (description \"Bluecoat Chambers\"))", "utterance": "what is in liverpool england?", "relations":{"what is in":["tourist_attraction","attraction","touristicSite"]}}, + {"url": "http://www.freebase.com/view/en/harvard_college", "targetValue": "(list (description Massachusetts))", "utterance": "what state is harvard college located?", "relations":{"located":["located"],"college":["college"],"state":["state","country"]}}, + {"url": "http://www.freebase.com/view/en/leonardo_da_vinci", "targetValue": "(list (description Amboise))", "utterance": "where was leonardo da vinci when he died?", "relations":{"died":["deathPlace"]}}, + {"url": "http://www.freebase.com/view/en/japan", "targetValue": "(list (description \"Japanese yen\"))", "utterance": "what money do japanese use?", "relations":{"money":["currency"]}}, + {"url": "http://www.freebase.com/view/en/oklahoma_city", "targetValue": "(list (description \"Central Time Zone\"))", "utterance": "what is the time zone in oklahoma city?", "relations":{"time zone":["timeZone"],"city":["city"]}}, + {"url": "http://www.freebase.com/view/en/whitney_houston", "targetValue": "(list (description Drowning) (description \"Coronary artery disease\") (description \"Cocaine overdose\"))", "utterance": "what killed whitney houston?", "relations":{"what killed":["causeOfDeath"]}}, + {"url": "http://www.freebase.com/view/en/mali", "targetValue": "(list (description Republic))", "utterance": "what kind of government did the mali empire have?", "relations":{"government":["government"],"kind of government":["form_of_government","form_of_government"]}}, + {"url": "http://www.freebase.com/view/en/israel", "targetValue": "(list (description Judaism))", "utterance": "what is the religion of israel people?", "relations":{"religion":["religion"],"people":["people"]}}, + {"url": "http://www.freebase.com/view/en/mount_st_helens", "targetValue": "(list (description Stratovolcano) (description Volcano))", "utterance": "what is mount st helens?", "relations":{"what is":["definition","description"]}}, + {"url": "http://www.freebase.com/view/en/saint_lucia", "targetValue": "(list (description \"George F. L. Charles Airport\"))", "utterance": "what airport is closest to sandals grande in st lucia?", "relations":{" airport":["Airport"]}}, + {"url": "http://www.freebase.com/view/en/united_states", "targetValue": "(list (description Canada))", "utterance": "which country is north of the usa?", "relations":{"country":["country"]}}, + {"url": "http://www.freebase.com/view/en/gordon_hayward", "targetValue": "(list (description \"Utah Jazz\"))", "utterance": "where does drew gordon play?", "relations":{"play":["Play"]}}, + {"url": "http://www.freebase.com/view/en/russia", "targetValue": "(list (description \"Dmitry Medvedev\"))", "utterance": "who was the first russian president?", "relations":{"president":["president"]}}, + {"url": "http://www.freebase.com/view/en/netherlands", "targetValue": "(list (description \"Frisian languages\") (description \"West Flemish\") (description \"Dutch Language\"))", "utterance": "what language does people in netherlands speak?", "relations":{"language":["language"],"people":["people"]}}, + {"url": "http://www.freebase.com/view/en/china", "targetValue": "(list (description \"Nepali Language\") (description \"Standard Tibetan\") (description \"Chinese language\") (description \"Zhuang languages\") (description \"Korean Language\") (description \"English Language\") (description \"Esperanto Language\") (description \"Mongolian language\") (description \"Portuguese Language\") (description Cantonese))", "utterance": "what type of language does china speak?", "relations":{"language":["language"],"type":["type"]}}, + {"url": "http://www.freebase.com/view/en/french", "targetValue": "(list (description France))", "utterance": "what countries around the world speak french?", "relations":{"countries":["countries"],"world":["world"]}}, + {"url": "http://www.freebase.com/view/en/esther_hicks", "targetValue": "(list (description Writer) (description Author))", "utterance": "who is esther hicks?", "relations":{"who is":["knownFor"]}}, + {"url": "http://www.freebase.com/view/en/michael_vick", "targetValue": "(list (description \"American football player\"))", "utterance": "what does michael vick do?", "relations":{"who is":["knownFor","occupation"]}}, + {"url": "http://www.freebase.com/view/en/johannesburg", "targetValue": "(list (description Gauteng))", "utterance": "in which province is johannesburg?", "relations":{"province":["province"]}}, + {"url": "http://www.freebase.com/view/en/john_lennon", "targetValue": "(list (description \"New York City\"))", "utterance": "where was john lennon standing when he was shot?", "relations":{"shot":["deathPlace"]}}, + {"url": "http://www.freebase.com/view/en/atlantic_city_new_jersey", "targetValue": "(list (description \"World War I Memorial\"))", "utterance": "what time do atlantic city bars close?", "relations":{"time":["time"],"city":["city"]}}, + {"url": "http://www.freebase.com/view/en/al_gore", "targetValue": "(list (description Tennessee))", "utterance": "what state did al gore represent?", "relations":{"represent":["knownFor"],"state":["state"]}}, + {"url": "http://www.freebase.com/view/en/darth_vader", "targetValue": "(list (description \"Hayden Christensen\"))", "utterance": "who voiced darth vader in revenge of the sith?", "relations":{"voiced":["characterInPlay","VoiceActor"]}}, + {"url": "http://www.freebase.com/view/en/henri_matisse", "targetValue": "(list (description Sculpture) (description Printmaking) (description Collage) (description Painting) (description Drawing))", "utterance": "what type of art is henri matisse famous for?", "relations":{"famous for":["knownFor"],"type":["type"]}}, + {"url": "http://www.freebase.com/view/en/laughlin", "targetValue": "(list (description \"Riverside Resort Hotel & Casino\") (description \"Harrah's Laughlin\") (description \"Edgewater Hotel and Casino\"))", "utterance": "what to do in laughlin nevada?", "relations":{"what to do in":["tourist_attraction","attraction","touristicSite"]}}, + {"url": "http://www.freebase.com/view/en/padme_amidala", "targetValue": "(list (description \"Catherine Taber\"))", "utterance": "who plays princess padme in star wars?", "relations":{"plays":["plays"]}}, + {"url": "http://www.freebase.com/view/en/andorra", "targetValue": "(list (description \"Ordino-Arcalis Ski Area\"))", "utterance": "where to ski in andorra reviews?", "relations":{"where to ski":["SkiResort","tourist_attraction"]}}, + {"url": "http://www.freebase.com/view/en/louis_riel", "targetValue": "(list (description Politician))", "utterance": "who was louis riel?", "relations":{"who was":["knownFor"]}}, + {"url": "http://www.freebase.com/view/en/united_kingdom", "targetValue": "(list (description Scotland) (description England) (description Wales) (description \"Northern Ireland\"))", "utterance": "what are the four nations of the uk?", "relations":{"nations":["GeopoliticalOrganisation"]}}, + {"url": "http://www.freebase.com/view/en/judy_garland", "targetValue": "(list (description \"Mark Herron\") (description \"Sidney Luft\") (description \"David Rose\") (description \"Mickey Deans\") (description \"Vincente Minnelli\"))", "utterance": "who was judy garland married to?", "relations":{"married":["spouse","Marriage"]}}, + {"url": "http://www.freebase.com/view/en/abraham_lincoln", "targetValue": "(list (description Hodgenville))", "utterance": "where is abraham lincoln hometown?", "relations":{"hometown":["birthPlace","hometown"]}}, + {"url": "http://www.freebase.com/view/en/helen_keller", "targetValue": "(list (description Deafness))", "utterance": "what disease did helen keller?", "relations":{"disease":["disease"]}}, + {"url": "http://www.freebase.com/view/en/brazil", "targetValue": "(list (description \"Brazilian real\"))", "utterance": "what is the name of money in brazil?", "relations":{"money":["currency"],"name":["name"]}}, + {"url": "http://www.freebase.com/view/en/minneapolis_lakers", "targetValue": "(list (description \"1985 NBA Finals\") (description \"1948 NBL Finals\") (description \"1954 NBA Finals\") (description \"1972 NBA Finals\") (description \"1949 BAA Finals\") (description \"1952 NBA Finals\") (description \"1980 NBA Finals\") (description \"1950 NBA Finals\") (description \"1953 NBA Finals\") (description \"1982 NBA Finals\"))", "utterance": "what year did lakers win championship?", "relations":{"win":["achievement","awards"],"year":["year"],"championship":["championship"]}}, + {"url": "http://www.freebase.com/view/en/calvin_coolidge", "targetValue": "(list (description \"Parties do not maintain themselves. They are maintained by effort. The government is not self-existent. It is maintained by the effort of those who believe in it. The people of America believe in American institutions, the American form of government and the American method of transacting business.\"))", "utterance": "what did coolidge believe with regards to the role of government?", "relations":{"believe":["belief"],"government":["government"],"role":["role"]}}, + {"url": "http://www.freebase.com/view/en/atlanta_braves", "targetValue": "(list (description Homer))", "utterance": "what is the atlanta braves mascot?", "relations":{"mascot":["mascot"]}}, + {"url": "http://www.freebase.com/view/en/england", "targetValue": "(list (description \"Constitutional monarchy\"))", "utterance": "what type of government did england have during the glorious revolution?", "relations":{"government":["government"],"type of government":["form_of_government","GovernmentType"],"type":["type"],"revolution":["rebellion"]}}, + {"url": "http://www.freebase.com/view/en/albus_dumbledore", "targetValue": "(list (description \"Richard Harris\"))", "utterance": "who played dumbledore in the first movie?", "relations":{"played":["characterInPlay","character","playRole"],"movie":["movie"]}}, + {"url": "http://www.freebase.com/view/en/greenpeace", "targetValue": "(list (description Vancouver))", "utterance": "where was greenpeace an international environmental organization founded?", "relations":{"founded":["foundedBy","established"],"international environmental organization":["international_organization"]}}, + {"url": "http://www.freebase.com/view/en/roger_the_alien", "targetValue": "(list (description \"American Dad!\"))", "utterance": "what does roger that mean?", "relations":{"mean":["meaning","definition"]}}, + {"url": "http://www.freebase.com/view/en/london", "targetValue": "(list (description \"Trafalgar Square\"))", "utterance": "what is the center of london called?", "relations":{"center":["center"],"called":["name"]}}, + {"url": "http://www.freebase.com/view/en/washington_redskins", "targetValue": "(list (description \"Boston Redskins\"))", "utterance": "what was the first name of the washington redskins?", "relations":{"name":["name"]}}, + {"url": "http://www.freebase.com/view/en/canada", "targetValue": "(list (description \"Canada national baseball team\") (description \"Canada national rugby union team\") (description \"Canada women's national volleyball team\") (description \"Canada men's national soccer team\") (description \"Canadian national bandy team\") (description \"Canada national badminton team\") (description \"Canada men's national volleyball team\") (description \"Canadian women's cricket team\") (description \"A1 Team Canada\") (description Northwind))", "utterance": "what sports do they do in canada?", "relations":{"sports":["sports"]}}, + {"url": "http://www.freebase.com/view/en/american_football_league", "targetValue": "(list (description \"Bud Adams\") (description \"Lamar Hunt\"))", "utterance": "who was the first leader of the afl?", "relations":{"leader":["leader"]}}, + {"url": "http://www.freebase.com/view/en/arizona_cardinals", "targetValue": "(list (description \"Bruce Arians\"))", "utterance": "who is the arizona cardinals football coach?", "relations":{"coach":["Coach"],"football coach":["americanFootballCoach"]}}, + {"url": "http://www.freebase.com/view/en/tamu", "targetValue": "(list (description Myanmar))", "utterance": "when did tamu admit women?", "relations":{"women":["mother"]}}, + {"url": "http://www.freebase.com/view/en/battle_of_waterloo", "targetValue": "(list (description Waterloo))", "utterance": "where was the battle of waterloo held?", "relations":{"battle":["battle"]}}, + {"url": "http://www.freebase.com/view/en/marilyn_monroe", "targetValue": "(list (description Singer) (description \"Nude Glamour Model\") (description \"Film Producer\") (description Actor) (description Showgirl) (description Model) (description \"Pin-up girl\"))", "utterance": "what was marilyn monroe known for?", "relations":{"known for":["knownFor"]}}, + {"url": "http://www.freebase.com/view/en/barack_obama", "targetValue": "(list (description \"\"President Obama appears to me to have elevated and implemented the artist-activist concept to the role of empowered servant-leader...\"\"))", "utterance": "what has barack obama done wrong?", "relations":{"barack obama":["president"]}}, + {"url": "http://www.freebase.com/view/en/staff_intel", "targetValue": "(list (description \"Inside Intel: Andy Grove and the Rise of the World's Most Powerful Chip Company\"))", "utterance": "which is faster amd dual core or intel dual core?", "relations":{"which is faster":["comparable"]}}, + {"url": "http://www.freebase.com/view/en/lee_corso", "targetValue": "(list (description \"Florida State University\"))", "utterance": "where did lee corso go to college?", "relations":{"college":["college","study"]}}, + {"url": "http://www.freebase.com/view/en/colorado_eagles", "targetValue": "(list (description \"Ice Hockey\"))", "utterance": "who are the colorado eagles?", "relations":{"who are":["knownFor"]}}, + {"url": "http://www.freebase.com/view/en/jesus", "targetValue": "(list (description \"4 BCE\"))", "utterance": "what time period did jesus live in?", "relations":{"time period":["TimePeriod"]}}, + {"url": "http://www.freebase.com/view/en/alani_vasquez", "targetValue": "(list (description Brooklyn))", "utterance": "where does lala anthony live?", "relations":{"where live":["residence","livingPlace"]}}, + {"url": "http://www.freebase.com/view/en/kenya", "targetValue": "(list (description \"Kenyan shilling\"))", "utterance": "what currency do they accept in kenya?", "relations":{"currency":["currency"]}}, + {"url": "http://www.freebase.com/view/en/henry_hudson", "targetValue": "(list (description \"Hudson River\"))", "utterance": "what river did henry hudson sail up?", "relations":{"river":["River"],"sail up":["sail_type"]}}, + {"url": "http://www.freebase.com/view/en/switzerland", "targetValue": "(list (description \"Swiss franc\"))", "utterance": "what currency is used in switzerland 2012?", "relations":{"currency":["currency"]}}, + {"url": "http://www.freebase.com/view/en/iran", "targetValue": "(list (description \"Turkmen Language\") (description \"Pashto language\") (description \"Kurdish language\") (description \"Gilaki Language\") (description \"Assyrian Neo-Aramaic Language\") (description \"Azerbaijani language\") (description \"Armenian Language\") (description \"Persian Language\") (description \"Mazanderani Language\") (description \"Luri language\"))", "utterance": "what do they speak in iran?", "relations":{"speak":["language"]}}, + {"url": "http://www.freebase.com/view/en/ayrton_senna", "targetValue": "(list (description \"Lotus Cars\"))", "utterance": "who did ayrton senna drive for?", "relations":{"drive for":["work","occupation","careerPoints"]}}, + {"url": "http://www.freebase.com/view/en/madonna", "targetValue": "(list (description \"iPartyRadio.com: The #1 Party Authority\"))", "utterance": "what happened to madonna childhood home?", "relations":{"childhood home":["hometown","livingPlace"]}}, + {"url": "http://www.freebase.com/view/en/dominican_republic", "targetValue": "(list (description \"Santo Domingo\"))", "utterance": "where is the best place to vacation in the dominican republic?", "relations":{"vacation":["Holiday","tourist_attraction","touristicSite"],"place":["Place"]}}, + {"url": "http://www.freebase.com/view/en/rome", "targetValue": "(list (description \"Capture of Rome\"))", "utterance": "what made ancient rome fall?", "relations":{"ancient rome":["ancient_rome","HistoricalCountry","HistoricalRegion"]}}, + {"url": "http://www.freebase.com/view/en/brad_pitt", "targetValue": "(list (description Shawnee))", "utterance": "where was brad pitt born?", "relations":{"born":["birthPlace","hometown"]}}, + {"url": "http://www.freebase.com/view/en/vernon_davis", "targetValue": "(list (description \"Tight end\"))", "utterance": "what position does vernon davis play?", "relations":{"play":["Play"],"position":["position"]}}, + {"url": "http://www.freebase.com/view/en/euro", "targetValue": "(list (description Italy) (description Portugal) (description Finland) (description Luxembourg) (description France) (description Slovenia) (description Austria) (description Germany) (description Greece) (description Spain))", "utterance": "where is the euro 2012 tournament?", "relations":{"where is":["location","located"],"tournament":["tournament"]}}, + {"url": "http://www.freebase.com/view/en/texas", "targetValue": "(list (description \"Texas Revolution\"))", "utterance": "what time is right now in texas?", "relations":{"what time":["timeZone"],"time":["time"]}}, + {"url": "http://www.freebase.com/view/en/malta", "targetValue": "(list (description \"Casa Rocca Piccola\") (description \"Dingli Cliffs\") (description \"Gozo 360\u00b0 Multivision Show\") (description \"The Armoury and the Maritime Museum\") (description \"National Museum of Fine Arts, Malta\") (description \"National Museum of Archaeology, Malta\") (description \"Fort Rinella\") (description \"Megalithic Temples of Malta\") (description \"St. Paul's Catacombs\") (description \"Manoel Theatre\"))", "utterance": "what to see and do in malta?", "relations":{"to see":["tourist_attraction","tourist","touristicSite"]}}, + {"url": "http://www.freebase.com/view/en/dolly_parton", "targetValue": "(list (description Sevierville))", "utterance": "where did dolly parton grew up?", "relations":{"grew up":["birthPlace","hometown"]}}, + {"url": "http://www.freebase.com/view/en/rick_santorum", "targetValue": "(list (description Pennsylvania))", "utterance": "what state is rick santorum from?", "relations":{"state":["countryOrigin","state"]}}, + {"url": "http://www.freebase.com/view/en/elizabeth_ii_of_the_united_kingdom", "targetValue": "(list (description \"Queen of Tuvalu\") (description \"Queen of the United Kingdom\") (description \"Queen of New Zealand\") (description \"Queen of the Bahamas\") (description \"Queen of Antigua and Barbuda\") (description \"Queen of Australia\") (description \"Queen of Jamaica\") (description \"Queen of Barbados\") (description \"Queen of Canada\"))", "utterance": "what countries does queen elizabeth ii reign?", "relations":{"reign":["reign"],"countries":["countries"],"queen":["monarch"]}}, + {"url": "http://www.freebase.com/view/en/aurora", "targetValue": "(list (description \"2012 Aurora shooting\"))", "utterance": "when did the aurora colorado shooting take place?", "relations":{"take place":["period","place"]}}, + {"url": "http://www.freebase.com/view/en/jonas_brothers", "targetValue": "(list (description \"Nick Jonas\") (description \"Kevin Jonas\") (description \"Joe Jonas\"))", "utterance": "what is jonas brothers names?", "relations":{"brothers":["familyMember","sibling","family"],"names":["names"]}}, + {"url": "http://www.freebase.com/view/en/henri_matisse", "targetValue": "(list (description Fauvism) (description Impressionism) (description Neo-impressionism) (description Modernism))", "utterance": "what art movements was henri matisse involved in?", "relations":{"involved in":["knownFor"],"art":["Artwork"],"movements":["movements"]}}, + {"url": "http://www.freebase.com/view/en/germany", "targetValue": "(list (description \"Topography of Terror\"))", "utterance": "what are some famous tourist attractions in germany?", "relations":{"some famous":["famous_examples"],"tourist attractions":["tourist_attraction","touristicSite"]}}, + {"url": "http://www.freebase.com/view/en/kobe_bryant", "targetValue": "(list (description \"Basketball player\"))", "utterance": "who's kobe bryant?", "relations":{"who's":["knownFor","description"]}}, + {"url": "http://www.freebase.com/view/en/saudi_arabia", "targetValue": "(list (description \"Absolute monarchy\") (description \"Islamic state\") (description \"Unitary state\"))", "utterance": "what type of government system does saudi arabia have?", "relations":{"government":["government"],"type":["type"],"type of government":["GovernmentType","form_of_government"],"system":["system"]}}, + {"url": "http://www.freebase.com/view/en/czechoslovakia", "targetValue": "(list (description Slovakia) (description \"Czech Republic\"))", "utterance": "what countries did czechoslovakia become?", "relations":{"countries":["countries"],"czechoslovakia":["GeopoliticalOrganisation"]}}, + {"url": "http://www.freebase.com/view/en/richard_marx", "targetValue": "(list (description \"Dance with My Father\"))", "utterance": "what songs did richard marx write?", "relations":{"songs":["songs","singles"],"write":["SongWriter","writer"]}}, + {"url": "http://www.freebase.com/view/en/ryan_dunn", "targetValue": "(list (description \"Traffic collision\"))", "utterance": "what did ryan dunn died from?", "relations":{"died from":["causeOfDeath"]}}, + {"url": "http://www.freebase.com/view/en/george_washington", "targetValue": "(list (description \"American Revolutionary War\"))", "utterance": "what war was george washington associated with?", "relations":{"associated with":["associatedAct"]}}, + {"url": "http://www.freebase.com/view/en/zachary_taylor", "targetValue": "(list (description Kentucky))", "utterance": "where was zachary taylor elected from?", "relations":{"elected":["elected_official","Election","named_person"]}}, + {"url": "http://www.freebase.com/view/en/kris_humphries", "targetValue": "(list (description \"Brooklyn Nets\"))", "utterance": "who does kris humphries play for in the nba?", "relations":{"play for":["team","teamName","careerPoints"],"play":["Play"]}}, + {"url": "http://www.freebase.com/view/en/tupac_shakur", "targetValue": "(list (description \"East Harlem\"))", "utterance": "where tupac grew up?", "relations":{"grew up":["birthPlace","hometown","livingPlace"]}}, + {"url": "http://www.freebase.com/view/en/al_capone", "targetValue": "(list (description \"United States Penitentiary, Alcatraz Island\") (description \"United States Penitentiary, Atlanta\") (description \"Federal Correctional Institution, Terminal Island\"))", "utterance": "where did al capone go to jail?", "relations":{"jail":["Prison"]}}, + {"url": "http://www.freebase.com/view/en/richardwagner", "targetValue": "(list (description Opera) (description \"Classical music\") (description \"Romantic music\"))", "utterance": "what type of music did richard wagner play?", "relations":{"type of music":["musicType"],"type":["Type"],"music":["music"],"play":["play"]}}, + {"url": "http://www.freebase.com/view/en/brazil", "targetValue": "(list (description \"Brazilian real\"))", "utterance": "what do you call money in brazil?", "relations":{"money":["currency"]}}, + {"url": "http://www.freebase.com/view/en/tim_tebow", "targetValue": "(list (description \"Florida Gators football\"))", "utterance": "what team did tim tebow play for in college?", "relations":{"team":["team"],"college":["college"],"play":["play"],"play for":["teamName"]}}, + {"url": "http://www.freebase.com/view/en/paris", "targetValue": "(list (description \"Beauvais-Till\u00e9 Airport\") (description \"Charles de Gaulle Airport\") (description \"Orly Air Base\") (description \"Paris Orly Airport\"))", "utterance": "what airport in paris?", "relations":{"airport":["Airport"]}}, + {"url": "http://www.freebase.com/view/en/andy_williams", "targetValue": "(list (description \"United States of America\"))", "utterance": "what nationality was andy williams?", "relations":{"nationality":["nationality"]}}, + {"url": "http://www.freebase.com/view/en/mathew_brady", "targetValue": "(list (description \"New York City\"))", "utterance": "where did matthew brady live?", "relations":{"where live":["livingPlace","residence"]}}, + {"url": "http://www.freebase.com/view/en/rickie_fowler", "targetValue": "(list (description Golf))", "utterance": "what ball does rickie fowler play?", "relations":{"play":["Play"],"ball":["GolfPlayer"]}}, + {"url": "http://www.freebase.com/view/en/denver_broncos", "targetValue": "(list (description \"Wesley Woodyard\") (description \"Peyton Manning\") (description \"Joe Mays\") (description \"Knowshon Moreno\") (description \"Joel Dreessen\") (description \"Mario Fannin\") (description \"Manuel Ram\u00edrez\") (description \"Tracy Porter\") (description \"Andre Caldwell\") (description \"Jacob Tamme\"))", "utterance": "who are the broncos players?", "relations":{"players":["players","TeamMember"]}}, + {"url": "http://www.freebase.com/view/en/japan", "targetValue": "(list (description Tokyo))", "utterance": "where do most of the people live in japan?", "relations":{"people":["people"],"most of the people":["density","Demographics"]}}, + {"url": "http://www.freebase.com/view/en/basque_language", "targetValue": "(list (description Spain) (description France))", "utterance": "in what country do they speak basque?", "relations":{"speak":["language"],"country":["country"]}}, + {"url": "http://www.freebase.com/view/en/belgium", "targetValue": "(list (description \"Western Europe\"))", "utterance": "where is belgium at?", "relations":{"where is":["location","locationCountry"]}}, + {"url": "http://www.freebase.com/view/en/russia", "targetValue": "(list (description \"Russian Orthodox Church\") (description Islam))", "utterance": "what religions are in russia?", "relations":{"religions":["religion"]}}, + {"url": "http://www.freebase.com/view/en/north_korea", "targetValue": "(list (description \"Single-party state\") (description \"Socialist state\") (description \"People's Republic\") (description Juche) (description \"Unitary state\"))", "utterance": "what government system does north korea have?", "relations":{"government":["government"],"system":["system"],"government system":["GovernmentType","form_of_government"]}}, + {"url": "http://www.freebase.com/view/en/albert_einstein", "targetValue": "(list (description \"Theoretical Physicist\"))", "utterance": "what did einstein do?", "relations":{"what did":["knownFor","occupation"]}}, + {"url": "http://www.freebase.com/view/en/amsterdam", "targetValue": "(list (description Netherlands))", "utterance": "in what country is amsterdam?", "relations":{"country":["country"]}}, + {"url": "http://www.freebase.com/view/en/united_states", "targetValue": "(list (description \"Unitarian Universalism\") (description Judaism) (description Christianity) (description Atheism) (description Buddhism) (description Hinduism) (description Islam))", "utterance": "what are the most common religions in the united states?", "relations":{"religion":["religion"],"common":["common"]}}, + {"url": "http://www.freebase.com/view/en/martin_luther_king_jr", "targetValue": "(list (description Sociology))", "utterance": "what did martin luther king jr go to college for?", "relations":{"college":["college","school","study"]}}, + {"url": "http://www.freebase.com/view/en/ernest_shackleton", "targetValue": "(list (description \"100 Greatest Britons\"))", "utterance": "where did sir ernest shackleton come from?", "relations":{"come from":["birthPlace","hometown"]}}, + {"url": "http://www.freebase.com/view/en/jimi_hendrix", "targetValue": "(list (description guitar))", "utterance": "what made jimi hendrix great?", "relations":{"what made":["knownFor"]}}, + {"url": "http://www.freebase.com/view/en/aaron_rodgers", "targetValue": "(list (description \"University of California, Berkeley\"))", "utterance": "who did aaron rodgers play college football 4?", "relations":{"football":["AmericanFootballTeam"],"play":["play"],"college":["college"]}}, + {"url": "http://www.freebase.com/view/en/nathan_scott", "targetValue": "(list (description \"James Lafferty\"))", "utterance": "who plays nathan scott?", "relations":{"plays":["plays"]}}, + {"url": "http://www.freebase.com/view/en/houston_rockets", "targetValue": "(list (description \"1994 NBA Finals\") (description \"1995 NBA Finals\"))", "utterance": "when did the houston rockets win the championship?", "relations":{"win":["achievement","winsAtChampionships","awards"],"championship":["championship"]}}, + {"url": "http://www.freebase.com/view/en/mount_whitney", "targetValue": "(list (description \"Sierra Nevada\") (description California))", "utterance": "where is mount whitney?", "relations":{"where is":["location","located","locatedInArea"]}}, + {"url": "http://www.freebase.com/view/en/romeo_montague", "targetValue": "(list (description \"William Shakespeare\"))", "utterance": "who created the character of romeo?", "relations":{"character":["character"],"created":["created"]}}, + {"url": "http://www.freebase.com/view/en/new_york", "targetValue": "(list (description \"Chelsea Art Museum\") (description \"Brooklyn Bridge\") (description \"Empire State Building\") (description \"The Broadway Theatre\") (description \"American Museum of Natural History\") (description \"Central Park\") (description \"St. Patrick's Cathedral\") (description \"Japan Society of New York\") (description \"FusionArts Museum\") (description \"American Folk Art Museum\"))", "utterance": "what are some places to visit in new york?", "relations":{"to visit":["tourist_attraction","touristicSite"],"places":["places"]}}, + {"url": "http://www.freebase.com/view/en/central_america", "targetValue": "(list (description Honduras) (description \"El Salvador\") (description Panama) (description \"Costa Rica\") (description Guatemala) (description \"Gran Colombia\") (description Belize))", "utterance": "what are the countries and capitals of central america?", "relations":{"countries":["countries"],"capitals":["capital"]}}, + {"url": "http://www.freebase.com/view/en/puntland", "targetValue": "(list (description Garoowe) (description \"Bari Region\") (description Dalweyn) (description Eyl))", "utterance": "where is puntland somalia?", "relations":{"where is":["location","locatedInArea","located"]}}, + {"url": "http://www.freebase.com/view/en/western_australia", "targetValue": "(list (description \"Black Swan\"))", "utterance": "what animal is on the western australian flag?", "relations":{"flag":["Flag"],"animal":["animal"]}}, + {"url": "http://www.freebase.com/view/en/drew_stanton", "targetValue": "(list (description \"Michigan State University\"))", "utterance": "where did drew stanton play in college?", "relations":{"play":["play"],"college":["college","study","school"]}}, + {"url": "http://www.freebase.com/view/en/kareem_abdul-jabbar", "targetValue": "(list (description \"Ferdinand Lewis Alcindor, Sr.\"))", "utterance": "what is kareem abdul jabbar real name?", "relations":{"name":["name"],"real name":["originalName","birthName"]}}, + {"url": "http://www.freebase.com/view/en/eastern_europe", "targetValue": "(list (description \"Southern Carpathians\") (description Caucasus) (description \"Belarusian Central Rada\") (description Kresy) (description \"Kievan Rus'\") (description \"Grand Duchy of Lithuania\") (description \"Kingdom of Romania\") (description Moldova) (description \"Belarusian People's Republic\") (description \"Second Polish Republic\"))", "utterance": "what countries fall in eastern europe?", "relations":{"countries":["countries"],"eastern europe":["GeopoliticalOrganisation"]}}, + {"url": "http://www.freebase.com/view/en/taylor_swift", "targetValue": "(list (description \"Stripped Raw & Real\") (description Ronan) (description \"CMT Crossroads\") (description \"Speak Now - World Tour Live\") (description Fearless) (description \"iTunes Live From SoHo\") (description \"Beautiful Eyes\") (description \"We Are Never Ever Getting Back Together\") (description \"Speak Now\") (description Red))", "utterance": "what are taylor swift's albums?", "relations":{"albums":["albums"]}}, + {"url": "http://www.freebase.com/view/en/ethiopia", "targetValue": "(list (description \"Meles Zenawi\"))", "utterance": "who is the prime minister of ethiopia now?", "relations":{"prime minister":["primeMinister"]}}, + {"url": "http://www.freebase.com/view/en/mary_poppins_1964", "targetValue": "(list (description 1964))", "utterance": "when was mary poppins made?", "relations":{"made":["published_work"]}}, + {"url": "http://www.freebase.com/view/en/edward_vi_of_england", "targetValue": "(list (description Tuberculosis))", "utterance": "what did king edward vi died from?", "relations":{"died from":["causeOfDeath"]}}, + {"url": "http://www.freebase.com/view/en/robert_boyle", "targetValue": "(list (description \"Boyle's law\"))", "utterance": "what did robert boyle accomplish?", "relations":{"accomplish":["achievement"]}}, + {"url": "http://www.freebase.com/view/en/johnny_bench", "targetValue": "(list (description \"Cincinnati Reds\"))", "utterance": "who did johnny bench play for?", "relations":{"play for":["teamName","careerPoints"],"play":["play"]}}, + {"url": "http://www.freebase.com/view/en/islam", "targetValue": "(list (description Allah))", "utterance": "who does the islamic worship?", "relations":{"islamic worship":["culture","religion","prayer"]}}, + {"url": "http://www.freebase.com/view/en/napoleon_i_of_france", "targetValue": "(list (description \"Les Invalides\") (description Longwood))", "utterance": "where is napoleon buried?", "relations":{"buried":["placeOfBurial"]}}, + {"url": "http://www.freebase.com/view/en/iceland", "targetValue": "(list (description \"Icelandic Language\"))", "utterance": "what language do people speak in iceland?", "relations":{"language":["language"],"people":["people"]}}, + {"url": "http://www.freebase.com/view/en/mtv", "targetValue": "(list (description \"Twisted Sister\") (description \"Suicidal Tendencies\") (description \"Guns N' Roses\") (description \"Red Hot Chili Peppers\") (description AC/DC) (description Nirvana) (description Run-D.M.C.) (description \"Ice Cube\") (description \"The Offspring\") (description Metallica))", "utterance": "who sang at the mtv movie awards 2011?", "relations":{"movie":["movie "],"awards":["awards"]}}, + {"url": "http://www.freebase.com/view/en/houston_aeros", "targetValue": "(list (description \"Toyota Center\"))", "utterance": "where do houston aeros play?", "relations":{"play":["Play"]}}, + {"url": "http://www.freebase.com/view/en/new_york_knicks", "targetValue": "(list (description \"Raymond Felton\") (description \"Marcus Camby\") (description \"J. R. Smith\") (description \"Tyson Chandler\") (description \"Carmelo Anthony\") (description \"Iman Shumpert\") (description \"Jason Kidd\") (description \"Steve Novak\") (description \"Chris Copeland\") (description \"Pablo Prigioni\"))", "utterance": "what is the new york knicks starting lineup?", "relations":{"starting lineup":["careerPoints","startCareer"]}}, + {"url": "http://www.freebase.com/view/en/galway", "targetValue": "(list (description \"Galway City Museum\") (description \"Taibhdhearc na Gaillimhe\") (description \"Spanish Arch\") (description \"Cathedral of Our Lady Assumed into Heaven and St Nicholas, Galway\") (description \"Galway Sportsgrounds\") (description \"Hotel Meyrick\") (description \"Eyre Square\") (description \"St. Nicholas' Collegiate Church\") (description \"National University of Ireland, Galway\") (description \"Galway Arts Festival\"))", "utterance": "what to see and do in galway ireland?", "relations":{"to see and do":["tourist_attraction","touristicSite"]}}, + {"url": "http://www.freebase.com/view/en/brandon_roy", "targetValue": "(list (description \"2006 NBA Draft\"))", "utterance": "what year did brandon roy get drafted?", "relations":{"year":["year"],"drafted":["startCareer"]}}, + {"url": "http://www.freebase.com/view/en/michael_jackson", "targetValue": "(list (description \"Paris-Michael Katherine Jackson\") (description \"Prince Michael Jackson I\") (description \"Prince Michael Jackson II\"))", "utterance": "what are the names of michael jackson children?", "relations":{"children":["familyMember","child","family"],"names":["names"]}}, + {"url": "http://www.freebase.com/view/en/pennsylvania", "targetValue": "(list (description \"Kalmia latifolia\"))", "utterance": "what is pennsylvania's state flower called?", "relations":{"flower":["flower"],"state":["state","country"]}}, + {"url": "http://www.freebase.com/view/en/niccolo_machiavelli", "targetValue": "(list (description \"The Prince\"))", "utterance": "what book did niccolo machiavelli write?", "relations":{"book":["book"],"write":["writer"]}}, + {"url": "http://www.freebase.com/view/en/austraila", "targetValue": "(list (description Catholicism) (description Buddhism) (description Islam) (description Anglicanism))", "utterance": "what religions are found in australia?", "relations":{"religions":["religion"]}}, + {"url": "http://www.freebase.com/view/en/drew_bledsoe", "targetValue": "(list (description \"Washington State University\"))", "utterance": "what college did drew bledsoe?", "relations":{"college":["college","study","school"]}}, + {"url": "http://www.freebase.com/view/en/mtv", "targetValue": "(list (description \"New York City\"))", "utterance": "where is the mtv headquarters?", "relations":{"headquarters":["headquarter","location","locatedInArea"]}}, + {"url": "http://www.freebase.com/view/en/michael_vick", "targetValue": "(list (description \"Philadelphia Eagles\"))", "utterance": "who does michael vick play for?", "relations":{"play":["play"],"play for":["teamName","careerPoints"]}}, + {"url": "http://www.freebase.com/view/en/guatemala", "targetValue": "(list (description \"Constitutional republic\") (description \"Presidential system\") (description \"Unitary state\"))", "utterance": "what is guatemala current system of government?", "relations":{"government":["government"],"system of government":["GovernmentType","form_of_government"],"system":["system"],"current":["current"]}}, + {"url": "http://www.freebase.com/view/en/anderson_silva", "targetValue": "(list (description \"Mixed Martial Artist\"))", "utterance": "what is anderson silva trained in?", "relations":{"trained":["skilled_person","knownFor"]}}, + {"url": "http://www.freebase.com/view/en/asia", "targetValue": "(list (description \"Asian Affairs\"))", "utterance": "what caused the asian currency crisis?", "relations":{"currency":["currency"],"currency crisis":["economic_bubble","economic_event"]}}, + {"url": "http://www.freebase.com/view/en/russia", "targetValue": "(list (description Ukraine) (description Belarus) (description Kazakhstan) (description Poland) (description Lithuania) (description Azerbaijan) (description Mongolia) (description \"North Korea\") (description Georgia) (description Norway))", "utterance": "which countries does russia border?", "relations":{"countries":["countries"],"border":["cross_border_region","border","location_in_neighborhood"]}}, + {"url": "http://www.freebase.com/view/en/brooke_burke", "targetValue": "(list (description \"Dancing with the Stars - Season 7\"))", "utterance": "what season did brooke burke won?", "relations":{"season":["season"],"won":["achievement","award"]}}, + {"url": "http://www.freebase.com/view/en/pixar", "targetValue": "(list (description \"A Bug's Life\") (description \"Toy Story 2\") (description Ratatouille) (description Cars) (description Up) (description \"Toy Story\") (description \"Monsters, Inc.\") (description \"The Incredibles\") (description \"Finding Nemo\") (description WALL-E))", "utterance": "what does pixar produce?", "relations":{"produce":["produce"],"what does":["knownFor"]}}, + {"url": "http://www.freebase.com/view/en/emily_dickinson", "targetValue": "(list (description \"Bright's disease\"))", "utterance": "what did emily dickinson die of?", "relations":{"die of":["causeOfDeath","disease"]}}, + {"url": "http://www.freebase.com/view/en/james_i_of_england", "targetValue": "(list (description \"Charles I of England\"))", "utterance": "who was king or queen after james i?", "relations":{"who was king or queen after":["successor"],"king":["monarch"],"queen":["monarch"]}}, + {"url": "http://www.freebase.com/view/en/lois_lane", "targetValue": "(list (description \"Margot Kidder\"))", "utterance": "who played lois lane in superman 1?", "relations":{"played":["character","characterInPlay","playRole"]}}, + {"url": "http://www.freebase.com/view/en/elie_wiesel", "targetValue": "(list (description \"Chlomo Wiesel\"))", "utterance": "what was elie wiesel's father's name?", "relations":{"father":["father","parent"],"name":["name"]}}, + {"url": "http://www.freebase.com/view/en/vincent_de_paul", "targetValue": "(list (description Paris))", "utterance": "where is st vincent de paul buried?", "relations":{"buried":["placeOfBurial"]}}, + {"url": "http://www.freebase.com/view/en/fiji", "targetValue": "(list (description \"Fiji Hindi\") (description \"English Language\") (description \"Fijian Language\"))", "utterance": "what language do fiji people speak?", "relations":{"language":["language"],"people":["people"]}}, + {"url": "http://www.freebase.com/view/en/victoria_beckham", "targetValue": "(list (description \"Romeo Beckham\") (description \"Cruz Beckham\") (description \"Harper Beckham\") (description \"Brooklyn Beckham\"))", "utterance": "what victoria beckham kids names?", "relations":{"kids":["Family","child","familyMember"],"names":["names"]}}, + {"url": "http://www.freebase.com/view/en/new_york", "targetValue": "(list (description \"New York City\"))", "utterance": "where is new york in the map?", "relations":{"where is":["location","located","locatedInArea"],"map":["map"]}}, + {"url": "http://www.freebase.com/view/en/france", "targetValue": "(list (description \"Mediterranean Sea\"))", "utterance": "where did france surrender ww2?", "relations":{"ww2":["war","battle"]}}, + {"url": "http://www.freebase.com/view/en/jim_valvano", "targetValue": "(list (description Cancer))", "utterance": "what did jimmy valvano die with?", "relations":{"die with":["causeOfDeath","disease"]}}, + {"url": "http://www.freebase.com/view/en/charles_barkley", "targetValue": "(list (description \"Philadelphia 76ers\") (description \"Houston Rockets\") (description \"Phoenix Suns\"))", "utterance": "what teams did charles barkley?", "relations":{"teams":["team","careerPoints","teamName"]}}, + {"url": "http://www.freebase.com/view/en/bill_clinton", "targetValue": "(list (description \"1996 Democratic National Convention\") (description \"1992 Democratic National Convention\"))", "utterance": "when was bill clinton elected president?", "relations":{"president":["president"],"elected":["Election","elected_official"]}}, + {"url": "http://www.freebase.com/view/en/giovanni_pierluigi_da_palestrina", "targetValue": "(list (description Italy))", "utterance": "where did giovanni pierluigi da palestrina live?", "relations":{"where live":["residence","livingPlace"]}}, + {"url": "http://www.freebase.com/view/en/almadina", "targetValue": "(list (description \"1988 Winter Olympics\"))", "utterance": "when was the 2012 calgary stampede?", "relations":{"when":["TimePeriod"]}}, + {"url": "http://www.freebase.com/view/en/michael_jordan", "targetValue": "(list (description \"1984 NBA Draft\"))", "utterance": "when michael jordan got drafted?", "relations":{"drafted":["achievement","draft","careerPoints"]}}, + {"url": "http://www.freebase.com/view/en/philippines", "targetValue": "(list (description \"Philippine peso\"))", "utterance": "what kind of money do the philippines use?", "relations":{"money":["currency"]}}, + {"url": "http://www.freebase.com/view/en/dorothy_gale", "targetValue": "(list (description \"Judy Garland\"))", "utterance": "who played dorothy in the wizard of oz movie?", "relations":{"movie":["movie"],"played":["character","characterInPlay","playRole"]}}, + {"url": "http://www.freebase.com/view/en/marion_barber", "targetValue": "(list (description \"Chicago Bears\") (description \"Minnesota Golden Gophers football\") (description \"Dallas Cowboys\"))", "utterance": "who does marion barber play 4?", "relations":{"play":["play"]}}, + {"url": "http://www.freebase.com/view/en/james_franco", "targetValue": "(list (description \"Columbia University School of the Arts\"))", "utterance": "what college did james franco go to?", "relations":{"college":["college","study","school"]}}, + {"url": "http://www.freebase.com/view/en/national_collegiate_athletic_association", "targetValue": "(list (description \"Stanford Cardinal football\") (description \"Baylor Bears baseball\") (description \"Murray State Racers men's basketball\") (description \"Wofford Terriers men's basketball\") (description \"UC Santa Barbara Gauchos men's basketball\") (description \"Ohio State Buckeyes football\") (description \"Oregon State University Beavers\") (description \"Wake Forest Demon Deacons women's golf\") (description \"Kenyon Men's Swimming\") (description \"Saint Mary's College of California Gaels men's basketball\"))", "utterance": "how many teams are there in the ncaa football?", "relations":{"how many teams":["numberOfTeams"],"teams":["team"],"ncaa football":["ncaaTeam"]}}, + {"url": "http://www.freebase.com/view/en/bobby_garrett", "targetValue": "(list (description \"American football player\"))", "utterance": "who is garrett pretty little liars?", "relations":{"who is":["team","SoccerPlayer","football_player"]}}, + {"url": "http://www.freebase.com/view/en/mexico", "targetValue": "(list (description \"Mexican peso\"))", "utterance": "what type of currency should i take to mexico?", "relations":{"currency":["currency"],"type":["type"]}}, + {"url": "http://www.freebase.com/view/en/lucille_ball", "targetValue": "(list (description \"Aortic dissection\"))", "utterance": "what did lucille ball die of?", "relations":{"die of":["causeOfDeath","disease"]}}, + {"url": "http://www.freebase.com/view/en/john_f_kennedy", "targetValue": "(list (description Catholicism))", "utterance": "what religion was john f kennedy?", "relations":{"religion":["religion"]}}, + {"url": "http://www.freebase.com/view/en/chile", "targetValue": "(list (description \"Maule Region\"))", "utterance": "where was the earthquake in chile 2010?", "relations":{"earthquake":["earthquake"]}}, + {"url": "http://www.freebase.com/view/en/andy_warhol", "targetValue": "(list (description \"Pop art\"))", "utterance": "what style of art does andy warhol do?", "relations":{"style":["style"],"art":["art"]}}, + {"url": "http://www.freebase.com/view/en/ron_howard", "targetValue": "(list (description \"Apollo 13\") (description \"A Beautiful Mind\") (description \"Curious George\") (description \"Happy Days\") (description Cocoon) (description \"From the Earth to the Moon\"))", "utterance": "what movies did ron howard do?", "relations":{"movies":["movies"]}}, + {"url": "http://www.freebase.com/view/en/charlotte", "targetValue": "(list (description \"Mecklenburg County\"))", "utterance": "what county is charlotte north carolina?", "relations":{"county":["county"]}}, + {"url": "http://www.freebase.com/view/en/united_states", "targetValue": "(list (description \"Constitutional republic\"))", "utterance": "what type of government and economic system does the united states have?", "relations":{"government":["government"],"type":["type"],"type of government":["GovernmentType","form_of_government"],"system":["system","structure"]}}, + {"url": "http://www.freebase.com/view/en/michelle_obama", "targetValue": "(list (description Writer) (description Lawyer))", "utterance": "who is michelle obama?", "relations":{"who is":["knownFor","occupation"]}}, + {"url": "http://www.freebase.com/view/en/kate_middleton", "targetValue": "(list (description \"St Andrew's School, Pangbourne\"))", "utterance": "where did kate middleton go to prep school?", "relations":{"prep school":["school","study","college_prep_school"]}}, + {"url": "http://www.freebase.com/view/en/nigeria", "targetValue": "(list (description \"Presidential system\") (description \"Federal republic\") (description Federation))", "utterance": "what type of government does nigeria have today?", "relations":{"government":["government"],"type":["type"],"type of government":["GovernmentType","form_of_government"]}}, + {"url": "http://www.freebase.com/view/en/hans_christian_orsted", "targetValue": "(list (description Aluminium))", "utterance": "what did hans oersted discovered in 1819?", "relations":{"discovered":["discovered"]}}, + {"url": "http://www.freebase.com/view/en/harry_potter", "targetValue": "(list (description \"Harry Potter and the Philosopher's Stone\"))", "utterance": "what is the very first harry potter book?", "relations":{"book":["book"],"first":["first"]}}, + {"url": "http://www.freebase.com/view/en/kourtney_kardashian", "targetValue": "(list (description \"Penelope Scotland Disick\"))", "utterance": "what kourtney kardashian name her daughter?", "relations":{"daughter":["Family","child","familyMember"],"name":["name"]}}, + {"url": "http://www.freebase.com/view/en/lion", "targetValue": "(list (description Tombo))", "utterance": "when did the lions last win a thanksgiving game?", "relations":{"game":["Game"],"win":["achievement","award"]}}, + {"url": "http://www.freebase.com/view/en/chile", "targetValue": "(list (description \"Presidential system\") (description Republic) (description \"Unitary state\"))", "utterance": "what kind of government does chile have today?", "relations":{"government":["government"],"kind of government":["GovernmentType","form_of_government"]}}, + {"url": "http://www.freebase.com/view/en/richard_arkwright", "targetValue": "(list (description Cromford))", "utterance": "where did richard arkwright die?", "relations":{"die":["deathPlace"]}}, + {"url": "http://www.freebase.com/view/en/luke_skywalker", "targetValue": "(list (description \"Mark Hamill\"))", "utterance": "who played luke skywalker in star wars episode 4?", "relations":{"played":["character","characterInPlay","playRole"],"episode":["episode"]}}, + {"url": "http://www.freebase.com/view/en/taylor_lautner", "targetValue": "(list (description \"New Moon\") (description \"He's a Bully, Charlie Brown\") (description Eclipse) (description \"Cheaper by the Dozen 2\") (description Incarceron) (description \"The Adventures of Sharkboy and Lavagirl\") (description \"Dear Eleanor\") (description Abduction) (description \"Shadow Fury\") (description \"Field of Dreams 2: Lockout\"))", "utterance": "what movies has taylor lautner?", "relations":{"movies":["movies"]}}, + {"url": "http://www.freebase.com/view/en/sam_bradford", "targetValue": "(list (description \"St. Louis Rams\"))", "utterance": "where does sam bradford play?", "relations":{"play":["Play"]}}, + {"url": "http://www.freebase.com/view/en/vietnam", "targetValue": "(list (description Asia))", "utterance": "where did vietnam originate?", "relations":{"where did":["location","locationCountry","locatedInArea","located"]}}, + {"url": "http://www.freebase.com/view/en/austraila", "targetValue": "(list (description \"Sydney Gazette\"))", "utterance": "what was the first newspaper called in australia?", "relations":{"newspaper":["newspaper"]}}, + {"url": "http://www.freebase.com/view/en/london_borough_of_hackney", "targetValue": "(list (description London))", "utterance": "where was hackney 2012 held?", "relations":{"where was":["location"]}}, + {"url": "http://www.freebase.com/view/en/st_louis_rams", "targetValue": "(list (description \"Edward Jones Dome\"))", "utterance": "where does the st louis rams play football?", "relations":{"play":["Play"],"play football":["football_team"]}}, + {"url": "http://www.freebase.com/view/en/scottie_pippen", "targetValue": "(list (description 1987))", "utterance": "what year did scottie pippen come into the nba?", "relations":{"year":["year"],"come into":["TeamMember","careerPoints"]}}, + {"url": "http://www.freebase.com/view/en/zagreb", "targetValue": "(list (description Croatia))", "utterance": "where are you if you re in zagreb?", "relations":{"where are":["location","locationCity","locationCountry"]}}, + {"url": "http://www.freebase.com/view/en/fifa_world_cup", "targetValue": "(list (description \"The Cup\"))", "utterance": "which country has won the cricket world cup the most times?", "relations":{"country":["country"],"world cup":["world_cup_participation"],"won":["achievement","award"]}}, + {"url": "http://www.freebase.com/view/en/selena_gomez", "targetValue": "(list (description \"Grand Prairie\"))", "utterance": "what city was selena gomez born in?", "relations":{"city":["city"],"born in":["hometown","birthPlace"]}}, + {"url": "http://www.freebase.com/view/en/dominic_monaghan", "targetValue": "(list (description \"Meriadoc Brandybuck\"))", "utterance": "who does dominic monaghan play in lord of the rings?", "relations":{"play":["play"],"play in":["character","characterInPlay","playRole"]}}, + {"url": "http://www.freebase.com/view/en/south_africa", "targetValue": "(list (description Lesotho) (description Zimbabwe) (description Mozambique) (description Swaziland) (description Namibia) (description Botswana))", "utterance": "which country does south africa border 2 the north?", "relations":{"country":["country"],"border":["border","location_in_neighborhood","cross_border_region"]}}, + {"url": "http://www.freebase.com/view/en/pink_floyd", "targetValue": "(list (description \"David Gilmour\"))", "utterance": "who sang for pink floyd?", "relations":{"who sang for":["pastMember","member"]}}, + {"url": "http://www.freebase.com/view/en/john_connor", "targetValue": "(list (description \"Edward Furlong\"))", "utterance": "who played john connor friend in terminator 2?", "relations":{"played":["character","characterInPlay","playRole"],"friend":["friend"]}}, + {"url": "http://www.freebase.com/view/en/lagos", "targetValue": "(list (description \"Central European Time\"))", "utterance": "what is the current time in nigeria lagos?", "relations":{"current time":["timezone"],"current":["current"],"time":["time"]}}, + {"url": "http://www.freebase.com/view/en/henry_winkler", "targetValue": "(list (description \"Mr. Sunshine\") (description \"Dallas Reunion: The Return to Southfork\") (description MacGyver) (description \"So Weird\") (description \"Dead Man's Gun\") (description WinTuition))", "utterance": "what shows did henry winkler produce?", "relations":{"what shows":["knownFor"],"shows":["shows"],"produce":["produces"]}}, + {"url": "http://www.freebase.com/view/en/texaco", "targetValue": "(list (description \"New York\") (description California))", "utterance": "what state was texaco gas founded?", "relations":{"state":["state","country"],"gas":["gas"]}}, + {"url": "http://www.freebase.com/view/en/china", "targetValue": "(list (description \"Standard Mandarin\"))", "utterance": "what is the official language of china and 3 other dialects?", "relations":{"officialLanguage":["official language"],"dialects":["language_dialect"]}}, + {"url": "http://www.freebase.com/view/en/connecticut", "targetValue": "(list (description \"Chris Dodd\"))", "utterance": "who is the senator of connecticut 2010?", "relations":{"senator":["senator"]}}, + {"url": "http://www.freebase.com/view/en/dallas_cowboys", "targetValue": "(list (description \"Super Bowl XXX\"))", "utterance": "when was the last time the dallas cowboys went to the super bowl?", "relations":{"went to the super bowl":["achievement"],"time":["time"]}}, + {"url": "http://www.freebase.com/view/en/rukia_kuchiki", "targetValue": "(list (description \"Bleach: Fade to Black\"))", "utterance": "what episode does rukia fade away?", "relations":{"episode":["episode"]}}, + {"url": "http://www.freebase.com/view/en/brazil", "targetValue": "(list (description UTC\u221202:00) (description UTC\u221204:00) (description UTC\u221203:00))", "utterance": "what is brazil time zone?", "relations":{"time zone":["timeZone"]}}, + {"url": "http://www.freebase.com/view/en/gospel_of_john", "targetValue": "(list (description \"Gospel of John\"))", "utterance": "who wrote john 3 16 in the bible?", "relations":{"bible":["theology","book"]}}, + {"url": "http://www.freebase.com/view/en/czech_republic", "targetValue": "(list (description \"Czech Language\"))", "utterance": "what do people in the czech republic speak?", "relations":{"speak":["language","officialLanguage"],"people":["people"],"republic":["republic"]}}, + {"url": "http://www.freebase.com/view/en/bruno_mars", "targetValue": "(list (description Honolulu))", "utterance": "where did bruno mars get his start?", "relations":{"get his start":["startCareer"],"start":["start"]}}, + {"url": "http://www.freebase.com/view/en/tex_beneke", "targetValue": "(list (description Singer) (description Musician))", "utterance": "who was tex beneke?", "relations":{"who was":["knownFor"]}}, + {"url": "http://www.freebase.com/view/en/thomas_edison", "targetValue": "(list (description Phonograph) (description \"Carbon microphone\") (description Mimeograph) (description \"Quadruplex telegraph\") (description \"Electric power distribution\") (description \"Movie camera\") (description \"Incandescent light bulb\") (description \"Phonograph cylinder\"))", "utterance": "what are all the things thomas edison invented?", "relations":{"what are all the things":["knownFor"]}}, + {"url": "http://www.freebase.com/view/en/albania", "targetValue": "(list (description \"Albanian language\"))", "utterance": "what does albania speak?", "relations":{"speak":["language","officialLanguage"]}}, + {"url": "http://www.freebase.com/view/en/shakira", "targetValue": "(list (description Colombia))", "utterance": "what is shakira's nationality?", "relations":{"nationality":["nationality"]}}, + {"url": "http://www.freebase.com/view/en/ottoman_empire", "targetValue": "(list (description Constantinople))", "utterance": "where did the sultan of the ottoman empire live?", "relations":{"where live":["residence","livingPlace"]}}, + {"url": "http://www.freebase.com/view/en/bilbo_baggins", "targetValue": "(list (description \"Norman Bird\") (description \"Martin Freeman\") (description \"Ian Holm\"))", "utterance": "who is playing bilbo baggins?", "relations":{"who is playing":["character","characterInPlay","playRole"]}}, + {"url": "http://www.freebase.com/view/en/george_washington", "targetValue": "(list (description \"Delegate to the Continental Congress\"))", "utterance": "what position did george washington serve in the constitutional convention?", "relations":{"position":["position"],"constitutional convention":["constitutional_convention"]}}, + {"url": "http://www.freebase.com/view/en/national_collegiate_athletic_association", "targetValue": "(list (description \"NCAA March Madness: Cinderellas, Superstars, and Champions from the NCAA Men's Final Four\"))", "utterance": "where is the 2012 ncaa basketball tournament?", "relations":{"ncaa basketball tournament":["ncaa_basketball_tournament"]}}, + {"url": "http://www.freebase.com/view/en/caitlin_todd", "targetValue": "(list (description \"Kill Ari - Part 1\"))", "utterance": "what episode did kate leave ncis?", "relations":{"episode":["episode"]}}, + {"url": "http://www.freebase.com/view/en/seneca_nation", "targetValue": "(list (description \"New York\"))", "utterance": "where are the seneca indians now?", "relations":{"where are":["located","locatedInArea"]}}, + {"url": "http://www.freebase.com/view/en/mohammed_farah", "targetValue": "(list (description \"Track and field athlete\"))", "utterance": "what did farrah dad do?", "relations":{"what did":["knownFor","occupation"]}}, + {"url": "http://www.freebase.com/view/en/matt_barnes", "targetValue": "(list (description \"Small forward\"))", "utterance": "where did matt barnes play?", "relations":{"play":["play"]}}, + {"url": "http://www.freebase.com/view/en/jordan_river", "targetValue": "(list (description \"Anti-Lebanon mountains\"))", "utterance": "where does the jordan river begin?", "relations":{"river":["river"],"river begin":["riverMoutht","source"]}}, + {"url": "http://www.freebase.com/view/en/d_carter", "targetValue": "(list (description \"University of Phoenix\"))", "utterance": "what college did lil wayne graduated from?", "relations":{"college":["college","study","school"],"graduated":["promoted_event"]}}, + {"url": "http://www.freebase.com/view/en/riannah", "targetValue": "(list (description \"Saint Michael Parish\") (description Barbados))", "utterance": "where did rihanna come from?", "relations":{"come from":["birthPlace","hometown"]}}, + {"url": "http://www.freebase.com/view/en/kurt_busch", "targetValue": "(list (description \"Miller Lite\"))", "utterance": "who does kurt busch drive for now?", "relations":{"drive for":["occupation","Company"]}}, + {"url": "http://www.freebase.com/view/en/new_york_knicks", "targetValue": "(list (description \"1970 NBA Finals\") (description \"1973 NBA Finals\"))", "utterance": "what years did the knicks win the championship?", "relations":{"win":["achievement","awards"],"years":["years"],"championship":["championship"]}}, + {"url": "http://www.freebase.com/view/en/united_kingdom", "targetValue": "(list (description \"Greenwich Mean Time\") (description UTC\u00b100:00))", "utterance": "what is the time zone in uk now?", "relations":{"time zone":["timeZone"]}}, + {"url": "http://www.freebase.com/view/en/dustin_diamond", "targetValue": "(list (description \"Film Director\") (description Musician) (description Comedian) (description Actor))", "utterance": "what does dustin diamond do now?", "relations":{"what does":["knownFor","occupation"]}}, + {"url": "http://www.freebase.com/view/en/thomas_jefferson", "targetValue": "(list (description Virginia))", "utterance": "what state did thomas jefferson live in?", "relations":{"live in":["residence","livingPlace"],"state":["state","country"]}}, + {"url": "http://www.freebase.com/view/en/google", "targetValue": "(list (description \"Mountain View\"))", "utterance": "where are google headquarters located?", "relations":{"located":["location","locatedInArea","located"],"headquarters":["headquarters"]}}, + {"url": "http://www.freebase.com/view/en/princess_leia_organa", "targetValue": "(list (description \"Star Wars\"))", "utterance": "who is princess leia?", "relations":{"who is":["knownFor","firstAppearance"]}}, + {"url": "http://www.freebase.com/view/en/richard_wright", "targetValue": "(list (description \"Keyboard player\"))", "utterance": "what was richard wright known for?", "relations":{"known for":["knownFor"]}}, + {"url": "http://www.freebase.com/view/en/nascar_hall_of_fame", "targetValue": "(list (description Charlotte) (description \"North Carolina\"))", "utterance": "where is the nascar hall of fame?", "relations":{"where is":["location","locatedInArea"],"hall of fame":["hallOfFame"]}}, + {"url": "http://www.freebase.com/view/en/austraila", "targetValue": "(list (description \"Australian dollar\"))", "utterance": "what do australia call their money?", "relations":{"money":["currency","local_currency"]}}, + {"url": "http://www.freebase.com/view/en/wright_brothers", "targetValue": "(list (description \"Wright Model B\") (description \"Wright Model C\") (description \"Wright Flyer\") (description \"Wright Model EX\") (description \"1902 Wright Glider\") (description \"1900 Wright Glider\"))", "utterance": "what was the name of wright brothers plane?", "relations":{"name":["name"]}}, + {"url": "http://www.freebase.com/view/en/university_of_leeds", "targetValue": "(list (description \"United Kingdom\") (description Leeds))", "utterance": "where is located university of leeds?", "relations":{"located":["locatedInArea","located"],"university":["university"]}}, + {"url": "http://www.freebase.com/view/en/gilbert_gottfried", "targetValue": "(list (description Actor))", "utterance": "who is gilbert gottfried snl?", "relations":{"who is":["knownFor"]}}, + {"url": "http://www.freebase.com/view/en/denmark", "targetValue": "(list (description \"Danish Language\"))", "utterance": "what language do they denmark?", "relations":{"language":["language","officialLanguage"]}}, + {"url": "http://www.freebase.com/view/en/martin_luther", "targetValue": "(list (description Physician) (description Theologian) (description Professor) (description Writer) (description Monk) (description Priest))", "utterance": "what did martin luther do?", "relations":{"what did":["knownFor","occupation"]}}, + {"url": "http://www.freebase.com/view/en/grover_cleveland_alexander", "targetValue": "(list (description \"Philadelphia Phillies\") (description \"Chicago Cubs\"))", "utterance": "what team did grover cleveland alexander play for?", "relations":{"play":["play"],"team":["team"],"play for":["teamName","careerPoints"]}}, + {"url": "http://www.freebase.com/view/en/eli_whitney", "targetValue": "(list (description \"United States of America\"))", "utterance": "what was eli whitney nationality?", "relations":{"nationality":["nationality"]}}, + {"url": "http://www.freebase.com/view/en/christiaan_barnard", "targetValue": "(list (description Surgeon))", "utterance": "what was christiaan barnard famous for?", "relations":{"famous for":["knownFor"]}}, + {"url": "http://www.freebase.com/view/en/dwight_d_eisenhower", "targetValue": "(list (description \"United States of America\"))", "utterance": "where was dwight d. eisenhower from?", "relations":{"from":["birthPlace","hometown"]}}, + {"url": "http://www.freebase.com/view/en/audi", "targetValue": "(list (description Ingolstadt))", "utterance": "where do audi come from?", "relations":{"come from":["corporate_headquarters","headquarter"]}}, + {"url": "http://www.freebase.com/view/en/chris_paul", "targetValue": "(list (description \"Los Angeles Clippers\"))", "utterance": "what team is chris paul on?", "relations":{"team":["team"]}}, + {"url": "http://www.freebase.com/view/en/washington_united_states", "targetValue": "(list (description \"White House\") (description \"The Phillips Collection\") (description \"United States Capitol\") (description \"Thomas Jefferson Memorial\") (description \"National Museum of the American Indian\") (description \"International Spy Museum\") (description \"National Portrait Gallery\") (description \"Washington Monument\") (description \"Lincoln Memorial\") (description \"Freer Gallery of Art\"))", "utterance": "what to do washington dc december?", "relations":{"what to do":["tourist_attraction","touristicSite"]}}, + {"url": "http://www.freebase.com/view/en/singapore", "targetValue": "(list (description \"Malay Language\") (description \"Tamil Language\") (description \"Standard Mandarin\") (description \"English Language\"))", "utterance": "what language is spoken in singapore?", "relations":{"language":["language","officialLanguage"]}}, + {"url": "http://www.freebase.com/view/en/sanjay_gupta", "targetValue": "(list (description \"Rebecca Olson Gupta\"))", "utterance": "who is sanjay gupta married too?", "relations":{"married to":["spouse","spouseName","Marriage"]}}, + {"url": "http://www.freebase.com/view/en/singapore", "targetValue": "(list (description \"Malay Language\") (description \"Tamil Language\") (description \"Standard Mandarin\") (description \"English Language\"))", "utterance": "what do singapore speak?", "relations":{"speak":["language"]}}, + {"url": "http://www.freebase.com/view/en/luke_perry", "targetValue": "(list (description \"Battle Scars: The Bud Moore Story\"))", "utterance": "what movies did luke perry play in?", "relations":{"play":["play"],"movies":["movies"],"play in":["playRole","characterInPlay"]}}, + {"url": "http://www.freebase.com/view/en/gospel_of_john", "targetValue": "(list (description \"John the Evangelist\"))", "utterance": "who wrote the book of st. john?", "relations":{"book":["book"],"who wrote":["author","Writer"]}}, + {"url": "http://www.freebase.com/view/en/kobe_bryant", "targetValue": "(list (description \"Joe Bryant\"))", "utterance": "who is kobe bryant dad?", "relations":{"dad":["father","family","familyMember"]}}, + {"url": "http://www.freebase.com/view/en/israel", "targetValue": "(list (description Asia))", "utterance": "what continent does israel belong to?", "relations":{"continent":["Continent"]}}, + {"url": "http://www.freebase.com/view/en/albania", "targetValue": "(list (description Tirana))", "utterance": "what is the capital city of albania?", "relations":{"city":["city"],"capital":["Capital"]}}, + {"url": "http://www.freebase.com/view/en/thomas_jefferson", "targetValue": "(list (description Monticello))", "utterance": "where is thomas jefferson's home?", "relations":{" home":["residence","livingPlace"]}}, + {"url": "http://www.freebase.com/view/en/wentworth_miller", "targetValue": "(list (description \"Prison Break\"))", "utterance": "what is wentworth miller in?", "relations":{"what is":["movie","film"]}}, + {"url": "http://www.freebase.com/view/en/spain", "targetValue": "(list (description Madrid))", "utterance": "what is the capital of spain in 2010?", "relations":{"capital":["capital"]}}, + {"url": "http://www.freebase.com/view/en/harvey_milk", "targetValue": "(list (description \"Dan White\"))", "utterance": "who killed harvey milk?", "relations":{"who killed":["assassin","killedBy"]}}, + {"url": "http://www.freebase.com/view/en/dr_seuss", "targetValue": "(list (description \"Fox in Socks\"))", "utterance": "what was the title of the first book dr. seuss wrote?", "relations":{"book":["book"],"title":["title"],"first book":["firstPublicationDate"]}}, + {"url": "http://www.freebase.com/view/en/nissan_motors", "targetValue": "(list (description \"Nissan Motor Manufacturing UK\") (description Jatco) (description Infiniti) (description \"Nissan North America\") (description \"Nissan Motor Car Carrier\"))", "utterance": "who owns nissan car manufacturer?", "relations":{"manufacturer":["manufacturer"],"owns":["owns"],"who owns":["owner"]}}, + {"url": "http://www.freebase.com/view/en/university_of_west_alabama", "targetValue": "(list (description Alabama) (description Livingston) (description \"United States of America\"))", "utterance": "where is the university of west alabama located?", "relations":{"located":["locatedInArea","located"],"university":["university"]}}, + {"url": "http://www.freebase.com/view/en/kenny_everett", "targetValue": "(list (description AIDS))", "utterance": "what did kenny everett die off?", "relations":{"die off":["causeOfDeath","disease"]}}, + {"url": "http://www.freebase.com/view/en/brazil", "targetValue": "(list (description \"Portuguese Language\"))", "utterance": "what main language do they speak in brazil?", "relations":{"speak":["language"],"main language":["officialLanguage"]}}, + {"url": "http://www.freebase.com/view/en/joey_king", "targetValue": "(list (description \"Las Vegas\") (description \"Los Angeles\"))", "utterance": "where does joey king live?", "relations":{"where live":["residence","livingPlace"]}}, + {"url": "http://www.freebase.com/view/en/justin_bieber", "targetValue": "(list (description \"Billboard Music Award for Top Social Artist\"))", "utterance": "what happened to justin bieber 2012?", "relations":{"what happened":["achievement","awards"]}}, + {"url": "http://www.freebase.com/view/en/austraila", "targetValue": "(list (description \"City of Moreland\") (description \"Northern Territory\") (description \"Western Australia\") (description \"Australian Capital Territory\") (description Victoria) (description \"Town of Cottesloe\") (description \"New South Wales\") (description Queensland) (description Tasmania) (description \"South Australia\"))", "utterance": "how many australian states and territories?", "relations":{"states":["countries","state"],"territories":["neighborhood","territory","District","countries"]}}, + {"url": "http://www.freebase.com/view/en/manchester_united_fc", "targetValue": "(list (description \"Newton Heath L&YR F.C.\"))", "utterance": "what was manchester united first name?", "relations":{"name":["name"]}}, + {"url": "http://www.freebase.com/view/en/hawaii", "targetValue": "(list (description \"Neil Abercrombie\"))", "utterance": "who is the governor of hawaii now?", "relations":{"governor":["governor"]}}, + {"url": "http://www.freebase.com/view/en/herbert_hoover", "targetValue": "(list (description 3/4/1929))", "utterance": "when did herbert hoover become president?", "relations":{"president":["president"],"become president":["elected_official"]}}, + {"url": "http://www.freebase.com/view/en/elvis_presley", "targetValue": "(list (description Memphis))", "utterance": "where did elvis presley started his career?", "relations":{"started his career":["startCareer"]}}, + {"url": "http://www.freebase.com/view/en/vince_mcmahon", "targetValue": "(list (description \"Professional Wrestling Promoter\") (description \"Film Director\") (description \"Television Producer\") (description Announcer) (description \"Film Producer\") (description Actor) (description Wrestler) (description \"Sports commentator\") (description Screenwriter))", "utterance": "what happened vince mcmahon?", "relations":{"what happened":["knownFor"]}}, + {"url": "http://www.freebase.com/view/en/harriet_tubman", "targetValue": "(list (description Writer))", "utterance": "what jobs did harriet tubman have?", "relations":{"jobs":["jobs","occupation","careerPoints"]}}, + {"url": "http://www.freebase.com/view/en/unesco", "targetValue": "(list (description Paris))", "utterance": "where does unesco operate?", "relations":{"where":["location","locationCountry","located","locatedInArea"],"operate":["function"]}}, + {"url": "http://www.freebase.com/view/en/canada", "targetValue": "(list (description \"Nelson Paddywack IPA\") (description \"Steam Whistle Pilsner\") (description \"Molson XXX\") (description \"Tin Whistle Coyote\") (description \"Okanagan Spring Brewery Honey Blonde Ale\") (description \"Labatt Brewing Co. John Labatt Classic Premium Lager\") (description \"Granville Island Honey Lager\") (description \"Cannery Blackberry Porter\") (description \"McAuslan Brewing St. Ambroise Pale Ale\") (description \"Mt. Begbie Brewing Company High Country K\u00f6lsch\"))", "utterance": "what does canada grow for food?", "relations":{"food":["Food"],"grow for":["industry"]}}, + {"url": "http://www.freebase.com/view/en/david", "targetValue": "(list (description \"Psalm 145\") (description \"Books of Samuel\") (description \"Books of Chronicles\") (description Psalms))", "utterance": "where in the bible does it talk about david?", "relations":{"bible":["book","title"],"where in the bible":["episode"]}}, + {"url": "http://www.freebase.com/view/en/amanda_seyfried", "targetValue": "(list (description \"Boogie Woogie\") (description \"Jennifer's Body\") (description Chloe) (description \"Dear John\") (description \"Nine Lives\") (description Solstice) (description \"Mamma Mia!\") (description \"American Gun\") (description \"Mean Girls\") (description \"Alpha Dog\"))", "utterance": "what does amanda seyfried play in?", "relations":{"play":["play"],"play in":["movies","careerPoints"]}}, + {"url": "http://www.freebase.com/view/en/iran", "targetValue": "(list (description Persian))", "utterance": "what language do people speak in iran?", "relations":{"language":["language","officialLanguage"],"people":["people"]}}, + {"url": "http://www.freebase.com/view/en/supreme_court_of_the_united_states", "targetValue": "(list (description \"United States of America\"))", "utterance": "what is the jurisdiction of the us supreme court?", "relations":{"jurisdiction":["jurisdiction"],"supreme court":["SupremeCourtOfTheUnitedStatesCase"]}}, + {"url": "http://www.freebase.com/view/en/hank_azaria", "targetValue": "(list (description \"Carl Carlson\") (description \"Chief Wiggum\") (description \"Apu Nahasapeemapetilon\"))", "utterance": "what voice does hank azaria do on the simpsons?", "relations":{"what voice":["VoiceActor","character","characterInPlay"],"voice":["voice"]}}, + {"url": "http://www.freebase.com/view/en/japan", "targetValue": "(list (description \"Shinz\u014d Abe\"))", "utterance": "who is the leader of japan?", "relations":{"leader":["leader"]}}, + {"url": "http://www.freebase.com/view/en/united_kingdom", "targetValue": "(list (description \"Greenwich Mean Time\") (description UTC\u00b100:00))", "utterance": "what time zone is the uk in right now?", "relations":{"time zone":["timeZone"]}}, + {"url": "http://www.freebase.com/view/en/bela_fleck", "targetValue": "(list (description Banjo))", "utterance": "what instrument does bela fleck play?", "relations":{"play":["play"],"instrument":["instrument"]}}, + {"url": "http://www.freebase.com/view/en/ray_allen", "targetValue": "(list (description \"Shooting guard\"))", "utterance": "what position does ray allen?", "relations":{"position":["position"]}}, + {"url": "http://www.freebase.com/view/en/united_states_house_of_representatives", "targetValue": "(list (description Congress))", "utterance": "what branch is made up of the house of representatives?", "relations":{"branch":["branch"],"house of representatives":["parliament"]}}, + {"url": "http://www.freebase.com/view/en/kurdish_people", "targetValue": "(list (description Asia))", "utterance": "where did kurds originate from?", "relations":{"originate":["birthPlace","hometown"]}}, + {"url": "http://www.freebase.com/view/en/battle_of_chancellorsville", "targetValue": "(list (description \"Spotsylvania County\"))", "utterance": "where did chancellorsville battle take place?", "relations":{"battle":["battle","war"],"take place":["location","located"]}}, + {"url": "http://www.freebase.com/view/en/chicago_cubs", "targetValue": "(list (description \"1908 World Series\"))", "utterance": "what year was the cubs last world series?", "relations":{"year":["year"],"world":["world"],"series":["series"]}}, + {"url": "http://www.freebase.com/view/en/hawkeye", "targetValue": "(list (description \"Jeremy Renner\"))", "utterance": "who is playing hawkeye in the avengers movie?", "relations":{"movie":["movie"],"who is playing":["character","characterInPlay","playRole"]}}, + {"url": "http://www.freebase.com/view/en/english", "targetValue": "(list (description Canada) (description Australia) (description \"Kingdom of Great Britain\") (description \"United States of America\") (description \"United Kingdom\") (description Ireland) (description \"New Zealand\"))", "utterance": "what country speak english as native language?", "relations":{"native language":["officialLanguage","originalLanguage"],"country":["country"]}}, + {"url": "http://www.freebase.com/view/en/victoria_of_the_united_kingdom", "targetValue": "(list (description \"Edward VII\"))", "utterance": "who was king or queen after victoria?", "relations":{"king":["monarch"],"queen":["monarch"],"after victoria":["successor"]}}, + {"url": "http://www.freebase.com/view/en/riannah", "targetValue": "(list (description \"This Is the End\") (description Battleship) (description \"Happy Smekday!\"))", "utterance": "what movie did rihanna play in?", "relations":{"play":["play"],"movie":["movie","film"]}}, + {"url": "http://www.freebase.com/view/en/oakland_raiders", "targetValue": "(list (description \"2003 NFL season\"))", "utterance": "when was the last time the oakland raiders were in the super bowl?", "relations":{"were in the super bowl":["championships","award","achievement"],"time":["time"]}}, + {"url": "http://www.freebase.com/view/en/mary_todd_lincoln", "targetValue": "(list (description Presbyterianism) (description Baptists) (description Catholicism))", "utterance": "what religion was mary todd lincoln?", "relations":{"religion":["religion"]}}, + {"url": "http://www.freebase.com/view/en/united_states_house_of_representatives", "targetValue": "(list (description \"Nancy Pelosi\"))", "utterance": "who is the house of representatives made up of?", "relations":{"house of representatives":["parliament"]}}, + {"url": "http://www.freebase.com/view/en/jason_kidd", "targetValue": "(list (description \"New York Knicks\") (description \"Phoenix Suns\") (description \"Brooklyn Nets\") (description \"Dallas Mavericks\"))", "utterance": "who all has jason kidd played for?", "relations":{"played for":["careerPoints"]}}, + {"url": "http://www.freebase.com/view/en/verizon_communications", "targetValue": "(list (description \"New York\"))", "utterance": "where is headquarters of verizon?", "relations":{"where":["location", "locatedInArea"]}}, + {"url": "http://www.freebase.com/view/en/cyprus", "targetValue": "(list (description Europe) (description \"Mediterranean Sea\") (description Cyprus) (description Asia) (description Eurasia))", "utterance": "where is the country of cyprus located?", "relations":{"country":["country"],"located":["location","located","locatedInArea"]}}, + {"url": "http://www.freebase.com/view/en/dell", "targetValue": "(list (description \"Michael S. Dell\"))", "utterance": "who invented dell computer?", "relations":{"computer":["computer"],"invented":["founder","created","foundedBy"]}}, + {"url": "http://www.freebase.com/view/en/morgan_freeman", "targetValue": "(list (description Memphis))", "utterance": "where did morgan freeman come from?", "relations":{"come from":["birthPlace","hometown"]}}, + {"url": "http://www.freebase.com/view/en/bob_barker", "targetValue": "(list (description \"South Dakota\"))", "utterance": "where did bob barker grow up?", "relations":{"grow up":["hometown","birthPlace"]}}, + {"url": "http://www.freebase.com/view/en/cavalier_king_charles_spaniel", "targetValue": "(list (description Dog))", "utterance": "what are king charles spaniels?", "relations":{"what are":["type","Animal"]}}, + {"url": "http://www.freebase.com/view/en/chinese_language", "targetValue": "(list (description \"Traditional Chinese characters\") (description Chinese) (description \"Simplified Chinese character\") (description \"'Phags-pa script\") (description \"N\u00fcshu script\") (description \"Chinese characters\"))", "utterance": "when was the chinese flag designed?", "relations":{"flag":["flag"],"designed":["design","draft","creted"]}}, + {"url": "http://www.freebase.com/view/en/boston_terrier", "targetValue": "(list (description \"United States of America\"))", "utterance": "where did boston terriers come from?", "relations":{"come from":["birthPlace","hometown"]}}, + {"url": "http://www.freebase.com/view/en/albert_einstein", "targetValue": "(list (description \"Mathematics and Physics\"))", "utterance": "what makes einstein smart?", "relations":{"what makes":["knownFor"],"smart":["agile","good"]}}, + {"url": "http://www.freebase.com/view/en/juni_cortez", "targetValue": "(list (description \"Daryl Sabara\"))", "utterance": "who played juni in spy kids 4?", "relations":{"who played":["playRole","character","characterInPlay"]}}, + {"url": "http://www.freebase.com/view/en/new_york_mets", "targetValue": "(list (description 1962))", "utterance": "what year did the new york mets start?", "relations":{"year":["year"],"start":["start","date_founded"]}}, + {"url": "http://www.freebase.com/view/en/neil_gaiman", "targetValue": "(list (description Menomonie))", "utterance": "where did neil gaiman grow up?", "relations":{"grow up":["birthPlace","hometown"]}}, + {"url": "http://www.freebase.com/view/en/aristotle", "targetValue": "(list (description \"Atheniensium respublica\") (description \"Nicomachean Ethics\") (description Dell'interpretazione) (description \"L' anima\") (description Physique) (description \"\u00dcber die Seele\") (description \"Les metheores d'Aristote\") (description \"Aristotelis stagiritae, pepli fragmentum\") (description \"De anima, in the version of William of Moerbeke\") (description \"Prior Analytics and Posterior Analytics\"))", "utterance": "what books did aristotle wrote?", "relations":{"books":["books","titles"]}}, + {"url": "http://www.freebase.com/view/en/european_union", "targetValue": "(list (description Brussels))", "utterance": "where is eu headquarters located?", "relations":{"located":["located","location","locatedInArea"],"headquarters":["headquarters"]}}, + {"url": "http://www.freebase.com/view/en/cornelia_marie", "targetValue": "(list (description \"Jake Harris\"))", "utterance": "who runs the cornelia marie now?", "relations":{"who runs":["playRole","character","characterInPlay"]}}, + {"url": "http://www.freebase.com/view/en/john_muir", "targetValue": "(list (description \"Los Angeles\"))", "utterance": "where did john muir die?", "relations":{"where die":["deathPlace"]}}, + {"url": "http://www.freebase.com/view/en/selena_gomez", "targetValue": "(list (description \"Grand Prairie\"))", "utterance": "where was selena gomez raised?", "relations":{"where raised":["birthPlace","hometown"]}}, + {"url": "http://www.freebase.com/view/en/andean_community_of_nations", "targetValue": "(list (description Brazil) (description Ecuador) (description Peru) (description Colombia))", "utterance": "what countries are in the andean region?", "relations":{"countries":["countries"],"region":["region"]}}, + {"url": "http://www.freebase.com/view/en/english", "targetValue": "(list (description \"the Federation of Free States\"))", "utterance": "who created english alphabet?", "relations":{"created":["creted"],"alphabet":["alphabet"]}}, + {"url": "http://www.freebase.com/view/en/san_francisco_giants", "targetValue": "(list (description \"2012 World Series\"))", "utterance": "when was the last time the san francisco giants won a world series?", "relations":{"time":["time"],"world":["world"],"series":["series"],"won":["achievement","awards"]}}, + {"url": "http://www.freebase.com/view/en/destin", "targetValue": "(list (description \"Northwest Florida Regional Airport\") (description \"Destin\u2013Fort Walton Beach Airport\"))", "utterance": "what airport do you fly into for destin?", "relations":{"airport":["airport"],"fly into":["destination"]}}, + {"url": "http://www.freebase.com/view/en/charlie-o", "targetValue": "(list (description \"Kansas City Athletics\"))", "utterance": "who played violet's mother in charlie and the chocolate factory?", "relations":{"who played":["character","characterInPlay","playRole"],"mother":["mother"]}}, + {"url": "http://www.freebase.com/view/en/george_washington", "targetValue": "(list (description \"Kingdom of Great Britain\"))", "utterance": "what country was george washington from?", "relations":{"country":["country"],"was from":["birthPlace","hometown"]}}, + {"url": "http://www.freebase.com/view/en/pete_rose", "targetValue": "(list (description \"1968 Major League Baseball Season\") (description \"1971 Major League Baseball Season\") (description \"1969 Major League Baseball Season\") (description \"1963 Major League Baseball Season\") (description \"1966 Major League Baseball Season\") (description \"1967 Major League Baseball Season\") (description \"1970 Major League Baseball Season\") (description \"1972 Major League Baseball Season\") (description \"1964 Major League Baseball Season\") (description \"1965 Major League Baseball Season\"))", "utterance": "what year did pete rose play?", "relations":{"year":["year"],"play":["play"]}}, + {"url": "http://www.freebase.com/view/en/kyla_ross", "targetValue": "(list (description \"Aliso Viejo\"))", "utterance": "where does kyla ross live?", "relations":{"where live":["residence","livingPlace"]}}, + {"url": "http://www.freebase.com/view/en/allen_iverson", "targetValue": "(list (description \"1996\u201397 NBA season\"))", "utterance": "when did allen iverson get drafted?", "relations":{"get drafted":["achievement","awards","careerPoints"]}}, + {"url": "http://www.freebase.com/view/en/jackson_browne", "targetValue": "(list (description \"Before the Deluge\"))", "utterance": "what does jackson browne sing?", "relations":{"what does sing":["singles","music","knownFor","songs"]}}, + {"url": "http://www.freebase.com/view/en/ferris_buellers_day_off", "targetValue": "(list (description \"Alan Ruck\"))", "utterance": "who plays ferris bueller's best friend?", "relations":{"plays":["plays"],"friend":["friend"],"who plays":["character","characterInPlay","playRole"]}}, + {"url": "http://www.freebase.com/view/en/anna_kendrick", "targetValue": "(list (description Rapturepalooza) (description \"Drinking Buddies\") (description \"Get a Job\") (description \"End of Watch\") (description 50/50) (description ParaNorman) (description \"Scott Pilgrim vs. the World\") (description \"What to Expect When You're Expecting\") (description \"The Twilight Saga: Breaking Dawn - Part 2\") (description \"The Twilight Saga: Breaking Dawn - Part 1\"))", "utterance": "what has anna kendrick been in?", "relations":{"what was been in":["movies","films"]}}, + {"url": "http://www.freebase.com/view/en/united_states", "targetValue": "(list (description \"Pharmaceutical Preparations\") (description Automobile) (description Petroleum) (description Clothing) (description Furniture))", "utterance": "what are the major imports of the united states?", "relations":{"imports":["industry","business"]}}, + {"url": "http://www.freebase.com/view/en/pittsburgh_steelers", "targetValue": "(list (description White) (description Black) (description Gold))", "utterance": "what are the team colors for the pittsburgh steelers?", "relations":{"team":["team"],"team colors":["logo"]}}, + {"url": "http://www.freebase.com/view/en/france", "targetValue": "(list (description \"Semi-presidential system\") (description \"Constitutional republic\") (description \"Unitary state\"))", "utterance": "what is the current government system in france?", "relations":{"government system":["form_of_government","GovernmentType"],"current":["current"],"system":["system"],"government":["government"]}}, + {"url": "http://www.freebase.com/view/en/roy_rogers", "targetValue": "(list (description \"Congestive Heart Failure\"))", "utterance": "what did roy rogers die of?", "relations":{"die of":["causeOfDeath","disease"]}}, + {"url": "http://www.freebase.com/view/en/calabria", "targetValue": "(list (description \"Italian region\"))", "utterance": "what is calabria italy?", "relations":{"what is calabria italy":["region","district","country","territory"]}}, + {"url": "http://www.freebase.com/view/en/new_orleans_oklahoma_city_hornets", "targetValue": "(list (description \"Charlotte Hornets\"))", "utterance": "what did the new orleans hornets used to be?", "relations":{"what did used to be":["knownFor"]}}, + {"url": "http://www.freebase.com/view/en/israel", "targetValue": "(list (description Judaism))", "utterance": "what are the major religions practiced in israel?", "relations":{"religion":["religion"]}}, + {"url": "http://www.freebase.com/view/en/jamaica", "targetValue": "(list (description \"Desnoes & Geddes Dragon Stout\") (description \"Red Stripe\") (description \"Desnoes & Geddes Red Stripe Lager\"))", "utterance": "what does jamaica manufacturer?", "relations":{"manufacturer":["industry","manufacturer"]}}, + {"url": "http://www.freebase.com/view/en/andrew_jackson", "targetValue": "(list (description 3/4/1829))", "utterance": "what years did andrew jackson run for president?", "relations":{"years":["years"],"president":["president"]}}, + {"url": "http://www.freebase.com/view/en/great_britain", "targetValue": "(list (description \"Principality of Wales\") (description \"Kingdom of Scotland\"))", "utterance": "what 4 countries make up great britain?", "relations":{"countries":["countries"],"make up great britain":["demographics","members","states"]}}, + {"url": "http://www.freebase.com/view/en/bernard_l_madoff", "targetValue": "(list (description Queens))", "utterance": "where did madoff live in nyc?", "relations":{"where live":["residence","livingPlace"]}}, + {"url": "http://www.freebase.com/view/en/philippines", "targetValue": "(list (description \"Filipino language\") (description \"Kapampangan language\") (description \"Cebuano language\") (description \"English Language\") (description \"Ilokano language\") (description \"Tagalog language\") (description \"Hiligaynon language\") (description \"Pangasinan Language\") (description \"Waray-Waray Language\"))", "utterance": "how many languages are there in the philippines?", "relations":{"languages":["language"]}}, + {"url": "http://www.freebase.com/view/en/monifa", "targetValue": "(list (description \"Touch It\"))", "utterance": "what song is monifah famous for?", "relations":{"famous for":["knownFor"],"song":["song","single"]}}, + {"url": "http://www.freebase.com/view/en/heinrich_himmler", "targetValue": "(list (description \"Margarete Boden\"))", "utterance": "who did heinrich himmler marry?", "relations":{"who did marry":["spouse","spouseName"]}}, + {"url": "http://www.freebase.com/view/en/sherwin-williams_company", "targetValue": "(list (description \"Building Material and Garden Equipment and Supplies Dealers\"))", "utterance": "who carries sherwin williams paint?", "relations":{"who carries":["buildingType","building"],"paint":["picture"]}}, + {"url": "http://www.freebase.com/view/en/josh_groban", "targetValue": "(list (description Richard))", "utterance": "who was josh groban in crazy stupid love?", "relations":{"who was":["character","characterInPlay","playRole"]}}, + {"url": "http://www.freebase.com/view/en/columbia_university", "targetValue": "(list (description \"New York\"))", "utterance": "where is the columbia university located?", "relations":{"university":["university"],"located":["located","location","locatedInArea"]}}, + {"url": "http://www.freebase.com/view/en/kris_humphries", "targetValue": "(list (description \"Brooklyn Nets\"))", "utterance": "what team does kris humphries play for in 2011?", "relations":{"team":["team"],"play":["play"],"play for":["teamName","careerPoints"]}}, + {"url": "http://www.freebase.com/view/en/j_j_thomson", "targetValue": "(list (description Electron) (description \"Mass spectrometry\"))", "utterance": "what did the scientist thomson discover?", "relations":{"scientist":["scientist"],"discover":["discovered","knownFor"]}}, + {"url": "http://www.freebase.com/view/en/john_boehner", "targetValue": "(list (description Ohio))", "utterance": "where did john boehner come from?", "relations":{"where did come from":["birthPlace","hometown"]}}, + {"url": "http://www.freebase.com/view/en/martin_luther_king_jr", "targetValue": "(list (description \"Morehouse College\"))", "utterance": "where did martin luther king junior go to college?", "relations":{"college":["college","study","school"]}}, + {"url": "http://www.freebase.com/view/en/carrie_underwood", "targetValue": "(list (description \"Sarah Hill\"))", "utterance": "who was carrie underwood in soul surfer?", "relations":{"who was":["character","characterInPlay","playRole"]}}, + {"url": "http://www.freebase.com/view/en/lois_griffin", "targetValue": "(list (description \"Alex Borstein\"))", "utterance": "who plays lois griffin in family guy?", "relations":{"plays":["plays"],"who plays":["character","characterInPlay","playRole"]}}, + {"url": "http://www.freebase.com/view/en/julian_fellowes", "targetValue": "(list (description \"Never Mind the Full Stops\") (description \"Julian Fellowes Investigates: A Most Mysterious Murder\") (description \"My Son, My Son\") (description Sharpe) (description \"Monarch of the Glen\") (description \"Our Friends in the North\"))", "utterance": "what did julian fellowes write?", "relations":{"what did write":["titles","books"]}}, + {"url": "http://www.freebase.com/view/en/selena_gomez", "targetValue": "(list (description \"New York City\"))", "utterance": "where does selena gomez live map?", "relations":{"where live":["livingPlace","residence"],"map":["map"]}}, + {"url": "http://www.freebase.com/view/en/islam", "targetValue": "(list (description Allah))", "utterance": "who does the islam worship?", "relations":{"islam worship":["religion","culture","prayer"]}}, + {"url": "http://www.freebase.com/view/en/lance_armstrong", "targetValue": "(list (description \"Kristin Richard\"))", "utterance": "who was married to lance armstrong?", "relations":{"who was married to":["spouse","spouseName"]}}, + {"url": "http://www.freebase.com/view/en/venus", "targetValue": "(list (description Planet))", "utterance": "what is venus named for?", "relations":{"named for":["knownFor"]}}, + {"url": "http://www.freebase.com/view/en/john_fox_1955", "targetValue": "(list (description \"Denver Broncos\"))", "utterance": "who did john fox coach for?", "relations":{"coach":["coach"],"who did coach for":["team","teamName"]}}, + {"url": "http://www.freebase.com/view/en/united_kingdom", "targetValue": "(list (description \"Operation Grapple\") (description \"Operation Hurricane\") (description \"Operation Totem\") (description \"British nuclear tests at Maralinga\") (description \"Operation Buffalo\") (description \"Operation Mosaic\"))", "utterance": "where are the nuclear plants in uk?", "relations":{"nuclear plants":["nuclear_powerplant"]}}, + {"url": "http://www.freebase.com/view/en/los_angeles_dodgers", "targetValue": "(list (description \"1988 World Series\") (description \"1959 World Series\") (description \"1963 World Series\") (description \"1965 World Series\") (description \"1981 World Series\"))", "utterance": "what years have the dodgers won the world series?", "relations":{"years":["years"],"series":["series"],"world":["world"],"won":["achievement","awards"]}}, + {"url": "http://www.freebase.com/view/en/farrah_fawcett", "targetValue": "(list (description \"Anal cancer\"))", "utterance": "what did farrah have surgery for?", "relations":{"surgery for":["disease"]}}, + {"url": "http://www.freebase.com/view/en/soviet_union", "targetValue": "(list (description \"Joseph Stalin\"))", "utterance": "who was the leader of the soviet union in 1945?", "relations":{"leader":["leader","politicalLeader"]}}, + {"url": "http://www.freebase.com/view/en/john_beck", "targetValue": "(list (description \"Washington Redskins\") (description \"Miami Dolphins\") (description \"Baltimore Ravens\") (description \"Houston Texans\"))", "utterance": "who does john beck play for?", "relations":{"play":["play"],"play for":["team","careerPoints"]}}, + {"url": "http://www.freebase.com/view/en/catholicism", "targetValue": "(list (description God))", "utterance": "what god do catholics believe in?", "relations":{"what god do catholics":["religion","believers","culture","belief"],"believe":["belief"]}}, + {"url": "http://www.freebase.com/view/en/kenya_moore", "targetValue": "(list (description Trois) (description \"The Confidant\") (description \"No Turning Back\") (description Senseless) (description \"Cloud 9\") (description \"Waiting to Exhale\") (description \"I Know Who Killed Me\") (description \"Hot Parts\") (description \"Deliver Us from Eva\") (description \"Brothers in Arms\"))", "utterance": "what movies have kenya moore produced?", "relations":{"movies":["movies","films"],"produced":["producedBy"]}}, + {"url": "http://www.freebase.com/view/en/robbie_hummel", "targetValue": "(list (description \"Valparaiso High School\"))", "utterance": "where did robbie hummel go to high school?", "relations":{"high school":["school","highschool","study"]}}, + {"url": "http://www.freebase.com/view/en/cleveland_indians", "targetValue": "(list (description \"1948 World Series\") (description \"1920 World Series\"))", "utterance": "what year did the cleveland indians go to the world series?", "relations":{"year":["year"],"series":["series"],"world":["world"],"go to the world series":["achievement","awards"]}}, + {"url": "http://www.freebase.com/view/en/cleveland_browns", "targetValue": "(list (description \"Randy Lerner\"))", "utterance": "who owns the cleveland browns?", "relations":{"who owns":["owner"],"owns":["owns"]}}, + {"url": "http://www.freebase.com/view/en/jew", "targetValue": "(list (description \"Yiddish Language\") (description \"Judeo-Arabic languages\") (description \"Karaim Language\") (description \"Hulaul\u00e1 Language\") (description \"Hebrew Language\") (description Catalanic) (description Judeo-Portuguese) (description Judeo-Tat) (description \"Judeo-Italian Language\") (description \"Jud\u00e6o-Persian dialects\"))", "utterance": "what language do jewish speak?", "relations":{"language":["language"]}}, + {"url": "http://www.freebase.com/view/en/germany", "targetValue": "(list (description \"Federal republic\"))", "utterance": "what legal system does germany use?", "relations":{"what legal system":["type_of_legal_system","PoliticalConcept"],"system":["system"]}}, + {"url": "http://www.freebase.com/view/en/danneel_harris", "targetValue": "(list (description \"Rachel Gatina\"))", "utterance": "who does danneel harris play on one tree hill?", "relations":{"play":["play"],"who does play":["characterInPlay","playRole"]}}, + {"url": "http://www.freebase.com/view/en/michelangelo", "targetValue": "(list (description \"Lorenzo de' Medici\") (description \"Domenico Ghirlandaio\") (description \"Giovanni Pico della Mirandola\") (description \"Girolamo Savonarola\") (description \"Melozzo da Forl\u00ec\"))", "utterance": "what inspired michelangelo?", "relations":{"inspired":["inspired","influenced"]}}, + {"url": "http://www.freebase.com/view/en/germany", "targetValue": "(list (description Berlin))", "utterance": "what battle did germany surrender in ww2?", "relations":{"battle":["battle"],"ww2":["war"]}}, + {"url": "http://www.freebase.com/view/en/indianapolis_colts", "targetValue": "(list (description \"Jim Caldwell\"))", "utterance": "who was the colts coach in 2011?", "relations":{"coach":["coach"],"who was coach":["sports_team_coach"]}}, + {"url": "http://www.freebase.com/view/en/houston", "targetValue": "(list (description \"William P. Hobby Airport\"))", "utterance": "what airport is closer to downtown houston?", "relations":{"airport":["airport"]}}, + {"url": "http://www.freebase.com/view/en/liz_mclarnon", "targetValue": "(list (description England))", "utterance": "where does liz mcclarnon live?", "relations":{"where does live":["residence","livingPlace"]}}, + {"url": "http://www.freebase.com/view/en/fc_schalke_04", "targetValue": "(list (description Gelsenkirchen))", "utterance": "what city is fc schalke 04 in?", "relations":{"city":["city"]}}, + {"url": "http://www.freebase.com/view/en/south_korea", "targetValue": "(list (description \"Constitutional republic\"))", "utterance": "what system of government is used in south korea?", "relations":{"government":["government"],"system":["system"],"system of government":["form_of_government","GovernmentType"]}}, + {"url": "http://www.freebase.com/view/en/giovanni_di_cosimo_de_medici", "targetValue": "(list (description Italy))", "utterance": "where did giovanni da verrazano come from?", "relations":{"where did come from":["birthPlace","hometown"]}}, + {"url": "http://www.freebase.com/view/en/daytona_beach", "targetValue": "(list (description \"Massey Ranch Airpark\") (description \"Daytona Beach International Airport\") (description \"Spruce Creek Airport\"))", "utterance": "what airport is close to daytona beach florida?", "relations":{"airport":["airport"]}}, + {"url": "http://www.freebase.com/view/en/omar_epps", "targetValue": "(list (description Juice))", "utterance": "what was omar epps first movie?", "relations":{"movie":["movie","film"]}}, + {"url": "http://www.freebase.com/view/en/baltimore_ravens", "targetValue": "(list (description \"Haloti Ngata\") (description \"Mark Clayton\") (description \"Ben Grubbs\") (description \"Joe Flacco\") (description \"Terrell Suggs\") (description \"Kyle Boller\") (description \"Michael Oher\"))", "utterance": "who did the baltimore ravens draft in 2011?", "relations":{"draft":["draft"]}}, + {"url": "http://www.freebase.com/view/en/puerto_rico", "targetValue": "(list (description \"Luis Fortu\u00f1o\"))", "utterance": "who won the governor election in puerto rico?", "relations":{"governor":["governor"],"election":["election"]}}, + {"url": "http://www.freebase.com/view/en/william_shakespeare", "targetValue": "(list (description \"Globe Theatre, London\"))", "utterance": "where did william shakespeare perform most of his plays?", "relations":{"plays":["plays"],"perform":["play"]}}, + {"url": "http://www.freebase.com/view/en/aubrey_oday", "targetValue": "(list (description \"Danity Kane\"))", "utterance": "what group is aubrey o'day in?", "relations":{"group":["group"]}}, + {"url": "http://www.freebase.com/view/en/joe_namath", "targetValue": "(list (description \"University of Alabama\"))", "utterance": "what college did joe namath go to?", "relations":{"college":["college","study","school"]}}, + {"url": "http://www.freebase.com/view/en/colorado", "targetValue": "(list (description \"Lark Bunting\"))", "utterance": "what wild animals live in colorado?", "relations":{"wild animals":["animal_gender"],"animals":["animals"]}}, + {"url": "http://www.freebase.com/view/en/european_union", "targetValue": "(list (description Brussels))", "utterance": "where is eu parliament?", "relations":{"parliament":["parliament"],"where is parliament":["located","location","locatedInArea"]}}, + {"url": "http://www.freebase.com/view/en/new_england", "targetValue": "(list (description Waltham))", "utterance": "when does summer start in new england?", "relations":{"start":["start"],"summer":["season","climate"]}}, + {"url": "http://www.freebase.com/view/en/arabic_language", "targetValue": "(list (description \"Saudi Arabia\"))", "utterance": "who invented arabic alphabet?", "relations":{"who invented":["inventor"],"alphabet":["alphabet"]}}, + {"url": "http://www.freebase.com/view/en/lyndon_b_johnson", "targetValue": "(list (description Austin))", "utterance": "where was president lyndon johnson from?", "relations":{"president":["president"],"where was from":["birthPlace","hometown"]}}, + {"url": "http://www.freebase.com/view/en/richardwagner", "targetValue": "(list (description \"Die Feen\") (description \"Rienzi, der Letzte der Tribunen\") (description Tannh\u00e4user) (description \"Das Rheingold\") (description G\u00f6tterd\u00e4mmerung) (description \"Tristan und Isolde\") (description \"Die Walk\u00fcre\") (description \"Der Ring des Nibelungen\") (description \"Der fliegende Holl\u00e4nder\") (description Siegfried))", "utterance": "what did wagner compose?", "relations":{"what did compose":["songs","knownFor"]}}, + {"url": "http://www.freebase.com/view/en/jew", "targetValue": "(list (description \"Hebrew Language\"))", "utterance": "what language did jewish people speak?", "relations":{"language":["language"],"people":["people"]}}, + {"url": "http://www.freebase.com/view/en/michael_oher", "targetValue": "(list (description \"Baltimore Ravens\"))", "utterance": "who does michael oher play for in 2009?", "relations":{"play":["play"],"play for":["team","careerPoints"]}}, + {"url": "http://www.freebase.com/view/en/barry_bonds", "targetValue": "(list (description \"2001 Major League Baseball Season\") (description \"1990 Major League Baseball Season\") (description \"1996 Major League Baseball Season\") (description \"1993 Major League Baseball Season\") (description \"1992 Major League Baseball Season\") (description \"2002 Major League Baseball Season\") (description \"2003 Major League Baseball season\") (description \"2004 Major League Baseball season\") (description \"1998 Major League Baseball Season\"))", "utterance": "what years did barry bonds play?", "relations":{"years":["years"],"play":["play"]}}, + {"url": "http://www.freebase.com/view/en/emma_frost", "targetValue": "(list (description \"Finola Hughes\") (description \"Tahyna Tozzi\") (description \"January Jones\"))", "utterance": "who played emma frost?", "relations":{"who played":["character","characterInPlay","playRole"]}}, + {"url": "http://www.freebase.com/view/en/maya_civilization", "targetValue": "(list (description \"The End Of Time\"))", "utterance": "what does the mayan calendar say about 2012?", "relations":{"calendar":["calendar"]}}, + {"url": "http://www.freebase.com/view/en/peter_crouch", "targetValue": "(list (description \"Portsmouth F.C.\") (description \"Queens Park Rangers F.C.\") (description \"Liverpool F.C.\") (description \"Tottenham Hotspur F.C.\") (description \"Southampton F.C.\") (description \"Aston Villa F.C.\") (description \"Stoke City F.C.\"))", "utterance": "what clubs has peter crouch played for?", "relations":{"played for":["careerPoints","teamName"]}}, + {"url": "http://www.freebase.com/view/en/hannah_montana", "targetValue": "(list (description \"Jason Earles\"))", "utterance": "who plays the brother in hannah montana?", "relations":{"brother":["brother"],"who plays":["character","characterInPlay","playRole"],"plays":["plays"]}}, + {"url": "http://www.freebase.com/view/en/lamar_odom", "targetValue": "(list (description \"Los Angeles Clippers\"))", "utterance": "what team does lamar odom play for 2011?", "relations":{"team":["team"],"play":["play"],"play for":["team","careerPoints"]}}, + {"url": "http://www.freebase.com/view/en/tom_brady", "targetValue": "(list (description \"Jun\u00edpero Serra High School\"))", "utterance": "what highschool did tom brady go to?", "relations":{"highschool":["highschool","study","school"]}}, + {"url": "http://www.freebase.com/view/en/skywest", "targetValue": "(list (description \"AirTran Airways\") (description \"SkyWest, Inc.\"))", "utterance": "who owns skywest?", "relations":{"owns":["owns"],"who owns":["owner"]}}, + {"url": "http://www.freebase.com/view/en/michael_jordan", "targetValue": "(list (description \"Yvette Prieto\"))", "utterance": "who did michael jordan marry?", "relations":{"who did marry":["spouse","spouseName"]}}, + {"url": "http://www.freebase.com/view/en/syracuse_university", "targetValue": "(list (description \"New York\") (description \"United States of America\") (description Syracuse))", "utterance": "where is the syracuse university?", "relations":{"university":["university"],"where is university":["location","located","locatedInArea"]}}, + {"url": "http://www.freebase.com/view/en/mario_lopez", "targetValue": "(list (description \"Holiday in Handcuffs\") (description \"Aloha, Scooby-Doo!\") (description \"Saved by the Bell: Hawaiian Style\") (description \"King Rikki\") (description \"Husband for Hire\") (description Colors) (description \"The Dog Who Saved Christmas\") (description \"Big Brother Trouble\") (description \"A Crack in the Floor\") (description \"Fever Lake\"))", "utterance": "what has mario lopez been in?", "relations":{"what has been in":["knownFor","careerPoints","playRole"]}}, + {"url": "http://www.freebase.com/view/en/logan_browning", "targetValue": "(list (description Atlanta))", "utterance": "where do logan browning live?", "relations":{"where live":["residence","livingPlace"]}}, + {"url": "http://www.freebase.com/view/en/mcdonalds", "targetValue": "(list (description 5/15/1940))", "utterance": "when did mcdonalds officially open?", "relations":{"when did open":["history","TimePeriod","period","openingYear"]}}, + {"url": "http://www.freebase.com/view/en/terrell_owens", "targetValue": "(list (description \"Cincinnati Bengals\"))", "utterance": "what team does terrell owens play for this year?", "relations":{"team":["team"],"play":["play"],"year":["year"],"play for":["careerPoints","team"]}} +] diff --git a/src/main/resources/ppp_vw_2_lsvm.py b/src/main/resources/ppp_vw_2_lsvm.py new file mode 100644 index 0000000..96f516f --- /dev/null +++ b/src/main/resources/ppp_vw_2_lsvm.py @@ -0,0 +1,47 @@ +__author__ = 'marek' + +import argparse + +def get_hash(in_str): + return abs(hash(in_str)) % (10 ** 5) + +def convert(in_file, out_file, ignore_ns): + f = open(out_file,'w') + with open(in_file, 'rb') as file: + for row in file.readlines(): + parts = row.rstrip().split('|') + target = 0 if parts[0].split(' ')[0].startswith('-') else 1 + + outline = str(target) + for j in range(1,len(parts)): + ns = parts[j].strip() + tokens = ns.split(' ') + ns_name = tokens[0].strip() + if not ignore_ns or (ignore_ns and ns_name not in ignore_ns): + for i in range(1,len(tokens)): + token = tokens[i] + key = token + val = None + if ':' in token: + key, val = token.split(':') + outline += (' '+str(get_hash(key))+':') + (val if val else '1') + f.write(outline.replace('\n','')+'\n') + f.close() + + + + +def main(args): + field_idx = 0 + feature_idx = 0 + convert(args.input, args.out, args.ignore) + + +if __name__ == "__main__": + parser = argparse.ArgumentParser(description='Convert VW input to LibSVM input') + parser.add_argument('--input', type=str, help='input file - VW formatted') + parser.add_argument('--out', type=str, help='output file ') + parser.add_argument('--ignore', type=str, help='ns to ignore ') + + args = parser.parse_args() + main(args)